sdaia-ui 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +89 -0
- package/dist/PlayVideoIcon-BM-4pwUd.d.cts +7 -0
- package/dist/PlayVideoIcon-BM-4pwUd.d.ts +7 -0
- package/dist/dga-icons.cjs +14 -0
- package/dist/dga-icons.cjs.map +1 -0
- package/dist/dga-icons.d.cts +1 -0
- package/dist/dga-icons.d.ts +1 -0
- package/dist/dga-icons.js +3 -0
- package/dist/dga-icons.js.map +1 -0
- package/dist/icons.cjs +4014 -0
- package/dist/icons.cjs.map +1 -0
- package/dist/icons.d.cts +756 -0
- package/dist/icons.d.ts +756 -0
- package/dist/icons.js +3871 -0
- package/dist/icons.js.map +1 -0
- package/dist/index.cjs +43620 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +9407 -0
- package/dist/index.d.ts +9407 -0
- package/dist/index.js +43411 -0
- package/dist/index.js.map +1 -0
- package/dist/styles.css +242 -0
- package/package.json +65 -0
- package/src/components/Accordion/Accordion.tsx +207 -0
- package/src/components/Accordion/Accordion.types.ts +36 -0
- package/src/components/Accordion/Accordion.variants.ts +283 -0
- package/src/components/Accordion/index.ts +9 -0
- package/src/components/ActionBar/ActionBar.tsx +192 -0
- package/src/components/ActionBar/ActionBar.types.ts +67 -0
- package/src/components/ActionBar/ActionBar.variants.ts +95 -0
- package/src/components/ActionBar/index.ts +8 -0
- package/src/components/Activity/Activity.tsx +52 -0
- package/src/components/Activity/Activity.types.ts +19 -0
- package/src/components/Activity/Activity.variants.ts +15 -0
- package/src/components/Activity/index.ts +2 -0
- package/src/components/ActivityItem/ActivityItem.tsx +298 -0
- package/src/components/ActivityItem/ActivityItem.types.ts +76 -0
- package/src/components/ActivityItem/ActivityItem.variants.ts +117 -0
- package/src/components/ActivityItem/index.ts +8 -0
- package/src/components/Alert/Alert.tsx +183 -0
- package/src/components/Alert/Alert.types.ts +34 -0
- package/src/components/Alert/Alert.variants.ts +168 -0
- package/src/components/Alert/index.ts +2 -0
- package/src/components/AreaChart/AreaChart.tsx +454 -0
- package/src/components/AreaChart/AreaChart.types.ts +117 -0
- package/src/components/AreaChart/AreaChart.variants.ts +202 -0
- package/src/components/AreaChart/index.ts +2 -0
- package/src/components/AspectRatio/AspectRatio.tsx +36 -0
- package/src/components/AspectRatio/AspectRatio.types.ts +33 -0
- package/src/components/AspectRatio/AspectRatio.variants.ts +42 -0
- package/src/components/AspectRatio/index.ts +2 -0
- package/src/components/AudioPlayer/AudioPlayer.tsx +294 -0
- package/src/components/AudioPlayer/AudioPlayer.types.ts +64 -0
- package/src/components/AudioPlayer/AudioPlayer.variants.ts +225 -0
- package/src/components/AudioPlayer/index.ts +2 -0
- package/src/components/Autocomplete/Autocomplete.tsx +353 -0
- package/src/components/Autocomplete/Autocomplete.types.ts +93 -0
- package/src/components/Autocomplete/Autocomplete.variants.ts +149 -0
- package/src/components/Autocomplete/index.ts +6 -0
- package/src/components/Avatar/Avatar.tsx +168 -0
- package/src/components/Avatar/Avatar.types.ts +36 -0
- package/src/components/Avatar/Avatar.variants.ts +102 -0
- package/src/components/Avatar/index.ts +7 -0
- package/src/components/AvatarGroup/AvatarGroup.tsx +87 -0
- package/src/components/AvatarGroup/AvatarGroup.types.ts +44 -0
- package/src/components/AvatarGroup/AvatarGroup.variants.ts +17 -0
- package/src/components/AvatarGroup/index.ts +6 -0
- package/src/components/Badge/Badge.tsx +74 -0
- package/src/components/Badge/Badge.types.ts +31 -0
- package/src/components/Badge/Badge.variants.ts +83 -0
- package/src/components/Badge/index.ts +2 -0
- package/src/components/Bar/Bar.tsx +57 -0
- package/src/components/Bar/Bar.types.ts +18 -0
- package/src/components/Bar/Bar.variants.ts +20 -0
- package/src/components/Bar/index.ts +2 -0
- package/src/components/BarChart/BarChart.tsx +179 -0
- package/src/components/BarChart/BarChart.types.ts +72 -0
- package/src/components/BarChart/BarChart.variants.ts +134 -0
- package/src/components/BarChart/index.ts +2 -0
- package/src/components/BarGroup/BarGroup.tsx +119 -0
- package/src/components/BarGroup/BarGroup.types.ts +50 -0
- package/src/components/BarGroup/BarGroup.variants.ts +76 -0
- package/src/components/BarGroup/index.ts +2 -0
- package/src/components/Breadcrumb/Breadcrumb.tsx +137 -0
- package/src/components/Breadcrumb/Breadcrumb.types.ts +21 -0
- package/src/components/Breadcrumb/BreadcrumbItem.tsx +267 -0
- package/src/components/Breadcrumb/BreadcrumbItem.types.ts +66 -0
- package/src/components/Breadcrumb/BreadcrumbItem.variants.ts +102 -0
- package/src/components/Breadcrumb/index.ts +12 -0
- package/src/components/Button/Button.tsx +100 -0
- package/src/components/Button/Button.types.ts +44 -0
- package/src/components/Button/Button.variants.ts +183 -0
- package/src/components/Button/index.ts +2 -0
- package/src/components/ButtonClose/ButtonClose.tsx +57 -0
- package/src/components/ButtonClose/ButtonClose.types.ts +18 -0
- package/src/components/ButtonClose/ButtonClose.variants.ts +72 -0
- package/src/components/ButtonClose/index.ts +2 -0
- package/src/components/ButtonGroup/ButtonGroup.tsx +127 -0
- package/src/components/ButtonGroup/ButtonGroup.types.ts +51 -0
- package/src/components/ButtonGroup/ButtonGroup.variants.ts +65 -0
- package/src/components/ButtonGroup/index.ts +2 -0
- package/src/components/ButtonMenu/ButtonMenu.tsx +73 -0
- package/src/components/ButtonMenu/ButtonMenu.types.ts +43 -0
- package/src/components/ButtonMenu/ButtonMenu.variants.ts +18 -0
- package/src/components/ButtonMenu/index.ts +2 -0
- package/src/components/ButtonSplit/ButtonSplit.tsx +344 -0
- package/src/components/ButtonSplit/ButtonSplit.types.ts +95 -0
- package/src/components/ButtonSplit/ButtonSplit.variants.ts +165 -0
- package/src/components/ButtonSplit/index.ts +7 -0
- package/src/components/ButtonsWithSdaiaTouch/ButtonHoverPattern.tsx +69 -0
- package/src/components/ButtonsWithSdaiaTouch/ButtonsWithSdaiaTouch.tsx +130 -0
- package/src/components/ButtonsWithSdaiaTouch/ButtonsWithSdaiaTouch.types.ts +4 -0
- package/src/components/ButtonsWithSdaiaTouch/ButtonsWithSdaiaTouch.variants.ts +19 -0
- package/src/components/ButtonsWithSdaiaTouch/index.ts +6 -0
- package/src/components/CLAUDE.md +212 -0
- package/src/components/CalendarHeader/CalendarHeader.tsx +224 -0
- package/src/components/CalendarHeader/CalendarHeader.types.ts +51 -0
- package/src/components/CalendarHeader/CalendarHeader.variants.ts +65 -0
- package/src/components/CalendarHeader/index.ts +2 -0
- package/src/components/Card/Card.tsx +76 -0
- package/src/components/Card/Card.types.ts +11 -0
- package/src/components/Card/Card.variants.ts +30 -0
- package/src/components/Card/index.ts +2 -0
- package/src/components/CardContent/CardContent.tsx +178 -0
- package/src/components/CardContent/CardContent.types.ts +70 -0
- package/src/components/CardContent/CardContent.variants.ts +90 -0
- package/src/components/CardContent/index.ts +6 -0
- package/src/components/CardFooter/CardFooter.tsx +196 -0
- package/src/components/CardFooter/CardFooter.types.ts +59 -0
- package/src/components/CardFooter/CardFooter.variants.ts +127 -0
- package/src/components/CardFooter/index.ts +8 -0
- package/src/components/CardHeader/CardHeader.tsx +150 -0
- package/src/components/CardHeader/CardHeader.types.ts +42 -0
- package/src/components/CardHeader/CardHeader.variants.ts +72 -0
- package/src/components/CardHeader/index.ts +5 -0
- package/src/components/CardLeadingItem/CardLeadingItem.tsx +166 -0
- package/src/components/CardLeadingItem/CardLeadingItem.types.ts +75 -0
- package/src/components/CardLeadingItem/CardLeadingItem.variants.ts +66 -0
- package/src/components/CardLeadingItem/index.ts +6 -0
- package/src/components/CardMedia/CardMedia.tsx +324 -0
- package/src/components/CardMedia/CardMedia.types.ts +114 -0
- package/src/components/CardMedia/CardMedia.variants.ts +139 -0
- package/src/components/CardMedia/index.ts +2 -0
- package/src/components/Carousel/Carousel.tsx +182 -0
- package/src/components/Carousel/Carousel.types.ts +38 -0
- package/src/components/Carousel/Carousel.variants.ts +17 -0
- package/src/components/Carousel/index.ts +2 -0
- package/src/components/CarouselArrow/CarouselArrow.tsx +66 -0
- package/src/components/CarouselArrow/CarouselArrow.types.ts +26 -0
- package/src/components/CarouselArrow/CarouselArrow.variants.ts +83 -0
- package/src/components/CarouselArrow/index.ts +7 -0
- package/src/components/CarouselControlsGroup/CarouselControlsGroup.tsx +81 -0
- package/src/components/CarouselControlsGroup/CarouselControlsGroup.types.ts +24 -0
- package/src/components/CarouselControlsGroup/CarouselControlsGroup.variants.ts +60 -0
- package/src/components/CarouselControlsGroup/index.ts +6 -0
- package/src/components/CarouselImage/CarouselImage.tsx +253 -0
- package/src/components/CarouselImage/CarouselImage.types.ts +72 -0
- package/src/components/CarouselImage/CarouselImage.variants.ts +43 -0
- package/src/components/CarouselImage/index.ts +6 -0
- package/src/components/Chart/Chart.tsx +3 -0
- package/src/components/Chart/Chart.types.ts +2 -0
- package/src/components/Chart/Chart.variants.ts +2 -0
- package/src/components/Chart/index.ts +2 -0
- package/src/components/ChartBadge/ChartBadge.tsx +62 -0
- package/src/components/ChartBadge/ChartBadge.types.ts +27 -0
- package/src/components/ChartBadge/ChartBadge.variants.ts +62 -0
- package/src/components/ChartBadge/index.ts +2 -0
- package/src/components/Checkbox/Checkbox.tsx +243 -0
- package/src/components/Checkbox/Checkbox.types.ts +20 -0
- package/src/components/Checkbox/index.ts +2 -0
- package/src/components/CheckboxLabel/CheckboxLabel.tsx +148 -0
- package/src/components/CheckboxLabel/CheckboxLabel.types.ts +55 -0
- package/src/components/CheckboxLabel/CheckboxLabel.variants.ts +35 -0
- package/src/components/CheckboxLabel/index.ts +2 -0
- package/src/components/Chip/Chip.tsx +245 -0
- package/src/components/Chip/Chip.types.ts +83 -0
- package/src/components/Chip/Chip.variants.ts +143 -0
- package/src/components/Chip/index.ts +2 -0
- package/src/components/CircularItem/CircularItem.tsx +133 -0
- package/src/components/CircularItem/CircularItem.types.ts +45 -0
- package/src/components/CircularItem/CircularItem.variants.ts +128 -0
- package/src/components/CircularItem/index.ts +7 -0
- package/src/components/CodeSnippet/CodeSnippet.tsx +421 -0
- package/src/components/CodeSnippet/CodeSnippet.types.ts +99 -0
- package/src/components/CodeSnippet/CodeSnippet.variants.ts +76 -0
- package/src/components/CodeSnippet/index.ts +9 -0
- package/src/components/ColumnChart/ColumnChart.tsx +943 -0
- package/src/components/ColumnChart/ColumnChart.types.ts +98 -0
- package/src/components/ColumnChart/ColumnChart.variants.ts +117 -0
- package/src/components/ColumnChart/index.ts +9 -0
- package/src/components/ComplexComposition/ComplexComposition.tsx +82 -0
- package/src/components/ComplexComposition/ComplexComposition.types.ts +3 -0
- package/src/components/ComplexComposition/ComplexComposition.variants.ts +14 -0
- package/src/components/ComplexComposition/index.ts +2 -0
- package/src/components/ContentSwitcher/ContentSwitcher.tsx +104 -0
- package/src/components/ContentSwitcher/ContentSwitcher.types.ts +28 -0
- package/src/components/ContentSwitcher/ContentSwitcher.variants.ts +70 -0
- package/src/components/ContentSwitcher/index.ts +6 -0
- package/src/components/ContentSwitcherItem/ContentSwitcherItem.tsx +56 -0
- package/src/components/ContentSwitcherItem/ContentSwitcherItem.types.ts +14 -0
- package/src/components/ContentSwitcherItem/ContentSwitcherItem.variants.ts +65 -0
- package/src/components/ContentSwitcherItem/index.ts +6 -0
- package/src/components/ContextMenu/ContextMenu.tsx +101 -0
- package/src/components/ContextMenu/ContextMenu.types.ts +64 -0
- package/src/components/ContextMenu/ContextMenu.variants.ts +36 -0
- package/src/components/ContextMenu/index.ts +7 -0
- package/src/components/ContextMenuDropdown/ContextMenuDropdown.tsx +370 -0
- package/src/components/ContextMenuDropdown/ContextMenuDropdown.types.ts +89 -0
- package/src/components/ContextMenuDropdown/ContextMenuDropdown.variants.ts +88 -0
- package/src/components/ContextMenuDropdown/index.ts +5 -0
- package/src/components/DateCell/DateCell.tsx +181 -0
- package/src/components/DateCell/DateCell.types.ts +53 -0
- package/src/components/DateCell/DateCell.variants.ts +217 -0
- package/src/components/DateCell/index.ts +2 -0
- package/src/components/DatePicker/DatePicker.tsx +923 -0
- package/src/components/DatePicker/DatePicker.types.ts +102 -0
- package/src/components/DatePicker/DatePicker.variants.ts +274 -0
- package/src/components/DatePicker/index.ts +9 -0
- package/src/components/DateTab/DateTab.tsx +91 -0
- package/src/components/DateTab/DateTab.types.ts +9 -0
- package/src/components/DateTab/DateTab.variants.ts +98 -0
- package/src/components/DateTab/index.ts +2 -0
- package/src/components/DgaIcon/DgaIcon.tsx +68 -0
- package/src/components/DgaIcon/DgaIcon.types.ts +57 -0
- package/src/components/DgaIcon/DgaIcon.variants.ts +41 -0
- package/src/components/DgaIcon/DgaIconByName.tsx +76 -0
- package/src/components/DgaIcon/generated/icon-names.ts +4388 -0
- package/src/components/DgaIcon/index.ts +12 -0
- package/src/components/DgaIcon/lib/decodeDataUrl.ts +46 -0
- package/src/components/DigitalStamp/DigitalStamp.tsx +236 -0
- package/src/components/DigitalStamp/DigitalStamp.types.ts +38 -0
- package/src/components/DigitalStamp/DigitalStamp.variants.ts +185 -0
- package/src/components/DigitalStamp/index.ts +2 -0
- package/src/components/Divider/Divider.tsx +83 -0
- package/src/components/Divider/Divider.types.ts +49 -0
- package/src/components/Divider/Divider.variants.ts +55 -0
- package/src/components/Divider/index.ts +8 -0
- package/src/components/DonutChart/DonutChart.tsx +251 -0
- package/src/components/DonutChart/DonutChart.types.ts +97 -0
- package/src/components/DonutChart/DonutChart.variants.ts +203 -0
- package/src/components/DonutChart/index.ts +7 -0
- package/src/components/DonutChartPanel/DonutChartPanel.tsx +778 -0
- package/src/components/DonutChartPanel/DonutChartPanel.types.ts +143 -0
- package/src/components/DonutChartPanel/DonutChartPanel.variants.ts +154 -0
- package/src/components/DonutChartPanel/index.ts +9 -0
- package/src/components/DraggableItem/DraggableItem.tsx +228 -0
- package/src/components/DraggableItem/DraggableItem.types.ts +72 -0
- package/src/components/DraggableItem/DraggableItem.variants.ts +149 -0
- package/src/components/DraggableItem/index.ts +3 -0
- package/src/components/DraggableList/DraggableList.tsx +20 -0
- package/src/components/DraggableList/DraggableList.types.ts +16 -0
- package/src/components/DraggableList/DraggableList.variants.ts +13 -0
- package/src/components/DraggableList/index.ts +3 -0
- package/src/components/Dropdown/Dropdown.tsx +331 -0
- package/src/components/Dropdown/Dropdown.types.ts +108 -0
- package/src/components/Dropdown/Dropdown.variants.ts +73 -0
- package/src/components/Dropdown/index.ts +9 -0
- package/src/components/DropdownListHeader/DropdownListHeader.tsx +79 -0
- package/src/components/DropdownListHeader/DropdownListHeader.types.ts +24 -0
- package/src/components/DropdownListHeader/DropdownListHeader.variants.ts +65 -0
- package/src/components/DropdownListHeader/index.ts +2 -0
- package/src/components/EmptyState/EmptyState.tsx +221 -0
- package/src/components/EmptyState/EmptyState.types.ts +48 -0
- package/src/components/EmptyState/EmptyState.variants.ts +122 -0
- package/src/components/EmptyState/index.ts +3 -0
- package/src/components/Extension/Extension.tsx +240 -0
- package/src/components/Extension/Extension.types.ts +40 -0
- package/src/components/Extension/Extension.variants.ts +27 -0
- package/src/components/Extension/index.ts +6 -0
- package/src/components/Feedback/Feedback.tsx +55 -0
- package/src/components/Feedback/Feedback.types.ts +15 -0
- package/src/components/Feedback/Feedback.variants.ts +9 -0
- package/src/components/Feedback/index.ts +2 -0
- package/src/components/FeedbackOverview/FeedbackOverview.tsx +70 -0
- package/src/components/FeedbackOverview/FeedbackOverview.types.ts +11 -0
- package/src/components/FeedbackOverview/FeedbackOverview.variants.ts +17 -0
- package/src/components/FeedbackOverview/index.ts +2 -0
- package/src/components/FeedbackReaction/FeedbackReaction.tsx +81 -0
- package/src/components/FeedbackReaction/FeedbackReaction.types.ts +14 -0
- package/src/components/FeedbackReaction/FeedbackReaction.variants.ts +39 -0
- package/src/components/FeedbackReaction/index.ts +2 -0
- package/src/components/FileUploadBase/FileUploadBase.tsx +104 -0
- package/src/components/FileUploadBase/FileUploadBase.types.ts +48 -0
- package/src/components/FileUploadBase/FileUploadBase.variants.ts +51 -0
- package/src/components/FileUploadBase/index.ts +2 -0
- package/src/components/FileUploadItemBase/FileUploadItemBase.tsx +197 -0
- package/src/components/FileUploadItemBase/FileUploadItemBase.types.ts +58 -0
- package/src/components/FileUploadItemBase/FileUploadItemBase.variants.ts +67 -0
- package/src/components/FileUploadItemBase/index.ts +6 -0
- package/src/components/FileUploader/FileUploader.tsx +164 -0
- package/src/components/FileUploader/FileUploader.types.ts +46 -0
- package/src/components/FileUploader/FileUploader.variants.ts +9 -0
- package/src/components/FileUploader/index.ts +2 -0
- package/src/components/Filtration/Filtration.tsx +260 -0
- package/src/components/Filtration/Filtration.types.ts +95 -0
- package/src/components/Filtration/Filtration.variants.ts +70 -0
- package/src/components/Filtration/index.ts +6 -0
- package/src/components/FiltrationItem/FiltrationItem.tsx +200 -0
- package/src/components/FiltrationItem/FiltrationItem.types.ts +57 -0
- package/src/components/FiltrationItem/FiltrationItem.variants.ts +81 -0
- package/src/components/FiltrationItem/index.ts +2 -0
- package/src/components/FiltrationList/FiltrationList.tsx +611 -0
- package/src/components/FiltrationList/FiltrationList.types.ts +191 -0
- package/src/components/FiltrationList/FiltrationList.variants.ts +283 -0
- package/src/components/FiltrationList/index.ts +16 -0
- package/src/components/FloatingButton/FloatingButton.tsx +89 -0
- package/src/components/FloatingButton/FloatingButton.types.ts +29 -0
- package/src/components/FloatingButton/FloatingButton.variants.ts +79 -0
- package/src/components/FloatingButton/index.ts +6 -0
- package/src/components/Footer/Footer.tsx +353 -0
- package/src/components/Footer/Footer.types.ts +142 -0
- package/src/components/Footer/Footer.variants.ts +137 -0
- package/src/components/Footer/index.ts +11 -0
- package/src/components/FooterItem/FooterItem.tsx +211 -0
- package/src/components/FooterItem/FooterItem.types.ts +45 -0
- package/src/components/FooterItem/FooterItem.variants.ts +139 -0
- package/src/components/FooterItem/index.ts +2 -0
- package/src/components/FooterLinkList/FooterLinkList.tsx +140 -0
- package/src/components/FooterLinkList/FooterLinkList.types.ts +46 -0
- package/src/components/FooterLinkList/FooterLinkList.variants.ts +64 -0
- package/src/components/FooterLinkList/index.ts +2 -0
- package/src/components/GraphBase/GraphBase.tsx +598 -0
- package/src/components/GraphBase/GraphBase.types.ts +101 -0
- package/src/components/GraphBase/GraphBase.variants.ts +126 -0
- package/src/components/GraphBase/index.ts +7 -0
- package/src/components/HeaderItem/HeaderItem.tsx +206 -0
- package/src/components/HeaderItem/HeaderItem.types.ts +73 -0
- package/src/components/HeaderItem/HeaderItem.variants.ts +139 -0
- package/src/components/HeaderItem/index.ts +2 -0
- package/src/components/HelpIcon/HelpIcon.tsx +173 -0
- package/src/components/HelpIcon/HelpIcon.types.ts +54 -0
- package/src/components/HelpIcon/HelpIcon.variants.ts +79 -0
- package/src/components/HelpIcon/index.ts +2 -0
- package/src/components/HorizontalTabs/HorizontalTabs.tsx +87 -0
- package/src/components/HorizontalTabs/HorizontalTabs.types.ts +41 -0
- package/src/components/HorizontalTabs/HorizontalTabs.variants.ts +54 -0
- package/src/components/HorizontalTabs/index.ts +6 -0
- package/src/components/IllustrationInstance/IllustrationInstance.tsx +46 -0
- package/src/components/IllustrationInstance/IllustrationInstance.types.ts +25 -0
- package/src/components/IllustrationInstance/IllustrationInstance.variants.ts +19 -0
- package/src/components/IllustrationInstance/index.ts +3 -0
- package/src/components/ImagePreview/ImagePreview.tsx +170 -0
- package/src/components/ImagePreview/ImagePreview.types.ts +54 -0
- package/src/components/ImagePreview/ImagePreview.variants.ts +39 -0
- package/src/components/ImagePreview/index.ts +2 -0
- package/src/components/Input/Input.tsx +113 -0
- package/src/components/Input/Input.types.ts +22 -0
- package/src/components/Input/index.ts +2 -0
- package/src/components/InputPrefixSuffix/InputPrefixSuffix.tsx +91 -0
- package/src/components/InputPrefixSuffix/InputPrefixSuffix.types.ts +81 -0
- package/src/components/InputPrefixSuffix/InputPrefixSuffix.variants.ts +128 -0
- package/src/components/InputPrefixSuffix/index.ts +8 -0
- package/src/components/InputsActions/InputsActions.tsx +53 -0
- package/src/components/InputsActions/InputsActions.types.ts +13 -0
- package/src/components/InputsActions/InputsActions.variants.ts +18 -0
- package/src/components/InputsActions/index.ts +2 -0
- package/src/components/InstanceColumn/InstanceColumn.tsx +43 -0
- package/src/components/InstanceColumn/InstanceColumn.types.ts +18 -0
- package/src/components/InstanceColumn/InstanceColumn.variants.ts +11 -0
- package/src/components/InstanceColumn/index.ts +2 -0
- package/src/components/InstanceItem/InstanceItem.tsx +33 -0
- package/src/components/InstanceItem/InstanceItem.types.ts +11 -0
- package/src/components/InstanceItem/InstanceItem.variants.ts +31 -0
- package/src/components/InstanceItem/index.ts +2 -0
- package/src/components/InstanceRows/InstanceRows.tsx +41 -0
- package/src/components/InstanceRows/InstanceRows.types.ts +17 -0
- package/src/components/InstanceRows/InstanceRows.variants.ts +10 -0
- package/src/components/InstanceRows/index.ts +2 -0
- package/src/components/InstanceSlot/InstanceSlot.tsx +25 -0
- package/src/components/InstanceSlot/InstanceSlot.types.ts +10 -0
- package/src/components/InstanceSlot/InstanceSlot.variants.ts +2 -0
- package/src/components/InstanceSlot/index.ts +2 -0
- package/src/components/LineChart/LineChart.tsx +592 -0
- package/src/components/LineChart/LineChart.types.ts +78 -0
- package/src/components/LineChart/LineChart.variants.ts +324 -0
- package/src/components/LineChart/index.ts +7 -0
- package/src/components/Link/Link.tsx +81 -0
- package/src/components/Link/Link.types.ts +23 -0
- package/src/components/Link/Link.variants.ts +69 -0
- package/src/components/Link/index.ts +2 -0
- package/src/components/List/List.tsx +260 -0
- package/src/components/List/List.types.ts +70 -0
- package/src/components/List/List.variants.ts +94 -0
- package/src/components/List/index.ts +5 -0
- package/src/components/ListGroup/ListGroup.tsx +37 -0
- package/src/components/ListGroup/ListGroup.types.ts +14 -0
- package/src/components/ListGroup/ListGroup.variants.ts +17 -0
- package/src/components/ListGroup/index.ts +3 -0
- package/src/components/LoadingIndicator/LoadingIndicator.tsx +208 -0
- package/src/components/LoadingIndicator/LoadingIndicator.types.ts +51 -0
- package/src/components/LoadingIndicator/LoadingIndicator.variants.ts +108 -0
- package/src/components/LoadingIndicator/index.ts +7 -0
- package/src/components/MediaGallery/MediaGallery.tsx +600 -0
- package/src/components/MediaGallery/MediaGallery.types.ts +124 -0
- package/src/components/MediaGallery/MediaGallery.variants.ts +116 -0
- package/src/components/MediaGallery/index.ts +2 -0
- package/src/components/MediaGrids/MediaGrids.tsx +48 -0
- package/src/components/MediaGrids/MediaGrids.types.ts +14 -0
- package/src/components/MediaGrids/MediaGrids.variants.ts +16 -0
- package/src/components/MediaGrids/index.ts +2 -0
- package/src/components/MediaViewer/MediaViewer.tsx +345 -0
- package/src/components/MediaViewer/MediaViewer.types.ts +59 -0
- package/src/components/MediaViewer/MediaViewer.variants.ts +168 -0
- package/src/components/MediaViewer/index.ts +2 -0
- package/src/components/Menu/Menu.tsx +109 -0
- package/src/components/Menu/Menu.types.ts +37 -0
- package/src/components/Menu/Menu.variants.ts +29 -0
- package/src/components/Menu/index.ts +2 -0
- package/src/components/MenuButtonItem/MenuButtonItem.tsx +280 -0
- package/src/components/MenuButtonItem/MenuButtonItem.types.ts +91 -0
- package/src/components/MenuButtonItem/MenuButtonItem.variants.ts +223 -0
- package/src/components/MenuButtonItem/index.ts +8 -0
- package/src/components/MenuItem/MenuItem.tsx +211 -0
- package/src/components/MenuItem/MenuItem.types.ts +40 -0
- package/src/components/MenuItem/MenuItem.variants.ts +48 -0
- package/src/components/MenuItem/index.ts +2 -0
- package/src/components/MenuItemGroup/MenuItemGroup.tsx +91 -0
- package/src/components/MenuItemGroup/MenuItemGroup.types.ts +82 -0
- package/src/components/MenuItemGroup/MenuItemGroup.variants.ts +33 -0
- package/src/components/MenuItemGroup/index.ts +2 -0
- package/src/components/MenuList/MenuList.tsx +44 -0
- package/src/components/MenuList/MenuList.types.ts +28 -0
- package/src/components/MenuList/MenuList.variants.ts +2 -0
- package/src/components/MenuList/index.ts +2 -0
- package/src/components/Metric/Metric.tsx +584 -0
- package/src/components/Metric/Metric.types.ts +77 -0
- package/src/components/Metric/Metric.variants.ts +175 -0
- package/src/components/Metric/index.ts +8 -0
- package/src/components/Modal/Modal.tsx +139 -0
- package/src/components/Modal/Modal.types.ts +55 -0
- package/src/components/Modal/index.ts +2 -0
- package/src/components/ModalActions/ModalActions.tsx +176 -0
- package/src/components/ModalActions/ModalActions.types.ts +31 -0
- package/src/components/ModalActions/index.ts +2 -0
- package/src/components/ModalHeader/ModalHeader.tsx +207 -0
- package/src/components/ModalHeader/ModalHeader.types.ts +24 -0
- package/src/components/ModalHeader/index.ts +2 -0
- package/src/components/NavBar/NavBar.tsx +326 -0
- package/src/components/NavBar/NavBar.types.ts +78 -0
- package/src/components/NavBar/NavBar.variants.ts +139 -0
- package/src/components/NavBar/index.ts +2 -0
- package/src/components/NavHeader/NavHeader.tsx +292 -0
- package/src/components/NavHeader/NavHeader.types.ts +145 -0
- package/src/components/NavHeader/NavHeader.variants.ts +178 -0
- package/src/components/NavHeader/index.ts +2 -0
- package/src/components/NavHeaderActions/NavHeaderActions.tsx +161 -0
- package/src/components/NavHeaderActions/NavHeaderActions.types.ts +61 -0
- package/src/components/NavHeaderActions/NavHeaderActions.variants.ts +58 -0
- package/src/components/NavHeaderActions/index.ts +2 -0
- package/src/components/NavHeaderDropdownItem/NavHeaderDropdownItem.tsx +243 -0
- package/src/components/NavHeaderDropdownItem/NavHeaderDropdownItem.types.ts +76 -0
- package/src/components/NavHeaderDropdownItem/NavHeaderDropdownItem.variants.ts +133 -0
- package/src/components/NavHeaderDropdownItem/index.ts +5 -0
- package/src/components/NavHeaderDropdownItemList/NavHeaderDropdownItemList.tsx +64 -0
- package/src/components/NavHeaderDropdownItemList/NavHeaderDropdownItemList.types.ts +55 -0
- package/src/components/NavHeaderDropdownItemList/NavHeaderDropdownItemList.variants.ts +47 -0
- package/src/components/NavHeaderDropdownItemList/index.ts +5 -0
- package/src/components/NavHeaderMenuButton/NavHeaderMenuButton.tsx +52 -0
- package/src/components/NavHeaderMenuButton/NavHeaderMenuButton.types.ts +17 -0
- package/src/components/NavHeaderMenuButton/NavHeaderMenuButton.variants.ts +73 -0
- package/src/components/NavHeaderMenuButton/index.ts +2 -0
- package/src/components/NavHeaderMenuCard/NavHeaderMenuCard.tsx +126 -0
- package/src/components/NavHeaderMenuCard/NavHeaderMenuCard.types.ts +74 -0
- package/src/components/NavHeaderMenuCard/NavHeaderMenuCard.variants.ts +169 -0
- package/src/components/NavHeaderMenuCard/index.ts +6 -0
- package/src/components/NavHeaderMenuItem/NavHeaderMenuItem.tsx +164 -0
- package/src/components/NavHeaderMenuItem/NavHeaderMenuItem.types.ts +64 -0
- package/src/components/NavHeaderMenuItem/NavHeaderMenuItem.variants.ts +175 -0
- package/src/components/NavHeaderMenuItem/index.ts +2 -0
- package/src/components/NavItem/NavItem.tsx +210 -0
- package/src/components/NavItem/NavItem.types.ts +71 -0
- package/src/components/NavItem/NavItem.variants.ts +61 -0
- package/src/components/NavItem/index.ts +2 -0
- package/src/components/NavLabel/NavLabel.tsx +84 -0
- package/src/components/NavLabel/NavLabel.types.ts +55 -0
- package/src/components/NavLabel/NavLabel.variants.ts +68 -0
- package/src/components/NavLabel/index.ts +2 -0
- package/src/components/NavLogoPlaceholder/NavLogoPlaceholder.tsx +101 -0
- package/src/components/NavLogoPlaceholder/NavLogoPlaceholder.types.ts +27 -0
- package/src/components/NavLogoPlaceholder/NavLogoPlaceholder.variants.ts +42 -0
- package/src/components/NavLogoPlaceholder/index.ts +6 -0
- package/src/components/NotificationBanner/NotificationBanner.tsx +256 -0
- package/src/components/NotificationBanner/NotificationBanner.types.ts +77 -0
- package/src/components/NotificationBanner/NotificationBanner.variants.ts +109 -0
- package/src/components/NotificationBanner/index.ts +7 -0
- package/src/components/NotificationPopup/NotificationPopup.tsx +147 -0
- package/src/components/NotificationPopup/NotificationPopup.types.ts +51 -0
- package/src/components/NotificationPopup/NotificationPopup.variants.ts +145 -0
- package/src/components/NotificationPopup/index.ts +5 -0
- package/src/components/Notifications/Notifications.tsx +209 -0
- package/src/components/Notifications/Notifications.types.ts +68 -0
- package/src/components/Notifications/Notifications.variants.ts +89 -0
- package/src/components/Notifications/index.ts +2 -0
- package/src/components/Number/Number.tsx +497 -0
- package/src/components/Number/Number.types.ts +58 -0
- package/src/components/Number/Number.variants.ts +94 -0
- package/src/components/Number/index.ts +2 -0
- package/src/components/NumberInput/NumberInput.tsx +265 -0
- package/src/components/NumberInput/NumberInput.types.ts +110 -0
- package/src/components/NumberInput/NumberInput.variants.ts +205 -0
- package/src/components/NumberInput/index.ts +6 -0
- package/src/components/Pagination/Pagination.tsx +393 -0
- package/src/components/Pagination/Pagination.types.ts +26 -0
- package/src/components/Pagination/Pagination.variants.ts +88 -0
- package/src/components/Pagination/index.ts +3 -0
- package/src/components/PaginationButtonGroup/PaginationButtonGroup.tsx +132 -0
- package/src/components/PaginationButtonGroup/PaginationButtonGroup.types.ts +20 -0
- package/src/components/PaginationButtonGroup/PaginationButtonGroup.variants.ts +45 -0
- package/src/components/PaginationButtonGroup/index.ts +8 -0
- package/src/components/PaginationCells/PaginationCells.tsx +105 -0
- package/src/components/PaginationCells/PaginationCells.types.ts +31 -0
- package/src/components/PaginationCells/PaginationCells.variants.ts +96 -0
- package/src/components/PaginationCells/index.ts +9 -0
- package/src/components/PdfViewer/PdfViewer.tsx +265 -0
- package/src/components/PdfViewer/PdfViewer.types.ts +79 -0
- package/src/components/PdfViewer/PdfViewer.variants.ts +105 -0
- package/src/components/PdfViewer/index.ts +3 -0
- package/src/components/PieChartPanel/PieChartPanel.tsx +889 -0
- package/src/components/PieChartPanel/PieChartPanel.types.ts +130 -0
- package/src/components/PieChartPanel/PieChartPanel.variants.ts +156 -0
- package/src/components/PieChartPanel/index.ts +8 -0
- package/src/components/Popover/Popover.tsx +398 -0
- package/src/components/Popover/Popover.types.ts +155 -0
- package/src/components/Popover/Popover.variants.ts +147 -0
- package/src/components/Popover/index.ts +7 -0
- package/src/components/ProgressBar/ProgressBar.tsx +241 -0
- package/src/components/ProgressBar/ProgressBar.types.ts +22 -0
- package/src/components/ProgressBar/ProgressBar.variants.ts +54 -0
- package/src/components/ProgressBar/index.ts +2 -0
- package/src/components/ProgressCircle/ProgressCircle.tsx +369 -0
- package/src/components/ProgressCircle/ProgressCircle.types.ts +26 -0
- package/src/components/ProgressCircle/ProgressCircle.variants.ts +88 -0
- package/src/components/ProgressCircle/index.ts +7 -0
- package/src/components/Quote/Quote.tsx +210 -0
- package/src/components/Quote/Quote.types.ts +73 -0
- package/src/components/Quote/Quote.variants.ts +106 -0
- package/src/components/Quote/index.ts +2 -0
- package/src/components/RadialStepper/RadialStepper.tsx +166 -0
- package/src/components/RadialStepper/RadialStepper.types.ts +77 -0
- package/src/components/RadialStepper/RadialStepper.variants.ts +122 -0
- package/src/components/RadialStepper/index.ts +7 -0
- package/src/components/RadioButton/RadioButton.tsx +237 -0
- package/src/components/RadioButton/RadioButton.types.ts +18 -0
- package/src/components/RadioButton/index.ts +2 -0
- package/src/components/RadioLabel/RadioLabel.tsx +157 -0
- package/src/components/RadioLabel/RadioLabel.types.ts +53 -0
- package/src/components/RadioLabel/RadioLabel.variants.ts +36 -0
- package/src/components/RadioLabel/index.ts +2 -0
- package/src/components/RangeSlider/RangeSlider.tsx +389 -0
- package/src/components/RangeSlider/RangeSlider.types.ts +38 -0
- package/src/components/RangeSlider/RangeSlider.variants.ts +27 -0
- package/src/components/RangeSlider/index.ts +2 -0
- package/src/components/Rating/Rating.tsx +246 -0
- package/src/components/Rating/Rating.types.ts +37 -0
- package/src/components/Rating/Rating.variants.ts +52 -0
- package/src/components/Rating/index.ts +8 -0
- package/src/components/RatingOverview/RatingOverview.tsx +170 -0
- package/src/components/RatingOverview/RatingOverview.types.ts +37 -0
- package/src/components/RatingOverview/RatingOverview.variants.ts +50 -0
- package/src/components/RatingOverview/index.ts +2 -0
- package/src/components/RatingStar/RatingStar.tsx +76 -0
- package/src/components/RatingStar/RatingStar.types.ts +18 -0
- package/src/components/RatingStar/RatingStar.variants.ts +34 -0
- package/src/components/RatingStar/index.ts +7 -0
- package/src/components/RichTextEditor/RichTextEditor.tsx +1341 -0
- package/src/components/RichTextEditor/RichTextEditor.types.ts +127 -0
- package/src/components/RichTextEditor/RichTextEditor.variants.ts +231 -0
- package/src/components/RichTextEditor/index.ts +6 -0
- package/src/components/ScatterChart/ScatterChart.tsx +164 -0
- package/src/components/ScatterChart/ScatterChart.types.ts +42 -0
- package/src/components/ScatterChart/ScatterChart.variants.ts +162 -0
- package/src/components/ScatterChart/index.ts +2 -0
- package/src/components/SdaiaLogoAnimation/BGSVG.tsx +216 -0
- package/src/components/SdaiaLogoAnimation/SdaiaLogoAnimation.tsx +120 -0
- package/src/components/SdaiaLogoAnimation/SdaiaLogoAnimation.types.ts +13 -0
- package/src/components/SdaiaLogoAnimation/SdaiaLogoAnimation.variants.ts +22 -0
- package/src/components/SdaiaLogoAnimation/index.ts +2 -0
- package/src/components/SdaiaTouch2dAnimation/SdaiaTouch2dAnimation.tsx +55 -0
- package/src/components/SdaiaTouch2dAnimation/SdaiaTouch2dAnimation.types.ts +12 -0
- package/src/components/SdaiaTouch2dAnimation/SdaiaTouch2dAnimation.variants.ts +28 -0
- package/src/components/SdaiaTouch2dAnimation/Star.tsx +82 -0
- package/src/components/SdaiaTouch2dAnimation/StarShape.tsx +78 -0
- package/src/components/SdaiaTouch2dAnimation/index.ts +6 -0
- package/src/components/SecondNavHeader/SecondNavHeader.tsx +80 -0
- package/src/components/SecondNavHeader/SecondNavHeader.types.ts +41 -0
- package/src/components/SecondNavHeader/SecondNavHeader.variants.ts +42 -0
- package/src/components/SecondNavHeader/index.ts +2 -0
- package/src/components/Select/Select.tsx +351 -0
- package/src/components/Select/Select.types.ts +102 -0
- package/src/components/Select/Select.variants.ts +111 -0
- package/src/components/Select/index.ts +2 -0
- package/src/components/SelectMenuItem/SelectMenuItem.tsx +132 -0
- package/src/components/SelectMenuItem/SelectMenuItem.types.ts +47 -0
- package/src/components/SelectMenuItem/SelectMenuItem.variants.ts +56 -0
- package/src/components/SelectMenuItem/index.ts +2 -0
- package/src/components/SeriesLabel/SeriesLabel.tsx +76 -0
- package/src/components/SeriesLabel/SeriesLabel.types.ts +27 -0
- package/src/components/SeriesLabel/SeriesLabel.variants.ts +84 -0
- package/src/components/SeriesLabel/index.ts +2 -0
- package/src/components/Signature/Signature.tsx +905 -0
- package/src/components/Signature/Signature.types.ts +68 -0
- package/src/components/Signature/Signature.variants.ts +115 -0
- package/src/components/Signature/index.ts +2 -0
- package/src/components/Skeleton/Skeleton.tsx +21 -0
- package/src/components/Skeleton/Skeleton.types.ts +15 -0
- package/src/components/Skeleton/Skeleton.variants.ts +14 -0
- package/src/components/Skeleton/index.ts +2 -0
- package/src/components/SkeletonAvatar/SkeletonAvatar.tsx +21 -0
- package/src/components/SkeletonAvatar/SkeletonAvatar.types.ts +15 -0
- package/src/components/SkeletonAvatar/SkeletonAvatar.variants.ts +14 -0
- package/src/components/SkeletonAvatar/index.ts +2 -0
- package/src/components/SlideoutMenu/SlideoutMenu.tsx +225 -0
- package/src/components/SlideoutMenu/SlideoutMenu.types.ts +39 -0
- package/src/components/SlideoutMenu/SlideoutMenuDivider.tsx +10 -0
- package/src/components/SlideoutMenu/SlideoutMenuSection.tsx +39 -0
- package/src/components/SlideoutMenu/index.ts +5 -0
- package/src/components/SlideoutMenuFooter/SlideoutMenuFooter.tsx +96 -0
- package/src/components/SlideoutMenuFooter/SlideoutMenuFooter.types.ts +28 -0
- package/src/components/SlideoutMenuFooter/SlideoutMenuFooter.variants.ts +49 -0
- package/src/components/SlideoutMenuFooter/index.ts +6 -0
- package/src/components/SlideoutMenuHeader/SlideoutMenuHeader.tsx +83 -0
- package/src/components/SlideoutMenuHeader/SlideoutMenuHeader.types.ts +19 -0
- package/src/components/SlideoutMenuHeader/SlideoutMenuHeader.variants.ts +78 -0
- package/src/components/SlideoutMenuHeader/index.ts +2 -0
- package/src/components/Slider/Slider.tsx +259 -0
- package/src/components/Slider/Slider.types.ts +22 -0
- package/src/components/Slider/Slider.variants.ts +23 -0
- package/src/components/Slider/index.ts +2 -0
- package/src/components/Sparkline/Sparkline.tsx +130 -0
- package/src/components/Sparkline/Sparkline.types.ts +36 -0
- package/src/components/Sparkline/Sparkline.variants.ts +118 -0
- package/src/components/Sparkline/index.ts +2 -0
- package/src/components/StatusDot/StatusDot.tsx +82 -0
- package/src/components/StatusDot/StatusDot.types.ts +35 -0
- package/src/components/StatusDot/StatusDot.variants.ts +66 -0
- package/src/components/StatusDot/index.ts +8 -0
- package/src/components/StructuredList/StructuredList.tsx +79 -0
- package/src/components/StructuredList/StructuredList.types.ts +27 -0
- package/src/components/StructuredList/index.ts +2 -0
- package/src/components/StructuredListGroup/StructuredListGroup.tsx +76 -0
- package/src/components/StructuredListGroup/StructuredListGroup.types.ts +27 -0
- package/src/components/StructuredListGroup/StructuredListGroup.variants.ts +14 -0
- package/src/components/StructuredListGroup/index.ts +5 -0
- package/src/components/StructuredListHeader/StructuredListHeader.tsx +98 -0
- package/src/components/StructuredListHeader/StructuredListHeader.types.ts +26 -0
- package/src/components/StructuredListHeader/StructuredListHeader.variants.ts +24 -0
- package/src/components/StructuredListHeader/index.ts +5 -0
- package/src/components/StructuredListRow/StructuredListRow.tsx +144 -0
- package/src/components/StructuredListRow/StructuredListRow.types.ts +37 -0
- package/src/components/StructuredListRow/StructuredListRow.variants.ts +53 -0
- package/src/components/StructuredListRow/index.ts +6 -0
- package/src/components/SubHeaderItem/SubHeaderItem.tsx +37 -0
- package/src/components/SubHeaderItem/SubHeaderItem.types.ts +20 -0
- package/src/components/SubHeaderItem/SubHeaderItem.variants.ts +23 -0
- package/src/components/SubHeaderItem/index.ts +2 -0
- package/src/components/Switch/Switch.tsx +138 -0
- package/src/components/Switch/Switch.types.ts +18 -0
- package/src/components/Switch/Switch.variants.ts +49 -0
- package/src/components/Switch/index.ts +2 -0
- package/src/components/SwitchLabel/SwitchLabel.tsx +114 -0
- package/src/components/SwitchLabel/SwitchLabel.types.ts +27 -0
- package/src/components/SwitchLabel/SwitchLabel.variants.ts +28 -0
- package/src/components/SwitchLabel/index.ts +2 -0
- package/src/components/Tab/Tab.tsx +92 -0
- package/src/components/Tab/Tab.types.ts +34 -0
- package/src/components/Tab/Tab.variants.ts +79 -0
- package/src/components/Tab/index.ts +2 -0
- package/src/components/Table/Table.tsx +353 -0
- package/src/components/Table/Table.types.ts +80 -0
- package/src/components/Table/Table.variants.ts +110 -0
- package/src/components/Table/index.ts +10 -0
- package/src/components/TableOfContent/TableOfContent.tsx +33 -0
- package/src/components/TableOfContent/TableOfContent.types.ts +15 -0
- package/src/components/TableOfContent/TableOfContent.variants.ts +27 -0
- package/src/components/TableOfContent/index.ts +2 -0
- package/src/components/TableOfContentItem/TableOfContentItem.tsx +85 -0
- package/src/components/TableOfContentItem/TableOfContentItem.types.ts +23 -0
- package/src/components/TableOfContentItem/TableOfContentItem.variants.ts +109 -0
- package/src/components/TableOfContentItem/index.ts +2 -0
- package/src/components/TableOfContentList/TableOfContentList.tsx +60 -0
- package/src/components/TableOfContentList/TableOfContentList.types.ts +39 -0
- package/src/components/TableOfContentList/TableOfContentList.variants.ts +6 -0
- package/src/components/TableOfContentList/index.ts +2 -0
- package/src/components/Tabs/Tabs.tsx +80 -0
- package/src/components/Tabs/Tabs.types.ts +36 -0
- package/src/components/Tabs/Tabs.variants.ts +23 -0
- package/src/components/Tabs/index.ts +2 -0
- package/src/components/Tag/Tag.tsx +114 -0
- package/src/components/Tag/Tag.types.ts +32 -0
- package/src/components/Tag/Tag.variants.ts +57 -0
- package/src/components/Tag/index.ts +2 -0
- package/src/components/TagCount/TagCount.tsx +45 -0
- package/src/components/TagCount/TagCount.types.ts +21 -0
- package/src/components/TagCount/TagCount.variants.ts +26 -0
- package/src/components/TagCount/index.ts +7 -0
- package/src/components/TextArea/TextArea.tsx +130 -0
- package/src/components/TextArea/TextArea.types.ts +20 -0
- package/src/components/TextArea/index.ts +2 -0
- package/src/components/TextInput/TextInput.tsx +568 -0
- package/src/components/TextInput/TextInput.types.ts +87 -0
- package/src/components/TextInput/TextInput.variants.ts +89 -0
- package/src/components/TextInput/TextInputTag.tsx +43 -0
- package/src/components/TextInput/TextInputTag.types.ts +14 -0
- package/src/components/TextInput/index.ts +4 -0
- package/src/components/Tooltip/Tooltip.tsx +229 -0
- package/src/components/Tooltip/Tooltip.types.ts +48 -0
- package/src/components/Tooltip/Tooltip.variants.ts +141 -0
- package/src/components/Tooltip/index.ts +10 -0
- package/src/components/TreeView/TreeView.tsx +130 -0
- package/src/components/TreeView/TreeView.types.ts +42 -0
- package/src/components/TreeView/TreeView.variants.ts +6 -0
- package/src/components/TreeView/index.ts +3 -0
- package/src/components/TreeViewItem/TreeViewItem.tsx +108 -0
- package/src/components/TreeViewItem/TreeViewItem.types.ts +34 -0
- package/src/components/TreeViewItem/TreeViewItem.variants.ts +40 -0
- package/src/components/TreeViewItem/index.ts +3 -0
- package/src/components/VerticalTabs/VerticalTabs.tsx +84 -0
- package/src/components/VerticalTabs/VerticalTabs.types.ts +37 -0
- package/src/components/VerticalTabs/VerticalTabs.variants.ts +43 -0
- package/src/components/VerticalTabs/index.ts +6 -0
- package/src/components/VideoPlayer/VideoPlayer.tsx +470 -0
- package/src/components/VideoPlayer/VideoPlayer.types.ts +59 -0
- package/src/components/VideoPlayer/VideoPlayer.variants.ts +134 -0
- package/src/components/VideoPlayer/index.ts +2 -0
- package/src/components/XAxis/XAxis.tsx +67 -0
- package/src/components/XAxis/XAxis.types.ts +30 -0
- package/src/components/XAxis/XAxis.variants.ts +77 -0
- package/src/components/XAxis/index.ts +2 -0
- package/src/components/YAxis/YAxis.tsx +78 -0
- package/src/components/YAxis/YAxis.types.ts +41 -0
- package/src/components/YAxis/YAxis.variants.ts +94 -0
- package/src/components/YAxis/index.ts +2 -0
- package/src/dga-icons.ts +18 -0
- package/src/hooks/usePresence.ts +73 -0
- package/src/icons/AIIcon.tsx +34 -0
- package/src/icons/AaIcon.tsx +34 -0
- package/src/icons/AlertCircle02Icon.tsx +28 -0
- package/src/icons/AlertCircleIcon.tsx +29 -0
- package/src/icons/AlertCircleSVG.tsx +19 -0
- package/src/icons/AlertCircleWarningIcon.tsx +37 -0
- package/src/icons/AlertTriangleIcon.tsx +27 -0
- package/src/icons/AlignCenterIcon.tsx +31 -0
- package/src/icons/AlignLeftIcon.tsx +31 -0
- package/src/icons/AlignRightIcon.tsx +31 -0
- package/src/icons/ArrowDownIcon.tsx +27 -0
- package/src/icons/ArrowDownLeft01Icon.tsx +32 -0
- package/src/icons/ArrowDownSVG.tsx +16 -0
- package/src/icons/ArrowIcon.tsx +38 -0
- package/src/icons/ArrowLeft01Icon.tsx +23 -0
- package/src/icons/ArrowLeft02SVG.tsx +19 -0
- package/src/icons/ArrowLeftIcon.tsx +28 -0
- package/src/icons/ArrowRight01Icon.tsx +23 -0
- package/src/icons/ArrowRight01SVG.tsx +16 -0
- package/src/icons/ArrowRightIcon.tsx +28 -0
- package/src/icons/ArrowUpIcon.tsx +27 -0
- package/src/icons/ArrowUpRight01Icon.tsx +31 -0
- package/src/icons/ArrowUpSVG.tsx +16 -0
- package/src/icons/AtIcon.tsx +33 -0
- package/src/icons/BeakBottom.tsx +13 -0
- package/src/icons/BeakDown.tsx +29 -0
- package/src/icons/BeakLeft.tsx +13 -0
- package/src/icons/BeakRight.tsx +11 -0
- package/src/icons/BeakTop.tsx +13 -0
- package/src/icons/BeakUp.tsx +23 -0
- package/src/icons/BellCircleIcon.tsx +33 -0
- package/src/icons/BellIcon.tsx +27 -0
- package/src/icons/BoldIcon.tsx +33 -0
- package/src/icons/CalendarIcon.tsx +35 -0
- package/src/icons/ChartsIcon.tsx +25 -0
- package/src/icons/CheckCircleIcon.tsx +29 -0
- package/src/icons/ChevronDownIcon.tsx +30 -0
- package/src/icons/ChevronDownSmIcon.tsx +34 -0
- package/src/icons/ChevronLeftIcon.tsx +20 -0
- package/src/icons/ChevronRightIcon.tsx +36 -0
- package/src/icons/ClearIcon.tsx +34 -0
- package/src/icons/ClockIcon.tsx +34 -0
- package/src/icons/CloseIcon.tsx +29 -0
- package/src/icons/CloudUploadIcon.tsx +21 -0
- package/src/icons/CodeSnippetChevronDownIcon.tsx +25 -0
- package/src/icons/CodeSnippetCopyIcon.tsx +24 -0
- package/src/icons/CodeSnippetStarIcon.tsx +25 -0
- package/src/icons/ColorSquareIcon.tsx +42 -0
- package/src/icons/ComponentsIcon.tsx +25 -0
- package/src/icons/DGALogoSVG.tsx +133 -0
- package/src/icons/DeleteIcon.tsx +24 -0
- package/src/icons/DownloadIcon.tsx +29 -0
- package/src/icons/DragHandleVerticalIcon.tsx +23 -0
- package/src/icons/FeedbackEmojiDislikeIcon.tsx +20 -0
- package/src/icons/FeedbackEmojiLikeIcon.tsx +20 -0
- package/src/icons/FeedbackEmojiNeutralIcon.tsx +20 -0
- package/src/icons/FeedbackThumbDislikeFilledIcon.tsx +26 -0
- package/src/icons/FeedbackThumbDislikeIcon.tsx +20 -0
- package/src/icons/FeedbackThumbLikeFilledIcon.tsx +20 -0
- package/src/icons/FeedbackThumbLikeIcon.tsx +20 -0
- package/src/icons/FileUploadItemCloseIcon.tsx +30 -0
- package/src/icons/FileUploadItemEmptyFileIcon.tsx +27 -0
- package/src/icons/FileUploadItemPdfIcon.tsx +52 -0
- package/src/icons/FilterFunnelIcon.tsx +34 -0
- package/src/icons/FilterIcon.tsx +31 -0
- package/src/icons/FitIcon.tsx +22 -0
- package/src/icons/FolderFilledIcon.tsx +25 -0
- package/src/icons/FolderIcon.tsx +28 -0
- package/src/icons/FoundationsIcon.tsx +25 -0
- package/src/icons/FullscreenExitIcon.tsx +71 -0
- package/src/icons/FullscreenIcon.tsx +70 -0
- package/src/icons/GoBackward10Icon.tsx +27 -0
- package/src/icons/GoForward10Icon.tsx +27 -0
- package/src/icons/GridSquaresIcon.tsx +40 -0
- package/src/icons/HamburgerIcon.tsx +28 -0
- package/src/icons/HelpCircleIcon.tsx +28 -0
- package/src/icons/HomeIcon.tsx +22 -0
- package/src/icons/HomeSVG.tsx +32 -0
- package/src/icons/IconFactory.ts +157 -0
- package/src/icons/Image01SVG.tsx +18 -0
- package/src/icons/ImageIcon.tsx +31 -0
- package/src/icons/InfoCircleIcon.tsx +31 -0
- package/src/icons/InfoCircleSVG.tsx +20 -0
- package/src/icons/InfoIcon.tsx +27 -0
- package/src/icons/ItalicIcon.tsx +31 -0
- package/src/icons/LearnMoreArrowIcon.tsx +22 -0
- package/src/icons/LinkCircleSVG.tsx +58 -0
- package/src/icons/LinkIcon.tsx +33 -0
- package/src/icons/ListLinesIcon.tsx +40 -0
- package/src/icons/LockCircleSVG.tsx +60 -0
- package/src/icons/LockIcon.tsx +36 -0
- package/src/icons/Logout02Icon.tsx +19 -0
- package/src/icons/MicrophoneIcon.tsx +20 -0
- package/src/icons/MinusIcon.tsx +40 -0
- package/src/icons/MoreHorizontalIcon.tsx +24 -0
- package/src/icons/MoreVerticalIcon.tsx +40 -0
- package/src/icons/NextIcon.tsx +44 -0
- package/src/icons/PDFSvg.tsx +39 -0
- package/src/icons/PatternsIcon.tsx +21 -0
- package/src/icons/PauseIcon.tsx +30 -0
- package/src/icons/PencilIcon.tsx +36 -0
- package/src/icons/PlayButtonCardIcon.tsx +41 -0
- package/src/icons/PlayCenterIcon.tsx +45 -0
- package/src/icons/PlayIcon.tsx +27 -0
- package/src/icons/PlayIconSolid.tsx +33 -0
- package/src/icons/PlayIconStroke.tsx +22 -0
- package/src/icons/PlayIconTwotone.tsx +36 -0
- package/src/icons/PlayVideoIcon.tsx +31 -0
- package/src/icons/PlusCircleIcon.tsx +41 -0
- package/src/icons/PlusIcon.tsx +43 -0
- package/src/icons/PreviousIcon.tsx +44 -0
- package/src/icons/PrintIcon.tsx +25 -0
- package/src/icons/QuestionMarkGrayBgIcon.tsx +52 -0
- package/src/icons/QuestionMarkIcon.tsx +47 -0
- package/src/icons/RedoIcon.tsx +41 -0
- package/src/icons/SaudiFlagSVG.tsx +31 -0
- package/src/icons/SdaiaNavLogo.tsx +345 -0
- package/src/icons/SearchIcon.tsx +34 -0
- package/src/icons/SettingsIcon.tsx +25 -0
- package/src/icons/ShareIcon.tsx +26 -0
- package/src/icons/SidebarCollapseIcon.tsx +25 -0
- package/src/icons/SmileIcon.tsx +34 -0
- package/src/icons/SortIcon.tsx +20 -0
- package/src/icons/StarIcon.tsx +38 -0
- package/src/icons/StatusBadgeIcon.tsx +19 -0
- package/src/icons/TextTIcon.tsx +33 -0
- package/src/icons/Tick02Icon.tsx +32 -0
- package/src/icons/TickIcon.tsx +33 -0
- package/src/icons/TrashIcon.tsx +44 -0
- package/src/icons/UnderlineIcon.tsx +31 -0
- package/src/icons/UndoIcon.tsx +31 -0
- package/src/icons/UploadArrowIcon.tsx +40 -0
- package/src/icons/UserIcon.tsx +21 -0
- package/src/icons/VolumeHighIcon.tsx +27 -0
- package/src/icons/VolumeMuteIcon.tsx +53 -0
- package/src/icons/XCircleIcon.tsx +32 -0
- package/src/icons/XIcon.tsx +27 -0
- package/src/icons/XIconSVG.tsx +16 -0
- package/src/icons/XSmallIcon.tsx +29 -0
- package/src/icons/XSvg.tsx +18 -0
- package/src/icons/ZoomInIcon.tsx +25 -0
- package/src/icons/index.ts +5 -0
- package/src/index.ts +699 -0
- package/src/lib/cn.ts +42 -0
- package/src/styles/motion.css +120 -0
- package/src/styles.css +242 -0
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
const DGALogoSVG = (props: React.SVGProps<SVGSVGElement>) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width={21}
|
|
6
|
+
height={31}
|
|
7
|
+
fill="none"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path
|
|
11
|
+
fill="url(#a)"
|
|
12
|
+
d="M11.356 15.019a.616.616 0 0 0-.254.495v5.02c0 .34.268.608.608.608.339 0 .608-.269.608-.608v-4.71l5.331-3.733c.184.1.382.142.608.142.721 0 1.315-.58 1.315-1.315 0-.721-.58-1.315-1.315-1.315-.721 0-1.315.58-1.315 1.315 0 .056 0 .113.014.155l-5.6 3.946Z"
|
|
13
|
+
/>
|
|
14
|
+
<path
|
|
15
|
+
fill="url(#b)"
|
|
16
|
+
d="M7.582 13.69v5.005a1.313 1.313 0 0 0 .608 2.475c.721 0 1.315-.58 1.315-1.315 0-.509-.283-.947-.707-1.16v-4.68l7.891-5.516a.616.616 0 0 0 .255-.494V4.27a.604.604 0 0 0-.608-.608.604.604 0 0 0-.608.608V7.68l-7.891 5.515a.52.52 0 0 0-.255.495Z"
|
|
17
|
+
/>
|
|
18
|
+
<path
|
|
19
|
+
fill="url(#c)"
|
|
20
|
+
d="m17.024 15.357-2.008 1.415a.597.597 0 0 0-.141.848c.113.17.311.255.495.255.127 0 .24-.029.354-.114l2.008-1.414a.597.597 0 0 0 .141-.848.607.607 0 0 0-.849-.142Z"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
fill="url(#d)"
|
|
24
|
+
d="M20.872 18.908a.616.616 0 0 0-.863-.156l-9.517 6.66-9.517-6.66a.616.616 0 0 0-.863.156.616.616 0 0 0 .156.862l9.15 6.406-2.673 1.881a1.283 1.283 0 0 0-.608-.141c-.736 0-1.33.594-1.33 1.329s.594 1.33 1.33 1.33c.735 0 1.329-.595 1.329-1.33 0-.056 0-.113-.014-.17l3.054-2.135 3.055 2.135c0 .057-.014.114-.014.17 0 .735.594 1.33 1.33 1.33.734 0 1.328-.595 1.328-1.33 0-.735-.593-1.33-1.329-1.33-.226 0-.424.057-.608.142l-2.673-1.88 9.15-6.407a.637.637 0 0 0 .127-.862Z"
|
|
25
|
+
/>
|
|
26
|
+
<path
|
|
27
|
+
fill="url(#e)"
|
|
28
|
+
d="m3.958 4.468 2.008-1.414a.597.597 0 0 0 .141-.848.598.598 0 0 0-.495-.255.555.555 0 0 0-.353.113L3.25 3.478a.597.597 0 0 0-.142.849c.184.269.566.34.849.141Z"
|
|
29
|
+
/>
|
|
30
|
+
<path
|
|
31
|
+
fill="url(#f)"
|
|
32
|
+
d="M12.192 2.475v3.351l-7.89 5.516a.616.616 0 0 0-.255.494v3.734c0 .34.269.608.608.608.34 0 .608-.269.608-.608v-3.408l7.891-5.516a.616.616 0 0 0 .255-.494V2.475A1.313 1.313 0 0 0 12.8 0c-.722 0-1.316.58-1.316 1.315.014.495.297.933.707 1.16Z"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
fill="url(#g)"
|
|
36
|
+
d="M2.714 10.197c.72 0 1.315-.58 1.315-1.316 0-.056 0-.113-.014-.155l5.6-3.917a.616.616 0 0 0 .254-.495V.623a.604.604 0 0 0-.608-.608.604.604 0 0 0-.608.608v3.38L3.322 7.722a1.245 1.245 0 0 0-.608-.142c-.722 0-1.316.58-1.316 1.315a1.319 1.319 0 0 0 1.316 1.302Z"
|
|
37
|
+
/>
|
|
38
|
+
<defs>
|
|
39
|
+
<linearGradient
|
|
40
|
+
id="a"
|
|
41
|
+
x1={15.34}
|
|
42
|
+
x2={15.34}
|
|
43
|
+
y1={3.958}
|
|
44
|
+
y2={27.772}
|
|
45
|
+
gradientUnits="userSpaceOnUse"
|
|
46
|
+
>
|
|
47
|
+
<stop stopColor="#00ABAF" />
|
|
48
|
+
<stop offset={0.24} stopColor="#0093B4" />
|
|
49
|
+
<stop offset={0.48} stopColor="#0080BA" />
|
|
50
|
+
<stop offset={1} stopColor="#774896" />
|
|
51
|
+
</linearGradient>
|
|
52
|
+
<linearGradient
|
|
53
|
+
id="b"
|
|
54
|
+
x1={11.908}
|
|
55
|
+
x2={11.908}
|
|
56
|
+
y1={3.958}
|
|
57
|
+
y2={27.772}
|
|
58
|
+
gradientUnits="userSpaceOnUse"
|
|
59
|
+
>
|
|
60
|
+
<stop stopColor="#00ABAF" />
|
|
61
|
+
<stop offset={0.24} stopColor="#0093B4" />
|
|
62
|
+
<stop offset={0.48} stopColor="#0080BA" />
|
|
63
|
+
<stop offset={1} stopColor="#774896" />
|
|
64
|
+
</linearGradient>
|
|
65
|
+
<linearGradient
|
|
66
|
+
id="c"
|
|
67
|
+
x1={16.372}
|
|
68
|
+
x2={16.372}
|
|
69
|
+
y1={3.958}
|
|
70
|
+
y2={27.771}
|
|
71
|
+
gradientUnits="userSpaceOnUse"
|
|
72
|
+
>
|
|
73
|
+
<stop stopColor="#00ABAF" />
|
|
74
|
+
<stop offset={0.24} stopColor="#0093B4" />
|
|
75
|
+
<stop offset={0.48} stopColor="#0080BA" />
|
|
76
|
+
<stop offset={1} stopColor="#774896" />
|
|
77
|
+
</linearGradient>
|
|
78
|
+
<linearGradient
|
|
79
|
+
id="d"
|
|
80
|
+
x1={10.492}
|
|
81
|
+
x2={10.492}
|
|
82
|
+
y1={3.958}
|
|
83
|
+
y2={27.772}
|
|
84
|
+
gradientUnits="userSpaceOnUse"
|
|
85
|
+
>
|
|
86
|
+
<stop stopColor="#29B2B2" />
|
|
87
|
+
<stop offset={0.27} stopColor="#1091B3" />
|
|
88
|
+
<stop offset={0.48} stopColor="#017EB5" />
|
|
89
|
+
<stop offset={1} stopColor="#704B98" />
|
|
90
|
+
</linearGradient>
|
|
91
|
+
<linearGradient
|
|
92
|
+
id="e"
|
|
93
|
+
x1={4.609}
|
|
94
|
+
x2={4.609}
|
|
95
|
+
y1={3.958}
|
|
96
|
+
y2={27.771}
|
|
97
|
+
gradientUnits="userSpaceOnUse"
|
|
98
|
+
>
|
|
99
|
+
<stop stopColor="#00ABAF" />
|
|
100
|
+
<stop offset={0.24} stopColor="#0093B4" />
|
|
101
|
+
<stop offset={0.48} stopColor="#0080BA" />
|
|
102
|
+
<stop offset={1} stopColor="#774896" />
|
|
103
|
+
</linearGradient>
|
|
104
|
+
<linearGradient
|
|
105
|
+
id="f"
|
|
106
|
+
x1={9.082}
|
|
107
|
+
x2={9.082}
|
|
108
|
+
y1={3.958}
|
|
109
|
+
y2={27.771}
|
|
110
|
+
gradientUnits="userSpaceOnUse"
|
|
111
|
+
>
|
|
112
|
+
<stop stopColor="#00ABAF" />
|
|
113
|
+
<stop offset={0.24} stopColor="#0093B4" />
|
|
114
|
+
<stop offset={0.48} stopColor="#0080BA" />
|
|
115
|
+
<stop offset={1} stopColor="#774896" />
|
|
116
|
+
</linearGradient>
|
|
117
|
+
<linearGradient
|
|
118
|
+
id="g"
|
|
119
|
+
x1={5.643}
|
|
120
|
+
x2={5.643}
|
|
121
|
+
y1={3.958}
|
|
122
|
+
y2={27.772}
|
|
123
|
+
gradientUnits="userSpaceOnUse"
|
|
124
|
+
>
|
|
125
|
+
<stop stopColor="#00ABAF" />
|
|
126
|
+
<stop offset={0.24} stopColor="#0093B4" />
|
|
127
|
+
<stop offset={0.48} stopColor="#0080BA" />
|
|
128
|
+
<stop offset={1} stopColor="#774896" />
|
|
129
|
+
</linearGradient>
|
|
130
|
+
</defs>
|
|
131
|
+
</svg>
|
|
132
|
+
)
|
|
133
|
+
export default DGALogoSVG
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
|
|
3
|
+
/** Trash / delete icon used on the image preview hover overlay. */
|
|
4
|
+
|
|
5
|
+
export function DeleteIcon(props: SVGProps<SVGSVGElement>) {
|
|
6
|
+
return (
|
|
7
|
+
<svg
|
|
8
|
+
width="16"
|
|
9
|
+
height="16"
|
|
10
|
+
viewBox="0 0 16 16"
|
|
11
|
+
fill="none"
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
aria-hidden="true"
|
|
14
|
+
{...props}
|
|
15
|
+
>
|
|
16
|
+
<path
|
|
17
|
+
fillRule="evenodd"
|
|
18
|
+
clipRule="evenodd"
|
|
19
|
+
d="M8.0846 0.834518C8.3926 0.834851 8.66994 0.835158 8.9006 0.855831C9.27727 0.889524 9.63193 1.00449 9.93593 1.23126C10.1606 1.39897 10.3166 1.60426 10.4499 1.8266C10.5739 2.03264 10.6986 2.28952 10.8399 2.58092L11.1239 3.16732L14.0026 3.16778C14.3706 3.16778 14.6693 3.46626 14.6693 3.83445C14.6693 4.20264 14.3706 4.50112 14.0026 4.50112H13.4213L13.0573 10.4383C13.0066 11.2737 12.9659 11.9367 12.8826 12.4663C12.7973 13.0094 12.6606 13.4617 12.3879 13.8573C12.1379 14.2192 11.8159 14.5247 11.4433 14.7542C11.0353 15.0051 10.5799 15.1149 10.0379 15.1673H5.95394C5.41194 15.1147 4.95593 15.0047 4.54793 14.7533C4.1746 14.5234 3.8526 14.2174 3.6026 13.8548C3.32993 13.4586 3.19394 13.0057 3.10927 12.4618C3.02661 11.9315 2.9866 11.2675 2.9366 10.4309L2.5826 4.50112H2.0026C1.6346 4.50112 1.33594 4.20264 1.33594 3.83445C1.33594 3.46626 1.6346 3.16778 2.0026 3.16778L4.94261 3.16732L5.17994 2.64742C5.31727 2.34529 5.43861 2.0792 5.56061 1.86568C5.69194 1.63536 5.84727 1.42223 6.07527 1.24762C6.3826 1.01149 6.74394 0.891778 7.12927 0.856711C7.39127 0.832824 7.65594 0.833524 7.91927 0.834218L8.0846 0.834518ZM6.33594 6.97458C6.05994 6.97458 5.83594 7.19845 5.83594 7.47458V11.4746C5.83594 11.7508 6.05994 11.9746 6.33594 11.9746C6.61194 11.9746 6.83594 11.7508 6.83594 11.4746V7.47458C6.83594 7.19845 6.61194 6.97458 6.33594 6.97458ZM9.66927 6.97458C9.39327 6.97458 9.16927 7.19845 9.16927 7.47458V11.4746C9.16927 11.7508 9.39327 11.9746 9.66927 11.9746C9.94527 11.9746 10.1693 11.7508 10.1693 11.4746V7.47458C10.1693 7.19845 9.94527 6.97458 9.66927 6.97458ZM8.15412 2.16784L8.02594 2.16778C7.65861 2.16778 7.42727 2.16842 7.24994 2.18455C7.00061 2.20726 6.84527 2.30444 6.71861 2.52642C6.63527 2.67182 6.54527 2.86643 6.40794 3.16732H9.64194C9.49127 2.85599 9.3946 2.65862 9.30727 2.51278C9.1786 2.29923 9.02527 2.20562 8.78194 2.18386C8.63086 2.17034 8.43945 2.16817 8.15412 2.16784Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
</svg>
|
|
23
|
+
);
|
|
24
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
|
|
3
|
+
type IconProps = SVGProps<SVGSVGElement> & { title?: string };
|
|
4
|
+
|
|
5
|
+
export function DownloadIcon({ title = "Download", ...props }: IconProps) {
|
|
6
|
+
return (
|
|
7
|
+
<svg
|
|
8
|
+
viewBox="0 0 24 24"
|
|
9
|
+
fill="none"
|
|
10
|
+
aria-hidden={title ? undefined : true}
|
|
11
|
+
{...props}
|
|
12
|
+
>
|
|
13
|
+
{title ? <title>{title}</title> : null}
|
|
14
|
+
<path
|
|
15
|
+
d="M12 3v10m0 0l4-4m-4 4L8 9"
|
|
16
|
+
stroke="currentColor"
|
|
17
|
+
strokeWidth="2"
|
|
18
|
+
strokeLinecap="round"
|
|
19
|
+
strokeLinejoin="round"
|
|
20
|
+
/>
|
|
21
|
+
<path
|
|
22
|
+
d="M5 17v2a2 2 0 002 2h10a2 2 0 002-2v-2"
|
|
23
|
+
stroke="currentColor"
|
|
24
|
+
strokeWidth="2"
|
|
25
|
+
strokeLinecap="round"
|
|
26
|
+
/>
|
|
27
|
+
</svg>
|
|
28
|
+
);
|
|
29
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
|
|
3
|
+
/** Drag / rearrange handle (two vertical columns of dots). */
|
|
4
|
+
|
|
5
|
+
export function DragHandleVerticalIcon(props: SVGProps<SVGSVGElement>) {
|
|
6
|
+
return (
|
|
7
|
+
<svg
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
width="100%"
|
|
10
|
+
height="100%"
|
|
11
|
+
viewBox="0 0 10.5 14.5"
|
|
12
|
+
fill="none"
|
|
13
|
+
{...props}
|
|
14
|
+
>
|
|
15
|
+
<path
|
|
16
|
+
fill="currentColor"
|
|
17
|
+
fillRule="evenodd"
|
|
18
|
+
clipRule="evenodd"
|
|
19
|
+
d="M0 1.25C0 0.559644 0.559644 0 1.25 0H1.25635C1.9467 0 2.50635 0.559644 2.50635 1.25C2.50635 1.94036 1.9467 2.5 1.25635 2.5H1.25C0.559644 2.5 0 1.94036 0 1.25ZM7.99365 1.25C7.99365 0.559644 8.5533 0 9.24365 0H9.25C9.94036 0 10.5 0.559644 10.5 1.25C10.5 1.94036 9.94036 2.5 9.25 2.5H9.24365C8.5533 2.5 7.99365 1.94036 7.99365 1.25ZM0 7.25C0 6.55964 0.559644 6 1.25 6H1.25635C1.9467 6 2.50635 6.55964 2.50635 7.25C2.50635 7.94036 1.9467 8.5 1.25635 8.5H1.25C0.559644 8.5 0 7.94036 0 7.25ZM7.99365 7.25C7.99365 6.55964 8.5533 6 9.24365 6H9.25C9.94036 6 10.5 6.55964 10.5 7.25C10.5 7.94036 9.94036 8.5 9.25 8.5H9.24365C8.5533 8.5 7.99365 7.94036 7.99365 7.25ZM0 13.25C0 12.5596 0.559644 12 1.25 12H1.25635C1.9467 12 2.50635 12.5596 2.50635 13.25C2.50635 13.9404 1.9467 14.5 1.25635 14.5H1.25C0.559644 14.5 0 13.9404 0 13.25ZM7.99365 13.25C7.99365 12.5596 8.5533 12 9.24365 12H9.25C9.94036 12 10.5 12.5596 10.5 13.25C10.5 13.9404 9.94036 14.5 9.25 14.5H9.24365C8.5533 14.5 7.99365 13.9404 7.99365 13.25Z"
|
|
20
|
+
/>
|
|
21
|
+
</svg>
|
|
22
|
+
);
|
|
23
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
|
|
3
|
+
export function FeedbackEmojiDislikeIcon(props: SVGProps<SVGSVGElement>) {
|
|
4
|
+
return (
|
|
5
|
+
<svg
|
|
6
|
+
viewBox="0 0 24 24"
|
|
7
|
+
fill="none"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
aria-hidden="true"
|
|
10
|
+
width="100%"
|
|
11
|
+
height="100%"
|
|
12
|
+
{...props}
|
|
13
|
+
>
|
|
14
|
+
<path
|
|
15
|
+
d="M12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12C3.22139e-07 5.37258 5.37258 3.22129e-07 12 0ZM12 14.5117C9.89977 14.5118 8.03471 15.5211 6.86523 17.0781C6.58756 17.4478 6.66251 17.9733 7.03223 18.251C7.40191 18.5286 7.92643 18.4536 8.2041 18.084C9.07095 16.9298 10.4487 16.1856 12 16.1855C13.5514 16.1855 14.929 16.9298 15.7959 18.084C16.0735 18.4536 16.5981 18.5284 16.9678 18.251C17.3375 17.9733 17.4124 17.4478 17.1348 17.0781C15.9653 15.5211 14.1002 14.5117 12 14.5117ZM7.53516 7.25586C6.76453 7.25586 6.13965 7.88074 6.13965 8.65137C6.13976 9.4219 6.76459 10.0469 7.53516 10.0469H7.54492C8.31548 10.0469 8.94032 9.4219 8.94043 8.65137C8.94043 7.88074 8.31555 7.25586 7.54492 7.25586H7.53516ZM16.4551 7.25586C15.6845 7.25593 15.0596 7.88078 15.0596 8.65137C15.0597 9.42186 15.6846 10.0468 16.4551 10.0469H16.4648C17.2354 10.0469 17.8602 9.4219 17.8604 8.65137C17.8604 7.88074 17.2355 7.25586 16.4648 7.25586H16.4551Z"
|
|
16
|
+
fill="currentColor"
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
|
|
3
|
+
export function FeedbackEmojiLikeIcon(props: SVGProps<SVGSVGElement>) {
|
|
4
|
+
return (
|
|
5
|
+
<svg
|
|
6
|
+
viewBox="0 0 24 24"
|
|
7
|
+
fill="none"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
aria-hidden="true"
|
|
10
|
+
width="100%"
|
|
11
|
+
height="100%"
|
|
12
|
+
{...props}
|
|
13
|
+
>
|
|
14
|
+
<path
|
|
15
|
+
d="M12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12C3.22139e-07 5.37258 5.37258 3.22129e-07 12 0ZM8.2041 14.8457C7.92644 14.4762 7.40187 14.4022 7.03223 14.6797C6.66251 14.9574 6.58756 15.4818 6.86523 15.8516C8.03473 17.4087 9.89966 18.4189 12 18.4189C14.1001 18.4188 15.9644 17.4085 17.1338 15.8516C17.4114 15.4819 17.3373 14.9574 16.9678 14.6797C16.5981 14.402 16.0726 14.476 15.7949 14.8457C14.9281 15.9998 13.5512 16.744 12 16.7441C10.4486 16.7441 9.07098 15.9999 8.2041 14.8457ZM7.53516 7.25586C6.76453 7.25586 6.13965 7.88074 6.13965 8.65137C6.13976 9.4219 6.76459 10.0469 7.53516 10.0469H7.54492C8.31548 10.0469 8.94032 9.4219 8.94043 8.65137C8.94043 7.88074 8.31555 7.25586 7.54492 7.25586H7.53516ZM16.4551 7.25586C15.6845 7.25593 15.0596 7.88078 15.0596 8.65137C15.0597 9.42186 15.6846 10.0468 16.4551 10.0469H16.4648C17.2354 10.0469 17.8602 9.4219 17.8604 8.65137C17.8604 7.88074 17.2355 7.25586 16.4648 7.25586H16.4551Z"
|
|
16
|
+
fill="currentColor"
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
|
|
3
|
+
export function FeedbackEmojiNeutralIcon(props: SVGProps<SVGSVGElement>) {
|
|
4
|
+
return (
|
|
5
|
+
<svg
|
|
6
|
+
viewBox="0 0 24 24"
|
|
7
|
+
fill="none"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
aria-hidden="true"
|
|
10
|
+
width="100%"
|
|
11
|
+
height="100%"
|
|
12
|
+
{...props}
|
|
13
|
+
>
|
|
14
|
+
<path
|
|
15
|
+
d="M12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 3.22139e-07 18.6274 0 12C0 5.37258 5.37258 3.22139e-07 12 0ZM12 1.6748C6.29734 1.67481 1.6748 6.29734 1.6748 12C1.67481 17.7027 6.29734 22.3252 12 22.3252C17.7027 22.3252 22.3252 17.7027 22.3252 12C22.3252 6.29734 17.7027 1.6748 12 1.6748ZM7.54492 14.2334C8.16134 14.2335 8.66112 14.7332 8.66113 15.3496C8.66113 15.9661 8.16135 16.4657 7.54492 16.4658H7.53516C6.91865 16.4658 6.41895 15.9661 6.41895 15.3496C6.41896 14.7331 6.91866 14.2334 7.53516 14.2334H7.54492ZM16.4648 14.2334C17.0813 14.2334 17.581 14.7331 17.5811 15.3496C17.5811 15.9661 17.0813 16.4658 16.4648 16.4658H16.4551C15.8386 16.4658 15.3389 15.9661 15.3389 15.3496C15.3389 14.7331 15.8386 14.2334 16.4551 14.2334H16.4648ZM15.3486 6.69727C15.811 6.69727 16.1865 7.0718 16.1865 7.53418C16.1864 7.99648 15.811 8.37109 15.3486 8.37109H8.65137C8.18905 8.37109 7.81455 7.99648 7.81445 7.53418C7.81445 7.0718 8.18899 6.69727 8.65137 6.69727H15.3486Z"
|
|
16
|
+
fill="currentColor"
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
|
|
3
|
+
export function FeedbackThumbDislikeFilledIcon(props: SVGProps<SVGSVGElement>) {
|
|
4
|
+
return (
|
|
5
|
+
<svg
|
|
6
|
+
viewBox="0 0 28.7877 23.9998"
|
|
7
|
+
fill="none"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
aria-hidden="true"
|
|
10
|
+
width="100%"
|
|
11
|
+
height="100%"
|
|
12
|
+
{...props}
|
|
13
|
+
>
|
|
14
|
+
<path
|
|
15
|
+
d="M22.3896 0C23.9305 7.64727e-05 25.3034 0.957953 25.8125 2.38867L28.5811 10.1729C29.4062 12.4922 27.6569 14.9186 25.1592 14.9189H19.1895L19.3691 15.3174C20.6434 18.1379 20.0202 21.4396 17.8018 23.6221L17.707 23.7148C17.3208 24.0947 16.6948 24.0948 16.3086 23.7148L7.49023 15.4365C7.49023 15.4365 7.19491 15.1846 6.78809 15.1846V0.972656C6.78826 0.435443 7.23123 0 7.77734 0H22.3896Z"
|
|
16
|
+
fill="currentColor"
|
|
17
|
+
/>
|
|
18
|
+
<path
|
|
19
|
+
fillRule="evenodd"
|
|
20
|
+
clipRule="evenodd"
|
|
21
|
+
d="M2.58692 15.2951H6C6 15.2951 6 13.9273 6 12.4983V7.68513V5.15318V2.60795C6 1.17894 6 1.29248 6 0.0204992L2.58693 0.020484C1.15821 0.020484 0 1.17893 0 2.60793V12.7077C0 14.1367 1.1582 15.2951 2.58692 15.2951Z"
|
|
22
|
+
fill="currentColor"
|
|
23
|
+
/>
|
|
24
|
+
</svg>
|
|
25
|
+
);
|
|
26
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
|
|
3
|
+
export function FeedbackThumbDislikeIcon(props: SVGProps<SVGSVGElement>) {
|
|
4
|
+
return (
|
|
5
|
+
<svg
|
|
6
|
+
viewBox="0 0 27.8919 24"
|
|
7
|
+
fill="none"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
aria-hidden="true"
|
|
10
|
+
width="100%"
|
|
11
|
+
height="100%"
|
|
12
|
+
{...props}
|
|
13
|
+
>
|
|
14
|
+
<path
|
|
15
|
+
d="M21.6621 0C23.1722 9.3649e-05 24.5076 0.965769 25.001 2.39258L27.6924 10.1758C28.4887 12.4786 26.8048 14.9189 24.3535 14.9189H18.5615L18.7393 15.3213C19.9757 18.1371 19.3726 21.4351 17.2158 23.6182L17.123 23.7109C16.9404 23.8957 16.6915 23.9999 16.4316 24C16.1716 24 15.922 23.8959 15.7393 23.7109L7.05273 14.9189H2.27051C1.01667 14.9189 0 13.9023 0 12.6484V2.27051C0 1.01668 1.01667 5.02612e-06 2.27051 0H21.6621ZM8.43262 13.5459L16.3848 21.5947C17.5169 20.0198 17.7572 17.9272 16.957 16.1045L16.1816 14.3369C16.0495 14.0361 16.0782 13.6892 16.2578 13.4141C16.4375 13.139 16.7437 12.9727 17.0723 12.9727H24.3535C25.4336 12.9726 26.2236 11.8834 25.8535 10.8125L23.1621 3.02832C22.9358 2.37396 22.3304 1.94638 21.6621 1.94629H8.43262V13.5459ZM2.27051 1.94629C2.09139 1.94629 1.94629 2.09139 1.94629 2.27051V12.6484C1.94629 12.8276 2.09139 12.9727 2.27051 12.9727H6.48633V1.94629H2.27051Z"
|
|
16
|
+
fill="currentColor"
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
|
|
3
|
+
export function FeedbackThumbLikeFilledIcon(props: SVGProps<SVGSVGElement>) {
|
|
4
|
+
return (
|
|
5
|
+
<svg
|
|
6
|
+
viewBox="0 0 28.7906 23.9998"
|
|
7
|
+
fill="none"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
aria-hidden="true"
|
|
10
|
+
width="100%"
|
|
11
|
+
height="100%"
|
|
12
|
+
{...props}
|
|
13
|
+
>
|
|
14
|
+
<path
|
|
15
|
+
d="M16.3115 0.284973C16.6978 -0.0949933 17.3237 -0.0949885 17.71 0.284973L17.8047 0.377746C20.0232 2.56024 20.6463 5.86194 19.3721 8.68243L19.1924 9.08087H25.1621C27.6599 9.08117 29.4092 11.5076 28.584 13.827L25.8154 21.6111C25.3063 23.0419 23.9334 23.9997 22.3926 23.9998H6.79102V8.75958C6.96425 8.75958 7.08105 8.65704 7.08105 8.65704L16.3115 0.284973ZM6 8.72443V23.9959H2.58691C1.15821 23.9959 2.93776e-05 22.8377 0 21.409V11.3113C0 9.88262 1.1582 8.72445 2.58691 8.72443H6Z"
|
|
16
|
+
fill="currentColor"
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
|
|
3
|
+
export function FeedbackThumbLikeIcon(props: SVGProps<SVGSVGElement>) {
|
|
4
|
+
return (
|
|
5
|
+
<svg
|
|
6
|
+
viewBox="0 0 27.8919 24"
|
|
7
|
+
fill="none"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
aria-hidden="true"
|
|
10
|
+
width="100%"
|
|
11
|
+
height="100%"
|
|
12
|
+
{...props}
|
|
13
|
+
>
|
|
14
|
+
<path
|
|
15
|
+
d="M16.4316 0C16.6915 9.789e-05 16.9404 0.104274 17.123 0.289063L17.2158 0.381836C19.3726 2.56491 19.9757 5.86289 18.7393 8.67871L18.5615 9.08105H24.3535C26.8048 9.08111 28.4887 11.5214 27.6924 13.8242L25.001 21.6074C24.5076 23.0342 23.1722 23.9999 21.6621 24H2.27051C1.01667 24 0 22.9833 0 21.7295V11.3516C0 10.0977 1.01667 9.08105 2.27051 9.08105H7.05273L15.7393 0.289063C15.922 0.104111 16.1716 -5.41163e-07 16.4316 0ZM2.27051 11.0273C2.09139 11.0273 1.94629 11.1724 1.94629 11.3516V21.7295C1.94629 21.9086 2.09139 22.0537 2.27051 22.0537H6.48633V11.0273H2.27051ZM8.43262 10.4541V22.0537H21.6621C22.3304 22.0536 22.9358 21.626 23.1621 20.9717L25.8535 13.1875C26.2236 12.1166 25.4336 11.0274 24.3535 11.0273H17.0723C16.7437 11.0273 16.4375 10.861 16.2578 10.5859C16.0782 10.3108 16.0495 9.96394 16.1816 9.66309L16.957 7.89551C17.7572 6.07281 17.5169 3.98025 16.3848 2.40527L8.43262 10.4541Z"
|
|
16
|
+
fill="currentColor"
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import { useId } from 'react';
|
|
4
|
+
import type { SVGProps } from 'react';
|
|
5
|
+
|
|
6
|
+
type IconProps = SVGProps<SVGSVGElement>;
|
|
7
|
+
|
|
8
|
+
/** 16×16 dismiss — stroke, inherits `currentColor`. */
|
|
9
|
+
|
|
10
|
+
export function FileUploadItemCloseIcon({ className, ...rest }: IconProps) {
|
|
11
|
+
return (
|
|
12
|
+
<svg
|
|
13
|
+
className={className}
|
|
14
|
+
viewBox="0 0 16 16"
|
|
15
|
+
fill="none"
|
|
16
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
17
|
+
aria-hidden="true"
|
|
18
|
+
{...rest}
|
|
19
|
+
>
|
|
20
|
+
<path
|
|
21
|
+
d="M12 4L4 12M4 4l8 8"
|
|
22
|
+
stroke="currentColor"
|
|
23
|
+
strokeWidth="1.5"
|
|
24
|
+
strokeLinecap="round"
|
|
25
|
+
/>
|
|
26
|
+
</svg>
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/** PDF document tile (32×32). */
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import { useId } from 'react';
|
|
4
|
+
import type { SVGProps } from 'react';
|
|
5
|
+
|
|
6
|
+
type IconProps = SVGProps<SVGSVGElement>;
|
|
7
|
+
|
|
8
|
+
/** 16×16 dismiss — stroke, inherits `currentColor`. */
|
|
9
|
+
|
|
10
|
+
export function FileUploadItemEmptyFileIcon(props: IconProps) {
|
|
11
|
+
return (
|
|
12
|
+
<svg
|
|
13
|
+
viewBox="0 0 24 24"
|
|
14
|
+
fill="none"
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
aria-hidden="true"
|
|
17
|
+
{...props}
|
|
18
|
+
>
|
|
19
|
+
<path
|
|
20
|
+
fillRule="evenodd"
|
|
21
|
+
clipRule="evenodd"
|
|
22
|
+
d="M4.75 4C4.75 3.31 5.31 2.75 6 2.75H12.25V7C12.25 8.52 13.48 9.75 15 9.75H19.25V20C19.25 20.69 18.69 21.25 18 21.25H6C5.31 21.25 4.75 20.69 4.75 20V4ZM18.19 8.25L13.75 3.81006V7C13.75 7.69 14.31 8.25 15 8.25H18.19ZM6 1.25C4.48 1.25 3.25 2.48 3.25 4V20C3.25 21.52 4.48 22.75 6 22.75H18C19.52 22.75 20.75 21.52 20.75 20V9C20.75 8.8 20.67 8.60997 20.53 8.46997L13.53 1.46997C13.39 1.32997 13.2 1.25 13 1.25H6Z"
|
|
23
|
+
fill="currentColor"
|
|
24
|
+
/>
|
|
25
|
+
</svg>
|
|
26
|
+
);
|
|
27
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import { useId } from 'react';
|
|
4
|
+
import type { SVGProps } from 'react';
|
|
5
|
+
|
|
6
|
+
type IconProps = SVGProps<SVGSVGElement>;
|
|
7
|
+
|
|
8
|
+
/** 16×16 dismiss — stroke, inherits `currentColor`. */
|
|
9
|
+
|
|
10
|
+
export function FileUploadItemPdfIcon({ className, ...rest }: IconProps) {
|
|
11
|
+
const clipId = `fu-pdf-${useId().replace(/:/g, '')}`;
|
|
12
|
+
|
|
13
|
+
return (
|
|
14
|
+
<svg
|
|
15
|
+
width={32}
|
|
16
|
+
height={32}
|
|
17
|
+
viewBox="0 0 32 32"
|
|
18
|
+
fill="none"
|
|
19
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
20
|
+
aria-hidden="true"
|
|
21
|
+
className={className}
|
|
22
|
+
{...rest}
|
|
23
|
+
>
|
|
24
|
+
<g clipPath={`url(#${clipId})`}>
|
|
25
|
+
<path
|
|
26
|
+
d="M29.715 8.429a.211.211 0 000-.08.572.572 0 00-.12-.183l-8-8a.571.571 0 00-.183-.12.211.211 0 00-.08 0A.394.394 0 0021.143 0h-16a.571.571 0 00-.571.571V16H2.858a.571.571 0 00-.572.572v10.285a.571.571 0 00.572.572h1.714v4a.572.572 0 00.571.571h24a.571.571 0 00.572-.571V8.57a.394.394 0 000-.142zm-8-6.48L27.766 8h-6.051V1.949zM3.429 17.143h17.143v9.143H3.429v-9.143zm2.286 13.714V27.43h15.428a.571.571 0 00.572-.572V16.572a.571.571 0 00-.572-.572H5.715V1.143h14.857V8.57a.571.571 0 00.571.572h7.429v21.714H5.715z"
|
|
27
|
+
fill="#D2D6DB"
|
|
28
|
+
/>
|
|
29
|
+
<path d="M27.765 8h-6.051V1.95L27.765 8z" fill="#fff" />
|
|
30
|
+
<path
|
|
31
|
+
d="M28.571 9.143v21.714H5.714v-3.429h15.428a.571.571 0 00.572-.571V16.57a.571.571 0 00-.572-.571H5.714V1.143H20.57V8.57a.571.571 0 00.571.572h7.429z"
|
|
32
|
+
fill="#fff"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
d="M2.286 17a1 1 0 011-1h17.429a1 1 0 011 1v9.429a1 1 0 01-1 1H3.286a1 1 0 01-1-1V17z"
|
|
36
|
+
fill="#D92D20"
|
|
37
|
+
/>
|
|
38
|
+
<path
|
|
39
|
+
d="M6.286 24v-4.57h1.52a1.6 1.6 0 011.086.33 1.383 1.383 0 01.474 1.098c-.003.267-.08.528-.223.754a1.252 1.252 0 01-.571.503 1.524 1.524 0 01-.657.131h-.686v1.755h-.943zm.966-2.582h.537a.651.651 0 00.463-.16.572.572 0 00.166-.434c0-.35-.21-.526-.629-.526h-.537v1.12zM10.258 24v-4.572h1.714c.43-.015.85.123 1.188.389a2.285 2.285 0 01.84 1.897 2.56 2.56 0 01-.285 1.206c-.18.348-.459.636-.8.828-.395.19-.832.276-1.269.252h-1.388zm.965-.869h.617c.22.008.437-.05.623-.166a1.446 1.446 0 00.572-1.291 1.37 1.37 0 00-.543-1.211 1.068 1.068 0 00-.617-.166h-.652v2.834zm3.772.869v-4.572h2.617v.869H15.96v.931h1.515v.869H15.96V24h-.965z"
|
|
40
|
+
fill="#fff"
|
|
41
|
+
/>
|
|
42
|
+
</g>
|
|
43
|
+
<defs>
|
|
44
|
+
<clipPath id={clipId}>
|
|
45
|
+
<path fill="#fff" d="M0 0H32V32H0z" />
|
|
46
|
+
</clipPath>
|
|
47
|
+
</defs>
|
|
48
|
+
</svg>
|
|
49
|
+
);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/** Generic file glyph, 24×24. */
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Magnifying-glass search icon.
|
|
5
|
+
* Used as the prefix inside the search TextInput.
|
|
6
|
+
* Figma: search-01
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
export function FilterFunnelIcon(props: SVGProps<SVGSVGElement>) {
|
|
10
|
+
return (
|
|
11
|
+
<svg
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
width="100%"
|
|
14
|
+
height="100%"
|
|
15
|
+
viewBox="0 0 24 24"
|
|
16
|
+
fill="none"
|
|
17
|
+
{...props}
|
|
18
|
+
>
|
|
19
|
+
<path
|
|
20
|
+
d="M3 4.5h18l-7 9v5.5l-4-2V13.5L3 4.5z"
|
|
21
|
+
stroke="currentColor"
|
|
22
|
+
strokeWidth="1.5"
|
|
23
|
+
strokeLinecap="round"
|
|
24
|
+
strokeLinejoin="round"
|
|
25
|
+
/>
|
|
26
|
+
</svg>
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Upload / export arrow icon — from Figma (upload-04).
|
|
32
|
+
* Arrow shaft at 40 % opacity; base bar at full opacity.
|
|
33
|
+
* Used as the leading icon in the Export button on the desktop toolbar.
|
|
34
|
+
*/
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Inline SVG icons used exclusively by the Filtration component.
|
|
3
|
+
* All icons use `width="100%" height="100%"` — the wrapper controls sizing.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
/** Funnel / filter icon — 24×24 viewport (Figma filter-01). */
|
|
7
|
+
|
|
8
|
+
export function FilterIcon({ className }: { className?: string }) {
|
|
9
|
+
return (
|
|
10
|
+
<svg
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
width="100%"
|
|
13
|
+
height="100%"
|
|
14
|
+
viewBox="0 0 24 24"
|
|
15
|
+
fill="none"
|
|
16
|
+
aria-hidden="true"
|
|
17
|
+
className={className}
|
|
18
|
+
>
|
|
19
|
+
<path
|
|
20
|
+
d="M2 4.5A.5.5 0 0 1 2.5 4h19a.5.5 0 0 1 .354.854l-7.5 7.5A.5.5 0 0 1 14 12.707V20a.5.5 0 0 1-.276.447l-4 2A.5.5 0 0 1 9 22v-9.293l-7.354-7.353A.5.5 0 0 1 2 4.5Z"
|
|
21
|
+
stroke="currentColor"
|
|
22
|
+
strokeWidth="1.5"
|
|
23
|
+
strokeLinecap="round"
|
|
24
|
+
strokeLinejoin="round"
|
|
25
|
+
fill="none"
|
|
26
|
+
/>
|
|
27
|
+
</svg>
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/** Chevron-down icon — 20×20 viewport (Figma arrow-down-01). */
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
|
|
3
|
+
type IconProps = SVGProps<SVGSVGElement> & { title?: string };
|
|
4
|
+
|
|
5
|
+
export function FitIcon({ title = "Fit", ...props }: IconProps) {
|
|
6
|
+
return (
|
|
7
|
+
<svg
|
|
8
|
+
width="24"
|
|
9
|
+
height="24"
|
|
10
|
+
viewBox="0 0 24 24"
|
|
11
|
+
fill="none"
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
>
|
|
14
|
+
<path
|
|
15
|
+
fillRule="evenodd"
|
|
16
|
+
clipRule="evenodd"
|
|
17
|
+
d="M2.47081 21.5306C2.17776 21.2379 2.1775 20.763 2.47023 20.47L9.17652 13.7563C9.04858 13.7626 8.91464 13.7717 8.77615 13.7832C8.38433 13.8155 7.98451 13.8637 7.6136 13.9083C7.58456 13.9118 7.5557 13.9153 7.52704 13.9188C7.15371 13.9636 6.77397 14.0088 6.51383 14.0125C6.09966 14.0184 5.75914 13.6874 5.75325 13.2732C5.74736 12.859 6.07835 12.5185 6.49252 12.5126C6.65459 12.5103 6.94106 12.4784 7.34809 12.4295C7.37776 12.4259 7.40788 12.4223 7.43842 12.4186C7.80479 12.3745 8.23145 12.3231 8.65263 12.2883C9.10464 12.2509 9.58407 12.2295 10.0039 12.2631C10.2143 12.28 10.4329 12.3123 10.6368 12.374C10.8343 12.4338 11.0724 12.5374 11.2673 12.7322C11.4622 12.9271 11.5657 13.1652 11.6255 13.3627C11.6873 13.5667 11.7196 13.7853 11.7364 13.9956C11.77 14.4154 11.7486 14.8949 11.7113 15.3469C11.6765 15.7681 11.6251 16.1947 11.5809 16.5611C11.5773 16.5916 11.5736 16.6218 11.5701 16.6514C11.5211 17.0585 11.4892 17.3449 11.4869 17.507C11.481 17.9212 11.1405 18.2522 10.7263 18.2463C10.3121 18.2404 9.98116 17.8999 9.98705 17.4857C9.99075 17.2256 10.0359 16.8458 10.0808 16.4725C10.0842 16.4438 10.0877 16.415 10.0912 16.386C10.1358 16.0151 10.184 15.6152 10.2164 15.2234C10.2282 15.0803 10.2375 14.942 10.2439 14.8102L3.53147 21.53C3.23874 21.8231 2.76387 21.8234 2.47081 21.5306ZM13.3695 11.6187C13.1721 11.5589 12.9339 11.4553 12.739 11.2605C12.5442 11.0656 12.4406 10.8275 12.3808 10.63C12.3191 10.426 12.2868 10.2074 12.2699 9.9971C12.2363 9.57725 12.2577 9.09782 12.2951 8.6458C12.3299 8.22462 12.3813 7.79796 12.4254 7.43159C12.4291 7.40105 12.4327 7.37093 12.4363 7.34126C12.4852 6.93423 12.5171 6.64776 12.5194 6.48569C12.5253 6.07152 12.8659 5.74054 13.28 5.74643C13.6942 5.75231 14.0252 6.09284 14.0193 6.50701C14.0156 6.76714 13.9704 7.14688 13.9256 7.52021C13.9221 7.54887 13.9187 7.57773 13.9152 7.60676C13.8705 7.97768 13.8224 8.37749 13.79 8.76932C13.7786 8.90725 13.7695 9.04068 13.7632 9.16815L20.4699 2.46748C20.7629 2.17472 21.2378 2.17493 21.5306 2.46796C21.8233 2.76098 21.8231 3.23586 21.5301 3.52862L14.8155 10.2371C14.9478 10.2308 15.0865 10.2214 15.2302 10.2095C15.622 10.1772 16.0219 10.129 16.3928 10.0844C16.4218 10.0809 16.4507 10.0774 16.4793 10.0739C16.8526 10.0291 17.2324 9.98392 17.4925 9.98022C17.9067 9.97434 18.2472 10.3053 18.2531 10.7195C18.259 11.1337 17.928 11.4742 17.5138 11.4801C17.3518 11.4824 17.0653 11.5143 16.6583 11.5632C16.6286 11.5668 16.5985 11.5704 16.5679 11.5741C16.2016 11.6182 15.7749 11.6696 15.3537 11.7044C14.9017 11.7418 14.4223 11.7632 14.0024 11.7296C13.7921 11.7127 13.5735 11.6804 13.3695 11.6187Z"
|
|
18
|
+
fill="white"
|
|
19
|
+
/>
|
|
20
|
+
</svg>
|
|
21
|
+
);
|
|
22
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import type { SVGProps } from "react";
|
|
4
|
+
|
|
5
|
+
/** Chevron pointing right. */
|
|
6
|
+
|
|
7
|
+
export function FolderFilledIcon(props: SVGProps<SVGSVGElement>) {
|
|
8
|
+
return (
|
|
9
|
+
<svg
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
width="100%"
|
|
12
|
+
height="100%"
|
|
13
|
+
viewBox="0 0 20 20"
|
|
14
|
+
fill="none"
|
|
15
|
+
{...props}
|
|
16
|
+
>
|
|
17
|
+
<path
|
|
18
|
+
fillRule="evenodd"
|
|
19
|
+
clipRule="evenodd"
|
|
20
|
+
d="M7.327 3.485c-.293-.11-.64-.12-1.66-.12-.768 0-1.303 0-1.719.037-.407.036-.64.103-.815.201-.303.17-.554.42-.723.724-.098.175-.165.407-.2.814-.038.416-.038.951-.038 1.72v2.546c0 1.982.001 3.405.147 4.489.143 1.065.415 1.707.89 2.182.475.475 1.117.747 2.183.89 1.083.146 2.506.147 4.488.147h1.042c1.476 0 2.536 0 3.36-.084.813-.083 1.327-.241 1.733-.513.386-.258.718-.59.977-.977.27-.405.43-.92.512-1.732.084-.824.084-1.884.084-3.36 0-.891 0-1.512-.049-1.991-.048-.468-.136-.73-.267-.926a1.874 1.874 0 00-.517-.517c-.195-.131-.458-.22-.926-.267-.479-.049-1.1-.05-1.99-.05H5.713a.625.625 0 110-1.25h3.155l-.089-.177c-.461-.923-.764-1.528-1.453-1.786zm2.94 1.964l-.356-.71a37.991 37.991 0 01-.079-.16C9.44 3.783 8.93 2.75 7.766 2.314c-.533-.2-1.126-.2-1.984-.199H5.638c-.732 0-1.323 0-1.8.042-.491.044-.921.135-1.314.354-.506.283-.924.7-1.206 1.206-.22.393-.31.823-.354 1.315-.042.477-.042 1.067-.042 1.8v2.623c0 1.923 0 3.431.158 4.607.162 1.204.5 2.154 1.245 2.9.746.745 1.696 1.083 2.9 1.245 1.176.158 2.684.158 4.607.158h1.125c1.433 0 2.557 0 3.451-.09.912-.093 1.656-.286 2.301-.717.523-.35.972-.8 1.322-1.322.431-.646.624-1.389.717-2.301.09-.895.09-2.018.09-3.451v-.07c0-.848 0-1.533-.055-2.082-.058-.568-.18-1.06-.471-1.495a3.125 3.125 0 00-.862-.862c-.435-.29-.927-.413-1.494-.47-.55-.056-1.235-.056-2.084-.056h-3.605z"
|
|
21
|
+
fill="currentColor"
|
|
22
|
+
/>
|
|
23
|
+
</svg>
|
|
24
|
+
);
|
|
25
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import type { SVGProps } from "react";
|
|
4
|
+
|
|
5
|
+
/** Chevron pointing right. */
|
|
6
|
+
|
|
7
|
+
export function FolderIcon(props: SVGProps<SVGSVGElement>) {
|
|
8
|
+
return (
|
|
9
|
+
<svg
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
width="100%"
|
|
12
|
+
height="100%"
|
|
13
|
+
viewBox="0 0 20 20"
|
|
14
|
+
fill="none"
|
|
15
|
+
{...props}
|
|
16
|
+
>
|
|
17
|
+
<path
|
|
18
|
+
d="M2.5 6.5c0-1.1046.8954-2 2-2h3.1c.53 0 1.039.2107 1.414.5858l.9.9c.375.375.884.5857 1.414.5857H15.5c1.1046 0 2 .8954 2 2v6c0 1.1046-.8954 2-2 2h-11c-1.1046 0-2-.8954-2-2v-8Z"
|
|
19
|
+
stroke="currentColor"
|
|
20
|
+
strokeWidth="1.5"
|
|
21
|
+
strokeLinecap="round"
|
|
22
|
+
strokeLinejoin="round"
|
|
23
|
+
/>
|
|
24
|
+
</svg>
|
|
25
|
+
);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
/** Filled folder icon. */
|