@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,412 @@
|
|
|
1
|
+
declare const _default: typeof import("../index.js").CustomElement & import("../core/CustomElement.js").Class<{
|
|
2
|
+
href: string;
|
|
3
|
+
target: string;
|
|
4
|
+
download: string;
|
|
5
|
+
ping: string;
|
|
6
|
+
rel: string;
|
|
7
|
+
hreflang: string;
|
|
8
|
+
referrerPolicy: string;
|
|
9
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
10
|
+
origin: string;
|
|
11
|
+
protocol: string;
|
|
12
|
+
username: string;
|
|
13
|
+
password: string;
|
|
14
|
+
host: string;
|
|
15
|
+
hostname: string;
|
|
16
|
+
port: string;
|
|
17
|
+
pathname: string;
|
|
18
|
+
search: string;
|
|
19
|
+
hash: string;
|
|
20
|
+
}, any[]> & import("../core/CustomElement.js").Class<object, any[]> & import("../core/CustomElement.js").Class<{
|
|
21
|
+
delegatesFocus: boolean;
|
|
22
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
23
|
+
_ariaRole: string;
|
|
24
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
25
|
+
onConnectAriaValues: Map<string, string>;
|
|
26
|
+
hasFiredConnected: boolean;
|
|
27
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
28
|
+
readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot;
|
|
29
|
+
updateAriaProperty(name: keyof HTMLElement & keyof ElementInternals, value: string): void;
|
|
30
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
31
|
+
disabled: boolean;
|
|
32
|
+
focused: boolean;
|
|
33
|
+
hovered: boolean;
|
|
34
|
+
pressed: boolean;
|
|
35
|
+
_lastInteraction: "key" | "mouse" | "touch" | "pen";
|
|
36
|
+
_hovered: boolean;
|
|
37
|
+
_focused: boolean;
|
|
38
|
+
_focusedSynthetic: boolean;
|
|
39
|
+
_keyPressed: boolean;
|
|
40
|
+
_keyReleased: boolean;
|
|
41
|
+
_pointerPressed: boolean;
|
|
42
|
+
stateLayer: boolean;
|
|
43
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
44
|
+
disabledState: boolean;
|
|
45
|
+
hoveredState: boolean;
|
|
46
|
+
focusedState: boolean;
|
|
47
|
+
pressedState: boolean;
|
|
48
|
+
touchedState: boolean;
|
|
49
|
+
pointedState: boolean;
|
|
50
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
51
|
+
stateTargetElement: HTMLElement;
|
|
52
|
+
}, any[]> & {
|
|
53
|
+
formAssociated: true;
|
|
54
|
+
} & import("../core/CustomElement.js").Class<{
|
|
55
|
+
_ipcListener: EventListener;
|
|
56
|
+
_ipcTarget: EventTarget;
|
|
57
|
+
_files: FileList;
|
|
58
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
59
|
+
ariaControls: string;
|
|
60
|
+
autocomplete: string;
|
|
61
|
+
name: string;
|
|
62
|
+
readOnly: boolean;
|
|
63
|
+
formNoValidate: boolean;
|
|
64
|
+
defaultChecked: boolean;
|
|
65
|
+
_checkedDirty: boolean;
|
|
66
|
+
_checked: boolean;
|
|
67
|
+
required: boolean;
|
|
68
|
+
type: string;
|
|
69
|
+
_defaultValue: string;
|
|
70
|
+
_value: string;
|
|
71
|
+
_valueDirty: boolean;
|
|
72
|
+
_userInteracted: boolean;
|
|
73
|
+
_invalid: boolean;
|
|
74
|
+
_badInput: boolean;
|
|
75
|
+
_validationMessage: string;
|
|
76
|
+
_formDisabled: boolean;
|
|
77
|
+
_formReset: boolean;
|
|
78
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
79
|
+
erroredState: boolean;
|
|
80
|
+
defaultValue: string;
|
|
81
|
+
_valueBehavior: "default" | "value" | "default/on" | "filename";
|
|
82
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
83
|
+
_onSetValue(value: string): void;
|
|
84
|
+
_onSetChecked(checked: boolean): void;
|
|
85
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
86
|
+
value: string;
|
|
87
|
+
checked: boolean;
|
|
88
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
89
|
+
form: HTMLFormElement;
|
|
90
|
+
validity: ValidityState;
|
|
91
|
+
validationMessage: string;
|
|
92
|
+
willValidate: boolean;
|
|
93
|
+
labels: NodeList;
|
|
94
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
95
|
+
disabledState: boolean;
|
|
96
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
97
|
+
checkValidity(): boolean;
|
|
98
|
+
reportValidity(): boolean;
|
|
99
|
+
setCustomValidity(error: string): void;
|
|
100
|
+
_notifyRadioChange(key: string, value: string): void;
|
|
101
|
+
refreshFormAssociation(): void;
|
|
102
|
+
formAssociatedCallback(form: HTMLFormElement | null): void;
|
|
103
|
+
formIPCEvent(event: CustomEvent<[string, string]>): void;
|
|
104
|
+
formDisabledCallback(disabled: boolean): void;
|
|
105
|
+
formResetCallback(): void;
|
|
106
|
+
formStateRestoreCallback(state: string | FormData, mode: "autocomplete" | "restore"): void;
|
|
107
|
+
_updateFormAssociatedValue(): void;
|
|
108
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
109
|
+
color: string;
|
|
110
|
+
ink: string;
|
|
111
|
+
typeStyle: string;
|
|
112
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
113
|
+
shapeTop: boolean;
|
|
114
|
+
shapeBottom: boolean;
|
|
115
|
+
shapeStart: boolean;
|
|
116
|
+
shapeEnd: boolean;
|
|
117
|
+
shapeStyle: string;
|
|
118
|
+
outlined: boolean;
|
|
119
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
120
|
+
block: boolean;
|
|
121
|
+
inline: boolean;
|
|
122
|
+
row: boolean;
|
|
123
|
+
x: string;
|
|
124
|
+
y: string;
|
|
125
|
+
gap: number;
|
|
126
|
+
padding: string;
|
|
127
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
128
|
+
_ariaRole: string;
|
|
129
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
130
|
+
elevated: boolean;
|
|
131
|
+
filled: boolean;
|
|
132
|
+
actionable: boolean;
|
|
133
|
+
actionLabel: string;
|
|
134
|
+
onaction: EventListener;
|
|
135
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
136
|
+
stateTargetElement: HTMLElement;
|
|
137
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
138
|
+
showBlocker: () => ReturnType<({ disabledState, disabled }: import("../index.js").CustomElement & {
|
|
139
|
+
href: string;
|
|
140
|
+
target: string;
|
|
141
|
+
download: string;
|
|
142
|
+
ping: string;
|
|
143
|
+
rel: string;
|
|
144
|
+
hreflang: string;
|
|
145
|
+
referrerPolicy: string;
|
|
146
|
+
} & {
|
|
147
|
+
origin: string;
|
|
148
|
+
protocol: string;
|
|
149
|
+
username: string;
|
|
150
|
+
password: string;
|
|
151
|
+
host: string;
|
|
152
|
+
hostname: string;
|
|
153
|
+
port: string;
|
|
154
|
+
pathname: string;
|
|
155
|
+
search: string;
|
|
156
|
+
hash: string;
|
|
157
|
+
} & object & {
|
|
158
|
+
delegatesFocus: boolean;
|
|
159
|
+
} & {
|
|
160
|
+
_ariaRole: string;
|
|
161
|
+
} & {
|
|
162
|
+
onConnectAriaValues: Map<string, string>;
|
|
163
|
+
hasFiredConnected: boolean;
|
|
164
|
+
} & {
|
|
165
|
+
readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot;
|
|
166
|
+
updateAriaProperty(name: keyof HTMLElement & keyof ElementInternals, value: string): void;
|
|
167
|
+
} & {
|
|
168
|
+
disabled: boolean;
|
|
169
|
+
focused: boolean;
|
|
170
|
+
hovered: boolean;
|
|
171
|
+
pressed: boolean;
|
|
172
|
+
_lastInteraction: "key" | "mouse" | "touch" | "pen";
|
|
173
|
+
_hovered: boolean;
|
|
174
|
+
_focused: boolean;
|
|
175
|
+
_focusedSynthetic: boolean;
|
|
176
|
+
_keyPressed: boolean;
|
|
177
|
+
_keyReleased: boolean;
|
|
178
|
+
_pointerPressed: boolean;
|
|
179
|
+
stateLayer: boolean;
|
|
180
|
+
} & {
|
|
181
|
+
disabledState: boolean;
|
|
182
|
+
hoveredState: boolean;
|
|
183
|
+
focusedState: boolean;
|
|
184
|
+
pressedState: boolean;
|
|
185
|
+
touchedState: boolean;
|
|
186
|
+
pointedState: boolean;
|
|
187
|
+
} & {
|
|
188
|
+
stateTargetElement: HTMLElement;
|
|
189
|
+
} & {
|
|
190
|
+
_ipcListener: EventListener;
|
|
191
|
+
_ipcTarget: EventTarget;
|
|
192
|
+
_files: FileList;
|
|
193
|
+
} & {
|
|
194
|
+
ariaControls: string;
|
|
195
|
+
autocomplete: string;
|
|
196
|
+
name: string;
|
|
197
|
+
readOnly: boolean;
|
|
198
|
+
formNoValidate: boolean;
|
|
199
|
+
defaultChecked: boolean;
|
|
200
|
+
_checkedDirty: boolean;
|
|
201
|
+
_checked: boolean;
|
|
202
|
+
required: boolean;
|
|
203
|
+
type: string;
|
|
204
|
+
_defaultValue: string;
|
|
205
|
+
_value: string;
|
|
206
|
+
_valueDirty: boolean;
|
|
207
|
+
_userInteracted: boolean;
|
|
208
|
+
_invalid: boolean;
|
|
209
|
+
_badInput: boolean;
|
|
210
|
+
_validationMessage: string;
|
|
211
|
+
_formDisabled: boolean;
|
|
212
|
+
_formReset: boolean;
|
|
213
|
+
} & {
|
|
214
|
+
erroredState: boolean;
|
|
215
|
+
defaultValue: string;
|
|
216
|
+
_valueBehavior: "default" | "value" | "default/on" | "filename";
|
|
217
|
+
} & {
|
|
218
|
+
_onSetValue(value: string): void;
|
|
219
|
+
_onSetChecked(checked: boolean): void;
|
|
220
|
+
} & {
|
|
221
|
+
value: string;
|
|
222
|
+
checked: boolean;
|
|
223
|
+
} & {
|
|
224
|
+
form: HTMLFormElement;
|
|
225
|
+
validity: ValidityState;
|
|
226
|
+
validationMessage: string;
|
|
227
|
+
willValidate: boolean;
|
|
228
|
+
labels: NodeList;
|
|
229
|
+
} & {
|
|
230
|
+
disabledState: boolean;
|
|
231
|
+
} & {
|
|
232
|
+
checkValidity(): boolean;
|
|
233
|
+
reportValidity(): boolean;
|
|
234
|
+
setCustomValidity(error: string): void;
|
|
235
|
+
_notifyRadioChange(key: string, value: string): void;
|
|
236
|
+
refreshFormAssociation(): void;
|
|
237
|
+
formAssociatedCallback(form: HTMLFormElement | null): void;
|
|
238
|
+
formIPCEvent(event: CustomEvent<[string, string]>): void;
|
|
239
|
+
formDisabledCallback(disabled: boolean): void;
|
|
240
|
+
formResetCallback(): void;
|
|
241
|
+
formStateRestoreCallback(state: string | FormData, mode: "autocomplete" | "restore"): void;
|
|
242
|
+
_updateFormAssociatedValue(): void;
|
|
243
|
+
} & {
|
|
244
|
+
color: string;
|
|
245
|
+
ink: string;
|
|
246
|
+
typeStyle: string;
|
|
247
|
+
} & {
|
|
248
|
+
shapeTop: boolean;
|
|
249
|
+
shapeBottom: boolean;
|
|
250
|
+
shapeStart: boolean;
|
|
251
|
+
shapeEnd: boolean;
|
|
252
|
+
shapeStyle: string;
|
|
253
|
+
outlined: boolean;
|
|
254
|
+
} & {
|
|
255
|
+
block: boolean;
|
|
256
|
+
inline: boolean;
|
|
257
|
+
row: boolean;
|
|
258
|
+
x: string;
|
|
259
|
+
y: string;
|
|
260
|
+
gap: number;
|
|
261
|
+
padding: string;
|
|
262
|
+
} & {
|
|
263
|
+
_ariaRole: string;
|
|
264
|
+
} & {
|
|
265
|
+
elevated: boolean;
|
|
266
|
+
filled: boolean;
|
|
267
|
+
actionable: boolean;
|
|
268
|
+
actionLabel: string;
|
|
269
|
+
onaction: EventListener;
|
|
270
|
+
} & {
|
|
271
|
+
stateTargetElement: HTMLElement;
|
|
272
|
+
}) => boolean>;
|
|
273
|
+
showButton: () => ReturnType<({ actionable, href }: import("../index.js").CustomElement & {
|
|
274
|
+
href: string;
|
|
275
|
+
target: string;
|
|
276
|
+
download: string;
|
|
277
|
+
ping: string;
|
|
278
|
+
rel: string;
|
|
279
|
+
hreflang: string;
|
|
280
|
+
referrerPolicy: string;
|
|
281
|
+
} & {
|
|
282
|
+
origin: string;
|
|
283
|
+
protocol: string;
|
|
284
|
+
username: string;
|
|
285
|
+
password: string;
|
|
286
|
+
host: string;
|
|
287
|
+
hostname: string;
|
|
288
|
+
port: string;
|
|
289
|
+
pathname: string;
|
|
290
|
+
search: string;
|
|
291
|
+
hash: string;
|
|
292
|
+
} & object & {
|
|
293
|
+
delegatesFocus: boolean;
|
|
294
|
+
} & {
|
|
295
|
+
_ariaRole: string;
|
|
296
|
+
} & {
|
|
297
|
+
onConnectAriaValues: Map<string, string>;
|
|
298
|
+
hasFiredConnected: boolean;
|
|
299
|
+
} & {
|
|
300
|
+
readAriaProperty(name: keyof HTMLElement & keyof ElementInternals): string | ShadowRoot;
|
|
301
|
+
updateAriaProperty(name: keyof HTMLElement & keyof ElementInternals, value: string): void;
|
|
302
|
+
} & {
|
|
303
|
+
disabled: boolean;
|
|
304
|
+
focused: boolean;
|
|
305
|
+
hovered: boolean;
|
|
306
|
+
pressed: boolean;
|
|
307
|
+
_lastInteraction: "key" | "mouse" | "touch" | "pen";
|
|
308
|
+
_hovered: boolean;
|
|
309
|
+
_focused: boolean;
|
|
310
|
+
_focusedSynthetic: boolean;
|
|
311
|
+
_keyPressed: boolean;
|
|
312
|
+
_keyReleased: boolean;
|
|
313
|
+
_pointerPressed: boolean;
|
|
314
|
+
stateLayer: boolean;
|
|
315
|
+
} & {
|
|
316
|
+
disabledState: boolean;
|
|
317
|
+
hoveredState: boolean;
|
|
318
|
+
focusedState: boolean;
|
|
319
|
+
pressedState: boolean;
|
|
320
|
+
touchedState: boolean;
|
|
321
|
+
pointedState: boolean;
|
|
322
|
+
} & {
|
|
323
|
+
stateTargetElement: HTMLElement;
|
|
324
|
+
} & {
|
|
325
|
+
_ipcListener: EventListener;
|
|
326
|
+
_ipcTarget: EventTarget;
|
|
327
|
+
_files: FileList;
|
|
328
|
+
} & {
|
|
329
|
+
ariaControls: string;
|
|
330
|
+
autocomplete: string;
|
|
331
|
+
name: string;
|
|
332
|
+
readOnly: boolean;
|
|
333
|
+
formNoValidate: boolean;
|
|
334
|
+
defaultChecked: boolean;
|
|
335
|
+
_checkedDirty: boolean;
|
|
336
|
+
_checked: boolean;
|
|
337
|
+
required: boolean;
|
|
338
|
+
type: string;
|
|
339
|
+
_defaultValue: string;
|
|
340
|
+
_value: string;
|
|
341
|
+
_valueDirty: boolean;
|
|
342
|
+
_userInteracted: boolean;
|
|
343
|
+
_invalid: boolean;
|
|
344
|
+
_badInput: boolean;
|
|
345
|
+
_validationMessage: string;
|
|
346
|
+
_formDisabled: boolean;
|
|
347
|
+
_formReset: boolean;
|
|
348
|
+
} & {
|
|
349
|
+
erroredState: boolean;
|
|
350
|
+
defaultValue: string;
|
|
351
|
+
_valueBehavior: "default" | "value" | "default/on" | "filename";
|
|
352
|
+
} & {
|
|
353
|
+
_onSetValue(value: string): void;
|
|
354
|
+
_onSetChecked(checked: boolean): void;
|
|
355
|
+
} & {
|
|
356
|
+
value: string;
|
|
357
|
+
checked: boolean;
|
|
358
|
+
} & {
|
|
359
|
+
form: HTMLFormElement;
|
|
360
|
+
validity: ValidityState;
|
|
361
|
+
validationMessage: string;
|
|
362
|
+
willValidate: boolean;
|
|
363
|
+
labels: NodeList;
|
|
364
|
+
} & {
|
|
365
|
+
disabledState: boolean;
|
|
366
|
+
} & {
|
|
367
|
+
checkValidity(): boolean;
|
|
368
|
+
reportValidity(): boolean;
|
|
369
|
+
setCustomValidity(error: string): void;
|
|
370
|
+
_notifyRadioChange(key: string, value: string): void;
|
|
371
|
+
refreshFormAssociation(): void;
|
|
372
|
+
formAssociatedCallback(form: HTMLFormElement | null): void;
|
|
373
|
+
formIPCEvent(event: CustomEvent<[string, string]>): void;
|
|
374
|
+
formDisabledCallback(disabled: boolean): void;
|
|
375
|
+
formResetCallback(): void;
|
|
376
|
+
formStateRestoreCallback(state: string | FormData, mode: "autocomplete" | "restore"): void;
|
|
377
|
+
_updateFormAssociatedValue(): void;
|
|
378
|
+
} & {
|
|
379
|
+
color: string;
|
|
380
|
+
ink: string;
|
|
381
|
+
typeStyle: string;
|
|
382
|
+
} & {
|
|
383
|
+
shapeTop: boolean;
|
|
384
|
+
shapeBottom: boolean;
|
|
385
|
+
shapeStart: boolean;
|
|
386
|
+
shapeEnd: boolean;
|
|
387
|
+
shapeStyle: string;
|
|
388
|
+
outlined: boolean;
|
|
389
|
+
} & {
|
|
390
|
+
block: boolean;
|
|
391
|
+
inline: boolean;
|
|
392
|
+
row: boolean;
|
|
393
|
+
x: string;
|
|
394
|
+
y: string;
|
|
395
|
+
gap: number;
|
|
396
|
+
padding: string;
|
|
397
|
+
} & {
|
|
398
|
+
_ariaRole: string;
|
|
399
|
+
} & {
|
|
400
|
+
elevated: boolean;
|
|
401
|
+
filled: boolean;
|
|
402
|
+
actionable: boolean;
|
|
403
|
+
actionLabel: string;
|
|
404
|
+
onaction: EventListener;
|
|
405
|
+
} & {
|
|
406
|
+
stateTargetElement: HTMLElement;
|
|
407
|
+
}) => boolean>;
|
|
408
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
409
|
+
focus(): void;
|
|
410
|
+
}, any[]>;
|
|
411
|
+
export default _default;
|
|
412
|
+
//# sourceMappingURL=Card.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../../components/Card.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
declare const _default: typeof CustomElement & import("../core/CustomElement.js").Class<{
|
|
2
|
+
delegatesFocus: boolean;
|
|
3
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
4
|
+
disabled: boolean;
|
|
5
|
+
focused: boolean;
|
|
6
|
+
hovered: boolean;
|
|
7
|
+
pressed: boolean;
|
|
8
|
+
_lastInteraction: "key" | "mouse" | "touch" | "pen";
|
|
9
|
+
_hovered: boolean;
|
|
10
|
+
_focused: boolean;
|
|
11
|
+
_focusedSynthetic: boolean;
|
|
12
|
+
_keyPressed: boolean;
|
|
13
|
+
_keyReleased: boolean;
|
|
14
|
+
_pointerPressed: boolean;
|
|
15
|
+
stateLayer: boolean;
|
|
16
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
17
|
+
disabledState: boolean;
|
|
18
|
+
hoveredState: boolean;
|
|
19
|
+
focusedState: boolean;
|
|
20
|
+
pressedState: boolean;
|
|
21
|
+
touchedState: boolean;
|
|
22
|
+
pointedState: boolean;
|
|
23
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
24
|
+
stateTargetElement: HTMLElement;
|
|
25
|
+
}, any[]> & {
|
|
26
|
+
formAssociated: true;
|
|
27
|
+
} & import("../core/CustomElement.js").Class<{
|
|
28
|
+
_ipcListener: EventListener;
|
|
29
|
+
_ipcTarget: EventTarget;
|
|
30
|
+
_files: FileList;
|
|
31
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
32
|
+
ariaControls: string;
|
|
33
|
+
autocomplete: string;
|
|
34
|
+
name: string;
|
|
35
|
+
readOnly: boolean;
|
|
36
|
+
formNoValidate: boolean;
|
|
37
|
+
defaultChecked: boolean;
|
|
38
|
+
_checkedDirty: boolean;
|
|
39
|
+
_checked: boolean;
|
|
40
|
+
required: boolean;
|
|
41
|
+
type: string;
|
|
42
|
+
_defaultValue: string;
|
|
43
|
+
_value: string;
|
|
44
|
+
_valueDirty: boolean;
|
|
45
|
+
_userInteracted: boolean;
|
|
46
|
+
_invalid: boolean;
|
|
47
|
+
_badInput: boolean;
|
|
48
|
+
_validationMessage: string;
|
|
49
|
+
_formDisabled: boolean;
|
|
50
|
+
_formReset: boolean;
|
|
51
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
52
|
+
erroredState: boolean;
|
|
53
|
+
defaultValue: string;
|
|
54
|
+
_valueBehavior: "default" | "value" | "default/on" | "filename";
|
|
55
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
56
|
+
_onSetValue(value: string): void;
|
|
57
|
+
_onSetChecked(checked: boolean): void;
|
|
58
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
59
|
+
value: string;
|
|
60
|
+
checked: boolean;
|
|
61
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
62
|
+
form: HTMLFormElement;
|
|
63
|
+
validity: ValidityState;
|
|
64
|
+
validationMessage: string;
|
|
65
|
+
willValidate: boolean;
|
|
66
|
+
labels: NodeList;
|
|
67
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
68
|
+
disabledState: boolean;
|
|
69
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
70
|
+
checkValidity(): boolean;
|
|
71
|
+
reportValidity(): boolean;
|
|
72
|
+
setCustomValidity(error: string): void;
|
|
73
|
+
_notifyRadioChange(key: string, value: string): void;
|
|
74
|
+
refreshFormAssociation(): void;
|
|
75
|
+
formAssociatedCallback(form: HTMLFormElement | null): void;
|
|
76
|
+
formIPCEvent(event: CustomEvent<[string, string]>): void;
|
|
77
|
+
formDisabledCallback(disabled: boolean): void;
|
|
78
|
+
formResetCallback(): void;
|
|
79
|
+
formStateRestoreCallback(state: string | FormData, mode: "autocomplete" | "restore"): void;
|
|
80
|
+
_updateFormAssociatedValue(): void;
|
|
81
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
82
|
+
ariaLabel: string;
|
|
83
|
+
_slotInnerText: string;
|
|
84
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
85
|
+
focusableOnDisabled: boolean;
|
|
86
|
+
controlTagName: string;
|
|
87
|
+
controlVoidElement: boolean;
|
|
88
|
+
_slotMutationObserver: any;
|
|
89
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
90
|
+
_onControlValue(value: string): void;
|
|
91
|
+
onValueChangingContentAttribute(): void;
|
|
92
|
+
focus(options?: FocusOptions): void;
|
|
93
|
+
click(): void;
|
|
94
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
95
|
+
stateTargetElement: HTMLElement;
|
|
96
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
97
|
+
checkValidity(): boolean;
|
|
98
|
+
reportValidity(): boolean;
|
|
99
|
+
setCustomValidity(error: string): void;
|
|
100
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
101
|
+
_computedAriaLabel: string;
|
|
102
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
103
|
+
_computedAriaLabelledby: never;
|
|
104
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
105
|
+
accept: string;
|
|
106
|
+
alt: string;
|
|
107
|
+
dirName: string;
|
|
108
|
+
_formAction: string;
|
|
109
|
+
formEnctype: string;
|
|
110
|
+
formMethod: string;
|
|
111
|
+
formTarget: string;
|
|
112
|
+
_height: number;
|
|
113
|
+
_indeterminate: boolean;
|
|
114
|
+
max: string;
|
|
115
|
+
maxLength: number;
|
|
116
|
+
min: string;
|
|
117
|
+
minLength: number;
|
|
118
|
+
multiple: boolean;
|
|
119
|
+
pattern: string;
|
|
120
|
+
placeholder: string;
|
|
121
|
+
size: number;
|
|
122
|
+
src: string;
|
|
123
|
+
step: string;
|
|
124
|
+
_width: number;
|
|
125
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
126
|
+
_useFormImplicitSubmission: boolean;
|
|
127
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
128
|
+
_input: HTMLInputElement;
|
|
129
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
130
|
+
indeterminate: boolean;
|
|
131
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
132
|
+
controlTagName: string;
|
|
133
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
134
|
+
_onSetChecked(checked: boolean): void;
|
|
135
|
+
_onSetValue(value: string): void;
|
|
136
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
137
|
+
performImplicitSubmission(event: Event): void;
|
|
138
|
+
_redispatchControlClickEvent(event: Event): boolean;
|
|
139
|
+
_handleInputClick(event: MouseEvent): void;
|
|
140
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
141
|
+
setRangeText(replacement: string): void;
|
|
142
|
+
setRangeText(replacement: string, start: number, end: number, selectionMode?: SelectionMode): void;
|
|
143
|
+
setSelectionRange(start: number | null, end: number | null, direction?: "forward" | "backward" | "none"): void;
|
|
144
|
+
showPicker(): void;
|
|
145
|
+
stepDown(n?: number): void;
|
|
146
|
+
stepUp(n?: number): void;
|
|
147
|
+
select(): void;
|
|
148
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
149
|
+
files: FileList;
|
|
150
|
+
selectionDirection: "none" | "forward" | "backward";
|
|
151
|
+
selectionEnd: number;
|
|
152
|
+
selectionStart: number;
|
|
153
|
+
valueAsDate: Date;
|
|
154
|
+
valueAsNumber: number;
|
|
155
|
+
height: number;
|
|
156
|
+
formAction: string;
|
|
157
|
+
width: number;
|
|
158
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
159
|
+
_lastRippleWeakRef: WeakRef<InstanceType<import("../mixins/RippleMixin.js").Ripple>>;
|
|
160
|
+
_rippleAdded: boolean;
|
|
161
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
162
|
+
_lastRipple: CustomElement & {
|
|
163
|
+
hadRippleHeld: boolean;
|
|
164
|
+
hadRippleReleased: boolean;
|
|
165
|
+
rippleStarted: boolean;
|
|
166
|
+
} & {
|
|
167
|
+
rippleState: string;
|
|
168
|
+
keepAlive: boolean;
|
|
169
|
+
_positionX: number;
|
|
170
|
+
_positionY: number;
|
|
171
|
+
_radius: number;
|
|
172
|
+
holdRipple: boolean;
|
|
173
|
+
} & {
|
|
174
|
+
_positionStyle: import("../core/customTypes.js").ElementStylerOptions | {
|
|
175
|
+
styles: {
|
|
176
|
+
minHeight: string;
|
|
177
|
+
minWidth: string;
|
|
178
|
+
boxShadow: string;
|
|
179
|
+
top: string;
|
|
180
|
+
left: string;
|
|
181
|
+
};
|
|
182
|
+
};
|
|
183
|
+
} & {
|
|
184
|
+
updatePosition(x?: number, y?: number, size?: number): void;
|
|
185
|
+
handleRippleComplete(): void;
|
|
186
|
+
};
|
|
187
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
188
|
+
addRipple(x?: number, y?: number, hold?: boolean): InstanceType<Ripple>;
|
|
189
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
190
|
+
color: string;
|
|
191
|
+
ink: string;
|
|
192
|
+
typeStyle: string;
|
|
193
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
194
|
+
stateLayer: boolean;
|
|
195
|
+
type: string;
|
|
196
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
197
|
+
icon: string;
|
|
198
|
+
indeterminateIcon: string;
|
|
199
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
200
|
+
_determinateIcon: never;
|
|
201
|
+
_iconSelectedState: never;
|
|
202
|
+
}, any[]>;
|
|
203
|
+
export default _default;
|
|
204
|
+
import CustomElement from '../core/CustomElement.js';
|
|
205
|
+
//# sourceMappingURL=Checkbox.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../../components/Checkbox.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BAE0B,0BAA0B"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
declare const _default: typeof 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
|
+
selected: boolean;
|
|
36
|
+
icon: string;
|
|
37
|
+
errored: boolean;
|
|
38
|
+
disabled: boolean;
|
|
39
|
+
}, any[]> & import("../core/CustomElement.js").Class<{
|
|
40
|
+
checked: boolean;
|
|
41
|
+
}, any[]>;
|
|
42
|
+
export default _default;
|
|
43
|
+
import CustomElement from '../core/CustomElement.js';
|
|
44
|
+
//# sourceMappingURL=CheckboxIcon.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CheckboxIcon.d.ts","sourceRoot":"","sources":["../../components/CheckboxIcon.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BAC0B,0BAA0B"}
|