@shortfuse/materialdesignweb 0.8.0 → 0.9.1
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 -198
- package/bin/mdw-css.js +1 -1
- package/components/Badge.js +15 -5
- package/components/Body.js +7 -0
- package/components/BottomAppBar.js +7 -10
- package/components/BottomSheet.js +472 -0
- package/components/Box.js +11 -49
- package/components/Button.js +81 -82
- package/components/Card.js +74 -62
- package/components/Checkbox.js +15 -25
- package/components/CheckboxIcon.js +19 -31
- package/components/Chip.js +18 -13
- package/components/Dialog.js +70 -100
- package/components/DialogActions.js +4 -0
- package/components/Display.js +64 -0
- package/components/Divider.js +5 -0
- package/components/Fab.js +94 -17
- package/components/FabContainer.js +57 -0
- package/components/FilterChip.js +43 -32
- package/components/Grid.js +187 -0
- package/components/Headline.js +9 -28
- package/components/Icon.js +80 -71
- package/components/IconButton.js +77 -120
- package/components/Input.js +745 -86
- package/components/InputChip.js +193 -0
- package/components/Label.js +7 -0
- package/components/List.js +11 -5
- package/components/ListItem.js +92 -23
- package/components/ListOption.js +143 -65
- package/components/Listbox.js +57 -17
- package/components/Menu.js +39 -27
- package/components/MenuItem.js +49 -36
- package/components/NavBar.js +66 -21
- package/components/NavBarItem.js +5 -0
- package/components/NavDrawer.js +33 -16
- package/components/NavDrawerItem.js +7 -4
- package/components/NavItem.js +61 -34
- package/components/NavRail.js +32 -21
- package/components/NavRailItem.js +10 -2
- package/components/Page.js +119 -0
- package/components/Pane.js +24 -0
- package/components/Popup.js +23 -8
- package/components/Progress.js +25 -5
- package/components/Radio.js +8 -7
- package/components/RadioIcon.js +24 -15
- package/components/Ripple.js +25 -7
- package/components/Root.js +225 -0
- package/components/Scrim.js +95 -0
- package/components/Search.js +30 -25
- package/components/SegmentedButton.js +53 -40
- package/components/SegmentedButtonGroup.js +15 -12
- package/components/Select.js +19 -10
- package/components/Shape.js +10 -66
- package/components/SideSheet.js +337 -0
- package/components/Slider.js +93 -36
- package/components/Snackbar.js +52 -20
- package/components/SnackbarContainer.js +51 -0
- package/components/Surface.js +20 -10
- package/components/Switch.js +21 -18
- package/components/SwitchIcon.js +62 -33
- package/components/Tab.js +78 -38
- package/components/TabContent.js +33 -12
- package/components/TabList.js +95 -34
- package/components/TabPanel.js +10 -1
- package/components/Table.js +151 -0
- package/components/TextArea.js +48 -16
- package/components/Title.js +8 -9
- package/components/Tooltip.js +51 -22
- package/components/TopAppBar.js +71 -78
- package/constants/shapes.js +36 -0
- package/constants/typography.js +127 -0
- package/core/Composition.js +391 -201
- package/core/CompositionAdapter.js +35 -18
- package/core/CustomElement.js +634 -254
- package/core/css.js +117 -12
- package/core/customTypes.js +161 -49
- package/core/dom.js +18 -11
- package/core/jsonMergePatch.js +27 -11
- package/core/observe.js +308 -256
- package/core/optimizations.js +9 -9
- package/core/template.js +14 -57
- 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 +85 -115
- package/dist/index.min.js.map +4 -4
- package/dist/meta.json +1 -1
- package/dom/HTMLOptionsCollectionProxy.js +108 -0
- package/{theming/themableMixinLoader.js → loaders/palette.js} +4 -3
- package/loaders/theme.js +12 -0
- package/mixins/AriaReflectorMixin.js +64 -15
- package/mixins/AriaToolbarMixin.js +6 -0
- package/mixins/ControlMixin.js +79 -33
- package/mixins/DelegatesFocusMixin.js +62 -0
- package/mixins/DensityMixin.js +7 -3
- package/mixins/ElevationMixin.js +61 -0
- package/mixins/FlexableMixin.js +87 -39
- package/mixins/FormAssociatedMixin.js +76 -10
- package/mixins/HyperlinkMixin.js +76 -0
- package/mixins/InputMixin.js +227 -32
- package/mixins/KeyboardNavMixin.js +11 -7
- package/mixins/NavigationListenerMixin.js +33 -0
- package/mixins/PopupMixin.js +216 -219
- package/mixins/RTLObserverMixin.js +2 -0
- package/mixins/ResizeObserverMixin.js +18 -4
- package/mixins/RippleMixin.js +11 -7
- package/mixins/ScrollListenerMixin.js +14 -2
- package/mixins/SemiStickyMixin.js +51 -98
- package/mixins/ShapeMaskedMixin.js +125 -0
- package/mixins/ShapeMixin.js +30 -203
- package/mixins/StateMixin.js +74 -34
- package/mixins/TextFieldMixin.js +128 -145
- package/mixins/ThemableMixin.js +57 -56
- package/mixins/TooltipTriggerMixin.js +305 -359
- package/mixins/TouchTargetMixin.js +5 -2
- package/mixins/TypographyMixin.js +128 -0
- package/package.json +125 -81
- package/services/rtl.js +10 -0
- package/services/svgAlias.js +17 -0
- package/{theming/index.js → services/theme.js} +25 -176
- 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 +72 -0
- package/types/components/BottomAppBar.d.ts.map +1 -0
- package/types/components/BottomSheet.d.ts +135 -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 +245 -0
- package/types/components/Button.d.ts.map +1 -0
- package/types/components/Card.d.ts +147 -0
- package/types/components/Card.d.ts.map +1 -0
- package/types/components/Checkbox.d.ts +207 -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 +248 -0
- package/types/components/Chip.d.ts.map +1 -0
- package/types/components/Dialog.d.ts +103 -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 +46 -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 +273 -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 +256 -0
- package/types/components/FilterChip.d.ts.map +1 -0
- package/types/components/Grid.d.ts +38 -0
- package/types/components/Grid.d.ts.map +1 -0
- package/types/components/Headline.d.ts +46 -0
- package/types/components/Headline.d.ts.map +1 -0
- package/types/components/Icon.d.ts +55 -0
- package/types/components/Icon.d.ts.map +1 -0
- package/types/components/IconButton.d.ts +284 -0
- package/types/components/IconButton.d.ts.map +1 -0
- package/types/components/Input.d.ts +2528 -0
- package/types/components/Input.d.ts.map +1 -0
- package/types/components/InputChip.d.ts +85 -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 +35 -0
- package/types/components/List.d.ts.map +1 -0
- package/types/components/ListItem.d.ts +124 -0
- package/types/components/ListItem.d.ts.map +1 -0
- package/types/components/ListOption.d.ts +158 -0
- package/types/components/ListOption.d.ts.map +1 -0
- package/types/components/Listbox.d.ts +763 -0
- package/types/components/Listbox.d.ts.map +1 -0
- package/types/components/Menu.d.ts +130 -0
- package/types/components/Menu.d.ts.map +1 -0
- package/types/components/MenuItem.d.ts +232 -0
- package/types/components/MenuItem.d.ts.map +1 -0
- package/types/components/NavBar.d.ts +20 -0
- package/types/components/NavBar.d.ts.map +1 -0
- package/types/components/NavBarItem.d.ts +97 -0
- package/types/components/NavBarItem.d.ts.map +1 -0
- package/types/components/NavDrawer.d.ts +107 -0
- package/types/components/NavDrawer.d.ts.map +1 -0
- package/types/components/NavDrawerItem.d.ts +97 -0
- package/types/components/NavDrawerItem.d.ts.map +1 -0
- package/types/components/NavItem.d.ts +99 -0
- package/types/components/NavItem.d.ts.map +1 -0
- package/types/components/NavRail.d.ts +108 -0
- package/types/components/NavRail.d.ts.map +1 -0
- package/types/components/NavRailItem.d.ts +97 -0
- package/types/components/NavRailItem.d.ts.map +1 -0
- package/types/components/Page.d.ts +25 -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 +78 -0
- package/types/components/Popup.d.ts.map +1 -0
- package/types/components/Progress.d.ts +21 -0
- package/types/components/Progress.d.ts.map +1 -0
- package/types/components/Radio.d.ts +201 -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 +35 -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 +516 -0
- package/types/components/Search.d.ts.map +1 -0
- package/types/components/SegmentedButton.d.ts +252 -0
- package/types/components/SegmentedButton.d.ts.map +1 -0
- package/types/components/SegmentedButtonGroup.d.ts +43 -0
- package/types/components/SegmentedButtonGroup.d.ts.map +1 -0
- package/types/components/Select.d.ts +158 -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 +111 -0
- package/types/components/SideSheet.d.ts.map +1 -0
- package/types/components/Slider.d.ts +203 -0
- package/types/components/Slider.d.ts.map +1 -0
- package/types/components/Snackbar.d.ts +73 -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 +187 -0
- package/types/components/Switch.d.ts.map +1 -0
- package/types/components/SwitchIcon.d.ts +61 -0
- package/types/components/SwitchIcon.d.ts.map +1 -0
- package/types/components/Tab.d.ts +139 -0
- package/types/components/Tab.d.ts.map +1 -0
- package/types/components/TabContent.d.ts +124 -0
- package/types/components/TabContent.d.ts.map +1 -0
- package/types/components/TabList.d.ts +1111 -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 +25 -0
- package/types/components/Table.d.ts.map +1 -0
- package/types/components/TextArea.d.ts +201 -0
- package/types/components/TextArea.d.ts.map +1 -0
- package/types/components/Title.d.ts +46 -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 +129 -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 +260 -0
- package/types/core/Composition.d.ts.map +1 -0
- package/types/core/CompositionAdapter.d.ts +114 -0
- package/types/core/CompositionAdapter.d.ts.map +1 -0
- package/types/core/CustomElement.d.ts +304 -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 +22 -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 +114 -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 +31 -0
- package/types/mixins/AriaReflectorMixin.d.ts.map +1 -0
- package/types/mixins/AriaToolbarMixin.d.ts +34 -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 +13 -0
- package/types/mixins/DelegatesFocusMixin.d.ts.map +1 -0
- package/types/mixins/DensityMixin.d.ts +8 -0
- package/types/mixins/DensityMixin.d.ts.map +1 -0
- package/types/mixins/ElevationMixin.d.ts +32 -0
- package/types/mixins/ElevationMixin.d.ts.map +1 -0
- package/types/mixins/FlexableMixin.d.ts +14 -0
- package/types/mixins/FlexableMixin.d.ts.map +1 -0
- package/types/mixins/FormAssociatedMixin.d.ts +123 -0
- package/types/mixins/FormAssociatedMixin.d.ts.map +1 -0
- package/types/mixins/HyperlinkMixin.d.ts +25 -0
- package/types/mixins/HyperlinkMixin.d.ts.map +1 -0
- package/types/mixins/InputMixin.d.ts +173 -0
- package/types/mixins/InputMixin.d.ts.map +1 -0
- package/types/mixins/KeyboardNavMixin.d.ts +46 -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 +98 -0
- package/types/mixins/PopupMixin.d.ts.map +1 -0
- package/types/mixins/RTLObserverMixin.d.ts +8 -0
- package/types/mixins/RTLObserverMixin.d.ts.map +1 -0
- package/types/mixins/ResizeObserverMixin.d.ts +13 -0
- package/types/mixins/ResizeObserverMixin.d.ts.map +1 -0
- package/types/mixins/RippleMixin.d.ts +94 -0
- package/types/mixins/RippleMixin.d.ts.map +1 -0
- package/types/mixins/ScrollListenerMixin.d.ts +46 -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 +12 -0
- package/types/mixins/ShapeMaskedMixin.d.ts.map +1 -0
- package/types/mixins/ShapeMixin.d.ts +39 -0
- package/types/mixins/ShapeMixin.d.ts.map +1 -0
- package/types/mixins/StateMixin.d.ts +29 -0
- package/types/mixins/StateMixin.d.ts.map +1 -0
- package/types/mixins/TextFieldMixin.d.ts +153 -0
- package/types/mixins/TextFieldMixin.d.ts.map +1 -0
- package/types/mixins/ThemableMixin.d.ts +10 -0
- package/types/mixins/ThemableMixin.d.ts.map +1 -0
- package/types/mixins/TooltipTriggerMixin.d.ts +114 -0
- package/types/mixins/TooltipTriggerMixin.d.ts.map +1 -0
- package/types/mixins/TouchTargetMixin.d.ts +6 -0
- package/types/mixins/TouchTargetMixin.d.ts.map +1 -0
- package/types/mixins/TypographyMixin.d.ts +20 -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/jsx-runtime.js +9 -4
- package/utils/material-color/scheme/Scheme.js +1 -1
- package/utils/pixelmatch.js +363 -0
- package/utils/popup.js +86 -10
- package/utils/searchParams.js +22 -0
- package/components/Button.md +0 -61
- package/components/ExtendedFab.js +0 -32
- package/components/Layout.js +0 -504
- package/components/Nav.js +0 -38
- package/core/DomAdapter.js +0 -586
- package/core/ICustomElement.d.ts +0 -291
- package/core/ICustomElement.js +0 -1
- package/core/test.js +0 -126
- package/core/typings.d.ts +0 -142
- package/core/typings.js +0 -1
- package/mixins/SurfaceMixin.js +0 -127
- package/theming/loader.js +0 -22
- /package/{utils/color_keywords.js → constants/colorKeywords.js} +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TabList.d.ts","sourceRoot":"","sources":["../../components/TabList.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA8BI,mCAAmC;oBAAxB,OAAO,CAAC,WAAW,CAAC;IAE/B,sEAAsE;;IAEtE,kDAAkD;oBAAvC,gBAAgB,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAAK,CAAC;IAE9C;;;;;;;;;;OAUG;iBATO;QACN,IAAI,EAAC,MAAM,CAAC;QACZ,KAAK,EAAC,MAAM,CAAC;QACb,KAAK,EAAC,MAAM,CAAC;QACb,MAAM,EAAE,MAAM,CAAC;QACf,KAAK,EAAE;YAAC,IAAI,EAAC,MAAM,CAAC;YAAC,KAAK,EAAC,MAAM,CAAA;SAAC,CAAC;QACnC,GAAG,EAAE,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAAK,CAAC;QACvB,KAAK,EAAE,MAAM,CAAC;KACd,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAPG,MAAM;eACL,MAAM;eACN,MAAM;gBACJ,MAAM;eACP;YAAC,IAAI,EAAC,MAAM,CAAC;YAAC,KAAK,EAAC,MAAM,CAAA;SAAC;aAC7B,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAAK;eACf,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAwJjB,mDAAmD;;IAInD,gEAAgE;;IAQhE,+DAA+D;IAC/D,uCAAuC;+BAA3B,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAAK;IAS7B,2FAA2F;;IAO3F;;;;OAIG;0CADQ,MAAM;IA+CjB,uDAAuD;IACvD,4BAA4B;kCAAhB,MAAM;IAIlB,4EAA4E;;IAa5E,+EAA+E;;;;;;0BAnSzD,0BAA0B"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
declare const _default: typeof import("../index.js").CustomElement & import("../core/CustomElement.js").Class<{
|
|
2
|
+
_ariaRole: string;
|
|
3
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
4
|
+
_onConnectAriaValues: Map<import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>, ARIAMixin[import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>]>;
|
|
5
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
6
|
+
readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot | Element | readonly Element[];
|
|
7
|
+
updateAriaProperty<K extends StringKeyOfARIAMixin<keyof ARIAMixin>>(name: K, value: ARIAMixin[K]): void;
|
|
8
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
9
|
+
block: boolean;
|
|
10
|
+
inline: boolean;
|
|
11
|
+
row: boolean;
|
|
12
|
+
x: string;
|
|
13
|
+
y: string;
|
|
14
|
+
gap: number;
|
|
15
|
+
padding: string;
|
|
16
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
17
|
+
color: string;
|
|
18
|
+
ink: string;
|
|
19
|
+
typeStyle: string;
|
|
20
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
21
|
+
/** ARIA role applied by the AriaReflectorMixin (defaults to `tabpanel`). */
|
|
22
|
+
_ariaRole: string;
|
|
23
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
24
|
+
active: boolean;
|
|
25
|
+
peeking: boolean;
|
|
26
|
+
}, any[]>;
|
|
27
|
+
export default _default;
|
|
28
|
+
//# sourceMappingURL=TabPanel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TabPanel.d.ts","sourceRoot":"","sources":["../../components/TabPanel.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;IAaI,4EAA4E"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
declare const _default: typeof CustomElement & import("../core/CustomElement.js").Class<{
|
|
2
|
+
caption: Element;
|
|
3
|
+
tHead: Element;
|
|
4
|
+
tFoot: Element;
|
|
5
|
+
tBodies: HTMLCollectionOf<Element>;
|
|
6
|
+
rows: HTMLCollectionOf<Element>;
|
|
7
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
8
|
+
/** Create and return a `mdw-caption` element, appending when necessary. */
|
|
9
|
+
createCaption(): Element;
|
|
10
|
+
/** Remove the table's caption element when present. */
|
|
11
|
+
deleteCaption(): void;
|
|
12
|
+
/** Create and return a `mdw-thead` element for the table. */
|
|
13
|
+
createTHead(): Element;
|
|
14
|
+
/** Remove the table's `mdw-thead` element when present. */
|
|
15
|
+
deleteTHead(): void;
|
|
16
|
+
/** Create and return a `mdw-tfoot` element for the table. */
|
|
17
|
+
createTFoot(): Element;
|
|
18
|
+
/** Remove the table's `mdw-tfoot` element when present. */
|
|
19
|
+
deleteTFoot(): void;
|
|
20
|
+
/** Insert and return a new `mdw-tbody` element before the tFoot (if any). */
|
|
21
|
+
createTBody(): Element;
|
|
22
|
+
}, any[]>;
|
|
23
|
+
export default _default;
|
|
24
|
+
import CustomElement from '../core/CustomElement.js';
|
|
25
|
+
//# sourceMappingURL=Table.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Table.d.ts","sourceRoot":"","sources":["../../components/Table.js"],"names":[],"mappings":";;;;;;;IAiII,2EAA2E;;IAE3E,uDAAuD;;IAEvD,6DAA6D;;IAE7D,2DAA2D;;IAE3D,6DAA6D;;IAE7D,2DAA2D;;IAE3D,6EAA6E;;;;0BA7IvD,0BAA0B"}
|
|
@@ -0,0 +1,201 @@
|
|
|
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
|
+
disabled: boolean;
|
|
9
|
+
focused: boolean;
|
|
10
|
+
hovered: boolean;
|
|
11
|
+
pressed: boolean;
|
|
12
|
+
_lastInteraction: "key" | "mouse" | "touch" | "pen";
|
|
13
|
+
_hovered: boolean;
|
|
14
|
+
_focused: boolean;
|
|
15
|
+
_focusedSynthetic: boolean;
|
|
16
|
+
_keyPressed: boolean;
|
|
17
|
+
_keyReleased: boolean;
|
|
18
|
+
_pointerPressed: boolean;
|
|
19
|
+
stateLayer: boolean;
|
|
20
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
21
|
+
disabledState: boolean;
|
|
22
|
+
hoveredState: boolean;
|
|
23
|
+
focusedState: boolean;
|
|
24
|
+
pressedState: boolean;
|
|
25
|
+
touchedState: boolean;
|
|
26
|
+
pointedState: boolean;
|
|
27
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
28
|
+
stateTargetElement: HTMLElement;
|
|
29
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
30
|
+
color: string;
|
|
31
|
+
ink: string;
|
|
32
|
+
typeStyle: string;
|
|
33
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
34
|
+
shapeTop: boolean;
|
|
35
|
+
shapeBottom: boolean;
|
|
36
|
+
shapeStart: boolean;
|
|
37
|
+
shapeEnd: boolean;
|
|
38
|
+
shapeStyle: string;
|
|
39
|
+
outlined: boolean;
|
|
40
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
41
|
+
density: number;
|
|
42
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
43
|
+
delegatesFocus: boolean;
|
|
44
|
+
}, any[]> & {
|
|
45
|
+
formAssociated: true;
|
|
46
|
+
} & import("../core/CustomElement.js").Class<{
|
|
47
|
+
_ipcListener: EventListener;
|
|
48
|
+
_ipcTarget: EventTarget;
|
|
49
|
+
_files: FileList;
|
|
50
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
51
|
+
ariaControls: string;
|
|
52
|
+
autocomplete: string;
|
|
53
|
+
name: string;
|
|
54
|
+
readOnly: boolean;
|
|
55
|
+
formNoValidate: boolean;
|
|
56
|
+
defaultChecked: boolean;
|
|
57
|
+
_checkedDirty: boolean;
|
|
58
|
+
_checked: boolean;
|
|
59
|
+
required: boolean;
|
|
60
|
+
type: string;
|
|
61
|
+
_defaultValue: string;
|
|
62
|
+
_value: string;
|
|
63
|
+
_valueDirty: boolean;
|
|
64
|
+
_userInteracted: boolean;
|
|
65
|
+
_invalid: boolean;
|
|
66
|
+
_badInput: boolean;
|
|
67
|
+
_validationMessage: string;
|
|
68
|
+
_formDisabled: boolean;
|
|
69
|
+
_formReset: boolean;
|
|
70
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
71
|
+
erroredState: boolean;
|
|
72
|
+
defaultValue: string;
|
|
73
|
+
_valueBehavior: "default" | "value" | "default/on" | "filename";
|
|
74
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
75
|
+
_onSetValue(value: string): void;
|
|
76
|
+
_onSetChecked(checked: boolean): void;
|
|
77
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
78
|
+
value: string;
|
|
79
|
+
checked: boolean;
|
|
80
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
81
|
+
form: HTMLFormElement;
|
|
82
|
+
validity: ValidityState;
|
|
83
|
+
validationMessage: string;
|
|
84
|
+
willValidate: boolean;
|
|
85
|
+
labels: NodeList;
|
|
86
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
87
|
+
disabledState: boolean;
|
|
88
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
89
|
+
checkValidity(): boolean;
|
|
90
|
+
reportValidity(): boolean;
|
|
91
|
+
setCustomValidity(error: string): void;
|
|
92
|
+
_notifyRadioChange(key: string, value: string): void;
|
|
93
|
+
refreshFormAssociation(): void;
|
|
94
|
+
formAssociatedCallback(form: HTMLFormElement | null): void;
|
|
95
|
+
formIPCEvent(event: CustomEvent<[string, string]>): void;
|
|
96
|
+
formDisabledCallback(disabled: boolean): void;
|
|
97
|
+
formResetCallback(): void;
|
|
98
|
+
formStateRestoreCallback(state: string | FormData, mode: "autocomplete" | "restore"): void;
|
|
99
|
+
_updateFormAssociatedValue(): void;
|
|
100
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
101
|
+
ariaLabel: string;
|
|
102
|
+
_slotInnerText: string;
|
|
103
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
104
|
+
focusableOnDisabled: boolean;
|
|
105
|
+
controlTagName: string;
|
|
106
|
+
controlVoidElement: boolean;
|
|
107
|
+
_slotMutationObserver: any;
|
|
108
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
109
|
+
_onControlValue(value: string): void;
|
|
110
|
+
onValueChangingContentAttribute(): void;
|
|
111
|
+
focus(options?: FocusOptions): void;
|
|
112
|
+
click(): void;
|
|
113
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
114
|
+
stateTargetElement: HTMLElement;
|
|
115
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
116
|
+
checkValidity(): boolean;
|
|
117
|
+
reportValidity(): boolean;
|
|
118
|
+
setCustomValidity(error: string): void;
|
|
119
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
120
|
+
_computedAriaLabel: string;
|
|
121
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
122
|
+
_computedAriaLabelledby: never;
|
|
123
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
124
|
+
stateLayer: boolean;
|
|
125
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
126
|
+
type: string;
|
|
127
|
+
icon: string;
|
|
128
|
+
iconVariation: string;
|
|
129
|
+
label: string;
|
|
130
|
+
filled: boolean;
|
|
131
|
+
outlined: boolean;
|
|
132
|
+
inputPrefix: string;
|
|
133
|
+
inputSuffix: string;
|
|
134
|
+
trailingIcon: string;
|
|
135
|
+
trailingIconInk: string;
|
|
136
|
+
trailingIconLabel: string;
|
|
137
|
+
supporting: string;
|
|
138
|
+
error: string;
|
|
139
|
+
placeholder: string;
|
|
140
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
141
|
+
erroredState: boolean;
|
|
142
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
143
|
+
computePlaceholder: () => string;
|
|
144
|
+
shouldShowSupporting: () => boolean;
|
|
145
|
+
computeSupportingText: () => string;
|
|
146
|
+
populatedState: () => boolean;
|
|
147
|
+
_showLabelText: never;
|
|
148
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
149
|
+
_shapeShapeTop: never;
|
|
150
|
+
computedIconVariation: () => string;
|
|
151
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
152
|
+
/** Whether the UA supports the `lh` CSS unit for line-height. */
|
|
153
|
+
supportsCSSLineHeightUnit: boolean;
|
|
154
|
+
/** The control type used by the component. */
|
|
155
|
+
type: string;
|
|
156
|
+
/** Internal flag used while performing auto-resize logic. */
|
|
157
|
+
_resizing: boolean;
|
|
158
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
159
|
+
/** Tag name used for the native control element. */
|
|
160
|
+
controlTagName: string;
|
|
161
|
+
/** Textareas are not void elements. */
|
|
162
|
+
controlVoidElement: boolean;
|
|
163
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
164
|
+
fixed: boolean;
|
|
165
|
+
minRows: number;
|
|
166
|
+
maxRows: number;
|
|
167
|
+
_lineHeight: string;
|
|
168
|
+
cols: number;
|
|
169
|
+
dirName: string;
|
|
170
|
+
maxLength: number;
|
|
171
|
+
minLength: number;
|
|
172
|
+
placeholder: string;
|
|
173
|
+
rows: number;
|
|
174
|
+
wrap: string;
|
|
175
|
+
defaultValueAttr: string;
|
|
176
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
177
|
+
_textarea: HTMLTextAreaElement;
|
|
178
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
179
|
+
defaultValue: string;
|
|
180
|
+
textLength: number;
|
|
181
|
+
select: () => void;
|
|
182
|
+
selectionDirection: "none" | "forward" | "backward";
|
|
183
|
+
selectionStart: number;
|
|
184
|
+
selectionEnd: number;
|
|
185
|
+
setRangeText: {
|
|
186
|
+
(replacement: string): void;
|
|
187
|
+
(replacement: string, start: number, end: number, selectionMode?: SelectionMode): void;
|
|
188
|
+
};
|
|
189
|
+
setSelectionRange: (start: number | null, end: number | null, direction?: "forward" | "backward" | "none") => void;
|
|
190
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
191
|
+
/**
|
|
192
|
+
* Resize the textarea to fit content up to `maxRows` and not below
|
|
193
|
+
* `minRows`. This updates the `rows` property and internal layout state.
|
|
194
|
+
*/
|
|
195
|
+
resize(): void;
|
|
196
|
+
/** Called by the ResizeObserver mixin; triggers a resize unless active. */
|
|
197
|
+
onResizeObserved(): void;
|
|
198
|
+
}, any[]>;
|
|
199
|
+
export default _default;
|
|
200
|
+
import CustomElement from '../core/CustomElement.js';
|
|
201
|
+
//# sourceMappingURL=TextArea.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TextArea.d.ts","sourceRoot":"","sources":["../../components/TextArea.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAwBI,iEAAiE;;IAEjE,8CAA8C;;IAE9C,6DAA6D;;;IAI7D,oDAAoD;;IAEpD,uCAAuC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA4EvC;;;OAGG;;IAsDH,2EAA2E;;;;0BAvKzB,0BAA0B"}
|
|
@@ -0,0 +1,46 @@
|
|
|
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
|
+
textPadding: string;
|
|
5
|
+
textPaddingTop: string;
|
|
6
|
+
textLeading: string;
|
|
7
|
+
textPaddingBottom: string;
|
|
8
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
9
|
+
_computedTextPaddingTop: string;
|
|
10
|
+
_computedTextPaddingBottom: string;
|
|
11
|
+
_computedTextLeading: string;
|
|
12
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
13
|
+
_beforeStyle: string;
|
|
14
|
+
_afterStyle: string;
|
|
15
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
16
|
+
_ariaRole: string;
|
|
17
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
18
|
+
_onConnectAriaValues: Map<import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>, ARIAMixin[import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>]>;
|
|
19
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
20
|
+
readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot | Element | readonly Element[];
|
|
21
|
+
updateAriaProperty<K extends StringKeyOfARIAMixin<keyof ARIAMixin>>(name: K, value: ARIAMixin[K]): void;
|
|
22
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
23
|
+
block: boolean;
|
|
24
|
+
inline: boolean;
|
|
25
|
+
row: boolean;
|
|
26
|
+
x: string;
|
|
27
|
+
y: string;
|
|
28
|
+
gap: number;
|
|
29
|
+
padding: string;
|
|
30
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
31
|
+
color: string;
|
|
32
|
+
ink: string;
|
|
33
|
+
typeStyle: string;
|
|
34
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
35
|
+
_ariaRole: string;
|
|
36
|
+
_baseAriaLevel: number;
|
|
37
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
38
|
+
ariaLevel: string;
|
|
39
|
+
size: string;
|
|
40
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
41
|
+
_computedAriaLevel: string;
|
|
42
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
43
|
+
_baseAriaLevel: number;
|
|
44
|
+
}, any[]>;
|
|
45
|
+
export default _default;
|
|
46
|
+
//# sourceMappingURL=Title.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Title.d.ts","sourceRoot":"","sources":["../../components/Title.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
declare const _default: typeof CustomElement & import("../core/CustomElement.js").Class<{
|
|
2
|
+
_ariaRole: string;
|
|
3
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
4
|
+
_onConnectAriaValues: Map<import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>, ARIAMixin[import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>]>;
|
|
5
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
6
|
+
readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot | Element | readonly Element[];
|
|
7
|
+
updateAriaProperty<K extends StringKeyOfARIAMixin<keyof ARIAMixin>>(name: K, value: ARIAMixin[K]): void;
|
|
8
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
9
|
+
disabled: boolean;
|
|
10
|
+
focused: boolean;
|
|
11
|
+
hovered: boolean;
|
|
12
|
+
pressed: boolean;
|
|
13
|
+
_lastInteraction: "key" | "mouse" | "touch" | "pen";
|
|
14
|
+
_hovered: boolean;
|
|
15
|
+
_focused: boolean;
|
|
16
|
+
_focusedSynthetic: boolean;
|
|
17
|
+
_keyPressed: boolean;
|
|
18
|
+
_keyReleased: boolean;
|
|
19
|
+
_pointerPressed: boolean;
|
|
20
|
+
stateLayer: boolean;
|
|
21
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
22
|
+
disabledState: boolean;
|
|
23
|
+
hoveredState: boolean;
|
|
24
|
+
focusedState: boolean;
|
|
25
|
+
pressedState: boolean;
|
|
26
|
+
touchedState: boolean;
|
|
27
|
+
pointedState: boolean;
|
|
28
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
29
|
+
stateTargetElement: HTMLElement;
|
|
30
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
31
|
+
color: string;
|
|
32
|
+
ink: string;
|
|
33
|
+
typeStyle: string;
|
|
34
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
35
|
+
shapeTop: boolean;
|
|
36
|
+
shapeBottom: boolean;
|
|
37
|
+
shapeStart: boolean;
|
|
38
|
+
shapeEnd: boolean;
|
|
39
|
+
shapeStyle: string;
|
|
40
|
+
outlined: boolean;
|
|
41
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
42
|
+
/** ARIA role applied by the AriaReflectorMixin (defaults to `tooltip`). */
|
|
43
|
+
_ariaRole: string;
|
|
44
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
45
|
+
open: boolean;
|
|
46
|
+
}, any[]>;
|
|
47
|
+
export default _default;
|
|
48
|
+
import CustomElement from '../core/CustomElement.js';
|
|
49
|
+
//# sourceMappingURL=Tooltip.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Tooltip.d.ts","sourceRoot":"","sources":["../../components/Tooltip.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAeI,2EAA2E;;;;;;0BAfrD,0BAA0B"}
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
declare const _default: typeof CustomElement & import("../core/CustomElement.js").Class<{
|
|
2
|
+
delegatesFocus: boolean;
|
|
3
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
4
|
+
_scrollListenerPositionX: number;
|
|
5
|
+
_scrollListenerPositionY: number;
|
|
6
|
+
_scrollListenerLastIdle: number;
|
|
7
|
+
_scrollListenerLastScroll: number;
|
|
8
|
+
_scrollListenerLastResize: number;
|
|
9
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
10
|
+
_scroller: WeakRef<HTMLElement | Window>;
|
|
11
|
+
_scrollerScrollListener: EventListener;
|
|
12
|
+
_scrollerResizeListener: EventListener;
|
|
13
|
+
_scrollDebounce: any;
|
|
14
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
15
|
+
_scrollListenerOnScrollIdle(): void;
|
|
16
|
+
_scrollListenerOnScrollerScroll(event: Event): void;
|
|
17
|
+
_scrollListenerOnScrollerResize(event: Event): void;
|
|
18
|
+
startScrollListener(scroller?: EventTarget): boolean;
|
|
19
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
20
|
+
_scrollListenerScroller: HTMLElement | Window;
|
|
21
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
22
|
+
_scrollListenerScrollerScrollHeight: any;
|
|
23
|
+
_scrollListenerScrollerClientHeight: any;
|
|
24
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
25
|
+
_scrollListenerClear(scroller?: EventTarget): boolean;
|
|
26
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
27
|
+
_semiStickyHeight: number;
|
|
28
|
+
_semiStickyOffsetY: number;
|
|
29
|
+
_semiStickyTranslateY: number;
|
|
30
|
+
_semiStickyDuration: number;
|
|
31
|
+
_semiStickyEasing: string;
|
|
32
|
+
_semiStickyMeasured: boolean;
|
|
33
|
+
stickyAlways: boolean;
|
|
34
|
+
stickyParent: boolean;
|
|
35
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
36
|
+
_refreshSemiStickyMetrics(): void;
|
|
37
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
38
|
+
_semiStickyStyleStyle: import("../core/customTypes.js").ElementStylerOptions | {
|
|
39
|
+
styles: {
|
|
40
|
+
transform: string;
|
|
41
|
+
};
|
|
42
|
+
timing: {
|
|
43
|
+
duration: number;
|
|
44
|
+
easing: string;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
48
|
+
_ariaRole: string;
|
|
49
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
50
|
+
_onConnectAriaValues: Map<import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>, ARIAMixin[import("../mixins/AriaReflectorMixin.js").StringKeyOfARIAMixin<keyof ARIAMixin>]>;
|
|
51
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
52
|
+
readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot | Element | readonly Element[];
|
|
53
|
+
updateAriaProperty<K extends StringKeyOfARIAMixin<keyof ARIAMixin>>(name: K, value: ARIAMixin[K]): void;
|
|
54
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
55
|
+
kbdNav: string;
|
|
56
|
+
_kbdFocusable: boolean;
|
|
57
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
58
|
+
kbdNavQuery: string;
|
|
59
|
+
kbdNavFocusableWhenDisabled: boolean;
|
|
60
|
+
ariaOrientationDefault: "horizontal" | "vertical";
|
|
61
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
62
|
+
kbdNavChildren: NodeListOf<HTMLElement>;
|
|
63
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
64
|
+
_ariaOrientationIsVertical(): boolean;
|
|
65
|
+
focusCurrentOrFirst(): HTMLElement;
|
|
66
|
+
focusNext(current?: HTMLElement, loop?: boolean, reverse?: boolean): HTMLElement;
|
|
67
|
+
focusPrevious(current?: HTMLElement, loop?: boolean): HTMLElement;
|
|
68
|
+
focus(options?: FocusOptions): void;
|
|
69
|
+
refreshTabIndexes(): void;
|
|
70
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
71
|
+
ariaOrientationDefault: string;
|
|
72
|
+
_ariaRole: string;
|
|
73
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
74
|
+
disabled: boolean;
|
|
75
|
+
focused: boolean;
|
|
76
|
+
hovered: boolean;
|
|
77
|
+
pressed: boolean;
|
|
78
|
+
_lastInteraction: "key" | "mouse" | "touch" | "pen";
|
|
79
|
+
_hovered: boolean;
|
|
80
|
+
_focused: boolean;
|
|
81
|
+
_focusedSynthetic: boolean;
|
|
82
|
+
_keyPressed: boolean;
|
|
83
|
+
_keyReleased: boolean;
|
|
84
|
+
_pointerPressed: boolean;
|
|
85
|
+
stateLayer: boolean;
|
|
86
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
87
|
+
disabledState: boolean;
|
|
88
|
+
hoveredState: boolean;
|
|
89
|
+
focusedState: boolean;
|
|
90
|
+
pressedState: boolean;
|
|
91
|
+
touchedState: boolean;
|
|
92
|
+
pointedState: boolean;
|
|
93
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
94
|
+
stateTargetElement: HTMLElement;
|
|
95
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
96
|
+
color: string;
|
|
97
|
+
ink: string;
|
|
98
|
+
typeStyle: string;
|
|
99
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
100
|
+
shapeTop: boolean;
|
|
101
|
+
shapeBottom: boolean;
|
|
102
|
+
shapeStart: boolean;
|
|
103
|
+
shapeEnd: boolean;
|
|
104
|
+
shapeStyle: string;
|
|
105
|
+
outlined: boolean;
|
|
106
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
107
|
+
_raised: boolean;
|
|
108
|
+
_headlineOpacity: number;
|
|
109
|
+
headline: string;
|
|
110
|
+
size: "small" | "medium" | "large";
|
|
111
|
+
color: string;
|
|
112
|
+
raisedColor: string;
|
|
113
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
114
|
+
_styles: string;
|
|
115
|
+
_headlineStyle: import("../core/customTypes.js").ElementStylerOptions | {
|
|
116
|
+
target: string;
|
|
117
|
+
styles: {
|
|
118
|
+
opacity: number;
|
|
119
|
+
};
|
|
120
|
+
timing: {
|
|
121
|
+
duration: number;
|
|
122
|
+
};
|
|
123
|
+
};
|
|
124
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
125
|
+
_companionIf: never;
|
|
126
|
+
}, any[]>;
|
|
127
|
+
export default _default;
|
|
128
|
+
import CustomElement from '../core/CustomElement.js';
|
|
129
|
+
//# sourceMappingURL=TopAppBar.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TopAppBar.d.ts","sourceRoot":"","sources":["../../components/TopAppBar.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BAA0B,0BAA0B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"colorKeywords.d.ts","sourceRoot":"","sources":["../../constants/colorKeywords.js"],"names":[],"mappings":"AACA,iDAqJG"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
export const CIRCLE_PATH: "M0 12A12 12 0 1012 0 12 12 0 000 12Z";
|
|
2
|
+
export const DIAMOND_PATH: "M 0 12 12 0 24 12 12 24 Z";
|
|
3
|
+
export const SQUIRCLE_PATH: "M12 24C17.2583 24 20.1815 24 22.0908 22.0908 24 20.1815 24 17.2583 24 12 24 6.7417 24 3.8185 22.0908 1.9092 20.1815-0 17.2583-0 12-0 6.7417-0 3.8185-0 1.9092 1.9092-0 3.8185-0 6.7417-0 12-0 17.2583-0 20.1815 1.9092 22.0908 3.8185 24 6.7417 24 12 24Z";
|
|
4
|
+
export const HALF_NOTCH_PATH: "M0 6H6V0H18V6H24V18H18V24H6V18H0Z";
|
|
5
|
+
export namespace SHAPE_ROUNDED_DEFAULT {
|
|
6
|
+
export namespace size {
|
|
7
|
+
let extraSmall: string;
|
|
8
|
+
let small: string;
|
|
9
|
+
let medium: string;
|
|
10
|
+
let large: string;
|
|
11
|
+
let extraLarge: string;
|
|
12
|
+
let full: string;
|
|
13
|
+
}
|
|
14
|
+
export { CIRCLE_PATH as mask };
|
|
15
|
+
export let convex: boolean;
|
|
16
|
+
}
|
|
17
|
+
export namespace SHAPE_CUT_DEFAULT {
|
|
18
|
+
export namespace size_1 {
|
|
19
|
+
let extraSmall_1: string;
|
|
20
|
+
export { extraSmall_1 as extraSmall };
|
|
21
|
+
let small_1: string;
|
|
22
|
+
export { small_1 as small };
|
|
23
|
+
let medium_1: string;
|
|
24
|
+
export { medium_1 as medium };
|
|
25
|
+
let large_1: string;
|
|
26
|
+
export { large_1 as large };
|
|
27
|
+
let extraLarge_1: string;
|
|
28
|
+
export { extraLarge_1 as extraLarge };
|
|
29
|
+
let full_1: string;
|
|
30
|
+
export { full_1 as full };
|
|
31
|
+
}
|
|
32
|
+
export { size_1 as size };
|
|
33
|
+
export { DIAMOND_PATH as mask };
|
|
34
|
+
}
|
|
35
|
+
export namespace SHAPE_SQUIRCLE_DEFAULT {
|
|
36
|
+
export { SQUIRCLE_PATH as mask };
|
|
37
|
+
}
|
|
38
|
+
//# sourceMappingURL=shapes.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"shapes.d.ts","sourceRoot":"","sources":["../../constants/shapes.js"],"names":[],"mappings":"AAAA,0BAA2B,sCAAsC,CAAC;AAClE,2BAA4B,2BAA2B,CAAC;AACxD,4BAA6B,2PAA2P,CAAC;AACzR,8BAA+B,mCAAmC,CAAC"}
|