origam 2.2.1 → 2.3.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/CHANGELOG.md +224 -0
- package/README.md +22 -0
- package/dist/src/assets/css/tokens/dark.css +318 -0
- package/dist/src/assets/css/tokens/light.css +159 -0
- package/dist/src/assets/locales/index.js +2 -2
- package/dist/src/assets/scss/tokens/_dark.scss +159 -0
- package/dist/src/assets/scss/tokens/_light.scss +159 -0
- package/dist/src/components/Bracket/OrigamBracket.vue +530 -0
- package/dist/src/components/Bracket/OrigamBracketCompetitor.vue +210 -0
- package/dist/src/components/Bracket/OrigamBracketMatch.vue +288 -0
- package/dist/src/components/Bracket/OrigamBracketRound.vue +150 -0
- package/dist/src/components/Bracket/index.cjs +34 -0
- package/dist/src/components/Bracket/index.d.ts +4 -0
- package/dist/src/components/Bracket/index.js +4 -0
- package/dist/src/components/ClientOnly/OrigamClientOnly.vue +28 -0
- package/dist/src/components/ClientOnly/index.cjs +13 -0
- package/dist/src/components/ClientOnly/index.d.ts +1 -0
- package/dist/src/components/ClientOnly/index.js +1 -0
- package/dist/src/components/Code/OrigamCode.vue +449 -0
- package/dist/src/components/Code/index.cjs +13 -0
- package/dist/src/components/Code/index.d.ts +1 -0
- package/dist/src/components/Code/index.js +1 -0
- package/dist/src/components/ColorPickerField/OrigamColorPickerField.vue +1 -0
- package/dist/src/components/CommandPalette/OrigamCommandPalette.vue +614 -0
- package/dist/src/components/CommandPalette/index.cjs +13 -0
- package/dist/src/components/CommandPalette/index.d.ts +1 -0
- package/dist/src/components/CommandPalette/index.js +1 -0
- package/dist/src/components/DatePickerField/OrigamDatePickerField.vue +1 -0
- package/dist/src/components/Parallax/OrigamParallax.vue +65 -34
- package/dist/src/components/Parallax/OrigamParallaxLayer.vue +119 -0
- package/dist/src/components/Parallax/index.cjs +7 -0
- package/dist/src/components/Parallax/index.d.ts +1 -0
- package/dist/src/components/Parallax/index.js +1 -0
- package/dist/src/components/PasswordField/OrigamPasswordField.vue +1 -0
- package/dist/src/components/Select/OrigamSelect.vue +1 -0
- package/dist/src/components/SnackbarStack/OrigamSnackbarStack.vue +457 -0
- package/dist/src/components/SnackbarStack/index.cjs +13 -0
- package/dist/src/components/SnackbarStack/index.d.ts +1 -0
- package/dist/src/components/SnackbarStack/index.js +1 -0
- package/dist/src/components/Tabs/OrigamTab.vue +263 -0
- package/dist/src/components/Tabs/OrigamTabPanel.vue +112 -0
- package/dist/src/components/Tabs/OrigamTabPanels.vue +139 -0
- package/dist/src/components/Tabs/OrigamTabs.vue +242 -0
- package/dist/src/components/Tabs/index.cjs +34 -0
- package/dist/src/components/Tabs/index.d.ts +4 -0
- package/dist/src/components/Tabs/index.js +4 -0
- package/dist/src/components/TextField/OrigamTextField.vue +75 -5
- package/dist/src/components/TextareaField/OrigamRichToolbar.vue +284 -0
- package/dist/src/components/TextareaField/OrigamTextareaField.vue +192 -5
- package/dist/src/components/TextareaField/index.cjs +7 -0
- package/dist/src/components/TextareaField/index.d.ts +1 -0
- package/dist/src/components/TextareaField/index.js +1 -0
- package/dist/src/components/index.cjs +66 -0
- package/dist/src/components/index.d.ts +6 -0
- package/dist/src/components/index.js +6 -0
- package/dist/src/composables/Code/code.composable.cjs +98 -0
- package/dist/src/composables/Code/code.composable.d.ts +10 -0
- package/dist/src/composables/Code/code.composable.js +82 -0
- package/dist/src/composables/CommandPalette/command.composable.cjs +53 -0
- package/dist/src/composables/CommandPalette/command.composable.d.ts +37 -0
- package/dist/src/composables/CommandPalette/command.composable.js +46 -0
- package/dist/src/composables/Commons/virtual.composable.cjs +1 -0
- package/dist/src/composables/Commons/virtual.composable.js +1 -0
- package/dist/src/composables/CssSupport/cssSupport.composable.cjs +12 -0
- package/dist/src/composables/CssSupport/cssSupport.composable.d.ts +25 -0
- package/dist/src/composables/CssSupport/cssSupport.composable.js +10 -1
- package/dist/src/composables/DataTable/headers.composable.d.ts +36 -36
- package/dist/src/composables/Mask/index.cjs +16 -0
- package/dist/src/composables/Mask/index.d.ts +1 -0
- package/dist/src/composables/Mask/index.js +1 -0
- package/dist/src/composables/Mask/mask.composable.cjs +57 -0
- package/dist/src/composables/Mask/mask.composable.d.ts +39 -0
- package/dist/src/composables/Mask/mask.composable.js +51 -0
- package/dist/src/composables/Parallax/parallax.composable.cjs +232 -0
- package/dist/src/composables/Parallax/parallax.composable.d.ts +60 -0
- package/dist/src/composables/Parallax/parallax.composable.js +219 -0
- package/dist/src/composables/Responsive/aspect.composable.cjs +6 -1
- package/dist/src/composables/Responsive/aspect.composable.d.ts +10 -0
- package/dist/src/composables/Responsive/aspect.composable.js +6 -1
- package/dist/src/composables/SnackbarStack/snackbar-stack.composable.cjs +102 -0
- package/dist/src/composables/SnackbarStack/snackbar-stack.composable.d.ts +58 -0
- package/dist/src/composables/SnackbarStack/snackbar-stack.composable.js +92 -0
- package/dist/src/composables/Textarea/textarea-rich.composable.cjs +263 -0
- package/dist/src/composables/Textarea/textarea-rich.composable.d.ts +41 -0
- package/dist/src/composables/Textarea/textarea-rich.composable.js +257 -0
- package/dist/src/composables/index.cjs +66 -0
- package/dist/src/composables/index.d.ts +6 -0
- package/dist/src/composables/index.js +6 -0
- package/dist/src/consts/Bracket/bracket.const.cjs +12 -0
- package/dist/src/consts/Bracket/bracket.const.d.ts +34 -0
- package/dist/src/consts/Bracket/bracket.const.js +15 -0
- package/dist/src/consts/Code/code.const.cjs +26 -0
- package/dist/src/consts/Code/code.const.d.ts +40 -0
- package/dist/src/consts/Code/code.const.js +35 -0
- package/dist/src/consts/CommandPalette/command-palette.const.cjs +10 -0
- package/dist/src/consts/CommandPalette/command-palette.const.d.ts +16 -0
- package/dist/src/consts/CommandPalette/command-palette.const.js +7 -0
- package/dist/src/consts/Mask/built-in-patterns.const.cjs +66 -0
- package/dist/src/consts/Mask/built-in-patterns.const.d.ts +20 -0
- package/dist/src/consts/Mask/built-in-patterns.const.js +60 -0
- package/dist/src/consts/Parallax/parallax-layer.const.cjs +7 -0
- package/dist/src/consts/Parallax/parallax-layer.const.d.ts +3 -0
- package/dist/src/consts/Parallax/parallax-layer.const.js +1 -0
- package/dist/src/consts/SnackbarStack/snackbar-stack.const.cjs +12 -0
- package/dist/src/consts/SnackbarStack/snackbar-stack.const.d.ts +33 -0
- package/dist/src/consts/SnackbarStack/snackbar-stack.const.js +18 -0
- package/dist/src/consts/Tabs/tabs.const.cjs +9 -0
- package/dist/src/consts/Tabs/tabs.const.d.ts +23 -0
- package/dist/src/consts/Tabs/tabs.const.js +3 -0
- package/dist/src/consts/Textarea/textarea.const.cjs +28 -0
- package/dist/src/consts/Textarea/textarea.const.d.ts +38 -0
- package/dist/src/consts/Textarea/textarea.const.js +65 -0
- package/dist/src/consts/Theme/theme.const.cjs +15 -0
- package/dist/src/consts/Theme/theme.const.d.ts +9 -0
- package/dist/src/consts/Theme/theme.const.js +9 -0
- package/dist/src/consts/index.cjs +99 -0
- package/dist/src/consts/index.d.ts +9 -0
- package/dist/src/consts/index.js +9 -0
- package/dist/src/enums/Bracket/bracket-match-status.enum.cjs +13 -0
- package/dist/src/enums/Bracket/bracket-match-status.enum.d.ts +6 -0
- package/dist/src/enums/Bracket/bracket-match-status.enum.js +7 -0
- package/dist/src/enums/Bracket/bracket-variant.enum.cjs +12 -0
- package/dist/src/enums/Bracket/bracket-variant.enum.d.ts +5 -0
- package/dist/src/enums/Bracket/bracket-variant.enum.js +6 -0
- package/dist/src/enums/Code/code-lang.enum.cjs +23 -0
- package/dist/src/enums/Code/code-lang.enum.d.ts +25 -0
- package/dist/src/enums/Code/code-lang.enum.js +17 -0
- package/dist/src/enums/Code/code-theme.enum.cjs +12 -0
- package/dist/src/enums/Code/code-theme.enum.d.ts +12 -0
- package/dist/src/enums/Code/code-theme.enum.js +6 -0
- package/dist/src/enums/Mask/mask.enum.cjs +28 -0
- package/dist/src/enums/Mask/mask.enum.d.ts +36 -0
- package/dist/src/enums/Mask/mask.enum.js +22 -0
- package/dist/src/enums/Parallax/parallax-direction.enum.cjs +12 -0
- package/dist/src/enums/Parallax/parallax-direction.enum.d.ts +5 -0
- package/dist/src/enums/Parallax/parallax-direction.enum.js +6 -0
- package/dist/src/enums/Parallax/parallax-easing.enum.cjs +12 -0
- package/dist/src/enums/Parallax/parallax-easing.enum.d.ts +5 -0
- package/dist/src/enums/Parallax/parallax-easing.enum.js +6 -0
- package/dist/src/enums/Tabs/tab-variant.enum.cjs +12 -0
- package/dist/src/enums/Tabs/tab-variant.enum.d.ts +5 -0
- package/dist/src/enums/Tabs/tab-variant.enum.js +6 -0
- package/dist/src/enums/Textarea/textarea-mode.enum.cjs +11 -0
- package/dist/src/enums/Textarea/textarea-mode.enum.d.ts +13 -0
- package/dist/src/enums/Textarea/textarea-mode.enum.js +5 -0
- package/dist/src/enums/Textarea/textarea-output.enum.cjs +11 -0
- package/dist/src/enums/Textarea/textarea-output.enum.d.ts +14 -0
- package/dist/src/enums/Textarea/textarea-output.enum.js +5 -0
- package/dist/src/enums/Textarea/textarea-toolbar-command.enum.cjs +21 -0
- package/dist/src/enums/Textarea/textarea-toolbar-command.enum.d.ts +20 -0
- package/dist/src/enums/Textarea/textarea-toolbar-command.enum.js +15 -0
- package/dist/src/enums/Textarea/textarea-toolbar-position.enum.cjs +12 -0
- package/dist/src/enums/Textarea/textarea-toolbar-position.enum.d.ts +10 -0
- package/dist/src/enums/Textarea/textarea-toolbar-position.enum.js +6 -0
- package/dist/src/enums/index.cjs +132 -0
- package/dist/src/enums/index.d.ts +12 -0
- package/dist/src/enums/index.js +12 -0
- package/dist/src/interfaces/Bracket/bracket-competitor-component.interface.cjs +1 -0
- package/dist/src/interfaces/Bracket/bracket-competitor-component.interface.d.ts +53 -0
- package/dist/src/interfaces/Bracket/bracket-competitor-component.interface.js +0 -0
- package/dist/src/interfaces/Bracket/bracket-competitor.interface.cjs +1 -0
- package/dist/src/interfaces/Bracket/bracket-competitor.interface.d.ts +25 -0
- package/dist/src/interfaces/Bracket/bracket-competitor.interface.js +0 -0
- package/dist/src/interfaces/Bracket/bracket-match-component.interface.cjs +1 -0
- package/dist/src/interfaces/Bracket/bracket-match-component.interface.d.ts +45 -0
- package/dist/src/interfaces/Bracket/bracket-match-component.interface.js +0 -0
- package/dist/src/interfaces/Bracket/bracket-match.interface.cjs +1 -0
- package/dist/src/interfaces/Bracket/bracket-match.interface.d.ts +51 -0
- package/dist/src/interfaces/Bracket/bracket-match.interface.js +0 -0
- package/dist/src/interfaces/Bracket/bracket-round-component.interface.cjs +1 -0
- package/dist/src/interfaces/Bracket/bracket-round-component.interface.d.ts +26 -0
- package/dist/src/interfaces/Bracket/bracket-round-component.interface.js +0 -0
- package/dist/src/interfaces/Bracket/bracket-round.interface.cjs +1 -0
- package/dist/src/interfaces/Bracket/bracket-round.interface.d.ts +27 -0
- package/dist/src/interfaces/Bracket/bracket-round.interface.js +0 -0
- package/dist/src/interfaces/Bracket/bracket.interface.cjs +1 -0
- package/dist/src/interfaces/Bracket/bracket.interface.d.ts +71 -0
- package/dist/src/interfaces/Bracket/bracket.interface.js +0 -0
- package/dist/src/interfaces/Code/code.interface.cjs +1 -0
- package/dist/src/interfaces/Code/code.interface.d.ts +99 -0
- package/dist/src/interfaces/Code/code.interface.js +0 -0
- package/dist/src/interfaces/CommandPalette/command-palette.interface.cjs +1 -0
- package/dist/src/interfaces/CommandPalette/command-palette.interface.d.ts +57 -0
- package/dist/src/interfaces/CommandPalette/command-palette.interface.js +0 -0
- package/dist/src/interfaces/CommandPalette/command.interface.cjs +1 -0
- package/dist/src/interfaces/CommandPalette/command.interface.d.ts +51 -0
- package/dist/src/interfaces/CommandPalette/command.interface.js +0 -0
- package/dist/src/interfaces/Mask/mask-options.interface.cjs +1 -0
- package/dist/src/interfaces/Mask/mask-options.interface.d.ts +48 -0
- package/dist/src/interfaces/Mask/mask-options.interface.js +0 -0
- package/dist/src/interfaces/Nuxt/nuxt-module.interface.cjs +1 -0
- package/dist/src/interfaces/Nuxt/nuxt-module.interface.d.ts +73 -0
- package/dist/src/interfaces/Nuxt/nuxt-module.interface.js +0 -0
- package/dist/src/interfaces/Parallax/parallax-layer.interface.cjs +1 -0
- package/dist/src/interfaces/Parallax/parallax-layer.interface.d.ts +39 -0
- package/dist/src/interfaces/Parallax/parallax-layer.interface.js +0 -0
- package/dist/src/interfaces/Parallax/parallax.interface.d.ts +83 -3
- package/dist/src/interfaces/SnackbarStack/snackbar-stack-item.interface.cjs +1 -0
- package/dist/src/interfaces/SnackbarStack/snackbar-stack-item.interface.d.ts +60 -0
- package/dist/src/interfaces/SnackbarStack/snackbar-stack-item.interface.js +0 -0
- package/dist/src/interfaces/SnackbarStack/snackbar-stack.interface.cjs +1 -0
- package/dist/src/interfaces/SnackbarStack/snackbar-stack.interface.d.ts +60 -0
- package/dist/src/interfaces/SnackbarStack/snackbar-stack.interface.js +0 -0
- package/dist/src/interfaces/Tabs/tab-panel.interface.cjs +1 -0
- package/dist/src/interfaces/Tabs/tab-panel.interface.d.ts +12 -0
- package/dist/src/interfaces/Tabs/tab-panel.interface.js +0 -0
- package/dist/src/interfaces/Tabs/tab-panels.interface.cjs +1 -0
- package/dist/src/interfaces/Tabs/tab-panels.interface.d.ts +28 -0
- package/dist/src/interfaces/Tabs/tab-panels.interface.js +0 -0
- package/dist/src/interfaces/Tabs/tab.interface.cjs +1 -0
- package/dist/src/interfaces/Tabs/tab.interface.d.ts +18 -0
- package/dist/src/interfaces/Tabs/tab.interface.js +0 -0
- package/dist/src/interfaces/Tabs/tabs.interface.cjs +1 -0
- package/dist/src/interfaces/Tabs/tabs.interface.d.ts +26 -0
- package/dist/src/interfaces/Tabs/tabs.interface.js +0 -0
- package/dist/src/interfaces/TextField/text-field.interface.d.ts +21 -1
- package/dist/src/interfaces/Textarea/textarea-rich.interface.cjs +1 -0
- package/dist/src/interfaces/Textarea/textarea-rich.interface.d.ts +41 -0
- package/dist/src/interfaces/Textarea/textarea-rich.interface.js +0 -0
- package/dist/src/interfaces/Textarea/textarea-toolbar.interface.cjs +1 -0
- package/dist/src/interfaces/Textarea/textarea-toolbar.interface.d.ts +31 -0
- package/dist/src/interfaces/Textarea/textarea-toolbar.interface.js +0 -0
- package/dist/src/interfaces/TextareaField/textarea-field.interface.d.ts +38 -1
- package/dist/src/interfaces/index.cjs +231 -0
- package/dist/src/interfaces/index.d.ts +21 -0
- package/dist/src/interfaces/index.js +21 -0
- package/dist/src/nuxt/index.cjs +13 -0
- package/dist/src/nuxt/index.d.ts +2 -0
- package/dist/src/nuxt/index.js +1 -0
- package/dist/src/nuxt/module.cjs +74 -0
- package/dist/src/nuxt/module.d.ts +31 -0
- package/dist/src/nuxt/module.js +68 -0
- package/dist/src/nuxt/plugin.client.cjs +44 -0
- package/dist/src/nuxt/plugin.client.d.ts +2 -0
- package/dist/src/nuxt/plugin.client.js +36 -0
- package/dist/src/nuxt/plugin.server.cjs +51 -0
- package/dist/src/nuxt/plugin.server.d.ts +2 -0
- package/dist/src/nuxt/plugin.server.js +45 -0
- package/dist/src/types/Bracket/bracket-direction.type.cjs +1 -0
- package/dist/src/types/Bracket/bracket-direction.type.d.ts +13 -0
- package/dist/src/types/Bracket/bracket-direction.type.js +0 -0
- package/dist/src/types/Bracket/bracket-match-status.type.cjs +1 -0
- package/dist/src/types/Bracket/bracket-match-status.type.d.ts +2 -0
- package/dist/src/types/Bracket/bracket-match-status.type.js +0 -0
- package/dist/src/types/Bracket/bracket-round-side.type.cjs +1 -0
- package/dist/src/types/Bracket/bracket-round-side.type.d.ts +12 -0
- package/dist/src/types/Bracket/bracket-round-side.type.js +0 -0
- package/dist/src/types/Bracket/bracket-variant.type.cjs +1 -0
- package/dist/src/types/Bracket/bracket-variant.type.d.ts +2 -0
- package/dist/src/types/Bracket/bracket-variant.type.js +0 -0
- package/dist/src/types/Code/code-lang.type.cjs +1 -0
- package/dist/src/types/Code/code-lang.type.d.ts +2 -0
- package/dist/src/types/Code/code-lang.type.js +0 -0
- package/dist/src/types/Code/code-theme.type.cjs +1 -0
- package/dist/src/types/Code/code-theme.type.d.ts +2 -0
- package/dist/src/types/Code/code-theme.type.js +0 -0
- package/dist/src/types/CommandPalette/command-palette-hotkey.type.cjs +1 -0
- package/dist/src/types/CommandPalette/command-palette-hotkey.type.d.ts +5 -0
- package/dist/src/types/CommandPalette/command-palette-hotkey.type.js +0 -0
- package/dist/src/types/Mask/built-in-pattern.type.cjs +1 -0
- package/dist/src/types/Mask/built-in-pattern.type.d.ts +7 -0
- package/dist/src/types/Mask/built-in-pattern.type.js +0 -0
- package/dist/src/types/Mask/mask.type.cjs +1 -0
- package/dist/src/types/Mask/mask.type.d.ts +19 -0
- package/dist/src/types/Mask/mask.type.js +0 -0
- package/dist/src/types/Mask/pattern-validator.type.cjs +1 -0
- package/dist/src/types/Mask/pattern-validator.type.d.ts +16 -0
- package/dist/src/types/Mask/pattern-validator.type.js +0 -0
- package/dist/src/types/Parallax/parallax-direction.type.cjs +1 -0
- package/dist/src/types/Parallax/parallax-direction.type.d.ts +2 -0
- package/dist/src/types/Parallax/parallax-direction.type.js +0 -0
- package/dist/src/types/Parallax/parallax-easing.type.cjs +1 -0
- package/dist/src/types/Parallax/parallax-easing.type.d.ts +2 -0
- package/dist/src/types/Parallax/parallax-easing.type.js +0 -0
- package/dist/src/types/SnackbarStack/snackbar-stack-direction.type.cjs +1 -0
- package/dist/src/types/SnackbarStack/snackbar-stack-direction.type.d.ts +11 -0
- package/dist/src/types/SnackbarStack/snackbar-stack-direction.type.js +0 -0
- package/dist/src/types/SnackbarStack/snackbar-stack-location.type.cjs +1 -0
- package/dist/src/types/SnackbarStack/snackbar-stack-location.type.d.ts +9 -0
- package/dist/src/types/SnackbarStack/snackbar-stack-location.type.js +0 -0
- package/dist/src/types/SnackbarStack/snackbar-stack.type.cjs +1 -0
- package/dist/src/types/SnackbarStack/snackbar-stack.type.d.ts +2 -0
- package/dist/src/types/SnackbarStack/snackbar-stack.type.js +0 -0
- package/dist/src/types/Tabs/tab-panel.type.cjs +1 -0
- package/dist/src/types/Tabs/tab-panel.type.d.ts +2 -0
- package/dist/src/types/Tabs/tab-panel.type.js +0 -0
- package/dist/src/types/Tabs/tab-panels.type.cjs +1 -0
- package/dist/src/types/Tabs/tab-panels.type.d.ts +2 -0
- package/dist/src/types/Tabs/tab-panels.type.js +0 -0
- package/dist/src/types/Tabs/tab-variant.type.cjs +1 -0
- package/dist/src/types/Tabs/tab-variant.type.d.ts +2 -0
- package/dist/src/types/Tabs/tab-variant.type.js +0 -0
- package/dist/src/types/Tabs/tab.type.cjs +1 -0
- package/dist/src/types/Tabs/tab.type.d.ts +2 -0
- package/dist/src/types/Tabs/tab.type.js +0 -0
- package/dist/src/types/Tabs/tabs.type.cjs +1 -0
- package/dist/src/types/Tabs/tabs.type.d.ts +2 -0
- package/dist/src/types/Tabs/tabs.type.js +0 -0
- package/dist/src/types/Textarea/textarea-mode.type.cjs +1 -0
- package/dist/src/types/Textarea/textarea-mode.type.d.ts +2 -0
- package/dist/src/types/Textarea/textarea-mode.type.js +0 -0
- package/dist/src/types/Textarea/textarea-output.type.cjs +1 -0
- package/dist/src/types/Textarea/textarea-output.type.d.ts +2 -0
- package/dist/src/types/Textarea/textarea-output.type.js +0 -0
- package/dist/src/types/Textarea/textarea-toolbar-command.type.cjs +1 -0
- package/dist/src/types/Textarea/textarea-toolbar-command.type.d.ts +2 -0
- package/dist/src/types/Textarea/textarea-toolbar-command.type.js +0 -0
- package/dist/src/types/Textarea/textarea-toolbar-position.type.cjs +1 -0
- package/dist/src/types/Textarea/textarea-toolbar-position.type.d.ts +2 -0
- package/dist/src/types/Textarea/textarea-toolbar-position.type.js +0 -0
- package/dist/src/types/index.cjs +264 -0
- package/dist/src/types/index.d.ts +24 -0
- package/dist/src/types/index.js +24 -0
- package/dist/src/types/tokens.type.d.ts +1 -1
- package/dist/src/utils/Code/parse-highlight-lines.util.cjs +34 -0
- package/dist/src/utils/Code/parse-highlight-lines.util.d.ts +24 -0
- package/dist/src/utils/Code/parse-highlight-lines.util.js +28 -0
- package/dist/src/utils/CommandPalette/fuzzy-match.util.cjs +84 -0
- package/dist/src/utils/CommandPalette/fuzzy-match.util.d.ts +51 -0
- package/dist/src/utils/CommandPalette/fuzzy-match.util.js +62 -0
- package/dist/src/utils/Mask/apply-mask.util.cjs +120 -0
- package/dist/src/utils/Mask/apply-mask.util.d.ts +13 -0
- package/dist/src/utils/Mask/apply-mask.util.js +91 -0
- package/dist/src/utils/Mask/index.cjs +38 -0
- package/dist/src/utils/Mask/index.d.ts +3 -0
- package/dist/src/utils/Mask/index.js +3 -0
- package/dist/src/utils/Mask/resolve-mask-config.util.cjs +31 -0
- package/dist/src/utils/Mask/resolve-mask-config.util.d.ts +15 -0
- package/dist/src/utils/Mask/resolve-mask-config.util.js +21 -0
- package/dist/src/utils/Mask/validate-pattern.util.cjs +92 -0
- package/dist/src/utils/Mask/validate-pattern.util.d.ts +41 -0
- package/dist/src/utils/Mask/validate-pattern.util.js +81 -0
- package/dist/src/utils/Textarea/html-to-markdown.util.cjs +85 -0
- package/dist/src/utils/Textarea/html-to-markdown.util.d.ts +21 -0
- package/dist/src/utils/Textarea/html-to-markdown.util.js +78 -0
- package/dist/src/utils/Textarea/sanitize-html.util.cjs +82 -0
- package/dist/src/utils/Textarea/sanitize-html.util.d.ts +17 -0
- package/dist/src/utils/Textarea/sanitize-html.util.js +83 -0
- package/dist/src/utils/index.cjs +77 -0
- package/dist/src/utils/index.d.ts +7 -0
- package/dist/src/utils/index.js +7 -0
- package/package.json +13 -3
- package/dist/src/globals.d.ts +0 -172
- package/dist/src/shims.d.ts +0 -36
- package/dist/src/vite-env.d.ts +0 -1
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
File without changes
|
package/dist/src/types/index.cjs
CHANGED
|
@@ -69,6 +69,50 @@ Object.keys(_bottomNav).forEach(function (key) {
|
|
|
69
69
|
}
|
|
70
70
|
});
|
|
71
71
|
});
|
|
72
|
+
var _bracketVariant = require("./Bracket/bracket-variant.type.cjs");
|
|
73
|
+
Object.keys(_bracketVariant).forEach(function (key) {
|
|
74
|
+
if (key === "default" || key === "__esModule") return;
|
|
75
|
+
if (key in exports && exports[key] === _bracketVariant[key]) return;
|
|
76
|
+
Object.defineProperty(exports, key, {
|
|
77
|
+
enumerable: true,
|
|
78
|
+
get: function () {
|
|
79
|
+
return _bracketVariant[key];
|
|
80
|
+
}
|
|
81
|
+
});
|
|
82
|
+
});
|
|
83
|
+
var _bracketDirection = require("./Bracket/bracket-direction.type.cjs");
|
|
84
|
+
Object.keys(_bracketDirection).forEach(function (key) {
|
|
85
|
+
if (key === "default" || key === "__esModule") return;
|
|
86
|
+
if (key in exports && exports[key] === _bracketDirection[key]) return;
|
|
87
|
+
Object.defineProperty(exports, key, {
|
|
88
|
+
enumerable: true,
|
|
89
|
+
get: function () {
|
|
90
|
+
return _bracketDirection[key];
|
|
91
|
+
}
|
|
92
|
+
});
|
|
93
|
+
});
|
|
94
|
+
var _bracketMatchStatus = require("./Bracket/bracket-match-status.type.cjs");
|
|
95
|
+
Object.keys(_bracketMatchStatus).forEach(function (key) {
|
|
96
|
+
if (key === "default" || key === "__esModule") return;
|
|
97
|
+
if (key in exports && exports[key] === _bracketMatchStatus[key]) return;
|
|
98
|
+
Object.defineProperty(exports, key, {
|
|
99
|
+
enumerable: true,
|
|
100
|
+
get: function () {
|
|
101
|
+
return _bracketMatchStatus[key];
|
|
102
|
+
}
|
|
103
|
+
});
|
|
104
|
+
});
|
|
105
|
+
var _bracketRoundSide = require("./Bracket/bracket-round-side.type.cjs");
|
|
106
|
+
Object.keys(_bracketRoundSide).forEach(function (key) {
|
|
107
|
+
if (key === "default" || key === "__esModule") return;
|
|
108
|
+
if (key in exports && exports[key] === _bracketRoundSide[key]) return;
|
|
109
|
+
Object.defineProperty(exports, key, {
|
|
110
|
+
enumerable: true,
|
|
111
|
+
get: function () {
|
|
112
|
+
return _bracketRoundSide[key];
|
|
113
|
+
}
|
|
114
|
+
});
|
|
115
|
+
});
|
|
72
116
|
var _breadcrumb = require("./Breadcrumb/breadcrumb.type.cjs");
|
|
73
117
|
Object.keys(_breadcrumb).forEach(function (key) {
|
|
74
118
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -245,6 +289,28 @@ Object.keys(_chipGroup).forEach(function (key) {
|
|
|
245
289
|
}
|
|
246
290
|
});
|
|
247
291
|
});
|
|
292
|
+
var _codeLang = require("./Code/code-lang.type.cjs");
|
|
293
|
+
Object.keys(_codeLang).forEach(function (key) {
|
|
294
|
+
if (key === "default" || key === "__esModule") return;
|
|
295
|
+
if (key in exports && exports[key] === _codeLang[key]) return;
|
|
296
|
+
Object.defineProperty(exports, key, {
|
|
297
|
+
enumerable: true,
|
|
298
|
+
get: function () {
|
|
299
|
+
return _codeLang[key];
|
|
300
|
+
}
|
|
301
|
+
});
|
|
302
|
+
});
|
|
303
|
+
var _codeTheme = require("./Code/code-theme.type.cjs");
|
|
304
|
+
Object.keys(_codeTheme).forEach(function (key) {
|
|
305
|
+
if (key === "default" || key === "__esModule") return;
|
|
306
|
+
if (key in exports && exports[key] === _codeTheme[key]) return;
|
|
307
|
+
Object.defineProperty(exports, key, {
|
|
308
|
+
enumerable: true,
|
|
309
|
+
get: function () {
|
|
310
|
+
return _codeTheme[key];
|
|
311
|
+
}
|
|
312
|
+
});
|
|
313
|
+
});
|
|
248
314
|
var _colorPicker = require("./ColorPicker/color-picker.type.cjs");
|
|
249
315
|
Object.keys(_colorPicker).forEach(function (key) {
|
|
250
316
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -1444,6 +1510,28 @@ Object.keys(_parallaxElement).forEach(function (key) {
|
|
|
1444
1510
|
}
|
|
1445
1511
|
});
|
|
1446
1512
|
});
|
|
1513
|
+
var _parallaxDirection = require("./Parallax/parallax-direction.type.cjs");
|
|
1514
|
+
Object.keys(_parallaxDirection).forEach(function (key) {
|
|
1515
|
+
if (key === "default" || key === "__esModule") return;
|
|
1516
|
+
if (key in exports && exports[key] === _parallaxDirection[key]) return;
|
|
1517
|
+
Object.defineProperty(exports, key, {
|
|
1518
|
+
enumerable: true,
|
|
1519
|
+
get: function () {
|
|
1520
|
+
return _parallaxDirection[key];
|
|
1521
|
+
}
|
|
1522
|
+
});
|
|
1523
|
+
});
|
|
1524
|
+
var _parallaxEasing = require("./Parallax/parallax-easing.type.cjs");
|
|
1525
|
+
Object.keys(_parallaxEasing).forEach(function (key) {
|
|
1526
|
+
if (key === "default" || key === "__esModule") return;
|
|
1527
|
+
if (key in exports && exports[key] === _parallaxEasing[key]) return;
|
|
1528
|
+
Object.defineProperty(exports, key, {
|
|
1529
|
+
enumerable: true,
|
|
1530
|
+
get: function () {
|
|
1531
|
+
return _parallaxEasing[key];
|
|
1532
|
+
}
|
|
1533
|
+
});
|
|
1534
|
+
});
|
|
1447
1535
|
var _passwordField = require("./PasswordField/password-field.type.cjs");
|
|
1448
1536
|
Object.keys(_passwordField).forEach(function (key) {
|
|
1449
1537
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -1697,6 +1785,50 @@ Object.keys(_snackbar).forEach(function (key) {
|
|
|
1697
1785
|
}
|
|
1698
1786
|
});
|
|
1699
1787
|
});
|
|
1788
|
+
var _snackbarStack = require("./SnackbarStack/snackbar-stack.type.cjs");
|
|
1789
|
+
Object.keys(_snackbarStack).forEach(function (key) {
|
|
1790
|
+
if (key === "default" || key === "__esModule") return;
|
|
1791
|
+
if (key in exports && exports[key] === _snackbarStack[key]) return;
|
|
1792
|
+
Object.defineProperty(exports, key, {
|
|
1793
|
+
enumerable: true,
|
|
1794
|
+
get: function () {
|
|
1795
|
+
return _snackbarStack[key];
|
|
1796
|
+
}
|
|
1797
|
+
});
|
|
1798
|
+
});
|
|
1799
|
+
var _snackbarStackLocation = require("./SnackbarStack/snackbar-stack-location.type.cjs");
|
|
1800
|
+
Object.keys(_snackbarStackLocation).forEach(function (key) {
|
|
1801
|
+
if (key === "default" || key === "__esModule") return;
|
|
1802
|
+
if (key in exports && exports[key] === _snackbarStackLocation[key]) return;
|
|
1803
|
+
Object.defineProperty(exports, key, {
|
|
1804
|
+
enumerable: true,
|
|
1805
|
+
get: function () {
|
|
1806
|
+
return _snackbarStackLocation[key];
|
|
1807
|
+
}
|
|
1808
|
+
});
|
|
1809
|
+
});
|
|
1810
|
+
var _snackbarStackDirection = require("./SnackbarStack/snackbar-stack-direction.type.cjs");
|
|
1811
|
+
Object.keys(_snackbarStackDirection).forEach(function (key) {
|
|
1812
|
+
if (key === "default" || key === "__esModule") return;
|
|
1813
|
+
if (key in exports && exports[key] === _snackbarStackDirection[key]) return;
|
|
1814
|
+
Object.defineProperty(exports, key, {
|
|
1815
|
+
enumerable: true,
|
|
1816
|
+
get: function () {
|
|
1817
|
+
return _snackbarStackDirection[key];
|
|
1818
|
+
}
|
|
1819
|
+
});
|
|
1820
|
+
});
|
|
1821
|
+
var _commandPaletteHotkey = require("./CommandPalette/command-palette-hotkey.type.cjs");
|
|
1822
|
+
Object.keys(_commandPaletteHotkey).forEach(function (key) {
|
|
1823
|
+
if (key === "default" || key === "__esModule") return;
|
|
1824
|
+
if (key in exports && exports[key] === _commandPaletteHotkey[key]) return;
|
|
1825
|
+
Object.defineProperty(exports, key, {
|
|
1826
|
+
enumerable: true,
|
|
1827
|
+
get: function () {
|
|
1828
|
+
return _commandPaletteHotkey[key];
|
|
1829
|
+
}
|
|
1830
|
+
});
|
|
1831
|
+
});
|
|
1700
1832
|
var _switch = require("./Switch/switch.type.cjs");
|
|
1701
1833
|
Object.keys(_switch).forEach(function (key) {
|
|
1702
1834
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -1741,6 +1873,50 @@ Object.keys(_textareaField).forEach(function (key) {
|
|
|
1741
1873
|
}
|
|
1742
1874
|
});
|
|
1743
1875
|
});
|
|
1876
|
+
var _textareaMode = require("./Textarea/textarea-mode.type.cjs");
|
|
1877
|
+
Object.keys(_textareaMode).forEach(function (key) {
|
|
1878
|
+
if (key === "default" || key === "__esModule") return;
|
|
1879
|
+
if (key in exports && exports[key] === _textareaMode[key]) return;
|
|
1880
|
+
Object.defineProperty(exports, key, {
|
|
1881
|
+
enumerable: true,
|
|
1882
|
+
get: function () {
|
|
1883
|
+
return _textareaMode[key];
|
|
1884
|
+
}
|
|
1885
|
+
});
|
|
1886
|
+
});
|
|
1887
|
+
var _textareaOutput = require("./Textarea/textarea-output.type.cjs");
|
|
1888
|
+
Object.keys(_textareaOutput).forEach(function (key) {
|
|
1889
|
+
if (key === "default" || key === "__esModule") return;
|
|
1890
|
+
if (key in exports && exports[key] === _textareaOutput[key]) return;
|
|
1891
|
+
Object.defineProperty(exports, key, {
|
|
1892
|
+
enumerable: true,
|
|
1893
|
+
get: function () {
|
|
1894
|
+
return _textareaOutput[key];
|
|
1895
|
+
}
|
|
1896
|
+
});
|
|
1897
|
+
});
|
|
1898
|
+
var _textareaToolbarCommand = require("./Textarea/textarea-toolbar-command.type.cjs");
|
|
1899
|
+
Object.keys(_textareaToolbarCommand).forEach(function (key) {
|
|
1900
|
+
if (key === "default" || key === "__esModule") return;
|
|
1901
|
+
if (key in exports && exports[key] === _textareaToolbarCommand[key]) return;
|
|
1902
|
+
Object.defineProperty(exports, key, {
|
|
1903
|
+
enumerable: true,
|
|
1904
|
+
get: function () {
|
|
1905
|
+
return _textareaToolbarCommand[key];
|
|
1906
|
+
}
|
|
1907
|
+
});
|
|
1908
|
+
});
|
|
1909
|
+
var _textareaToolbarPosition = require("./Textarea/textarea-toolbar-position.type.cjs");
|
|
1910
|
+
Object.keys(_textareaToolbarPosition).forEach(function (key) {
|
|
1911
|
+
if (key === "default" || key === "__esModule") return;
|
|
1912
|
+
if (key in exports && exports[key] === _textareaToolbarPosition[key]) return;
|
|
1913
|
+
Object.defineProperty(exports, key, {
|
|
1914
|
+
enumerable: true,
|
|
1915
|
+
get: function () {
|
|
1916
|
+
return _textareaToolbarPosition[key];
|
|
1917
|
+
}
|
|
1918
|
+
});
|
|
1919
|
+
});
|
|
1744
1920
|
var _textField = require("./TextField/text-field.type.cjs");
|
|
1745
1921
|
Object.keys(_textField).forEach(function (key) {
|
|
1746
1922
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -1961,6 +2137,61 @@ Object.keys(_virtualScrollItem).forEach(function (key) {
|
|
|
1961
2137
|
}
|
|
1962
2138
|
});
|
|
1963
2139
|
});
|
|
2140
|
+
var _tabVariant = require("./Tabs/tab-variant.type.cjs");
|
|
2141
|
+
Object.keys(_tabVariant).forEach(function (key) {
|
|
2142
|
+
if (key === "default" || key === "__esModule") return;
|
|
2143
|
+
if (key in exports && exports[key] === _tabVariant[key]) return;
|
|
2144
|
+
Object.defineProperty(exports, key, {
|
|
2145
|
+
enumerable: true,
|
|
2146
|
+
get: function () {
|
|
2147
|
+
return _tabVariant[key];
|
|
2148
|
+
}
|
|
2149
|
+
});
|
|
2150
|
+
});
|
|
2151
|
+
var _tabs = require("./Tabs/tabs.type.cjs");
|
|
2152
|
+
Object.keys(_tabs).forEach(function (key) {
|
|
2153
|
+
if (key === "default" || key === "__esModule") return;
|
|
2154
|
+
if (key in exports && exports[key] === _tabs[key]) return;
|
|
2155
|
+
Object.defineProperty(exports, key, {
|
|
2156
|
+
enumerable: true,
|
|
2157
|
+
get: function () {
|
|
2158
|
+
return _tabs[key];
|
|
2159
|
+
}
|
|
2160
|
+
});
|
|
2161
|
+
});
|
|
2162
|
+
var _tab = require("./Tabs/tab.type.cjs");
|
|
2163
|
+
Object.keys(_tab).forEach(function (key) {
|
|
2164
|
+
if (key === "default" || key === "__esModule") return;
|
|
2165
|
+
if (key in exports && exports[key] === _tab[key]) return;
|
|
2166
|
+
Object.defineProperty(exports, key, {
|
|
2167
|
+
enumerable: true,
|
|
2168
|
+
get: function () {
|
|
2169
|
+
return _tab[key];
|
|
2170
|
+
}
|
|
2171
|
+
});
|
|
2172
|
+
});
|
|
2173
|
+
var _tabPanels = require("./Tabs/tab-panels.type.cjs");
|
|
2174
|
+
Object.keys(_tabPanels).forEach(function (key) {
|
|
2175
|
+
if (key === "default" || key === "__esModule") return;
|
|
2176
|
+
if (key in exports && exports[key] === _tabPanels[key]) return;
|
|
2177
|
+
Object.defineProperty(exports, key, {
|
|
2178
|
+
enumerable: true,
|
|
2179
|
+
get: function () {
|
|
2180
|
+
return _tabPanels[key];
|
|
2181
|
+
}
|
|
2182
|
+
});
|
|
2183
|
+
});
|
|
2184
|
+
var _tabPanel = require("./Tabs/tab-panel.type.cjs");
|
|
2185
|
+
Object.keys(_tabPanel).forEach(function (key) {
|
|
2186
|
+
if (key === "default" || key === "__esModule") return;
|
|
2187
|
+
if (key in exports && exports[key] === _tabPanel[key]) return;
|
|
2188
|
+
Object.defineProperty(exports, key, {
|
|
2189
|
+
enumerable: true,
|
|
2190
|
+
get: function () {
|
|
2191
|
+
return _tabPanel[key];
|
|
2192
|
+
}
|
|
2193
|
+
});
|
|
2194
|
+
});
|
|
1964
2195
|
var _window = require("./Window/window.type.cjs");
|
|
1965
2196
|
Object.keys(_window).forEach(function (key) {
|
|
1966
2197
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -2048,4 +2279,37 @@ Object.keys(_treeview).forEach(function (key) {
|
|
|
2048
2279
|
return _treeview[key];
|
|
2049
2280
|
}
|
|
2050
2281
|
});
|
|
2282
|
+
});
|
|
2283
|
+
var _builtInPattern = require("./Mask/built-in-pattern.type.cjs");
|
|
2284
|
+
Object.keys(_builtInPattern).forEach(function (key) {
|
|
2285
|
+
if (key === "default" || key === "__esModule") return;
|
|
2286
|
+
if (key in exports && exports[key] === _builtInPattern[key]) return;
|
|
2287
|
+
Object.defineProperty(exports, key, {
|
|
2288
|
+
enumerable: true,
|
|
2289
|
+
get: function () {
|
|
2290
|
+
return _builtInPattern[key];
|
|
2291
|
+
}
|
|
2292
|
+
});
|
|
2293
|
+
});
|
|
2294
|
+
var _patternValidator = require("./Mask/pattern-validator.type.cjs");
|
|
2295
|
+
Object.keys(_patternValidator).forEach(function (key) {
|
|
2296
|
+
if (key === "default" || key === "__esModule") return;
|
|
2297
|
+
if (key in exports && exports[key] === _patternValidator[key]) return;
|
|
2298
|
+
Object.defineProperty(exports, key, {
|
|
2299
|
+
enumerable: true,
|
|
2300
|
+
get: function () {
|
|
2301
|
+
return _patternValidator[key];
|
|
2302
|
+
}
|
|
2303
|
+
});
|
|
2304
|
+
});
|
|
2305
|
+
var _mask = require("./Mask/mask.type.cjs");
|
|
2306
|
+
Object.keys(_mask).forEach(function (key) {
|
|
2307
|
+
if (key === "default" || key === "__esModule") return;
|
|
2308
|
+
if (key in exports && exports[key] === _mask[key]) return;
|
|
2309
|
+
Object.defineProperty(exports, key, {
|
|
2310
|
+
enumerable: true,
|
|
2311
|
+
get: function () {
|
|
2312
|
+
return _mask[key];
|
|
2313
|
+
}
|
|
2314
|
+
});
|
|
2051
2315
|
});
|
|
@@ -4,6 +4,10 @@ export * from './App/app-bar.type';
|
|
|
4
4
|
export * from './Avatar/avatar.type';
|
|
5
5
|
export * from './Badge/badge.type';
|
|
6
6
|
export * from './BottomNav/bottom-nav.type';
|
|
7
|
+
export * from './Bracket/bracket-variant.type';
|
|
8
|
+
export * from './Bracket/bracket-direction.type';
|
|
9
|
+
export * from './Bracket/bracket-match-status.type';
|
|
10
|
+
export * from './Bracket/bracket-round-side.type';
|
|
7
11
|
export * from './Breadcrumb/breadcrumb.type';
|
|
8
12
|
export * from './Breadcrumb/breadcrumb-divider.type';
|
|
9
13
|
export * from './Breadcrumb/breadcrumb-item.type';
|
|
@@ -20,6 +24,8 @@ export * from './Checkbox/checkbox.type';
|
|
|
20
24
|
export * from './Checkbox/checkbox-btn.type';
|
|
21
25
|
export * from './Chip/chip.type';
|
|
22
26
|
export * from './Chip/chip-group.type';
|
|
27
|
+
export * from './Code/code-lang.type';
|
|
28
|
+
export * from './Code/code-theme.type';
|
|
23
29
|
export * from './ColorPicker/color-picker.type';
|
|
24
30
|
export * from './ColorPicker/color-picker-canvas.type';
|
|
25
31
|
export * from './ColorPicker/color-picker-preview.type';
|
|
@@ -129,6 +135,8 @@ export * from './Overlay/overlay-scrim.type';
|
|
|
129
135
|
export * from './Pagination/pagination.type';
|
|
130
136
|
export * from './Parallax/parallax.type';
|
|
131
137
|
export * from './Parallax/parallax-element.type';
|
|
138
|
+
export * from './Parallax/parallax-direction.type';
|
|
139
|
+
export * from './Parallax/parallax-easing.type';
|
|
132
140
|
export * from './PasswordField/password-field.type';
|
|
133
141
|
export * from './PasswordField/password-strength.type';
|
|
134
142
|
export * from './Picker/picker.type';
|
|
@@ -152,10 +160,18 @@ export * from './SliderField/slider-field.type';
|
|
|
152
160
|
export * from './SliderField/slider-field-track.type';
|
|
153
161
|
export * from './SliderField/slider-field-thumb.type';
|
|
154
162
|
export * from './Snackbar/snackbar.type';
|
|
163
|
+
export * from './SnackbarStack/snackbar-stack.type';
|
|
164
|
+
export * from './SnackbarStack/snackbar-stack-location.type';
|
|
165
|
+
export * from './SnackbarStack/snackbar-stack-direction.type';
|
|
166
|
+
export * from './CommandPalette/command-palette-hotkey.type';
|
|
155
167
|
export * from './Switch/switch.type';
|
|
156
168
|
export * from './Switch/switch-track.type';
|
|
157
169
|
export * from './Table/table.type';
|
|
158
170
|
export * from './TextareaField/textarea-field.type';
|
|
171
|
+
export * from './Textarea/textarea-mode.type';
|
|
172
|
+
export * from './Textarea/textarea-output.type';
|
|
173
|
+
export * from './Textarea/textarea-toolbar-command.type';
|
|
174
|
+
export * from './Textarea/textarea-toolbar-position.type';
|
|
159
175
|
export * from './TextField/text-field.type';
|
|
160
176
|
export * from './Title/title.type';
|
|
161
177
|
export * from './Toolbar/toolbar.type';
|
|
@@ -176,6 +192,11 @@ export * from './Transition/window-y-reverse-translate.type';
|
|
|
176
192
|
export * from './Transition/window-y-translate.type';
|
|
177
193
|
export * from './VirtualScroll/virtual-scroll.type';
|
|
178
194
|
export * from './VirtualScroll/virtual-scroll-item.type';
|
|
195
|
+
export * from './Tabs/tab-variant.type';
|
|
196
|
+
export * from './Tabs/tabs.type';
|
|
197
|
+
export * from './Tabs/tab.type';
|
|
198
|
+
export * from './Tabs/tab-panels.type';
|
|
199
|
+
export * from './Tabs/tab-panel.type';
|
|
179
200
|
export * from './Window/window.type';
|
|
180
201
|
export * from './Theme/theme.type';
|
|
181
202
|
export * from './Window/window-item.type';
|
|
@@ -184,3 +205,6 @@ export * from './Kbd/kbd.type';
|
|
|
184
205
|
export * from './Stepper/stepper.type';
|
|
185
206
|
export * from './Timeline/timeline.type';
|
|
186
207
|
export * from './Treeview/treeview.type';
|
|
208
|
+
export * from './Mask/built-in-pattern.type';
|
|
209
|
+
export * from './Mask/pattern-validator.type';
|
|
210
|
+
export * from './Mask/mask.type';
|
package/dist/src/types/index.js
CHANGED
|
@@ -4,6 +4,10 @@ export * from "./App/app-bar.type.js";
|
|
|
4
4
|
export * from "./Avatar/avatar.type.js";
|
|
5
5
|
export * from "./Badge/badge.type.js";
|
|
6
6
|
export * from "./BottomNav/bottom-nav.type.js";
|
|
7
|
+
export * from "./Bracket/bracket-variant.type.js";
|
|
8
|
+
export * from "./Bracket/bracket-direction.type.js";
|
|
9
|
+
export * from "./Bracket/bracket-match-status.type.js";
|
|
10
|
+
export * from "./Bracket/bracket-round-side.type.js";
|
|
7
11
|
export * from "./Breadcrumb/breadcrumb.type.js";
|
|
8
12
|
export * from "./Breadcrumb/breadcrumb-divider.type.js";
|
|
9
13
|
export * from "./Breadcrumb/breadcrumb-item.type.js";
|
|
@@ -20,6 +24,8 @@ export * from "./Checkbox/checkbox.type.js";
|
|
|
20
24
|
export * from "./Checkbox/checkbox-btn.type.js";
|
|
21
25
|
export * from "./Chip/chip.type.js";
|
|
22
26
|
export * from "./Chip/chip-group.type.js";
|
|
27
|
+
export * from "./Code/code-lang.type.js";
|
|
28
|
+
export * from "./Code/code-theme.type.js";
|
|
23
29
|
export * from "./ColorPicker/color-picker.type.js";
|
|
24
30
|
export * from "./ColorPicker/color-picker-canvas.type.js";
|
|
25
31
|
export * from "./ColorPicker/color-picker-preview.type.js";
|
|
@@ -129,6 +135,8 @@ export * from "./Overlay/overlay-scrim.type.js";
|
|
|
129
135
|
export * from "./Pagination/pagination.type.js";
|
|
130
136
|
export * from "./Parallax/parallax.type.js";
|
|
131
137
|
export * from "./Parallax/parallax-element.type.js";
|
|
138
|
+
export * from "./Parallax/parallax-direction.type.js";
|
|
139
|
+
export * from "./Parallax/parallax-easing.type.js";
|
|
132
140
|
export * from "./PasswordField/password-field.type.js";
|
|
133
141
|
export * from "./PasswordField/password-strength.type.js";
|
|
134
142
|
export * from "./Picker/picker.type.js";
|
|
@@ -152,10 +160,18 @@ export * from "./SliderField/slider-field.type.js";
|
|
|
152
160
|
export * from "./SliderField/slider-field-track.type.js";
|
|
153
161
|
export * from "./SliderField/slider-field-thumb.type.js";
|
|
154
162
|
export * from "./Snackbar/snackbar.type.js";
|
|
163
|
+
export * from "./SnackbarStack/snackbar-stack.type.js";
|
|
164
|
+
export * from "./SnackbarStack/snackbar-stack-location.type.js";
|
|
165
|
+
export * from "./SnackbarStack/snackbar-stack-direction.type.js";
|
|
166
|
+
export * from "./CommandPalette/command-palette-hotkey.type.js";
|
|
155
167
|
export * from "./Switch/switch.type.js";
|
|
156
168
|
export * from "./Switch/switch-track.type.js";
|
|
157
169
|
export * from "./Table/table.type.js";
|
|
158
170
|
export * from "./TextareaField/textarea-field.type.js";
|
|
171
|
+
export * from "./Textarea/textarea-mode.type.js";
|
|
172
|
+
export * from "./Textarea/textarea-output.type.js";
|
|
173
|
+
export * from "./Textarea/textarea-toolbar-command.type.js";
|
|
174
|
+
export * from "./Textarea/textarea-toolbar-position.type.js";
|
|
159
175
|
export * from "./TextField/text-field.type.js";
|
|
160
176
|
export * from "./Title/title.type.js";
|
|
161
177
|
export * from "./Toolbar/toolbar.type.js";
|
|
@@ -176,6 +192,11 @@ export * from "./Transition/window-y-reverse-translate.type.js";
|
|
|
176
192
|
export * from "./Transition/window-y-translate.type.js";
|
|
177
193
|
export * from "./VirtualScroll/virtual-scroll.type.js";
|
|
178
194
|
export * from "./VirtualScroll/virtual-scroll-item.type.js";
|
|
195
|
+
export * from "./Tabs/tab-variant.type.js";
|
|
196
|
+
export * from "./Tabs/tabs.type.js";
|
|
197
|
+
export * from "./Tabs/tab.type.js";
|
|
198
|
+
export * from "./Tabs/tab-panels.type.js";
|
|
199
|
+
export * from "./Tabs/tab-panel.type.js";
|
|
179
200
|
export * from "./Window/window.type.js";
|
|
180
201
|
export * from "./Theme/theme.type.js";
|
|
181
202
|
export * from "./Window/window-item.type.js";
|
|
@@ -184,3 +205,6 @@ export * from "./Kbd/kbd.type.js";
|
|
|
184
205
|
export * from "./Stepper/stepper.type.js";
|
|
185
206
|
export * from "./Timeline/timeline.type.js";
|
|
186
207
|
export * from "./Treeview/treeview.type.js";
|
|
208
|
+
export * from "./Mask/built-in-pattern.type.js";
|
|
209
|
+
export * from "./Mask/pattern-validator.type.js";
|
|
210
|
+
export * from "./Mask/mask.type.js";
|