|
4 | 4 | * SPDX-License-Identifier: Apache-2.0 |
5 | 5 | */ |
6 | 6 |
|
7 | | -import {ARIAMixinStrict} from '@material/web/internal/aria/aria.js'; |
8 | | -import {mixinDelegatesAria} from '@material/web/internal/aria/delegate.js'; |
9 | | -import {redispatchEvent} from '@material/web/internal/events/redispatch-event.js'; |
| 7 | +import {css, CSSResultOrNative, html, LitElement, nothing} from 'lit'; |
| 8 | +import {customElement, property, query} from 'lit/decorators.js'; |
| 9 | +import {ARIAMixinStrict} from '../../../../internal/aria/aria.js'; |
| 10 | +import {mixinDelegatesAria} from '../../../../internal/aria/delegate.js'; |
| 11 | +import {redispatchEvent} from '../../../../internal/events/redispatch-event.js'; |
10 | 12 | import { |
11 | 13 | createValidator, |
12 | 14 | getValidityAnchor, |
13 | 15 | mixinConstraintValidation, |
14 | | -} from '@material/web/labs/behaviors/constraint-validation.js'; |
15 | | -import {mixinElementInternals} from '@material/web/labs/behaviors/element-internals.js'; |
| 16 | +} from '../../../behaviors/constraint-validation.js'; |
| 17 | +import {mixinElementInternals} from '../../../behaviors/element-internals.js'; |
16 | 18 | import { |
17 | 19 | getFormState, |
18 | 20 | getFormValue, |
19 | 21 | mixinFormAssociated, |
20 | | -} from '@material/web/labs/behaviors/form-associated.js'; |
21 | | -import {CheckboxValidator} from '@material/web/labs/behaviors/validators/checkbox-validator.js'; |
22 | | -import {css, CSSResultOrNative, html, LitElement, nothing} from 'lit'; |
23 | | -import {customElement, property, query} from 'lit/decorators.js'; |
| 22 | +} from '../../../behaviors/form-associated.js'; |
| 23 | +import {CheckboxValidator} from '../../../behaviors/validators/checkbox-validator.js'; |
24 | 24 |
|
25 | | -import focusRingStyles from '@material/web/labs/gb/components/focus/focus-ring.css' with {type: 'css'}; // github-only |
26 | | -// import focusRingStyles from '@material/web/labs/gb/components/focus/focus-ring.cssresult.js'; // google3-only |
27 | | -import rippleStyles from '@material/web/labs/gb/components/ripple/ripple.css' with {type: 'css'}; // github-only |
28 | | -// import rippleStyles from '@material/web/labs/gb/components/ripple/ripple.cssresult.js'; // google3-only |
| 25 | +import focusRingStyles from '../focus/focus-ring.css' with {type: 'css'}; // github-only |
| 26 | +// import focusRingStyles from '../focus/focus-ring.cssresult.js'; // google3-only |
| 27 | +import rippleStyles from '../ripple/ripple.css' with {type: 'css'}; // github-only |
| 28 | +// import rippleStyles from '../ripple/ripple.cssresult.js'; // google3-only |
29 | 29 | import checkboxStyles from './checkbox.css' with {type: 'css'}; // github-only |
30 | 30 | // import checkboxStyles from './checkbox.cssresult.js'; // google3-only |
31 | 31 |
|
|
0 commit comments