@iress-oss/ids-components 6.0.0-alpha.0 → 6.0.0-alpha.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 +1 -1
- package/dist/Autocomplete-CLvWVHp6.js +358 -0
- package/dist/{Button-BXzmntRi.js → Button-D6AL0bia.js} +86 -85
- package/dist/Provider-BXQiO7Gp.js +64 -0
- package/dist/{TableProvider-D8SQKIG8.js → TableProvider-_4Whj6P5.js} +11 -11
- package/dist/components/Alert/Alert.js +34 -35
- package/dist/components/Alert/Alert.styles.js +1 -1
- package/dist/components/Alert/index.js +4 -5
- package/dist/components/Autocomplete/Autocomplete.js +17 -82
- package/dist/components/Autocomplete/Autocomplete.styles.js +1 -1
- package/dist/components/Autocomplete/hooks/useAutocompleteSearch.js +36 -35
- package/dist/components/Autocomplete/index.js +6 -4
- package/dist/components/Badge/Badge.js +3 -3
- package/dist/components/Badge/Badge.styles.js +1 -1
- package/dist/components/Button/Button.js +3 -3
- package/dist/components/Button/CloseButton/CloseButton.js +1 -1
- package/dist/components/Button/index.js +1 -1
- package/dist/components/ButtonGroup/ButtonGroup.js +1 -1
- package/dist/components/ButtonGroup/ButtonGroup.styles.js +1 -1
- package/dist/components/ButtonGroup/hooks/useButtonGroupItem.js +11 -12
- package/dist/components/Card/Card.js +2 -2
- package/dist/components/Card/Card.styles.js +1 -1
- package/dist/components/Checkbox/Checkbox.js +85 -86
- package/dist/components/Checkbox/Checkbox.styles.js +1 -1
- package/dist/components/CheckboxGroup/CheckboxGroup.js +69 -74
- package/dist/components/CheckboxGroup/CheckboxGroup.styles.js +1 -1
- package/dist/components/CheckboxMark/CheckboxMark.js +2 -2
- package/dist/components/CheckboxMark/CheckboxMark.styles.js +2 -2
- package/dist/components/Col/Col.js +1 -1
- package/dist/components/Col/Col.styles.js +1 -1
- package/dist/components/Container/Container.js +1 -1
- package/dist/components/Container/Container.styles.js +3 -2
- package/dist/components/Divider/Divider.js +2 -2
- package/dist/components/Divider/Divider.styles.js +1 -1
- package/dist/components/Expander/Expander.js +46 -41
- package/dist/components/Expander/Expander.styles.js +2 -2
- package/dist/components/Field/Field.js +55 -54
- package/dist/components/Field/Field.styles.js +10 -3
- package/dist/components/Field/FieldGroup/FieldGroup.js +40 -40
- package/dist/components/Field/FieldGroup/FieldGroup.styles.js +1 -1
- package/dist/components/Field/components/FieldFooter.js +32 -32
- package/dist/components/Field/components/FieldHint.js +2 -2
- package/dist/components/Filter/Filter.js +213 -100
- package/dist/components/Filter/Filter.styles.js +1 -1
- package/dist/components/Filter/components/FilterResetButton.js +17 -18
- package/dist/components/Filter/components/FilterResultsDescriptor.js +6 -6
- package/dist/components/Filter/components/FilterSearch.js +18 -19
- package/dist/components/Filter/index.js +2 -2
- package/dist/components/Hide/Hide.js +1 -1
- package/dist/components/Icon/Icon.js +1 -1
- package/dist/components/Icon/Icon.styles.js +1 -1
- package/dist/components/Image/Image.js +1 -1
- package/dist/components/Image/Image.styles.js +1 -1
- package/dist/components/Inline/Inline.js +1 -1
- package/dist/components/Inline/Inline.styles.js +1 -1
- package/dist/components/Input/Input.js +98 -102
- package/dist/components/Input/Input.styles.js +1 -1
- package/dist/components/Input/InputBase/InputBase.js +23 -23
- package/dist/components/Label/Label.styles.js +1 -1
- package/dist/components/Label/LabelBase/LabelBase.js +32 -32
- package/dist/components/Link/Link.js +50 -51
- package/dist/components/Link/Link.styles.js +2 -1
- package/dist/components/Menu/Menu.js +51 -51
- package/dist/components/Menu/Menu.styles.js +1 -1
- package/dist/components/Menu/MenuDivider/MenuDivider.js +13 -13
- package/dist/components/Menu/MenuItem/MenuItem.js +144 -146
- package/dist/components/Menu/MenuItem/hooks/useMenuItemRole.js +5 -5
- package/dist/components/Menu/MenuText/MenuText.js +38 -38
- package/dist/components/Modal/Modal.js +119 -123
- package/dist/components/Modal/Modal.styles.js +15 -6
- package/dist/components/Modal/ModalProvider.js +20 -22
- package/dist/components/Modal/hooks/useModal.js +9 -7
- package/dist/components/Modal/hooks/useProviderModal.js +8 -8
- package/dist/components/Modal/index.js +7 -6
- package/dist/components/Panel/Panel.js +1 -1
- package/dist/components/Panel/Panel.styles.js +1 -1
- package/dist/components/Placeholder/Placeholder.js +14 -14
- package/dist/components/Placeholder/Placeholder.styles.js +1 -1
- package/dist/components/Popover/InputPopover/InputPopover.js +89 -14
- package/dist/components/Popover/InputPopover/InputPopoverActivator.js +31 -34
- package/dist/components/Popover/Popover.js +44 -43
- package/dist/components/Popover/Popover.styles.js +2 -2
- package/dist/components/Popover/components/NestedPopoverActivator.js +1 -1
- package/dist/components/Popover/components/PopoverActivator.js +48 -53
- package/dist/components/Popover/components/PopoverContent.js +33 -33
- package/dist/components/Popover/helpers/composeFloatingProps.js +23 -26
- package/dist/components/Popover/helpers/handlePopoverTabKey.js +11 -14
- package/dist/components/Popover/hooks/usePopover.js +79 -75
- package/dist/components/Popover/hooks/usePopoverActivatorInteractions.js +23 -26
- package/dist/components/Popover/hooks/usePopoverItem.js +16 -17
- package/dist/components/Popover/hooks/usePopoverNavigation.js +22 -22
- package/dist/components/Popover/index.js +6 -6
- package/dist/components/Progress/Progress.js +4 -4
- package/dist/components/Progress/Progress.styles.js +1 -1
- package/dist/components/Provider/Provider.js +12 -35
- package/dist/components/Provider/index.js +1 -1
- package/dist/components/Radio/Radio.js +79 -80
- package/dist/components/Radio/Radio.styles.js +1 -1
- package/dist/components/RadioGroup/RadioGroup.js +69 -77
- package/dist/components/RadioGroup/RadioGroup.styles.js +1 -1
- package/dist/components/Readonly/Readonly.js +44 -43
- package/dist/components/Readonly/Readonly.styles.js +8 -13
- package/dist/components/RichSelect/RichSelect.js +21 -86
- package/dist/components/RichSelect/RichSelect.styles.js +1 -1
- package/dist/components/RichSelect/SelectBody/SelectBody.js +23 -117
- package/dist/components/RichSelect/SelectBody/SelectBody.styles.js +1 -1
- package/dist/components/RichSelect/SelectCreate/SelectCreate.js +25 -114
- package/dist/components/RichSelect/SelectHeading/SelectHeading.js +67 -97
- package/dist/components/RichSelect/SelectLabel/SelectLabel.js +19 -19
- package/dist/components/RichSelect/SelectLabel/SelectLabel.styles.js +1 -1
- package/dist/components/RichSelect/SelectMenu/SelectMenu.js +69 -69
- package/dist/components/RichSelect/SelectMenu/SelectMenu.styles.js +1 -1
- package/dist/components/RichSelect/SelectMenu/SelectMenuItem.js +52 -46
- package/dist/components/RichSelect/SelectSearch/SelectSearch.js +43 -98
- package/dist/components/RichSelect/SelectSearch/SelectSearch.styles.js +1 -1
- package/dist/components/RichSelect/SelectSearchInput/SelectSearchInput.js +31 -32
- package/dist/components/RichSelect/SelectSearchInput/SelectSearchInput.styles.js +1 -1
- package/dist/components/RichSelect/SelectTags/SelectTags.js +161 -105
- package/dist/components/RichSelect/SelectTags/SelectTags.styles.js +1 -1
- package/dist/components/RichSelect/components/SelectActivator.js +63 -6
- package/dist/components/RichSelect/components/SelectOptions.js +201 -95
- package/dist/components/RichSelect/index.js +18 -15
- package/dist/components/Row/Row.js +1 -1
- package/dist/components/Row/Row.styles.js +1 -1
- package/dist/components/Select/Select.js +71 -71
- package/dist/components/Select/Select.styles.js +1 -1
- package/dist/components/Select/SelectOption/SelectOption.js +1 -1
- package/dist/components/Select/components/SelectControl.js +1 -1
- package/dist/components/Select/components/SelectReadonly.js +30 -33
- package/dist/components/Select/helpers/nodesToSelectOptions.js +19 -20
- package/dist/components/Skeleton/Skeleton.styles.js +1 -1
- package/dist/components/SkipLink/SkipLink.js +1 -1
- package/dist/components/SkipLink/SkipLink.styles.js +2 -2
- package/dist/components/Slideout/Slideout.js +155 -160
- package/dist/components/Slideout/Slideout.styles.js +1 -1
- package/dist/components/Slideout/SlideoutProvider.js +18 -20
- package/dist/components/Slideout/components/SlideoutInner.js +3 -3
- package/dist/components/Slideout/hooks/useProviderSlideout.js +8 -8
- package/dist/components/Slideout/hooks/usePushElement.js +27 -27
- package/dist/components/Slideout/hooks/useSlideout.js +11 -9
- package/dist/components/Slideout/index.js +7 -6
- package/dist/components/Slider/Slider.js +76 -76
- package/dist/components/Slider/Slider.styles.js +1 -1
- package/dist/components/Slider/components/SliderTicks.js +15 -16
- package/dist/components/Spinner/Spinner.styles.js +1 -1
- package/dist/components/Stack/Stack.js +1 -1
- package/dist/components/Stack/Stack.styles.js +3 -3
- package/dist/components/TabSet/Tab/Tab.js +88 -88
- package/dist/components/TabSet/Tab/Tab.styles.js +1 -1
- package/dist/components/TabSet/TabSet.js +69 -59
- package/dist/components/TabSet/TabSet.styles.js +1 -1
- package/dist/components/TabSet/TabSetProvider.js +43 -43
- package/dist/components/Table/Table.js +39 -39
- package/dist/components/Table/Table.styles.js +10 -8
- package/dist/components/Table/TableBody/TableBody.js +76 -76
- package/dist/components/Table/TableFormattedValue/TableFormattedValue.js +8 -18
- package/dist/components/Table/TableProvider.js +2 -2
- package/dist/components/Table/components/TableEmpty.js +8 -8
- package/dist/components/Table/components/TableHeader.js +31 -32
- package/dist/components/Table/components/TableHeaderCell.js +23 -24
- package/dist/components/Table/components/TableRows.js +38 -38
- package/dist/components/Table/components/TableSortButton.js +6 -6
- package/dist/components/Table/helpers/composeTableColumnDefs.js +1 -1
- package/dist/components/Table/helpers/composeTableInitialSorting.js +4 -4
- package/dist/components/Table/hooks/useTableColumnSort.js +12 -12
- package/dist/components/Table/hooks/useTableColumnStyles.js +13 -14
- package/dist/components/Table/index.js +2 -3
- package/dist/components/Tag/Tag.js +29 -32
- package/dist/components/Tag/Tag.styles.js +1 -2
- package/dist/components/Tag/TagInput/TagInput.js +120 -104
- package/dist/components/Tag/TagInput/TagInput.styles.js +26 -0
- package/dist/components/Text/Text.js +16 -36
- package/dist/components/Text/Text.styles.js +2 -2
- package/dist/components/Text/index.js +1 -2
- package/dist/components/Toaster/Toaster.js +59 -11
- package/dist/components/Toaster/Toaster.styles.js +1 -1
- package/dist/components/Toaster/ToasterProvider.js +49 -6
- package/dist/components/Toaster/components/Toast/Toast.js +46 -47
- package/dist/components/Toaster/components/Toast/Toast.styles.js +1 -1
- package/dist/components/Toaster/components/Toast/ToastAnimated.js +36 -37
- package/dist/components/Toaster/hooks/useToaster.js +24 -22
- package/dist/components/Toaster/index.js +5 -4
- package/dist/components/Toggle/Toggle.js +42 -42
- package/dist/components/Toggle/Toggle.styles.js +1 -1
- package/dist/components/Tooltip/Tooltip.js +2 -2
- package/dist/components/Tooltip/Tooltip.styles.js +1 -1
- package/dist/components/ValidationMessage/ValidationMessage.js +25 -26
- package/dist/components/ValidationMessage/ValidationSummary/ValidationSummary.js +1 -1
- package/dist/{composeTableColumnDefs-CeWqgpKW.js → composeTableColumnDefs-Hmd6yfdj.js} +99 -99
- package/dist/constants.js +10 -10
- package/dist/{create-recipe-BqEnhJ30.js → create-recipe-C-ASk1Hy.js} +11 -10
- package/dist/css-fGu_jDvv.js +228 -0
- package/dist/cva-JiDXAa83.js +63 -0
- package/dist/enums.js +7 -7
- package/dist/factory-oPXoMw9H.js +58 -0
- package/dist/{floating-ui.react-CPN4oQCc.js → floating-ui.react-CmSaAiNF.js} +1153 -1151
- package/dist/fuzzysort-DKAolWVP.js +397 -0
- package/dist/helpers/dom/closestCrossShadow.js +16 -17
- package/dist/helpers/dom/focusableElements.js +6 -6
- package/dist/helpers/dom/getActiveElement.js +5 -6
- package/dist/helpers/formatting/formatDateTime.js +9 -10
- package/dist/helpers/label-value/composeLabelValueDescriptor.js +8 -8
- package/dist/helpers/label-value/getQueryRangeExclusive.js +1 -1
- package/dist/helpers/label-value/getValueFromLabelValues.js +5 -6
- package/dist/helpers/label-value/highlightQueryInLabel.js +4 -7
- package/dist/helpers/label-value/highlightQueryInLabelValue.js +6 -5
- package/dist/helpers/label-value/searchLabelValues.js +1 -1
- package/dist/helpers/responsive/getResponsiveLayoutModifiers.js +4 -4
- package/dist/helpers/styling/iressCss.js +2 -2
- package/dist/helpers/transition/getTransitionDuration.js +5 -8
- package/dist/hooks/useAriaRelationship.js +19 -21
- package/dist/hooks/useBreakpoint.js +8 -11
- package/dist/hooks/useControlledState.js +37 -35
- package/dist/{index-DlGwAtoO.js → index-CvOVcYUc.js} +40 -14
- package/dist/{index.esm-BnSuefUA.js → index.esm-8uZEha-3.js} +1 -1
- package/dist/{index.esm-BdbWn-w_.js → index.esm-B6vzbp0e.js} +5 -5
- package/dist/is-valid-prop-Ce0wiweq.js +7 -0
- package/dist/main.js +298 -292
- package/dist/patterns/Form/Form.js +1 -1
- package/dist/patterns/Form/Form.styles.js +1 -1
- package/dist/patterns/Form/FormField/FormField.js +41 -44
- package/dist/patterns/Form/FormField/FormFieldset.js +41 -44
- package/dist/patterns/Form/FormField/helpers/getErrorTypeMessage.js +10 -10
- package/dist/patterns/Form/FormField/hooks/useFieldRenderProps.js +26 -26
- package/dist/patterns/Form/FormValidationSummary/FormValidationSummary.js +55 -56
- package/dist/patterns/Form/HookForm/HookForm.js +72 -75
- package/dist/patterns/Form/components/LongForm.js +1 -1
- package/dist/patterns/Form/components/ShortForm.js +12 -12
- package/dist/patterns/Loading/Loading.styles.js +19 -7
- package/dist/patterns/Loading/LoadingSuspense.js +26 -26
- package/dist/patterns/Loading/components/ComponentLoading.js +49 -49
- package/dist/patterns/Loading/components/DefaultLoading.js +1 -1
- package/dist/patterns/Loading/components/LongLoading.js +45 -45
- package/dist/patterns/Loading/components/PageLoading.js +63 -60
- package/dist/patterns/Loading/components/StartUpLoading.js +61 -59
- package/dist/patterns/Loading/components/ValidateLoading.js +2 -2
- package/dist/patterns/Loading/hooks/useShowIndicator.js +11 -11
- package/dist/patterns/Shadow/Shadow.js +32235 -0
- package/dist/patterns/Shadow/index.js +4 -0
- package/dist/src/components/Alert/Alert.d.ts +0 -1
- package/dist/src/components/Alert/Alert.styles.d.ts +1 -1
- package/dist/src/components/Autocomplete/Autocomplete.d.ts +1 -1
- package/dist/src/components/Autocomplete/hooks/useAutocompleteSearch.d.ts +1 -1
- package/dist/src/components/Autocomplete/index.d.ts +1 -0
- package/dist/src/components/Checkbox/Checkbox.d.ts +3 -1
- package/dist/src/components/Field/Field.styles.d.ts +8 -1
- package/dist/src/components/Field/FieldGroup/FieldGroup.styles.d.ts +1 -1
- package/dist/src/components/Label/Label.styles.d.ts +1 -1
- package/dist/src/components/Modal/Modal.styles.d.ts +6 -0
- package/dist/src/components/Modal/ModalProvider.d.ts +0 -16
- package/dist/src/components/Modal/hooks/useModal.d.ts +17 -0
- package/dist/src/components/Popover/Popover.styles.d.ts +1 -1
- package/dist/src/components/Popover/components/NestedPopoverActivator.d.ts +1 -1
- package/dist/src/components/Popover/hooks/usePopover.d.ts +4 -0
- package/dist/src/components/Popover/hooks/usePopoverNavigation.d.ts +1 -1
- package/dist/src/components/Readonly/Readonly.styles.d.ts +1 -1
- package/dist/src/components/RichSelect/RichSelect.d.ts +11 -1
- package/dist/src/components/RichSelect/SelectBody/SelectBody.d.ts +1 -1
- package/dist/src/components/RichSelect/SelectMenu/SelectMenu.d.ts +2 -2
- package/dist/src/components/RichSelect/SelectMenu/SelectMenuItem.d.ts +1 -1
- package/dist/src/components/RichSelect/SelectSearch/SelectSearch.d.ts +1 -1
- package/dist/src/components/RichSelect/SelectSearchInput/SelectSearchInput.d.ts +1 -2
- package/dist/src/components/RichSelect/SelectTags/SelectTags.d.ts +1 -1
- package/dist/src/components/RichSelect/SelectTags/SelectTags.styles.d.ts +1 -1
- package/dist/src/components/RichSelect/components/SelectOptions.d.ts +1 -1
- package/dist/src/components/Slideout/SlideoutProvider.d.ts +0 -6
- package/dist/src/components/Slideout/hooks/useSlideout.d.ts +7 -0
- package/dist/src/components/TabSet/TabSet.d.ts +10 -1
- package/dist/src/components/Table/TableFormattedValue/TableFormattedValue.d.ts +2 -3
- package/dist/src/components/Table/helpers/composeTableColumnDefs.d.ts +1 -1
- package/dist/src/components/Tag/TagInput/TagInput.styles.d.ts +1 -0
- package/dist/src/components/Text/Text.d.ts +1 -2
- package/dist/src/components/Toaster/ToasterProvider.d.ts +0 -2
- package/dist/src/components/Toaster/components/Toast/Toast.d.ts +1 -2
- package/dist/src/components/Toaster/hooks/useToaster.d.ts +7 -6
- package/dist/src/enums.d.ts +1 -9
- package/dist/src/interfaces.d.ts +1 -0
- package/dist/src/main.d.ts +1 -1
- package/dist/src/patterns/Form/hooks/useNoDefaultValueInForms.d.ts +1 -1
- package/dist/src/patterns/Loading/Loading.styles.d.ts +1 -0
- package/dist/src/patterns/Loading/components/PageLoading.d.ts +5 -1
- package/dist/src/patterns/Loading/components/StartUpLoading.d.ts +8 -3
- package/dist/src/patterns/Loading/components/ValidateLoading.d.ts +1 -1
- package/dist/src/patterns/Shadow/Shadow.d.ts +34 -0
- package/dist/src/patterns/Shadow/index.d.ts +1 -0
- package/dist/src/patterns/Shadow/meta/Thumbnail.d.ts +2 -0
- package/dist/src/patterns/Shadow/meta/index.d.ts +7 -0
- package/dist/src/styled-system/jsx/create-style-context.d.ts +47 -0
- package/dist/src/styled-system/jsx/index.d.ts +1 -0
- package/dist/src/styled-system/patterns/aspect-ratio.d.ts +0 -1
- package/dist/src/styled-system/patterns/bleed.d.ts +0 -1
- package/dist/src/styled-system/patterns/box.d.ts +0 -1
- package/dist/src/styled-system/patterns/center.d.ts +0 -1
- package/dist/src/styled-system/patterns/circle.d.ts +0 -1
- package/dist/src/styled-system/patterns/container.d.ts +0 -1
- package/dist/src/styled-system/patterns/cq.d.ts +0 -1
- package/dist/src/styled-system/patterns/divider.d.ts +0 -1
- package/dist/src/styled-system/patterns/flex.d.ts +0 -1
- package/dist/src/styled-system/patterns/float.d.ts +0 -1
- package/dist/src/styled-system/patterns/grid-item.d.ts +0 -1
- package/dist/src/styled-system/patterns/grid.d.ts +0 -1
- package/dist/src/styled-system/patterns/hstack.d.ts +0 -1
- package/dist/src/styled-system/patterns/link-overlay.d.ts +0 -1
- package/dist/src/styled-system/patterns/spacer.d.ts +0 -1
- package/dist/src/styled-system/patterns/square.d.ts +0 -1
- package/dist/src/styled-system/patterns/stack.d.ts +0 -1
- package/dist/src/styled-system/patterns/visually-hidden.d.ts +0 -1
- package/dist/src/styled-system/patterns/vstack.d.ts +0 -1
- package/dist/src/styled-system/patterns/wrap.d.ts +0 -1
- package/dist/src/styled-system/recipes/button.d.ts +4 -3
- package/dist/src/styled-system/recipes/table.d.ts +4 -1
- package/dist/src/styled-system/recipes/text.d.ts +3 -2
- package/dist/src/styled-system/tokens/tokens.d.ts +4 -4
- package/dist/src/styled-system/types/composition.d.ts +83 -23
- package/dist/src/styled-system/types/conditions.d.ts +15 -11
- package/dist/src/styled-system/types/jsx.d.ts +21 -6
- package/dist/src/styled-system/types/prop-type.d.ts +9 -2
- package/dist/src/styled-system/types/style-props.d.ts +14 -1
- package/dist/src/styled-system/types/system-types.d.ts +76 -0
- package/dist/style.css +1 -1
- package/dist/sva-OmxClA9g.js +34 -0
- package/package.json +68 -46
- package/dist/Filter-Bwk7SIlJ.js +0 -1103
- package/dist/InputPopover-BWWuoQZ2.js +0 -132
- package/dist/ToasterProvider-XqpAGfRs.js +0 -112
- package/dist/_commonjsHelpers-C6fGbg64.js +0 -6
- package/dist/cva-B2x59Dph.js +0 -294
- package/dist/factory-DHLOr79I.js +0 -53
- package/dist/fuzzysort-eoXOpoo6.js +0 -395
- package/dist/helpers/utility/generateScopedName.js +0 -9
- package/dist/is-valid-prop-DFFvE05x.js +0 -7
- package/dist/panda.config.d.ts +0 -4
- package/dist/src/helpers/utility/generateScopedName.d.ts +0 -8
- package/dist/sva-TRyehFkb.js +0 -32
- package/dist/theme-preset/config-recipes/button.d.ts +0 -6
- package/dist/theme-preset/config-recipes/table.d.ts +0 -1
- package/dist/theme-preset/config-recipes/text.d.ts +0 -1
- package/dist/theme-preset/globalCss.d.ts +0 -1
- package/dist/theme-preset/index.d.ts +0 -2
- package/dist/theme-preset/staticCss.d.ts +0 -2
- package/dist/theme-preset/storybook.d.ts +0 -4
- package/dist/theme-preset/tokens/animationStyles.d.ts +0 -1
- package/dist/theme-preset/tokens/borders.d.ts +0 -50
- package/dist/theme-preset/tokens/breakpoints.d.ts +0 -8
- package/dist/theme-preset/tokens/colors.d.ts +0 -156
- package/dist/theme-preset/tokens/keyframes.d.ts +0 -1
- package/dist/theme-preset/tokens/layerStyles.d.ts +0 -40
- package/dist/theme-preset/tokens/radii.d.ts +0 -42
- package/dist/theme-preset/tokens/sizes.d.ts +0 -246
- package/dist/theme-preset/tokens/spacing.d.ts +0 -100
- package/dist/theme-preset/tokens/textStyles.d.ts +0 -5
- package/dist/theme-preset/tokens/zIndex.d.ts +0 -23
- package/dist/theme-preset/utilities/chevron.d.ts +0 -3
- package/dist/theme-preset/utilities/focusable.d.ts +0 -1
- package/dist/theme-preset/utilities/gutter.d.ts +0 -1
- package/dist/theme-preset/utilities/hide.d.ts +0 -1
- package/dist/theme-preset/utilities/noGutter.d.ts +0 -1
- package/dist/theme-preset/utilities/offset.d.ts +0 -75
- package/dist/theme-preset/utilities/sliderThumb.d.ts +0 -1
- package/dist/theme-preset/utilities/span.d.ts +0 -120
- package/dist/theme-preset/utilities/stretch.d.ts +0 -1
- package/dist/theme-preset/utilities/topLeftTriangle.d.ts +0 -2
- package/dist/typography--vGt_ztU.js +0 -12
- package/dist/vite.config.d.ts +0 -2
- package/dist/vitest.config.d.ts +0 -2
- package/dist/vitest.setup.d.ts +0 -0
- /package/{LICENSE.txt → LICENSE} +0 -0
|
@@ -1,395 +0,0 @@
|
|
|
1
|
-
import { g as Ie } from "./_commonjsHelpers-C6fGbg64.js";
|
|
2
|
-
var X = { exports: {} }, ye = X.exports, _e;
|
|
3
|
-
function me() {
|
|
4
|
-
return _e || (_e = 1, function(ae) {
|
|
5
|
-
((ne, Y) => {
|
|
6
|
-
ae.exports ? ae.exports = Y() : ne.fuzzysort = Y();
|
|
7
|
-
})(ye, (ne) => {
|
|
8
|
-
var Y = (r, e) => {
|
|
9
|
-
if (!r || !e) return b;
|
|
10
|
-
var a = le(r);
|
|
11
|
-
P(e) || (e = E(e));
|
|
12
|
-
var i = a.bitflags;
|
|
13
|
-
return (i & e._bitflags) !== i ? b : D(a, e);
|
|
14
|
-
}, ge = (r, e, a) => {
|
|
15
|
-
if (!r) return a != null && a.all ? xe(e, a) : ee;
|
|
16
|
-
var i = le(r), v = i.bitflags, f = i.containsSpace, n = K((a == null ? void 0 : a.threshold) || 0), s = (a == null ? void 0 : a.limit) || j, t = 0, _ = 0, u = e.length;
|
|
17
|
-
function m(q) {
|
|
18
|
-
t < s ? (Q.add(q), ++t) : (++_, q._score > Q.peek()._score && Q.replaceTop(q));
|
|
19
|
-
}
|
|
20
|
-
if (a != null && a.key)
|
|
21
|
-
for (var L = a.key, g = 0; g < u; ++g) {
|
|
22
|
-
var y = e[g], o = J(y, L);
|
|
23
|
-
if (o && (P(o) || (o = E(o)), (v & o._bitflags) === v)) {
|
|
24
|
-
var x = D(i, o);
|
|
25
|
-
x !== b && (x._score < n || (x.obj = y, m(x)));
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
else if (a != null && a.keys) {
|
|
29
|
-
var A = a.keys, z = A.length;
|
|
30
|
-
e: for (var g = 0; g < u; ++g) {
|
|
31
|
-
var y = e[g];
|
|
32
|
-
{
|
|
33
|
-
for (var I = 0, c = 0; c < z; ++c) {
|
|
34
|
-
var L = A[c], o = J(y, L);
|
|
35
|
-
if (!o) {
|
|
36
|
-
p[c] = V;
|
|
37
|
-
continue;
|
|
38
|
-
}
|
|
39
|
-
P(o) || (o = E(o)), p[c] = o, I |= o._bitflags;
|
|
40
|
-
}
|
|
41
|
-
if ((v & I) !== v) continue;
|
|
42
|
-
}
|
|
43
|
-
if (f) for (let h = 0; h < i.spaceSearches.length; h++) N[h] = B;
|
|
44
|
-
for (var c = 0; c < z; ++c) {
|
|
45
|
-
if (o = p[c], o === V) {
|
|
46
|
-
G[c] = V;
|
|
47
|
-
continue;
|
|
48
|
-
}
|
|
49
|
-
if (G[c] = D(
|
|
50
|
-
i,
|
|
51
|
-
o,
|
|
52
|
-
/*allowSpaces=*/
|
|
53
|
-
!1,
|
|
54
|
-
/*allowPartialMatch=*/
|
|
55
|
-
f
|
|
56
|
-
), G[c] === b) {
|
|
57
|
-
G[c] = V;
|
|
58
|
-
continue;
|
|
59
|
-
}
|
|
60
|
-
if (f) for (let d = 0; d < i.spaceSearches.length; d++) {
|
|
61
|
-
if (M[d] > -1e3 && N[d] > B) {
|
|
62
|
-
var S = (N[d] + M[d]) / 4;
|
|
63
|
-
S > N[d] && (N[d] = S);
|
|
64
|
-
}
|
|
65
|
-
M[d] > N[d] && (N[d] = M[d]);
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
if (f) {
|
|
69
|
-
for (let h = 0; h < i.spaceSearches.length; h++)
|
|
70
|
-
if (N[h] === B) continue e;
|
|
71
|
-
} else {
|
|
72
|
-
var l = !1;
|
|
73
|
-
for (let h = 0; h < z; h++)
|
|
74
|
-
if (G[h]._score !== B) {
|
|
75
|
-
l = !0;
|
|
76
|
-
break;
|
|
77
|
-
}
|
|
78
|
-
if (!l) continue;
|
|
79
|
-
}
|
|
80
|
-
var C = new ie(z);
|
|
81
|
-
for (let h = 0; h < z; h++)
|
|
82
|
-
C[h] = G[h];
|
|
83
|
-
if (f) {
|
|
84
|
-
var w = 0;
|
|
85
|
-
for (let h = 0; h < i.spaceSearches.length; h++) w += N[h];
|
|
86
|
-
} else {
|
|
87
|
-
var w = B;
|
|
88
|
-
for (let d = 0; d < z; d++) {
|
|
89
|
-
var x = C[d];
|
|
90
|
-
if (x._score > -1e3 && w > B) {
|
|
91
|
-
var S = (w + x._score) / 4;
|
|
92
|
-
S > w && (w = S);
|
|
93
|
-
}
|
|
94
|
-
x._score > w && (w = x._score);
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
if (C.obj = y, C._score = w, a != null && a.scoreFn) {
|
|
98
|
-
if (w = a.scoreFn(C), !w) continue;
|
|
99
|
-
w = K(w), C._score = w;
|
|
100
|
-
}
|
|
101
|
-
w < n || m(C);
|
|
102
|
-
}
|
|
103
|
-
} else
|
|
104
|
-
for (var g = 0; g < u; ++g) {
|
|
105
|
-
var o = e[g];
|
|
106
|
-
if (o && (P(o) || (o = E(o)), (v & o._bitflags) === v)) {
|
|
107
|
-
var x = D(i, o);
|
|
108
|
-
x !== b && (x._score < n || m(x));
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
if (t === 0) return ee;
|
|
112
|
-
for (var T = new Array(t), g = t - 1; g >= 0; --g) T[g] = Q.poll();
|
|
113
|
-
return T.total = t + _, T;
|
|
114
|
-
}, oe = (r, e = "<b>", a = "</b>") => {
|
|
115
|
-
for (var i = typeof e == "function" ? e : void 0, v = r.target, f = v.length, n = r.indexes, s = "", t = 0, _ = 0, u = !1, m = [], L = 0; L < f; ++L) {
|
|
116
|
-
var g = v[L];
|
|
117
|
-
if (n[_] === L) {
|
|
118
|
-
if (++_, u || (u = !0, i ? (m.push(s), s = "") : s += e), _ === n.length) {
|
|
119
|
-
i ? (s += g, m.push(i(s, t++)), s = "", m.push(v.substr(L + 1))) : s += g + a + v.substr(L + 1);
|
|
120
|
-
break;
|
|
121
|
-
}
|
|
122
|
-
} else
|
|
123
|
-
u && (u = !1, i ? (m.push(i(s, t++)), s = "") : s += a);
|
|
124
|
-
s += g;
|
|
125
|
-
}
|
|
126
|
-
return i ? m : s;
|
|
127
|
-
}, $ = (r) => {
|
|
128
|
-
typeof r == "number" ? r = "" + r : typeof r != "string" && (r = "");
|
|
129
|
-
var e = Z(r);
|
|
130
|
-
return ve(r, { _targetLower: e._lower, _targetLowerCodes: e.lowerCodes, _bitflags: e.bitflags });
|
|
131
|
-
}, he = () => {
|
|
132
|
-
U.clear(), R.clear();
|
|
133
|
-
};
|
|
134
|
-
class fe {
|
|
135
|
-
get indexes() {
|
|
136
|
-
return this._indexes.slice(0, this._indexes.len).sort((e, a) => e - a);
|
|
137
|
-
}
|
|
138
|
-
set indexes(e) {
|
|
139
|
-
return this._indexes = e;
|
|
140
|
-
}
|
|
141
|
-
highlight(e, a) {
|
|
142
|
-
return oe(this, e, a);
|
|
143
|
-
}
|
|
144
|
-
get score() {
|
|
145
|
-
return te(this._score);
|
|
146
|
-
}
|
|
147
|
-
set score(e) {
|
|
148
|
-
this._score = K(e);
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
class ie extends Array {
|
|
152
|
-
get score() {
|
|
153
|
-
return te(this._score);
|
|
154
|
-
}
|
|
155
|
-
set score(e) {
|
|
156
|
-
this._score = K(e);
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
var ve = (r, e) => {
|
|
160
|
-
const a = new fe();
|
|
161
|
-
return a.target = r, a.obj = e.obj ?? b, a._score = e._score ?? B, a._indexes = e._indexes ?? [], a._targetLower = e._targetLower ?? "", a._targetLowerCodes = e._targetLowerCodes ?? b, a._nextBeginningIndexes = e._nextBeginningIndexes ?? b, a._bitflags = e._bitflags ?? 0, a;
|
|
162
|
-
}, te = (r) => r === B ? 0 : r > 1 ? r : Math.E ** (((-r + 1) ** 0.04307 - 1) * -2), K = (r) => r === 0 ? B : r > 1 ? r : 1 - Math.pow(Math.log(r) / -2 + 1, 1 / 0.04307), se = (r) => {
|
|
163
|
-
typeof r == "number" ? r = "" + r : typeof r != "string" && (r = ""), r = r.trim();
|
|
164
|
-
var e = Z(r), a = [];
|
|
165
|
-
if (e.containsSpace) {
|
|
166
|
-
var i = r.split(/\s+/);
|
|
167
|
-
i = [...new Set(i)];
|
|
168
|
-
for (var v = 0; v < i.length; v++)
|
|
169
|
-
if (i[v] !== "") {
|
|
170
|
-
var f = Z(i[v]);
|
|
171
|
-
a.push({ lowerCodes: f.lowerCodes, _lower: i[v].toLowerCase(), containsSpace: !1 });
|
|
172
|
-
}
|
|
173
|
-
}
|
|
174
|
-
return { lowerCodes: e.lowerCodes, _lower: e._lower, containsSpace: e.containsSpace, bitflags: e.bitflags, spaceSearches: a };
|
|
175
|
-
}, E = (r) => {
|
|
176
|
-
if (r.length > 999) return $(r);
|
|
177
|
-
var e = U.get(r);
|
|
178
|
-
return e !== void 0 || (e = $(r), U.set(r, e)), e;
|
|
179
|
-
}, le = (r) => {
|
|
180
|
-
if (r.length > 999) return se(r);
|
|
181
|
-
var e = R.get(r);
|
|
182
|
-
return e !== void 0 || (e = se(r), R.set(r, e)), e;
|
|
183
|
-
}, xe = (r, e) => {
|
|
184
|
-
var a = [];
|
|
185
|
-
a.total = r.length;
|
|
186
|
-
var i = (e == null ? void 0 : e.limit) || j;
|
|
187
|
-
if (e != null && e.key)
|
|
188
|
-
for (var v = 0; v < r.length; v++) {
|
|
189
|
-
var f = r[v], n = J(f, e.key);
|
|
190
|
-
if (n != b) {
|
|
191
|
-
P(n) || (n = E(n));
|
|
192
|
-
var s = ve(n.target, { _score: n._score, obj: f });
|
|
193
|
-
if (a.push(s), a.length >= i) return a;
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
else if (e != null && e.keys)
|
|
197
|
-
for (var v = 0; v < r.length; v++) {
|
|
198
|
-
for (var f = r[v], t = new ie(e.keys.length), _ = e.keys.length - 1; _ >= 0; --_) {
|
|
199
|
-
var n = J(f, e.keys[_]);
|
|
200
|
-
if (!n) {
|
|
201
|
-
t[_] = V;
|
|
202
|
-
continue;
|
|
203
|
-
}
|
|
204
|
-
P(n) || (n = E(n)), n._score = B, n._indexes.len = 0, t[_] = n;
|
|
205
|
-
}
|
|
206
|
-
if (t.obj = f, t._score = B, a.push(t), a.length >= i) return a;
|
|
207
|
-
}
|
|
208
|
-
else
|
|
209
|
-
for (var v = 0; v < r.length; v++) {
|
|
210
|
-
var n = r[v];
|
|
211
|
-
if (n != b && (P(n) || (n = E(n)), n._score = B, n._indexes.len = 0, a.push(n), a.length >= i))
|
|
212
|
-
return a;
|
|
213
|
-
}
|
|
214
|
-
return a;
|
|
215
|
-
}, D = (r, e, a = !1, i = !1) => {
|
|
216
|
-
if (a === !1 && r.containsSpace) return de(r, e, i);
|
|
217
|
-
for (var v = r._lower, f = r.lowerCodes, n = f[0], s = e._targetLowerCodes, t = f.length, _ = s.length, g = 0, u = 0, m = 0; ; ) {
|
|
218
|
-
var L = n === s[u];
|
|
219
|
-
if (L) {
|
|
220
|
-
if (k[m++] = u, ++g, g === t) break;
|
|
221
|
-
n = f[g];
|
|
222
|
-
}
|
|
223
|
-
if (++u, u >= _) return b;
|
|
224
|
-
}
|
|
225
|
-
var g = 0, y = !1, o = 0, x = e._nextBeginningIndexes;
|
|
226
|
-
x === b && (x = e._nextBeginningIndexes = be(e.target)), u = k[0] === 0 ? 0 : x[k[0] - 1];
|
|
227
|
-
var A = 0;
|
|
228
|
-
if (u !== _) for (; ; )
|
|
229
|
-
if (u >= _) {
|
|
230
|
-
if (g <= 0 || (++A, A > 200)) break;
|
|
231
|
-
--g;
|
|
232
|
-
var z = O[--o];
|
|
233
|
-
u = x[z];
|
|
234
|
-
} else {
|
|
235
|
-
var L = f[g] === s[u];
|
|
236
|
-
if (L) {
|
|
237
|
-
if (O[o++] = u, ++g, g === t) {
|
|
238
|
-
y = !0;
|
|
239
|
-
break;
|
|
240
|
-
}
|
|
241
|
-
++u;
|
|
242
|
-
} else
|
|
243
|
-
u = x[u];
|
|
244
|
-
}
|
|
245
|
-
var I = t <= 1 ? -1 : e._targetLower.indexOf(v, k[0]), c = !!~I, S = c ? I === 0 || e._nextBeginningIndexes[I - 1] === I : !1;
|
|
246
|
-
if (c && !S) {
|
|
247
|
-
for (var l = 0; l < x.length; l = x[l])
|
|
248
|
-
if (!(l <= I)) {
|
|
249
|
-
for (var C = 0; C < t && f[C] === e._targetLowerCodes[l + C]; C++) ;
|
|
250
|
-
if (C === t) {
|
|
251
|
-
I = l, S = !0;
|
|
252
|
-
break;
|
|
253
|
-
}
|
|
254
|
-
}
|
|
255
|
-
}
|
|
256
|
-
var w = (h) => {
|
|
257
|
-
for (var d = 0, ce = 0, F = 1; F < t; ++F)
|
|
258
|
-
h[F] - h[F - 1] !== 1 && (d -= h[F], ++ce);
|
|
259
|
-
var Le = h[t - 1] - h[0] - (t - 1);
|
|
260
|
-
if (d -= (12 + Le) * ce, h[0] !== 0 && (d -= h[0] * h[0] * 0.2), !y)
|
|
261
|
-
d *= 1e3;
|
|
262
|
-
else {
|
|
263
|
-
for (var re = 1, F = x[0]; F < _; F = x[F]) ++re;
|
|
264
|
-
re > 24 && (d *= (re - 24) * 10);
|
|
265
|
-
}
|
|
266
|
-
return d -= (_ - t) / 2, c && (d /= 1 + t * t * 1), S && (d /= 1 + t * t * 1), d -= (_ - t) / 2, d;
|
|
267
|
-
};
|
|
268
|
-
if (y)
|
|
269
|
-
if (S) {
|
|
270
|
-
for (var l = 0; l < t; ++l) k[l] = I + l;
|
|
271
|
-
var T = k, q = w(k);
|
|
272
|
-
} else
|
|
273
|
-
var T = O, q = w(O);
|
|
274
|
-
else {
|
|
275
|
-
if (c) for (var l = 0; l < t; ++l) k[l] = I + l;
|
|
276
|
-
var T = k, q = w(T);
|
|
277
|
-
}
|
|
278
|
-
e._score = q;
|
|
279
|
-
for (var l = 0; l < t; ++l) e._indexes[l] = T[l];
|
|
280
|
-
e._indexes.len = t;
|
|
281
|
-
const W = new fe();
|
|
282
|
-
return W.target = e.target, W._score = e._score, W._indexes = e._indexes, W;
|
|
283
|
-
}, de = (r, e, a) => {
|
|
284
|
-
for (var i = /* @__PURE__ */ new Set(), v = 0, f = b, n = 0, s = r.spaceSearches, t = s.length, _ = 0, u = () => {
|
|
285
|
-
for (let S = _ - 1; S >= 0; S--) e._nextBeginningIndexes[H[S * 2 + 0]] = H[S * 2 + 1];
|
|
286
|
-
}, m = !1, c = 0; c < t; ++c) {
|
|
287
|
-
M[c] = B;
|
|
288
|
-
var L = s[c];
|
|
289
|
-
if (f = D(L, e), a) {
|
|
290
|
-
if (f === b) continue;
|
|
291
|
-
m = !0;
|
|
292
|
-
} else if (f === b)
|
|
293
|
-
return u(), b;
|
|
294
|
-
var g = c === t - 1;
|
|
295
|
-
if (!g) {
|
|
296
|
-
var y = f._indexes, o = !0;
|
|
297
|
-
for (let l = 0; l < y.len - 1; l++)
|
|
298
|
-
if (y[l + 1] - y[l] !== 1) {
|
|
299
|
-
o = !1;
|
|
300
|
-
break;
|
|
301
|
-
}
|
|
302
|
-
if (o) {
|
|
303
|
-
var x = y[y.len - 1] + 1, A = e._nextBeginningIndexes[x - 1];
|
|
304
|
-
for (let l = x - 1; l >= 0 && A === e._nextBeginningIndexes[l]; l--)
|
|
305
|
-
e._nextBeginningIndexes[l] = x, H[_ * 2 + 0] = l, H[_ * 2 + 1] = A, _++;
|
|
306
|
-
}
|
|
307
|
-
}
|
|
308
|
-
v += f._score / t, M[c] = f._score / t, f._indexes[0] < n && (v -= (n - f._indexes[0]) * 2), n = f._indexes[0];
|
|
309
|
-
for (var z = 0; z < f._indexes.len; ++z) i.add(f._indexes[z]);
|
|
310
|
-
}
|
|
311
|
-
if (a && !m) return b;
|
|
312
|
-
u();
|
|
313
|
-
var I = D(
|
|
314
|
-
r,
|
|
315
|
-
e,
|
|
316
|
-
/*allowSpaces=*/
|
|
317
|
-
!0
|
|
318
|
-
);
|
|
319
|
-
if (I !== b && I._score > v) {
|
|
320
|
-
if (a)
|
|
321
|
-
for (var c = 0; c < t; ++c)
|
|
322
|
-
M[c] = I._score / t;
|
|
323
|
-
return I;
|
|
324
|
-
}
|
|
325
|
-
a && (f = e), f._score = v;
|
|
326
|
-
var c = 0;
|
|
327
|
-
for (let S of i) f._indexes[c++] = S;
|
|
328
|
-
return f._indexes.len = c, f;
|
|
329
|
-
}, ue = (r) => r.replace(new RegExp("\\p{Script=Latin}+", "gu"), (e) => e.normalize("NFD")).replace(/[\u0300-\u036f]/g, ""), Z = (r) => {
|
|
330
|
-
r = ue(r);
|
|
331
|
-
for (var e = r.length, a = r.toLowerCase(), i = [], v = 0, f = !1, n = 0; n < e; ++n) {
|
|
332
|
-
var s = i[n] = a.charCodeAt(n);
|
|
333
|
-
if (s === 32) {
|
|
334
|
-
f = !0;
|
|
335
|
-
continue;
|
|
336
|
-
}
|
|
337
|
-
var t = s >= 97 && s <= 122 ? s - 97 : s >= 48 && s <= 57 ? 26 : s <= 127 ? 30 : 31;
|
|
338
|
-
v |= 1 << t;
|
|
339
|
-
}
|
|
340
|
-
return { lowerCodes: i, bitflags: v, containsSpace: f, _lower: a };
|
|
341
|
-
}, we = (r) => {
|
|
342
|
-
for (var e = r.length, a = [], i = 0, v = !1, f = !1, n = 0; n < e; ++n) {
|
|
343
|
-
var s = r.charCodeAt(n), t = s >= 65 && s <= 90, _ = t || s >= 97 && s <= 122 || s >= 48 && s <= 57, u = t && !v || !f || !_;
|
|
344
|
-
v = t, f = _, u && (a[i++] = n);
|
|
345
|
-
}
|
|
346
|
-
return a;
|
|
347
|
-
}, be = (r) => {
|
|
348
|
-
r = ue(r);
|
|
349
|
-
for (var e = r.length, a = we(r), i = [], v = a[0], f = 0, n = 0; n < e; ++n)
|
|
350
|
-
v > n ? i[n] = v : (v = a[++f], i[n] = v === void 0 ? e : v);
|
|
351
|
-
return i;
|
|
352
|
-
}, U = /* @__PURE__ */ new Map(), R = /* @__PURE__ */ new Map(), k = [], O = [], H = [], N = [], M = [], p = [], G = [], J = (r, e) => {
|
|
353
|
-
var a = r[e];
|
|
354
|
-
if (a !== void 0) return a;
|
|
355
|
-
if (typeof e == "function") return e(r);
|
|
356
|
-
var i = e;
|
|
357
|
-
Array.isArray(e) || (i = e.split("."));
|
|
358
|
-
for (var v = i.length, f = -1; r && ++f < v; ) r = r[i[f]];
|
|
359
|
-
return r;
|
|
360
|
-
}, P = (r) => typeof r == "object" && typeof r._bitflags == "number", j = 1 / 0, B = -j, ee = [];
|
|
361
|
-
ee.total = 0;
|
|
362
|
-
var b = null, V = $(""), Se = (r) => {
|
|
363
|
-
var e = [], a = 0, i = {}, v = (f) => {
|
|
364
|
-
for (var n = 0, s = e[n], t = 1; t < a; ) {
|
|
365
|
-
var _ = t + 1;
|
|
366
|
-
n = t, _ < a && e[_]._score < e[t]._score && (n = _), e[n - 1 >> 1] = e[n], t = 1 + (n << 1);
|
|
367
|
-
}
|
|
368
|
-
for (var u = n - 1 >> 1; n > 0 && s._score < e[u]._score; u = (n = u) - 1 >> 1) e[n] = e[u];
|
|
369
|
-
e[n] = s;
|
|
370
|
-
};
|
|
371
|
-
return i.add = (f) => {
|
|
372
|
-
var n = a;
|
|
373
|
-
e[a++] = f;
|
|
374
|
-
for (var s = n - 1 >> 1; n > 0 && f._score < e[s]._score; s = (n = s) - 1 >> 1) e[n] = e[s];
|
|
375
|
-
e[n] = f;
|
|
376
|
-
}, i.poll = (f) => {
|
|
377
|
-
if (a !== 0) {
|
|
378
|
-
var n = e[0];
|
|
379
|
-
return e[0] = e[--a], v(), n;
|
|
380
|
-
}
|
|
381
|
-
}, i.peek = (f) => {
|
|
382
|
-
if (a !== 0) return e[0];
|
|
383
|
-
}, i.replaceTop = (f) => {
|
|
384
|
-
e[0] = f, v();
|
|
385
|
-
}, i;
|
|
386
|
-
}, Q = Se();
|
|
387
|
-
return { single: Y, go: ge, prepare: $, cleanup: he };
|
|
388
|
-
});
|
|
389
|
-
}(X)), X.exports;
|
|
390
|
-
}
|
|
391
|
-
var Be = me();
|
|
392
|
-
const ze = /* @__PURE__ */ Ie(Be);
|
|
393
|
-
export {
|
|
394
|
-
ze as f
|
|
395
|
-
};
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { CSS_IDS_VERSION as p } from "../../constants.js";
|
|
2
|
-
const n = (e, c) => {
|
|
3
|
-
const t = a(c.split("/").reverse()[0].split(".")[0]), o = a(e), r = t === o ? "" : `${o}`;
|
|
4
|
-
let s = `ids-${t}`;
|
|
5
|
-
return e.startsWith("ids-") && (s = ""), `${s}${s && r ? "--" : ""}${r}-${p}`;
|
|
6
|
-
}, a = (e) => e.replace(/([a-z])([A-Z])/g, "$1-$2").replace(/\s+/g, "-").toLowerCase();
|
|
7
|
-
export {
|
|
8
|
-
n as generateScopedName
|
|
9
|
-
};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { s as o, m as t } from "./cva-B2x59Dph.js";
|
|
2
|
-
var r = "css,pos,insetX,insetY,insetEnd,end,insetStart,start,flexDir,p,pl,pr,pt,pb,py,paddingY,paddingX,px,pe,paddingEnd,ps,paddingStart,ml,mr,mt,mb,m,my,marginY,mx,marginX,me,marginEnd,ms,marginStart,ringWidth,ringColor,ring,ringOffset,w,minW,maxW,h,minH,maxH,textShadowColor,bgPosition,bgPositionX,bgPositionY,bgAttachment,bgClip,bg,bgColor,bgOrigin,bgImage,bgRepeat,bgBlendMode,bgSize,bgGradient,rounded,roundedTopLeft,roundedTopRight,roundedBottomRight,roundedBottomLeft,roundedTop,roundedRight,roundedBottom,roundedLeft,roundedStartStart,roundedStartEnd,roundedStart,roundedEndStart,roundedEndEnd,roundedEnd,borderX,borderXWidth,borderXColor,borderY,borderYWidth,borderYColor,borderStart,borderStartWidth,borderStartColor,borderEnd,borderEndWidth,borderEndColor,shadow,shadowColor,x,y,z,scrollMarginY,scrollMarginX,scrollPaddingY,scrollPaddingX,aspectRatio,boxDecorationBreak,zIndex,boxSizing,objectPosition,objectFit,overscrollBehavior,overscrollBehaviorX,overscrollBehaviorY,position,top,left,inset,insetInline,insetBlock,insetBlockEnd,insetBlockStart,insetInlineEnd,insetInlineStart,right,bottom,float,visibility,display,hideFrom,hideBelow,flexBasis,flex,flexDirection,flexGrow,flexShrink,gridTemplateColumns,gridTemplateRows,gridColumn,gridRow,gridColumnStart,gridColumnEnd,gridAutoFlow,gridAutoColumns,gridAutoRows,gap,gridGap,gridRowGap,gridColumnGap,rowGap,columnGap,justifyContent,alignContent,alignItems,alignSelf,padding,paddingLeft,paddingRight,paddingTop,paddingBottom,paddingBlock,paddingBlockEnd,paddingBlockStart,paddingInline,paddingInlineEnd,paddingInlineStart,marginLeft,marginRight,marginTop,marginBottom,margin,marginBlock,marginBlockEnd,marginBlockStart,marginInline,marginInlineEnd,marginInlineStart,spaceX,spaceY,outlineWidth,outlineColor,outline,outlineOffset,divideX,divideY,divideColor,divideStyle,width,inlineSize,minWidth,minInlineSize,maxWidth,maxInlineSize,height,blockSize,minHeight,minBlockSize,maxHeight,maxBlockSize,color,fontFamily,fontSize,fontSizeAdjust,fontPalette,fontKerning,fontFeatureSettings,fontWeight,fontSmoothing,fontVariant,fontVariantAlternates,fontVariantCaps,fontVariationSettings,fontVariantNumeric,letterSpacing,lineHeight,textAlign,textDecoration,textDecorationColor,textEmphasisColor,textDecorationStyle,textDecorationThickness,textUnderlineOffset,textTransform,textIndent,textShadow,textOverflow,verticalAlign,wordBreak,textWrap,truncate,lineClamp,listStyleType,listStylePosition,listStyleImage,listStyle,backgroundPosition,backgroundPositionX,backgroundPositionY,backgroundAttachment,backgroundClip,background,backgroundColor,backgroundOrigin,backgroundImage,backgroundRepeat,backgroundBlendMode,backgroundSize,backgroundGradient,textGradient,gradientFromPosition,gradientToPosition,gradientFrom,gradientTo,gradientVia,gradientViaPosition,borderRadius,borderTopLeftRadius,borderTopRightRadius,borderBottomRightRadius,borderBottomLeftRadius,borderTopRadius,borderRightRadius,borderBottomRadius,borderLeftRadius,borderStartStartRadius,borderStartEndRadius,borderStartRadius,borderEndStartRadius,borderEndEndRadius,borderEndRadius,border,borderWidth,borderTopWidth,borderLeftWidth,borderRightWidth,borderBottomWidth,borderBlockStartWidth,borderBlockEndWidth,borderColor,borderInline,borderInlineWidth,borderInlineColor,borderBlock,borderBlockWidth,borderBlockColor,borderLeft,borderLeftColor,borderInlineStart,borderInlineStartWidth,borderInlineStartColor,borderRight,borderRightColor,borderInlineEnd,borderInlineEndWidth,borderInlineEndColor,borderTop,borderTopColor,borderBottom,borderBottomColor,borderBlockEnd,borderBlockEndColor,borderBlockStart,borderBlockStartColor,opacity,boxShadow,boxShadowColor,mixBlendMode,filter,brightness,contrast,grayscale,hueRotate,invert,saturate,sepia,dropShadow,blur,backdropFilter,backdropBlur,backdropBrightness,backdropContrast,backdropGrayscale,backdropHueRotate,backdropInvert,backdropOpacity,backdropSaturate,backdropSepia,borderCollapse,borderSpacing,borderSpacingX,borderSpacingY,tableLayout,transitionTimingFunction,transitionDelay,transitionDuration,transitionProperty,transition,animation,animationName,animationTimingFunction,animationDuration,animationDelay,animationPlayState,animationComposition,animationFillMode,animationDirection,animationIterationCount,animationRange,animationState,animationRangeStart,animationRangeEnd,animationTimeline,transformOrigin,transformBox,transformStyle,transform,rotate,rotateX,rotateY,rotateZ,scale,scaleX,scaleY,translate,translateX,translateY,translateZ,accentColor,caretColor,scrollBehavior,scrollbar,scrollbarColor,scrollbarGutter,scrollbarWidth,scrollMargin,scrollMarginLeft,scrollMarginRight,scrollMarginTop,scrollMarginBottom,scrollMarginBlock,scrollMarginBlockEnd,scrollMarginBlockStart,scrollMarginInline,scrollMarginInlineEnd,scrollMarginInlineStart,scrollPadding,scrollPaddingBlock,scrollPaddingBlockStart,scrollPaddingBlockEnd,scrollPaddingInline,scrollPaddingInlineEnd,scrollPaddingInlineStart,scrollPaddingLeft,scrollPaddingRight,scrollPaddingTop,scrollPaddingBottom,scrollSnapAlign,scrollSnapStop,scrollSnapType,scrollSnapStrictness,scrollSnapMargin,scrollSnapMarginTop,scrollSnapMarginBottom,scrollSnapMarginLeft,scrollSnapMarginRight,scrollSnapCoordinate,scrollSnapDestination,scrollSnapPointsX,scrollSnapPointsY,scrollSnapTypeX,scrollSnapTypeY,scrollTimeline,scrollTimelineAxis,scrollTimelineName,touchAction,userSelect,overflow,overflowWrap,overflowX,overflowY,overflowAnchor,overflowBlock,overflowInline,overflowClipBox,overflowClipMargin,overscrollBehaviorBlock,overscrollBehaviorInline,fill,stroke,strokeWidth,strokeDasharray,strokeDashoffset,strokeLinecap,strokeLinejoin,strokeMiterlimit,strokeOpacity,srOnly,debug,appearance,backfaceVisibility,clipPath,hyphens,mask,maskImage,maskSize,textSizeAdjust,container,containerName,containerType,cursor,focusable,gutter,selectChevron,selectChevronRtl,tableChevron,hide,offset,span,topLeftTriangle,checkmark,sliderThumb,noGutter,stretch,colorPalette,_hover,_focus,_focusWithin,_focusVisible,_disabled,_active,_visited,_target,_readOnly,_readWrite,_empty,_checked,_enabled,_expanded,_highlighted,_complete,_incomplete,_dragging,_before,_after,_firstLetter,_firstLine,_marker,_selection,_file,_backdrop,_first,_last,_only,_even,_odd,_firstOfType,_lastOfType,_onlyOfType,_peerFocus,_peerHover,_peerActive,_peerFocusWithin,_peerFocusVisible,_peerDisabled,_peerChecked,_peerInvalid,_peerExpanded,_peerPlaceholderShown,_groupFocus,_groupHover,_groupActive,_groupFocusWithin,_groupFocusVisible,_groupDisabled,_groupChecked,_groupExpanded,_groupInvalid,_indeterminate,_required,_valid,_invalid,_autofill,_inRange,_outOfRange,_placeholder,_placeholderShown,_pressed,_selected,_grabbed,_underValue,_overValue,_atValue,_default,_optional,_open,_closed,_fullscreen,_loading,_hidden,_current,_currentPage,_currentStep,_today,_unavailable,_rangeStart,_rangeEnd,_now,_topmost,_motionReduce,_motionSafe,_print,_landscape,_portrait,_dark,_light,_osDark,_osLight,_highContrast,_lessContrast,_moreContrast,_ltr,_rtl,_scrollbar,_scrollbarThumb,_scrollbarTrack,_horizontal,_vertical,_icon,_starting,_nestedFormElements,_nestedFormLabels,_directNestedFormElements,_directNestedSizedElements,_nestedFieldsExceptFirst,_nestedFieldsExceptLast,_progressBar,_progressValue,_mozProgressValue,_focusVisibleWebkitSliderThumb,_focusVisibleMozRangeThumb,_webkitSliderThumb,_mozRangeThumb,_webkitSliderRunnableTrack,_mozRangeTrack,_directNestedHeadings,_siblingHeadings,_nestedHeadings,xs,xsOnly,xsDown,sm,smOnly,smDown,md,mdOnly,mdDown,lg,lgOnly,lgDown,xl,xlOnly,xlDown,xxl,xxlOnly,xxlDown,xsToSm,xsToMd,xsToLg,xsToXl,xsToXxl,smToMd,smToLg,smToXl,smToXxl,mdToLg,mdToXl,mdToXxl,lgToXl,lgToXxl,xlToXxl,textStyle,layerStyle,animationStyle", i = r.split(","), n = "WebkitAppearance,WebkitBorderBefore,WebkitBorderBeforeColor,WebkitBorderBeforeStyle,WebkitBorderBeforeWidth,WebkitBoxReflect,WebkitLineClamp,WebkitMask,WebkitMaskAttachment,WebkitMaskClip,WebkitMaskComposite,WebkitMaskImage,WebkitMaskOrigin,WebkitMaskPosition,WebkitMaskPositionX,WebkitMaskPositionY,WebkitMaskRepeat,WebkitMaskRepeatX,WebkitMaskRepeatY,WebkitMaskSize,WebkitOverflowScrolling,WebkitTapHighlightColor,WebkitTextFillColor,WebkitTextStroke,WebkitTextStrokeColor,WebkitTextStrokeWidth,WebkitTouchCallout,WebkitUserModify,WebkitUserSelect,accentColor,alignContent,alignItems,alignSelf,alignTracks,all,anchorName,anchorScope,animation,animationComposition,animationDelay,animationDirection,animationDuration,animationFillMode,animationIterationCount,animationName,animationPlayState,animationRange,animationRangeEnd,animationRangeStart,animationTimeline,animationTimingFunction,appearance,aspectRatio,backdropFilter,backfaceVisibility,background,backgroundAttachment,backgroundBlendMode,backgroundClip,backgroundColor,backgroundImage,backgroundOrigin,backgroundPosition,backgroundPositionX,backgroundPositionY,backgroundRepeat,backgroundSize,blockSize,border,borderBlock,borderBlockColor,borderBlockEnd,borderBlockEndColor,borderBlockEndStyle,borderBlockEndWidth,borderBlockStart,borderBlockStartColor,borderBlockStartStyle,borderBlockStartWidth,borderBlockStyle,borderBlockWidth,borderBottom,borderBottomColor,borderBottomLeftRadius,borderBottomRightRadius,borderBottomStyle,borderBottomWidth,borderCollapse,borderColor,borderEndEndRadius,borderEndStartRadius,borderImage,borderImageOutset,borderImageRepeat,borderImageSlice,borderImageSource,borderImageWidth,borderInline,borderInlineColor,borderInlineEnd,borderInlineEndColor,borderInlineEndStyle,borderInlineEndWidth,borderInlineStart,borderInlineStartColor,borderInlineStartStyle,borderInlineStartWidth,borderInlineStyle,borderInlineWidth,borderLeft,borderLeftColor,borderLeftStyle,borderLeftWidth,borderRadius,borderRight,borderRightColor,borderRightStyle,borderRightWidth,borderSpacing,borderStartEndRadius,borderStartStartRadius,borderStyle,borderTop,borderTopColor,borderTopLeftRadius,borderTopRightRadius,borderTopStyle,borderTopWidth,borderWidth,bottom,boxAlign,boxDecorationBreak,boxDirection,boxFlex,boxFlexGroup,boxLines,boxOrdinalGroup,boxOrient,boxPack,boxShadow,boxSizing,breakAfter,breakBefore,breakInside,captionSide,caret,caretColor,caretShape,clear,clip,clipPath,clipRule,color,colorInterpolationFilters,colorScheme,columnCount,columnFill,columnGap,columnRule,columnRuleColor,columnRuleStyle,columnRuleWidth,columnSpan,columnWidth,columns,contain,containIntrinsicBlockSize,containIntrinsicHeight,containIntrinsicInlineSize,containIntrinsicSize,containIntrinsicWidth,container,containerName,containerType,content,contentVisibility,counterIncrement,counterReset,counterSet,cursor,cx,cy,d,direction,display,dominantBaseline,emptyCells,fieldSizing,fill,fillOpacity,fillRule,filter,flex,flexBasis,flexDirection,flexFlow,flexGrow,flexShrink,flexWrap,float,floodColor,floodOpacity,font,fontFamily,fontFeatureSettings,fontKerning,fontLanguageOverride,fontOpticalSizing,fontPalette,fontSize,fontSizeAdjust,fontSmooth,fontStretch,fontStyle,fontSynthesis,fontSynthesisPosition,fontSynthesisSmallCaps,fontSynthesisStyle,fontSynthesisWeight,fontVariant,fontVariantAlternates,fontVariantCaps,fontVariantEastAsian,fontVariantEmoji,fontVariantLigatures,fontVariantNumeric,fontVariantPosition,fontVariationSettings,fontWeight,forcedColorAdjust,gap,grid,gridArea,gridAutoColumns,gridAutoFlow,gridAutoRows,gridColumn,gridColumnEnd,gridColumnGap,gridColumnStart,gridGap,gridRow,gridRowEnd,gridRowGap,gridRowStart,gridTemplate,gridTemplateAreas,gridTemplateColumns,gridTemplateRows,hangingPunctuation,height,hyphenateCharacter,hyphenateLimitChars,hyphens,imageOrientation,imageRendering,imageResolution,imeMode,initialLetter,initialLetterAlign,inlineSize,inset,insetBlock,insetBlockEnd,insetBlockStart,insetInline,insetInlineEnd,insetInlineStart,interpolateSize,isolation,justifyContent,justifyItems,justifySelf,justifyTracks,left,letterSpacing,lightingColor,lineBreak,lineClamp,lineHeight,lineHeightStep,listStyle,listStyleImage,listStylePosition,listStyleType,margin,marginBlock,marginBlockEnd,marginBlockStart,marginBottom,marginInline,marginInlineEnd,marginInlineStart,marginLeft,marginRight,marginTop,marginTrim,marker,markerEnd,markerMid,markerStart,mask,maskBorder,maskBorderMode,maskBorderOutset,maskBorderRepeat,maskBorderSlice,maskBorderSource,maskBorderWidth,maskClip,maskComposite,maskImage,maskMode,maskOrigin,maskPosition,maskRepeat,maskSize,maskType,masonryAutoFlow,mathDepth,mathShift,mathStyle,maxBlockSize,maxHeight,maxInlineSize,maxLines,maxWidth,minBlockSize,minHeight,minInlineSize,minWidth,mixBlendMode,objectFit,objectPosition,offset,offsetAnchor,offsetDistance,offsetPath,offsetPosition,offsetRotate,opacity,order,orphans,outline,outlineColor,outlineOffset,outlineStyle,outlineWidth,overflow,overflowAnchor,overflowBlock,overflowClipBox,overflowClipMargin,overflowInline,overflowWrap,overflowX,overflowY,overlay,overscrollBehavior,overscrollBehaviorBlock,overscrollBehaviorInline,overscrollBehaviorX,overscrollBehaviorY,padding,paddingBlock,paddingBlockEnd,paddingBlockStart,paddingBottom,paddingInline,paddingInlineEnd,paddingInlineStart,paddingLeft,paddingRight,paddingTop,page,pageBreakAfter,pageBreakBefore,pageBreakInside,paintOrder,perspective,perspectiveOrigin,placeContent,placeItems,placeSelf,pointerEvents,position,positionAnchor,positionArea,positionTry,positionTryFallbacks,positionTryOrder,positionVisibility,printColorAdjust,quotes,r,resize,right,rotate,rowGap,rubyAlign,rubyMerge,rubyPosition,rx,ry,scale,scrollBehavior,scrollMargin,scrollMarginBlock,scrollMarginBlockEnd,scrollMarginBlockStart,scrollMarginBottom,scrollMarginInline,scrollMarginInlineEnd,scrollMarginInlineStart,scrollMarginLeft,scrollMarginRight,scrollMarginTop,scrollPadding,scrollPaddingBlock,scrollPaddingBlockEnd,scrollPaddingBlockStart,scrollPaddingBottom,scrollPaddingInline,scrollPaddingInlineEnd,scrollPaddingInlineStart,scrollPaddingLeft,scrollPaddingRight,scrollPaddingTop,scrollSnapAlign,scrollSnapCoordinate,scrollSnapDestination,scrollSnapPointsX,scrollSnapPointsY,scrollSnapStop,scrollSnapType,scrollSnapTypeX,scrollSnapTypeY,scrollTimeline,scrollTimelineAxis,scrollTimelineName,scrollbarColor,scrollbarGutter,scrollbarWidth,shapeImageThreshold,shapeMargin,shapeOutside,shapeRendering,stopColor,stopOpacity,stroke,strokeDasharray,strokeDashoffset,strokeLinecap,strokeLinejoin,strokeMiterlimit,strokeOpacity,strokeWidth,tabSize,tableLayout,textAlign,textAlignLast,textAnchor,textBox,textBoxEdge,textBoxTrim,textCombineUpright,textDecoration,textDecorationColor,textDecorationLine,textDecorationSkip,textDecorationSkipInk,textDecorationStyle,textDecorationThickness,textEmphasis,textEmphasisColor,textEmphasisPosition,textEmphasisStyle,textIndent,textJustify,textOrientation,textOverflow,textRendering,textShadow,textSizeAdjust,textSpacingTrim,textTransform,textUnderlineOffset,textUnderlinePosition,textWrap,textWrapMode,textWrapStyle,timelineScope,top,touchAction,transform,transformBox,transformOrigin,transformStyle,transition,transitionBehavior,transitionDelay,transitionDuration,transitionProperty,transitionTimingFunction,translate,unicodeBidi,userSelect,vectorEffect,verticalAlign,viewTimeline,viewTimelineAxis,viewTimelineInset,viewTimelineName,viewTransitionName,visibility,whiteSpace,whiteSpaceCollapse,widows,width,willChange,wordBreak,wordSpacing,wordWrap,writingMode,x,y,zIndex,zoom,alignmentBaseline,baselineShift,colorInterpolation,colorRendering,glyphOrientationVertical", a = n.split(",").concat(i), l = new Map(a.map((e) => [e, !0])), d = /&|@/, s = /* @__PURE__ */ t((e) => l.has(e) || e.startsWith("--") || d.test(e));
|
|
3
|
-
const g = (e) => o(e, s);
|
|
4
|
-
export {
|
|
5
|
-
s as i,
|
|
6
|
-
g as s
|
|
7
|
-
};
|
package/dist/panda.config.d.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This function generates a scoped class name for CSS modules.
|
|
3
|
-
* We override it so we can have a predictable class name for consumers to use.
|
|
4
|
-
* @param name The class name
|
|
5
|
-
* @param filename The file name where the class name exists
|
|
6
|
-
* @returns a scoped class name, in the format of `ids-${component}--${class}-${version}`
|
|
7
|
-
*/
|
|
8
|
-
export declare const generateScopedName: (name: string, filename: string) => string;
|
package/dist/sva-TRyehFkb.js
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { g as f, a as j, m as v, b as O, s as _ } from "./cva-B2x59Dph.js";
|
|
2
|
-
import { c as V } from "./cx-DN21T1EH.js";
|
|
3
|
-
const y = (s, r) => s + "__" + r;
|
|
4
|
-
function d(s) {
|
|
5
|
-
const r = Object.entries(f(s)).map(([t, a]) => [t, j(a)]), i = s.defaultVariants ?? {};
|
|
6
|
-
function m(t) {
|
|
7
|
-
const a = r.map(([e, n]) => [e, V(n(t), s.className && y(s.className, e))]);
|
|
8
|
-
return Object.fromEntries(a);
|
|
9
|
-
}
|
|
10
|
-
function p(t) {
|
|
11
|
-
const a = r.map(([e, n]) => [e, n.raw(t)]);
|
|
12
|
-
return Object.fromEntries(a);
|
|
13
|
-
}
|
|
14
|
-
const c = s.variants ?? {}, o = Object.keys(c);
|
|
15
|
-
function l(t) {
|
|
16
|
-
return _(t, o);
|
|
17
|
-
}
|
|
18
|
-
const u = (t) => ({ ...i || {}, ...O(t) }), b = Object.fromEntries(
|
|
19
|
-
Object.entries(c).map(([t, a]) => [t, Object.keys(a)])
|
|
20
|
-
);
|
|
21
|
-
return Object.assign(v(m), {
|
|
22
|
-
__cva__: !1,
|
|
23
|
-
raw: p,
|
|
24
|
-
variantMap: b,
|
|
25
|
-
variantKeys: o,
|
|
26
|
-
splitVariantProps: l,
|
|
27
|
-
getVariantProps: u
|
|
28
|
-
});
|
|
29
|
-
}
|
|
30
|
-
export {
|
|
31
|
-
d as s
|
|
32
|
-
};
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* The atomic recipe is a function that takes a variant and returns a class name object. It can be used to create a component without JSX (eg. as a utility class).
|
|
3
|
-
*
|
|
4
|
-
* [Learn more](https://panda-css.com/docs/concepts/recipes#atomic-recipe-or-cva)
|
|
5
|
-
*/
|
|
6
|
-
export declare const buttonRecipe: import('@pandacss/dev').SlotRecipeConfig;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const tableRecipe: import('@pandacss/dev').SlotRecipeConfig;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const textRecipe: import('@pandacss/dev').RecipeConfig<import('@pandacss/dev').RecipeVariantRecord>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const globalCss: import('@pandacss/dev').GlobalStyleObject;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const animationStyles: import('@pandacss/types').AnimationStyles;
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
export declare const borders: {
|
|
2
|
-
alert: {
|
|
3
|
-
description: string;
|
|
4
|
-
value: {
|
|
5
|
-
width: string;
|
|
6
|
-
style: "solid";
|
|
7
|
-
color: string;
|
|
8
|
-
};
|
|
9
|
-
};
|
|
10
|
-
divider: {
|
|
11
|
-
description: string;
|
|
12
|
-
value: {
|
|
13
|
-
width: string;
|
|
14
|
-
style: "solid";
|
|
15
|
-
color: "var(--iress-colour-neutral-30, #E4E5E7)";
|
|
16
|
-
};
|
|
17
|
-
};
|
|
18
|
-
input: {
|
|
19
|
-
description: string;
|
|
20
|
-
value: {
|
|
21
|
-
width: string;
|
|
22
|
-
style: "solid";
|
|
23
|
-
color: "var(--iress-colour-neutral-70, #6D7278)";
|
|
24
|
-
};
|
|
25
|
-
};
|
|
26
|
-
placeholder: {
|
|
27
|
-
description: string;
|
|
28
|
-
value: {
|
|
29
|
-
width: string;
|
|
30
|
-
style: "solid";
|
|
31
|
-
color: "var(--iress-colour-neutral-30, #E4E5E7)";
|
|
32
|
-
};
|
|
33
|
-
};
|
|
34
|
-
hover: {
|
|
35
|
-
description: string;
|
|
36
|
-
value: {
|
|
37
|
-
width: string;
|
|
38
|
-
style: "solid";
|
|
39
|
-
color: "var(--iress-colour-primary-fill, #13213F)";
|
|
40
|
-
};
|
|
41
|
-
};
|
|
42
|
-
table: {
|
|
43
|
-
description: string;
|
|
44
|
-
value: {
|
|
45
|
-
width: string;
|
|
46
|
-
style: "solid";
|
|
47
|
-
color: "var(--iress-colour-neutral-40, #D7D8DA)";
|
|
48
|
-
};
|
|
49
|
-
};
|
|
50
|
-
};
|