@shortfuse/materialdesignweb 0.9.0 → 0.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +50 -206
- package/components/Badge.js +5 -2
- package/components/Body.js +4 -0
- package/components/BottomAppBar.js +6 -2
- package/components/BottomSheet.js +62 -14
- package/components/Button.js +20 -0
- package/components/Card.js +20 -3
- package/components/Checkbox.js +8 -0
- package/components/CheckboxIcon.js +9 -3
- package/components/Chip.js +5 -2
- package/components/Dialog.js +22 -3
- package/components/DialogActions.js +4 -0
- package/components/Display.js +9 -0
- package/components/Divider.js +5 -0
- package/components/Fab.js +11 -0
- package/components/FabContainer.js +9 -0
- package/components/FilterChip.js +9 -0
- package/components/Grid.js +11 -0
- package/components/Headline.js +4 -0
- package/components/Icon.js +27 -3
- package/components/IconButton.js +8 -2
- package/components/Input.js +87 -14
- package/components/InputChip.js +33 -1
- package/components/Label.js +4 -0
- package/components/List.js +10 -0
- package/components/ListItem.js +53 -0
- package/components/ListOption.js +62 -1
- package/components/Listbox.js +44 -13
- package/components/Menu.js +31 -9
- package/components/MenuItem.js +24 -10
- package/components/NavBar.js +14 -3
- package/components/NavBarItem.js +5 -0
- package/components/NavDrawer.js +17 -0
- package/components/NavDrawerItem.js +5 -0
- package/components/NavItem.js +22 -2
- package/components/NavRail.js +9 -0
- package/components/NavRailItem.js +5 -0
- package/components/Page.js +15 -1
- package/components/Pane.js +7 -1
- package/components/Popup.js +6 -0
- package/components/Progress.js +25 -5
- package/components/Radio.js +6 -2
- package/components/RadioIcon.js +14 -1
- package/components/Ripple.js +14 -0
- package/components/Root.js +16 -0
- package/components/Scrim.js +10 -2
- package/components/Search.js +18 -5
- package/components/SegmentedButton.js +22 -6
- package/components/SegmentedButtonGroup.js +7 -10
- package/components/Select.js +13 -3
- package/components/Shape.js +4 -0
- package/components/SideSheet.js +31 -2
- package/components/Slider.js +22 -2
- package/components/Snackbar.js +30 -4
- package/components/SnackbarContainer.js +9 -0
- package/components/Surface.js +5 -0
- package/components/Switch.js +18 -2
- package/components/SwitchIcon.js +22 -1
- package/components/Tab.js +21 -0
- package/components/TabContent.js +32 -12
- package/components/TabList.js +36 -3
- package/components/TabPanel.js +9 -0
- package/components/Table.js +38 -3
- package/components/TextArea.js +32 -1
- package/components/Title.js +4 -0
- package/components/Tooltip.js +9 -2
- package/components/TopAppBar.js +15 -0
- package/core/Composition.js +45 -16
- package/core/CompositionAdapter.js +24 -6
- package/core/CustomElement.js +77 -49
- package/core/customTypes.js +43 -26
- package/core/dom.js +1 -0
- package/core/jsonMergePatch.js +15 -1
- package/core/observe.js +28 -21
- package/dist/CustomElement.min.js +2 -0
- package/dist/CustomElement.min.js.map +7 -0
- package/dist/core/CustomElement.min.js +2 -0
- package/dist/core/CustomElement.min.js.map +7 -0
- package/dist/index.min.js +9 -9
- package/dist/index.min.js.map +3 -3
- package/dist/meta.json +1 -1
- package/dom/HTMLOptionsCollectionProxy.js +5 -3
- package/mixins/AriaReflectorMixin.js +22 -13
- package/mixins/AriaToolbarMixin.js +3 -0
- package/mixins/ControlMixin.js +3 -0
- package/mixins/DelegatesFocusMixin.js +9 -1
- package/mixins/DensityMixin.js +5 -1
- package/mixins/ElevationMixin.js +1 -2
- package/mixins/FlexableMixin.js +21 -2
- package/mixins/FormAssociatedMixin.js +19 -5
- package/mixins/HyperlinkMixin.js +11 -1
- package/mixins/InputMixin.js +22 -0
- package/mixins/KeyboardNavMixin.js +3 -1
- package/mixins/PopupMixin.js +41 -12
- package/mixins/RTLObserverMixin.js +2 -0
- package/mixins/ResizeObserverMixin.js +2 -0
- package/mixins/RippleMixin.js +3 -1
- package/mixins/ScrollListenerMixin.js +13 -1
- package/mixins/SemiStickyMixin.js +7 -0
- package/mixins/ShapeMaskedMixin.js +9 -1
- package/mixins/ShapeMixin.js +9 -0
- package/mixins/StateMixin.js +4 -0
- package/mixins/TextFieldMixin.js +21 -2
- package/mixins/ThemableMixin.js +13 -0
- package/mixins/TooltipTriggerMixin.js +17 -3
- package/mixins/TouchTargetMixin.js +4 -1
- package/mixins/TypographyMixin.js +8 -1
- package/package.json +53 -45
- package/services/theme.js +4 -5
- package/types/components/BottomAppBar.d.ts +3 -4
- package/types/components/BottomSheet.d.ts +33 -7
- package/types/components/BottomSheet.d.ts.map +1 -1
- package/types/components/Button.d.ts +3 -472
- package/types/components/Button.d.ts.map +1 -1
- package/types/components/Card.d.ts +9 -274
- package/types/components/Card.d.ts.map +1 -1
- package/types/components/Checkbox.d.ts +2 -0
- package/types/components/Checkbox.d.ts.map +1 -1
- package/types/components/Chip.d.ts +3 -1180
- package/types/components/Dialog.d.ts +8 -191
- package/types/components/Dialog.d.ts.map +1 -1
- package/types/components/Display.d.ts +5 -4
- package/types/components/Display.d.ts.map +1 -1
- package/types/components/Fab.d.ts +2 -470
- package/types/components/FilterChip.d.ts +5 -4032
- package/types/components/Grid.d.ts +1 -0
- package/types/components/Grid.d.ts.map +1 -1
- package/types/components/Headline.d.ts +3 -4
- package/types/components/Icon.d.ts +1 -49
- package/types/components/Icon.d.ts.map +1 -1
- package/types/components/IconButton.d.ts +3 -1205
- package/types/components/Input.d.ts +1485 -50245
- package/types/components/Input.d.ts.map +1 -1
- package/types/components/InputChip.d.ts +2 -160
- package/types/components/List.d.ts +8 -4
- package/types/components/List.d.ts.map +1 -1
- package/types/components/ListItem.d.ts +10 -235
- package/types/components/ListItem.d.ts.map +1 -1
- package/types/components/ListOption.d.ts +17 -1352
- package/types/components/ListOption.d.ts.map +1 -1
- package/types/components/Listbox.d.ts +199 -11448
- package/types/components/Listbox.d.ts.map +1 -1
- package/types/components/Menu.d.ts +21 -10
- package/types/components/Menu.d.ts.map +1 -1
- package/types/components/MenuItem.d.ts +17 -2894
- package/types/components/MenuItem.d.ts.map +1 -1
- package/types/components/NavBar.d.ts +2 -0
- package/types/components/NavBar.d.ts.map +1 -1
- package/types/components/NavBarItem.d.ts +1 -90
- package/types/components/NavDrawer.d.ts +3 -4
- package/types/components/NavDrawerItem.d.ts +1 -90
- package/types/components/NavItem.d.ts +1 -92
- package/types/components/NavItem.d.ts.map +1 -1
- package/types/components/NavRail.d.ts +3 -4
- package/types/components/NavRailItem.d.ts +1 -90
- package/types/components/Page.d.ts +1 -0
- package/types/components/Page.d.ts.map +1 -1
- package/types/components/Popup.d.ts +5 -3
- package/types/components/Popup.d.ts.map +1 -1
- package/types/components/Progress.d.ts +2 -0
- package/types/components/Progress.d.ts.map +1 -1
- package/types/components/Radio.d.ts +2 -0
- package/types/components/Radio.d.ts.map +1 -1
- package/types/components/Ripple.d.ts +1 -0
- package/types/components/Ripple.d.ts.map +1 -1
- package/types/components/Root.d.ts +1 -1
- package/types/components/Root.d.ts.map +1 -1
- package/types/components/Search.d.ts +502 -2
- package/types/components/Search.d.ts.map +1 -1
- package/types/components/SegmentedButton.d.ts +4 -470
- package/types/components/SegmentedButton.d.ts.map +1 -1
- package/types/components/SegmentedButtonGroup.d.ts +3 -4
- package/types/components/SegmentedButtonGroup.d.ts.map +1 -1
- package/types/components/Select.d.ts +5 -1208
- package/types/components/Select.d.ts.map +1 -1
- package/types/components/SideSheet.d.ts +9 -4
- package/types/components/SideSheet.d.ts.map +1 -1
- package/types/components/Slider.d.ts +10 -189
- package/types/components/Slider.d.ts.map +1 -1
- package/types/components/Snackbar.d.ts +13 -5
- package/types/components/Snackbar.d.ts.map +1 -1
- package/types/components/Switch.d.ts +4 -0
- package/types/components/Switch.d.ts.map +1 -1
- package/types/components/SwitchIcon.d.ts +2 -110
- package/types/components/SwitchIcon.d.ts.map +1 -1
- package/types/components/Tab.d.ts +12 -752
- package/types/components/Tab.d.ts.map +1 -1
- package/types/components/TabContent.d.ts +23 -21
- package/types/components/TabContent.d.ts.map +1 -1
- package/types/components/TabList.d.ts +646 -5801
- package/types/components/TabList.d.ts.map +1 -1
- package/types/components/TabPanel.d.ts +4 -4
- package/types/components/TabPanel.d.ts.map +1 -1
- package/types/components/Table.d.ts +24 -1
- package/types/components/Table.d.ts.map +1 -1
- package/types/components/TextArea.d.ts +15 -1208
- package/types/components/TextArea.d.ts.map +1 -1
- package/types/components/Title.d.ts +3 -4
- package/types/components/Tooltip.d.ts +4 -4
- package/types/components/Tooltip.d.ts.map +1 -1
- package/types/components/TopAppBar.d.ts +4 -5
- package/types/components/TopAppBar.d.ts.map +1 -1
- package/types/constants/shapes.d.ts.map +1 -1
- package/types/core/Composition.d.ts +19 -11
- package/types/core/Composition.d.ts.map +1 -1
- package/types/core/CompositionAdapter.d.ts +30 -8
- package/types/core/CompositionAdapter.d.ts.map +1 -1
- package/types/core/CustomElement.d.ts +27 -25
- package/types/core/CustomElement.d.ts.map +1 -1
- package/types/core/customTypes.d.ts +2 -6
- package/types/core/customTypes.d.ts.map +1 -1
- package/types/core/dom.d.ts.map +1 -1
- package/types/core/jsonMergePatch.d.ts.map +1 -1
- package/types/core/observe.d.ts +20 -19
- package/types/core/observe.d.ts.map +1 -1
- package/types/core/template.d.ts.map +1 -1
- package/types/dom/HTMLOptionsCollectionProxy.d.ts +4 -4
- package/types/dom/HTMLOptionsCollectionProxy.d.ts.map +1 -1
- package/types/mixins/AriaReflectorMixin.d.ts +18 -10
- package/types/mixins/AriaReflectorMixin.d.ts.map +1 -1
- package/types/mixins/AriaToolbarMixin.d.ts +6 -4
- package/types/mixins/AriaToolbarMixin.d.ts.map +1 -1
- package/types/mixins/ControlMixin.d.ts +1 -1
- package/types/mixins/ControlMixin.d.ts.map +1 -1
- package/types/mixins/DelegatesFocusMixin.d.ts +9 -1
- package/types/mixins/DelegatesFocusMixin.d.ts.map +1 -1
- package/types/mixins/DensityMixin.d.ts +4 -1
- package/types/mixins/DensityMixin.d.ts.map +1 -1
- package/types/mixins/ElevationMixin.d.ts +1 -2
- package/types/mixins/ElevationMixin.d.ts.map +1 -1
- package/types/mixins/FlexableMixin.d.ts +1 -0
- package/types/mixins/FlexableMixin.d.ts.map +1 -1
- package/types/mixins/FormAssociatedMixin.d.ts +3 -2
- package/types/mixins/FormAssociatedMixin.d.ts.map +1 -1
- package/types/mixins/HyperlinkMixin.d.ts +4 -1
- package/types/mixins/HyperlinkMixin.d.ts.map +1 -1
- package/types/mixins/InputMixin.d.ts +1 -7
- package/types/mixins/InputMixin.d.ts.map +1 -1
- package/types/mixins/KeyboardNavMixin.d.ts +4 -5
- package/types/mixins/KeyboardNavMixin.d.ts.map +1 -1
- package/types/mixins/PopupMixin.d.ts +22 -6
- package/types/mixins/PopupMixin.d.ts.map +1 -1
- package/types/mixins/RTLObserverMixin.d.ts +1 -0
- package/types/mixins/RTLObserverMixin.d.ts.map +1 -1
- package/types/mixins/ResizeObserverMixin.d.ts +1 -0
- package/types/mixins/ResizeObserverMixin.d.ts.map +1 -1
- package/types/mixins/RippleMixin.d.ts +3 -1
- package/types/mixins/RippleMixin.d.ts.map +1 -1
- package/types/mixins/ScrollListenerMixin.d.ts +7 -2
- package/types/mixins/ScrollListenerMixin.d.ts.map +1 -1
- package/types/mixins/SemiStickyMixin.d.ts +1 -1
- package/types/mixins/SemiStickyMixin.d.ts.map +1 -1
- package/types/mixins/ShapeMaskedMixin.d.ts +4 -1
- package/types/mixins/ShapeMaskedMixin.d.ts.map +1 -1
- package/types/mixins/ShapeMixin.d.ts +1 -0
- package/types/mixins/ShapeMixin.d.ts.map +1 -1
- package/types/mixins/StateMixin.d.ts +2 -0
- package/types/mixins/StateMixin.d.ts.map +1 -1
- package/types/mixins/TextFieldMixin.d.ts +7 -1208
- package/types/mixins/TextFieldMixin.d.ts.map +1 -1
- package/types/mixins/ThemableMixin.d.ts +1 -0
- package/types/mixins/ThemableMixin.d.ts.map +1 -1
- package/types/mixins/TooltipTriggerMixin.d.ts +12 -4
- package/types/mixins/TooltipTriggerMixin.d.ts.map +1 -1
- package/types/mixins/TouchTargetMixin.d.ts +4 -1
- package/types/mixins/TouchTargetMixin.d.ts.map +1 -1
- package/types/mixins/TypographyMixin.d.ts +4 -1
- package/types/mixins/TypographyMixin.d.ts.map +1 -1
- package/types/services/theme.d.ts.map +1 -1
- package/types/utils/jsx-runtime.d.ts +3 -3
- package/types/utils/jsx-runtime.d.ts.map +1 -1
- package/types/utils/material-color/hct/Hct.d.ts.map +1 -1
- package/types/utils/material-color/palettes/CorePalette.d.ts +1 -1
- package/types/utils/material-color/palettes/CorePalette.d.ts.map +1 -1
- package/types/utils/material-color/scheme/Scheme.d.ts.map +1 -1
- package/types/utils/pixelmatch.d.ts +3 -3
- package/types/utils/pixelmatch.d.ts.map +1 -1
- package/types/utils/searchParams.d.ts.map +1 -1
- package/utils/jsx-runtime.js +9 -4
- package/utils/pixelmatch.js +10 -7
- package/utils/searchParams.js +3 -0
- package/components/Button.md +0 -61
|
@@ -22,11 +22,10 @@ declare const _default: typeof import("../index.js").CustomElement & import("../
|
|
|
22
22
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
23
23
|
_ariaRole: string;
|
|
24
24
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
25
|
-
|
|
26
|
-
hasFiredConnected: boolean;
|
|
25
|
+
_onConnectAriaValues: Map<import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>, ARIAMixin[import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>]>;
|
|
27
26
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
28
|
-
readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot;
|
|
29
|
-
updateAriaProperty(name:
|
|
27
|
+
readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot | Element | readonly Element[];
|
|
28
|
+
updateAriaProperty<K extends StringKeyOfARIAMixin<keyof ARIAMixin>>(name: K, value: ARIAMixin[K]): void;
|
|
30
29
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
31
30
|
disabled: boolean;
|
|
32
31
|
focused: boolean;
|
|
@@ -135,277 +134,13 @@ declare const _default: typeof import("../index.js").CustomElement & import("../
|
|
|
135
134
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
136
135
|
stateTargetElement: HTMLElement;
|
|
137
136
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
138
|
-
showBlocker: () =>
|
|
139
|
-
|
|
140
|
-
target: string;
|
|
141
|
-
download: string;
|
|
142
|
-
ping: string;
|
|
143
|
-
rel: string;
|
|
144
|
-
hreflang: string;
|
|
145
|
-
referrerPolicy: string;
|
|
146
|
-
} & {
|
|
147
|
-
origin: string;
|
|
148
|
-
protocol: string;
|
|
149
|
-
username: string;
|
|
150
|
-
password: string;
|
|
151
|
-
host: string;
|
|
152
|
-
hostname: string;
|
|
153
|
-
port: string;
|
|
154
|
-
pathname: string;
|
|
155
|
-
search: string;
|
|
156
|
-
hash: string;
|
|
157
|
-
} & object & {
|
|
158
|
-
delegatesFocus: boolean;
|
|
159
|
-
} & {
|
|
160
|
-
_ariaRole: string;
|
|
161
|
-
} & {
|
|
162
|
-
onConnectAriaValues: Map<string, string>;
|
|
163
|
-
hasFiredConnected: boolean;
|
|
164
|
-
} & {
|
|
165
|
-
readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot;
|
|
166
|
-
updateAriaProperty(name: keyof HTMLElement & keyof ElementInternals, value: string): void;
|
|
167
|
-
} & {
|
|
168
|
-
disabled: boolean;
|
|
169
|
-
focused: boolean;
|
|
170
|
-
hovered: boolean;
|
|
171
|
-
pressed: boolean;
|
|
172
|
-
_lastInteraction: "key" | "mouse" | "touch" | "pen";
|
|
173
|
-
_hovered: boolean;
|
|
174
|
-
_focused: boolean;
|
|
175
|
-
_focusedSynthetic: boolean;
|
|
176
|
-
_keyPressed: boolean;
|
|
177
|
-
_keyReleased: boolean;
|
|
178
|
-
_pointerPressed: boolean;
|
|
179
|
-
stateLayer: boolean;
|
|
180
|
-
} & {
|
|
181
|
-
disabledState: boolean;
|
|
182
|
-
hoveredState: boolean;
|
|
183
|
-
focusedState: boolean;
|
|
184
|
-
pressedState: boolean;
|
|
185
|
-
touchedState: boolean;
|
|
186
|
-
pointedState: boolean;
|
|
187
|
-
} & {
|
|
188
|
-
stateTargetElement: HTMLElement;
|
|
189
|
-
} & {
|
|
190
|
-
_ipcListener: EventListener;
|
|
191
|
-
_ipcTarget: EventTarget;
|
|
192
|
-
_files: FileList;
|
|
193
|
-
} & {
|
|
194
|
-
ariaControls: string;
|
|
195
|
-
autocomplete: string;
|
|
196
|
-
name: string;
|
|
197
|
-
readOnly: boolean;
|
|
198
|
-
formNoValidate: boolean;
|
|
199
|
-
defaultChecked: boolean;
|
|
200
|
-
_checkedDirty: boolean;
|
|
201
|
-
_checked: boolean;
|
|
202
|
-
required: boolean;
|
|
203
|
-
type: string;
|
|
204
|
-
_defaultValue: string;
|
|
205
|
-
_value: string;
|
|
206
|
-
_valueDirty: boolean;
|
|
207
|
-
_userInteracted: boolean;
|
|
208
|
-
_invalid: boolean;
|
|
209
|
-
_badInput: boolean;
|
|
210
|
-
_validationMessage: string;
|
|
211
|
-
_formDisabled: boolean;
|
|
212
|
-
_formReset: boolean;
|
|
213
|
-
} & {
|
|
214
|
-
erroredState: boolean;
|
|
215
|
-
defaultValue: string;
|
|
216
|
-
_valueBehavior: "default" | "value" | "default/on" | "filename";
|
|
217
|
-
} & {
|
|
218
|
-
_onSetValue(value: string): void;
|
|
219
|
-
_onSetChecked(checked: boolean): void;
|
|
220
|
-
} & {
|
|
221
|
-
value: string;
|
|
222
|
-
checked: boolean;
|
|
223
|
-
} & {
|
|
224
|
-
form: HTMLFormElement;
|
|
225
|
-
validity: ValidityState;
|
|
226
|
-
validationMessage: string;
|
|
227
|
-
willValidate: boolean;
|
|
228
|
-
labels: NodeList;
|
|
229
|
-
} & {
|
|
230
|
-
disabledState: boolean;
|
|
231
|
-
} & {
|
|
232
|
-
checkValidity(): boolean;
|
|
233
|
-
reportValidity(): boolean;
|
|
234
|
-
setCustomValidity(error: string): void;
|
|
235
|
-
_notifyRadioChange(key: string, value: string): void;
|
|
236
|
-
refreshFormAssociation(): void;
|
|
237
|
-
formAssociatedCallback(form: HTMLFormElement | null): void;
|
|
238
|
-
formIPCEvent(event: CustomEvent<[string, string]>): void;
|
|
239
|
-
formDisabledCallback(disabled: boolean): void;
|
|
240
|
-
formResetCallback(): void;
|
|
241
|
-
formStateRestoreCallback(state: string | FormData, mode: "autocomplete" | "restore"): void;
|
|
242
|
-
_updateFormAssociatedValue(): void;
|
|
243
|
-
} & {
|
|
244
|
-
color: string;
|
|
245
|
-
ink: string;
|
|
246
|
-
typeStyle: string;
|
|
247
|
-
} & {
|
|
248
|
-
shapeTop: boolean;
|
|
249
|
-
shapeBottom: boolean;
|
|
250
|
-
shapeStart: boolean;
|
|
251
|
-
shapeEnd: boolean;
|
|
252
|
-
shapeStyle: string;
|
|
253
|
-
outlined: boolean;
|
|
254
|
-
} & {
|
|
255
|
-
block: boolean;
|
|
256
|
-
inline: boolean;
|
|
257
|
-
row: boolean;
|
|
258
|
-
x: string;
|
|
259
|
-
y: string;
|
|
260
|
-
gap: number;
|
|
261
|
-
padding: string;
|
|
262
|
-
} & {
|
|
263
|
-
_ariaRole: string;
|
|
264
|
-
} & {
|
|
265
|
-
elevated: boolean;
|
|
266
|
-
filled: boolean;
|
|
267
|
-
actionable: boolean;
|
|
268
|
-
actionLabel: string;
|
|
269
|
-
onaction: EventListener;
|
|
270
|
-
} & {
|
|
271
|
-
stateTargetElement: HTMLElement;
|
|
272
|
-
}) => boolean>;
|
|
273
|
-
showButton: () => ReturnType<({ actionable, href }: import("../index.js").CustomElement & {
|
|
274
|
-
href: string;
|
|
275
|
-
target: string;
|
|
276
|
-
download: string;
|
|
277
|
-
ping: string;
|
|
278
|
-
rel: string;
|
|
279
|
-
hreflang: string;
|
|
280
|
-
referrerPolicy: string;
|
|
281
|
-
} & {
|
|
282
|
-
origin: string;
|
|
283
|
-
protocol: string;
|
|
284
|
-
username: string;
|
|
285
|
-
password: string;
|
|
286
|
-
host: string;
|
|
287
|
-
hostname: string;
|
|
288
|
-
port: string;
|
|
289
|
-
pathname: string;
|
|
290
|
-
search: string;
|
|
291
|
-
hash: string;
|
|
292
|
-
} & object & {
|
|
293
|
-
delegatesFocus: boolean;
|
|
294
|
-
} & {
|
|
295
|
-
_ariaRole: string;
|
|
296
|
-
} & {
|
|
297
|
-
onConnectAriaValues: Map<string, string>;
|
|
298
|
-
hasFiredConnected: boolean;
|
|
299
|
-
} & {
|
|
300
|
-
readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot;
|
|
301
|
-
updateAriaProperty(name: keyof HTMLElement & keyof ElementInternals, value: string): void;
|
|
302
|
-
} & {
|
|
303
|
-
disabled: boolean;
|
|
304
|
-
focused: boolean;
|
|
305
|
-
hovered: boolean;
|
|
306
|
-
pressed: boolean;
|
|
307
|
-
_lastInteraction: "key" | "mouse" | "touch" | "pen";
|
|
308
|
-
_hovered: boolean;
|
|
309
|
-
_focused: boolean;
|
|
310
|
-
_focusedSynthetic: boolean;
|
|
311
|
-
_keyPressed: boolean;
|
|
312
|
-
_keyReleased: boolean;
|
|
313
|
-
_pointerPressed: boolean;
|
|
314
|
-
stateLayer: boolean;
|
|
315
|
-
} & {
|
|
316
|
-
disabledState: boolean;
|
|
317
|
-
hoveredState: boolean;
|
|
318
|
-
focusedState: boolean;
|
|
319
|
-
pressedState: boolean;
|
|
320
|
-
touchedState: boolean;
|
|
321
|
-
pointedState: boolean;
|
|
322
|
-
} & {
|
|
323
|
-
stateTargetElement: HTMLElement;
|
|
324
|
-
} & {
|
|
325
|
-
_ipcListener: EventListener;
|
|
326
|
-
_ipcTarget: EventTarget;
|
|
327
|
-
_files: FileList;
|
|
328
|
-
} & {
|
|
329
|
-
ariaControls: string;
|
|
330
|
-
autocomplete: string;
|
|
331
|
-
name: string;
|
|
332
|
-
readOnly: boolean;
|
|
333
|
-
formNoValidate: boolean;
|
|
334
|
-
defaultChecked: boolean;
|
|
335
|
-
_checkedDirty: boolean;
|
|
336
|
-
_checked: boolean;
|
|
337
|
-
required: boolean;
|
|
338
|
-
type: string;
|
|
339
|
-
_defaultValue: string;
|
|
340
|
-
_value: string;
|
|
341
|
-
_valueDirty: boolean;
|
|
342
|
-
_userInteracted: boolean;
|
|
343
|
-
_invalid: boolean;
|
|
344
|
-
_badInput: boolean;
|
|
345
|
-
_validationMessage: string;
|
|
346
|
-
_formDisabled: boolean;
|
|
347
|
-
_formReset: boolean;
|
|
348
|
-
} & {
|
|
349
|
-
erroredState: boolean;
|
|
350
|
-
defaultValue: string;
|
|
351
|
-
_valueBehavior: "default" | "value" | "default/on" | "filename";
|
|
352
|
-
} & {
|
|
353
|
-
_onSetValue(value: string): void;
|
|
354
|
-
_onSetChecked(checked: boolean): void;
|
|
355
|
-
} & {
|
|
356
|
-
value: string;
|
|
357
|
-
checked: boolean;
|
|
358
|
-
} & {
|
|
359
|
-
form: HTMLFormElement;
|
|
360
|
-
validity: ValidityState;
|
|
361
|
-
validationMessage: string;
|
|
362
|
-
willValidate: boolean;
|
|
363
|
-
labels: NodeList;
|
|
364
|
-
} & {
|
|
365
|
-
disabledState: boolean;
|
|
366
|
-
} & {
|
|
367
|
-
checkValidity(): boolean;
|
|
368
|
-
reportValidity(): boolean;
|
|
369
|
-
setCustomValidity(error: string): void;
|
|
370
|
-
_notifyRadioChange(key: string, value: string): void;
|
|
371
|
-
refreshFormAssociation(): void;
|
|
372
|
-
formAssociatedCallback(form: HTMLFormElement | null): void;
|
|
373
|
-
formIPCEvent(event: CustomEvent<[string, string]>): void;
|
|
374
|
-
formDisabledCallback(disabled: boolean): void;
|
|
375
|
-
formResetCallback(): void;
|
|
376
|
-
formStateRestoreCallback(state: string | FormData, mode: "autocomplete" | "restore"): void;
|
|
377
|
-
_updateFormAssociatedValue(): void;
|
|
378
|
-
} & {
|
|
379
|
-
color: string;
|
|
380
|
-
ink: string;
|
|
381
|
-
typeStyle: string;
|
|
382
|
-
} & {
|
|
383
|
-
shapeTop: boolean;
|
|
384
|
-
shapeBottom: boolean;
|
|
385
|
-
shapeStart: boolean;
|
|
386
|
-
shapeEnd: boolean;
|
|
387
|
-
shapeStyle: string;
|
|
388
|
-
outlined: boolean;
|
|
389
|
-
} & {
|
|
390
|
-
block: boolean;
|
|
391
|
-
inline: boolean;
|
|
392
|
-
row: boolean;
|
|
393
|
-
x: string;
|
|
394
|
-
y: string;
|
|
395
|
-
gap: number;
|
|
396
|
-
padding: string;
|
|
397
|
-
} & {
|
|
398
|
-
_ariaRole: string;
|
|
399
|
-
} & {
|
|
400
|
-
elevated: boolean;
|
|
401
|
-
filled: boolean;
|
|
402
|
-
actionable: boolean;
|
|
403
|
-
actionLabel: string;
|
|
404
|
-
onaction: EventListener;
|
|
405
|
-
} & {
|
|
406
|
-
stateTargetElement: HTMLElement;
|
|
407
|
-
}) => boolean>;
|
|
137
|
+
showBlocker: () => boolean;
|
|
138
|
+
showButton: () => boolean;
|
|
408
139
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
140
|
+
/**
|
|
141
|
+
* Focuses the internal action control if the card is actionable and not disabled.
|
|
142
|
+
* @return {void}
|
|
143
|
+
*/
|
|
409
144
|
focus(): void;
|
|
410
145
|
}, any[]>;
|
|
411
146
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../../components/Card.js"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../../components/Card.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAsDI;;;OAGG;aADS,IAAI"}
|
|
@@ -191,7 +191,9 @@ declare const _default: typeof CustomElement & import("../core/CustomElement.js"
|
|
|
191
191
|
ink: string;
|
|
192
192
|
typeStyle: string;
|
|
193
193
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
194
|
+
/** Whether the element renders a state layer for interaction feedback. */
|
|
194
195
|
stateLayer: boolean;
|
|
196
|
+
/** The underlying control input `type` value. */
|
|
195
197
|
type: string;
|
|
196
198
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
197
199
|
icon: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../../components/Checkbox.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../../components/Checkbox.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAqBI,0EAA0E;;IAE1E,iDAAiD;;;;;;;;;;0BArB3B,0BAA0B"}
|