@spaced-out/ui-design-system 0.4.11 → 0.4.13-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cspell/custom-words.txt +4 -0
- package/.storybook/main.js +3 -3
- package/CHANGELOG.md +14 -0
- package/babel.config.js +1 -1
- package/config.js +4 -3
- package/docs/FORWARDREF_FIX.md +241 -0
- package/gulpfile.js +3 -32
- package/lib/components/AIPromptFlow/AIPromptFlow.stories.d.ts +19 -0
- package/lib/components/AIPromptFlow/AIPromptFlow.stories.d.ts.map +1 -0
- package/lib/components/AIPromptFlow/AIPromptFlow.stories.js +225 -0
- package/lib/components/AIPromptFlow/AIPromptFlow.stories.tsx +465 -0
- package/lib/components/Accordion/Accordion.d.ts +21 -0
- package/lib/components/Accordion/Accordion.d.ts.map +1 -0
- package/lib/components/Accordion/Accordion.js +3 -1
- package/lib/components/Accordion/Accordion.stories.d.ts +143 -0
- package/lib/components/Accordion/Accordion.stories.d.ts.map +1 -0
- package/lib/components/Accordion/Accordion.stories.js +172 -0
- package/lib/components/Accordion/Accordion.stories.tsx +165 -0
- package/lib/components/Accordion/Accordion.tsx +112 -0
- package/lib/components/Accordion/AccordionGroup.d.ts +17 -0
- package/lib/components/Accordion/AccordionGroup.d.ts.map +1 -0
- package/lib/components/Accordion/AccordionGroup.js +3 -0
- package/lib/components/Accordion/AccordionGroup.stories.d.ts +104 -0
- package/lib/components/Accordion/AccordionGroup.stories.d.ts.map +1 -0
- package/lib/components/Accordion/AccordionGroup.stories.js +202 -0
- package/lib/components/Accordion/AccordionGroup.stories.tsx +215 -0
- package/lib/components/Accordion/AccordionGroup.tsx +77 -0
- package/lib/components/Accordion/index.d.ts +3 -0
- package/lib/components/Accordion/index.d.ts.map +1 -0
- package/lib/components/Accordion/index.ts +2 -0
- package/lib/components/Avatar/Avatar.d.ts +60 -0
- package/lib/components/Avatar/Avatar.d.ts.map +1 -0
- package/lib/components/Avatar/Avatar.js +14 -6
- package/lib/components/Avatar/Avatar.stories.d.ts +149 -0
- package/lib/components/Avatar/Avatar.stories.d.ts.map +1 -0
- package/lib/components/Avatar/Avatar.stories.js +174 -0
- package/lib/components/Avatar/Avatar.stories.tsx +152 -0
- package/lib/components/Avatar/Avatar.tsx +272 -0
- package/lib/components/Avatar/index.d.ts +2 -0
- package/lib/components/Avatar/index.d.ts.map +1 -0
- package/lib/components/Avatar/index.ts +1 -0
- package/lib/components/AvatarGroup/AvatarGroup.d.ts +15 -0
- package/lib/components/AvatarGroup/AvatarGroup.d.ts.map +1 -0
- package/lib/components/AvatarGroup/AvatarGroup.js +5 -0
- package/lib/components/AvatarGroup/AvatarGroup.stories.d.ts +101 -0
- package/lib/components/AvatarGroup/AvatarGroup.stories.d.ts.map +1 -0
- package/lib/components/AvatarGroup/AvatarGroup.stories.js +160 -0
- package/lib/components/AvatarGroup/AvatarGroup.stories.tsx +138 -0
- package/lib/components/AvatarGroup/AvatarGroup.tsx +164 -0
- package/lib/components/AvatarGroup/index.d.ts +2 -0
- package/lib/components/AvatarGroup/index.d.ts.map +1 -0
- package/lib/components/AvatarGroup/index.ts +1 -0
- package/lib/components/Badge/Badge.d.ts +40 -0
- package/lib/components/Badge/Badge.d.ts.map +1 -0
- package/lib/components/Badge/Badge.stories.d.ts +123 -0
- package/lib/components/Badge/Badge.stories.d.ts.map +1 -0
- package/lib/components/Badge/Badge.stories.js +155 -0
- package/lib/components/Badge/Badge.stories.tsx +131 -0
- package/lib/components/Badge/Badge.tsx +149 -0
- package/lib/components/Badge/index.d.ts +2 -0
- package/lib/components/Badge/index.d.ts.map +1 -0
- package/lib/components/Badge/index.ts +1 -0
- package/lib/components/BadgedIcon/BadgedIcon.d.ts +18 -0
- package/lib/components/BadgedIcon/BadgedIcon.d.ts.map +1 -0
- package/lib/components/BadgedIcon/BadgedIcon.js +3 -1
- package/lib/components/BadgedIcon/BadgedIcon.stories.d.ts +111 -0
- package/lib/components/BadgedIcon/BadgedIcon.stories.d.ts.map +1 -0
- package/lib/components/BadgedIcon/BadgedIcon.stories.js +95 -0
- package/lib/components/BadgedIcon/BadgedIcon.stories.tsx +80 -0
- package/lib/components/BadgedIcon/BadgedIcon.tsx +76 -0
- package/lib/components/BadgedIcon/index.d.ts +2 -0
- package/lib/components/BadgedIcon/index.d.ts.map +1 -0
- package/lib/components/BadgedIcon/index.ts +1 -0
- package/lib/components/Banner/Banner.d.ts +7 -0
- package/lib/components/Banner/Banner.d.ts.map +1 -0
- package/lib/components/Banner/Banner.stories.d.ts +187 -0
- package/lib/components/Banner/Banner.stories.d.ts.map +1 -0
- package/lib/components/Banner/Banner.stories.js +210 -0
- package/lib/components/Banner/Banner.stories.tsx +187 -0
- package/lib/components/Banner/Banner.tsx +55 -0
- package/lib/components/Banner/index.d.ts +2 -0
- package/lib/components/Banner/index.d.ts.map +1 -0
- package/lib/components/Banner/index.ts +1 -0
- package/lib/components/Breadcrumbs/BreadcrumbLink/BreadcrumbLink.d.ts +10 -0
- package/lib/components/Breadcrumbs/BreadcrumbLink/BreadcrumbLink.d.ts.map +1 -0
- package/lib/components/Breadcrumbs/BreadcrumbLink/BreadcrumbLink.js +3 -1
- package/lib/components/Breadcrumbs/BreadcrumbLink/BreadcrumbLink.stories.d.ts +98 -0
- package/lib/components/Breadcrumbs/BreadcrumbLink/BreadcrumbLink.stories.d.ts.map +1 -0
- package/lib/components/Breadcrumbs/BreadcrumbLink/BreadcrumbLink.stories.js +122 -0
- package/lib/components/Breadcrumbs/BreadcrumbLink/BreadcrumbLink.stories.tsx +114 -0
- package/lib/components/Breadcrumbs/BreadcrumbLink/BreadcrumbLink.tsx +52 -0
- package/lib/components/Breadcrumbs/BreadcrumbLink/index.d.ts +2 -0
- package/lib/components/Breadcrumbs/BreadcrumbLink/index.d.ts.map +1 -0
- package/lib/components/Breadcrumbs/BreadcrumbLink/index.ts +1 -0
- package/lib/components/Breadcrumbs/Breadcrumbs.d.ts +14 -0
- package/lib/components/Breadcrumbs/Breadcrumbs.d.ts.map +1 -0
- package/lib/components/Breadcrumbs/Breadcrumbs.js +5 -1
- package/lib/components/Breadcrumbs/Breadcrumbs.stories.d.ts +57 -0
- package/lib/components/Breadcrumbs/Breadcrumbs.stories.d.ts.map +1 -0
- package/lib/components/Breadcrumbs/Breadcrumbs.stories.js +180 -0
- package/lib/components/Breadcrumbs/Breadcrumbs.stories.tsx +189 -0
- package/lib/components/Breadcrumbs/Breadcrumbs.tsx +59 -0
- package/lib/components/Breadcrumbs/index.d.ts +3 -0
- package/lib/components/Breadcrumbs/index.d.ts.map +1 -0
- package/lib/components/Breadcrumbs/index.ts +2 -0
- package/lib/components/Button/Button.d.ts +64 -0
- package/lib/components/Button/Button.d.ts.map +1 -0
- package/lib/components/Button/Button.js +26 -8
- package/lib/components/Button/Button.stories.d.ts +245 -0
- package/lib/components/Button/Button.stories.d.ts.map +1 -0
- package/lib/components/Button/Button.stories.js +257 -0
- package/lib/components/Button/Button.stories.tsx +220 -0
- package/lib/components/Button/Button.tsx +285 -0
- package/lib/components/Button/index.d.ts +3 -0
- package/lib/components/Button/index.d.ts.map +1 -0
- package/lib/components/Button/index.ts +8 -0
- package/lib/components/ButtonDropdown/ButtonDropdown.d.ts +40 -0
- package/lib/components/ButtonDropdown/ButtonDropdown.d.ts.map +1 -0
- package/lib/components/ButtonDropdown/ButtonDropdown.js +13 -3
- package/lib/components/ButtonDropdown/ButtonDropdown.stories.d.ts +558 -0
- package/lib/components/ButtonDropdown/ButtonDropdown.stories.d.ts.map +1 -0
- package/lib/components/ButtonDropdown/ButtonDropdown.stories.js +669 -0
- package/lib/components/ButtonDropdown/ButtonDropdown.stories.tsx +677 -0
- package/lib/components/ButtonDropdown/ButtonDropdown.tsx +221 -0
- package/lib/components/ButtonDropdown/SimpleButtonDropdown.d.ts +42 -0
- package/lib/components/ButtonDropdown/SimpleButtonDropdown.d.ts.map +1 -0
- package/lib/components/ButtonDropdown/SimpleButtonDropdown.js +6 -0
- package/lib/components/ButtonDropdown/SimpleButtonDropdown.stories.d.ts +628 -0
- package/lib/components/ButtonDropdown/SimpleButtonDropdown.stories.d.ts.map +1 -0
- package/lib/components/ButtonDropdown/SimpleButtonDropdown.stories.js +651 -0
- package/lib/components/ButtonDropdown/SimpleButtonDropdown.stories.tsx +624 -0
- package/lib/components/ButtonDropdown/SimpleButtonDropdown.tsx +167 -0
- package/lib/components/ButtonDropdown/index.d.ts +3 -0
- package/lib/components/ButtonDropdown/index.d.ts.map +1 -0
- package/lib/components/ButtonDropdown/index.ts +2 -0
- package/lib/components/ButtonTabs/ButtonTab/ButtonTab.d.ts +25 -0
- package/lib/components/ButtonTabs/ButtonTab/ButtonTab.d.ts.map +1 -0
- package/lib/components/ButtonTabs/ButtonTab/ButtonTab.stories.d.ts +142 -0
- package/lib/components/ButtonTabs/ButtonTab/ButtonTab.stories.d.ts.map +1 -0
- package/lib/components/ButtonTabs/ButtonTab/ButtonTab.stories.js +152 -0
- package/lib/components/ButtonTabs/ButtonTab/ButtonTab.stories.tsx +125 -0
- package/lib/components/ButtonTabs/ButtonTab/ButtonTab.tsx +76 -0
- package/lib/components/ButtonTabs/ButtonTab/index.d.ts +2 -0
- package/lib/components/ButtonTabs/ButtonTab/index.d.ts.map +1 -0
- package/lib/components/ButtonTabs/ButtonTab/index.ts +1 -0
- package/lib/components/ButtonTabs/ButtonTabDropdown.d.ts +12 -0
- package/lib/components/ButtonTabs/ButtonTabDropdown.d.ts.map +1 -0
- package/lib/components/ButtonTabs/ButtonTabDropdown.js +12 -3
- package/lib/components/ButtonTabs/ButtonTabDropdown.tsx +147 -0
- package/lib/components/ButtonTabs/ButtonTabs.d.ts +24 -0
- package/lib/components/ButtonTabs/ButtonTabs.d.ts.map +1 -0
- package/lib/components/ButtonTabs/ButtonTabs.js +3 -0
- package/lib/components/ButtonTabs/ButtonTabs.stories.d.ts +201 -0
- package/lib/components/ButtonTabs/ButtonTabs.stories.d.ts.map +1 -0
- package/lib/components/ButtonTabs/ButtonTabs.stories.js +471 -0
- package/lib/components/ButtonTabs/ButtonTabs.stories.tsx +393 -0
- package/lib/components/ButtonTabs/ButtonTabs.tsx +119 -0
- package/lib/components/ButtonTabs/index.d.ts +3 -0
- package/lib/components/ButtonTabs/index.d.ts.map +1 -0
- package/lib/components/ButtonTabs/index.ts +2 -0
- package/lib/components/Card/Card.d.ts +37 -0
- package/lib/components/Card/Card.d.ts.map +1 -0
- package/lib/components/Card/Card.js +6 -1
- package/lib/components/Card/Card.stories.d.ts +150 -0
- package/lib/components/Card/Card.stories.d.ts.map +1 -0
- package/lib/components/Card/Card.stories.js +236 -0
- package/lib/components/Card/Card.stories.tsx +245 -0
- package/lib/components/Card/Card.tsx +172 -0
- package/lib/components/Card/index.d.ts +2 -0
- package/lib/components/Card/index.d.ts.map +1 -0
- package/lib/components/Card/index.ts +1 -0
- package/lib/components/Charts/ChartTooltip/index.d.ts +3 -0
- package/lib/components/Charts/ChartTooltip/index.d.ts.map +1 -0
- package/lib/components/Charts/ChartTooltip/index.ts +13 -0
- package/lib/components/Charts/ChartWrapper/ChartWrapper.d.ts +50 -0
- package/lib/components/Charts/ChartWrapper/ChartWrapper.d.ts.map +1 -0
- package/lib/components/Charts/ChartWrapper/ChartWrapper.js +5 -7
- package/lib/components/Charts/ChartWrapper/ChartWrapper.tsx +179 -0
- package/lib/components/Charts/ChartWrapper/index.d.ts +2 -0
- package/lib/components/Charts/ChartWrapper/index.d.ts.map +1 -0
- package/lib/components/Charts/ChartWrapper/index.ts +1 -0
- package/lib/components/Charts/ColumnChart/ColumnChart.d.ts +23 -0
- package/lib/components/Charts/ColumnChart/ColumnChart.d.ts.map +1 -0
- package/lib/components/Charts/ColumnChart/ColumnChart.js +12 -7
- package/lib/components/Charts/ColumnChart/ColumnChart.stories.d.ts +446 -0
- package/lib/components/Charts/ColumnChart/ColumnChart.stories.d.ts.map +1 -0
- package/lib/components/Charts/ColumnChart/ColumnChart.stories.js +654 -0
- package/lib/components/Charts/ColumnChart/ColumnChart.stories.tsx +574 -0
- package/lib/components/Charts/ColumnChart/ColumnChart.tsx +125 -0
- package/lib/components/Charts/ColumnChart/index.d.ts +2 -0
- package/lib/components/Charts/ColumnChart/index.d.ts.map +1 -0
- package/lib/components/Charts/ColumnChart/index.ts +1 -0
- package/lib/components/Charts/DonutChart/DonutChart.d.ts +28 -0
- package/lib/components/Charts/DonutChart/DonutChart.d.ts.map +1 -0
- package/lib/components/Charts/DonutChart/DonutChart.js +7 -6
- package/lib/components/Charts/DonutChart/DonutChart.stories.d.ts +226 -0
- package/lib/components/Charts/DonutChart/DonutChart.stories.d.ts.map +1 -0
- package/lib/components/Charts/DonutChart/DonutChart.stories.js +387 -0
- package/lib/components/Charts/DonutChart/DonutChart.stories.tsx +415 -0
- package/lib/components/Charts/DonutChart/DonutChart.tsx +155 -0
- package/lib/components/Charts/DonutChart/index.d.ts +2 -0
- package/lib/components/Charts/DonutChart/index.d.ts.map +1 -0
- package/lib/components/Charts/DonutChart/index.ts +1 -0
- package/lib/components/Charts/FunnelChart/FunnelChart.d.ts +25 -0
- package/lib/components/Charts/FunnelChart/FunnelChart.d.ts.map +1 -0
- package/lib/components/Charts/FunnelChart/FunnelChart.js +6 -7
- package/lib/components/Charts/FunnelChart/FunnelChart.stories.d.ts +307 -0
- package/lib/components/Charts/FunnelChart/FunnelChart.stories.d.ts.map +1 -0
- package/lib/components/Charts/FunnelChart/FunnelChart.stories.js +529 -0
- package/lib/components/Charts/FunnelChart/FunnelChart.stories.tsx +510 -0
- package/lib/components/Charts/FunnelChart/FunnelChart.tsx +110 -0
- package/lib/components/Charts/FunnelChart/index.d.ts +2 -0
- package/lib/components/Charts/FunnelChart/index.d.ts.map +1 -0
- package/lib/components/Charts/FunnelChart/index.ts +1 -0
- package/lib/components/Charts/LineChart/LineChart.d.ts +23 -0
- package/lib/components/Charts/LineChart/LineChart.d.ts.map +1 -0
- package/lib/components/Charts/LineChart/LineChart.js +6 -6
- package/lib/components/Charts/LineChart/LineChart.stories.d.ts +310 -0
- package/lib/components/Charts/LineChart/LineChart.stories.d.ts.map +1 -0
- package/lib/components/Charts/LineChart/LineChart.stories.js +587 -0
- package/lib/components/Charts/LineChart/LineChart.stories.tsx +590 -0
- package/lib/components/Charts/LineChart/LineChart.tsx +109 -0
- package/lib/components/Charts/LineChart/index.d.ts +2 -0
- package/lib/components/Charts/LineChart/index.d.ts.map +1 -0
- package/lib/components/Charts/LineChart/index.ts +1 -0
- package/lib/components/Charts/SpiderChart/SpiderChart.d.ts +22 -0
- package/lib/components/Charts/SpiderChart/SpiderChart.d.ts.map +1 -0
- package/lib/components/Charts/SpiderChart/SpiderChart.js +0 -5
- package/lib/components/Charts/SpiderChart/SpiderChart.stories.d.ts +149 -0
- package/lib/components/Charts/SpiderChart/SpiderChart.stories.d.ts.map +1 -0
- package/lib/components/Charts/SpiderChart/SpiderChart.stories.js +422 -0
- package/lib/components/Charts/SpiderChart/SpiderChart.stories.tsx +467 -0
- package/lib/components/Charts/SpiderChart/SpiderChart.tsx +104 -0
- package/lib/components/Charts/SpiderChart/index.d.ts +2 -0
- package/lib/components/Charts/SpiderChart/index.d.ts.map +1 -0
- package/lib/components/Charts/SpiderChart/index.ts +1 -0
- package/lib/components/Charts/index.d.ts +8 -0
- package/lib/components/Charts/index.d.ts.map +1 -0
- package/lib/components/Charts/index.ts +11 -0
- package/lib/components/ChatBubble/ChatAnchor.stories.d.ts +101 -0
- package/lib/components/ChatBubble/ChatAnchor.stories.d.ts.map +1 -0
- package/lib/components/ChatBubble/ChatAnchor.stories.js +113 -0
- package/lib/components/ChatBubble/ChatAnchor.stories.tsx +95 -0
- package/lib/components/ChatBubble/ChatBubble.d.ts +76 -0
- package/lib/components/ChatBubble/ChatBubble.d.ts.map +1 -0
- package/lib/components/ChatBubble/ChatBubble.js +5 -2
- package/lib/components/ChatBubble/ChatBubble.stories.d.ts +102 -0
- package/lib/components/ChatBubble/ChatBubble.stories.d.ts.map +1 -0
- package/lib/components/ChatBubble/ChatBubble.stories.js +188 -0
- package/lib/components/ChatBubble/ChatBubble.stories.tsx +277 -0
- package/lib/components/ChatBubble/ChatBubble.tsx +232 -0
- package/lib/components/ChatBubble/index.d.ts +2 -0
- package/lib/components/ChatBubble/index.d.ts.map +1 -0
- package/lib/components/ChatBubble/index.ts +1 -0
- package/lib/components/Checkbox/Checkbox.d.ts +29 -0
- package/lib/components/Checkbox/Checkbox.d.ts.map +1 -0
- package/lib/components/Checkbox/Checkbox.js +2 -0
- package/lib/components/Checkbox/Checkbox.stories.d.ts +168 -0
- package/lib/components/Checkbox/Checkbox.stories.d.ts.map +1 -0
- package/lib/components/Checkbox/Checkbox.stories.js +210 -0
- package/lib/components/Checkbox/Checkbox.stories.tsx +180 -0
- package/lib/components/Checkbox/Checkbox.tsx +168 -0
- package/lib/components/Checkbox/CheckboxGroup.d.ts +26 -0
- package/lib/components/Checkbox/CheckboxGroup.d.ts.map +1 -0
- package/lib/components/Checkbox/CheckboxGroup.js +8 -0
- package/lib/components/Checkbox/CheckboxGroup.stories.d.ts +163 -0
- package/lib/components/Checkbox/CheckboxGroup.stories.d.ts.map +1 -0
- package/lib/components/Checkbox/CheckboxGroup.stories.js +399 -0
- package/lib/components/Checkbox/CheckboxGroup.stories.tsx +381 -0
- package/lib/components/Checkbox/CheckboxGroup.tsx +119 -0
- package/lib/components/Checkbox/index.d.ts +3 -0
- package/lib/components/Checkbox/index.d.ts.map +1 -0
- package/lib/components/Checkbox/index.ts +2 -0
- package/lib/components/Chip/Chip.d.ts +47 -0
- package/lib/components/Chip/Chip.d.ts.map +1 -0
- package/lib/components/Chip/Chip.js +10 -2
- package/lib/components/Chip/Chip.stories.d.ts +238 -0
- package/lib/components/Chip/Chip.stories.d.ts.map +1 -0
- package/lib/components/Chip/Chip.stories.js +362 -0
- package/lib/components/Chip/Chip.stories.tsx +335 -0
- package/lib/components/Chip/Chip.tsx +204 -0
- package/lib/components/Chip/index.d.ts +3 -0
- package/lib/components/Chip/index.d.ts.map +1 -0
- package/lib/components/Chip/index.ts +2 -0
- package/lib/components/CircularLoader/CircularLoader.d.ts +10 -0
- package/lib/components/CircularLoader/CircularLoader.d.ts.map +1 -0
- package/lib/components/CircularLoader/CircularLoader.stories.d.ts +64 -0
- package/lib/components/CircularLoader/CircularLoader.stories.d.ts.map +1 -0
- package/lib/components/CircularLoader/CircularLoader.stories.js +82 -0
- package/lib/components/CircularLoader/CircularLoader.stories.tsx +75 -0
- package/lib/components/CircularLoader/CircularLoader.tsx +51 -0
- package/lib/components/CircularLoader/index.d.ts +2 -0
- package/lib/components/CircularLoader/index.d.ts.map +1 -0
- package/lib/components/CircularLoader/index.ts +1 -0
- package/lib/components/CollapsibleCard/CollapsibleCard.d.ts +40 -0
- package/lib/components/CollapsibleCard/CollapsibleCard.d.ts.map +1 -0
- package/lib/components/CollapsibleCard/CollapsibleCard.stories.d.ts +225 -0
- package/lib/components/CollapsibleCard/CollapsibleCard.stories.d.ts.map +1 -0
- package/lib/components/CollapsibleCard/CollapsibleCard.stories.js +298 -0
- package/lib/components/CollapsibleCard/CollapsibleCard.stories.tsx +311 -0
- package/lib/components/CollapsibleCard/CollapsibleCard.tsx +135 -0
- package/lib/components/CollapsibleCard/index.d.ts +2 -0
- package/lib/components/CollapsibleCard/index.d.ts.map +1 -0
- package/lib/components/CollapsibleCard/index.ts +1 -0
- package/lib/components/Combobox/Combobox.d.ts +78 -0
- package/lib/components/Combobox/Combobox.d.ts.map +1 -0
- package/lib/components/Combobox/Combobox.js +16 -3
- package/lib/components/Combobox/Combobox.stories.d.ts +197 -0
- package/lib/components/Combobox/Combobox.stories.d.ts.map +1 -0
- package/lib/components/Combobox/Combobox.stories.js +343 -0
- package/lib/components/Combobox/Combobox.stories.tsx +306 -0
- package/lib/components/Combobox/Combobox.tsx +297 -0
- package/lib/components/Combobox/helper.d.ts +12 -0
- package/lib/components/Combobox/helper.d.ts.map +1 -0
- package/lib/components/Combobox/helper.js +1 -0
- package/lib/components/Combobox/helper.ts +201 -0
- package/lib/components/Combobox/index.d.ts +2 -0
- package/lib/components/Combobox/index.d.ts.map +1 -0
- package/lib/components/Combobox/index.ts +1 -0
- package/lib/components/ConditionalWrapper/ConditionalWrapper.d.ts +8 -0
- package/lib/components/ConditionalWrapper/ConditionalWrapper.d.ts.map +1 -0
- package/lib/components/ConditionalWrapper/ConditionalWrapper.js +0 -2
- package/lib/components/ConditionalWrapper/ConditionalWrapper.stories.d.ts +16 -0
- package/lib/components/ConditionalWrapper/ConditionalWrapper.stories.d.ts.map +1 -0
- package/lib/components/ConditionalWrapper/ConditionalWrapper.stories.js +50 -0
- package/lib/components/ConditionalWrapper/ConditionalWrapper.stories.tsx +51 -0
- package/lib/components/ConditionalWrapper/ConditionalWrapper.ts +16 -0
- package/lib/components/ConditionalWrapper/index.d.ts +2 -0
- package/lib/components/ConditionalWrapper/index.d.ts.map +1 -0
- package/lib/components/ConditionalWrapper/index.ts +1 -0
- package/lib/components/DateRangePicker/Calendar.d.ts +22 -0
- package/lib/components/DateRangePicker/Calendar.d.ts.map +1 -0
- package/lib/components/DateRangePicker/Calendar.js +4 -2
- package/lib/components/DateRangePicker/Calendar.tsx +110 -0
- package/lib/components/DateRangePicker/DateRangePicker.d.ts +22 -0
- package/lib/components/DateRangePicker/DateRangePicker.d.ts.map +1 -0
- package/lib/components/DateRangePicker/DateRangePicker.js +0 -1
- package/lib/components/DateRangePicker/DateRangePicker.stories.d.ts +184 -0
- package/lib/components/DateRangePicker/DateRangePicker.stories.d.ts.map +1 -0
- package/lib/components/DateRangePicker/DateRangePicker.stories.js +406 -0
- package/lib/components/DateRangePicker/DateRangePicker.stories.tsx +397 -0
- package/lib/components/DateRangePicker/DateRangePicker.tsx +210 -0
- package/lib/components/DateRangePicker/DateRangeWrapper.d.ts +33 -0
- package/lib/components/DateRangePicker/DateRangeWrapper.d.ts.map +1 -0
- package/lib/components/DateRangePicker/DateRangeWrapper.js +13 -5
- package/lib/components/DateRangePicker/DateRangeWrapper.tsx +386 -0
- package/lib/components/DateRangePicker/Day.d.ts +17 -0
- package/lib/components/DateRangePicker/Day.d.ts.map +1 -0
- package/lib/components/DateRangePicker/Day.js +6 -4
- package/lib/components/DateRangePicker/Day.tsx +74 -0
- package/lib/components/DateRangePicker/index.d.ts +2 -0
- package/lib/components/DateRangePicker/index.d.ts.map +1 -0
- package/lib/components/DateRangePicker/index.ts +1 -0
- package/lib/components/Dialog/Dialog.d.ts +46 -0
- package/lib/components/Dialog/Dialog.d.ts.map +1 -0
- package/lib/components/Dialog/Dialog.stories.d.ts +171 -0
- package/lib/components/Dialog/Dialog.stories.d.ts.map +1 -0
- package/lib/components/Dialog/Dialog.stories.js +260 -0
- package/lib/components/Dialog/Dialog.stories.tsx +254 -0
- package/lib/components/Dialog/Dialog.tsx +222 -0
- package/lib/components/Dialog/index.d.ts +2 -0
- package/lib/components/Dialog/index.d.ts.map +1 -0
- package/lib/components/Dialog/index.ts +1 -0
- package/lib/components/Disclaimer/Disclaimer.d.ts +5 -0
- package/lib/components/Disclaimer/Disclaimer.d.ts.map +1 -0
- package/lib/components/Disclaimer/Disclaimer.js +1 -0
- package/lib/components/Disclaimer/Disclaimer.stories.d.ts +156 -0
- package/lib/components/Disclaimer/Disclaimer.stories.d.ts.map +1 -0
- package/lib/components/Disclaimer/Disclaimer.stories.js +174 -0
- package/lib/components/Disclaimer/Disclaimer.stories.tsx +148 -0
- package/lib/components/Disclaimer/Disclaimer.tsx +35 -0
- package/lib/components/Disclaimer/index.d.ts +2 -0
- package/lib/components/Disclaimer/index.d.ts.map +1 -0
- package/lib/components/Disclaimer/index.ts +1 -0
- package/lib/components/Dropdown/Dropdown.d.ts +25 -0
- package/lib/components/Dropdown/Dropdown.d.ts.map +1 -0
- package/lib/components/Dropdown/Dropdown.js +14 -3
- package/lib/components/Dropdown/Dropdown.stories.d.ts +417 -0
- package/lib/components/Dropdown/Dropdown.stories.d.ts.map +1 -0
- package/lib/components/Dropdown/Dropdown.stories.js +729 -0
- package/lib/components/Dropdown/Dropdown.stories.tsx +785 -0
- package/lib/components/Dropdown/Dropdown.tsx +174 -0
- package/lib/components/Dropdown/SimpleDropdown.d.ts +44 -0
- package/lib/components/Dropdown/SimpleDropdown.d.ts.map +1 -0
- package/lib/components/Dropdown/SimpleDropdown.js +7 -1
- package/lib/components/Dropdown/SimpleDropdown.stories.d.ts +424 -0
- package/lib/components/Dropdown/SimpleDropdown.stories.d.ts.map +1 -0
- package/lib/components/Dropdown/SimpleDropdown.stories.js +569 -0
- package/lib/components/Dropdown/SimpleDropdown.stories.tsx +534 -0
- package/lib/components/Dropdown/SimpleDropdown.tsx +167 -0
- package/lib/components/Dropdown/index.d.ts +3 -0
- package/lib/components/Dropdown/index.d.ts.map +1 -0
- package/lib/components/Dropdown/index.ts +2 -0
- package/lib/components/EmptyState/EmptyImages/CalendarEmptyImage.d.ts +3 -0
- package/lib/components/EmptyState/EmptyImages/CalendarEmptyImage.d.ts.map +1 -0
- package/lib/components/EmptyState/EmptyImages/CalendarEmptyImage.tsx +108 -0
- package/lib/components/EmptyState/EmptyImages/ChartEmptyImage.d.ts +3 -0
- package/lib/components/EmptyState/EmptyImages/ChartEmptyImage.d.ts.map +1 -0
- package/lib/components/EmptyState/EmptyImages/ChartEmptyImage.tsx +194 -0
- package/lib/components/EmptyState/EmptyImages/DataEmptyImage.d.ts +3 -0
- package/lib/components/EmptyState/EmptyImages/DataEmptyImage.d.ts.map +1 -0
- package/lib/components/EmptyState/EmptyImages/DataEmptyImage.tsx +116 -0
- package/lib/components/EmptyState/EmptyImages/FileEmptyImage.d.ts +3 -0
- package/lib/components/EmptyState/EmptyImages/FileEmptyImage.d.ts.map +1 -0
- package/lib/components/EmptyState/EmptyImages/FileEmptyImage.tsx +133 -0
- package/lib/components/EmptyState/EmptyImages/MessageEmptyImage.d.ts +3 -0
- package/lib/components/EmptyState/EmptyImages/MessageEmptyImage.d.ts.map +1 -0
- package/lib/components/EmptyState/EmptyImages/MessageEmptyImage.tsx +64 -0
- package/lib/components/EmptyState/EmptyImages/UploadEmptyImage.d.ts +3 -0
- package/lib/components/EmptyState/EmptyImages/UploadEmptyImage.d.ts.map +1 -0
- package/lib/components/EmptyState/EmptyImages/UploadEmptyImage.tsx +67 -0
- package/lib/components/EmptyState/EmptyImages/index.d.ts +7 -0
- package/lib/components/EmptyState/EmptyImages/index.d.ts.map +1 -0
- package/lib/components/EmptyState/EmptyImages/index.ts +6 -0
- package/lib/components/EmptyState/EmptyState.d.ts +20 -0
- package/lib/components/EmptyState/EmptyState.d.ts.map +1 -0
- package/lib/components/EmptyState/EmptyState.stories.d.ts +91 -0
- package/lib/components/EmptyState/EmptyState.stories.d.ts.map +1 -0
- package/lib/components/EmptyState/EmptyState.stories.js +115 -0
- package/lib/components/EmptyState/EmptyState.stories.tsx +104 -0
- package/lib/components/EmptyState/EmptyState.tsx +83 -0
- package/lib/components/EmptyState/index.d.ts +2 -0
- package/lib/components/EmptyState/index.d.ts.map +1 -0
- package/lib/components/EmptyState/index.ts +1 -0
- package/lib/components/ErrorMessage/ErrorImages/ForbiddenImage.d.ts +3 -0
- package/lib/components/ErrorMessage/ErrorImages/ForbiddenImage.d.ts.map +1 -0
- package/lib/components/ErrorMessage/ErrorImages/ForbiddenImage.tsx +85 -0
- package/lib/components/ErrorMessage/ErrorImages/NotFoundImage.d.ts +3 -0
- package/lib/components/ErrorMessage/ErrorImages/NotFoundImage.d.ts.map +1 -0
- package/lib/components/ErrorMessage/ErrorImages/NotFoundImage.tsx +117 -0
- package/lib/components/ErrorMessage/ErrorImages/ServerErrorImage.d.ts +3 -0
- package/lib/components/ErrorMessage/ErrorImages/ServerErrorImage.d.ts.map +1 -0
- package/lib/components/ErrorMessage/ErrorImages/ServerErrorImage.tsx +237 -0
- package/lib/components/ErrorMessage/ErrorImages/UnauthorizedImage.d.ts +3 -0
- package/lib/components/ErrorMessage/ErrorImages/UnauthorizedImage.d.ts.map +1 -0
- package/lib/components/ErrorMessage/ErrorImages/UnauthorizedImage.tsx +73 -0
- package/lib/components/ErrorMessage/ErrorImages/index.d.ts +5 -0
- package/lib/components/ErrorMessage/ErrorImages/index.d.ts.map +1 -0
- package/lib/components/ErrorMessage/ErrorImages/index.ts +4 -0
- package/lib/components/ErrorMessage/ErrorMessage.d.ts +22 -0
- package/lib/components/ErrorMessage/ErrorMessage.d.ts.map +1 -0
- package/lib/components/ErrorMessage/ErrorMessage.stories.d.ts +97 -0
- package/lib/components/ErrorMessage/ErrorMessage.stories.d.ts.map +1 -0
- package/lib/components/ErrorMessage/ErrorMessage.stories.js +125 -0
- package/lib/components/ErrorMessage/ErrorMessage.stories.tsx +112 -0
- package/lib/components/ErrorMessage/ErrorMessage.tsx +87 -0
- package/lib/components/ErrorMessage/index.d.ts +2 -0
- package/lib/components/ErrorMessage/index.d.ts.map +1 -0
- package/lib/components/ErrorMessage/index.ts +1 -0
- package/lib/components/FileUpload/FileBlock/FileBlock.d.ts +14 -0
- package/lib/components/FileUpload/FileBlock/FileBlock.d.ts.map +1 -0
- package/lib/components/FileUpload/FileBlock/FileBlock.stories.d.ts +68 -0
- package/lib/components/FileUpload/FileBlock/FileBlock.stories.d.ts.map +1 -0
- package/lib/components/FileUpload/FileBlock/FileBlock.stories.js +91 -0
- package/lib/components/FileUpload/FileBlock/FileBlock.stories.tsx +85 -0
- package/lib/components/FileUpload/FileBlock/FileBlock.tsx +136 -0
- package/lib/components/FileUpload/FileBlock/index.d.ts +2 -0
- package/lib/components/FileUpload/FileBlock/index.d.ts.map +1 -0
- package/lib/components/FileUpload/FileBlock/index.ts +1 -0
- package/lib/components/FileUpload/FileUpload.d.ts +62 -0
- package/lib/components/FileUpload/FileUpload.d.ts.map +1 -0
- package/lib/components/FileUpload/FileUpload.js +6 -1
- package/lib/components/FileUpload/FileUpload.stories.d.ts +340 -0
- package/lib/components/FileUpload/FileUpload.stories.d.ts.map +1 -0
- package/lib/components/FileUpload/FileUpload.stories.js +952 -0
- package/lib/components/FileUpload/FileUpload.stories.tsx +958 -0
- package/lib/components/FileUpload/FileUpload.tsx +206 -0
- package/lib/components/FileUpload/index.d.ts +3 -0
- package/lib/components/FileUpload/index.d.ts.map +1 -0
- package/lib/components/FileUpload/index.ts +2 -0
- package/lib/components/FilterButtonOverlay/FilterButtonOverlay.d.ts +30 -0
- package/lib/components/FilterButtonOverlay/FilterButtonOverlay.d.ts.map +1 -0
- package/lib/components/FilterButtonOverlay/FilterButtonOverlay.js +11 -3
- package/lib/components/FilterButtonOverlay/FilterButtonOverlay.module.css +5 -5
- package/lib/components/FilterButtonOverlay/FilterButtonOverlay.stories.d.ts +300 -0
- package/lib/components/FilterButtonOverlay/FilterButtonOverlay.stories.d.ts.map +1 -0
- package/lib/components/FilterButtonOverlay/FilterButtonOverlay.stories.js +390 -0
- package/lib/components/FilterButtonOverlay/FilterButtonOverlay.stories.tsx +345 -0
- package/lib/components/FilterButtonOverlay/FilterButtonOverlay.tsx +163 -0
- package/lib/components/FilterButtonOverlay/index.d.ts +2 -0
- package/lib/components/FilterButtonOverlay/index.d.ts.map +1 -0
- package/lib/components/FilterButtonOverlay/index.ts +1 -0
- package/lib/components/FocusManager/FocusManager.d.ts +17 -0
- package/lib/components/FocusManager/FocusManager.d.ts.map +1 -0
- package/lib/components/FocusManager/FocusManager.stories.d.ts +103 -0
- package/lib/components/FocusManager/FocusManager.stories.d.ts.map +1 -0
- package/lib/components/FocusManager/FocusManager.stories.js +133 -0
- package/lib/components/FocusManager/FocusManager.stories.tsx +117 -0
- package/lib/components/FocusManager/FocusManager.tsx +59 -0
- package/lib/components/FocusManager/index.d.ts +2 -0
- package/lib/components/FocusManager/index.d.ts.map +1 -0
- package/lib/components/FocusManager/index.ts +1 -0
- package/lib/components/FocusManagerWithArrowKeyNavigation/FocusManagerWithArrowKeyNavigation.d.ts +20 -0
- package/lib/components/FocusManagerWithArrowKeyNavigation/FocusManagerWithArrowKeyNavigation.d.ts.map +1 -0
- package/lib/components/FocusManagerWithArrowKeyNavigation/FocusManagerWithArrowKeyNavigation.js +11 -0
- package/lib/components/FocusManagerWithArrowKeyNavigation/FocusManagerWithArrowKeyNavigation.stories.d.ts +175 -0
- package/lib/components/FocusManagerWithArrowKeyNavigation/FocusManagerWithArrowKeyNavigation.stories.d.ts.map +1 -0
- package/lib/components/FocusManagerWithArrowKeyNavigation/FocusManagerWithArrowKeyNavigation.stories.js +427 -0
- package/lib/components/FocusManagerWithArrowKeyNavigation/FocusManagerWithArrowKeyNavigation.stories.tsx +557 -0
- package/lib/components/FocusManagerWithArrowKeyNavigation/FocusManagerWithArrowKeyNavigation.tsx +156 -0
- package/lib/components/FocusManagerWithArrowKeyNavigation/index.d.ts +2 -0
- package/lib/components/FocusManagerWithArrowKeyNavigation/index.d.ts.map +1 -0
- package/lib/components/FocusManagerWithArrowKeyNavigation/index.ts +1 -0
- package/lib/components/FormTitleWrapper/FormTitleWrapper.d.ts +21 -0
- package/lib/components/FormTitleWrapper/FormTitleWrapper.d.ts.map +1 -0
- package/lib/components/FormTitleWrapper/FormTitleWrapper.stories.d.ts +128 -0
- package/lib/components/FormTitleWrapper/FormTitleWrapper.stories.d.ts.map +1 -0
- package/lib/components/FormTitleWrapper/FormTitleWrapper.stories.js +189 -0
- package/lib/components/FormTitleWrapper/FormTitleWrapper.stories.tsx +173 -0
- package/lib/components/FormTitleWrapper/FormTitleWrapper.tsx +63 -0
- package/lib/components/FormTitleWrapper/index.d.ts +2 -0
- package/lib/components/FormTitleWrapper/index.d.ts.map +1 -0
- package/lib/components/FormTitleWrapper/index.ts +1 -0
- package/lib/components/Grid/Col.stories.d.ts +66 -0
- package/lib/components/Grid/Col.stories.d.ts.map +1 -0
- package/lib/components/Grid/Col.stories.js +141 -0
- package/lib/components/Grid/Col.stories.tsx +114 -0
- package/lib/components/Grid/Grid.d.ts +20 -0
- package/lib/components/Grid/Grid.d.ts.map +1 -0
- package/lib/components/Grid/Grid.js +8 -0
- package/lib/components/Grid/Grid.tsx +119 -0
- package/lib/components/Grid/GridPatterns.stories.d.ts +18 -0
- package/lib/components/Grid/GridPatterns.stories.d.ts.map +1 -0
- package/lib/components/Grid/GridPatterns.stories.js +392 -0
- package/lib/components/Grid/GridPatterns.stories.tsx +420 -0
- package/lib/components/Grid/Row.stories.d.ts +41 -0
- package/lib/components/Grid/Row.stories.d.ts.map +1 -0
- package/lib/components/Grid/Row.stories.js +172 -0
- package/lib/components/Grid/Row.stories.tsx +135 -0
- package/lib/components/Grid/Tablist.layout.stories.d.ts +20 -0
- package/lib/components/Grid/Tablist.layout.stories.d.ts.map +1 -0
- package/lib/components/Grid/Tablist.layout.stories.js +330 -0
- package/lib/components/Grid/Tablist.layout.stories.tsx +281 -0
- package/lib/components/Grid/index.d.ts +2 -0
- package/lib/components/Grid/index.d.ts.map +1 -0
- package/lib/components/Grid/index.ts +1 -0
- package/lib/components/Icon/ClickableIcon.d.ts +26 -0
- package/lib/components/Icon/ClickableIcon.d.ts.map +1 -0
- package/lib/components/Icon/ClickableIcon.js +4 -2
- package/lib/components/Icon/ClickableIcon.tsx +104 -0
- package/lib/components/Icon/Icon.d.ts +31 -0
- package/lib/components/Icon/Icon.d.ts.map +1 -0
- package/lib/components/Icon/Icon.docs.d.ts +134 -0
- package/lib/components/Icon/Icon.docs.d.ts.map +1 -0
- package/lib/components/Icon/Icon.docs.js +1 -1
- package/lib/components/Icon/Icon.docs.ts +118 -0
- package/lib/components/Icon/Icon.js +3 -1
- package/lib/components/Icon/Icon.stories.d.ts +193 -0
- package/lib/components/Icon/Icon.stories.d.ts.map +1 -0
- package/lib/components/Icon/Icon.stories.js +73 -0
- package/lib/components/Icon/Icon.stories.tsx +79 -0
- package/lib/components/Icon/Icon.tsx +78 -0
- package/lib/components/Icon/SemanticIcon.d.ts +14 -0
- package/lib/components/Icon/SemanticIcon.d.ts.map +1 -0
- package/lib/components/Icon/SemanticIcon.js +3 -1
- package/lib/components/Icon/SemanticIcon.stories.d.ts +190 -0
- package/lib/components/Icon/SemanticIcon.stories.d.ts.map +1 -0
- package/lib/components/Icon/SemanticIcon.stories.js +75 -0
- package/lib/components/Icon/SemanticIcon.stories.tsx +74 -0
- package/lib/components/Icon/SemanticIcon.tsx +49 -0
- package/lib/components/Icon/index.d.ts +4 -0
- package/lib/components/Icon/index.d.ts.map +1 -0
- package/lib/components/Icon/index.ts +3 -0
- package/lib/components/InContextAlert/InContextAlert.d.ts +31 -0
- package/lib/components/InContextAlert/InContextAlert.d.ts.map +1 -0
- package/lib/components/InContextAlert/InContextAlert.js +2 -0
- package/lib/components/InContextAlert/InContextAlert.stories.d.ts +164 -0
- package/lib/components/InContextAlert/InContextAlert.stories.d.ts.map +1 -0
- package/lib/components/InContextAlert/InContextAlert.stories.js +184 -0
- package/lib/components/InContextAlert/InContextAlert.stories.tsx +164 -0
- package/lib/components/InContextAlert/InContextAlert.tsx +204 -0
- package/lib/components/InContextAlert/index.d.ts +2 -0
- package/lib/components/InContextAlert/index.d.ts.map +1 -0
- package/lib/components/InContextAlert/index.ts +1 -0
- package/lib/components/InfinitePagination/InfinitePagination.d.ts +26 -0
- package/lib/components/InfinitePagination/InfinitePagination.d.ts.map +1 -0
- package/lib/components/InfinitePagination/InfinitePagination.js +9 -2
- package/lib/components/InfinitePagination/InfinitePagination.stories.d.ts +145 -0
- package/lib/components/InfinitePagination/InfinitePagination.stories.d.ts.map +1 -0
- package/lib/components/InfinitePagination/InfinitePagination.stories.js +343 -0
- package/lib/components/InfinitePagination/InfinitePagination.stories.tsx +323 -0
- package/lib/components/InfinitePagination/InfinitePagination.tsx +121 -0
- package/lib/components/InfinitePagination/index.d.ts +2 -0
- package/lib/components/InfinitePagination/index.d.ts.map +1 -0
- package/lib/components/InfinitePagination/index.ts +1 -0
- package/lib/components/InlineDropdown/InlineDropdown.d.ts +25 -0
- package/lib/components/InlineDropdown/InlineDropdown.d.ts.map +1 -0
- package/lib/components/InlineDropdown/InlineDropdown.js +12 -3
- package/lib/components/InlineDropdown/InlineDropdown.stories.d.ts +350 -0
- package/lib/components/InlineDropdown/InlineDropdown.stories.d.ts.map +1 -0
- package/lib/components/InlineDropdown/InlineDropdown.stories.js +397 -0
- package/lib/components/InlineDropdown/InlineDropdown.stories.tsx +415 -0
- package/lib/components/InlineDropdown/InlineDropdown.tsx +175 -0
- package/lib/components/InlineDropdown/SimpleInlineDropdown.d.ts +40 -0
- package/lib/components/InlineDropdown/SimpleInlineDropdown.d.ts.map +1 -0
- package/lib/components/InlineDropdown/SimpleInlineDropdown.js +7 -0
- package/lib/components/InlineDropdown/SimpleInlineDropdown.stories.d.ts +469 -0
- package/lib/components/InlineDropdown/SimpleInlineDropdown.stories.d.ts.map +1 -0
- package/lib/components/InlineDropdown/SimpleInlineDropdown.stories.js +521 -0
- package/lib/components/InlineDropdown/SimpleInlineDropdown.stories.tsx +513 -0
- package/lib/components/InlineDropdown/SimpleInlineDropdown.tsx +165 -0
- package/lib/components/InlineDropdown/index.d.ts +3 -0
- package/lib/components/InlineDropdown/index.d.ts.map +1 -0
- package/lib/components/InlineDropdown/index.ts +2 -0
- package/lib/components/Input/Input.d.ts +76 -0
- package/lib/components/Input/Input.d.ts.map +1 -0
- package/lib/components/Input/Input.js +18 -5
- package/lib/components/Input/Input.stories.d.ts +502 -0
- package/lib/components/Input/Input.stories.d.ts.map +1 -0
- package/lib/components/Input/Input.stories.js +608 -0
- package/lib/components/Input/Input.stories.tsx +590 -0
- package/lib/components/Input/Input.tsx +336 -0
- package/lib/components/Input/NativeColorpicker.stories.d.ts +370 -0
- package/lib/components/Input/NativeColorpicker.stories.d.ts.map +1 -0
- package/lib/components/Input/NativeColorpicker.stories.js +395 -0
- package/lib/components/Input/NativeColorpicker.stories.tsx +337 -0
- package/lib/components/Input/NativeDatepicker.stories.d.ts +388 -0
- package/lib/components/Input/NativeDatepicker.stories.d.ts.map +1 -0
- package/lib/components/Input/NativeDatepicker.stories.js +457 -0
- package/lib/components/Input/NativeDatepicker.stories.tsx +424 -0
- package/lib/components/Input/index.d.ts +2 -0
- package/lib/components/Input/index.d.ts.map +1 -0
- package/lib/components/Input/index.ts +1 -0
- package/lib/components/KPIBox/KPIBox.d.ts +23 -0
- package/lib/components/KPIBox/KPIBox.d.ts.map +1 -0
- package/lib/components/KPIBox/KPIBox.stories.d.ts +132 -0
- package/lib/components/KPIBox/KPIBox.stories.d.ts.map +1 -0
- package/lib/components/KPIBox/KPIBox.stories.js +246 -0
- package/lib/components/KPIBox/KPIBox.stories.tsx +321 -0
- package/lib/components/KPIBox/KPIBox.tsx +94 -0
- package/lib/components/KPIBox/index.d.ts +2 -0
- package/lib/components/KPIBox/index.d.ts.map +1 -0
- package/lib/components/KPIBox/index.ts +1 -0
- package/lib/components/LinearLoader/LinearLoader.d.ts +9 -0
- package/lib/components/LinearLoader/LinearLoader.d.ts.map +1 -0
- package/lib/components/LinearLoader/LinearLoader.stories.d.ts +78 -0
- package/lib/components/LinearLoader/LinearLoader.stories.d.ts.map +1 -0
- package/lib/components/LinearLoader/LinearLoader.stories.js +135 -0
- package/lib/components/LinearLoader/LinearLoader.stories.tsx +132 -0
- package/lib/components/LinearLoader/LinearLoader.tsx +48 -0
- package/lib/components/LinearLoader/index.d.ts +2 -0
- package/lib/components/LinearLoader/index.d.ts.map +1 -0
- package/lib/components/LinearLoader/index.ts +1 -0
- package/lib/components/Link/Link.d.ts +93 -0
- package/lib/components/Link/Link.d.ts.map +1 -0
- package/lib/components/Link/Link.js +16 -5
- package/lib/components/Link/Link.stories.d.ts +284 -0
- package/lib/components/Link/Link.stories.d.ts.map +1 -0
- package/lib/components/Link/Link.stories.js +350 -0
- package/lib/components/Link/Link.stories.tsx +302 -0
- package/lib/components/Link/Link.tsx +231 -0
- package/lib/components/Link/index.d.ts +2 -0
- package/lib/components/Link/index.d.ts.map +1 -0
- package/lib/components/Link/index.ts +1 -0
- package/lib/components/Menu/Menu.d.ts +74 -0
- package/lib/components/Menu/Menu.d.ts.map +1 -0
- package/lib/components/Menu/Menu.js +5 -2
- package/lib/components/Menu/Menu.stories.d.ts +526 -0
- package/lib/components/Menu/Menu.stories.d.ts.map +1 -0
- package/lib/components/Menu/Menu.stories.js +1048 -0
- package/lib/components/Menu/Menu.stories.tsx +1046 -0
- package/lib/components/Menu/Menu.tsx +391 -0
- package/lib/components/Menu/MenuOptionButton.d.ts +9 -0
- package/lib/components/Menu/MenuOptionButton.d.ts.map +1 -0
- package/lib/components/Menu/MenuOptionButton.js +6 -1
- package/lib/components/Menu/MenuOptionButton.tsx +206 -0
- package/lib/components/Menu/index.d.ts +3 -0
- package/lib/components/Menu/index.d.ts.map +1 -0
- package/lib/components/Menu/index.ts +2 -0
- package/lib/components/Modal/Modal.d.ts +64 -0
- package/lib/components/Modal/Modal.d.ts.map +1 -0
- package/lib/components/Modal/Modal.js +6 -2
- package/lib/components/Modal/Modal.stories.d.ts +149 -0
- package/lib/components/Modal/Modal.stories.d.ts.map +1 -0
- package/lib/components/Modal/Modal.stories.js +427 -0
- package/lib/components/Modal/Modal.stories.tsx +430 -0
- package/lib/components/Modal/Modal.tsx +379 -0
- package/lib/components/Modal/index.d.ts +3 -0
- package/lib/components/Modal/index.d.ts.map +1 -0
- package/lib/components/Modal/index.ts +8 -0
- package/lib/components/Notification/Notification.d.ts +37 -0
- package/lib/components/Notification/Notification.d.ts.map +1 -0
- package/lib/components/Notification/Notification.js +1 -0
- package/lib/components/Notification/Notification.stories.d.ts +136 -0
- package/lib/components/Notification/Notification.stories.d.ts.map +1 -0
- package/lib/components/Notification/Notification.stories.js +153 -0
- package/lib/components/Notification/Notification.stories.tsx +132 -0
- package/lib/components/Notification/Notification.tsx +140 -0
- package/lib/components/Notification/index.d.ts +2 -0
- package/lib/components/Notification/index.d.ts.map +1 -0
- package/lib/components/Notification/index.ts +1 -0
- package/lib/components/OptionButton/OptionButton.d.ts +33 -0
- package/lib/components/OptionButton/OptionButton.d.ts.map +1 -0
- package/lib/components/OptionButton/OptionButton.stories.d.ts +366 -0
- package/lib/components/OptionButton/OptionButton.stories.d.ts.map +1 -0
- package/lib/components/OptionButton/OptionButton.stories.js +437 -0
- package/lib/components/OptionButton/OptionButton.stories.tsx +397 -0
- package/lib/components/OptionButton/OptionButton.tsx +149 -0
- package/lib/components/OptionButton/SimpleOptionButton.d.ts +47 -0
- package/lib/components/OptionButton/SimpleOptionButton.d.ts.map +1 -0
- package/lib/components/OptionButton/SimpleOptionButton.js +4 -0
- package/lib/components/OptionButton/SimpleOptionButton.stories.d.ts +502 -0
- package/lib/components/OptionButton/SimpleOptionButton.stories.d.ts.map +1 -0
- package/lib/components/OptionButton/SimpleOptionButton.stories.js +552 -0
- package/lib/components/OptionButton/SimpleOptionButton.stories.tsx +525 -0
- package/lib/components/OptionButton/SimpleOptionButton.tsx +160 -0
- package/lib/components/OptionButton/index.d.ts +3 -0
- package/lib/components/OptionButton/index.d.ts.map +1 -0
- package/lib/components/OptionButton/index.ts +2 -0
- package/lib/components/PageTitle/PageTitle.d.ts +156 -0
- package/lib/components/PageTitle/PageTitle.d.ts.map +1 -0
- package/lib/components/PageTitle/PageTitle.js +7 -2
- package/lib/components/PageTitle/PageTitle.stories.d.ts +83 -0
- package/lib/components/PageTitle/PageTitle.stories.d.ts.map +1 -0
- package/lib/components/PageTitle/PageTitle.stories.js +221 -0
- package/lib/components/PageTitle/PageTitle.stories.tsx +257 -0
- package/lib/components/PageTitle/PageTitle.tsx +276 -0
- package/lib/components/PageTitle/index.d.ts +2 -0
- package/lib/components/PageTitle/index.d.ts.map +1 -0
- package/lib/components/PageTitle/index.ts +1 -0
- package/lib/components/Pagination/Pagination.d.ts +39 -0
- package/lib/components/Pagination/Pagination.d.ts.map +1 -0
- package/lib/components/Pagination/Pagination.js +3 -1
- package/lib/components/Pagination/Pagination.stories.d.ts +203 -0
- package/lib/components/Pagination/Pagination.stories.d.ts.map +1 -0
- package/lib/components/Pagination/Pagination.stories.js +263 -0
- package/lib/components/Pagination/Pagination.stories.tsx +259 -0
- package/lib/components/Pagination/Pagination.tsx +147 -0
- package/lib/components/Pagination/PaginationItem.d.ts +5 -0
- package/lib/components/Pagination/PaginationItem.d.ts.map +1 -0
- package/lib/components/Pagination/PaginationItem.js +3 -0
- package/lib/components/Pagination/PaginationItem.tsx +118 -0
- package/lib/components/Pagination/index.d.ts +2 -0
- package/lib/components/Pagination/index.d.ts.map +1 -0
- package/lib/components/Pagination/index.ts +1 -0
- package/lib/components/Panel/Panel.d.ts +35 -0
- package/lib/components/Panel/Panel.d.ts.map +1 -0
- package/lib/components/Panel/Panel.stories.d.ts +187 -0
- package/lib/components/Panel/Panel.stories.d.ts.map +1 -0
- package/lib/components/Panel/Panel.stories.js +415 -0
- package/lib/components/Panel/Panel.stories.tsx +452 -0
- package/lib/components/Panel/Panel.tsx +181 -0
- package/lib/components/Panel/index.d.ts +3 -0
- package/lib/components/Panel/index.d.ts.map +1 -0
- package/lib/components/Panel/index.ts +2 -0
- package/lib/components/ProgressDonut/ProgressDonut.d.ts +13 -0
- package/lib/components/ProgressDonut/ProgressDonut.d.ts.map +1 -0
- package/lib/components/ProgressDonut/ProgressDonut.js +1 -0
- package/lib/components/ProgressDonut/ProgressDonut.stories.d.ts +72 -0
- package/lib/components/ProgressDonut/ProgressDonut.stories.d.ts.map +1 -0
- package/lib/components/ProgressDonut/ProgressDonut.stories.js +96 -0
- package/lib/components/ProgressDonut/ProgressDonut.stories.tsx +97 -0
- package/lib/components/ProgressDonut/ProgressDonut.tsx +111 -0
- package/lib/components/ProgressDonut/index.d.ts +2 -0
- package/lib/components/ProgressDonut/index.d.ts.map +1 -0
- package/lib/components/ProgressDonut/index.ts +1 -0
- package/lib/components/PromptChip/PromptChip.d.ts +38 -0
- package/lib/components/PromptChip/PromptChip.d.ts.map +1 -0
- package/lib/components/PromptChip/PromptChip.js +8 -2
- package/lib/components/PromptChip/PromptChip.stories.d.ts +205 -0
- package/lib/components/PromptChip/PromptChip.stories.d.ts.map +1 -0
- package/lib/components/PromptChip/PromptChip.stories.js +242 -0
- package/lib/components/PromptChip/PromptChip.stories.tsx +202 -0
- package/lib/components/PromptChip/PromptChip.tsx +166 -0
- package/lib/components/PromptChip/index.d.ts +2 -0
- package/lib/components/PromptChip/index.d.ts.map +1 -0
- package/lib/components/PromptChip/index.ts +1 -0
- package/lib/components/PromptInput/PromptInput.d.ts +38 -0
- package/lib/components/PromptInput/PromptInput.d.ts.map +1 -0
- package/lib/components/PromptInput/PromptInput.js +10 -1
- package/lib/components/PromptInput/PromptInput.stories.d.ts +265 -0
- package/lib/components/PromptInput/PromptInput.stories.d.ts.map +1 -0
- package/lib/components/PromptInput/PromptInput.stories.js +390 -0
- package/lib/components/PromptInput/PromptInput.stories.tsx +349 -0
- package/lib/components/PromptInput/PromptInput.tsx +190 -0
- package/lib/components/PromptInput/index.d.ts +2 -0
- package/lib/components/PromptInput/index.d.ts.map +1 -0
- package/lib/components/PromptInput/index.ts +1 -0
- package/lib/components/RadioButton/RadioButton.d.ts +31 -0
- package/lib/components/RadioButton/RadioButton.d.ts.map +1 -0
- package/lib/components/RadioButton/RadioButton.js +1 -0
- package/lib/components/RadioButton/RadioButton.stories.d.ts +149 -0
- package/lib/components/RadioButton/RadioButton.stories.d.ts.map +1 -0
- package/lib/components/RadioButton/RadioButton.stories.js +180 -0
- package/lib/components/RadioButton/RadioButton.stories.tsx +157 -0
- package/lib/components/RadioButton/RadioButton.tsx +135 -0
- package/lib/components/RadioButton/RadioGroup.d.ts +27 -0
- package/lib/components/RadioButton/RadioGroup.d.ts.map +1 -0
- package/lib/components/RadioButton/RadioGroup.js +2 -0
- package/lib/components/RadioButton/RadioGroup.stories.d.ts +137 -0
- package/lib/components/RadioButton/RadioGroup.stories.d.ts.map +1 -0
- package/lib/components/RadioButton/RadioGroup.stories.js +317 -0
- package/lib/components/RadioButton/RadioGroup.stories.tsx +283 -0
- package/lib/components/RadioButton/RadioGroup.tsx +90 -0
- package/lib/components/RadioButton/index.d.ts +3 -0
- package/lib/components/RadioButton/index.d.ts.map +1 -0
- package/lib/components/RadioButton/index.ts +2 -0
- package/lib/components/RadioTile/RadioTile.d.ts +23 -0
- package/lib/components/RadioTile/RadioTile.d.ts.map +1 -0
- package/lib/components/RadioTile/RadioTile.js +2 -0
- package/lib/components/RadioTile/RadioTile.stories.d.ts +171 -0
- package/lib/components/RadioTile/RadioTile.stories.d.ts.map +1 -0
- package/lib/components/RadioTile/RadioTile.stories.js +261 -0
- package/lib/components/RadioTile/RadioTile.stories.tsx +276 -0
- package/lib/components/RadioTile/RadioTile.tsx +107 -0
- package/lib/components/RadioTile/index.d.ts +2 -0
- package/lib/components/RadioTile/index.d.ts.map +1 -0
- package/lib/components/RadioTile/index.ts +1 -0
- package/lib/components/RangeSlider/RangeSlider.d.ts +27 -0
- package/lib/components/RangeSlider/RangeSlider.d.ts.map +1 -0
- package/lib/components/RangeSlider/RangeSlider.js +3 -0
- package/lib/components/RangeSlider/RangeSlider.stories.d.ts +287 -0
- package/lib/components/RangeSlider/RangeSlider.stories.d.ts.map +1 -0
- package/lib/components/RangeSlider/RangeSlider.stories.js +379 -0
- package/lib/components/RangeSlider/RangeSlider.stories.tsx +342 -0
- package/lib/components/RangeSlider/RangeSlider.tsx +201 -0
- package/lib/components/RangeSlider/index.d.ts +2 -0
- package/lib/components/RangeSlider/index.d.ts.map +1 -0
- package/lib/components/RangeSlider/index.ts +1 -0
- package/lib/components/Rating/Rating.d.ts +32 -0
- package/lib/components/Rating/Rating.d.ts.map +1 -0
- package/lib/components/Rating/Rating.js +7 -3
- package/lib/components/Rating/Rating.stories.d.ts +237 -0
- package/lib/components/Rating/Rating.stories.d.ts.map +1 -0
- package/lib/components/Rating/Rating.stories.js +309 -0
- package/lib/components/Rating/Rating.stories.tsx +257 -0
- package/lib/components/Rating/Rating.tsx +141 -0
- package/lib/components/Rating/index.d.ts +2 -0
- package/lib/components/Rating/index.d.ts.map +1 -0
- package/lib/components/Rating/index.ts +1 -0
- package/lib/components/ScoreBar/ScoreBar.d.ts +28 -0
- package/lib/components/ScoreBar/ScoreBar.d.ts.map +1 -0
- package/lib/components/ScoreBar/ScoreBar.js +1 -1
- package/lib/components/ScoreBar/ScoreBar.stories.d.ts +156 -0
- package/lib/components/ScoreBar/ScoreBar.stories.d.ts.map +1 -0
- package/lib/components/ScoreBar/ScoreBar.stories.js +199 -0
- package/lib/components/ScoreBar/ScoreBar.stories.tsx +182 -0
- package/lib/components/ScoreBar/ScoreBar.tsx +133 -0
- package/lib/components/ScoreBar/index.d.ts +2 -0
- package/lib/components/ScoreBar/index.d.ts.map +1 -0
- package/lib/components/ScoreBar/index.ts +1 -0
- package/lib/components/SearchInput/SearchInput.d.ts +15 -0
- package/lib/components/SearchInput/SearchInput.d.ts.map +1 -0
- package/lib/components/SearchInput/SearchInput.stories.d.ts +260 -0
- package/lib/components/SearchInput/SearchInput.stories.d.ts.map +1 -0
- package/lib/components/SearchInput/SearchInput.stories.js +299 -0
- package/lib/components/SearchInput/SearchInput.stories.tsx +260 -0
- package/lib/components/SearchInput/SearchInput.tsx +81 -0
- package/lib/components/SearchInput/index.d.ts +3 -0
- package/lib/components/SearchInput/index.d.ts.map +1 -0
- package/lib/components/SearchInput/index.ts +2 -0
- package/lib/components/Separator/Separator.d.ts +18 -0
- package/lib/components/Separator/Separator.d.ts.map +1 -0
- package/lib/components/Separator/Separator.stories.d.ts +79 -0
- package/lib/components/Separator/Separator.stories.d.ts.map +1 -0
- package/lib/components/Separator/Separator.stories.js +101 -0
- package/lib/components/Separator/Separator.stories.tsx +95 -0
- package/lib/components/Separator/Separator.tsx +57 -0
- package/lib/components/Separator/index.d.ts +2 -0
- package/lib/components/Separator/index.d.ts.map +1 -0
- package/lib/components/Separator/index.ts +1 -0
- package/lib/components/Shimmer/Shimmer.d.ts +57 -0
- package/lib/components/Shimmer/Shimmer.d.ts.map +1 -0
- package/lib/components/Shimmer/Shimmer.js +4 -2
- package/lib/components/Shimmer/Shimmer.stories.d.ts +213 -0
- package/lib/components/Shimmer/Shimmer.stories.d.ts.map +1 -0
- package/lib/components/Shimmer/Shimmer.stories.js +323 -0
- package/lib/components/Shimmer/Shimmer.stories.tsx +317 -0
- package/lib/components/Shimmer/Shimmer.tsx +143 -0
- package/lib/components/Shimmer/index.d.ts +2 -0
- package/lib/components/Shimmer/index.d.ts.map +1 -0
- package/lib/components/Shimmer/index.ts +1 -0
- package/lib/components/SideMenuLink/SideMenuLink.d.ts +211 -0
- package/lib/components/SideMenuLink/SideMenuLink.d.ts.map +1 -0
- package/lib/components/SideMenuLink/SideMenuLink.js +8 -2
- package/lib/components/SideMenuLink/SideMenuLink.stories.d.ts +96 -0
- package/lib/components/SideMenuLink/SideMenuLink.stories.d.ts.map +1 -0
- package/lib/components/SideMenuLink/SideMenuLink.stories.js +162 -0
- package/lib/components/SideMenuLink/SideMenuLink.stories.tsx +153 -0
- package/lib/components/SideMenuLink/SideMenuLink.tsx +344 -0
- package/lib/components/SideMenuLink/index.d.ts +2 -0
- package/lib/components/SideMenuLink/index.d.ts.map +1 -0
- package/lib/components/SideMenuLink/index.ts +1 -0
- package/lib/components/StatusIndicator/StatusIndicator.d.ts +25 -0
- package/lib/components/StatusIndicator/StatusIndicator.d.ts.map +1 -0
- package/lib/components/StatusIndicator/StatusIndicator.stories.d.ts +92 -0
- package/lib/components/StatusIndicator/StatusIndicator.stories.d.ts.map +1 -0
- package/lib/components/StatusIndicator/StatusIndicator.stories.js +145 -0
- package/lib/components/StatusIndicator/StatusIndicator.stories.tsx +130 -0
- package/lib/components/StatusIndicator/StatusIndicator.tsx +62 -0
- package/lib/components/StatusIndicator/index.d.ts +2 -0
- package/lib/components/StatusIndicator/index.d.ts.map +1 -0
- package/lib/components/StatusIndicator/index.ts +1 -0
- package/lib/components/Stepper/Step/Step.d.ts +25 -0
- package/lib/components/Stepper/Step/Step.d.ts.map +1 -0
- package/lib/components/Stepper/Step/Step.js +12 -3
- package/lib/components/Stepper/Step/Step.stories.d.ts +120 -0
- package/lib/components/Stepper/Step/Step.stories.d.ts.map +1 -0
- package/lib/components/Stepper/Step/Step.stories.js +147 -0
- package/lib/components/Stepper/Step/Step.stories.tsx +117 -0
- package/lib/components/Stepper/Step/Step.tsx +125 -0
- package/lib/components/Stepper/Step/StepContent.d.ts +14 -0
- package/lib/components/Stepper/Step/StepContent.d.ts.map +1 -0
- package/lib/components/Stepper/Step/StepContent.tsx +40 -0
- package/lib/components/Stepper/Step/StepLabel.d.ts +14 -0
- package/lib/components/Stepper/Step/StepLabel.d.ts.map +1 -0
- package/lib/components/Stepper/Step/StepLabel.tsx +40 -0
- package/lib/components/Stepper/Step/index.d.ts +4 -0
- package/lib/components/Stepper/Step/index.d.ts.map +1 -0
- package/lib/components/Stepper/Step/index.ts +3 -0
- package/lib/components/Stepper/Stepper.d.ts +15 -0
- package/lib/components/Stepper/Stepper.d.ts.map +1 -0
- package/lib/components/Stepper/Stepper.js +4 -0
- package/lib/components/Stepper/Stepper.stories.d.ts +210 -0
- package/lib/components/Stepper/Stepper.stories.d.ts.map +1 -0
- package/lib/components/Stepper/Stepper.stories.js +402 -0
- package/lib/components/Stepper/Stepper.stories.tsx +422 -0
- package/lib/components/Stepper/Stepper.tsx +68 -0
- package/lib/components/Stepper/index.d.ts +3 -0
- package/lib/components/Stepper/index.d.ts.map +1 -0
- package/lib/components/Stepper/index.ts +2 -0
- package/lib/components/StickyBar/StickyBar.d.ts +15 -0
- package/lib/components/StickyBar/StickyBar.d.ts.map +1 -0
- package/lib/components/StickyBar/StickyBar.stories.d.ts +35 -0
- package/lib/components/StickyBar/StickyBar.stories.d.ts.map +1 -0
- package/lib/components/StickyBar/StickyBar.stories.js +141 -0
- package/lib/components/StickyBar/StickyBar.stories.tsx +152 -0
- package/lib/components/StickyBar/StickyBar.tsx +65 -0
- package/lib/components/StickyBar/index.d.ts +2 -0
- package/lib/components/StickyBar/index.d.ts.map +1 -0
- package/lib/components/StickyBar/index.ts +1 -0
- package/lib/components/SubMenu/SubMenu.d.ts +19 -0
- package/lib/components/SubMenu/SubMenu.d.ts.map +1 -0
- package/lib/components/SubMenu/SubMenu.stories.d.ts +114 -0
- package/lib/components/SubMenu/SubMenu.stories.d.ts.map +1 -0
- package/lib/components/SubMenu/SubMenu.stories.js +373 -0
- package/lib/components/SubMenu/SubMenu.stories.tsx +413 -0
- package/lib/components/SubMenu/SubMenu.tsx +96 -0
- package/lib/components/SubMenu/SubMenuGroup.d.ts +24 -0
- package/lib/components/SubMenu/SubMenuGroup.d.ts.map +1 -0
- package/lib/components/SubMenu/SubMenuGroup.js +11 -3
- package/lib/components/SubMenu/SubMenuGroup.tsx +161 -0
- package/lib/components/SubMenu/SubMenuItem.d.ts +42 -0
- package/lib/components/SubMenu/SubMenuItem.d.ts.map +1 -0
- package/lib/components/SubMenu/SubMenuItem.js +14 -4
- package/lib/components/SubMenu/SubMenuItem.tsx +170 -0
- package/lib/components/SubMenu/SubMenuLink.d.ts +14 -0
- package/lib/components/SubMenu/SubMenuLink.d.ts.map +1 -0
- package/lib/components/SubMenu/SubMenuLink.js +6 -2
- package/lib/components/SubMenu/SubMenuLink.tsx +87 -0
- package/lib/components/SubMenu/index.d.ts +5 -0
- package/lib/components/SubMenu/index.d.ts.map +1 -0
- package/lib/components/SubMenu/index.ts +4 -0
- package/lib/components/Table/BasicTable.stories.d.ts +536 -0
- package/lib/components/Table/BasicTable.stories.d.ts.map +1 -0
- package/lib/components/Table/BasicTable.stories.js +552 -0
- package/lib/components/Table/BasicTable.stories.tsx +647 -0
- package/lib/components/Table/BulkActions.stories.d.ts +257 -0
- package/lib/components/Table/BulkActions.stories.d.ts.map +1 -0
- package/lib/components/Table/BulkActions.stories.js +252 -0
- package/lib/components/Table/BulkActions.stories.tsx +267 -0
- package/lib/components/Table/Cell.d.ts +37 -0
- package/lib/components/Table/Cell.d.ts.map +1 -0
- package/lib/components/Table/Cell.js +3 -3
- package/lib/components/Table/Cell.tsx +125 -0
- package/lib/components/Table/DefaultRow.d.ts +39 -0
- package/lib/components/Table/DefaultRow.d.ts.map +1 -0
- package/lib/components/Table/DefaultRow.js +2 -2
- package/lib/components/Table/DefaultRow.tsx +159 -0
- package/lib/components/Table/DefaultTableHeader.d.ts +43 -0
- package/lib/components/Table/DefaultTableHeader.d.ts.map +1 -0
- package/lib/components/Table/DefaultTableHeader.js +9 -2
- package/lib/components/Table/DefaultTableHeader.tsx +244 -0
- package/lib/components/Table/InlineEdit.stories.d.ts +244 -0
- package/lib/components/Table/InlineEdit.stories.d.ts.map +1 -0
- package/lib/components/Table/InlineEdit.stories.js +355 -0
- package/lib/components/Table/InlineEdit.stories.tsx +390 -0
- package/lib/components/Table/StaticTable.d.ts +18 -0
- package/lib/components/Table/StaticTable.d.ts.map +1 -0
- package/lib/components/Table/StaticTable.js +39 -13
- package/lib/components/Table/StaticTable.tsx +230 -0
- package/lib/components/Table/Table.d.ts +56 -0
- package/lib/components/Table/Table.d.ts.map +1 -0
- package/lib/components/Table/Table.docs.d.ts +229 -0
- package/lib/components/Table/Table.docs.d.ts.map +1 -0
- package/lib/components/Table/Table.docs.js +3 -3
- package/lib/components/Table/Table.docs.ts +495 -0
- package/lib/components/Table/Table.js +12 -1
- package/lib/components/Table/Table.tsx +135 -0
- package/lib/components/Table/TableActionBar.d.ts +11 -0
- package/lib/components/Table/TableActionBar.d.ts.map +1 -0
- package/lib/components/Table/TableActionBar.tsx +55 -0
- package/lib/components/Table/TableBottomBar.d.ts +7 -0
- package/lib/components/Table/TableBottomBar.d.ts.map +1 -0
- package/lib/components/Table/TableBottomBar.tsx +25 -0
- package/lib/components/Table/TableTopBar.d.ts +7 -0
- package/lib/components/Table/TableTopBar.d.ts.map +1 -0
- package/lib/components/Table/TableTopBar.tsx +25 -0
- package/lib/components/Table/dummyTableData.d.ts +1946 -0
- package/lib/components/Table/dummyTableData.d.ts.map +1 -0
- package/lib/components/Table/dummyTableData.ts +2189 -0
- package/lib/components/Table/hooks.d.ts +15 -0
- package/lib/components/Table/hooks.d.ts.map +1 -0
- package/lib/components/Table/hooks.js +7 -0
- package/lib/components/Table/hooks.ts +102 -0
- package/lib/components/Table/index.d.ts +9 -0
- package/lib/components/Table/index.d.ts.map +1 -0
- package/lib/components/Table/index.ts +8 -0
- package/lib/components/Tabs/Tab/Tab.d.ts +35 -0
- package/lib/components/Tabs/Tab/Tab.d.ts.map +1 -0
- package/lib/components/Tabs/Tab/Tab.js +5 -1
- package/lib/components/Tabs/Tab/Tab.stories.d.ts +156 -0
- package/lib/components/Tabs/Tab/Tab.stories.d.ts.map +1 -0
- package/lib/components/Tabs/Tab/Tab.stories.js +179 -0
- package/lib/components/Tabs/Tab/Tab.stories.tsx +151 -0
- package/lib/components/Tabs/Tab/Tab.tsx +152 -0
- package/lib/components/Tabs/Tab/index.d.ts +2 -0
- package/lib/components/Tabs/Tab/index.d.ts.map +1 -0
- package/lib/components/Tabs/Tab/index.ts +1 -0
- package/lib/components/Tabs/TabList/TabDropdown.d.ts +24 -0
- package/lib/components/Tabs/TabList/TabDropdown.d.ts.map +1 -0
- package/lib/components/Tabs/TabList/TabDropdown.js +8 -2
- package/lib/components/Tabs/TabList/TabDropdown.tsx +125 -0
- package/lib/components/Tabs/TabList/TabList.d.ts +24 -0
- package/lib/components/Tabs/TabList/TabList.d.ts.map +1 -0
- package/lib/components/Tabs/TabList/TabList.js +17 -3
- package/lib/components/Tabs/TabList/TabList.stories.d.ts +111 -0
- package/lib/components/Tabs/TabList/TabList.stories.d.ts.map +1 -0
- package/lib/components/Tabs/TabList/TabList.stories.js +197 -0
- package/lib/components/Tabs/TabList/TabList.stories.tsx +172 -0
- package/lib/components/Tabs/TabList/TabList.tsx +178 -0
- package/lib/components/Tabs/TabList/index.d.ts +2 -0
- package/lib/components/Tabs/TabList/index.d.ts.map +1 -0
- package/lib/components/Tabs/TabList/index.ts +1 -0
- package/lib/components/Tabs/index.d.ts +3 -0
- package/lib/components/Tabs/index.d.ts.map +1 -0
- package/lib/components/Tabs/index.ts +2 -0
- package/lib/components/Text/HighlightedText.stories.d.ts +120 -0
- package/lib/components/Text/HighlightedText.stories.d.ts.map +1 -0
- package/lib/components/Text/HighlightedText.stories.js +131 -0
- package/lib/components/Text/HighlightedText.stories.tsx +122 -0
- package/lib/components/Text/Text.d.ts +46 -0
- package/lib/components/Text/Text.d.ts.map +1 -0
- package/lib/components/Text/Text.js +1 -0
- package/lib/components/Text/Text.stories.d.ts +271 -0
- package/lib/components/Text/Text.stories.d.ts.map +1 -0
- package/lib/components/Text/Text.stories.js +262 -0
- package/lib/components/Text/Text.stories.tsx +302 -0
- package/lib/components/Text/Text.tsx +882 -0
- package/lib/components/Text/index.d.ts +4 -0
- package/lib/components/Text/index.d.ts.map +1 -0
- package/lib/components/Text/index.ts +30 -0
- package/lib/components/TextTile/TextTile.d.ts +14 -0
- package/lib/components/TextTile/TextTile.d.ts.map +1 -0
- package/lib/components/TextTile/TextTile.stories.d.ts +76 -0
- package/lib/components/TextTile/TextTile.stories.d.ts.map +1 -0
- package/lib/components/TextTile/TextTile.stories.js +100 -0
- package/lib/components/TextTile/TextTile.stories.tsx +89 -0
- package/lib/components/TextTile/TextTile.tsx +51 -0
- package/lib/components/TextTile/index.d.ts +2 -0
- package/lib/components/TextTile/index.d.ts.map +1 -0
- package/lib/components/TextTile/index.ts +1 -0
- package/lib/components/Textarea/Textarea.d.ts +28 -0
- package/lib/components/Textarea/Textarea.d.ts.map +1 -0
- package/lib/components/Textarea/Textarea.js +14 -4
- package/lib/components/Textarea/Textarea.stories.d.ts +264 -0
- package/lib/components/Textarea/Textarea.stories.d.ts.map +1 -0
- package/lib/components/Textarea/Textarea.stories.js +329 -0
- package/lib/components/Textarea/Textarea.stories.tsx +324 -0
- package/lib/components/Textarea/Textarea.tsx +148 -0
- package/lib/components/Textarea/index.d.ts +3 -0
- package/lib/components/Textarea/index.d.ts.map +1 -0
- package/lib/components/Textarea/index.ts +2 -0
- package/lib/components/Timeline/Timeline.d.ts +18 -0
- package/lib/components/Timeline/Timeline.d.ts.map +1 -0
- package/lib/components/Timeline/Timeline.js +8 -1
- package/lib/components/Timeline/Timeline.stories.d.ts +62 -0
- package/lib/components/Timeline/Timeline.stories.d.ts.map +1 -0
- package/lib/components/Timeline/Timeline.stories.js +267 -0
- package/lib/components/Timeline/Timeline.stories.tsx +272 -0
- package/lib/components/Timeline/Timeline.tsx +57 -0
- package/lib/components/Timeline/TimelineItem/TimelineItem.d.ts +28 -0
- package/lib/components/Timeline/TimelineItem/TimelineItem.d.ts.map +1 -0
- package/lib/components/Timeline/TimelineItem/TimelineItem.js +9 -2
- package/lib/components/Timeline/TimelineItem/TimelineItem.stories.d.ts +184 -0
- package/lib/components/Timeline/TimelineItem/TimelineItem.stories.d.ts.map +1 -0
- package/lib/components/Timeline/TimelineItem/TimelineItem.stories.js +245 -0
- package/lib/components/Timeline/TimelineItem/TimelineItem.stories.tsx +216 -0
- package/lib/components/Timeline/TimelineItem/TimelineItem.tsx +128 -0
- package/lib/components/Timeline/TimelineItem/index.d.ts +2 -0
- package/lib/components/Timeline/TimelineItem/index.d.ts.map +1 -0
- package/lib/components/Timeline/TimelineItem/index.ts +1 -0
- package/lib/components/Timeline/index.d.ts +3 -0
- package/lib/components/Timeline/index.d.ts.map +1 -0
- package/lib/components/Timeline/index.ts +2 -0
- package/lib/components/Toast/Toast.d.ts +46 -0
- package/lib/components/Toast/Toast.d.ts.map +1 -0
- package/lib/components/Toast/Toast.js +10 -1
- package/lib/components/Toast/Toast.stories.d.ts +105 -0
- package/lib/components/Toast/Toast.stories.d.ts.map +1 -0
- package/lib/components/Toast/Toast.stories.js +237 -0
- package/lib/components/Toast/Toast.stories.tsx +274 -0
- package/lib/components/Toast/Toast.tsx +264 -0
- package/lib/components/Toast/ToastContainer.d.ts +3 -0
- package/lib/components/Toast/ToastContainer.d.ts.map +1 -0
- package/lib/components/Toast/ToastContainer.js +2 -5
- package/lib/components/Toast/ToastContainer.tsx +123 -0
- package/lib/components/Toast/ToastManager.d.ts +23 -0
- package/lib/components/Toast/ToastManager.d.ts.map +1 -0
- package/lib/components/Toast/ToastManager.js +1 -0
- package/lib/components/Toast/ToastManager.ts +60 -0
- package/lib/components/Toast/index.d.ts +5 -0
- package/lib/components/Toast/index.d.ts.map +1 -0
- package/lib/components/Toast/index.ts +10 -0
- package/lib/components/Toggle/Toggle.d.ts +30 -0
- package/lib/components/Toggle/Toggle.d.ts.map +1 -0
- package/lib/components/Toggle/Toggle.js +1 -0
- package/lib/components/Toggle/Toggle.stories.d.ts +142 -0
- package/lib/components/Toggle/Toggle.stories.d.ts.map +1 -0
- package/lib/components/Toggle/Toggle.stories.js +207 -0
- package/lib/components/Toggle/Toggle.stories.tsx +175 -0
- package/lib/components/Toggle/Toggle.tsx +121 -0
- package/lib/components/Toggle/index.d.ts +2 -0
- package/lib/components/Toggle/index.d.ts.map +1 -0
- package/lib/components/Toggle/index.ts +1 -0
- package/lib/components/TokenListInput/TokenListInput.d.ts +57 -0
- package/lib/components/TokenListInput/TokenListInput.d.ts.map +1 -0
- package/lib/components/TokenListInput/TokenListInput.js +30 -10
- package/lib/components/TokenListInput/TokenListInput.stories.d.ts +379 -0
- package/lib/components/TokenListInput/TokenListInput.stories.d.ts.map +1 -0
- package/lib/components/TokenListInput/TokenListInput.stories.js +877 -0
- package/lib/components/TokenListInput/TokenListInput.stories.tsx +678 -0
- package/lib/components/TokenListInput/TokenListInput.tsx +393 -0
- package/lib/components/TokenListInput/TokenValueChips.d.ts +20 -0
- package/lib/components/TokenListInput/TokenValueChips.d.ts.map +1 -0
- package/lib/components/TokenListInput/TokenValueChips.js +2 -4
- package/lib/components/TokenListInput/TokenValueChips.tsx +69 -0
- package/lib/components/TokenListInput/index.d.ts +2 -0
- package/lib/components/TokenListInput/index.d.ts.map +1 -0
- package/lib/components/TokenListInput/index.ts +1 -0
- package/lib/components/Tooltip/Tooltip.d.ts +44 -0
- package/lib/components/Tooltip/Tooltip.d.ts.map +1 -0
- package/lib/components/Tooltip/Tooltip.js +6 -3
- package/lib/components/Tooltip/Tooltip.stories.d.ts +172 -0
- package/lib/components/Tooltip/Tooltip.stories.d.ts.map +1 -0
- package/lib/components/Tooltip/Tooltip.stories.js +321 -0
- package/lib/components/Tooltip/Tooltip.stories.tsx +316 -0
- package/lib/components/Tooltip/Tooltip.tsx +188 -0
- package/lib/components/Tooltip/index.d.ts +2 -0
- package/lib/components/Tooltip/index.d.ts.map +1 -0
- package/lib/components/Tooltip/index.ts +1 -0
- package/lib/components/Truncate/Truncate.d.ts +12 -0
- package/lib/components/Truncate/Truncate.d.ts.map +1 -0
- package/lib/components/Truncate/Truncate.js +5 -1
- package/lib/components/Truncate/Truncate.stories.d.ts +94 -0
- package/lib/components/Truncate/Truncate.stories.d.ts.map +1 -0
- package/lib/components/Truncate/Truncate.stories.js +118 -0
- package/lib/components/Truncate/Truncate.stories.tsx +106 -0
- package/lib/components/Truncate/Truncate.tsx +80 -0
- package/lib/components/Truncate/index.d.ts +3 -0
- package/lib/components/Truncate/index.d.ts.map +1 -0
- package/lib/components/Truncate/index.ts +2 -0
- package/lib/components/TruncatedTextWithTooltip/TruncatedTextWithTooltip.d.ts +16 -0
- package/lib/components/TruncatedTextWithTooltip/TruncatedTextWithTooltip.d.ts.map +1 -0
- package/lib/components/TruncatedTextWithTooltip/TruncatedTextWithTooltip.js +6 -1
- package/lib/components/TruncatedTextWithTooltip/TruncatedTextWithTooltip.stories.d.ts +110 -0
- package/lib/components/TruncatedTextWithTooltip/TruncatedTextWithTooltip.stories.d.ts.map +1 -0
- package/lib/components/TruncatedTextWithTooltip/TruncatedTextWithTooltip.stories.js +161 -0
- package/lib/components/TruncatedTextWithTooltip/TruncatedTextWithTooltip.stories.tsx +147 -0
- package/lib/components/TruncatedTextWithTooltip/TruncatedTextWithTooltip.tsx +109 -0
- package/lib/components/TruncatedTextWithTooltip/index.d.ts +2 -0
- package/lib/components/TruncatedTextWithTooltip/index.d.ts.map +1 -0
- package/lib/components/TruncatedTextWithTooltip/index.ts +1 -0
- package/lib/components/Typeahead/SimpleTypeahead.d.ts +41 -0
- package/lib/components/Typeahead/SimpleTypeahead.d.ts.map +1 -0
- package/lib/components/Typeahead/SimpleTypeahead.js +4 -0
- package/lib/components/Typeahead/SimpleTypeahead.stories.d.ts +396 -0
- package/lib/components/Typeahead/SimpleTypeahead.stories.d.ts.map +1 -0
- package/lib/components/Typeahead/SimpleTypeahead.stories.js +591 -0
- package/lib/components/Typeahead/SimpleTypeahead.stories.tsx +567 -0
- package/lib/components/Typeahead/SimpleTypeahead.tsx +159 -0
- package/lib/components/Typeahead/Typeahead.d.ts +30 -0
- package/lib/components/Typeahead/Typeahead.d.ts.map +1 -0
- package/lib/components/Typeahead/Typeahead.js +12 -3
- package/lib/components/Typeahead/Typeahead.stories.d.ts +399 -0
- package/lib/components/Typeahead/Typeahead.stories.d.ts.map +1 -0
- package/lib/components/Typeahead/Typeahead.stories.js +648 -0
- package/lib/components/Typeahead/Typeahead.stories.tsx +552 -0
- package/lib/components/Typeahead/Typeahead.tsx +243 -0
- package/lib/components/Typeahead/index.d.ts +3 -0
- package/lib/components/Typeahead/index.d.ts.map +1 -0
- package/lib/components/Typeahead/index.ts +2 -0
- package/lib/components/WeekdayPicker/WeekdayPicker.d.ts +36 -0
- package/lib/components/WeekdayPicker/WeekdayPicker.d.ts.map +1 -0
- package/lib/components/WeekdayPicker/WeekdayPicker.stories.d.ts +238 -0
- package/lib/components/WeekdayPicker/WeekdayPicker.stories.d.ts.map +1 -0
- package/lib/components/WeekdayPicker/WeekdayPicker.stories.js +330 -0
- package/lib/components/WeekdayPicker/WeekdayPicker.stories.tsx +263 -0
- package/lib/components/WeekdayPicker/WeekdayPicker.tsx +224 -0
- package/lib/components/WeekdayPicker/index.d.ts +2 -0
- package/lib/components/WeekdayPicker/index.d.ts.map +1 -0
- package/lib/components/WeekdayPicker/index.ts +1 -0
- package/lib/components/index.d.ts +76 -0
- package/lib/components/index.d.ts.map +1 -0
- package/lib/components/index.ts +77 -0
- package/lib/flow-to-typescript-codemod.d.ts +48 -0
- package/lib/hooks/index.d.ts +17 -0
- package/lib/hooks/index.d.ts.map +1 -0
- package/lib/hooks/index.ts +16 -0
- package/lib/hooks/useArbitraryOptionAddition/index.d.ts +2 -0
- package/lib/hooks/useArbitraryOptionAddition/index.d.ts.map +1 -0
- package/lib/hooks/useArbitraryOptionAddition/index.ts +1 -0
- package/lib/hooks/useArbitraryOptionAddition/useArbitraryOptionAddition.d.ts +24 -0
- package/lib/hooks/useArbitraryOptionAddition/useArbitraryOptionAddition.d.ts.map +1 -0
- package/lib/hooks/useArbitraryOptionAddition/useArbitraryOptionAddition.js +9 -9
- package/lib/hooks/useArbitraryOptionAddition/useArbitraryOptionAddition.stories.d.ts +18 -0
- package/lib/hooks/useArbitraryOptionAddition/useArbitraryOptionAddition.stories.d.ts.map +1 -0
- package/lib/hooks/useArbitraryOptionAddition/useArbitraryOptionAddition.stories.js +171 -0
- package/lib/hooks/useArbitraryOptionAddition/useArbitraryOptionAddition.stories.tsx +158 -0
- package/lib/hooks/useArbitraryOptionAddition/useArbitraryOptionAddition.ts +127 -0
- package/lib/hooks/useCopyToClipboard/index.d.ts +2 -0
- package/lib/hooks/useCopyToClipboard/index.d.ts.map +1 -0
- package/lib/hooks/useCopyToClipboard/index.ts +1 -0
- package/lib/hooks/useCopyToClipboard/useCopyToClipboard.d.ts +5 -0
- package/lib/hooks/useCopyToClipboard/useCopyToClipboard.d.ts.map +1 -0
- package/lib/hooks/useCopyToClipboard/useCopyToClipboard.js +1 -0
- package/lib/hooks/useCopyToClipboard/useCopyToClipboard.stories.d.ts +24 -0
- package/lib/hooks/useCopyToClipboard/useCopyToClipboard.stories.d.ts.map +1 -0
- package/lib/hooks/useCopyToClipboard/useCopyToClipboard.stories.js +107 -0
- package/lib/hooks/useCopyToClipboard/useCopyToClipboard.stories.tsx +112 -0
- package/lib/hooks/useCopyToClipboard/useCopyToClipboard.ts +29 -0
- package/lib/hooks/useDebounce/index.d.ts +2 -0
- package/lib/hooks/useDebounce/index.d.ts.map +1 -0
- package/lib/hooks/useDebounce/index.ts +1 -0
- package/lib/hooks/useDebounce/useDebounce.d.ts +2 -0
- package/lib/hooks/useDebounce/useDebounce.d.ts.map +1 -0
- package/lib/hooks/useDebounce/useDebounce.stories.d.ts +26 -0
- package/lib/hooks/useDebounce/useDebounce.stories.d.ts.map +1 -0
- package/lib/hooks/useDebounce/useDebounce.stories.js +80 -0
- package/lib/hooks/useDebounce/useDebounce.stories.tsx +82 -0
- package/lib/hooks/useDebounce/useDebounce.ts +15 -0
- package/lib/hooks/useFileUpload/index.d.ts +2 -0
- package/lib/hooks/useFileUpload/index.d.ts.map +1 -0
- package/lib/hooks/useFileUpload/index.ts +1 -0
- package/lib/hooks/useFileUpload/useFileUpload.d.ts +17 -0
- package/lib/hooks/useFileUpload/useFileUpload.d.ts.map +1 -0
- package/lib/hooks/useFileUpload/useFileUpload.js +7 -2
- package/lib/hooks/useFileUpload/useFileUpload.stories.d.ts +16 -0
- package/lib/hooks/useFileUpload/useFileUpload.stories.d.ts.map +1 -0
- package/lib/hooks/useFileUpload/useFileUpload.stories.js +405 -0
- package/lib/hooks/useFileUpload/useFileUpload.stories.tsx +468 -0
- package/lib/hooks/useFileUpload/useFileUpload.ts +326 -0
- package/lib/hooks/useFilteredOptions/index.d.ts +2 -0
- package/lib/hooks/useFilteredOptions/index.d.ts.map +1 -0
- package/lib/hooks/useFilteredOptions/index.ts +1 -0
- package/lib/hooks/useFilteredOptions/useFilteredOptions.d.ts +17 -0
- package/lib/hooks/useFilteredOptions/useFilteredOptions.d.ts.map +1 -0
- package/lib/hooks/useFilteredOptions/useFilteredOptions.js +5 -3
- package/lib/hooks/useFilteredOptions/useFilteredOptions.stories.d.ts +18 -0
- package/lib/hooks/useFilteredOptions/useFilteredOptions.stories.d.ts.map +1 -0
- package/lib/hooks/useFilteredOptions/useFilteredOptions.stories.js +155 -0
- package/lib/hooks/useFilteredOptions/useFilteredOptions.stories.tsx +142 -0
- package/lib/hooks/useFilteredOptions/useFilteredOptions.ts +92 -0
- package/lib/hooks/useInfiniteScroll/index.d.ts +2 -0
- package/lib/hooks/useInfiniteScroll/index.d.ts.map +1 -0
- package/lib/hooks/useInfiniteScroll/index.ts +1 -0
- package/lib/hooks/useInfiniteScroll/useInfiniteScroll.d.ts +15 -0
- package/lib/hooks/useInfiniteScroll/useInfiniteScroll.d.ts.map +1 -0
- package/lib/hooks/useInfiniteScroll/useInfiniteScroll.ts +85 -0
- package/lib/hooks/useInputState/index.d.ts +2 -0
- package/lib/hooks/useInputState/index.d.ts.map +1 -0
- package/lib/hooks/useInputState/index.ts +1 -0
- package/lib/hooks/useInputState/useInputState.d.ts +13 -0
- package/lib/hooks/useInputState/useInputState.d.ts.map +1 -0
- package/lib/hooks/useInputState/useInputState.js +3 -1
- package/lib/hooks/useInputState/useInputState.stories.d.ts +16 -0
- package/lib/hooks/useInputState/useInputState.stories.d.ts.map +1 -0
- package/lib/hooks/useInputState/useInputState.stories.js +67 -0
- package/lib/hooks/useInputState/useInputState.stories.tsx +62 -0
- package/lib/hooks/useInputState/useInputState.ts +24 -0
- package/lib/hooks/useLockedBody/index.d.ts +2 -0
- package/lib/hooks/useLockedBody/index.d.ts.map +1 -0
- package/lib/hooks/useLockedBody/index.ts +1 -0
- package/lib/hooks/useLockedBody/useLockedBody.d.ts +4 -0
- package/lib/hooks/useLockedBody/useLockedBody.d.ts.map +1 -0
- package/lib/hooks/useLockedBody/useLockedBody.stories.d.ts +17 -0
- package/lib/hooks/useLockedBody/useLockedBody.stories.d.ts.map +1 -0
- package/lib/hooks/useLockedBody/useLockedBody.stories.js +69 -0
- package/lib/hooks/useLockedBody/useLockedBody.stories.tsx +71 -0
- package/lib/hooks/useLockedBody/useLockedBody.ts +53 -0
- package/lib/hooks/useModal/index.d.ts +2 -0
- package/lib/hooks/useModal/index.d.ts.map +1 -0
- package/lib/hooks/useModal/index.ts +1 -0
- package/lib/hooks/useModal/useModal.d.ts +11 -0
- package/lib/hooks/useModal/useModal.d.ts.map +1 -0
- package/lib/hooks/useModal/useModal.stories.d.ts +16 -0
- package/lib/hooks/useModal/useModal.stories.d.ts.map +1 -0
- package/lib/hooks/useModal/useModal.stories.js +138 -0
- package/lib/hooks/useModal/useModal.stories.tsx +134 -0
- package/lib/hooks/useModal/useModal.ts +36 -0
- package/lib/hooks/useMountTransition/index.d.ts +3 -0
- package/lib/hooks/useMountTransition/index.d.ts.map +1 -0
- package/lib/hooks/useMountTransition/index.js +2 -0
- package/lib/hooks/useMountTransition/index.ts +25 -0
- package/lib/hooks/useMountTransition/useMountTransition.stories.d.ts +16 -0
- package/lib/hooks/useMountTransition/useMountTransition.stories.d.ts.map +1 -0
- package/lib/hooks/useMountTransition/useMountTransition.stories.js +64 -0
- package/lib/hooks/useMountTransition/useMountTransition.stories.tsx +64 -0
- package/lib/hooks/usePagination/index.d.ts +2 -0
- package/lib/hooks/usePagination/index.d.ts.map +1 -0
- package/lib/hooks/usePagination/index.ts +1 -0
- package/lib/hooks/usePagination/usePagination.d.ts +5 -0
- package/lib/hooks/usePagination/usePagination.d.ts.map +1 -0
- package/lib/hooks/usePagination/usePagination.js +3 -0
- package/lib/hooks/usePagination/usePagination.stories.d.ts +18 -0
- package/lib/hooks/usePagination/usePagination.stories.d.ts.map +1 -0
- package/lib/hooks/usePagination/usePagination.stories.js +77 -0
- package/lib/hooks/usePagination/usePagination.stories.tsx +72 -0
- package/lib/hooks/usePagination/usePagination.ts +151 -0
- package/lib/hooks/useReferenceElementWidth/index.d.ts +2 -0
- package/lib/hooks/useReferenceElementWidth/index.d.ts.map +1 -0
- package/lib/hooks/useReferenceElementWidth/index.ts +1 -0
- package/lib/hooks/useReferenceElementWidth/useReferenceElementWidth.d.ts +2 -0
- package/lib/hooks/useReferenceElementWidth/useReferenceElementWidth.d.ts.map +1 -0
- package/lib/hooks/useReferenceElementWidth/useReferenceElementWidth.ts +19 -0
- package/lib/hooks/useResizeObserver/index.d.ts +2 -0
- package/lib/hooks/useResizeObserver/index.d.ts.map +1 -0
- package/lib/hooks/useResizeObserver/index.ts +1 -0
- package/lib/hooks/useResizeObserver/useResizeObserver.d.ts +3 -0
- package/lib/hooks/useResizeObserver/useResizeObserver.d.ts.map +1 -0
- package/lib/hooks/useResizeObserver/useResizeObserver.js +3 -0
- package/lib/hooks/useResizeObserver/useResizeObserver.ts +29 -0
- package/lib/hooks/useToastPortal/index.d.ts +2 -0
- package/lib/hooks/useToastPortal/index.d.ts.map +1 -0
- package/lib/hooks/useToastPortal/index.ts +1 -0
- package/lib/hooks/useToastPortal/useToastPortal.d.ts +10 -0
- package/lib/hooks/useToastPortal/useToastPortal.d.ts.map +1 -0
- package/lib/hooks/useToastPortal/useToastPortal.js +3 -3
- package/lib/hooks/useToastPortal/useToastPortal.ts +34 -0
- package/lib/hooks/useToggle/index.d.ts +2 -0
- package/lib/hooks/useToggle/index.d.ts.map +1 -0
- package/lib/hooks/useToggle/index.ts +1 -0
- package/lib/hooks/useToggle/useToggle.d.ts +2 -0
- package/lib/hooks/useToggle/useToggle.d.ts.map +1 -0
- package/lib/hooks/useToggle/useToggle.stories.d.ts +17 -0
- package/lib/hooks/useToggle/useToggle.stories.d.ts.map +1 -0
- package/lib/hooks/useToggle/useToggle.stories.js +68 -0
- package/lib/hooks/useToggle/useToggle.stories.tsx +70 -0
- package/lib/hooks/useToggle/useToggle.ts +13 -0
- package/lib/hooks/useWindowSize/index.d.ts +2 -0
- package/lib/hooks/useWindowSize/index.d.ts.map +1 -0
- package/lib/hooks/useWindowSize/index.ts +1 -0
- package/lib/hooks/useWindowSize/useWindowSize.d.ts +7 -0
- package/lib/hooks/useWindowSize/useWindowSize.d.ts.map +1 -0
- package/lib/hooks/useWindowSize/useWindowSize.stories.d.ts +17 -0
- package/lib/hooks/useWindowSize/useWindowSize.stories.d.ts.map +1 -0
- package/lib/hooks/useWindowSize/useWindowSize.stories.js +58 -0
- package/lib/hooks/useWindowSize/useWindowSize.stories.tsx +62 -0
- package/lib/hooks/useWindowSize/useWindowSize.ts +39 -0
- package/lib/index.d.ts +6 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.ts +6 -0
- package/lib/stories/Border/Border.stories.d.ts +12 -0
- package/lib/stories/Border/Border.stories.d.ts.map +1 -0
- package/lib/stories/Color/Color.stories.d.ts +13 -0
- package/lib/stories/Color/Color.stories.d.ts.map +1 -0
- package/lib/stories/Elevation/Elevation.stories.d.ts +12 -0
- package/lib/stories/Elevation/Elevation.stories.d.ts.map +1 -0
- package/lib/stories/Introduction/index.d.ts +3 -0
- package/lib/stories/Introduction/index.d.ts.map +1 -0
- package/lib/stories/Motion/Motion.stories.d.ts +12 -0
- package/lib/stories/Motion/Motion.stories.d.ts.map +1 -0
- package/lib/stories/Opacity/Opacity.stories.d.ts +12 -0
- package/lib/stories/Opacity/Opacity.stories.d.ts.map +1 -0
- package/lib/stories/Shadow/Shadow.stories.d.ts +12 -0
- package/lib/stories/Shadow/Shadow.stories.d.ts.map +1 -0
- package/lib/stories/Size/Size.stories.d.ts +12 -0
- package/lib/stories/Size/Size.stories.d.ts.map +1 -0
- package/lib/stories/Space/Space.stories.d.ts +12 -0
- package/lib/stories/Space/Space.stories.d.ts.map +1 -0
- package/lib/stories/Tokens/index.d.ts +3 -0
- package/lib/stories/Tokens/index.d.ts.map +1 -0
- package/lib/styles/index.d.ts +268 -0
- package/lib/styles/index.d.ts.map +1 -0
- package/lib/styles/index.ts +533 -0
- package/lib/styles/variables/_border.d.ts +13 -0
- package/lib/styles/variables/_border.d.ts.map +1 -0
- package/lib/styles/variables/_border.ts +23 -0
- package/lib/styles/variables/_color.d.ts +105 -0
- package/lib/styles/variables/_color.d.ts.map +1 -0
- package/lib/styles/variables/_color.ts +207 -0
- package/lib/styles/variables/_elevation.d.ts +8 -0
- package/lib/styles/variables/_elevation.d.ts.map +1 -0
- package/lib/styles/variables/_elevation.ts +13 -0
- package/lib/styles/variables/_font.d.ts +31 -0
- package/lib/styles/variables/_font.d.ts.map +1 -0
- package/lib/styles/variables/_font.ts +59 -0
- package/lib/styles/variables/_motion.d.ts +7 -0
- package/lib/styles/variables/_motion.d.ts.map +1 -0
- package/lib/styles/variables/_motion.ts +11 -0
- package/lib/styles/variables/_opacity.d.ts +16 -0
- package/lib/styles/variables/_opacity.d.ts.map +1 -0
- package/lib/styles/variables/_opacity.ts +29 -0
- package/lib/styles/variables/_shadow.d.ts +25 -0
- package/lib/styles/variables/_shadow.d.ts.map +1 -0
- package/lib/styles/variables/_shadow.ts +47 -0
- package/lib/styles/variables/_size.d.ts +58 -0
- package/lib/styles/variables/_size.d.ts.map +1 -0
- package/lib/styles/variables/_size.ts +113 -0
- package/lib/styles/variables/_space.d.ts +13 -0
- package/lib/styles/variables/_space.d.ts.map +1 -0
- package/lib/styles/variables/_space.ts +23 -0
- package/lib/types/charts.d.ts +224 -0
- package/lib/types/charts.d.ts.map +1 -0
- package/lib/types/charts.js +5 -1
- package/lib/types/charts.ts +247 -0
- package/lib/types/common.d.ts +10 -0
- package/lib/types/common.d.ts.map +1 -0
- package/lib/types/common.ts +11 -0
- package/lib/types/cssvariables.d.js +3 -0
- package/lib/types/cssvariables.d.ts +8 -0
- package/lib/types/date-range-picker.d.ts +21 -0
- package/lib/types/date-range-picker.d.ts.map +1 -0
- package/lib/types/date-range-picker.js +5 -1
- package/lib/types/date-range-picker.ts +20 -0
- package/lib/types/flow-to-typescript-codemod.d.js +1 -0
- package/lib/types/flow-to-typescript-codemod.d.ts +48 -0
- package/lib/types/global.d.js +1 -0
- package/lib/types/global.d.ts +84 -0
- package/lib/types/index.d.ts +7 -0
- package/lib/types/index.d.ts.map +1 -0
- package/lib/types/index.ts +6 -0
- package/lib/types/menu.d.ts +13 -0
- package/lib/types/menu.d.ts.map +1 -0
- package/lib/types/menu.js +5 -1
- package/lib/types/menu.ts +13 -0
- package/lib/types/toast.d.ts +28 -0
- package/lib/types/toast.d.ts.map +1 -0
- package/lib/types/toast.js +0 -2
- package/lib/types/toast.ts +34 -0
- package/lib/types/typography.d.ts +17 -0
- package/lib/types/typography.d.ts.map +1 -0
- package/lib/types/typography.ts +17 -0
- package/lib/utils/array/are-arrays-equal.d.ts +4 -0
- package/lib/utils/array/are-arrays-equal.d.ts.map +1 -0
- package/lib/utils/array/are-arrays-equal.ts +12 -0
- package/lib/utils/array/index.d.ts +2 -0
- package/lib/utils/array/index.d.ts.map +1 -0
- package/lib/utils/array/index.ts +1 -0
- package/lib/utils/charts/charts.d.ts +17 -0
- package/lib/utils/charts/charts.d.ts.map +1 -0
- package/lib/utils/charts/charts.js +4 -0
- package/lib/utils/charts/charts.ts +110 -0
- package/lib/utils/charts/columnChart.d.ts +8 -0
- package/lib/utils/charts/columnChart.d.ts.map +1 -0
- package/lib/utils/charts/columnChart.js +3 -1
- package/lib/utils/charts/columnChart.ts +62 -0
- package/lib/utils/charts/donutChart.d.ts +21 -0
- package/lib/utils/charts/donutChart.d.ts.map +1 -0
- package/lib/utils/charts/donutChart.js +7 -2
- package/lib/utils/charts/donutChart.ts +123 -0
- package/lib/utils/charts/funnelChart.d.ts +10 -0
- package/lib/utils/charts/funnelChart.d.ts.map +1 -0
- package/lib/utils/charts/funnelChart.js +5 -1
- package/lib/utils/charts/funnelChart.ts +97 -0
- package/lib/utils/charts/helpers.d.ts +76 -0
- package/lib/utils/charts/helpers.d.ts.map +1 -0
- package/lib/utils/charts/helpers.ts +65 -0
- package/lib/utils/charts/index.d.ts +8 -0
- package/lib/utils/charts/index.d.ts.map +1 -0
- package/lib/utils/charts/index.ts +7 -0
- package/lib/utils/charts/lineChart.d.ts +7 -0
- package/lib/utils/charts/lineChart.d.ts.map +1 -0
- package/lib/utils/charts/lineChart.js +3 -1
- package/lib/utils/charts/lineChart.ts +51 -0
- package/lib/utils/charts/spiderChart.d.ts +18 -0
- package/lib/utils/charts/spiderChart.d.ts.map +1 -0
- package/lib/utils/charts/spiderChart.ts +57 -0
- package/lib/utils/charts/typography.d.ts +58 -0
- package/lib/utils/charts/typography.d.ts.map +1 -0
- package/lib/utils/charts/typography.ts +52 -0
- package/lib/utils/classify/classify.stories.d.ts +17 -0
- package/lib/utils/classify/classify.stories.d.ts.map +1 -0
- package/lib/utils/classify/classify.stories.js +63 -0
- package/lib/utils/classify/classify.stories.tsx +65 -0
- package/lib/utils/classify/index.d.ts +3 -0
- package/lib/utils/classify/index.d.ts.map +1 -0
- package/lib/utils/classify/index.js +1 -1
- package/lib/utils/classify/index.ts +27 -0
- package/lib/utils/click-away/ClickAway.stories.d.ts +106 -0
- package/lib/utils/click-away/ClickAway.stories.d.ts.map +1 -0
- package/lib/utils/click-away/ClickAway.stories.js +260 -0
- package/lib/utils/click-away/ClickAway.stories.tsx +248 -0
- package/lib/utils/click-away/click-away.d.ts +77 -0
- package/lib/utils/click-away/click-away.d.ts.map +1 -0
- package/lib/utils/click-away/click-away.js +18 -5
- package/lib/utils/click-away/click-away.ts +230 -0
- package/lib/utils/click-away/index.d.ts +2 -0
- package/lib/utils/click-away/index.d.ts.map +1 -0
- package/lib/utils/click-away/index.ts +1 -0
- package/lib/utils/date-range-picker/date-range-picker.d.ts +63 -0
- package/lib/utils/date-range-picker/date-range-picker.d.ts.map +1 -0
- package/lib/utils/date-range-picker/date-range-picker.js +17 -2
- package/lib/utils/date-range-picker/date-range-picker.ts +430 -0
- package/lib/utils/date-range-picker/index.d.ts +3 -0
- package/lib/utils/date-range-picker/index.d.ts.map +1 -0
- package/lib/utils/date-range-picker/index.ts +2 -0
- package/lib/utils/date-range-picker/timezones.d.ts +258 -0
- package/lib/utils/date-range-picker/timezones.d.ts.map +1 -0
- package/lib/utils/date-range-picker/timezones.js +0 -1
- package/lib/utils/date-range-picker/timezones.ts +263 -0
- package/lib/utils/dom/dom.d.ts +38 -0
- package/lib/utils/dom/dom.d.ts.map +1 -0
- package/lib/utils/dom/dom.js +9 -7
- package/lib/utils/dom/dom.stories.d.ts +15 -0
- package/lib/utils/dom/dom.stories.d.ts.map +1 -0
- package/lib/utils/dom/dom.stories.js +59 -0
- package/lib/utils/dom/dom.stories.tsx +59 -0
- package/lib/utils/dom/dom.ts +247 -0
- package/lib/utils/dom/index.d.ts +2 -0
- package/lib/utils/dom/index.d.ts.map +1 -0
- package/lib/utils/dom/index.ts +1 -0
- package/lib/utils/helpers/helpers.d.ts +4 -0
- package/lib/utils/helpers/helpers.d.ts.map +1 -0
- package/lib/utils/helpers/helpers.stories.d.ts +15 -0
- package/lib/utils/helpers/helpers.stories.d.ts.map +1 -0
- package/lib/utils/helpers/helpers.stories.js +111 -0
- package/lib/utils/helpers/helpers.stories.tsx +124 -0
- package/lib/utils/helpers/helpers.ts +51 -0
- package/lib/utils/helpers/index.d.ts +2 -0
- package/lib/utils/helpers/index.d.ts.map +1 -0
- package/lib/utils/helpers/index.ts +1 -0
- package/lib/utils/index.d.ts +15 -0
- package/lib/utils/index.d.ts.map +1 -0
- package/lib/utils/index.ts +14 -0
- package/lib/utils/makeClassNameComponent/index.d.ts +2 -0
- package/lib/utils/makeClassNameComponent/index.d.ts.map +1 -0
- package/lib/utils/makeClassNameComponent/index.ts +1 -0
- package/lib/utils/makeClassNameComponent/makeClassNameComponent.d.ts +9 -0
- package/lib/utils/makeClassNameComponent/makeClassNameComponent.d.ts.map +1 -0
- package/lib/utils/makeClassNameComponent/makeClassNameComponent.js +21 -7
- package/lib/utils/makeClassNameComponent/makeClassNameComponent.stories.d.ts +15 -0
- package/lib/utils/makeClassNameComponent/makeClassNameComponent.stories.d.ts.map +1 -0
- package/lib/utils/makeClassNameComponent/makeClassNameComponent.stories.js +44 -0
- package/lib/utils/makeClassNameComponent/makeClassNameComponent.stories.tsx +46 -0
- package/lib/utils/makeClassNameComponent/makeClassNameComponent.tsx +60 -0
- package/lib/utils/menu/index.d.ts +2 -0
- package/lib/utils/menu/index.d.ts.map +1 -0
- package/lib/utils/menu/index.ts +1 -0
- package/lib/utils/menu/menu.d.ts +20 -0
- package/lib/utils/menu/menu.d.ts.map +1 -0
- package/lib/utils/menu/menu.js +0 -2
- package/lib/utils/menu/menu.ts +174 -0
- package/lib/utils/merge-refs/index.d.ts +2 -0
- package/lib/utils/merge-refs/index.d.ts.map +1 -0
- package/lib/utils/merge-refs/index.ts +1 -0
- package/lib/utils/merge-refs/merge-refs.d.ts +4 -0
- package/lib/utils/merge-refs/merge-refs.d.ts.map +1 -0
- package/lib/utils/merge-refs/merge-refs.js +1 -0
- package/lib/utils/merge-refs/merge-refs.stories.d.ts +15 -0
- package/lib/utils/merge-refs/merge-refs.stories.d.ts.map +1 -0
- package/lib/utils/merge-refs/merge-refs.stories.js +86 -0
- package/lib/utils/merge-refs/merge-refs.stories.tsx +92 -0
- package/lib/utils/merge-refs/merge-refs.ts +16 -0
- package/lib/utils/rating/index.d.ts +2 -0
- package/lib/utils/rating/index.d.ts.map +1 -0
- package/lib/utils/rating/index.ts +1 -0
- package/lib/utils/rating/rating.d.ts +13 -0
- package/lib/utils/rating/rating.d.ts.map +1 -0
- package/lib/utils/rating/rating.ts +30 -0
- package/lib/utils/score-bar/index.d.ts +2 -0
- package/lib/utils/score-bar/index.d.ts.map +1 -0
- package/lib/utils/score-bar/index.ts +1 -0
- package/lib/utils/score-bar/score-bar.d.ts +10 -0
- package/lib/utils/score-bar/score-bar.d.ts.map +1 -0
- package/lib/utils/score-bar/score-bar.ts +45 -0
- package/lib/utils/string/index.d.ts +2 -0
- package/lib/utils/string/index.d.ts.map +1 -0
- package/lib/utils/string/index.ts +1 -0
- package/lib/utils/string/string.d.ts +6 -0
- package/lib/utils/string/string.d.ts.map +1 -0
- package/lib/utils/string/string.stories.d.ts +15 -0
- package/lib/utils/string/string.stories.d.ts.map +1 -0
- package/lib/utils/string/string.stories.js +63 -0
- package/lib/utils/string/string.stories.tsx +71 -0
- package/lib/utils/string/string.ts +26 -0
- package/lib/utils/token-list-input/token-list-input.d.ts +15 -0
- package/lib/utils/token-list-input/token-list-input.d.ts.map +1 -0
- package/lib/utils/token-list-input/token-list-input.js +0 -2
- package/lib/utils/token-list-input/token-list-input.ts +32 -0
- package/lib/utils/tokens/index.d.ts +2 -0
- package/lib/utils/tokens/index.d.ts.map +1 -0
- package/lib/utils/tokens/index.ts +1 -0
- package/lib/utils/tokens/tokens.d.ts +41 -0
- package/lib/utils/tokens/tokens.d.ts.map +1 -0
- package/lib/utils/tokens/tokens.ts +237 -0
- package/package.json +31 -5
- package/tsconfig.declaration.json +19 -0
- package/tsconfig.declaration.tsbuildinfo +1 -0
- package/tsconfig.json +40 -0
- package/lib/components/Accordion/Accordion.js.flow +0 -116
- package/lib/components/Accordion/AccordionGroup.js.flow +0 -75
- package/lib/components/Accordion/index.js.flow +0 -4
- package/lib/components/Avatar/Avatar.js.flow +0 -269
- package/lib/components/Avatar/index.js.flow +0 -3
- package/lib/components/AvatarGroup/AvatarGroup.js.flow +0 -164
- package/lib/components/AvatarGroup/index.js.flow +0 -3
- package/lib/components/Badge/Badge.js.flow +0 -147
- package/lib/components/Badge/index.js.flow +0 -3
- package/lib/components/BadgedIcon/BadgedIcon.js.flow +0 -73
- package/lib/components/BadgedIcon/index.js.flow +0 -3
- package/lib/components/Banner/Banner.js.flow +0 -60
- package/lib/components/Banner/index.js.flow +0 -3
- package/lib/components/Breadcrumbs/BreadcrumbLink/BreadcrumbLink.js.flow +0 -58
- package/lib/components/Breadcrumbs/BreadcrumbLink/index.js.flow +0 -3
- package/lib/components/Breadcrumbs/Breadcrumbs.js.flow +0 -59
- package/lib/components/Breadcrumbs/index.js.flow +0 -4
- package/lib/components/Button/Button.js.flow +0 -286
- package/lib/components/Button/index.js.flow +0 -16
- package/lib/components/ButtonDropdown/ButtonDropdown.js.flow +0 -226
- package/lib/components/ButtonDropdown/SimpleButtonDropdown.js.flow +0 -169
- package/lib/components/ButtonDropdown/index.js.flow +0 -4
- package/lib/components/ButtonTabs/ButtonTab/ButtonTab.js.flow +0 -82
- package/lib/components/ButtonTabs/ButtonTab/index.js.flow +0 -3
- package/lib/components/ButtonTabs/ButtonTabDropdown.js.flow +0 -150
- package/lib/components/ButtonTabs/ButtonTabs.js.flow +0 -121
- package/lib/components/ButtonTabs/index.js.flow +0 -4
- package/lib/components/Card/Card.js.flow +0 -174
- package/lib/components/Card/index.js.flow +0 -3
- package/lib/components/Charts/ChartTooltip/index.js.flow +0 -15
- package/lib/components/Charts/ChartWrapper/ChartWrapper.js.flow +0 -190
- package/lib/components/Charts/ChartWrapper/index.js.flow +0 -3
- package/lib/components/Charts/ColumnChart/ColumnChart.js.flow +0 -126
- package/lib/components/Charts/ColumnChart/index.js.flow +0 -3
- package/lib/components/Charts/DonutChart/DonutChart.js.flow +0 -158
- package/lib/components/Charts/DonutChart/index.js.flow +0 -3
- package/lib/components/Charts/FunnelChart/FunnelChart.js.flow +0 -115
- package/lib/components/Charts/FunnelChart/index.js.flow +0 -3
- package/lib/components/Charts/LineChart/LineChart.js.flow +0 -113
- package/lib/components/Charts/LineChart/index.js.flow +0 -3
- package/lib/components/Charts/SpiderChart/SpiderChart.js.flow +0 -111
- package/lib/components/Charts/SpiderChart/index.js.flow +0 -3
- package/lib/components/Charts/index.js.flow +0 -9
- package/lib/components/ChatBubble/ChatBubble.js.flow +0 -222
- package/lib/components/ChatBubble/index.js.flow +0 -3
- package/lib/components/Checkbox/Checkbox.js.flow +0 -168
- package/lib/components/Checkbox/CheckboxGroup.js.flow +0 -116
- package/lib/components/Checkbox/index.js.flow +0 -3
- package/lib/components/Chip/Chip.js.flow +0 -199
- package/lib/components/Chip/index.js.flow +0 -4
- package/lib/components/CircularLoader/CircularLoader.js.flow +0 -58
- package/lib/components/CircularLoader/index.js.flow +0 -3
- package/lib/components/CollapsibleCard/CollapsibleCard.js.flow +0 -146
- package/lib/components/CollapsibleCard/index.js.flow +0 -3
- package/lib/components/Combobox/Combobox.js.flow +0 -287
- package/lib/components/Combobox/helper.js.flow +0 -204
- package/lib/components/Combobox/index.js.flow +0 -3
- package/lib/components/ConditionalWrapper/ConditionalWrapper.js.flow +0 -16
- package/lib/components/ConditionalWrapper/index.js.flow +0 -3
- package/lib/components/DateRangePicker/Calendar.js.flow +0 -112
- package/lib/components/DateRangePicker/DateRangePicker.js.flow +0 -214
- package/lib/components/DateRangePicker/DateRangeWrapper.js.flow +0 -384
- package/lib/components/DateRangePicker/Day.js.flow +0 -75
- package/lib/components/DateRangePicker/index.js.flow +0 -3
- package/lib/components/Dialog/Dialog.js.flow +0 -228
- package/lib/components/Dialog/index.js.flow +0 -2
- package/lib/components/Disclaimer/Disclaimer.js.flow +0 -41
- package/lib/components/Disclaimer/index.js.flow +0 -3
- package/lib/components/Dropdown/Dropdown.js.flow +0 -176
- package/lib/components/Dropdown/SimpleDropdown.js.flow +0 -170
- package/lib/components/Dropdown/index.js.flow +0 -4
- package/lib/components/EmptyState/EmptyImages/CalendarEmptyImage.js.flow +0 -112
- package/lib/components/EmptyState/EmptyImages/ChartEmptyImage.js.flow +0 -198
- package/lib/components/EmptyState/EmptyImages/DataEmptyImage.js.flow +0 -120
- package/lib/components/EmptyState/EmptyImages/FileEmptyImage.js.flow +0 -137
- package/lib/components/EmptyState/EmptyImages/MessageEmptyImage.js.flow +0 -68
- package/lib/components/EmptyState/EmptyImages/UploadEmptyImage.js.flow +0 -71
- package/lib/components/EmptyState/EmptyImages/index.js.flow +0 -8
- package/lib/components/EmptyState/EmptyState.js.flow +0 -91
- package/lib/components/EmptyState/index.js.flow +0 -3
- package/lib/components/ErrorMessage/ErrorImages/ForbiddenImage.js.flow +0 -89
- package/lib/components/ErrorMessage/ErrorImages/NotFoundImage.js.flow +0 -121
- package/lib/components/ErrorMessage/ErrorImages/ServerErrorImage.js.flow +0 -241
- package/lib/components/ErrorMessage/ErrorImages/UnauthorizedImage.js.flow +0 -77
- package/lib/components/ErrorMessage/ErrorImages/index.js.flow +0 -6
- package/lib/components/ErrorMessage/ErrorMessage.js.flow +0 -95
- package/lib/components/ErrorMessage/index.js.flow +0 -3
- package/lib/components/FileUpload/FileBlock/FileBlock.js.flow +0 -139
- package/lib/components/FileUpload/FileBlock/index.js.flow +0 -3
- package/lib/components/FileUpload/FileUpload.js.flow +0 -212
- package/lib/components/FileUpload/index.js.flow +0 -4
- package/lib/components/FilterButtonOverlay/FilterButtonOverlay.js.flow +0 -166
- package/lib/components/FilterButtonOverlay/index.js.flow +0 -3
- package/lib/components/FocusManager/FocusManager.js.flow +0 -57
- package/lib/components/FocusManager/index.js.flow +0 -3
- package/lib/components/FocusManagerWithArrowKeyNavigation/FocusManagerWithArrowKeyNavigation.js.flow +0 -152
- package/lib/components/FocusManagerWithArrowKeyNavigation/index.js.flow +0 -3
- package/lib/components/FormTitleWrapper/FormTitleWrapper.js.flow +0 -68
- package/lib/components/FormTitleWrapper/index.js.flow +0 -3
- package/lib/components/Grid/Grid.js.flow +0 -110
- package/lib/components/Grid/index.js.flow +0 -3
- package/lib/components/Icon/ClickableIcon.js.flow +0 -111
- package/lib/components/Icon/Icon.docs.js.flow +0 -120
- package/lib/components/Icon/Icon.js.flow +0 -77
- package/lib/components/Icon/SemanticIcon.js.flow +0 -48
- package/lib/components/Icon/index.js.flow +0 -5
- package/lib/components/InContextAlert/InContextAlert.js.flow +0 -208
- package/lib/components/InContextAlert/index.js.flow +0 -3
- package/lib/components/InfinitePagination/InfinitePagination.js.flow +0 -122
- package/lib/components/InfinitePagination/index.js.flow +0 -3
- package/lib/components/InlineDropdown/InlineDropdown.js.flow +0 -181
- package/lib/components/InlineDropdown/SimpleInlineDropdown.js.flow +0 -167
- package/lib/components/InlineDropdown/index.js.flow +0 -4
- package/lib/components/Input/Input.js.flow +0 -325
- package/lib/components/Input/index.js.flow +0 -3
- package/lib/components/KPIBox/KPIBox.js.flow +0 -97
- package/lib/components/KPIBox/index.js.flow +0 -3
- package/lib/components/LinearLoader/LinearLoader.js.flow +0 -49
- package/lib/components/LinearLoader/index.js.flow +0 -3
- package/lib/components/Link/Link.js.flow +0 -231
- package/lib/components/Link/index.js.flow +0 -3
- package/lib/components/Menu/Menu.js.flow +0 -391
- package/lib/components/Menu/MenuOptionButton.js.flow +0 -201
- package/lib/components/Menu/index.js.flow +0 -4
- package/lib/components/Modal/Modal.js.flow +0 -370
- package/lib/components/Modal/index.js.flow +0 -15
- package/lib/components/Notification/Notification.js.flow +0 -149
- package/lib/components/Notification/index.js.flow +0 -3
- package/lib/components/OptionButton/OptionButton.js.flow +0 -153
- package/lib/components/OptionButton/SimpleOptionButton.js.flow +0 -161
- package/lib/components/OptionButton/index.js.flow +0 -4
- package/lib/components/PageTitle/PageTitle.js.flow +0 -267
- package/lib/components/PageTitle/index.js.flow +0 -3
- package/lib/components/Pagination/Pagination.js.flow +0 -158
- package/lib/components/Pagination/PaginationItem.js.flow +0 -120
- package/lib/components/Pagination/index.js.flow +0 -3
- package/lib/components/Panel/Panel.js.flow +0 -181
- package/lib/components/Panel/index.js.flow +0 -10
- package/lib/components/ProgressDonut/ProgressDonut.js.flow +0 -111
- package/lib/components/ProgressDonut/index.js.flow +0 -3
- package/lib/components/PromptChip/PromptChip.js.flow +0 -166
- package/lib/components/PromptChip/index.js.flow +0 -3
- package/lib/components/PromptInput/PromptInput.js.flow +0 -194
- package/lib/components/PromptInput/index.js.flow +0 -3
- package/lib/components/RadioButton/RadioButton.js.flow +0 -134
- package/lib/components/RadioButton/RadioGroup.js.flow +0 -94
- package/lib/components/RadioButton/index.js.flow +0 -3
- package/lib/components/RadioTile/RadioTile.js.flow +0 -110
- package/lib/components/RadioTile/index.js.flow +0 -3
- package/lib/components/RangeSlider/RangeSlider.js.flow +0 -202
- package/lib/components/RangeSlider/index.js.flow +0 -3
- package/lib/components/Rating/Rating.js.flow +0 -134
- package/lib/components/Rating/index.js.flow +0 -3
- package/lib/components/ScoreBar/ScoreBar.js.flow +0 -135
- package/lib/components/ScoreBar/index.js.flow +0 -3
- package/lib/components/SearchInput/SearchInput.js.flow +0 -88
- package/lib/components/SearchInput/index.js.flow +0 -4
- package/lib/components/Separator/Separator.js.flow +0 -60
- package/lib/components/Separator/index.js.flow +0 -3
- package/lib/components/Shimmer/Shimmer.js.flow +0 -141
- package/lib/components/Shimmer/index.js.flow +0 -3
- package/lib/components/SideMenuLink/SideMenuLink.js.flow +0 -344
- package/lib/components/SideMenuLink/index.js.flow +0 -3
- package/lib/components/StatusIndicator/StatusIndicator.js.flow +0 -68
- package/lib/components/StatusIndicator/index.js.flow +0 -3
- package/lib/components/Stepper/Step/Step.js.flow +0 -123
- package/lib/components/Stepper/Step/StepContent.js.flow +0 -40
- package/lib/components/Stepper/Step/StepLabel.js.flow +0 -40
- package/lib/components/Stepper/Step/index.js.flow +0 -5
- package/lib/components/Stepper/Stepper.js.flow +0 -64
- package/lib/components/Stepper/index.js.flow +0 -4
- package/lib/components/StickyBar/StickyBar.js.flow +0 -67
- package/lib/components/StickyBar/index.js.flow +0 -3
- package/lib/components/SubMenu/SubMenu.js.flow +0 -96
- package/lib/components/SubMenu/SubMenuGroup.js.flow +0 -156
- package/lib/components/SubMenu/SubMenuItem.js.flow +0 -170
- package/lib/components/SubMenu/SubMenuLink.js.flow +0 -89
- package/lib/components/SubMenu/index.js.flow +0 -6
- package/lib/components/Table/Cell.js.flow +0 -122
- package/lib/components/Table/DefaultRow.js.flow +0 -152
- package/lib/components/Table/DefaultTableHeader.js.flow +0 -240
- package/lib/components/Table/StaticTable.js.flow +0 -212
- package/lib/components/Table/Table.docs.js.flow +0 -495
- package/lib/components/Table/Table.js.flow +0 -132
- package/lib/components/Table/TableActionBar.js.flow +0 -55
- package/lib/components/Table/TableBottomBar.js.flow +0 -28
- package/lib/components/Table/TableTopBar.js.flow +0 -28
- package/lib/components/Table/dummyTableData.js.flow +0 -2191
- package/lib/components/Table/hooks.js.flow +0 -97
- package/lib/components/Table/index.js.flow +0 -10
- package/lib/components/Tabs/Tab/Tab.js.flow +0 -140
- package/lib/components/Tabs/Tab/index.js.flow +0 -3
- package/lib/components/Tabs/TabList/TabDropdown.js.flow +0 -123
- package/lib/components/Tabs/TabList/TabList.js.flow +0 -161
- package/lib/components/Tabs/TabList/index.js.flow +0 -3
- package/lib/components/Tabs/index.js.flow +0 -4
- package/lib/components/Text/Text.js.flow +0 -1060
- package/lib/components/Text/index.js.flow +0 -32
- package/lib/components/TextTile/TextTile.js.flow +0 -44
- package/lib/components/TextTile/index.js.flow +0 -3
- package/lib/components/Textarea/Textarea.js.flow +0 -139
- package/lib/components/Textarea/index.js.flow +0 -4
- package/lib/components/Timeline/Timeline.js.flow +0 -47
- package/lib/components/Timeline/TimelineItem/TimelineItem.js.flow +0 -127
- package/lib/components/Timeline/TimelineItem/index.js.flow +0 -3
- package/lib/components/Timeline/index.js.flow +0 -4
- package/lib/components/Toast/Toast.js.flow +0 -249
- package/lib/components/Toast/ToastContainer.js.flow +0 -125
- package/lib/components/Toast/ToastManager.js.flow +0 -67
- package/lib/components/Toast/index.js.flow +0 -12
- package/lib/components/Toggle/Toggle.js.flow +0 -113
- package/lib/components/Toggle/index.js.flow +0 -2
- package/lib/components/TokenListInput/TokenListInput.js.flow +0 -389
- package/lib/components/TokenListInput/TokenValueChips.js.flow +0 -69
- package/lib/components/TokenListInput/index.js.flow +0 -3
- package/lib/components/Tooltip/Tooltip.js.flow +0 -206
- package/lib/components/Tooltip/index.js.flow +0 -3
- package/lib/components/Truncate/Truncate.js.flow +0 -86
- package/lib/components/Truncate/index.js.flow +0 -4
- package/lib/components/TruncatedTextWithTooltip/TruncatedTextWithTooltip.js.flow +0 -104
- package/lib/components/TruncatedTextWithTooltip/index.js.flow +0 -3
- package/lib/components/Typeahead/SimpleTypeahead.js.flow +0 -164
- package/lib/components/Typeahead/Typeahead.js.flow +0 -250
- package/lib/components/Typeahead/index.js.flow +0 -4
- package/lib/components/WeekdayPicker/WeekdayPicker.js.flow +0 -229
- package/lib/components/WeekdayPicker/index.js.flow +0 -3
- package/lib/components/index.js.flow +0 -77
- package/lib/hooks/index.js.flow +0 -18
- package/lib/hooks/useArbitraryOptionAddition/index.js.flow +0 -3
- package/lib/hooks/useArbitraryOptionAddition/useArbitraryOptionAddition.js.flow +0 -117
- package/lib/hooks/useCopyToClipboard/index.js.flow +0 -3
- package/lib/hooks/useCopyToClipboard/useCopyToClipboard.js.flow +0 -31
- package/lib/hooks/useDebounce/index.js.flow +0 -3
- package/lib/hooks/useDebounce/useDebounce.js.flow +0 -17
- package/lib/hooks/useFileUpload/index.js.flow +0 -3
- package/lib/hooks/useFileUpload/useFileUpload.js.flow +0 -304
- package/lib/hooks/useFilteredOptions/index.js.flow +0 -3
- package/lib/hooks/useFilteredOptions/useFilteredOptions.js.flow +0 -81
- package/lib/hooks/useInfiniteScroll/index.js.flow +0 -3
- package/lib/hooks/useInfiniteScroll/useInfiniteScroll.js.flow +0 -82
- package/lib/hooks/useInputState/index.js.flow +0 -3
- package/lib/hooks/useInputState/useInputState.js.flow +0 -28
- package/lib/hooks/useLockedBody/index.js.flow +0 -3
- package/lib/hooks/useLockedBody/useLockedBody.js.flow +0 -55
- package/lib/hooks/useModal/index.js.flow +0 -3
- package/lib/hooks/useModal/useModal.js.flow +0 -39
- package/lib/hooks/useMountTransition/index.js.flow +0 -27
- package/lib/hooks/usePagination/index.js.flow +0 -3
- package/lib/hooks/usePagination/usePagination.js.flow +0 -155
- package/lib/hooks/useReferenceElementWidth/index.js.flow +0 -3
- package/lib/hooks/useReferenceElementWidth/useReferenceElementWidth.js.flow +0 -23
- package/lib/hooks/useResizeObserver/index.js.flow +0 -3
- package/lib/hooks/useResizeObserver/useResizeObserver.js.flow +0 -28
- package/lib/hooks/useToastPortal/index.js.flow +0 -3
- package/lib/hooks/useToastPortal/useToastPortal.js.flow +0 -30
- package/lib/hooks/useToggle/index.js.flow +0 -3
- package/lib/hooks/useToggle/useToggle.js.flow +0 -17
- package/lib/hooks/useWindowSize/index.js.flow +0 -3
- package/lib/hooks/useWindowSize/useWindowSize.js.flow +0 -41
- package/lib/index.js.flow +0 -7
- package/lib/styles/index.js.flow +0 -535
- package/lib/styles/variables/_border.js.flow +0 -25
- package/lib/styles/variables/_color.js.flow +0 -209
- package/lib/styles/variables/_elevation.js.flow +0 -15
- package/lib/styles/variables/_font.js.flow +0 -61
- package/lib/styles/variables/_motion.js.flow +0 -13
- package/lib/styles/variables/_opacity.js.flow +0 -31
- package/lib/styles/variables/_shadow.js.flow +0 -49
- package/lib/styles/variables/_size.js.flow +0 -115
- package/lib/styles/variables/_space.js.flow +0 -25
- package/lib/types/charts.js.flow +0 -263
- package/lib/types/common.js.flow +0 -13
- package/lib/types/date-range-picker.js.flow +0 -17
- package/lib/types/index.js.flow +0 -8
- package/lib/types/menu.js.flow +0 -15
- package/lib/types/toast.js.flow +0 -41
- package/lib/types/typography.js.flow +0 -19
- package/lib/utils/array/are-arrays-equal.js.flow +0 -14
- package/lib/utils/array/index.js.flow +0 -3
- package/lib/utils/charts/charts.js.flow +0 -111
- package/lib/utils/charts/columnChart.js.flow +0 -63
- package/lib/utils/charts/donutChart.js.flow +0 -119
- package/lib/utils/charts/funnelChart.js.flow +0 -102
- package/lib/utils/charts/helpers.js.flow +0 -68
- package/lib/utils/charts/index.js.flow +0 -9
- package/lib/utils/charts/lineChart.js.flow +0 -51
- package/lib/utils/charts/spiderChart.js.flow +0 -59
- package/lib/utils/charts/typography.js.flow +0 -53
- package/lib/utils/classify/index.js.flow +0 -29
- package/lib/utils/click-away/click-away.js.flow +0 -228
- package/lib/utils/click-away/index.js.flow +0 -3
- package/lib/utils/date-range-picker/date-range-picker.js.flow +0 -442
- package/lib/utils/date-range-picker/index.js.flow +0 -4
- package/lib/utils/date-range-picker/timezones.js.flow +0 -269
- package/lib/utils/dom/dom.js.flow +0 -238
- package/lib/utils/dom/index.js.flow +0 -3
- package/lib/utils/helpers/helpers.js.flow +0 -53
- package/lib/utils/helpers/index.js.flow +0 -3
- package/lib/utils/index.js.flow +0 -16
- package/lib/utils/makeClassNameComponent/index.js.flow +0 -3
- package/lib/utils/makeClassNameComponent/makeClassNameComponent.js.flow +0 -70
- package/lib/utils/menu/index.js.flow +0 -3
- package/lib/utils/menu/menu.js.flow +0 -193
- package/lib/utils/merge-refs/index.js.flow +0 -3
- package/lib/utils/merge-refs/merge-refs.js.flow +0 -14
- package/lib/utils/rating/index.js.flow +0 -3
- package/lib/utils/rating/rating.js.flow +0 -35
- package/lib/utils/score-bar/index.js.flow +0 -3
- package/lib/utils/score-bar/score-bar.js.flow +0 -58
- package/lib/utils/string/index.js.flow +0 -3
- package/lib/utils/string/string.js.flow +0 -33
- package/lib/utils/token-list-input/token-list-input.js.flow +0 -37
- package/lib/utils/tokens/index.js.flow +0 -3
- package/lib/utils/tokens/tokens.js.flow +0 -244
|
@@ -0,0 +1,465 @@
|
|
|
1
|
+
/* eslint-disable react/no-array-index-key */
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
import {ChatAnchor, ChatBody, ChatBubble, ChatContent} from '../ChatBubble';
|
|
5
|
+
import {ChatFooterWithIcons} from '../ChatBubble/ChatBubble.stories';
|
|
6
|
+
import {Disclaimer} from '../Disclaimer';
|
|
7
|
+
import {Panel, PanelBody, PanelFooter, PanelHeader} from '../Panel';
|
|
8
|
+
import {PromptChip} from '../PromptChip';
|
|
9
|
+
import {PromptInput} from '../PromptInput';
|
|
10
|
+
import {BodyMedium, FormLabelMedium} from '../Text';
|
|
11
|
+
import {SubTitleSmall} from '../Text/Text';
|
|
12
|
+
import {TextTile} from '../TextTile';
|
|
13
|
+
|
|
14
|
+
import css from './AIPromptFlow.stories.module.css';
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
export default {
|
|
18
|
+
tags: ['!autodocs'],
|
|
19
|
+
title: 'AI Prompt Components/AI Prompt Flow',
|
|
20
|
+
parameters: {
|
|
21
|
+
docs: {
|
|
22
|
+
subtitle: 'AI Prompt Flow example',
|
|
23
|
+
description: {
|
|
24
|
+
component: `
|
|
25
|
+
This example showcases how to use the ai copilot flows in ui. feel free to copy code and respective css to mimic the exact UI
|
|
26
|
+
`,
|
|
27
|
+
},
|
|
28
|
+
},
|
|
29
|
+
storySource: {
|
|
30
|
+
componentPath: '/src/components/Disclaimer/Disclaimer.jsx',
|
|
31
|
+
},
|
|
32
|
+
},
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
const staticResponse = `In today's data-driven world, analytics play a crucial role in decision-making and strategy development. Companies rely on key performance indicators (KPIs) to measure progress and identify areas for improvement. Metrics like conversion rates, churn rates, and user engagement provide valuable insights into business performance. Accurate data collection and analysis empower teams to make informed choices, optimize processes, and allocate resources effectively.
|
|
36
|
+
|
|
37
|
+
For instance, monitoring website traffic helps identify the most visited pages and the sources driving users to the site. A high bounce rate might indicate a need to improve user experience, while a steady increase in session duration reflects growing engagement. Similarly, tracking customer acquisition cost (CAC) against lifetime value (LTV) ensures sustainable growth and profitability.
|
|
38
|
+
|
|
39
|
+
Sales teams use analytics to measure pipeline velocity, close rates, and average deal size. These metrics enable managers to forecast revenue, adjust strategies, and improve overall efficiency. In marketing, tools like funnel analysis highlight where potential leads drop off, helping refine campaigns and improve return on investment (ROI).
|
|
40
|
+
|
|
41
|
+
Employee performance metrics are equally important. Organizations track productivity, satisfaction scores, and retention rates to foster a positive work environment. For instance, a drop in employee engagement often signals underlying issues, such as workload imbalance or lack of recognition.
|
|
42
|
+
|
|
43
|
+
In customer success, analytics focus on net promoter scores (NPS), response times, and resolution rates. High NPS scores indicate satisfied customers likely to promote the brand, while tracking ticket resolution times ensures efficient support processes. By analyzing these trends, businesses can address pain points and improve client relationships.
|
|
44
|
+
|
|
45
|
+
Financial analytics are another critical area. Companies monitor profit margins, operational costs, and revenue growth to ensure financial stability. Metrics such as EBITDA and cash flow provide a clear picture of a company’s health, enabling leadership to plan for future investments or expansions.
|
|
46
|
+
|
|
47
|
+
Data visualization tools make these analytics easier to understand. Dashboards present complex information in simple charts and graphs, allowing teams to identify patterns and anomalies at a glance. Heatmaps, for example, can show user activity on a website, revealing areas that need more attention.
|
|
48
|
+
|
|
49
|
+
A/B testing further enhances decision-making by allowing teams to experiment with different strategies and compare results. Whether testing headlines, product features, or email campaigns, data-driven results provide clarity and eliminate guesswork.
|
|
50
|
+
|
|
51
|
+
Real-time analytics help organizations stay agile and responsive. By monitoring live data, companies can react to sudden changes, such as traffic spikes or unexpected downtime. Alerts and notifications ensure that teams are aware of critical issues and can act promptly.
|
|
52
|
+
|
|
53
|
+
The value of analytics lies not only in the data itself but also in how it’s interpreted and applied. Insights derived from metrics allow businesses to streamline operations, enhance customer satisfaction, and drive growth. With the right tools and a data-driven mindset, organizations can turn raw data into actionable strategies and measurable outcomes.
|
|
54
|
+
|
|
55
|
+
In essence, analytics provide the foundation for smarter decisions, improved performance, and long-term success. Whether it’s understanding user behavior, optimizing workflows, or predicting market trends, leveraging analytics is key to staying competitive in an ever-changing landscape.`;
|
|
56
|
+
|
|
57
|
+
const PROMPTS = [
|
|
58
|
+
'What is the offer acceptance rate?',
|
|
59
|
+
'Which source produces the best hires?',
|
|
60
|
+
'What is the average time to hire?',
|
|
61
|
+
'How many candidates are in the pipeline?',
|
|
62
|
+
'What is the average cost per hire?',
|
|
63
|
+
'Which department has the highest turnover rate?',
|
|
64
|
+
'What percentage of hires are from referrals?',
|
|
65
|
+
'How long does it take to fill a position?',
|
|
66
|
+
'What is the attrition rate for the past year?',
|
|
67
|
+
'Which jobs have the highest application drop-off rate?',
|
|
68
|
+
'What is the conversion rate from interview to hire?',
|
|
69
|
+
'How many candidates are rejected at each stage?',
|
|
70
|
+
'What is the average interview-to-offer ratio?',
|
|
71
|
+
'Which recruiters have the best performance metrics?',
|
|
72
|
+
'What percentage of candidates reject offers?',
|
|
73
|
+
'How satisfied are candidates with the hiring process?',
|
|
74
|
+
'What is the diversity ratio in the current workforce?',
|
|
75
|
+
'How many hires come from internal promotions?',
|
|
76
|
+
'What are the reasons for candidate drop-off?',
|
|
77
|
+
'How effective is the onboarding process?',
|
|
78
|
+
'What is the current employee engagement score?',
|
|
79
|
+
'How many candidates applied last quarter?',
|
|
80
|
+
'What percentage of job offers are pending?',
|
|
81
|
+
'How many interviews are conducted per position?',
|
|
82
|
+
'What is the overall hiring success rate?',
|
|
83
|
+
'What percentage of applicants are qualified?',
|
|
84
|
+
'How many candidates are awaiting feedback?',
|
|
85
|
+
'What is the average time to first interview?',
|
|
86
|
+
'Which job roles take the longest to fill?',
|
|
87
|
+
'What is the ratio of applicants to hires?',
|
|
88
|
+
'Which job boards drive the most applications?',
|
|
89
|
+
'What is the average time spent interviewing candidates?',
|
|
90
|
+
'How many passive candidates were contacted last month?',
|
|
91
|
+
'What percentage of hires are new graduates?',
|
|
92
|
+
'Which hiring stages have the highest drop-off?',
|
|
93
|
+
'How many candidates withdrew their applications?',
|
|
94
|
+
'What percentage of employees passed probation?',
|
|
95
|
+
'Which regions have the most successful hires?',
|
|
96
|
+
'What is the average number of interview rounds?',
|
|
97
|
+
'How many requisitions are still open?',
|
|
98
|
+
'Which departments have the lowest attrition?',
|
|
99
|
+
'What percentage of candidates complete assessments?',
|
|
100
|
+
'What is the satisfaction rate of new hires?',
|
|
101
|
+
'How many hires are expected this quarter?',
|
|
102
|
+
'What is the median salary for new hires?',
|
|
103
|
+
'How many requisitions were filled last month?',
|
|
104
|
+
'Which hiring sources are the most cost-effective?',
|
|
105
|
+
'How diverse are the recent hires?',
|
|
106
|
+
'How many employees left during onboarding?',
|
|
107
|
+
'What is the percentage of part-time hires?',
|
|
108
|
+
'How many job offers were rescinded?',
|
|
109
|
+
'What is the average candidate feedback score?',
|
|
110
|
+
'Which teams have the fastest hiring process?',
|
|
111
|
+
'What percentage of hires are internal candidates?',
|
|
112
|
+
'How many candidates are in the talent pool?',
|
|
113
|
+
'What is the average age of new hires?',
|
|
114
|
+
'How effective are employee referral programs?',
|
|
115
|
+
'What percentage of hires are remote employees?',
|
|
116
|
+
'How many candidates are considered overqualified?',
|
|
117
|
+
'Which recruiters have the fastest response time?',
|
|
118
|
+
'What is the average duration between offer and joining?',
|
|
119
|
+
'How satisfied are hiring managers with candidates?',
|
|
120
|
+
'Which skills are most common among recent hires?',
|
|
121
|
+
'How many candidates failed the technical assessment?',
|
|
122
|
+
'What is the drop-off rate during technical rounds?',
|
|
123
|
+
'What percentage of hires are contract workers?',
|
|
124
|
+
'How many job offers were declined last quarter?',
|
|
125
|
+
'What percentage of hires meet performance benchmarks?',
|
|
126
|
+
'How many positions remain unfilled after 90 days?',
|
|
127
|
+
'What is the hiring trend over the last six months?',
|
|
128
|
+
'What percentage of hires come from social media?',
|
|
129
|
+
'How effective is the candidate feedback loop?',
|
|
130
|
+
'What is the employee referral success rate?',
|
|
131
|
+
'How many active job seekers applied this month?',
|
|
132
|
+
'What percentage of candidates ask for offer extensions?',
|
|
133
|
+
'What is the typical rejection reason from candidates?',
|
|
134
|
+
'Which hiring stage causes the most delays?',
|
|
135
|
+
'What percentage of new hires recommend the process?',
|
|
136
|
+
'How many rehires were made this year?',
|
|
137
|
+
'What is the cost of a bad hire?',
|
|
138
|
+
'How many positions were closed due to budget cuts?',
|
|
139
|
+
'What percentage of hires exceed expectations?',
|
|
140
|
+
'How long do candidates stay on average?',
|
|
141
|
+
'What is the feedback score for interviewers?',
|
|
142
|
+
'Which stages have the most rescheduled interviews?',
|
|
143
|
+
'How many candidates received counteroffers?',
|
|
144
|
+
'What is the candidate response time for offers?',
|
|
145
|
+
'What percentage of candidates report a good experience?',
|
|
146
|
+
'How does the hiring rate compare year over year?',
|
|
147
|
+
'Which regions have the slowest time to hire?',
|
|
148
|
+
'How effective are pre-screening assessments?',
|
|
149
|
+
'How often do candidates ghost interviews?',
|
|
150
|
+
'What is the most requested role this year?',
|
|
151
|
+
'What percentage of new hires are retained after a year?',
|
|
152
|
+
'How many rejected candidates reapply later?',
|
|
153
|
+
'How many candidates fail during background checks?',
|
|
154
|
+
'What percentage of hires are diversity candidates?',
|
|
155
|
+
'How successful are hiring campaigns in different regions?',
|
|
156
|
+
'What is the satisfaction rate among rejected candidates?',
|
|
157
|
+
'How many roles are open for more than 6 months?',
|
|
158
|
+
'What percentage of hires move into leadership roles?',
|
|
159
|
+
];
|
|
160
|
+
|
|
161
|
+
const getRandomPrompts = (prompts: Array<string>) => {
|
|
162
|
+
const count = Math.floor(Math.random() * 3) + 1;
|
|
163
|
+
const shuffled = prompts.sort(() => 0.5 - Math.random());
|
|
164
|
+
return shuffled.slice(0, count);
|
|
165
|
+
};
|
|
166
|
+
|
|
167
|
+
const getRandomSentences = (text: string, wordLimit = 50) => {
|
|
168
|
+
const sentences = text.match(/[^.!?]+[.!?]/g) || [];
|
|
169
|
+
|
|
170
|
+
const result: Array<string> = [];
|
|
171
|
+
let totalWords = 0;
|
|
172
|
+
|
|
173
|
+
const shuffledSentences = sentences.sort(() => Math.random() - 0.5);
|
|
174
|
+
|
|
175
|
+
for (const sentence of shuffledSentences) {
|
|
176
|
+
const wordCount = sentence.trim().split(/\s+/).length;
|
|
177
|
+
|
|
178
|
+
if (totalWords + wordCount <= wordLimit || result.length === 0) {
|
|
179
|
+
result.push(sentence.trim());
|
|
180
|
+
totalWords += wordCount;
|
|
181
|
+
} else {
|
|
182
|
+
break;
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
return result.join(' ');
|
|
187
|
+
};
|
|
188
|
+
|
|
189
|
+
export const _AIPromptFlow = () => {
|
|
190
|
+
const [value, setValue] = React.useState('');
|
|
191
|
+
const [isLoading, setIsLoading] = React.useState(false);
|
|
192
|
+
const [responses, setResponses] = React.useState([]);
|
|
193
|
+
const [selectedPrompts, setSelectedPrompts] = React.useState(
|
|
194
|
+
getRandomPrompts(PROMPTS),
|
|
195
|
+
);
|
|
196
|
+
const promptRef = React.useRef(null);
|
|
197
|
+
const loadingRef = React.useRef(null);
|
|
198
|
+
|
|
199
|
+
const generateResponse = (text?: string) => {
|
|
200
|
+
const preparedResponses = [...responses];
|
|
201
|
+
setIsLoading(true);
|
|
202
|
+
setTimeout(() => {
|
|
203
|
+
// @ts-ignore - TS2339 - Property 'scrollIntoView' does not exist on type 'never'.
|
|
204
|
+
loadingRef.current?.scrollIntoView({
|
|
205
|
+
behavior: 'smooth',
|
|
206
|
+
});
|
|
207
|
+
});
|
|
208
|
+
|
|
209
|
+
setValue('');
|
|
210
|
+
|
|
211
|
+
const question = text ? text : value;
|
|
212
|
+
|
|
213
|
+
// @ts-ignore - TS2322 - Type 'string' is not assignable to type 'never'.
|
|
214
|
+
preparedResponses.push({
|
|
215
|
+
question,
|
|
216
|
+
answer: '',
|
|
217
|
+
});
|
|
218
|
+
|
|
219
|
+
setResponses(preparedResponses);
|
|
220
|
+
|
|
221
|
+
setTimeout(() => {
|
|
222
|
+
// @ts-ignore - TS2322 - Type 'string' is not assignable to type 'never'.
|
|
223
|
+
preparedResponses.push({
|
|
224
|
+
|
|
225
|
+
question: '',
|
|
226
|
+
|
|
227
|
+
answer: getRandomSentences(staticResponse),
|
|
228
|
+
});
|
|
229
|
+
setResponses(preparedResponses);
|
|
230
|
+
setIsLoading(false);
|
|
231
|
+
setSelectedPrompts(getRandomPrompts(PROMPTS));
|
|
232
|
+
// @ts-ignore - TS2339 - Property 'scrollIntoView' does not exist on type 'never'.
|
|
233
|
+
promptRef.current?.scrollIntoView({
|
|
234
|
+
behavior: 'smooth',
|
|
235
|
+
});
|
|
236
|
+
}, 2000);
|
|
237
|
+
};
|
|
238
|
+
|
|
239
|
+
return (
|
|
240
|
+
<Panel isOpen={true} anchor="right" size="large">
|
|
241
|
+
<PanelHeader>Copilot</PanelHeader>
|
|
242
|
+
<Disclaimer classNames={{wrapper: css.disclaimer}}>
|
|
243
|
+
Always check content generated by AI
|
|
244
|
+
</Disclaimer>
|
|
245
|
+
<PanelBody className={css.panelBody}>
|
|
246
|
+
{responses.length === 0 && !isLoading && (
|
|
247
|
+
<TextTile
|
|
248
|
+
header="Copilot"
|
|
249
|
+
description="Ask anything to accomplish tasks in Sense."
|
|
250
|
+
classNames={{wrapper: css.copilotTextWrapper}}
|
|
251
|
+
/>
|
|
252
|
+
)}
|
|
253
|
+
|
|
254
|
+
{responses.map((response, idx) => (
|
|
255
|
+
<div key={idx} className={css.conversationAI}>
|
|
256
|
+
{ /* @ts-ignore - TS2339 - Property 'question' does not exist on type 'never'. */}
|
|
257
|
+
{!!response.question && (
|
|
258
|
+
<ChatBubble orientation="left">
|
|
259
|
+
<ChatAnchor
|
|
260
|
+
avatarProps={{
|
|
261
|
+
text: 'Adam Craig Gilchrist',
|
|
262
|
+
}}
|
|
263
|
+
isAI={false}
|
|
264
|
+
/>
|
|
265
|
+
<ChatContent>
|
|
266
|
+
<ChatBody withBgColor={false}>
|
|
267
|
+
{ /* @ts-ignore - TS2339 - Property 'question' does not exist on type 'never'. */}
|
|
268
|
+
<BodyMedium>{response.question}</BodyMedium>
|
|
269
|
+
</ChatBody>
|
|
270
|
+
</ChatContent>
|
|
271
|
+
</ChatBubble>
|
|
272
|
+
)}
|
|
273
|
+
|
|
274
|
+
{ /* @ts-ignore - TS2339 - Property 'answer' does not exist on type 'never'. */}
|
|
275
|
+
{!!response.answer && (
|
|
276
|
+
<>
|
|
277
|
+
{idx === 1 && (
|
|
278
|
+
<>
|
|
279
|
+
<ChatBubble orientation="left">
|
|
280
|
+
<ChatAnchor />
|
|
281
|
+
<ChatContent>
|
|
282
|
+
<ChatBody>
|
|
283
|
+
<SubTitleSmall>
|
|
284
|
+
This is our interpretation of you question
|
|
285
|
+
</SubTitleSmall>
|
|
286
|
+
|
|
287
|
+
<BodyMedium>
|
|
288
|
+
{getRandomSentences(staticResponse)}
|
|
289
|
+
</BodyMedium>
|
|
290
|
+
</ChatBody>
|
|
291
|
+
</ChatContent>
|
|
292
|
+
</ChatBubble>
|
|
293
|
+
<ChatBubble
|
|
294
|
+
orientation="left"
|
|
295
|
+
classNames={{wrapper: css.leftMarginSpace}}
|
|
296
|
+
>
|
|
297
|
+
<ChatContent>
|
|
298
|
+
<ChatBody>
|
|
299
|
+
{ /* @ts-ignore - TS2339 - Property 'answer' does not exist on type 'never'. */}
|
|
300
|
+
<BodyMedium>{response.answer}</BodyMedium>
|
|
301
|
+
</ChatBody>
|
|
302
|
+
<ChatFooterWithIcons />
|
|
303
|
+
</ChatContent>
|
|
304
|
+
</ChatBubble>
|
|
305
|
+
</>
|
|
306
|
+
)}
|
|
307
|
+
{idx === 3 && (
|
|
308
|
+
<ChatBubble orientation="left">
|
|
309
|
+
<ChatAnchor />
|
|
310
|
+
<ChatContent>
|
|
311
|
+
<ChatBody classNames={{wrapper: css.longChatContent}}>
|
|
312
|
+
<BodyMedium>
|
|
313
|
+
In a world where technology and imagination
|
|
314
|
+
intertwine, the possibilities for innovation are
|
|
315
|
+
boundless. Every passing day introduces new
|
|
316
|
+
advancements that reshape the way humanity interacts
|
|
317
|
+
with the world, creating a seamless blend of
|
|
318
|
+
convenience, creativity, and connectivity. As
|
|
319
|
+
artificial intelligence continues to grow in
|
|
320
|
+
influence, its impact on everyday life becomes more
|
|
321
|
+
profound, touching areas that range from healthcare to
|
|
322
|
+
entertainment, from education to environmental
|
|
323
|
+
conservation. Take, for instance, the story of a small
|
|
324
|
+
town nestled in the valley of rolling hills. For
|
|
325
|
+
decades, this town had thrived on traditional farming
|
|
326
|
+
practices, cultivating crops and raising livestock in
|
|
327
|
+
harmony with nature. However, the advent of technology
|
|
328
|
+
introduced challenges that demanded adaptation.
|
|
329
|
+
Climate change brought unpredictable weather patterns,
|
|
330
|
+
and global markets introduced competitive pressures
|
|
331
|
+
that many small farms struggled to meet. Faced with
|
|
332
|
+
these challenges, the community turned to innovation.
|
|
333
|
+
The town’s leaders, in collaboration with researchers
|
|
334
|
+
and technologists, implemented a system of smart
|
|
335
|
+
farming powered by AI. Sensors embedded in the soil
|
|
336
|
+
measured moisture levels, nutrient content, and
|
|
337
|
+
temperature, providing real-time feedback to farmers.
|
|
338
|
+
Drones equipped with cameras flew over fields,
|
|
339
|
+
capturing images that AI analyzed to detect signs of
|
|
340
|
+
pests or disease. Autonomous tractors, guided by
|
|
341
|
+
satellite data, plowed and planted with precision,
|
|
342
|
+
minimizing waste and maximizing yield. Over time,
|
|
343
|
+
these tools not only revived the town’s agricultural
|
|
344
|
+
economy but also established it as a model for
|
|
345
|
+
sustainable farming practices worldwide. Beyond
|
|
346
|
+
agriculture, artificial intelligence also
|
|
347
|
+
revolutionized healthcare. A few years ago, a young
|
|
348
|
+
woman named Clara faced an uncertain future. Diagnosed
|
|
349
|
+
with a rare and aggressive form of cancer, she was
|
|
350
|
+
told her chances of survival were slim. However,
|
|
351
|
+
Clara’s doctors employed a cutting-edge AI system to
|
|
352
|
+
analyze her genetic profile and recommend a
|
|
353
|
+
personalized treatment plan. This system, trained on
|
|
354
|
+
data from millions of patients worldwide, identified
|
|
355
|
+
patterns that human doctors might have missed,
|
|
356
|
+
suggesting a combination of therapies tailored
|
|
357
|
+
specifically to Clara’s condition.
|
|
358
|
+
</BodyMedium>
|
|
359
|
+
</ChatBody>
|
|
360
|
+
<ChatFooterWithIcons />
|
|
361
|
+
</ChatContent>
|
|
362
|
+
</ChatBubble>
|
|
363
|
+
)}
|
|
364
|
+
{idx !== 1 && idx !== 3 && (
|
|
365
|
+
<ChatBubble orientation="left">
|
|
366
|
+
<ChatAnchor />
|
|
367
|
+
<ChatContent>
|
|
368
|
+
<ChatBody>
|
|
369
|
+
{ /* @ts-ignore - TS2339 - Property 'answer' does not exist on type 'never'. */}
|
|
370
|
+
<BodyMedium>{response.answer}</BodyMedium>
|
|
371
|
+
</ChatBody>
|
|
372
|
+
</ChatContent>
|
|
373
|
+
</ChatBubble>
|
|
374
|
+
)}
|
|
375
|
+
|
|
376
|
+
<div className={css.leftMarginSpace}>
|
|
377
|
+
{idx === responses.length - 1 && (
|
|
378
|
+
// @ts-ignore - TS2786 - 'PromptSuggestions' cannot be used as a JSX component.
|
|
379
|
+
<PromptSuggestions
|
|
380
|
+
isLoading={isLoading}
|
|
381
|
+
selectedPrompts={selectedPrompts}
|
|
382
|
+
generateResponse={generateResponse}
|
|
383
|
+
promptRef={promptRef}
|
|
384
|
+
/>
|
|
385
|
+
)}
|
|
386
|
+
</div>
|
|
387
|
+
</>
|
|
388
|
+
)}
|
|
389
|
+
</div>
|
|
390
|
+
))}
|
|
391
|
+
{isLoading && (
|
|
392
|
+
<ChatBubble
|
|
393
|
+
classNames={{
|
|
394
|
+
wrapper: css.loader,
|
|
395
|
+
}}
|
|
396
|
+
orientation="left"
|
|
397
|
+
ref={loadingRef}
|
|
398
|
+
>
|
|
399
|
+
<ChatAnchor />
|
|
400
|
+
<ChatContent>
|
|
401
|
+
<ChatBody isLoading loadingText="Generating" />
|
|
402
|
+
</ChatContent>
|
|
403
|
+
</ChatBubble>
|
|
404
|
+
)}
|
|
405
|
+
|
|
406
|
+
{responses.length === 0 && (
|
|
407
|
+
<div className={css.promptContainer}>
|
|
408
|
+
{ /* @ts-ignore - TS2786 - 'PromptSuggestions' cannot be used as a JSX component. */}
|
|
409
|
+
<PromptSuggestions
|
|
410
|
+
isLoading={isLoading}
|
|
411
|
+
selectedPrompts={selectedPrompts}
|
|
412
|
+
generateResponse={generateResponse}
|
|
413
|
+
label="Here are some ideas to get started with Analytics for your product"
|
|
414
|
+
/>
|
|
415
|
+
</div>
|
|
416
|
+
)}
|
|
417
|
+
</PanelBody>
|
|
418
|
+
<PanelFooter classNames={{actions: css.actions}}>
|
|
419
|
+
<PromptInput
|
|
420
|
+
withPadding={false}
|
|
421
|
+
value={value}
|
|
422
|
+
onInputChange={(e) => setValue(e.target.value)}
|
|
423
|
+
onButtonClick={() => generateResponse()}
|
|
424
|
+
buttonDisabled={value.length === 0}
|
|
425
|
+
></PromptInput>
|
|
426
|
+
</PanelFooter>
|
|
427
|
+
</Panel>
|
|
428
|
+
);
|
|
429
|
+
};
|
|
430
|
+
|
|
431
|
+
const PromptSuggestions = ({
|
|
432
|
+
isLoading,
|
|
433
|
+
generateResponse,
|
|
434
|
+
selectedPrompts,
|
|
435
|
+
label,
|
|
436
|
+
promptRef,
|
|
437
|
+
}: {
|
|
438
|
+
isLoading: boolean;
|
|
439
|
+
generateResponse: (prompt: string) => void;
|
|
440
|
+
selectedPrompts: string[];
|
|
441
|
+
label?: string;
|
|
442
|
+
promptRef?: {
|
|
443
|
+
current?: HTMLDivElement | null;
|
|
444
|
+
};
|
|
445
|
+
}) =>
|
|
446
|
+
!isLoading && (
|
|
447
|
+
<>
|
|
448
|
+
{label && <FormLabelMedium>{label}</FormLabelMedium>}
|
|
449
|
+
|
|
450
|
+
<div className={css.promptWrapper}>
|
|
451
|
+
{selectedPrompts.map((prompt) => (
|
|
452
|
+
<React.Fragment key={prompt}>
|
|
453
|
+
<PromptChip
|
|
454
|
+
classNames={{wrapper: css.prompt}}
|
|
455
|
+
onClick={() => generateResponse(prompt)}
|
|
456
|
+
// @ts-ignore - TS2769 - No overload matches this call.
|
|
457
|
+
ref={promptRef}
|
|
458
|
+
>
|
|
459
|
+
{prompt}
|
|
460
|
+
</PromptChip>
|
|
461
|
+
</React.Fragment>
|
|
462
|
+
))}
|
|
463
|
+
</div>
|
|
464
|
+
</>
|
|
465
|
+
);
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Flow } from 'flow-to-typescript-codemod';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
export type AccordionClassNames = Readonly<{
|
|
4
|
+
wrapper?: string;
|
|
5
|
+
headerWrapper?: string;
|
|
6
|
+
header?: string;
|
|
7
|
+
content?: string;
|
|
8
|
+
}>;
|
|
9
|
+
export type AccordionPropsType = {
|
|
10
|
+
id: string;
|
|
11
|
+
header: React.ReactNode;
|
|
12
|
+
children: React.ReactNode;
|
|
13
|
+
classNames?: AccordionClassNames;
|
|
14
|
+
isOpen?: boolean;
|
|
15
|
+
disabled?: boolean;
|
|
16
|
+
showToggle?: boolean;
|
|
17
|
+
onChange?: ((id: string, isOpen: boolean) => unknown) | null | undefined;
|
|
18
|
+
onToggle?: ((id?: string, checked?: boolean) => unknown) | null | undefined;
|
|
19
|
+
};
|
|
20
|
+
export declare const Accordion: Flow.AbstractComponent<AccordionPropsType, HTMLDivElement>;
|
|
21
|
+
//# sourceMappingURL=Accordion.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Accordion.d.ts","sourceRoot":"","sources":["../../../src/components/Accordion/Accordion.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,IAAI,EAAC,MAAM,4BAA4B,CAAC;AAEhD,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAS/B,MAAM,MAAM,mBAAmB,GAAG,QAAQ,CAAC;IACzC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC,CAAC;AAEH,MAAM,MAAM,kBAAkB,GAAG;IAC/B,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,KAAK,CAAC,SAAS,CAAC;IACxB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,UAAU,CAAC,EAAE,mBAAmB,CAAC;IACjC,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,QAAQ,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,KAAK,OAAO,CAAC,GAAG,IAAI,GAAG,SAAS,CAAC;IACzE,QAAQ,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,KAAK,OAAO,CAAC,GAAG,IAAI,GAAG,SAAS,CAAC;CAC7E,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,IAAI,CAAC,iBAAiB,CAAC,kBAAkB,EAAE,cAAc,CA+E/E,CAAC"}
|
|
@@ -59,7 +59,9 @@ const Accordion = exports.Accordion = /*#__PURE__*/React.forwardRef((_ref, ref)
|
|
|
59
59
|
iconLeftName: accordionIsOpen ? 'chevron-up' : 'chevron-down',
|
|
60
60
|
disabled: disabled,
|
|
61
61
|
size: "small",
|
|
62
|
-
type: "ghost"
|
|
62
|
+
type: "ghost"
|
|
63
|
+
// @ts-ignore - TS2769 - No overload matches this call.
|
|
64
|
+
,
|
|
63
65
|
className: _AccordionModule.default.icon,
|
|
64
66
|
ariaLabel: 'Collapse button'
|
|
65
67
|
// we are not defining onClick here as we are using onClick of the parent here.
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { AccordionPropsType } from './Accordion';
|
|
3
|
+
declare const _default: {
|
|
4
|
+
tags: string[];
|
|
5
|
+
title: string;
|
|
6
|
+
component: import("flow-to-typescript-codemod").Flow.AbstractComponent<AccordionPropsType, HTMLDivElement>;
|
|
7
|
+
argTypes: {
|
|
8
|
+
classNames: {
|
|
9
|
+
description: string;
|
|
10
|
+
control: {
|
|
11
|
+
type: string;
|
|
12
|
+
};
|
|
13
|
+
table: {
|
|
14
|
+
type: {
|
|
15
|
+
summary: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
header: {
|
|
20
|
+
description: string;
|
|
21
|
+
control: {
|
|
22
|
+
type: string;
|
|
23
|
+
};
|
|
24
|
+
table: {
|
|
25
|
+
type: {
|
|
26
|
+
summary: string;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
id: {
|
|
31
|
+
description: string;
|
|
32
|
+
control: {
|
|
33
|
+
type: string;
|
|
34
|
+
};
|
|
35
|
+
table: {
|
|
36
|
+
type: {
|
|
37
|
+
summary: string;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
children: {
|
|
42
|
+
description: string;
|
|
43
|
+
control: {
|
|
44
|
+
type: string;
|
|
45
|
+
};
|
|
46
|
+
table: {
|
|
47
|
+
type: {
|
|
48
|
+
summary: string;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
isOpen: {
|
|
53
|
+
description: string;
|
|
54
|
+
control: {
|
|
55
|
+
type: string;
|
|
56
|
+
};
|
|
57
|
+
table: {
|
|
58
|
+
type: {
|
|
59
|
+
summary: string;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
disabled: {
|
|
64
|
+
description: string;
|
|
65
|
+
control: {
|
|
66
|
+
type: string;
|
|
67
|
+
};
|
|
68
|
+
table: {
|
|
69
|
+
type: {
|
|
70
|
+
summary: string;
|
|
71
|
+
};
|
|
72
|
+
defaultValue: {
|
|
73
|
+
summary: string;
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
};
|
|
77
|
+
showToggle: {
|
|
78
|
+
description: string;
|
|
79
|
+
control: {
|
|
80
|
+
type: string;
|
|
81
|
+
};
|
|
82
|
+
table: {
|
|
83
|
+
type: {
|
|
84
|
+
summary: string;
|
|
85
|
+
};
|
|
86
|
+
defaultValue: {
|
|
87
|
+
summary: string;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
onChange: {
|
|
92
|
+
description: string;
|
|
93
|
+
control: boolean;
|
|
94
|
+
table: {
|
|
95
|
+
type: {
|
|
96
|
+
summary: string;
|
|
97
|
+
};
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
onToggle: {
|
|
101
|
+
description: string;
|
|
102
|
+
control: boolean;
|
|
103
|
+
table: {
|
|
104
|
+
type: {
|
|
105
|
+
summary: string;
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
};
|
|
110
|
+
parameters: {
|
|
111
|
+
docs: {
|
|
112
|
+
subtitle: string;
|
|
113
|
+
description: {
|
|
114
|
+
component: string;
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
storySource: {
|
|
118
|
+
componentPath: string;
|
|
119
|
+
};
|
|
120
|
+
};
|
|
121
|
+
};
|
|
122
|
+
export default _default;
|
|
123
|
+
export declare const _Default: {
|
|
124
|
+
(args: AccordionPropsType): React.JSX.Element;
|
|
125
|
+
args: {
|
|
126
|
+
classNames: {
|
|
127
|
+
wrapper: string;
|
|
128
|
+
};
|
|
129
|
+
id: string;
|
|
130
|
+
header: string;
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
export declare const _WithToggle: {
|
|
134
|
+
(args: AccordionPropsType): React.JSX.Element;
|
|
135
|
+
args: {
|
|
136
|
+
classNames: {
|
|
137
|
+
wrapper: string;
|
|
138
|
+
};
|
|
139
|
+
id: string;
|
|
140
|
+
showToggle: boolean;
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
//# sourceMappingURL=Accordion.stories.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Accordion.stories.d.ts","sourceRoot":"","sources":["../../../src/components/Accordion/Accordion.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,KAAK,EAAC,kBAAkB,EAAC,MAAM,aAAa,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIpD,wBAwGE;AAEF,eAAO,MAAM,QAAQ;WAAU,kBAAkB;;;;;;;;CAMpC,CAAC;AAQd,eAAO,MAAM,WAAW;WAAU,kBAAkB;;;;;;;;CAgCnD,CAAC"}
|