@heymantle/litho 0.0.3 → 0.0.4
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/dist/cjs/components/ActionList.js +50 -16
- package/dist/cjs/components/AnnouncementBar.js +10 -3
- package/dist/cjs/components/AppProvider.js +10 -1
- package/dist/cjs/components/Autocomplete.js +33 -11
- package/dist/cjs/components/Badge.js +2 -1
- package/dist/cjs/components/Banner.js +35 -31
- package/dist/cjs/components/Box.js +5 -3
- package/dist/cjs/components/Button.js +34 -12
- package/dist/cjs/components/Card.js +5 -45
- package/dist/cjs/components/Checkbox.js +16 -6
- package/dist/cjs/components/ChoiceList.js +7 -4
- package/dist/cjs/components/ColorField.js +8 -3
- package/dist/cjs/components/DatePicker.js +13 -8
- package/dist/cjs/components/DropZone.js +33 -18
- package/dist/cjs/components/EmptyState.js +15 -7
- package/dist/cjs/components/Filters.js +32 -20
- package/dist/cjs/components/FooterHelp.js +7 -2
- package/dist/cjs/components/Form.js +18 -3
- package/dist/cjs/components/Frame.js +40 -15
- package/dist/cjs/components/FrameSaveBar.js +21 -12
- package/dist/cjs/components/Layout.js +3 -3
- package/dist/cjs/components/LayoutSection.js +2 -2
- package/dist/cjs/components/Link.js +6 -2
- package/dist/cjs/components/List.js +1 -0
- package/dist/cjs/components/Listbox.js +9 -4
- package/dist/cjs/components/Modal.js +26 -17
- package/dist/cjs/components/Navigation.js +30 -20
- package/dist/cjs/components/Page.js +8 -3
- package/dist/cjs/components/Pagination.js +11 -4
- package/dist/cjs/components/Pane.js +118 -35
- package/dist/cjs/components/Popover.js +59 -6
- package/dist/cjs/components/RangeSlider.js +11 -4
- package/dist/cjs/components/ResourceList.js +9 -3
- package/dist/cjs/components/Select.js +2 -0
- package/dist/cjs/components/Table.js +32 -19
- package/dist/cjs/components/Text.js +8 -5
- package/dist/cjs/components/TextField.js +23 -13
- package/dist/cjs/components/Thumbnail.js +7 -2
- package/dist/cjs/components/TimePicker.js +7 -2
- package/dist/cjs/components/Tip.js +10 -4
- package/dist/cjs/components/Tooltip.js +16 -8
- package/dist/cjs/components/TopBar.js +17 -9
- package/dist/cjs/dev/verify-publish.js +37 -4
- package/dist/cjs/postcss.config.js +21 -0
- package/dist/cjs/stories/ActionList.stories.js +365 -0
- package/dist/cjs/stories/AnnouncementBar.stories.js +244 -0
- package/dist/cjs/stories/Autocomplete.stories.js +871 -0
- package/dist/cjs/stories/Badge.stories.js +183 -0
- package/dist/cjs/stories/Banner.stories.js +201 -0
- package/dist/cjs/stories/Box.stories.js +599 -0
- package/dist/cjs/stories/Button.stories.js +325 -0
- package/dist/cjs/stories/ButtonGroup.stories.js +404 -0
- package/dist/cjs/stories/Card.stories.js +278 -0
- package/dist/cjs/stories/Checkbox.stories.js +266 -0
- package/dist/cjs/stories/ChoiceList.stories.js +884 -0
- package/dist/cjs/stories/Collapsible.stories.js +905 -0
- package/dist/cjs/stories/ColorField.stories.js +883 -0
- package/dist/cjs/stories/ContextualSaveBar.stories.js +970 -0
- package/dist/cjs/stories/DatePicker.stories.js +584 -0
- package/dist/cjs/stories/Divider.stories.js +759 -0
- package/dist/cjs/stories/DropZone.stories.js +1205 -0
- package/dist/cjs/stories/EmptyState.stories.js +296 -0
- package/dist/cjs/stories/Filters.stories.js +1353 -0
- package/dist/cjs/stories/FooterHelp.stories.js +869 -0
- package/dist/cjs/stories/Form.stories.js +940 -0
- package/dist/cjs/stories/Grid.stories.js +1199 -0
- package/dist/cjs/stories/HorizontalStack.stories.js +1064 -0
- package/dist/cjs/stories/Icon.stories.js +596 -0
- package/dist/cjs/stories/Image.stories.js +883 -0
- package/dist/cjs/stories/InlineError.stories.js +710 -0
- package/dist/cjs/stories/Label.stories.js +665 -0
- package/dist/cjs/stories/Layout.stories.js +685 -0
- package/dist/cjs/stories/LayoutSection.stories.js +1267 -0
- package/dist/cjs/stories/Link.stories.js +423 -0
- package/dist/cjs/stories/List.stories.js +1031 -0
- package/dist/cjs/stories/Listbox.stories.js +820 -0
- package/dist/cjs/stories/Loading.stories.js +900 -0
- package/dist/cjs/stories/Modal.stories.js +363 -0
- package/dist/cjs/stories/Navigation.stories.js +605 -0
- package/dist/cjs/stories/Page.stories.js +318 -0
- package/dist/cjs/stories/Pagination.stories.js +438 -0
- package/dist/cjs/stories/Pane.stories.js +1535 -0
- package/dist/cjs/stories/Popover.stories.js +637 -0
- package/dist/cjs/stories/PopoverManager.stories.js +1225 -0
- package/dist/cjs/stories/ProgressBar.stories.js +506 -0
- package/dist/cjs/stories/RadioButton.stories.js +642 -0
- package/dist/cjs/stories/RadioButtonCard.stories.js +816 -0
- package/dist/cjs/stories/RangeSlider.stories.js +892 -0
- package/dist/cjs/stories/ResourceList.stories.js +1067 -0
- package/dist/cjs/stories/Select.stories.js +413 -0
- package/dist/cjs/stories/SkeletonText.stories.js +776 -0
- package/dist/cjs/stories/Spinner.stories.js +396 -0
- package/dist/cjs/stories/Table.stories.js +628 -0
- package/dist/cjs/stories/Tabs.stories.js +723 -0
- package/dist/cjs/stories/Tag.stories.js +620 -0
- package/dist/cjs/stories/Text.stories.js +262 -0
- package/dist/cjs/stories/TextField.stories.js +377 -0
- package/dist/cjs/stories/Thumbnail.stories.js +859 -0
- package/dist/cjs/stories/TimePicker.stories.js +966 -0
- package/dist/cjs/stories/Tip.stories.js +753 -0
- package/dist/cjs/stories/Tooltip.stories.js +357 -0
- package/dist/cjs/stories/TopBar.stories.js +155 -0
- package/dist/cjs/stories/VerticalStack.stories.js +1287 -0
- package/dist/cjs/tailwind.config.js +17 -0
- package/dist/cjs/utilities/transformers.js +66 -0
- package/dist/cjs/vite.config.js +35 -0
- package/dist/esm/components/ActionList.js +41 -12
- package/dist/esm/components/AnnouncementBar.js +3 -1
- package/dist/esm/components/AppProvider.js +10 -1
- package/dist/esm/components/Autocomplete.js +21 -4
- package/dist/esm/components/Badge.js +2 -2
- package/dist/esm/components/Banner.js +20 -21
- package/dist/esm/components/Box.js +5 -4
- package/dist/esm/components/Button.js +24 -7
- package/dist/esm/components/Card.js +5 -4
- package/dist/esm/components/Checkbox.js +6 -1
- package/dist/esm/components/ChoiceList.js +7 -4
- package/dist/esm/components/ColorField.js +1 -1
- package/dist/esm/components/DatePicker.js +6 -1
- package/dist/esm/components/DropZone.js +14 -4
- package/dist/esm/components/EmptyState.js +4 -1
- package/dist/esm/components/Filters.js +10 -3
- package/dist/esm/components/FooterHelp.js +1 -1
- package/dist/esm/components/Form.js +18 -3
- package/dist/esm/components/Frame.js +18 -6
- package/dist/esm/components/FrameSaveBar.js +10 -6
- package/dist/esm/components/InlineError.js +1 -1
- package/dist/esm/components/Layout.js +4 -4
- package/dist/esm/components/LayoutSection.js +2 -2
- package/dist/esm/components/Link.js +6 -2
- package/dist/esm/components/List.js +1 -0
- package/dist/esm/components/Listbox.js +4 -4
- package/dist/esm/components/Modal.js +8 -4
- package/dist/esm/components/Navigation.js +16 -11
- package/dist/esm/components/Page.js +9 -4
- package/dist/esm/components/Pagination.js +3 -1
- package/dist/esm/components/Pane.js +114 -36
- package/dist/esm/components/Popover.js +18 -6
- package/dist/esm/components/RangeSlider.js +3 -1
- package/dist/esm/components/ResourceList.js +2 -1
- package/dist/esm/components/Select.js +2 -0
- package/dist/esm/components/Table.js +16 -3
- package/dist/esm/components/Text.js +8 -6
- package/dist/esm/components/TextField.js +6 -1
- package/dist/esm/components/Thumbnail.js +1 -1
- package/dist/esm/components/TimePicker.js +1 -1
- package/dist/esm/components/Tip.js +3 -2
- package/dist/esm/components/Tooltip.js +4 -1
- package/dist/esm/components/TopBar.js +7 -4
- package/dist/esm/dev/verify-publish.js +37 -4
- package/dist/esm/postcss.config.js +6 -0
- package/dist/esm/stories/ActionList.stories.js +327 -0
- package/dist/esm/stories/AnnouncementBar.stories.js +212 -0
- package/dist/esm/stories/Autocomplete.stories.js +833 -0
- package/dist/esm/stories/Badge.stories.js +138 -0
- package/dist/esm/stories/Banner.stories.js +159 -0
- package/dist/esm/stories/Box.stories.js +558 -0
- package/dist/esm/stories/Button.stories.js +277 -0
- package/dist/esm/stories/ButtonGroup.stories.js +357 -0
- package/dist/esm/stories/Card.stories.js +240 -0
- package/dist/esm/stories/Checkbox.stories.js +219 -0
- package/dist/esm/stories/ChoiceList.stories.js +834 -0
- package/dist/esm/stories/Collapsible.stories.js +867 -0
- package/dist/esm/stories/ColorField.stories.js +842 -0
- package/dist/esm/stories/ContextualSaveBar.stories.js +938 -0
- package/dist/esm/stories/DatePicker.stories.js +537 -0
- package/dist/esm/stories/Divider.stories.js +715 -0
- package/dist/esm/stories/DropZone.stories.js +1161 -0
- package/dist/esm/stories/EmptyState.stories.js +246 -0
- package/dist/esm/stories/Filters.stories.js +1315 -0
- package/dist/esm/stories/FooterHelp.stories.js +813 -0
- package/dist/esm/stories/Form.stories.js +905 -0
- package/dist/esm/stories/Grid.stories.js +1152 -0
- package/dist/esm/stories/HorizontalStack.stories.js +1011 -0
- package/dist/esm/stories/Icon.stories.js +555 -0
- package/dist/esm/stories/Image.stories.js +836 -0
- package/dist/esm/stories/InlineError.stories.js +666 -0
- package/dist/esm/stories/Label.stories.js +612 -0
- package/dist/esm/stories/Layout.stories.js +647 -0
- package/dist/esm/stories/LayoutSection.stories.js +1226 -0
- package/dist/esm/stories/Link.stories.js +379 -0
- package/dist/esm/stories/List.stories.js +975 -0
- package/dist/esm/stories/Listbox.stories.js +776 -0
- package/dist/esm/stories/Loading.stories.js +850 -0
- package/dist/esm/stories/Modal.stories.js +322 -0
- package/dist/esm/stories/Navigation.stories.js +567 -0
- package/dist/esm/stories/Page.stories.js +276 -0
- package/dist/esm/stories/Pagination.stories.js +394 -0
- package/dist/esm/stories/Pane.stories.js +1497 -0
- package/dist/esm/stories/Popover.stories.js +605 -0
- package/dist/esm/stories/PopoverManager.stories.js +1193 -0
- package/dist/esm/stories/ProgressBar.stories.js +465 -0
- package/dist/esm/stories/RadioButton.stories.js +598 -0
- package/dist/esm/stories/RadioButtonCard.stories.js +772 -0
- package/dist/esm/stories/RangeSlider.stories.js +845 -0
- package/dist/esm/stories/ResourceList.stories.js +1029 -0
- package/dist/esm/stories/Select.stories.js +363 -0
- package/dist/esm/stories/SkeletonText.stories.js +717 -0
- package/dist/esm/stories/Spinner.stories.js +355 -0
- package/dist/esm/stories/Table.stories.js +584 -0
- package/dist/esm/stories/Tabs.stories.js +685 -0
- package/dist/esm/stories/Tag.stories.js +573 -0
- package/dist/esm/stories/Text.stories.js +217 -0
- package/dist/esm/stories/TextField.stories.js +332 -0
- package/dist/esm/stories/Thumbnail.stories.js +806 -0
- package/dist/esm/stories/TimePicker.stories.js +910 -0
- package/dist/esm/stories/Tip.stories.js +706 -0
- package/dist/esm/stories/Tooltip.stories.js +313 -0
- package/dist/esm/stories/TopBar.stories.js +114 -0
- package/dist/esm/stories/VerticalStack.stories.js +1240 -0
- package/dist/esm/tailwind.config.js +7 -0
- package/dist/esm/utilities/transformers.js +47 -0
- package/dist/esm/vite.config.js +20 -0
- package/dist/types/components/ActionList.d.ts +122 -0
- package/dist/types/components/ActionList.d.ts.map +1 -0
- package/dist/types/components/AnnouncementBar.d.ts +21 -0
- package/dist/types/components/AnnouncementBar.d.ts.map +1 -0
- package/dist/types/components/AppProvider.d.ts +61 -0
- package/dist/types/components/AppProvider.d.ts.map +1 -0
- package/dist/types/components/Autocomplete.d.ts +130 -0
- package/dist/types/components/Autocomplete.d.ts.map +1 -0
- package/dist/types/components/Badge.d.ts +21 -0
- package/dist/types/components/Badge.d.ts.map +1 -0
- package/dist/types/components/Banner.d.ts +78 -0
- package/dist/types/components/Banner.d.ts.map +1 -0
- package/dist/types/components/Box.d.ts +70 -0
- package/dist/types/components/Box.d.ts.map +1 -0
- package/dist/types/components/Button.d.ts +123 -0
- package/dist/types/components/Button.d.ts.map +1 -0
- package/dist/types/components/ButtonGroup.d.ts +26 -0
- package/dist/types/components/ButtonGroup.d.ts.map +1 -0
- package/dist/types/components/Card.d.ts +139 -0
- package/dist/types/components/Card.d.ts.map +1 -0
- package/dist/types/components/Checkbox.d.ts +56 -0
- package/dist/types/components/Checkbox.d.ts.map +1 -0
- package/dist/types/components/ChoiceList.d.ts +69 -0
- package/dist/types/components/ChoiceList.d.ts.map +1 -0
- package/dist/types/components/Collapsible.d.ts +17 -0
- package/dist/types/components/Collapsible.d.ts.map +1 -0
- package/dist/types/components/ColorField.d.ts +36 -0
- package/dist/types/components/ColorField.d.ts.map +1 -0
- package/dist/types/components/ContextualSaveBar.d.ts +22 -0
- package/dist/types/components/ContextualSaveBar.d.ts.map +1 -0
- package/dist/types/components/DatePicker.d.ts +66 -0
- package/dist/types/components/DatePicker.d.ts.map +1 -0
- package/dist/types/components/Divider.d.ts +21 -0
- package/dist/types/components/Divider.d.ts.map +1 -0
- package/dist/types/components/DropZone.d.ts +108 -0
- package/dist/types/components/DropZone.d.ts.map +1 -0
- package/dist/types/components/EmptyState.d.ts +52 -0
- package/dist/types/components/EmptyState.d.ts.map +1 -0
- package/dist/types/components/Filters.d.ts +166 -0
- package/dist/types/components/Filters.d.ts.map +1 -0
- package/dist/types/components/FooterHelp.d.ts +21 -0
- package/dist/types/components/FooterHelp.d.ts.map +1 -0
- package/dist/types/components/Form.d.ts +39 -0
- package/dist/types/components/Form.d.ts.map +1 -0
- package/dist/types/components/Frame.d.ts +51 -0
- package/dist/types/components/Frame.d.ts.map +1 -0
- package/dist/types/components/FrameSaveBar.d.ts +8 -0
- package/dist/types/components/FrameSaveBar.d.ts.map +1 -0
- package/dist/types/components/Grid.d.ts +39 -0
- package/dist/types/components/Grid.d.ts.map +1 -0
- package/dist/types/components/HorizontalStack.d.ts +36 -0
- package/dist/types/components/HorizontalStack.d.ts.map +1 -0
- package/dist/types/components/Icon.d.ts +43 -0
- package/dist/types/components/Icon.d.ts.map +1 -0
- package/dist/types/components/Image.d.ts +45 -0
- package/dist/types/components/Image.d.ts.map +1 -0
- package/dist/types/components/InlineError.d.ts +22 -0
- package/dist/types/components/InlineError.d.ts.map +1 -0
- package/dist/types/components/Label.d.ts +28 -0
- package/dist/types/components/Label.d.ts.map +1 -0
- package/dist/types/components/Layout.d.ts +44 -0
- package/dist/types/components/Layout.d.ts.map +1 -0
- package/dist/types/components/LayoutSection.d.ts +24 -0
- package/dist/types/components/LayoutSection.d.ts.map +1 -0
- package/dist/types/components/Link.d.ts +38 -0
- package/dist/types/components/Link.d.ts.map +1 -0
- package/dist/types/components/List.d.ts +33 -0
- package/dist/types/components/List.d.ts.map +1 -0
- package/dist/types/components/Listbox.d.ts +34 -0
- package/dist/types/components/Listbox.d.ts.map +1 -0
- package/dist/types/components/Loading.d.ts +13 -0
- package/dist/types/components/Loading.d.ts.map +1 -0
- package/dist/types/components/Modal.d.ts +75 -0
- package/dist/types/components/Modal.d.ts.map +1 -0
- package/dist/types/components/Navigation.d.ts +105 -0
- package/dist/types/components/Navigation.d.ts.map +1 -0
- package/dist/types/components/Page.d.ts +59 -0
- package/dist/types/components/Page.d.ts.map +1 -0
- package/dist/types/components/Pagination.d.ts +39 -0
- package/dist/types/components/Pagination.d.ts.map +1 -0
- package/dist/types/components/Pane.d.ts +11 -0
- package/dist/types/components/Pane.d.ts.map +1 -0
- package/dist/types/components/Popover.d.ts +56 -0
- package/dist/types/components/Popover.d.ts.map +1 -0
- package/dist/types/components/PopoverManager.d.ts +3 -0
- package/dist/types/components/PopoverManager.d.ts.map +1 -0
- package/dist/types/components/ProgressBar.d.ts +24 -0
- package/dist/types/components/ProgressBar.d.ts.map +1 -0
- package/dist/types/components/RadioButton.d.ts +39 -0
- package/dist/types/components/RadioButton.d.ts.map +1 -0
- package/dist/types/components/RadioButtonCard.d.ts +41 -0
- package/dist/types/components/RadioButtonCard.d.ts.map +1 -0
- package/dist/types/components/RangeSlider.d.ts +44 -0
- package/dist/types/components/RangeSlider.d.ts.map +1 -0
- package/dist/types/components/ResourceList.d.ts +54 -0
- package/dist/types/components/ResourceList.d.ts.map +1 -0
- package/dist/types/components/Select.d.ts +48 -0
- package/dist/types/components/Select.d.ts.map +1 -0
- package/dist/types/components/SkeletonText.d.ts +28 -0
- package/dist/types/components/SkeletonText.d.ts.map +1 -0
- package/dist/types/components/Spinner.d.ts +18 -0
- package/dist/types/components/Spinner.d.ts.map +1 -0
- package/dist/types/components/Table.d.ts +197 -0
- package/dist/types/components/Table.d.ts.map +1 -0
- package/dist/types/components/Tabs.d.ts +41 -0
- package/dist/types/components/Tabs.d.ts.map +1 -0
- package/dist/types/components/Tag.d.ts +26 -0
- package/dist/types/components/Tag.d.ts.map +1 -0
- package/dist/types/components/Text.d.ts +32 -0
- package/dist/types/components/Text.d.ts.map +1 -0
- package/dist/types/components/TextField.d.ts +109 -0
- package/dist/types/components/TextField.d.ts.map +1 -0
- package/dist/types/components/Thumbnail.d.ts +18 -0
- package/dist/types/components/Thumbnail.d.ts.map +1 -0
- package/dist/types/components/TimePicker.d.ts +3 -0
- package/dist/types/components/TimePicker.d.ts.map +1 -0
- package/dist/types/components/Tip.d.ts +23 -0
- package/dist/types/components/Tip.d.ts.map +1 -0
- package/dist/types/components/Tooltip.d.ts +84 -0
- package/dist/types/components/Tooltip.d.ts.map +1 -0
- package/dist/types/components/TopBar.d.ts +43 -0
- package/dist/types/components/TopBar.d.ts.map +1 -0
- package/dist/types/components/VerticalStack.d.ts +27 -0
- package/dist/types/components/VerticalStack.d.ts.map +1 -0
- package/dist/types/index.d.ts +62 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/styles/Table.d.ts +1570 -0
- package/dist/types/styles/Table.d.ts.map +1 -0
- package/dist/types/utilities/dates.d.ts +46 -0
- package/dist/types/utilities/dates.d.ts.map +1 -0
- package/dist/types/utilities/transformers.d.ts +4 -0
- package/dist/types/utilities/transformers.d.ts.map +1 -0
- package/dist/types/utilities/useIndexResourceState.d.ts +21 -0
- package/dist/types/utilities/useIndexResourceState.d.ts.map +1 -0
- package/dist/types/utilities/useMounted.d.ts +2 -0
- package/dist/types/utilities/useMounted.d.ts.map +1 -0
- package/dist/types/utilities/useTableScrollState.d.ts +29 -0
- package/dist/types/utilities/useTableScrollState.d.ts.map +1 -0
- package/index.css +6 -0
- package/package.json +37 -6
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
export default Popover;
|
|
2
|
+
/**
|
|
3
|
+
* Popover component for displaying an overlay near an activator.
|
|
4
|
+
*
|
|
5
|
+
* @param {Object} props - The component props.
|
|
6
|
+
* @param {string|React.ComponentType} [props.activatorWrapper="div"] - The wrapper element for the activator.
|
|
7
|
+
* @param {React.ReactNode} props.activator - The activator element that triggers the popover.
|
|
8
|
+
* @param {string} [props.activatorDisplayType="inline-block"] - The display type for the activator.
|
|
9
|
+
* @param {React.ReactNode} props.children - The content of the popover.
|
|
10
|
+
* @param {Function} [props.onClose] - Callback function triggered when the popover is closed.
|
|
11
|
+
* @param {boolean} [props.active=false] - Whether the popover is currently active.
|
|
12
|
+
* @param {boolean} [props.fixed=false] - Whether the popover is fixed or absolute positioned.
|
|
13
|
+
* @param {number} [props.zIndexOverride] - Custom z-index for the popover.
|
|
14
|
+
* @param {boolean} [props.sectioned=false] - Whether the popover content is sectioned with padding.
|
|
15
|
+
* @param {string} [props.preferredAlignment="center"] - Preferred alignment for the popover (left, center, right).
|
|
16
|
+
* @param {string} [props.preferredPosition="below"] - Preferred position for the popover (above, below, cover).
|
|
17
|
+
* @param {string} [props.className] - Additional class name for the popover.
|
|
18
|
+
* @param {string} [props.containerClassName] - Additional class name for the popover container.
|
|
19
|
+
* @returns {JSX.Element} The rendered popover component.
|
|
20
|
+
*/
|
|
21
|
+
declare function Popover(props?: {
|
|
22
|
+
activatorWrapper?: string | React.ComponentType;
|
|
23
|
+
activator: React.ReactNode;
|
|
24
|
+
activatorDisplayType?: string;
|
|
25
|
+
children: React.ReactNode;
|
|
26
|
+
onClose?: Function;
|
|
27
|
+
active?: boolean;
|
|
28
|
+
fixed?: boolean;
|
|
29
|
+
zIndexOverride?: number;
|
|
30
|
+
sectioned?: boolean;
|
|
31
|
+
preferredAlignment?: string;
|
|
32
|
+
preferredPosition?: string;
|
|
33
|
+
className?: string;
|
|
34
|
+
containerClassName?: string;
|
|
35
|
+
}): JSX.Element;
|
|
36
|
+
declare namespace Popover {
|
|
37
|
+
let displayName: string;
|
|
38
|
+
/**
|
|
39
|
+
* Section component for use within the Popover.
|
|
40
|
+
*
|
|
41
|
+
* @param {Object} props - The component props.
|
|
42
|
+
* @param {React.ReactNode} [props.children] - The content of the section.
|
|
43
|
+
* @param {boolean} [props.padded=false] - Whether the section has padding.
|
|
44
|
+
* @returns {JSX.Element} The rendered section.
|
|
45
|
+
*/
|
|
46
|
+
function Section(props?: {
|
|
47
|
+
children?: React.ReactNode;
|
|
48
|
+
padded?: boolean;
|
|
49
|
+
}): JSX.Element;
|
|
50
|
+
namespace Section {
|
|
51
|
+
let displayName_1: string;
|
|
52
|
+
export { displayName_1 as displayName };
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
import React from "react";
|
|
56
|
+
//# sourceMappingURL=Popover.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Popover.d.ts","sourceRoot":"","sources":["../../../components/Popover.js"],"names":[],"mappings":";AAyBA;;;;;;;;;;;;;;;;;;GAkBG;AAEH,iCAhBG;IAA2C,gBAAgB,GAAnD,MAAM,GAAC,KAAK,CAAC,aAAa;IACH,SAAS,EAAhC,KAAK,CAAC,SAAS;IACA,oBAAoB,GAAnC,MAAM;IACiB,QAAQ,EAA/B,KAAK,CAAC,SAAS;IACE,OAAO;IACR,MAAM,GAAtB,OAAO;IACS,KAAK,GAArB,OAAO;IACQ,cAAc,GAA7B,MAAM;IACU,SAAS,GAAzB,OAAO;IACQ,kBAAkB,GAAjC,MAAM;IACS,iBAAiB,GAAhC,MAAM;IACS,SAAS,GAAxB,MAAM;IACS,kBAAkB,GAAjC,MAAM;CACd,GAAU,GAAG,CAAC,OAAO,CA6QvB;;;IAgBD;;;;;;;OAOG;IAEH,yBALG;QAAgC,QAAQ,GAAhC,KAAK,CAAC,SAAS;QACC,MAAM,GAAtB,OAAO;KACf,GAAU,GAAG,CAAC,OAAO,CAYvB;;;;;;kBAvVmF,OAAO"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PopoverManager.d.ts","sourceRoot":"","sources":["../../../components/PopoverManager.js"],"names":[],"mappings":";AAEA,kCAA0C"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export default ProgressBar;
|
|
2
|
+
/**
|
|
3
|
+
* A progress bar component with configurable size, color, and animation.
|
|
4
|
+
* Can be used in single or comparison mode to show progress changes.
|
|
5
|
+
*
|
|
6
|
+
* @param {Object} props - Properties to configure the progress bar.
|
|
7
|
+
* @param {number} [props.progress=0] - The progress percentage (0-100).
|
|
8
|
+
* @param {number} [props.previousProgress] - The previous period's progress percentage (0-100).
|
|
9
|
+
* @param {boolean} [props.comparisonMode=false] - Whether to show comparison between current and previous period.
|
|
10
|
+
* @param {("small"|"medium"|"large")} [props.size="medium"] - The size of the progress bar.
|
|
11
|
+
* @param {("attention"|"highlight"|"success"|"warning"|"critical"|"neutral"|"positive"|"negative")} [props.color="attention"] - The color of the progress indicator.
|
|
12
|
+
* @param {boolean} [props.animated=true] - Whether the progress bar should animate width changes.
|
|
13
|
+
*
|
|
14
|
+
* @returns {JSX.Element} The rendered progress bar component.
|
|
15
|
+
*/
|
|
16
|
+
declare function ProgressBar(props?: {
|
|
17
|
+
progress?: number;
|
|
18
|
+
previousProgress?: number;
|
|
19
|
+
comparisonMode?: boolean;
|
|
20
|
+
size?: ("small" | "medium" | "large");
|
|
21
|
+
color?: ("attention" | "highlight" | "success" | "warning" | "critical" | "neutral" | "positive" | "negative");
|
|
22
|
+
animated?: boolean;
|
|
23
|
+
}): JSX.Element;
|
|
24
|
+
//# sourceMappingURL=ProgressBar.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ProgressBar.d.ts","sourceRoot":"","sources":["../../../components/ProgressBar.js"],"names":[],"mappings":";AA2CA;;;;;;;;;;;;;GAaG;AAEH,qCAVG;IAAuB,QAAQ,GAAvB,MAAM;IACS,gBAAgB,GAA/B,MAAM;IACU,cAAc,GAA9B,OAAO;IAC4B,IAAI,GAAvC,CAAC,OAAO,GAAC,QAAQ,GAAC,OAAO,CAAC;IACuE,KAAK,GAAtG,CAAC,WAAW,GAAC,WAAW,GAAC,SAAS,GAAC,SAAS,GAAC,UAAU,GAAC,SAAS,GAAC,UAAU,GAAC,UAAU,CAAC;IACxE,QAAQ,GAAxB,OAAO;CAEf,GAAU,GAAG,CAAC,OAAO,CA6EvB"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
export default RadioButton;
|
|
2
|
+
/**
|
|
3
|
+
* RadioButton Component
|
|
4
|
+
*
|
|
5
|
+
* A custom radio button component with support for labels, help text, and extensive styling using Tailwind Variants (tv).
|
|
6
|
+
*
|
|
7
|
+
* @component
|
|
8
|
+
*
|
|
9
|
+
* @param {Object} props - Props for the RadioButton component.
|
|
10
|
+
* @param {string} [props.label] - The text label for the radio button.
|
|
11
|
+
* @param {boolean} [props.labelHidden=false] - If true, hides the label visually but keeps it available for screen readers.
|
|
12
|
+
* @param {string} [props.id] - The unique identifier for the radio input.
|
|
13
|
+
* @param {string} [props.name] - The name attribute for the radio input (must be the same for grouped buttons).
|
|
14
|
+
* @param {string} [props.value] - The value attribute for the radio input.
|
|
15
|
+
* @param {string} [props.error] - An error message associated with the radio button, if any.
|
|
16
|
+
* @param {boolean} [props.checked=false] - Indicates whether the radio button is checked.
|
|
17
|
+
* @param {boolean} [props.disabled=false] - Indicates whether the radio button is disabled.
|
|
18
|
+
* @param {string} [props.helpText] - Additional descriptive text for the radio button.
|
|
19
|
+
* @param {function} [props.onChange] - Callback function called when the radio button state changes.
|
|
20
|
+
* @param {function} [props.onFocus] - Callback function called when the radio button gains focus.
|
|
21
|
+
* @param {function} [props.onBlur] - Callback function called when the radio button loses focus.
|
|
22
|
+
*
|
|
23
|
+
* @returns {JSX.Element} The rendered RadioButton component.
|
|
24
|
+
*/
|
|
25
|
+
declare function RadioButton(props?: {
|
|
26
|
+
label?: string;
|
|
27
|
+
labelHidden?: boolean;
|
|
28
|
+
id?: string;
|
|
29
|
+
name?: string;
|
|
30
|
+
value?: string;
|
|
31
|
+
error?: string;
|
|
32
|
+
checked?: boolean;
|
|
33
|
+
disabled?: boolean;
|
|
34
|
+
helpText?: string;
|
|
35
|
+
onChange?: Function;
|
|
36
|
+
onFocus?: Function;
|
|
37
|
+
onBlur?: Function;
|
|
38
|
+
}): JSX.Element;
|
|
39
|
+
//# sourceMappingURL=RadioButton.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RadioButton.d.ts","sourceRoot":"","sources":["../../../components/RadioButton.js"],"names":[],"mappings":";AA+CA;;;;;;;;;;;;;;;;;;;;;;GAsBG;AAEH,qCAhBG;IAAuB,KAAK,GAApB,MAAM;IACU,WAAW,GAA3B,OAAO;IACQ,EAAE,GAAjB,MAAM;IACS,IAAI,GAAnB,MAAM;IACS,KAAK,GAApB,MAAM;IACS,KAAK,GAApB,MAAM;IACU,OAAO,GAAvB,OAAO;IACS,QAAQ,GAAxB,OAAO;IACQ,QAAQ,GAAvB,MAAM;IACW,QAAQ;IACR,OAAO;IACP,MAAM;CAE/B,GAAU,GAAG,CAAC,OAAO,CA+FvB"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
export default RadioButtonCard;
|
|
2
|
+
/**
|
|
3
|
+
* RadioButton Component
|
|
4
|
+
*
|
|
5
|
+
* A custom radio button component with support for labels, help text, and extensive styling using Tailwind Variants (tv).
|
|
6
|
+
*
|
|
7
|
+
* @component
|
|
8
|
+
*
|
|
9
|
+
* @param {Object} props - Props for the RadioButton component.
|
|
10
|
+
* @param {string} [props.label] - The text label for the radio button.
|
|
11
|
+
* @param {boolean} [props.labelHidden=false] - If true, hides the label visually but keeps it available for screen readers.
|
|
12
|
+
* @param {string} [props.id] - The unique identifier for the radio input.
|
|
13
|
+
* @param {string} [props.name] - The name attribute for the radio input (must be the same for grouped buttons).
|
|
14
|
+
* @param {string} [props.description] - A description of the radio button.
|
|
15
|
+
* @param {string} [props.value] - The value attribute for the radio input.
|
|
16
|
+
* @param {string} [props.error] - An error message associated with the radio button, if any.
|
|
17
|
+
* @param {boolean} [props.checked=false] - Indicates whether the radio button is checked.
|
|
18
|
+
* @param {boolean} [props.disabled=false] - Indicates whether the radio button is disabled.
|
|
19
|
+
* @param {string} [props.helpText] - Additional descriptive text for the radio button.
|
|
20
|
+
* @param {function} [props.onChange] - Callback function called when the radio button state changes.
|
|
21
|
+
* @param {function} [props.onFocus] - Callback function called when the radio button gains focus.
|
|
22
|
+
* @param {function} [props.onBlur] - Callback function called when the radio button loses focus.
|
|
23
|
+
*
|
|
24
|
+
* @returns {JSX.Element} The rendered RadioButton component.
|
|
25
|
+
*/
|
|
26
|
+
declare function RadioButtonCard(props?: {
|
|
27
|
+
label?: string;
|
|
28
|
+
labelHidden?: boolean;
|
|
29
|
+
id?: string;
|
|
30
|
+
name?: string;
|
|
31
|
+
description?: string;
|
|
32
|
+
value?: string;
|
|
33
|
+
error?: string;
|
|
34
|
+
checked?: boolean;
|
|
35
|
+
disabled?: boolean;
|
|
36
|
+
helpText?: string;
|
|
37
|
+
onChange?: Function;
|
|
38
|
+
onFocus?: Function;
|
|
39
|
+
onBlur?: Function;
|
|
40
|
+
}): JSX.Element;
|
|
41
|
+
//# sourceMappingURL=RadioButtonCard.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RadioButtonCard.d.ts","sourceRoot":"","sources":["../../../components/RadioButtonCard.js"],"names":[],"mappings":";AAiDA;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AAEH,yCAjBG;IAAuB,KAAK,GAApB,MAAM;IACU,WAAW,GAA3B,OAAO;IACQ,EAAE,GAAjB,MAAM;IACS,IAAI,GAAnB,MAAM;IACS,WAAW,GAA1B,MAAM;IACS,KAAK,GAApB,MAAM;IACS,KAAK,GAApB,MAAM;IACU,OAAO,GAAvB,OAAO;IACS,QAAQ,GAAxB,OAAO;IACQ,QAAQ,GAAvB,MAAM;IACW,QAAQ;IACR,OAAO;IACP,MAAM;CAE/B,GAAU,GAAG,CAAC,OAAO,CAwGvB"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
export default RangeSlider;
|
|
2
|
+
/**
|
|
3
|
+
* RangeSlider Component
|
|
4
|
+
*
|
|
5
|
+
* A range slider component that allows users to select a numeric value within a defined range.
|
|
6
|
+
*
|
|
7
|
+
* @component
|
|
8
|
+
* @param {Object} props - The properties for the RangeSlider component.
|
|
9
|
+
* @param {string} [props.id] - The unique ID for the slider. If not provided, a UUID will be generated.
|
|
10
|
+
* @param {string} [props.label] - The label text displayed for the slider.
|
|
11
|
+
* @param {boolean} [props.labelHidden=false] - If true, hides the label visually but keeps it accessible for screen readers.
|
|
12
|
+
* @param {string} [props.labelVariant] - Variant of the label style.
|
|
13
|
+
* @param {string} [props.tooltip] - Tooltip text for the label.
|
|
14
|
+
* @param {boolean} [props.disabled=false] - Disables the slider if true.
|
|
15
|
+
* @param {number} [props.step=1] - Step value for the slider increments.
|
|
16
|
+
* @param {string} [props.prefix] - Text to display before the slider input.
|
|
17
|
+
* @param {string} [props.prefixClasses=""] - Additional classes for the prefix text.
|
|
18
|
+
* @param {string} [props.suffix] - Text to display after the slider value input.
|
|
19
|
+
* @param {number} [props.value] - Initial value for the slider. Defaults to the minimum value.
|
|
20
|
+
* @param {number} [props.min=0] - Minimum value of the slider.
|
|
21
|
+
* @param {number} [props.max=100] - Maximum value of the slider.
|
|
22
|
+
* @param {boolean} [props.output=true] - Whether to display an output field for the slider value.
|
|
23
|
+
* @param {function} [props.onChange] - Callback function triggered when the slider value changes.
|
|
24
|
+
*
|
|
25
|
+
* @returns {JSX.Element} The rendered RangeSlider component.
|
|
26
|
+
*/
|
|
27
|
+
declare function RangeSlider(props?: {
|
|
28
|
+
id?: string;
|
|
29
|
+
label?: string;
|
|
30
|
+
labelHidden?: boolean;
|
|
31
|
+
labelVariant?: string;
|
|
32
|
+
tooltip?: string;
|
|
33
|
+
disabled?: boolean;
|
|
34
|
+
step?: number;
|
|
35
|
+
prefix?: string;
|
|
36
|
+
prefixClasses?: string;
|
|
37
|
+
suffix?: string;
|
|
38
|
+
value?: number;
|
|
39
|
+
min?: number;
|
|
40
|
+
max?: number;
|
|
41
|
+
output?: boolean;
|
|
42
|
+
onChange?: Function;
|
|
43
|
+
}): JSX.Element;
|
|
44
|
+
//# sourceMappingURL=RangeSlider.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RangeSlider.d.ts","sourceRoot":"","sources":["../../../components/RangeSlider.js"],"names":[],"mappings":";AA2CA;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AAEH,qCAnBG;IAAuB,EAAE,GAAjB,MAAM;IACS,KAAK,GAApB,MAAM;IACU,WAAW,GAA3B,OAAO;IACQ,YAAY,GAA3B,MAAM;IACS,OAAO,GAAtB,MAAM;IACU,QAAQ,GAAxB,OAAO;IACQ,IAAI,GAAnB,MAAM;IACS,MAAM,GAArB,MAAM;IACS,aAAa,GAA5B,MAAM;IACS,MAAM,GAArB,MAAM;IACS,KAAK,GAApB,MAAM;IACS,GAAG,GAAlB,MAAM;IACS,GAAG,GAAlB,MAAM;IACU,MAAM,GAAtB,OAAO;IACU,QAAQ;CAEjC,GAAU,GAAG,CAAC,OAAO,CAkHvB"}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
export default ResourceList;
|
|
2
|
+
/**
|
|
3
|
+
* ResourceList component displays a list of items with loading and empty states.
|
|
4
|
+
*
|
|
5
|
+
* @component
|
|
6
|
+
* @param {Object} props - The component props.
|
|
7
|
+
* @param {Array} [props.items=[]] - List of items to display.
|
|
8
|
+
* @param {boolean} [props.loading=false] - Whether the list is in a loading state.
|
|
9
|
+
* @param {string|React.ReactNode} [props.emptyState="No results found."] - Content to display when the list is empty.
|
|
10
|
+
* @param {Function} props.renderItem - Function to render each item in the list.
|
|
11
|
+
* @param {Object} [props.resourceName] - Object containing singular and plural resource names.
|
|
12
|
+
* @param {string} [props.resourceName.singular] - Singular resource name.
|
|
13
|
+
* @param {string} [props.resourceName.plural] - Plural resource name.
|
|
14
|
+
* @param {boolean} [props.divider=true] - Whether to show dividers between items.
|
|
15
|
+
* @param {"none"|"small"|"large"} [props.gap="none"] - Gap size between items.
|
|
16
|
+
* @returns {JSX.Element} The rendered component.
|
|
17
|
+
*/
|
|
18
|
+
declare function ResourceList(props?: {
|
|
19
|
+
items?: any[];
|
|
20
|
+
loading?: boolean;
|
|
21
|
+
emptyState?: string | React.ReactNode;
|
|
22
|
+
renderItem: Function;
|
|
23
|
+
resourceName?: {
|
|
24
|
+
singular?: string;
|
|
25
|
+
plural?: string;
|
|
26
|
+
};
|
|
27
|
+
divider?: boolean;
|
|
28
|
+
gap?: "none" | "small" | "large";
|
|
29
|
+
}): JSX.Element;
|
|
30
|
+
declare namespace ResourceList {
|
|
31
|
+
export { Item };
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Item component represents a single item in the ResourceList.
|
|
35
|
+
*
|
|
36
|
+
* @component
|
|
37
|
+
* @param {Object} props - The component props.
|
|
38
|
+
* @param {string} [props.id] - The ID of the item.
|
|
39
|
+
* @param {string} [props.accessibilityLabel] - Accessibility label for the item.
|
|
40
|
+
* @param {Function} [props.onClick] - Callback function when the item is clicked.
|
|
41
|
+
* @param {boolean} [props.selected] - Whether the item is selected.
|
|
42
|
+
* @param {React.ReactNode} props.children - The content inside the item.
|
|
43
|
+
* @param {string} [props.className] - Additional CSS classes for styling.
|
|
44
|
+
* @returns {JSX.Element} The rendered component.
|
|
45
|
+
*/
|
|
46
|
+
declare function Item(props?: {
|
|
47
|
+
id?: string;
|
|
48
|
+
accessibilityLabel?: string;
|
|
49
|
+
onClick?: Function;
|
|
50
|
+
selected?: boolean;
|
|
51
|
+
children: React.ReactNode;
|
|
52
|
+
className?: string;
|
|
53
|
+
}): JSX.Element;
|
|
54
|
+
//# sourceMappingURL=ResourceList.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ResourceList.d.ts","sourceRoot":"","sources":["../../../components/ResourceList.js"],"names":[],"mappings":";AAcA;;;;;;;;;;;;;;;GAeG;AACH,sCAXG;IAAsB,KAAK;IACH,OAAO,GAAvB,OAAO;IACwB,UAAU,GAAzC,MAAM,GAAC,KAAK,CAAC,SAAS;IACN,UAAU;IACX,YAAY,GACnC;QAAoC,QAAQ,GAApC,MAAM;QACsB,MAAM,GAAlC,MAAM;KACd;IAAwB,OAAO,GAAvB,OAAO;IACwB,GAAG,GAAlC,MAAM,GAAC,OAAO,GAAC,OAAO;CAC9B,GAAU,GAAG,CAAC,OAAO,CAkCvB;;;;AAYD;;;;;;;;;;;;GAYG;AACH,8BARG;IAAuB,EAAE,GAAjB,MAAM;IACS,kBAAkB,GAAjC,MAAM;IACW,OAAO;IACR,QAAQ,GAAxB,OAAO;IACgB,QAAQ,EAA/B,KAAK,CAAC,SAAS;IACA,SAAS,GAAxB,MAAM;CACd,GAAU,GAAG,CAAC,OAAO,CAmBvB"}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
export default Select;
|
|
2
|
+
/**
|
|
3
|
+
* @function Select
|
|
4
|
+
* @description A dropdown component that allows users to select an option from a list.
|
|
5
|
+
* @param {Object} props - The properties for the Select component.
|
|
6
|
+
* @param {Array} props.options - Array of option objects for the select dropdown. Options can include groups.
|
|
7
|
+
* @param {string} [props.label] - Label for the select input.
|
|
8
|
+
* @param {Object} [props.labelAction] - An action object for the label. Includes `onAction` and `content`.
|
|
9
|
+
* @param {boolean} [props.labelHidden] - Whether to hide the label visually.
|
|
10
|
+
* @param {boolean} [props.labelInline] - Whether to display the label inline with the select.
|
|
11
|
+
* @param {boolean} [props.disabled=false] - Whether the select is disabled.
|
|
12
|
+
* @param {string} [props.helpText] - Optional help text displayed below the select.
|
|
13
|
+
* @param {string} [props.placeholder] - Placeholder text for the select input.
|
|
14
|
+
* @param {string} props.id - The ID for the select input.
|
|
15
|
+
* @param {string} props.name - The name for the select input.
|
|
16
|
+
* @param {string} props.value - The selected value.
|
|
17
|
+
* @param {React.ReactNode|import("./Tooltip").TooltipContentObject} props.tooltip - Tooltip content for the select.
|
|
18
|
+
* @param {string|boolean} [props.error] - Error message or flag indicating the select has an error.
|
|
19
|
+
* @param {function} props.onChange - Callback for when the selected value changes.
|
|
20
|
+
* @param {function} props.onFocus - Callback for when the select gains focus.
|
|
21
|
+
* @param {function} props.onBlur - Callback for when the select loses focus.
|
|
22
|
+
* @param {boolean} [props.requiredIndicator] - Whether to show a required indicator next to the label.
|
|
23
|
+
* @param {string} [props.className] - Additional CSS classes to apply to the select container.
|
|
24
|
+
* @param {string} [props.contentClassName] - Additional CSS classes to apply to the select content area.
|
|
25
|
+
* @returns {JSX.Element} The rendered Select component.
|
|
26
|
+
*/
|
|
27
|
+
declare function Select(props?: {
|
|
28
|
+
options: any[];
|
|
29
|
+
label?: string;
|
|
30
|
+
labelAction?: any;
|
|
31
|
+
labelHidden?: boolean;
|
|
32
|
+
labelInline?: boolean;
|
|
33
|
+
disabled?: boolean;
|
|
34
|
+
helpText?: string;
|
|
35
|
+
placeholder?: string;
|
|
36
|
+
id: string;
|
|
37
|
+
name: string;
|
|
38
|
+
value: string;
|
|
39
|
+
tooltip: React.ReactNode | import("./Tooltip").TooltipContentObject;
|
|
40
|
+
error?: string | boolean;
|
|
41
|
+
onChange: Function;
|
|
42
|
+
onFocus: Function;
|
|
43
|
+
onBlur: Function;
|
|
44
|
+
requiredIndicator?: boolean;
|
|
45
|
+
className?: string;
|
|
46
|
+
contentClassName?: string;
|
|
47
|
+
}): JSX.Element;
|
|
48
|
+
//# sourceMappingURL=Select.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["../../../components/Select.js"],"names":[],"mappings":";AA8DA;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,gCArBG;IAAqB,OAAO;IACL,KAAK,GAApB,MAAM;IACS,WAAW;IACV,WAAW,GAA3B,OAAO;IACS,WAAW,GAA3B,OAAO;IACS,QAAQ,GAAxB,OAAO;IACQ,QAAQ,GAAvB,MAAM;IACS,WAAW,GAA1B,MAAM;IACQ,EAAE,EAAhB,MAAM;IACQ,IAAI,EAAlB,MAAM;IACQ,KAAK,EAAnB,MAAM;IAC0D,OAAO,EAAvE,KAAK,CAAC,SAAS,GAAC,OAAO,WAAW,EAAE,oBAAoB;IACjC,KAAK,GAA5B,MAAM,GAAC,OAAO;IACE,QAAQ;IACR,OAAO;IACP,MAAM;IACN,iBAAiB,GAAjC,OAAO;IACQ,SAAS,GAAxB,MAAM;IACS,gBAAgB,GAA/B,MAAM;CACd,GAAU,GAAG,CAAC,OAAO,CAkLvB"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export default SkeletonText;
|
|
2
|
+
/**
|
|
3
|
+
* SkeletonText component for displaying placeholder text content.
|
|
4
|
+
*
|
|
5
|
+
* @param {Object} props - The component properties.
|
|
6
|
+
* @param {number} [props.lines=3] - The number of lines to render. Defaults to 3 for body text.
|
|
7
|
+
* @param {"body"|"heading"} [props.type="body"] - The type of skeleton text
|
|
8
|
+
* @param {"xs"|"sm"|"md"|"lg"|"xl"} [props.size="md"] - The size of the skeleton text
|
|
9
|
+
* @param {number} [props.width] - The width of the skeleton text lines. If not provided, random widths are generated.
|
|
10
|
+
* @param {boolean} [props.fullWidth=false] - Whether the skeleton text lines should be full width.
|
|
11
|
+
* @param {"start"|"center"|"end"} [props.align="start"] - The alignment of the skeleton text lines.
|
|
12
|
+
* @param {string} [props.className] - Additional class names to apply to the root element.
|
|
13
|
+
*
|
|
14
|
+
* @returns {JSX.Element} A JSX element rendering a skeleton placeholder text block.
|
|
15
|
+
*
|
|
16
|
+
* @example
|
|
17
|
+
* <SkeletonText lines={5} type="heading" size="lg" width={80} className="custom-class" />
|
|
18
|
+
*/
|
|
19
|
+
declare function SkeletonText(props?: {
|
|
20
|
+
lines?: number;
|
|
21
|
+
type?: "body" | "heading";
|
|
22
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl";
|
|
23
|
+
width?: number;
|
|
24
|
+
fullWidth?: boolean;
|
|
25
|
+
align?: "start" | "center" | "end";
|
|
26
|
+
className?: string;
|
|
27
|
+
}): JSX.Element;
|
|
28
|
+
//# sourceMappingURL=SkeletonText.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SkeletonText.d.ts","sourceRoot":"","sources":["../../../components/SkeletonText.js"],"names":[],"mappings":";AAqCA;;;;;;;;;;;;;;;;GAgBG;AAEH,sCAdG;IAAuB,KAAK,GAApB,MAAM;IACmB,IAAI,GAA7B,MAAM,GAAC,SAAS;IACiB,IAAI,GAArC,IAAI,GAAC,IAAI,GAAC,IAAI,GAAC,IAAI,GAAC,IAAI;IACT,KAAK,GAApB,MAAM;IACU,SAAS,GAAzB,OAAO;IACwB,KAAK,GAApC,OAAO,GAAC,QAAQ,GAAC,KAAK;IACP,SAAS,GAAxB,MAAM;CAEd,GAAU,GAAG,CAAC,OAAO,CAqCvB"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export default Spinner;
|
|
2
|
+
/**
|
|
3
|
+
* Spinner Component
|
|
4
|
+
*
|
|
5
|
+
* This component renders a loading spinner with customizable size, color, and accessibility label.
|
|
6
|
+
*
|
|
7
|
+
* @param {Object} props - The props object.
|
|
8
|
+
* @param {('small'|'large')} [props.size='large'] - The size of the spinner, either "small" or "large".
|
|
9
|
+
* @param {('default'|'subdued')} [props.color='default'] - The color variant of the spinner.
|
|
10
|
+
* @param {string} [props.accessibilityLabel='Loading...'] - The accessible label for screen readers, describing the spinner's purpose.
|
|
11
|
+
* @returns {JSX.Element} The rendered Spinner component.
|
|
12
|
+
*/
|
|
13
|
+
declare function Spinner(props?: {
|
|
14
|
+
size?: ("small" | "large");
|
|
15
|
+
color?: ("default" | "subdued");
|
|
16
|
+
accessibilityLabel?: string;
|
|
17
|
+
}): JSX.Element;
|
|
18
|
+
//# sourceMappingURL=Spinner.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Spinner.d.ts","sourceRoot":"","sources":["../../../components/Spinner.js"],"names":[],"mappings":";AAuBA;;;;;;;;;;GAUG;AACH,iCALG;IAAkC,IAAI,GAA9B,CAAC,OAAO,GAAC,OAAO,CAAC;IACa,KAAK,GAAnC,CAAC,SAAS,GAAC,SAAS,CAAC;IACN,kBAAkB,GAAjC,MAAM;CACd,GAAU,GAAG,CAAC,OAAO,CAyBvB"}
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
export default Table;
|
|
2
|
+
export type TableHeading = {
|
|
3
|
+
/**
|
|
4
|
+
* - The title content of the heading.
|
|
5
|
+
*/
|
|
6
|
+
title: string | React.ReactNode;
|
|
7
|
+
/**
|
|
8
|
+
* - Whether the column is sortable.
|
|
9
|
+
*/
|
|
10
|
+
sortable?: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* - Alignment of the heading content.
|
|
13
|
+
*/
|
|
14
|
+
alignment?: "start" | "end" | "left" | "right" | "center";
|
|
15
|
+
/**
|
|
16
|
+
* - Whether the heading is hidden.
|
|
17
|
+
*/
|
|
18
|
+
hidden?: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* - Tooltip content for the heading.
|
|
21
|
+
*/
|
|
22
|
+
tooltip?: string | React.ReactNode;
|
|
23
|
+
/**
|
|
24
|
+
* - Alternative tooltip content for the heading.
|
|
25
|
+
*/
|
|
26
|
+
tooltipContent?: string | React.ReactNode;
|
|
27
|
+
/**
|
|
28
|
+
* - Callback function when the heading is clicked.
|
|
29
|
+
*/
|
|
30
|
+
onAction?: Function;
|
|
31
|
+
};
|
|
32
|
+
/**
|
|
33
|
+
* @typedef {Object} TableHeading
|
|
34
|
+
* @property {string|React.ReactNode} title - The title content of the heading.
|
|
35
|
+
* @property {boolean} [sortable=false] - Whether the column is sortable.
|
|
36
|
+
* @property {"start" | "end" | "left" | "right" | "center"} [alignment="start"] - Alignment of the heading content.
|
|
37
|
+
* @property {boolean} [hidden=false] - Whether the heading is hidden.
|
|
38
|
+
* @property {string|React.ReactNode} [tooltip] - Tooltip content for the heading.
|
|
39
|
+
* @property {string|React.ReactNode} [tooltipContent] - Alternative tooltip content for the heading.
|
|
40
|
+
* @property {Function} [onAction] - Callback function when the heading is clicked.
|
|
41
|
+
*/
|
|
42
|
+
/**
|
|
43
|
+
* Table component for displaying data in a customizable, sortable, and scrollable format.
|
|
44
|
+
*
|
|
45
|
+
* @param {Object} props - Component props.
|
|
46
|
+
* @param {Array<TableHeading|string|React.ReactNode>} [props.headings=[]] - Column headings. Can be strings, React nodes, or configuration objects.
|
|
47
|
+
* @param {"default" | "subdued"} [props.headingStyle="default"] - Style of the heading.
|
|
48
|
+
* @param {Array<Array<string | React.ReactNode>>} [props.rows=[]] - Table rows with cell content.
|
|
49
|
+
* @param {string} [props.verticalAlign="middle"] - Vertical alignment ('top', 'middle', 'bottom').
|
|
50
|
+
* @param {number} [props.fixedFirstColumns=0] - Number of fixed left columns.
|
|
51
|
+
* @param {number} [props.fixedLastColumns=0] - Number of fixed right columns.
|
|
52
|
+
* @param {number} [props.initialSortColumnIndex] - Initial sorted column index.
|
|
53
|
+
* @param {"ascending" | "descending"} [props.defaultSortDirection="ascending"] - Default sort direction.
|
|
54
|
+
* @param {Function} [props.onSort] - Callback for sorting.
|
|
55
|
+
* @param {boolean} [props.increasedTableDensity=false] - Whether to reduce padding for higher density.
|
|
56
|
+
* @param {Array<string | React.ReactNode>} [props.footers=[]] - Footer row content.
|
|
57
|
+
* @param {number} [props.firstColumnMinWidth] - Minimum width of the first column.
|
|
58
|
+
* @param {boolean} [props.bordered=false] - Whether to show table borders.
|
|
59
|
+
* @param {boolean} [props.topBorder=true] - Whether to show a top border.
|
|
60
|
+
* @param {number} [props.skeletonRows=20] - Number of skeleton rows to render when loading.
|
|
61
|
+
* @param {string} [props.paginatedSelectAllActionText] - Text for the paginated select all action.
|
|
62
|
+
* @param {Object} [props.resourceName] - Object containing singular and plural resource names.
|
|
63
|
+
* @param {string} [props.resourceName.singular] - Singular resource name.
|
|
64
|
+
* @param {string} [props.resourceName.plural] - Plural resource name.
|
|
65
|
+
* @param {number} [props.itemCount] - Total number of items in the table.
|
|
66
|
+
* @param {boolean} [props.selectable=true] - Whether the table is selectable.
|
|
67
|
+
* @param {Function} [props.onSelectionChange] - Callback for handling selection changes.
|
|
68
|
+
* @param {boolean} [props.loading=false] - Whether the table is loading.
|
|
69
|
+
* @returns {React.ReactElement} The rendered Table component.
|
|
70
|
+
*/
|
|
71
|
+
declare function Table(props?: {
|
|
72
|
+
headings?: Array<TableHeading | string | React.ReactNode>;
|
|
73
|
+
headingStyle?: "default" | "subdued";
|
|
74
|
+
rows?: Array<Array<string | React.ReactNode>>;
|
|
75
|
+
verticalAlign?: string;
|
|
76
|
+
fixedFirstColumns?: number;
|
|
77
|
+
fixedLastColumns?: number;
|
|
78
|
+
initialSortColumnIndex?: number;
|
|
79
|
+
defaultSortDirection?: "ascending" | "descending";
|
|
80
|
+
onSort?: Function;
|
|
81
|
+
increasedTableDensity?: boolean;
|
|
82
|
+
footers?: Array<string | React.ReactNode>;
|
|
83
|
+
firstColumnMinWidth?: number;
|
|
84
|
+
bordered?: boolean;
|
|
85
|
+
topBorder?: boolean;
|
|
86
|
+
skeletonRows?: number;
|
|
87
|
+
paginatedSelectAllActionText?: string;
|
|
88
|
+
resourceName?: {
|
|
89
|
+
singular?: string;
|
|
90
|
+
plural?: string;
|
|
91
|
+
};
|
|
92
|
+
itemCount?: number;
|
|
93
|
+
selectable?: boolean;
|
|
94
|
+
onSelectionChange?: Function;
|
|
95
|
+
loading?: boolean;
|
|
96
|
+
}): React.ReactElement;
|
|
97
|
+
declare namespace Table {
|
|
98
|
+
let displayName: string;
|
|
99
|
+
/**
|
|
100
|
+
* Represents a row within the Table.
|
|
101
|
+
* @param {Object} props - Row properties.
|
|
102
|
+
* @param {string} props.id - Unique row identifier.
|
|
103
|
+
* @param {boolean} props.selected - Whether the row is selected.
|
|
104
|
+
* @param {Function} props.onClick - Click handler.
|
|
105
|
+
* @param {number} props.position - Position index.
|
|
106
|
+
* @param {React.ReactNode} props.children - Row content.
|
|
107
|
+
* @returns {React.ReactElement} The rendered Table.Row component.
|
|
108
|
+
*/
|
|
109
|
+
function Row({ id, selected, onClick, position, children, ...rest }: {
|
|
110
|
+
id: string;
|
|
111
|
+
selected: boolean;
|
|
112
|
+
onClick: Function;
|
|
113
|
+
position: number;
|
|
114
|
+
children: React.ReactNode;
|
|
115
|
+
}): React.ReactElement;
|
|
116
|
+
namespace Row {
|
|
117
|
+
let displayName_1: string;
|
|
118
|
+
export { displayName_1 as displayName };
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* Represents a cell within a table row.
|
|
122
|
+
* @param {Object} props - Cell properties.
|
|
123
|
+
* @param {string} [props.alignment="start"] - Text alignment.
|
|
124
|
+
* @param {boolean} [props.selectionCell=false] - Whether this is a selection cell.
|
|
125
|
+
* @param {React.ReactNode} props.children - Cell content.
|
|
126
|
+
* @returns {React.ReactElement} The rendered Table.Cell component.
|
|
127
|
+
*/
|
|
128
|
+
function Cell({ alignment: _alignment, children, selectionCell, }: {
|
|
129
|
+
alignment?: string;
|
|
130
|
+
selectionCell?: boolean;
|
|
131
|
+
children: React.ReactNode;
|
|
132
|
+
}): React.ReactElement;
|
|
133
|
+
namespace Cell {
|
|
134
|
+
let displayName_2: string;
|
|
135
|
+
export { displayName_2 as displayName };
|
|
136
|
+
}
|
|
137
|
+
/**
|
|
138
|
+
* Footer component for the Table.
|
|
139
|
+
* Displays pagination controls and optionally the total result count.
|
|
140
|
+
*
|
|
141
|
+
* @param {Object} props - The component props.
|
|
142
|
+
* @param {boolean} props.hasNextPage - Whether there is a next page.
|
|
143
|
+
* @param {boolean} props.hasPreviousPage - Whether there is a previous page.
|
|
144
|
+
* @param {Function} props.onNext - Callback function for the next page action.
|
|
145
|
+
* @param {Function} props.onPrevious - Callback function for the previous page action.
|
|
146
|
+
* @param {boolean} [props.showTotalResultCount=false] - Whether to show the total result count.
|
|
147
|
+
* @param {number} [props.total=0] - The total number of results.
|
|
148
|
+
* @param {boolean} [props.paddedHalf=false] - Whether to apply half padding.
|
|
149
|
+
* @returns {JSX.Element|null} The Footer component or null if no pagination is required.
|
|
150
|
+
*/
|
|
151
|
+
function Footer({ hasNextPage, hasPreviousPage, onNext, onPrevious, showTotalResultCount, total, paddedHalf, }: {
|
|
152
|
+
hasNextPage: boolean;
|
|
153
|
+
hasPreviousPage: boolean;
|
|
154
|
+
onNext: Function;
|
|
155
|
+
onPrevious: Function;
|
|
156
|
+
showTotalResultCount?: boolean;
|
|
157
|
+
total?: number;
|
|
158
|
+
paddedHalf?: boolean;
|
|
159
|
+
}): JSX.Element | null;
|
|
160
|
+
namespace Footer {
|
|
161
|
+
let displayName_3: string;
|
|
162
|
+
export { displayName_3 as displayName };
|
|
163
|
+
}
|
|
164
|
+
/**
|
|
165
|
+
* BulkActions component for the Table.
|
|
166
|
+
* Displays bulk action buttons with optional promoted actions.
|
|
167
|
+
*
|
|
168
|
+
* @param {Object} props - The component props.
|
|
169
|
+
* @param {Array} [props.bulkActions=[]] - List of bulk actions.
|
|
170
|
+
* @param {Array} [props.promotedBulkActions=[]] - List of promoted bulk actions.
|
|
171
|
+
* @returns {JSX.Element} The BulkActions component.
|
|
172
|
+
*/
|
|
173
|
+
function BulkActions({ bulkActions, promotedBulkActions }: {
|
|
174
|
+
bulkActions?: any[];
|
|
175
|
+
promotedBulkActions?: any[];
|
|
176
|
+
}): JSX.Element;
|
|
177
|
+
namespace BulkActions {
|
|
178
|
+
let displayName_4: string;
|
|
179
|
+
export { displayName_4 as displayName };
|
|
180
|
+
}
|
|
181
|
+
/**
|
|
182
|
+
* SkeletonRow component for displaying loading placeholders in the Table.
|
|
183
|
+
*
|
|
184
|
+
* @param {Object} props - The component props.
|
|
185
|
+
* @param {number} [props.columns=1] - The number of columns to render.
|
|
186
|
+
* @returns {JSX.Element} The SkeletonRow component.
|
|
187
|
+
*/
|
|
188
|
+
function SkeletonRow({ columns }: {
|
|
189
|
+
columns?: number;
|
|
190
|
+
}): JSX.Element;
|
|
191
|
+
namespace SkeletonRow {
|
|
192
|
+
let displayName_5: string;
|
|
193
|
+
export { displayName_5 as displayName };
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
import React from "react";
|
|
197
|
+
//# sourceMappingURL=Table.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Table.d.ts","sourceRoot":"","sources":["../../../components/Table.js"],"names":[],"mappings":";;;;;WAyCc,MAAM,GAAC,KAAK,CAAC,SAAS;;;;eACtB,OAAO;;;;gBACP,OAAO,GAAG,KAAK,GAAG,MAAM,GAAG,OAAO,GAAG,QAAQ;;;;aAC7C,OAAO;;;;cACP,MAAM,GAAC,KAAK,CAAC,SAAS;;;;qBACtB,MAAM,GAAC,KAAK,CAAC,SAAS;;;;;;AAPpC;;;;;;;;;GASG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,+BAzBG;IAA2D,QAAQ,GAA3D,KAAK,CAAC,YAAY,GAAC,MAAM,GAAC,KAAK,CAAC,SAAS,CAAC;IACZ,YAAY,GAA1C,SAAS,GAAG,SAAS;IAC0B,IAAI,GAAnD,KAAK,CAAC,KAAK,CAAC,MAAM,GAAG,KAAK,CAAC,SAAS,CAAC,CAAC;IACvB,aAAa,GAA5B,MAAM;IACS,iBAAiB,GAAhC,MAAM;IACS,gBAAgB,GAA/B,MAAM;IACS,sBAAsB,GAArC,MAAM;IAC6B,oBAAoB,GAAvD,WAAW,GAAG,YAAY;IACT,MAAM;IACP,qBAAqB,GAArC,OAAO;IACiC,OAAO,GAA/C,KAAK,CAAC,MAAM,GAAG,KAAK,CAAC,SAAS,CAAC;IAChB,mBAAmB,GAAlC,MAAM;IACU,QAAQ,GAAxB,OAAO;IACS,SAAS,GAAzB,OAAO;IACQ,YAAY,GAA3B,MAAM;IACS,4BAA4B,GAA3C,MAAM;IACS,YAAY,GACnC;QAAoC,QAAQ,GAApC,MAAM;QACsB,MAAM,GAAlC,MAAM;KACd;IAAuB,SAAS,GAAxB,MAAM;IACU,UAAU,GAA1B,OAAO;IACU,iBAAiB;IAClB,OAAO,GAAvB,OAAO;CACf,GAAU,KAAK,CAAC,YAAY,CA8vB9B;;;IAGD;;;;;;;;;OASG;IACH,qEAPG;QAAsB,EAAE,EAAhB,MAAM;QACS,QAAQ,EAAvB,OAAO;QACS,OAAO;QACT,QAAQ,EAAtB,MAAM;QACiB,QAAQ,EAA/B,KAAK,CAAC,SAAS;KACvB,GAAU,KAAK,CAAC,YAAY,CA8F9B;;;;;IAID;;;;;;;OAOG;IACH,mEALG;QAAuB,SAAS,GAAxB,MAAM;QACU,aAAa,GAA7B,OAAO;QACgB,QAAQ,EAA/B,KAAK,CAAC,SAAS;KACvB,GAAU,KAAK,CAAC,YAAY,CAmD9B;;;;;IAID;;;;;;;;;;;;;OAaG;IACH,gHATG;QAAuB,WAAW,EAA1B,OAAO;QACQ,eAAe,EAA9B,OAAO;QACS,MAAM;QACN,UAAU;QACV,oBAAoB,GAApC,OAAO;QACQ,KAAK,GAApB,MAAM;QACU,UAAU,GAA1B,OAAO;KACf,GAAU,GAAG,CAAC,OAAO,GAAC,IAAI,CA6B5B;;;;;IAID;;;;;;;;OAQG;IACH,2DAJG;QAAsB,WAAW;QACX,mBAAmB;KACzC,GAAU,GAAG,CAAC,OAAO,CA4DvB;;;;;IAID;;;;;;OAMG;IACH,kCAHG;QAAuB,OAAO,GAAtB,MAAM;KACd,GAAU,GAAG,CAAC,OAAO,CAoBvB;;;;;;kBAjnCM,OAAO"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
export default Tabs;
|
|
2
|
+
/**
|
|
3
|
+
* Tabs component that displays a set of tab items with selectable states.
|
|
4
|
+
*
|
|
5
|
+
* @param {Object} props - Component props.
|
|
6
|
+
* @param {Object[]} props.tabs - List of tabs to display.
|
|
7
|
+
* @param {string} props.tabs[].id - Unique identifier for the tab.
|
|
8
|
+
* @param {string} props.tabs[].content - Content or label to display for the tab.
|
|
9
|
+
* @param {string} [props.tabs[].icon] - Optional icon to display for the tab.
|
|
10
|
+
* @param {boolean} [props.tabs[].disclosure=false] - Whether the tab is part of a "More" disclosure group.
|
|
11
|
+
* @param {number} props.selected - Index of the currently selected tab.
|
|
12
|
+
* @param {Function} props.onSelect - Callback fired when a tab is selected, receives the tab's index.
|
|
13
|
+
* @param {boolean} [props.fullWidth=false] - Whether the tabs should expand to fit the container width.
|
|
14
|
+
* @param {string} [props.disclosureText="More"] - Label for the "More" disclosure tab.
|
|
15
|
+
* @param {boolean} [props.disclosure=false] - Whether the "More" disclosure is enabled.
|
|
16
|
+
* @param {boolean} [props.activeDisclosure=false] - Whether the "More" disclosure is currently active.
|
|
17
|
+
* @param {boolean} [props.padded=true] - If true, applies padding to the Tabs container.
|
|
18
|
+
* @param {boolean} [props.borderBottom=true] - If true, applies a bottom border to the Tabs container.
|
|
19
|
+
* @returns {JSX.Element} The Tabs component.
|
|
20
|
+
*/
|
|
21
|
+
declare function Tabs(props?: {
|
|
22
|
+
tabs: {
|
|
23
|
+
id: string;
|
|
24
|
+
content: string;
|
|
25
|
+
icon?: string;
|
|
26
|
+
disclosure?: boolean;
|
|
27
|
+
};
|
|
28
|
+
selected: number;
|
|
29
|
+
onSelect: Function;
|
|
30
|
+
fullWidth?: boolean;
|
|
31
|
+
disclosureText?: string;
|
|
32
|
+
disclosure?: boolean;
|
|
33
|
+
activeDisclosure?: boolean;
|
|
34
|
+
padded?: boolean;
|
|
35
|
+
borderBottom?: boolean;
|
|
36
|
+
}): JSX.Element;
|
|
37
|
+
declare namespace Tabs {
|
|
38
|
+
export { Tab };
|
|
39
|
+
}
|
|
40
|
+
declare function Tab(props?: {}): import("react/jsx-runtime").JSX.Element;
|
|
41
|
+
//# sourceMappingURL=Tabs.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Tabs.d.ts","sourceRoot":"","sources":["../../../components/Tabs.js"],"names":[],"mappings":";AAmCA;;;;;;;;;;;;;;;;;;GAkBG;AAEH,8BAhBG;IAAwB,IAAI,EAC5B;QAA6B,EAAE,EAAvB,MAAM;QACe,OAAO,EAA5B,MAAM;QACgB,IAAI,GAA1B,MAAM;QACiB,UAAU,GAAjC,OAAO;KACf;IAAsB,QAAQ,EAAtB,MAAM;IACU,QAAQ;IACR,SAAS,GAAzB,OAAO;IACQ,cAAc,GAA7B,MAAM;IACU,UAAU,GAA1B,OAAO;IACS,gBAAgB,GAAhC,OAAO;IACS,MAAM,GAAtB,OAAO;IACS,YAAY,GAA5B,OAAO;CACf,GAAU,GAAG,CAAC,OAAO,CAsLvB;;;;AA4BD,0EA0DC"}
|