@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
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MenuItem.d.ts","sourceRoot":"","sources":["../../components/MenuItem.js"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"MenuItem.d.ts","sourceRoot":"","sources":["../../components/MenuItem.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAiBI,uDAAuD;;IAGvD,+DAA+D;;IAG/D,yDAAyD"}
|
|
@@ -8,7 +8,9 @@ declare const _default: typeof CustomElement & import("../core/CustomElement.js"
|
|
|
8
8
|
open: boolean;
|
|
9
9
|
autoClose: number;
|
|
10
10
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
11
|
+
/** Color token used for the nav surface (defaults to `surface-container`). */
|
|
11
12
|
color: string;
|
|
13
|
+
/** ARIA role applied to the host element (default: 'navigation'). */
|
|
12
14
|
_ariaRole: string;
|
|
13
15
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
14
16
|
onWindowResize(): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NavBar.d.ts","sourceRoot":"","sources":["../../components/NavBar.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"NavBar.d.ts","sourceRoot":"","sources":["../../components/NavBar.js"],"names":[],"mappings":";;;;;;;;;;IA4BI,8EAA8E;;IAG9E,qEAAqE;;;;;;0BA/B/C,0BAA0B"}
|
|
@@ -91,96 +91,7 @@ declare const _default: typeof import("../index.js").CustomElement & import("../
|
|
|
91
91
|
_anchorAriaCurrent: never;
|
|
92
92
|
_anchorAriaLabelledby: never;
|
|
93
93
|
_anchorHref: never;
|
|
94
|
-
iconVariation: () =>
|
|
95
|
-
delegatesFocus: boolean;
|
|
96
|
-
} & {
|
|
97
|
-
href: string;
|
|
98
|
-
target: string;
|
|
99
|
-
download: string;
|
|
100
|
-
ping: string;
|
|
101
|
-
rel: string;
|
|
102
|
-
hreflang: string;
|
|
103
|
-
referrerPolicy: string;
|
|
104
|
-
} & {
|
|
105
|
-
origin: string;
|
|
106
|
-
protocol: string;
|
|
107
|
-
username: string;
|
|
108
|
-
password: string;
|
|
109
|
-
host: string;
|
|
110
|
-
hostname: string;
|
|
111
|
-
port: string;
|
|
112
|
-
pathname: string;
|
|
113
|
-
search: string;
|
|
114
|
-
hash: string;
|
|
115
|
-
} & object & {
|
|
116
|
-
disabled: boolean;
|
|
117
|
-
focused: boolean;
|
|
118
|
-
hovered: boolean;
|
|
119
|
-
pressed: boolean;
|
|
120
|
-
_lastInteraction: "key" | "mouse" | "touch" | "pen";
|
|
121
|
-
_hovered: boolean;
|
|
122
|
-
_focused: boolean;
|
|
123
|
-
_focusedSynthetic: boolean;
|
|
124
|
-
_keyPressed: boolean;
|
|
125
|
-
_keyReleased: boolean;
|
|
126
|
-
_pointerPressed: boolean;
|
|
127
|
-
stateLayer: boolean;
|
|
128
|
-
} & {
|
|
129
|
-
disabledState: boolean;
|
|
130
|
-
hoveredState: boolean;
|
|
131
|
-
focusedState: boolean;
|
|
132
|
-
pressedState: boolean;
|
|
133
|
-
touchedState: boolean;
|
|
134
|
-
pointedState: boolean;
|
|
135
|
-
} & {
|
|
136
|
-
stateTargetElement: HTMLElement;
|
|
137
|
-
} & {
|
|
138
|
-
_lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
|
|
139
|
-
_rippleAdded: boolean;
|
|
140
|
-
} & {
|
|
141
|
-
_lastRipple: import("../index.js").CustomElement & {
|
|
142
|
-
hadRippleHeld: boolean;
|
|
143
|
-
hadRippleReleased: boolean;
|
|
144
|
-
rippleStarted: boolean;
|
|
145
|
-
} & {
|
|
146
|
-
rippleState: string;
|
|
147
|
-
keepAlive: boolean;
|
|
148
|
-
_positionX: number;
|
|
149
|
-
_positionY: number;
|
|
150
|
-
_radius: number;
|
|
151
|
-
holdRipple: boolean;
|
|
152
|
-
} & {
|
|
153
|
-
_positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
|
|
154
|
-
styles: {
|
|
155
|
-
minHeight: string;
|
|
156
|
-
minWidth: string;
|
|
157
|
-
boxShadow: string;
|
|
158
|
-
top: string;
|
|
159
|
-
left: string;
|
|
160
|
-
};
|
|
161
|
-
};
|
|
162
|
-
} & {
|
|
163
|
-
updatePosition(x?: number, y?: number, size?: number): void;
|
|
164
|
-
handleRippleComplete(): void;
|
|
165
|
-
};
|
|
166
|
-
} & {
|
|
167
|
-
addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
|
|
168
|
-
} & {
|
|
169
|
-
color: string;
|
|
170
|
-
ink: string;
|
|
171
|
-
typeStyle: string;
|
|
172
|
-
} & {
|
|
173
|
-
stateLayer: boolean;
|
|
174
|
-
} & {
|
|
175
|
-
showLabel: string;
|
|
176
|
-
active: boolean;
|
|
177
|
-
icon: string;
|
|
178
|
-
src: string;
|
|
179
|
-
badge: string;
|
|
180
|
-
ariaLabel: string;
|
|
181
|
-
} & {
|
|
182
|
-
focus(options?: FocusOptions): void;
|
|
183
|
-
}) => string>;
|
|
94
|
+
iconVariation: () => string;
|
|
184
95
|
}, any[]>;
|
|
185
96
|
export default _default;
|
|
186
97
|
//# sourceMappingURL=NavBarItem.d.ts.map
|
|
@@ -9,11 +9,10 @@ declare const _default: typeof import("../index.js").CustomElement & import("../
|
|
|
9
9
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
10
10
|
_ariaRole: string;
|
|
11
11
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
12
|
-
|
|
13
|
-
hasFiredConnected: boolean;
|
|
12
|
+
_onConnectAriaValues: Map<import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>, ARIAMixin[import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>]>;
|
|
14
13
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
15
|
-
readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot;
|
|
16
|
-
updateAriaProperty(name:
|
|
14
|
+
readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot | Element | readonly Element[];
|
|
15
|
+
updateAriaProperty<K extends StringKeyOfARIAMixin<keyof ARIAMixin>>(name: K, value: ARIAMixin[K]): void;
|
|
17
16
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
18
17
|
disabled: boolean;
|
|
19
18
|
focused: boolean;
|
|
@@ -91,96 +91,7 @@ declare const _default: typeof import("../index.js").CustomElement & import("../
|
|
|
91
91
|
_anchorAriaCurrent: never;
|
|
92
92
|
_anchorAriaLabelledby: never;
|
|
93
93
|
_anchorHref: never;
|
|
94
|
-
iconVariation: () =>
|
|
95
|
-
delegatesFocus: boolean;
|
|
96
|
-
} & {
|
|
97
|
-
href: string;
|
|
98
|
-
target: string;
|
|
99
|
-
download: string;
|
|
100
|
-
ping: string;
|
|
101
|
-
rel: string;
|
|
102
|
-
hreflang: string;
|
|
103
|
-
referrerPolicy: string;
|
|
104
|
-
} & {
|
|
105
|
-
origin: string;
|
|
106
|
-
protocol: string;
|
|
107
|
-
username: string;
|
|
108
|
-
password: string;
|
|
109
|
-
host: string;
|
|
110
|
-
hostname: string;
|
|
111
|
-
port: string;
|
|
112
|
-
pathname: string;
|
|
113
|
-
search: string;
|
|
114
|
-
hash: string;
|
|
115
|
-
} & object & {
|
|
116
|
-
disabled: boolean;
|
|
117
|
-
focused: boolean;
|
|
118
|
-
hovered: boolean;
|
|
119
|
-
pressed: boolean;
|
|
120
|
-
_lastInteraction: "key" | "mouse" | "touch" | "pen";
|
|
121
|
-
_hovered: boolean;
|
|
122
|
-
_focused: boolean;
|
|
123
|
-
_focusedSynthetic: boolean;
|
|
124
|
-
_keyPressed: boolean;
|
|
125
|
-
_keyReleased: boolean;
|
|
126
|
-
_pointerPressed: boolean;
|
|
127
|
-
stateLayer: boolean;
|
|
128
|
-
} & {
|
|
129
|
-
disabledState: boolean;
|
|
130
|
-
hoveredState: boolean;
|
|
131
|
-
focusedState: boolean;
|
|
132
|
-
pressedState: boolean;
|
|
133
|
-
touchedState: boolean;
|
|
134
|
-
pointedState: boolean;
|
|
135
|
-
} & {
|
|
136
|
-
stateTargetElement: HTMLElement;
|
|
137
|
-
} & {
|
|
138
|
-
_lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
|
|
139
|
-
_rippleAdded: boolean;
|
|
140
|
-
} & {
|
|
141
|
-
_lastRipple: import("../index.js").CustomElement & {
|
|
142
|
-
hadRippleHeld: boolean;
|
|
143
|
-
hadRippleReleased: boolean;
|
|
144
|
-
rippleStarted: boolean;
|
|
145
|
-
} & {
|
|
146
|
-
rippleState: string;
|
|
147
|
-
keepAlive: boolean;
|
|
148
|
-
_positionX: number;
|
|
149
|
-
_positionY: number;
|
|
150
|
-
_radius: number;
|
|
151
|
-
holdRipple: boolean;
|
|
152
|
-
} & {
|
|
153
|
-
_positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
|
|
154
|
-
styles: {
|
|
155
|
-
minHeight: string;
|
|
156
|
-
minWidth: string;
|
|
157
|
-
boxShadow: string;
|
|
158
|
-
top: string;
|
|
159
|
-
left: string;
|
|
160
|
-
};
|
|
161
|
-
};
|
|
162
|
-
} & {
|
|
163
|
-
updatePosition(x?: number, y?: number, size?: number): void;
|
|
164
|
-
handleRippleComplete(): void;
|
|
165
|
-
};
|
|
166
|
-
} & {
|
|
167
|
-
addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
|
|
168
|
-
} & {
|
|
169
|
-
color: string;
|
|
170
|
-
ink: string;
|
|
171
|
-
typeStyle: string;
|
|
172
|
-
} & {
|
|
173
|
-
stateLayer: boolean;
|
|
174
|
-
} & {
|
|
175
|
-
showLabel: string;
|
|
176
|
-
active: boolean;
|
|
177
|
-
icon: string;
|
|
178
|
-
src: string;
|
|
179
|
-
badge: string;
|
|
180
|
-
ariaLabel: string;
|
|
181
|
-
} & {
|
|
182
|
-
focus(options?: FocusOptions): void;
|
|
183
|
-
}) => string>;
|
|
94
|
+
iconVariation: () => string;
|
|
184
95
|
}, any[]>;
|
|
185
96
|
export default _default;
|
|
186
97
|
//# sourceMappingURL=NavDrawerItem.d.ts.map
|
|
@@ -86,103 +86,12 @@ declare const _default: typeof CustomElement & import("../core/CustomElement.js"
|
|
|
86
86
|
badge: string;
|
|
87
87
|
ariaLabel: string;
|
|
88
88
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
89
|
-
/** @type {HTMLElement['focus']} */
|
|
90
89
|
focus(options?: FocusOptions): void;
|
|
91
90
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
92
91
|
_anchorAriaCurrent: never;
|
|
93
92
|
_anchorAriaLabelledby: never;
|
|
94
93
|
_anchorHref: never;
|
|
95
|
-
iconVariation: () =>
|
|
96
|
-
delegatesFocus: boolean;
|
|
97
|
-
} & {
|
|
98
|
-
href: string;
|
|
99
|
-
target: string;
|
|
100
|
-
download: string;
|
|
101
|
-
ping: string;
|
|
102
|
-
rel: string;
|
|
103
|
-
hreflang: string;
|
|
104
|
-
referrerPolicy: string;
|
|
105
|
-
} & {
|
|
106
|
-
origin: string;
|
|
107
|
-
protocol: string;
|
|
108
|
-
username: string;
|
|
109
|
-
password: string;
|
|
110
|
-
host: string;
|
|
111
|
-
hostname: string;
|
|
112
|
-
port: string;
|
|
113
|
-
pathname: string;
|
|
114
|
-
search: string;
|
|
115
|
-
hash: string;
|
|
116
|
-
} & object & {
|
|
117
|
-
disabled: boolean;
|
|
118
|
-
focused: boolean;
|
|
119
|
-
hovered: boolean;
|
|
120
|
-
pressed: boolean;
|
|
121
|
-
_lastInteraction: "key" | "mouse" | "touch" | "pen";
|
|
122
|
-
_hovered: boolean;
|
|
123
|
-
_focused: boolean;
|
|
124
|
-
_focusedSynthetic: boolean;
|
|
125
|
-
_keyPressed: boolean;
|
|
126
|
-
_keyReleased: boolean;
|
|
127
|
-
_pointerPressed: boolean;
|
|
128
|
-
stateLayer: boolean;
|
|
129
|
-
} & {
|
|
130
|
-
disabledState: boolean;
|
|
131
|
-
hoveredState: boolean;
|
|
132
|
-
focusedState: boolean;
|
|
133
|
-
pressedState: boolean;
|
|
134
|
-
touchedState: boolean;
|
|
135
|
-
pointedState: boolean;
|
|
136
|
-
} & {
|
|
137
|
-
stateTargetElement: HTMLElement;
|
|
138
|
-
} & {
|
|
139
|
-
_lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
|
|
140
|
-
_rippleAdded: boolean;
|
|
141
|
-
} & {
|
|
142
|
-
_lastRipple: CustomElement & {
|
|
143
|
-
hadRippleHeld: boolean;
|
|
144
|
-
hadRippleReleased: boolean;
|
|
145
|
-
rippleStarted: boolean;
|
|
146
|
-
} & {
|
|
147
|
-
rippleState: string;
|
|
148
|
-
keepAlive: boolean;
|
|
149
|
-
_positionX: number;
|
|
150
|
-
_positionY: number;
|
|
151
|
-
_radius: number;
|
|
152
|
-
holdRipple: boolean;
|
|
153
|
-
} & {
|
|
154
|
-
_positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
|
|
155
|
-
styles: {
|
|
156
|
-
minHeight: string;
|
|
157
|
-
minWidth: string;
|
|
158
|
-
boxShadow: string;
|
|
159
|
-
top: string;
|
|
160
|
-
left: string;
|
|
161
|
-
};
|
|
162
|
-
};
|
|
163
|
-
} & {
|
|
164
|
-
updatePosition(x?: number, y?: number, size?: number): void;
|
|
165
|
-
handleRippleComplete(): void;
|
|
166
|
-
};
|
|
167
|
-
} & {
|
|
168
|
-
addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
|
|
169
|
-
} & {
|
|
170
|
-
color: string;
|
|
171
|
-
ink: string;
|
|
172
|
-
typeStyle: string;
|
|
173
|
-
} & {
|
|
174
|
-
stateLayer: boolean;
|
|
175
|
-
} & {
|
|
176
|
-
showLabel: string;
|
|
177
|
-
active: boolean;
|
|
178
|
-
icon: string;
|
|
179
|
-
src: string;
|
|
180
|
-
badge: string;
|
|
181
|
-
ariaLabel: string;
|
|
182
|
-
} & {
|
|
183
|
-
/** @type {HTMLElement['focus']} */
|
|
184
|
-
focus(options?: FocusOptions): void;
|
|
185
|
-
}) => string>;
|
|
94
|
+
iconVariation: () => string;
|
|
186
95
|
}, any[]>;
|
|
187
96
|
export default _default;
|
|
188
97
|
export type DeprecatedHTMLAnchorElementProperties = "charset" | "coords" | "name" | "shape";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NavItem.d.ts","sourceRoot":"","sources":["../../components/NavItem.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"NavItem.d.ts","sourceRoot":"","sources":["../../components/NavItem.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oDAYc,SAAS,GAAC,QAAQ,GAAC,MAAM,GAAC,OAAO;0BAPrB,0BAA0B"}
|
|
@@ -9,11 +9,10 @@ declare const _default: typeof import("../index.js").CustomElement & import("../
|
|
|
9
9
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
10
10
|
_ariaRole: string;
|
|
11
11
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
12
|
-
|
|
13
|
-
hasFiredConnected: boolean;
|
|
12
|
+
_onConnectAriaValues: Map<import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>, ARIAMixin[import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>]>;
|
|
14
13
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
15
|
-
readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot;
|
|
16
|
-
updateAriaProperty(name:
|
|
14
|
+
readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot | Element | readonly Element[];
|
|
15
|
+
updateAriaProperty<K extends StringKeyOfARIAMixin<keyof ARIAMixin>>(name: K, value: ARIAMixin[K]): void;
|
|
17
16
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
18
17
|
disabled: boolean;
|
|
19
18
|
focused: boolean;
|
|
@@ -91,96 +91,7 @@ declare const _default: typeof import("../index.js").CustomElement & import("../
|
|
|
91
91
|
_anchorAriaCurrent: never;
|
|
92
92
|
_anchorAriaLabelledby: never;
|
|
93
93
|
_anchorHref: never;
|
|
94
|
-
iconVariation: () =>
|
|
95
|
-
delegatesFocus: boolean;
|
|
96
|
-
} & {
|
|
97
|
-
href: string;
|
|
98
|
-
target: string;
|
|
99
|
-
download: string;
|
|
100
|
-
ping: string;
|
|
101
|
-
rel: string;
|
|
102
|
-
hreflang: string;
|
|
103
|
-
referrerPolicy: string;
|
|
104
|
-
} & {
|
|
105
|
-
origin: string;
|
|
106
|
-
protocol: string;
|
|
107
|
-
username: string;
|
|
108
|
-
password: string;
|
|
109
|
-
host: string;
|
|
110
|
-
hostname: string;
|
|
111
|
-
port: string;
|
|
112
|
-
pathname: string;
|
|
113
|
-
search: string;
|
|
114
|
-
hash: string;
|
|
115
|
-
} & object & {
|
|
116
|
-
disabled: boolean;
|
|
117
|
-
focused: boolean;
|
|
118
|
-
hovered: boolean;
|
|
119
|
-
pressed: boolean;
|
|
120
|
-
_lastInteraction: "key" | "mouse" | "touch" | "pen";
|
|
121
|
-
_hovered: boolean;
|
|
122
|
-
_focused: boolean;
|
|
123
|
-
_focusedSynthetic: boolean;
|
|
124
|
-
_keyPressed: boolean;
|
|
125
|
-
_keyReleased: boolean;
|
|
126
|
-
_pointerPressed: boolean;
|
|
127
|
-
stateLayer: boolean;
|
|
128
|
-
} & {
|
|
129
|
-
disabledState: boolean;
|
|
130
|
-
hoveredState: boolean;
|
|
131
|
-
focusedState: boolean;
|
|
132
|
-
pressedState: boolean;
|
|
133
|
-
touchedState: boolean;
|
|
134
|
-
pointedState: boolean;
|
|
135
|
-
} & {
|
|
136
|
-
stateTargetElement: HTMLElement;
|
|
137
|
-
} & {
|
|
138
|
-
_lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
|
|
139
|
-
_rippleAdded: boolean;
|
|
140
|
-
} & {
|
|
141
|
-
_lastRipple: import("../index.js").CustomElement & {
|
|
142
|
-
hadRippleHeld: boolean;
|
|
143
|
-
hadRippleReleased: boolean;
|
|
144
|
-
rippleStarted: boolean;
|
|
145
|
-
} & {
|
|
146
|
-
rippleState: string;
|
|
147
|
-
keepAlive: boolean;
|
|
148
|
-
_positionX: number;
|
|
149
|
-
_positionY: number;
|
|
150
|
-
_radius: number;
|
|
151
|
-
holdRipple: boolean;
|
|
152
|
-
} & {
|
|
153
|
-
_positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
|
|
154
|
-
styles: {
|
|
155
|
-
minHeight: string;
|
|
156
|
-
minWidth: string;
|
|
157
|
-
boxShadow: string;
|
|
158
|
-
top: string;
|
|
159
|
-
left: string;
|
|
160
|
-
};
|
|
161
|
-
};
|
|
162
|
-
} & {
|
|
163
|
-
updatePosition(x?: number, y?: number, size?: number): void;
|
|
164
|
-
handleRippleComplete(): void;
|
|
165
|
-
};
|
|
166
|
-
} & {
|
|
167
|
-
addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
|
|
168
|
-
} & {
|
|
169
|
-
color: string;
|
|
170
|
-
ink: string;
|
|
171
|
-
typeStyle: string;
|
|
172
|
-
} & {
|
|
173
|
-
stateLayer: boolean;
|
|
174
|
-
} & {
|
|
175
|
-
showLabel: string;
|
|
176
|
-
active: boolean;
|
|
177
|
-
icon: string;
|
|
178
|
-
src: string;
|
|
179
|
-
badge: string;
|
|
180
|
-
ariaLabel: string;
|
|
181
|
-
} & {
|
|
182
|
-
focus(options?: FocusOptions): void;
|
|
183
|
-
}) => string>;
|
|
94
|
+
iconVariation: () => string;
|
|
184
95
|
}, any[]>;
|
|
185
96
|
export default _default;
|
|
186
97
|
//# sourceMappingURL=NavRailItem.d.ts.map
|
|
@@ -17,6 +17,7 @@ declare const _default: typeof CustomElement & import("../core/CustomElement.js"
|
|
|
17
17
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
18
18
|
_styles: string;
|
|
19
19
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
20
|
+
/** Handle resize observer entries; update measured inline size for layout logic. */
|
|
20
21
|
onResizeObserved(entry: ResizeObserverEntry): void;
|
|
21
22
|
}, any[]>;
|
|
22
23
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Page.d.ts","sourceRoot":"","sources":["../../components/Page.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Page.d.ts","sourceRoot":"","sources":["../../components/Page.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;IAiHI,oFAAoF;;;;0BA/G9D,0BAA0B"}
|
|
@@ -20,10 +20,14 @@ declare const _default: typeof CustomElement & import("../core/CustomElement.js"
|
|
|
20
20
|
returnValue: string;
|
|
21
21
|
_closing: boolean;
|
|
22
22
|
_useScrim: boolean;
|
|
23
|
+
_source: MouseEvent | PointerEvent | HTMLElement | Event;
|
|
24
|
+
_anchor: MouseEvent | PointerEvent | HTMLElement | Event;
|
|
23
25
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
24
26
|
_dialog: HTMLDialogElement;
|
|
25
27
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
26
|
-
|
|
28
|
+
_ariaHidden: never;
|
|
29
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
30
|
+
updatePopupPosition(anchor?: DOMRectLike | Element): void;
|
|
27
31
|
onSlotChange({ currentTarget }: Event & {
|
|
28
32
|
currentTarget: HTMLSlotElement;
|
|
29
33
|
}): void;
|
|
@@ -33,8 +37,6 @@ declare const _default: typeof CustomElement & import("../core/CustomElement.js"
|
|
|
33
37
|
close(returnValue?: any, returnFocus?: boolean): boolean;
|
|
34
38
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
35
39
|
onResizeObserved(entry: ResizeObserverEntry): void;
|
|
36
|
-
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
37
|
-
_ariaHidden: never;
|
|
38
40
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
39
41
|
disabled: boolean;
|
|
40
42
|
focused: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Popup.d.ts","sourceRoot":"","sources":["../../components/Popup.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Popup.d.ts","sourceRoot":"","sources":["../../components/Popup.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BAA0B,0BAA0B"}
|
|
@@ -10,6 +10,8 @@ declare const _default: typeof CustomElement & import("../core/CustomElement.js"
|
|
|
10
10
|
_determinateStyle: string;
|
|
11
11
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
12
12
|
_valueAsFraction: number;
|
|
13
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
14
|
+
isDeterminate: () => boolean;
|
|
13
15
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
14
16
|
position: number;
|
|
15
17
|
labels: NodeListOf<HTMLLabelElement>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Progress.d.ts","sourceRoot":"","sources":["../../components/Progress.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Progress.d.ts","sourceRoot":"","sources":["../../components/Progress.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;0BAA0B,0BAA0B"}
|
|
@@ -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
|
+
/** Native control `type` used for the underlying input; always 'radio'. */
|
|
194
195
|
type: string;
|
|
196
|
+
/** Forces Material state-layer overlay for pressed/hover states. */
|
|
195
197
|
stateLayer: boolean;
|
|
196
198
|
}, any[]>;
|
|
197
199
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Radio.d.ts","sourceRoot":"","sources":["../../components/Radio.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Radio.d.ts","sourceRoot":"","sources":["../../components/Radio.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAqBI,2EAA2E;;IAE3E,oEAAoE;;;;0BArB9C,0BAA0B"}
|
|
@@ -27,6 +27,7 @@ declare const _default: typeof CustomElement & import("../core/CustomElement.js"
|
|
|
27
27
|
* @return {void}
|
|
28
28
|
*/
|
|
29
29
|
updatePosition(x?: number, y?: number, size?: number): void;
|
|
30
|
+
/** Complete the ripple lifecycle: either mark complete or remove. */
|
|
30
31
|
handleRippleComplete(): void;
|
|
31
32
|
}, any[]>;
|
|
32
33
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Ripple.d.ts","sourceRoot":"","sources":["../../components/Ripple.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Ripple.d.ts","sourceRoot":"","sources":["../../components/Ripple.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;IA2DI;;;;;OAKG;uBAJQ,MAAM,MACN,MAAM,SACN,MAAM,GACL,IAAI;IAkChB,qEAAqE;;;;0BAjG/C,0BAA0B"}
|
|
@@ -7,7 +7,7 @@ declare const _default: typeof CustomElement & import("../core/CustomElement.js"
|
|
|
7
7
|
_scrollListenerLastScroll: number;
|
|
8
8
|
_scrollListenerLastResize: number;
|
|
9
9
|
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
10
|
-
_scroller: WeakRef<
|
|
10
|
+
_scroller: WeakRef<HTMLElement | Window>;
|
|
11
11
|
_scrollerScrollListener: EventListener;
|
|
12
12
|
_scrollerResizeListener: EventListener;
|
|
13
13
|
_scrollDebounce: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Root.d.ts","sourceRoot":"","sources":["../../components/Root.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Root.d.ts","sourceRoot":"","sources":["../../components/Root.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;IAiBI,6BAA6B;2BAAlB,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BAfH,0BAA0B"}
|