@shortfuse/materialdesignweb 0.7.6 → 0.9.0
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 +87 -90
- package/bin/mdw-css.js +1 -1
- package/components/Badge.js +14 -7
- package/components/Body.js +3 -0
- package/components/BottomAppBar.js +4 -13
- package/components/BottomSheet.js +424 -0
- package/components/Box.js +20 -28
- package/components/Button.js +85 -79
- package/components/Button.md +9 -9
- package/components/Card.js +60 -72
- package/components/Checkbox.js +33 -42
- package/components/CheckboxIcon.js +11 -29
- package/components/Chip.js +13 -11
- package/components/Dialog.js +214 -394
- package/components/DialogActions.js +2 -2
- package/components/Display.js +55 -0
- package/components/Divider.js +3 -3
- package/components/Fab.js +83 -18
- package/components/FabContainer.js +48 -0
- package/components/FilterChip.js +35 -33
- package/components/Grid.js +176 -0
- package/components/Headline.js +5 -28
- package/components/Icon.js +61 -76
- package/components/IconButton.js +72 -126
- package/components/Input.js +859 -1
- package/components/InputChip.js +161 -0
- package/components/Label.js +3 -0
- package/components/List.js +4 -6
- package/components/ListItem.js +46 -30
- package/components/ListOption.js +86 -53
- package/components/Listbox.js +248 -0
- package/components/Menu.js +69 -528
- package/components/MenuItem.js +33 -36
- package/components/NavBar.js +49 -86
- package/components/NavDrawer.js +16 -15
- package/components/NavDrawerItem.js +4 -5
- package/components/NavItem.js +58 -41
- package/components/NavRail.js +30 -20
- package/components/NavRailItem.js +8 -3
- package/components/Page.js +105 -0
- package/components/Pane.js +11 -274
- package/components/Popup.js +29 -0
- package/components/Progress.js +24 -23
- package/components/Radio.js +40 -36
- package/components/RadioIcon.js +12 -16
- package/components/Ripple.js +13 -10
- package/components/Root.js +209 -0
- package/components/Scrim.js +87 -0
- package/components/Search.js +77 -0
- package/components/SegmentedButton.js +33 -45
- package/components/SegmentedButtonGroup.js +25 -13
- package/components/Select.js +10 -11
- package/components/Shape.js +5 -65
- package/components/SideSheet.js +308 -0
- package/components/Slider.js +108 -78
- package/components/Snackbar.js +26 -21
- package/components/SnackbarContainer.js +42 -0
- package/components/Surface.js +17 -12
- package/components/Switch.js +45 -24
- package/components/SwitchIcon.js +49 -39
- package/components/Tab.js +64 -43
- package/components/TabContent.js +5 -3
- package/components/TabList.js +62 -34
- package/components/TabPanel.js +11 -8
- package/components/Table.js +116 -0
- package/components/TextArea.js +54 -50
- package/components/Title.js +4 -9
- package/components/Tooltip.js +44 -22
- package/components/TopAppBar.js +68 -172
- package/constants/shapes.js +36 -0
- package/constants/typography.js +127 -0
- package/core/Composition.js +1164 -645
- package/core/CompositionAdapter.js +314 -0
- package/core/CustomElement.js +701 -286
- package/core/css.js +121 -15
- package/core/customTypes.js +157 -40
- package/core/dom.js +17 -11
- package/{utils → core}/jsonMergePatch.js +42 -18
- package/core/observe.js +343 -244
- package/core/optimizations.js +23 -0
- package/core/template.js +19 -56
- package/core/uid.js +13 -0
- package/dist/index.min.js +85 -184
- package/dist/index.min.js.map +4 -4
- package/dist/meta.json +1 -1
- package/dom/HTMLOptionsCollectionProxy.js +106 -0
- package/loaders/palette.js +13 -0
- package/loaders/theme.js +12 -0
- package/mixins/AriaReflectorMixin.js +53 -14
- package/mixins/AriaToolbarMixin.js +5 -3
- package/mixins/ControlMixin.js +92 -41
- package/mixins/DelegatesFocusMixin.js +54 -0
- package/mixins/DensityMixin.js +2 -3
- package/mixins/ElevationMixin.js +62 -0
- package/mixins/FlexableMixin.js +67 -39
- package/mixins/FormAssociatedMixin.js +71 -16
- package/mixins/HyperlinkMixin.js +66 -0
- package/mixins/InputMixin.js +205 -39
- package/mixins/KeyboardNavMixin.js +22 -7
- package/mixins/NavigationListenerMixin.js +33 -0
- package/mixins/PopupMixin.js +725 -0
- package/mixins/RTLObserverMixin.js +0 -1
- package/mixins/ResizeObserverMixin.js +16 -5
- package/mixins/RippleMixin.js +11 -10
- package/mixins/ScrollListenerMixin.js +42 -33
- package/mixins/SemiStickyMixin.js +97 -0
- package/mixins/ShapeMaskedMixin.js +117 -0
- package/mixins/ShapeMixin.js +17 -194
- package/mixins/StateMixin.js +80 -39
- package/mixins/TextFieldMixin.js +139 -183
- package/mixins/ThemableMixin.js +71 -161
- package/mixins/TooltipTriggerMixin.js +292 -366
- package/mixins/TouchTargetMixin.js +5 -4
- package/mixins/TypographyMixin.js +121 -0
- package/package.json +111 -71
- package/services/rtl.js +10 -0
- package/services/svgAlias.js +17 -0
- package/{theming/index.js → services/theme.js} +25 -175
- package/types/bin/mdw-css.d.ts +3 -0
- package/types/bin/mdw-css.d.ts.map +1 -0
- package/types/components/Badge.d.ts +39 -0
- package/types/components/Badge.d.ts.map +1 -0
- package/types/components/Body.d.ts +29 -0
- package/types/components/Body.d.ts.map +1 -0
- package/types/components/BottomAppBar.d.ts +73 -0
- package/types/components/BottomAppBar.d.ts.map +1 -0
- package/types/components/BottomSheet.d.ts +109 -0
- package/types/components/BottomSheet.d.ts.map +1 -0
- package/types/components/Box.d.ts +16 -0
- package/types/components/Box.d.ts.map +1 -0
- package/types/components/Button.d.ts +714 -0
- package/types/components/Button.d.ts.map +1 -0
- package/types/components/Card.d.ts +412 -0
- package/types/components/Card.d.ts.map +1 -0
- package/types/components/Checkbox.d.ts +205 -0
- package/types/components/Checkbox.d.ts.map +1 -0
- package/types/components/CheckboxIcon.d.ts +44 -0
- package/types/components/CheckboxIcon.d.ts.map +1 -0
- package/types/components/Chip.d.ts +1425 -0
- package/types/components/Chip.d.ts.map +1 -0
- package/types/components/Dialog.d.ts +286 -0
- package/types/components/Dialog.d.ts.map +1 -0
- package/types/components/DialogActions.d.ts +4 -0
- package/types/components/DialogActions.d.ts.map +1 -0
- package/types/components/Display.d.ts +45 -0
- package/types/components/Display.d.ts.map +1 -0
- package/types/components/Divider.d.ts +10 -0
- package/types/components/Divider.d.ts.map +1 -0
- package/types/components/Fab.d.ts +741 -0
- package/types/components/Fab.d.ts.map +1 -0
- package/types/components/FabContainer.d.ts +10 -0
- package/types/components/FabContainer.d.ts.map +1 -0
- package/types/components/FilterChip.d.ts +4283 -0
- package/types/components/FilterChip.d.ts.map +1 -0
- package/types/components/Grid.d.ts +37 -0
- package/types/components/Grid.d.ts.map +1 -0
- package/types/components/Headline.d.ts +47 -0
- package/types/components/Headline.d.ts.map +1 -0
- package/types/components/Icon.d.ts +103 -0
- package/types/components/Icon.d.ts.map +1 -0
- package/types/components/IconButton.d.ts +1486 -0
- package/types/components/IconButton.d.ts.map +1 -0
- package/types/components/Input.d.ts +51288 -0
- package/types/components/Input.d.ts.map +1 -0
- package/types/components/InputChip.d.ts +243 -0
- package/types/components/InputChip.d.ts.map +1 -0
- package/types/components/Label.d.ts +29 -0
- package/types/components/Label.d.ts.map +1 -0
- package/types/components/List.d.ts +31 -0
- package/types/components/List.d.ts.map +1 -0
- package/types/components/ListItem.d.ts +349 -0
- package/types/components/ListItem.d.ts.map +1 -0
- package/types/components/ListOption.d.ts +1493 -0
- package/types/components/ListOption.d.ts.map +1 -0
- package/types/components/Listbox.d.ts +12012 -0
- package/types/components/Listbox.d.ts.map +1 -0
- package/types/components/Menu.d.ts +119 -0
- package/types/components/Menu.d.ts.map +1 -0
- package/types/components/MenuItem.d.ts +3109 -0
- package/types/components/MenuItem.d.ts.map +1 -0
- package/types/components/NavBar.d.ts +18 -0
- package/types/components/NavBar.d.ts.map +1 -0
- package/types/components/NavBarItem.d.ts +186 -0
- package/types/components/NavBarItem.d.ts.map +1 -0
- package/types/components/NavDrawer.d.ts +108 -0
- package/types/components/NavDrawer.d.ts.map +1 -0
- package/types/components/NavDrawerItem.d.ts +186 -0
- package/types/components/NavDrawerItem.d.ts.map +1 -0
- package/types/components/NavItem.d.ts +190 -0
- package/types/components/NavItem.d.ts.map +1 -0
- package/types/components/NavRail.d.ts +109 -0
- package/types/components/NavRail.d.ts.map +1 -0
- package/types/components/NavRailItem.d.ts +186 -0
- package/types/components/NavRailItem.d.ts.map +1 -0
- package/types/components/Page.d.ts +24 -0
- package/types/components/Page.d.ts.map +1 -0
- package/types/components/Pane.d.ts +44 -0
- package/types/components/Pane.d.ts.map +1 -0
- package/types/components/Popup.d.ts +76 -0
- package/types/components/Popup.d.ts.map +1 -0
- package/types/components/Progress.d.ts +19 -0
- package/types/components/Progress.d.ts.map +1 -0
- package/types/components/Radio.d.ts +199 -0
- package/types/components/Radio.d.ts.map +1 -0
- package/types/components/RadioIcon.d.ts +46 -0
- package/types/components/RadioIcon.d.ts.map +1 -0
- package/types/components/Ripple.d.ts +34 -0
- package/types/components/Ripple.d.ts.map +1 -0
- package/types/components/Root.d.ts +68 -0
- package/types/components/Root.d.ts.map +1 -0
- package/types/components/Scrim.d.ts +6 -0
- package/types/components/Scrim.d.ts.map +1 -0
- package/types/components/Search.d.ts +16 -0
- package/types/components/Search.d.ts.map +1 -0
- package/types/components/SegmentedButton.d.ts +718 -0
- package/types/components/SegmentedButton.d.ts.map +1 -0
- package/types/components/SegmentedButtonGroup.d.ts +44 -0
- package/types/components/SegmentedButtonGroup.d.ts.map +1 -0
- package/types/components/Select.d.ts +1361 -0
- package/types/components/Select.d.ts.map +1 -0
- package/types/components/Shape.d.ts +10 -0
- package/types/components/Shape.d.ts.map +1 -0
- package/types/components/SideSheet.d.ts +106 -0
- package/types/components/SideSheet.d.ts.map +1 -0
- package/types/components/Slider.d.ts +382 -0
- package/types/components/Slider.d.ts.map +1 -0
- package/types/components/Snackbar.d.ts +65 -0
- package/types/components/Snackbar.d.ts.map +1 -0
- package/types/components/SnackbarContainer.d.ts +6 -0
- package/types/components/SnackbarContainer.d.ts.map +1 -0
- package/types/components/Surface.d.ts +45 -0
- package/types/components/Surface.d.ts.map +1 -0
- package/types/components/Switch.d.ts +183 -0
- package/types/components/Switch.d.ts.map +1 -0
- package/types/components/SwitchIcon.d.ts +169 -0
- package/types/components/SwitchIcon.d.ts.map +1 -0
- package/types/components/Tab.d.ts +879 -0
- package/types/components/Tab.d.ts.map +1 -0
- package/types/components/TabContent.d.ts +122 -0
- package/types/components/TabContent.d.ts.map +1 -0
- package/types/components/TabList.d.ts +6266 -0
- package/types/components/TabList.d.ts.map +1 -0
- package/types/components/TabPanel.d.ts +28 -0
- package/types/components/TabPanel.d.ts.map +1 -0
- package/types/components/Table.d.ts +2 -0
- package/types/components/Table.d.ts.map +1 -0
- package/types/components/TextArea.d.ts +1394 -0
- package/types/components/TextArea.d.ts.map +1 -0
- package/types/components/Title.d.ts +47 -0
- package/types/components/Title.d.ts.map +1 -0
- package/types/components/Tooltip.d.ts +49 -0
- package/types/components/Tooltip.d.ts.map +1 -0
- package/types/components/TopAppBar.d.ts +130 -0
- package/types/components/TopAppBar.d.ts.map +1 -0
- package/types/constants/colorKeywords.d.ts +2 -0
- package/types/constants/colorKeywords.d.ts.map +1 -0
- package/types/constants/shapes.d.ts +38 -0
- package/types/constants/shapes.d.ts.map +1 -0
- package/types/constants/typography.d.ts +212 -0
- package/types/constants/typography.d.ts.map +1 -0
- package/types/core/Composition.d.ts +252 -0
- package/types/core/Composition.d.ts.map +1 -0
- package/types/core/CompositionAdapter.d.ts +92 -0
- package/types/core/CompositionAdapter.d.ts.map +1 -0
- package/types/core/CustomElement.d.ts +302 -0
- package/types/core/CustomElement.d.ts.map +1 -0
- package/types/core/css.d.ts +44 -0
- package/types/core/css.d.ts.map +1 -0
- package/types/core/customTypes.d.ts +26 -0
- package/types/core/customTypes.d.ts.map +1 -0
- package/types/core/dom.d.ts +32 -0
- package/types/core/dom.d.ts.map +1 -0
- package/types/core/jsonMergePatch.d.ts +31 -0
- package/types/core/jsonMergePatch.d.ts.map +1 -0
- package/types/core/observe.d.ts +113 -0
- package/types/core/observe.d.ts.map +1 -0
- package/types/core/optimizations.d.ts +7 -0
- package/types/core/optimizations.d.ts.map +1 -0
- package/types/core/template.d.ts +47 -0
- package/types/core/template.d.ts.map +1 -0
- package/types/core/uid.d.ts +6 -0
- package/types/core/uid.d.ts.map +1 -0
- package/types/dom/HTMLOptionsCollectionProxy.d.ts +18 -0
- package/types/dom/HTMLOptionsCollectionProxy.d.ts.map +1 -0
- package/types/index.d.ts +88 -0
- package/types/index.d.ts.map +1 -0
- package/types/loaders/palette.d.ts +2 -0
- package/types/loaders/palette.d.ts.map +1 -0
- package/types/loaders/theme.d.ts +2 -0
- package/types/loaders/theme.d.ts.map +1 -0
- package/types/mixins/AriaReflectorMixin.d.ts +23 -0
- package/types/mixins/AriaReflectorMixin.d.ts.map +1 -0
- package/types/mixins/AriaToolbarMixin.d.ts +32 -0
- package/types/mixins/AriaToolbarMixin.d.ts.map +1 -0
- package/types/mixins/ControlMixin.d.ts +124 -0
- package/types/mixins/ControlMixin.d.ts.map +1 -0
- package/types/mixins/DelegatesFocusMixin.d.ts +5 -0
- package/types/mixins/DelegatesFocusMixin.d.ts.map +1 -0
- package/types/mixins/DensityMixin.d.ts +5 -0
- package/types/mixins/DensityMixin.d.ts.map +1 -0
- package/types/mixins/ElevationMixin.d.ts +33 -0
- package/types/mixins/ElevationMixin.d.ts.map +1 -0
- package/types/mixins/FlexableMixin.d.ts +13 -0
- package/types/mixins/FlexableMixin.d.ts.map +1 -0
- package/types/mixins/FormAssociatedMixin.d.ts +122 -0
- package/types/mixins/FormAssociatedMixin.d.ts.map +1 -0
- package/types/mixins/HyperlinkMixin.d.ts +22 -0
- package/types/mixins/HyperlinkMixin.d.ts.map +1 -0
- package/types/mixins/InputMixin.d.ts +179 -0
- package/types/mixins/InputMixin.d.ts.map +1 -0
- package/types/mixins/KeyboardNavMixin.d.ts +47 -0
- package/types/mixins/KeyboardNavMixin.d.ts.map +1 -0
- package/types/mixins/NavigationListenerMixin.d.ts +8 -0
- package/types/mixins/NavigationListenerMixin.d.ts.map +1 -0
- package/types/mixins/PopupMixin.d.ts +82 -0
- package/types/mixins/PopupMixin.d.ts.map +1 -0
- package/types/mixins/RTLObserverMixin.d.ts +7 -0
- package/types/mixins/RTLObserverMixin.d.ts.map +1 -0
- package/types/mixins/ResizeObserverMixin.d.ts +12 -0
- package/types/mixins/ResizeObserverMixin.d.ts.map +1 -0
- package/types/mixins/RippleMixin.d.ts +92 -0
- package/types/mixins/RippleMixin.d.ts.map +1 -0
- package/types/mixins/ScrollListenerMixin.d.ts +41 -0
- package/types/mixins/ScrollListenerMixin.d.ts.map +1 -0
- package/types/mixins/SemiStickyMixin.d.ts +50 -0
- package/types/mixins/SemiStickyMixin.d.ts.map +1 -0
- package/types/mixins/ShapeMaskedMixin.d.ts +9 -0
- package/types/mixins/ShapeMaskedMixin.d.ts.map +1 -0
- package/types/mixins/ShapeMixin.d.ts +38 -0
- package/types/mixins/ShapeMixin.d.ts.map +1 -0
- package/types/mixins/StateMixin.d.ts +27 -0
- package/types/mixins/StateMixin.d.ts.map +1 -0
- package/types/mixins/TextFieldMixin.d.ts +1354 -0
- package/types/mixins/TextFieldMixin.d.ts.map +1 -0
- package/types/mixins/ThemableMixin.d.ts +9 -0
- package/types/mixins/ThemableMixin.d.ts.map +1 -0
- package/types/mixins/TooltipTriggerMixin.d.ts +106 -0
- package/types/mixins/TooltipTriggerMixin.d.ts.map +1 -0
- package/types/mixins/TouchTargetMixin.d.ts +3 -0
- package/types/mixins/TouchTargetMixin.d.ts.map +1 -0
- package/types/mixins/TypographyMixin.d.ts +17 -0
- package/types/mixins/TypographyMixin.d.ts.map +1 -0
- package/types/services/rtl.d.ts +3 -0
- package/types/services/rtl.d.ts.map +1 -0
- package/types/services/svgAlias.d.ts +13 -0
- package/types/services/svgAlias.d.ts.map +1 -0
- package/types/services/theme.d.ts +45 -0
- package/types/services/theme.d.ts.map +1 -0
- package/types/utils/cli.d.ts +3 -0
- package/types/utils/cli.d.ts.map +1 -0
- package/types/utils/function.d.ts +3 -0
- package/types/utils/function.d.ts.map +1 -0
- package/types/utils/jsx-runtime.d.ts +20 -0
- package/types/utils/jsx-runtime.d.ts.map +1 -0
- package/types/utils/material-color/blend.d.ts +34 -0
- package/types/utils/material-color/blend.d.ts.map +1 -0
- package/types/utils/material-color/hct/Cam16.d.ts +142 -0
- package/types/utils/material-color/hct/Cam16.d.ts.map +1 -0
- package/types/utils/material-color/hct/Hct.d.ts +93 -0
- package/types/utils/material-color/hct/Hct.d.ts.map +1 -0
- package/types/utils/material-color/hct/ViewingConditions.d.ts +69 -0
- package/types/utils/material-color/hct/ViewingConditions.d.ts.map +1 -0
- package/types/utils/material-color/hct/hctSolver.d.ts +30 -0
- package/types/utils/material-color/hct/hctSolver.d.ts.map +1 -0
- package/types/utils/material-color/helper.d.ts +8 -0
- package/types/utils/material-color/helper.d.ts.map +1 -0
- package/types/utils/material-color/palettes/CorePalette.d.ts +75 -0
- package/types/utils/material-color/palettes/CorePalette.d.ts.map +1 -0
- package/types/utils/material-color/palettes/TonalPalette.d.ts +38 -0
- package/types/utils/material-color/palettes/TonalPalette.d.ts.map +1 -0
- package/types/utils/material-color/scheme/Scheme.d.ts +264 -0
- package/types/utils/material-color/scheme/Scheme.d.ts.map +1 -0
- package/types/utils/material-color/utils/color.d.ts +172 -0
- package/types/utils/material-color/utils/color.d.ts.map +1 -0
- package/types/utils/material-color/utils/math.d.ts +94 -0
- package/types/utils/material-color/utils/math.d.ts.map +1 -0
- package/types/utils/pixelmatch.d.ts +22 -0
- package/types/utils/pixelmatch.d.ts.map +1 -0
- package/types/utils/popup.d.ts +106 -0
- package/types/utils/popup.d.ts.map +1 -0
- package/types/utils/searchParams.d.ts +3 -0
- package/types/utils/searchParams.d.ts.map +1 -0
- package/types/utils/svg.d.ts +7 -0
- package/types/utils/svg.d.ts.map +1 -0
- package/utils/{hct → material-color}/blend.js +8 -10
- package/utils/{hct → material-color/hct}/Cam16.js +196 -69
- package/utils/{hct → material-color/hct}/Hct.js +61 -19
- package/utils/{hct → material-color/hct}/ViewingConditions.js +3 -3
- package/utils/{hct → material-color/hct}/hctSolver.js +9 -16
- package/utils/{hct → material-color}/helper.js +11 -18
- package/utils/{hct → material-color/palettes}/CorePalette.js +79 -19
- package/utils/{hct → material-color/palettes}/TonalPalette.js +12 -4
- package/utils/material-color/scheme/Scheme.js +376 -0
- package/utils/{hct/colorUtils.js → material-color/utils/color.js} +61 -1
- package/utils/pixelmatch.js +360 -0
- package/utils/popup.js +127 -30
- package/utils/searchParams.js +19 -0
- package/components/ExtendedFab.js +0 -36
- package/components/Layout.js +0 -35
- package/components/ListSelect.js +0 -220
- package/components/Nav.js +0 -40
- package/components/Option.js +0 -91
- package/core/ICustomElement.d.ts +0 -291
- package/core/ICustomElement.js +0 -1
- package/core/identify.js +0 -40
- package/core/typings.d.ts +0 -136
- package/core/typings.js +0 -1
- package/mixins/SurfaceMixin.js +0 -181
- package/theming/loader.js +0 -22
- package/utils/hct/Scheme.js +0 -587
- /package/{utils/color_keywords.js → constants/colorKeywords.js} +0 -0
- /package/utils/{hct/mathUtils.js → material-color/utils/math.js} +0 -0
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
declare const _default: typeof CustomElement & import("../core/CustomElement.js").Class<{
|
|
2
|
+
delegatesFocus: boolean;
|
|
3
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
4
|
+
href: string;
|
|
5
|
+
target: string;
|
|
6
|
+
download: string;
|
|
7
|
+
ping: string;
|
|
8
|
+
rel: string;
|
|
9
|
+
hreflang: string;
|
|
10
|
+
referrerPolicy: string;
|
|
11
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
12
|
+
origin: string;
|
|
13
|
+
protocol: string;
|
|
14
|
+
username: string;
|
|
15
|
+
password: string;
|
|
16
|
+
host: string;
|
|
17
|
+
hostname: string;
|
|
18
|
+
port: string;
|
|
19
|
+
pathname: string;
|
|
20
|
+
search: string;
|
|
21
|
+
hash: string;
|
|
22
|
+
}, any[]> & import("../core/CustomElement.js").Class<object, any[]> & import("../core/CustomElement.js").Class<{
|
|
23
|
+
disabled: boolean;
|
|
24
|
+
focused: boolean;
|
|
25
|
+
hovered: boolean;
|
|
26
|
+
pressed: boolean;
|
|
27
|
+
_lastInteraction: "key" | "mouse" | "touch" | "pen";
|
|
28
|
+
_hovered: boolean;
|
|
29
|
+
_focused: boolean;
|
|
30
|
+
_focusedSynthetic: boolean;
|
|
31
|
+
_keyPressed: boolean;
|
|
32
|
+
_keyReleased: boolean;
|
|
33
|
+
_pointerPressed: boolean;
|
|
34
|
+
stateLayer: boolean;
|
|
35
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
36
|
+
disabledState: boolean;
|
|
37
|
+
hoveredState: boolean;
|
|
38
|
+
focusedState: boolean;
|
|
39
|
+
pressedState: boolean;
|
|
40
|
+
touchedState: boolean;
|
|
41
|
+
pointedState: boolean;
|
|
42
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
43
|
+
stateTargetElement: HTMLElement;
|
|
44
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
45
|
+
_lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
|
|
46
|
+
_rippleAdded: boolean;
|
|
47
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
48
|
+
_lastRipple: CustomElement & {
|
|
49
|
+
hadRippleHeld: boolean;
|
|
50
|
+
hadRippleReleased: boolean;
|
|
51
|
+
rippleStarted: boolean;
|
|
52
|
+
} & {
|
|
53
|
+
rippleState: string;
|
|
54
|
+
keepAlive: boolean;
|
|
55
|
+
_positionX: number;
|
|
56
|
+
_positionY: number;
|
|
57
|
+
_radius: number;
|
|
58
|
+
holdRipple: boolean;
|
|
59
|
+
} & {
|
|
60
|
+
_positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
|
|
61
|
+
styles: {
|
|
62
|
+
minHeight: string;
|
|
63
|
+
minWidth: string;
|
|
64
|
+
boxShadow: string;
|
|
65
|
+
top: string;
|
|
66
|
+
left: string;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
} & {
|
|
70
|
+
updatePosition(x?: number, y?: number, size?: number): void;
|
|
71
|
+
handleRippleComplete(): void;
|
|
72
|
+
};
|
|
73
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
74
|
+
addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
|
|
75
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
76
|
+
color: string;
|
|
77
|
+
ink: string;
|
|
78
|
+
typeStyle: string;
|
|
79
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
80
|
+
stateLayer: boolean;
|
|
81
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
82
|
+
showLabel: string;
|
|
83
|
+
active: boolean;
|
|
84
|
+
icon: string;
|
|
85
|
+
src: string;
|
|
86
|
+
badge: string;
|
|
87
|
+
ariaLabel: string;
|
|
88
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
89
|
+
/** @type {HTMLElement['focus']} */
|
|
90
|
+
focus(options?: FocusOptions): void;
|
|
91
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
92
|
+
_anchorAriaCurrent: never;
|
|
93
|
+
_anchorAriaLabelledby: never;
|
|
94
|
+
_anchorHref: never;
|
|
95
|
+
iconVariation: () => ReturnType<({ active }: CustomElement & {
|
|
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>;
|
|
186
|
+
}, any[]>;
|
|
187
|
+
export default _default;
|
|
188
|
+
export type DeprecatedHTMLAnchorElementProperties = "charset" | "coords" | "name" | "shape";
|
|
189
|
+
import CustomElement from '../core/CustomElement.js';
|
|
190
|
+
//# sourceMappingURL=NavItem.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NavItem.d.ts","sourceRoot":"","sources":["../../components/NavItem.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAiCI,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAAnC,mCAAmC;;;;;oDArBzB,SAAS,GAAC,QAAQ,GAAC,MAAM,GAAC,OAAO;0BAPrB,0BAA0B"}
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
declare const _default: typeof import("../index.js").CustomElement & import("../core/CustomElement.js").Class<{
|
|
2
|
+
_resizeObserverEnabled: boolean;
|
|
3
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
4
|
+
onResizeObserved(entry: ResizeObserverEntry): void;
|
|
5
|
+
observeResize(): void;
|
|
6
|
+
unobserveResize(): void;
|
|
7
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
8
|
+
delegatesFocus: boolean;
|
|
9
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
10
|
+
_ariaRole: string;
|
|
11
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
12
|
+
onConnectAriaValues: Map<string, string>;
|
|
13
|
+
hasFiredConnected: boolean;
|
|
14
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
15
|
+
readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot;
|
|
16
|
+
updateAriaProperty(name: keyof HTMLElement & keyof ElementInternals, value: string): void;
|
|
17
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
18
|
+
disabled: boolean;
|
|
19
|
+
focused: boolean;
|
|
20
|
+
hovered: boolean;
|
|
21
|
+
pressed: boolean;
|
|
22
|
+
_lastInteraction: "key" | "mouse" | "touch" | "pen";
|
|
23
|
+
_hovered: boolean;
|
|
24
|
+
_focused: boolean;
|
|
25
|
+
_focusedSynthetic: boolean;
|
|
26
|
+
_keyPressed: boolean;
|
|
27
|
+
_keyReleased: boolean;
|
|
28
|
+
_pointerPressed: boolean;
|
|
29
|
+
stateLayer: boolean;
|
|
30
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
31
|
+
disabledState: boolean;
|
|
32
|
+
hoveredState: boolean;
|
|
33
|
+
focusedState: boolean;
|
|
34
|
+
pressedState: boolean;
|
|
35
|
+
touchedState: boolean;
|
|
36
|
+
pointedState: boolean;
|
|
37
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
38
|
+
stateTargetElement: HTMLElement;
|
|
39
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
40
|
+
color: string;
|
|
41
|
+
ink: string;
|
|
42
|
+
typeStyle: string;
|
|
43
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
44
|
+
shapeTop: boolean;
|
|
45
|
+
shapeBottom: boolean;
|
|
46
|
+
shapeStart: boolean;
|
|
47
|
+
shapeEnd: boolean;
|
|
48
|
+
shapeStyle: string;
|
|
49
|
+
outlined: boolean;
|
|
50
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
51
|
+
block: boolean;
|
|
52
|
+
inline: boolean;
|
|
53
|
+
row: boolean;
|
|
54
|
+
x: string;
|
|
55
|
+
y: string;
|
|
56
|
+
gap: number;
|
|
57
|
+
padding: string;
|
|
58
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
59
|
+
fixed: boolean;
|
|
60
|
+
open: boolean;
|
|
61
|
+
inlineEnd: boolean;
|
|
62
|
+
_lastComputedInlineSize: number;
|
|
63
|
+
_animationDuration: number;
|
|
64
|
+
_animationEasing: string;
|
|
65
|
+
_dragDeltaX: number;
|
|
66
|
+
_dragStartX: number;
|
|
67
|
+
_translateX: string;
|
|
68
|
+
_lastChildScrollTime: number;
|
|
69
|
+
ontoggle: EventListener;
|
|
70
|
+
onclose: EventListener;
|
|
71
|
+
autoOpen: number;
|
|
72
|
+
autoClose: number;
|
|
73
|
+
fixedBreakpoint: number;
|
|
74
|
+
_isSideSheetRtl: boolean;
|
|
75
|
+
color: string;
|
|
76
|
+
fixedColor: string;
|
|
77
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
78
|
+
_scrim: InstanceType<typeof import("../index.js").CustomElement & import("../core/CustomElement.js").Class<{
|
|
79
|
+
hidden: boolean;
|
|
80
|
+
}, any[]>>;
|
|
81
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
82
|
+
_styles: string | {
|
|
83
|
+
backgroundColor: string;
|
|
84
|
+
};
|
|
85
|
+
hostStyles: import("../core/customTypes.js").ElementStylerOptions | {
|
|
86
|
+
styles: {
|
|
87
|
+
marginLeft: string | number;
|
|
88
|
+
marginRight: string | number;
|
|
89
|
+
transform: string;
|
|
90
|
+
};
|
|
91
|
+
timing: {
|
|
92
|
+
duration: number;
|
|
93
|
+
easing: string;
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
97
|
+
checkForScrim(animate?: boolean): void;
|
|
98
|
+
checkDragFinished(): void;
|
|
99
|
+
onWindowResize(): void;
|
|
100
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
101
|
+
onResizeObserved(entry: ResizeObserverEntry): void;
|
|
102
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
103
|
+
align: "center" | "end" | "start";
|
|
104
|
+
autoOpen: number;
|
|
105
|
+
autoClose: number;
|
|
106
|
+
fixedBreakpoint: number;
|
|
107
|
+
}, any[]>;
|
|
108
|
+
export default _default;
|
|
109
|
+
//# sourceMappingURL=NavRail.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NavRail.d.ts","sourceRoot":"","sources":["../../components/NavRail.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
declare const _default: typeof import("../index.js").CustomElement & import("../core/CustomElement.js").Class<{
|
|
2
|
+
delegatesFocus: boolean;
|
|
3
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
4
|
+
href: string;
|
|
5
|
+
target: string;
|
|
6
|
+
download: string;
|
|
7
|
+
ping: string;
|
|
8
|
+
rel: string;
|
|
9
|
+
hreflang: string;
|
|
10
|
+
referrerPolicy: string;
|
|
11
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
12
|
+
origin: string;
|
|
13
|
+
protocol: string;
|
|
14
|
+
username: string;
|
|
15
|
+
password: string;
|
|
16
|
+
host: string;
|
|
17
|
+
hostname: string;
|
|
18
|
+
port: string;
|
|
19
|
+
pathname: string;
|
|
20
|
+
search: string;
|
|
21
|
+
hash: string;
|
|
22
|
+
}, any[]> & import("../core/CustomElement.js").Class<object, any[]> & import("../core/CustomElement.js").Class<{
|
|
23
|
+
disabled: boolean;
|
|
24
|
+
focused: boolean;
|
|
25
|
+
hovered: boolean;
|
|
26
|
+
pressed: boolean;
|
|
27
|
+
_lastInteraction: "key" | "mouse" | "touch" | "pen";
|
|
28
|
+
_hovered: boolean;
|
|
29
|
+
_focused: boolean;
|
|
30
|
+
_focusedSynthetic: boolean;
|
|
31
|
+
_keyPressed: boolean;
|
|
32
|
+
_keyReleased: boolean;
|
|
33
|
+
_pointerPressed: boolean;
|
|
34
|
+
stateLayer: boolean;
|
|
35
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
36
|
+
disabledState: boolean;
|
|
37
|
+
hoveredState: boolean;
|
|
38
|
+
focusedState: boolean;
|
|
39
|
+
pressedState: boolean;
|
|
40
|
+
touchedState: boolean;
|
|
41
|
+
pointedState: boolean;
|
|
42
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
43
|
+
stateTargetElement: HTMLElement;
|
|
44
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
45
|
+
_lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
|
|
46
|
+
_rippleAdded: boolean;
|
|
47
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
48
|
+
_lastRipple: import("../index.js").CustomElement & {
|
|
49
|
+
hadRippleHeld: boolean;
|
|
50
|
+
hadRippleReleased: boolean;
|
|
51
|
+
rippleStarted: boolean;
|
|
52
|
+
} & {
|
|
53
|
+
rippleState: string;
|
|
54
|
+
keepAlive: boolean;
|
|
55
|
+
_positionX: number;
|
|
56
|
+
_positionY: number;
|
|
57
|
+
_radius: number;
|
|
58
|
+
holdRipple: boolean;
|
|
59
|
+
} & {
|
|
60
|
+
_positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
|
|
61
|
+
styles: {
|
|
62
|
+
minHeight: string;
|
|
63
|
+
minWidth: string;
|
|
64
|
+
boxShadow: string;
|
|
65
|
+
top: string;
|
|
66
|
+
left: string;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
} & {
|
|
70
|
+
updatePosition(x?: number, y?: number, size?: number): void;
|
|
71
|
+
handleRippleComplete(): void;
|
|
72
|
+
};
|
|
73
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
74
|
+
addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
|
|
75
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
76
|
+
color: string;
|
|
77
|
+
ink: string;
|
|
78
|
+
typeStyle: string;
|
|
79
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
80
|
+
stateLayer: boolean;
|
|
81
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
82
|
+
showLabel: string;
|
|
83
|
+
active: boolean;
|
|
84
|
+
icon: string;
|
|
85
|
+
src: string;
|
|
86
|
+
badge: string;
|
|
87
|
+
ariaLabel: string;
|
|
88
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
89
|
+
focus(options?: FocusOptions): void;
|
|
90
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
91
|
+
_anchorAriaCurrent: never;
|
|
92
|
+
_anchorAriaLabelledby: never;
|
|
93
|
+
_anchorHref: never;
|
|
94
|
+
iconVariation: () => ReturnType<({ active }: import("../index.js").CustomElement & {
|
|
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>;
|
|
184
|
+
}, any[]>;
|
|
185
|
+
export default _default;
|
|
186
|
+
//# sourceMappingURL=NavRailItem.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NavRailItem.d.ts","sourceRoot":"","sources":["../../components/NavRailItem.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
declare const _default: typeof CustomElement & import("../core/CustomElement.js").Class<{
|
|
2
|
+
_resizeObserverEnabled: boolean;
|
|
3
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
4
|
+
onResizeObserved(entry: ResizeObserverEntry): void;
|
|
5
|
+
observeResize(): void;
|
|
6
|
+
unobserveResize(): void;
|
|
7
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
8
|
+
delegatesFocus: boolean;
|
|
9
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
10
|
+
paneOne: "fixed" | "flexible";
|
|
11
|
+
paneTwo: "fixed" | "flexible";
|
|
12
|
+
paneTwoActive: boolean;
|
|
13
|
+
paneTwoBreakpoint: number;
|
|
14
|
+
_lastComputedInlineSize: number;
|
|
15
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
16
|
+
_isMultipane: boolean;
|
|
17
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
18
|
+
_styles: string;
|
|
19
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
20
|
+
onResizeObserved(entry: ResizeObserverEntry): void;
|
|
21
|
+
}, any[]>;
|
|
22
|
+
export default _default;
|
|
23
|
+
import CustomElement from '../core/CustomElement.js';
|
|
24
|
+
//# sourceMappingURL=Page.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Page.d.ts","sourceRoot":"","sources":["../../components/Page.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;0BAE0B,0BAA0B"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
declare const _default: typeof import("../index.js").CustomElement & import("../core/CustomElement.js").Class<{
|
|
2
|
+
disabled: boolean;
|
|
3
|
+
focused: boolean;
|
|
4
|
+
hovered: boolean;
|
|
5
|
+
pressed: boolean;
|
|
6
|
+
_lastInteraction: "key" | "mouse" | "touch" | "pen";
|
|
7
|
+
_hovered: boolean;
|
|
8
|
+
_focused: boolean;
|
|
9
|
+
_focusedSynthetic: boolean;
|
|
10
|
+
_keyPressed: boolean;
|
|
11
|
+
_keyReleased: boolean;
|
|
12
|
+
_pointerPressed: boolean;
|
|
13
|
+
stateLayer: boolean;
|
|
14
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
15
|
+
disabledState: boolean;
|
|
16
|
+
hoveredState: boolean;
|
|
17
|
+
focusedState: boolean;
|
|
18
|
+
pressedState: boolean;
|
|
19
|
+
touchedState: boolean;
|
|
20
|
+
pointedState: boolean;
|
|
21
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
22
|
+
stateTargetElement: HTMLElement;
|
|
23
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
24
|
+
color: string;
|
|
25
|
+
ink: string;
|
|
26
|
+
typeStyle: string;
|
|
27
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
28
|
+
shapeTop: boolean;
|
|
29
|
+
shapeBottom: boolean;
|
|
30
|
+
shapeStart: boolean;
|
|
31
|
+
shapeEnd: boolean;
|
|
32
|
+
shapeStyle: string;
|
|
33
|
+
outlined: boolean;
|
|
34
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
35
|
+
block: boolean;
|
|
36
|
+
inline: boolean;
|
|
37
|
+
row: boolean;
|
|
38
|
+
x: string;
|
|
39
|
+
y: string;
|
|
40
|
+
gap: number;
|
|
41
|
+
padding: string;
|
|
42
|
+
}, any[]>;
|
|
43
|
+
export default _default;
|
|
44
|
+
//# sourceMappingURL=Pane.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Pane.d.ts","sourceRoot":"","sources":["../../components/Pane.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
declare const _default: typeof CustomElement & import("../core/CustomElement.js").Class<{
|
|
2
|
+
_resizeObserverEnabled: boolean;
|
|
3
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
4
|
+
onResizeObserved(entry: ResizeObserverEntry): void;
|
|
5
|
+
observeResize(): void;
|
|
6
|
+
unobserveResize(): void;
|
|
7
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
8
|
+
delegatesFocus: boolean;
|
|
9
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
10
|
+
open: boolean;
|
|
11
|
+
modal: boolean;
|
|
12
|
+
native: boolean;
|
|
13
|
+
scrollable: boolean;
|
|
14
|
+
matchSourceWidth: boolean;
|
|
15
|
+
_currentFlow: string;
|
|
16
|
+
flow: string;
|
|
17
|
+
popupMargin: number;
|
|
18
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
19
|
+
useHistory: boolean;
|
|
20
|
+
returnValue: string;
|
|
21
|
+
_closing: boolean;
|
|
22
|
+
_useScrim: boolean;
|
|
23
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
24
|
+
_dialog: HTMLDialogElement;
|
|
25
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
26
|
+
updatePopupPosition(anchor?: DOMRect | Element): void;
|
|
27
|
+
onSlotChange({ currentTarget }: Event & {
|
|
28
|
+
currentTarget: HTMLSlotElement;
|
|
29
|
+
}): void;
|
|
30
|
+
showPopup(source?: MouseEvent | PointerEvent | HTMLElement | Event, focus?: boolean, flow?: string): boolean;
|
|
31
|
+
showModal(source?: MouseEvent | PointerEvent | HTMLElement | Event, focus?: boolean, flow?: string): boolean;
|
|
32
|
+
show(source?: MouseEvent | PointerEvent | HTMLElement | Event, focus?: boolean, flow?: string): boolean;
|
|
33
|
+
close(returnValue?: any, returnFocus?: boolean): boolean;
|
|
34
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
35
|
+
onResizeObserved(entry: ResizeObserverEntry): void;
|
|
36
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
37
|
+
_ariaHidden: never;
|
|
38
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
39
|
+
disabled: boolean;
|
|
40
|
+
focused: boolean;
|
|
41
|
+
hovered: boolean;
|
|
42
|
+
pressed: boolean;
|
|
43
|
+
_lastInteraction: "key" | "mouse" | "touch" | "pen";
|
|
44
|
+
_hovered: boolean;
|
|
45
|
+
_focused: boolean;
|
|
46
|
+
_focusedSynthetic: boolean;
|
|
47
|
+
_keyPressed: boolean;
|
|
48
|
+
_keyReleased: boolean;
|
|
49
|
+
_pointerPressed: boolean;
|
|
50
|
+
stateLayer: boolean;
|
|
51
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
52
|
+
disabledState: boolean;
|
|
53
|
+
hoveredState: boolean;
|
|
54
|
+
focusedState: boolean;
|
|
55
|
+
pressedState: boolean;
|
|
56
|
+
touchedState: boolean;
|
|
57
|
+
pointedState: boolean;
|
|
58
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
59
|
+
stateTargetElement: HTMLElement;
|
|
60
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
61
|
+
color: string;
|
|
62
|
+
ink: string;
|
|
63
|
+
typeStyle: string;
|
|
64
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
65
|
+
shapeTop: boolean;
|
|
66
|
+
shapeBottom: boolean;
|
|
67
|
+
shapeStart: boolean;
|
|
68
|
+
shapeEnd: boolean;
|
|
69
|
+
shapeStyle: string;
|
|
70
|
+
outlined: boolean;
|
|
71
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
72
|
+
elevation: number;
|
|
73
|
+
}, any[]>;
|
|
74
|
+
export default _default;
|
|
75
|
+
import CustomElement from '../core/CustomElement.js';
|
|
76
|
+
//# sourceMappingURL=Popup.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Popup.d.ts","sourceRoot":"","sources":["../../components/Popup.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BAA0B,0BAA0B"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
declare const _default: typeof CustomElement & import("../core/CustomElement.js").Class<{
|
|
2
|
+
color: string;
|
|
3
|
+
ink: string;
|
|
4
|
+
typeStyle: string;
|
|
5
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
6
|
+
circle: boolean;
|
|
7
|
+
value: number;
|
|
8
|
+
max: number;
|
|
9
|
+
autoHide: boolean;
|
|
10
|
+
_determinateStyle: string;
|
|
11
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
12
|
+
_valueAsFraction: number;
|
|
13
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
14
|
+
position: number;
|
|
15
|
+
labels: NodeListOf<HTMLLabelElement>;
|
|
16
|
+
}, any[]>;
|
|
17
|
+
export default _default;
|
|
18
|
+
import CustomElement from '../core/CustomElement.js';
|
|
19
|
+
//# sourceMappingURL=Progress.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Progress.d.ts","sourceRoot":"","sources":["../../components/Progress.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;0BAE0B,0BAA0B"}
|