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.
Files changed (880) hide show
  1. package/README.md +89 -0
  2. package/dist/PlayVideoIcon-BM-4pwUd.d.cts +7 -0
  3. package/dist/PlayVideoIcon-BM-4pwUd.d.ts +7 -0
  4. package/dist/dga-icons.cjs +14 -0
  5. package/dist/dga-icons.cjs.map +1 -0
  6. package/dist/dga-icons.d.cts +1 -0
  7. package/dist/dga-icons.d.ts +1 -0
  8. package/dist/dga-icons.js +3 -0
  9. package/dist/dga-icons.js.map +1 -0
  10. package/dist/icons.cjs +4014 -0
  11. package/dist/icons.cjs.map +1 -0
  12. package/dist/icons.d.cts +756 -0
  13. package/dist/icons.d.ts +756 -0
  14. package/dist/icons.js +3871 -0
  15. package/dist/icons.js.map +1 -0
  16. package/dist/index.cjs +43620 -0
  17. package/dist/index.cjs.map +1 -0
  18. package/dist/index.d.cts +9407 -0
  19. package/dist/index.d.ts +9407 -0
  20. package/dist/index.js +43411 -0
  21. package/dist/index.js.map +1 -0
  22. package/dist/styles.css +242 -0
  23. package/package.json +65 -0
  24. package/src/components/Accordion/Accordion.tsx +207 -0
  25. package/src/components/Accordion/Accordion.types.ts +36 -0
  26. package/src/components/Accordion/Accordion.variants.ts +283 -0
  27. package/src/components/Accordion/index.ts +9 -0
  28. package/src/components/ActionBar/ActionBar.tsx +192 -0
  29. package/src/components/ActionBar/ActionBar.types.ts +67 -0
  30. package/src/components/ActionBar/ActionBar.variants.ts +95 -0
  31. package/src/components/ActionBar/index.ts +8 -0
  32. package/src/components/Activity/Activity.tsx +52 -0
  33. package/src/components/Activity/Activity.types.ts +19 -0
  34. package/src/components/Activity/Activity.variants.ts +15 -0
  35. package/src/components/Activity/index.ts +2 -0
  36. package/src/components/ActivityItem/ActivityItem.tsx +298 -0
  37. package/src/components/ActivityItem/ActivityItem.types.ts +76 -0
  38. package/src/components/ActivityItem/ActivityItem.variants.ts +117 -0
  39. package/src/components/ActivityItem/index.ts +8 -0
  40. package/src/components/Alert/Alert.tsx +183 -0
  41. package/src/components/Alert/Alert.types.ts +34 -0
  42. package/src/components/Alert/Alert.variants.ts +168 -0
  43. package/src/components/Alert/index.ts +2 -0
  44. package/src/components/AreaChart/AreaChart.tsx +454 -0
  45. package/src/components/AreaChart/AreaChart.types.ts +117 -0
  46. package/src/components/AreaChart/AreaChart.variants.ts +202 -0
  47. package/src/components/AreaChart/index.ts +2 -0
  48. package/src/components/AspectRatio/AspectRatio.tsx +36 -0
  49. package/src/components/AspectRatio/AspectRatio.types.ts +33 -0
  50. package/src/components/AspectRatio/AspectRatio.variants.ts +42 -0
  51. package/src/components/AspectRatio/index.ts +2 -0
  52. package/src/components/AudioPlayer/AudioPlayer.tsx +294 -0
  53. package/src/components/AudioPlayer/AudioPlayer.types.ts +64 -0
  54. package/src/components/AudioPlayer/AudioPlayer.variants.ts +225 -0
  55. package/src/components/AudioPlayer/index.ts +2 -0
  56. package/src/components/Autocomplete/Autocomplete.tsx +353 -0
  57. package/src/components/Autocomplete/Autocomplete.types.ts +93 -0
  58. package/src/components/Autocomplete/Autocomplete.variants.ts +149 -0
  59. package/src/components/Autocomplete/index.ts +6 -0
  60. package/src/components/Avatar/Avatar.tsx +168 -0
  61. package/src/components/Avatar/Avatar.types.ts +36 -0
  62. package/src/components/Avatar/Avatar.variants.ts +102 -0
  63. package/src/components/Avatar/index.ts +7 -0
  64. package/src/components/AvatarGroup/AvatarGroup.tsx +87 -0
  65. package/src/components/AvatarGroup/AvatarGroup.types.ts +44 -0
  66. package/src/components/AvatarGroup/AvatarGroup.variants.ts +17 -0
  67. package/src/components/AvatarGroup/index.ts +6 -0
  68. package/src/components/Badge/Badge.tsx +74 -0
  69. package/src/components/Badge/Badge.types.ts +31 -0
  70. package/src/components/Badge/Badge.variants.ts +83 -0
  71. package/src/components/Badge/index.ts +2 -0
  72. package/src/components/Bar/Bar.tsx +57 -0
  73. package/src/components/Bar/Bar.types.ts +18 -0
  74. package/src/components/Bar/Bar.variants.ts +20 -0
  75. package/src/components/Bar/index.ts +2 -0
  76. package/src/components/BarChart/BarChart.tsx +179 -0
  77. package/src/components/BarChart/BarChart.types.ts +72 -0
  78. package/src/components/BarChart/BarChart.variants.ts +134 -0
  79. package/src/components/BarChart/index.ts +2 -0
  80. package/src/components/BarGroup/BarGroup.tsx +119 -0
  81. package/src/components/BarGroup/BarGroup.types.ts +50 -0
  82. package/src/components/BarGroup/BarGroup.variants.ts +76 -0
  83. package/src/components/BarGroup/index.ts +2 -0
  84. package/src/components/Breadcrumb/Breadcrumb.tsx +137 -0
  85. package/src/components/Breadcrumb/Breadcrumb.types.ts +21 -0
  86. package/src/components/Breadcrumb/BreadcrumbItem.tsx +267 -0
  87. package/src/components/Breadcrumb/BreadcrumbItem.types.ts +66 -0
  88. package/src/components/Breadcrumb/BreadcrumbItem.variants.ts +102 -0
  89. package/src/components/Breadcrumb/index.ts +12 -0
  90. package/src/components/Button/Button.tsx +100 -0
  91. package/src/components/Button/Button.types.ts +44 -0
  92. package/src/components/Button/Button.variants.ts +183 -0
  93. package/src/components/Button/index.ts +2 -0
  94. package/src/components/ButtonClose/ButtonClose.tsx +57 -0
  95. package/src/components/ButtonClose/ButtonClose.types.ts +18 -0
  96. package/src/components/ButtonClose/ButtonClose.variants.ts +72 -0
  97. package/src/components/ButtonClose/index.ts +2 -0
  98. package/src/components/ButtonGroup/ButtonGroup.tsx +127 -0
  99. package/src/components/ButtonGroup/ButtonGroup.types.ts +51 -0
  100. package/src/components/ButtonGroup/ButtonGroup.variants.ts +65 -0
  101. package/src/components/ButtonGroup/index.ts +2 -0
  102. package/src/components/ButtonMenu/ButtonMenu.tsx +73 -0
  103. package/src/components/ButtonMenu/ButtonMenu.types.ts +43 -0
  104. package/src/components/ButtonMenu/ButtonMenu.variants.ts +18 -0
  105. package/src/components/ButtonMenu/index.ts +2 -0
  106. package/src/components/ButtonSplit/ButtonSplit.tsx +344 -0
  107. package/src/components/ButtonSplit/ButtonSplit.types.ts +95 -0
  108. package/src/components/ButtonSplit/ButtonSplit.variants.ts +165 -0
  109. package/src/components/ButtonSplit/index.ts +7 -0
  110. package/src/components/ButtonsWithSdaiaTouch/ButtonHoverPattern.tsx +69 -0
  111. package/src/components/ButtonsWithSdaiaTouch/ButtonsWithSdaiaTouch.tsx +130 -0
  112. package/src/components/ButtonsWithSdaiaTouch/ButtonsWithSdaiaTouch.types.ts +4 -0
  113. package/src/components/ButtonsWithSdaiaTouch/ButtonsWithSdaiaTouch.variants.ts +19 -0
  114. package/src/components/ButtonsWithSdaiaTouch/index.ts +6 -0
  115. package/src/components/CLAUDE.md +212 -0
  116. package/src/components/CalendarHeader/CalendarHeader.tsx +224 -0
  117. package/src/components/CalendarHeader/CalendarHeader.types.ts +51 -0
  118. package/src/components/CalendarHeader/CalendarHeader.variants.ts +65 -0
  119. package/src/components/CalendarHeader/index.ts +2 -0
  120. package/src/components/Card/Card.tsx +76 -0
  121. package/src/components/Card/Card.types.ts +11 -0
  122. package/src/components/Card/Card.variants.ts +30 -0
  123. package/src/components/Card/index.ts +2 -0
  124. package/src/components/CardContent/CardContent.tsx +178 -0
  125. package/src/components/CardContent/CardContent.types.ts +70 -0
  126. package/src/components/CardContent/CardContent.variants.ts +90 -0
  127. package/src/components/CardContent/index.ts +6 -0
  128. package/src/components/CardFooter/CardFooter.tsx +196 -0
  129. package/src/components/CardFooter/CardFooter.types.ts +59 -0
  130. package/src/components/CardFooter/CardFooter.variants.ts +127 -0
  131. package/src/components/CardFooter/index.ts +8 -0
  132. package/src/components/CardHeader/CardHeader.tsx +150 -0
  133. package/src/components/CardHeader/CardHeader.types.ts +42 -0
  134. package/src/components/CardHeader/CardHeader.variants.ts +72 -0
  135. package/src/components/CardHeader/index.ts +5 -0
  136. package/src/components/CardLeadingItem/CardLeadingItem.tsx +166 -0
  137. package/src/components/CardLeadingItem/CardLeadingItem.types.ts +75 -0
  138. package/src/components/CardLeadingItem/CardLeadingItem.variants.ts +66 -0
  139. package/src/components/CardLeadingItem/index.ts +6 -0
  140. package/src/components/CardMedia/CardMedia.tsx +324 -0
  141. package/src/components/CardMedia/CardMedia.types.ts +114 -0
  142. package/src/components/CardMedia/CardMedia.variants.ts +139 -0
  143. package/src/components/CardMedia/index.ts +2 -0
  144. package/src/components/Carousel/Carousel.tsx +182 -0
  145. package/src/components/Carousel/Carousel.types.ts +38 -0
  146. package/src/components/Carousel/Carousel.variants.ts +17 -0
  147. package/src/components/Carousel/index.ts +2 -0
  148. package/src/components/CarouselArrow/CarouselArrow.tsx +66 -0
  149. package/src/components/CarouselArrow/CarouselArrow.types.ts +26 -0
  150. package/src/components/CarouselArrow/CarouselArrow.variants.ts +83 -0
  151. package/src/components/CarouselArrow/index.ts +7 -0
  152. package/src/components/CarouselControlsGroup/CarouselControlsGroup.tsx +81 -0
  153. package/src/components/CarouselControlsGroup/CarouselControlsGroup.types.ts +24 -0
  154. package/src/components/CarouselControlsGroup/CarouselControlsGroup.variants.ts +60 -0
  155. package/src/components/CarouselControlsGroup/index.ts +6 -0
  156. package/src/components/CarouselImage/CarouselImage.tsx +253 -0
  157. package/src/components/CarouselImage/CarouselImage.types.ts +72 -0
  158. package/src/components/CarouselImage/CarouselImage.variants.ts +43 -0
  159. package/src/components/CarouselImage/index.ts +6 -0
  160. package/src/components/Chart/Chart.tsx +3 -0
  161. package/src/components/Chart/Chart.types.ts +2 -0
  162. package/src/components/Chart/Chart.variants.ts +2 -0
  163. package/src/components/Chart/index.ts +2 -0
  164. package/src/components/ChartBadge/ChartBadge.tsx +62 -0
  165. package/src/components/ChartBadge/ChartBadge.types.ts +27 -0
  166. package/src/components/ChartBadge/ChartBadge.variants.ts +62 -0
  167. package/src/components/ChartBadge/index.ts +2 -0
  168. package/src/components/Checkbox/Checkbox.tsx +243 -0
  169. package/src/components/Checkbox/Checkbox.types.ts +20 -0
  170. package/src/components/Checkbox/index.ts +2 -0
  171. package/src/components/CheckboxLabel/CheckboxLabel.tsx +148 -0
  172. package/src/components/CheckboxLabel/CheckboxLabel.types.ts +55 -0
  173. package/src/components/CheckboxLabel/CheckboxLabel.variants.ts +35 -0
  174. package/src/components/CheckboxLabel/index.ts +2 -0
  175. package/src/components/Chip/Chip.tsx +245 -0
  176. package/src/components/Chip/Chip.types.ts +83 -0
  177. package/src/components/Chip/Chip.variants.ts +143 -0
  178. package/src/components/Chip/index.ts +2 -0
  179. package/src/components/CircularItem/CircularItem.tsx +133 -0
  180. package/src/components/CircularItem/CircularItem.types.ts +45 -0
  181. package/src/components/CircularItem/CircularItem.variants.ts +128 -0
  182. package/src/components/CircularItem/index.ts +7 -0
  183. package/src/components/CodeSnippet/CodeSnippet.tsx +421 -0
  184. package/src/components/CodeSnippet/CodeSnippet.types.ts +99 -0
  185. package/src/components/CodeSnippet/CodeSnippet.variants.ts +76 -0
  186. package/src/components/CodeSnippet/index.ts +9 -0
  187. package/src/components/ColumnChart/ColumnChart.tsx +943 -0
  188. package/src/components/ColumnChart/ColumnChart.types.ts +98 -0
  189. package/src/components/ColumnChart/ColumnChart.variants.ts +117 -0
  190. package/src/components/ColumnChart/index.ts +9 -0
  191. package/src/components/ComplexComposition/ComplexComposition.tsx +82 -0
  192. package/src/components/ComplexComposition/ComplexComposition.types.ts +3 -0
  193. package/src/components/ComplexComposition/ComplexComposition.variants.ts +14 -0
  194. package/src/components/ComplexComposition/index.ts +2 -0
  195. package/src/components/ContentSwitcher/ContentSwitcher.tsx +104 -0
  196. package/src/components/ContentSwitcher/ContentSwitcher.types.ts +28 -0
  197. package/src/components/ContentSwitcher/ContentSwitcher.variants.ts +70 -0
  198. package/src/components/ContentSwitcher/index.ts +6 -0
  199. package/src/components/ContentSwitcherItem/ContentSwitcherItem.tsx +56 -0
  200. package/src/components/ContentSwitcherItem/ContentSwitcherItem.types.ts +14 -0
  201. package/src/components/ContentSwitcherItem/ContentSwitcherItem.variants.ts +65 -0
  202. package/src/components/ContentSwitcherItem/index.ts +6 -0
  203. package/src/components/ContextMenu/ContextMenu.tsx +101 -0
  204. package/src/components/ContextMenu/ContextMenu.types.ts +64 -0
  205. package/src/components/ContextMenu/ContextMenu.variants.ts +36 -0
  206. package/src/components/ContextMenu/index.ts +7 -0
  207. package/src/components/ContextMenuDropdown/ContextMenuDropdown.tsx +370 -0
  208. package/src/components/ContextMenuDropdown/ContextMenuDropdown.types.ts +89 -0
  209. package/src/components/ContextMenuDropdown/ContextMenuDropdown.variants.ts +88 -0
  210. package/src/components/ContextMenuDropdown/index.ts +5 -0
  211. package/src/components/DateCell/DateCell.tsx +181 -0
  212. package/src/components/DateCell/DateCell.types.ts +53 -0
  213. package/src/components/DateCell/DateCell.variants.ts +217 -0
  214. package/src/components/DateCell/index.ts +2 -0
  215. package/src/components/DatePicker/DatePicker.tsx +923 -0
  216. package/src/components/DatePicker/DatePicker.types.ts +102 -0
  217. package/src/components/DatePicker/DatePicker.variants.ts +274 -0
  218. package/src/components/DatePicker/index.ts +9 -0
  219. package/src/components/DateTab/DateTab.tsx +91 -0
  220. package/src/components/DateTab/DateTab.types.ts +9 -0
  221. package/src/components/DateTab/DateTab.variants.ts +98 -0
  222. package/src/components/DateTab/index.ts +2 -0
  223. package/src/components/DgaIcon/DgaIcon.tsx +68 -0
  224. package/src/components/DgaIcon/DgaIcon.types.ts +57 -0
  225. package/src/components/DgaIcon/DgaIcon.variants.ts +41 -0
  226. package/src/components/DgaIcon/DgaIconByName.tsx +76 -0
  227. package/src/components/DgaIcon/generated/icon-names.ts +4388 -0
  228. package/src/components/DgaIcon/index.ts +12 -0
  229. package/src/components/DgaIcon/lib/decodeDataUrl.ts +46 -0
  230. package/src/components/DigitalStamp/DigitalStamp.tsx +236 -0
  231. package/src/components/DigitalStamp/DigitalStamp.types.ts +38 -0
  232. package/src/components/DigitalStamp/DigitalStamp.variants.ts +185 -0
  233. package/src/components/DigitalStamp/index.ts +2 -0
  234. package/src/components/Divider/Divider.tsx +83 -0
  235. package/src/components/Divider/Divider.types.ts +49 -0
  236. package/src/components/Divider/Divider.variants.ts +55 -0
  237. package/src/components/Divider/index.ts +8 -0
  238. package/src/components/DonutChart/DonutChart.tsx +251 -0
  239. package/src/components/DonutChart/DonutChart.types.ts +97 -0
  240. package/src/components/DonutChart/DonutChart.variants.ts +203 -0
  241. package/src/components/DonutChart/index.ts +7 -0
  242. package/src/components/DonutChartPanel/DonutChartPanel.tsx +778 -0
  243. package/src/components/DonutChartPanel/DonutChartPanel.types.ts +143 -0
  244. package/src/components/DonutChartPanel/DonutChartPanel.variants.ts +154 -0
  245. package/src/components/DonutChartPanel/index.ts +9 -0
  246. package/src/components/DraggableItem/DraggableItem.tsx +228 -0
  247. package/src/components/DraggableItem/DraggableItem.types.ts +72 -0
  248. package/src/components/DraggableItem/DraggableItem.variants.ts +149 -0
  249. package/src/components/DraggableItem/index.ts +3 -0
  250. package/src/components/DraggableList/DraggableList.tsx +20 -0
  251. package/src/components/DraggableList/DraggableList.types.ts +16 -0
  252. package/src/components/DraggableList/DraggableList.variants.ts +13 -0
  253. package/src/components/DraggableList/index.ts +3 -0
  254. package/src/components/Dropdown/Dropdown.tsx +331 -0
  255. package/src/components/Dropdown/Dropdown.types.ts +108 -0
  256. package/src/components/Dropdown/Dropdown.variants.ts +73 -0
  257. package/src/components/Dropdown/index.ts +9 -0
  258. package/src/components/DropdownListHeader/DropdownListHeader.tsx +79 -0
  259. package/src/components/DropdownListHeader/DropdownListHeader.types.ts +24 -0
  260. package/src/components/DropdownListHeader/DropdownListHeader.variants.ts +65 -0
  261. package/src/components/DropdownListHeader/index.ts +2 -0
  262. package/src/components/EmptyState/EmptyState.tsx +221 -0
  263. package/src/components/EmptyState/EmptyState.types.ts +48 -0
  264. package/src/components/EmptyState/EmptyState.variants.ts +122 -0
  265. package/src/components/EmptyState/index.ts +3 -0
  266. package/src/components/Extension/Extension.tsx +240 -0
  267. package/src/components/Extension/Extension.types.ts +40 -0
  268. package/src/components/Extension/Extension.variants.ts +27 -0
  269. package/src/components/Extension/index.ts +6 -0
  270. package/src/components/Feedback/Feedback.tsx +55 -0
  271. package/src/components/Feedback/Feedback.types.ts +15 -0
  272. package/src/components/Feedback/Feedback.variants.ts +9 -0
  273. package/src/components/Feedback/index.ts +2 -0
  274. package/src/components/FeedbackOverview/FeedbackOverview.tsx +70 -0
  275. package/src/components/FeedbackOverview/FeedbackOverview.types.ts +11 -0
  276. package/src/components/FeedbackOverview/FeedbackOverview.variants.ts +17 -0
  277. package/src/components/FeedbackOverview/index.ts +2 -0
  278. package/src/components/FeedbackReaction/FeedbackReaction.tsx +81 -0
  279. package/src/components/FeedbackReaction/FeedbackReaction.types.ts +14 -0
  280. package/src/components/FeedbackReaction/FeedbackReaction.variants.ts +39 -0
  281. package/src/components/FeedbackReaction/index.ts +2 -0
  282. package/src/components/FileUploadBase/FileUploadBase.tsx +104 -0
  283. package/src/components/FileUploadBase/FileUploadBase.types.ts +48 -0
  284. package/src/components/FileUploadBase/FileUploadBase.variants.ts +51 -0
  285. package/src/components/FileUploadBase/index.ts +2 -0
  286. package/src/components/FileUploadItemBase/FileUploadItemBase.tsx +197 -0
  287. package/src/components/FileUploadItemBase/FileUploadItemBase.types.ts +58 -0
  288. package/src/components/FileUploadItemBase/FileUploadItemBase.variants.ts +67 -0
  289. package/src/components/FileUploadItemBase/index.ts +6 -0
  290. package/src/components/FileUploader/FileUploader.tsx +164 -0
  291. package/src/components/FileUploader/FileUploader.types.ts +46 -0
  292. package/src/components/FileUploader/FileUploader.variants.ts +9 -0
  293. package/src/components/FileUploader/index.ts +2 -0
  294. package/src/components/Filtration/Filtration.tsx +260 -0
  295. package/src/components/Filtration/Filtration.types.ts +95 -0
  296. package/src/components/Filtration/Filtration.variants.ts +70 -0
  297. package/src/components/Filtration/index.ts +6 -0
  298. package/src/components/FiltrationItem/FiltrationItem.tsx +200 -0
  299. package/src/components/FiltrationItem/FiltrationItem.types.ts +57 -0
  300. package/src/components/FiltrationItem/FiltrationItem.variants.ts +81 -0
  301. package/src/components/FiltrationItem/index.ts +2 -0
  302. package/src/components/FiltrationList/FiltrationList.tsx +611 -0
  303. package/src/components/FiltrationList/FiltrationList.types.ts +191 -0
  304. package/src/components/FiltrationList/FiltrationList.variants.ts +283 -0
  305. package/src/components/FiltrationList/index.ts +16 -0
  306. package/src/components/FloatingButton/FloatingButton.tsx +89 -0
  307. package/src/components/FloatingButton/FloatingButton.types.ts +29 -0
  308. package/src/components/FloatingButton/FloatingButton.variants.ts +79 -0
  309. package/src/components/FloatingButton/index.ts +6 -0
  310. package/src/components/Footer/Footer.tsx +353 -0
  311. package/src/components/Footer/Footer.types.ts +142 -0
  312. package/src/components/Footer/Footer.variants.ts +137 -0
  313. package/src/components/Footer/index.ts +11 -0
  314. package/src/components/FooterItem/FooterItem.tsx +211 -0
  315. package/src/components/FooterItem/FooterItem.types.ts +45 -0
  316. package/src/components/FooterItem/FooterItem.variants.ts +139 -0
  317. package/src/components/FooterItem/index.ts +2 -0
  318. package/src/components/FooterLinkList/FooterLinkList.tsx +140 -0
  319. package/src/components/FooterLinkList/FooterLinkList.types.ts +46 -0
  320. package/src/components/FooterLinkList/FooterLinkList.variants.ts +64 -0
  321. package/src/components/FooterLinkList/index.ts +2 -0
  322. package/src/components/GraphBase/GraphBase.tsx +598 -0
  323. package/src/components/GraphBase/GraphBase.types.ts +101 -0
  324. package/src/components/GraphBase/GraphBase.variants.ts +126 -0
  325. package/src/components/GraphBase/index.ts +7 -0
  326. package/src/components/HeaderItem/HeaderItem.tsx +206 -0
  327. package/src/components/HeaderItem/HeaderItem.types.ts +73 -0
  328. package/src/components/HeaderItem/HeaderItem.variants.ts +139 -0
  329. package/src/components/HeaderItem/index.ts +2 -0
  330. package/src/components/HelpIcon/HelpIcon.tsx +173 -0
  331. package/src/components/HelpIcon/HelpIcon.types.ts +54 -0
  332. package/src/components/HelpIcon/HelpIcon.variants.ts +79 -0
  333. package/src/components/HelpIcon/index.ts +2 -0
  334. package/src/components/HorizontalTabs/HorizontalTabs.tsx +87 -0
  335. package/src/components/HorizontalTabs/HorizontalTabs.types.ts +41 -0
  336. package/src/components/HorizontalTabs/HorizontalTabs.variants.ts +54 -0
  337. package/src/components/HorizontalTabs/index.ts +6 -0
  338. package/src/components/IllustrationInstance/IllustrationInstance.tsx +46 -0
  339. package/src/components/IllustrationInstance/IllustrationInstance.types.ts +25 -0
  340. package/src/components/IllustrationInstance/IllustrationInstance.variants.ts +19 -0
  341. package/src/components/IllustrationInstance/index.ts +3 -0
  342. package/src/components/ImagePreview/ImagePreview.tsx +170 -0
  343. package/src/components/ImagePreview/ImagePreview.types.ts +54 -0
  344. package/src/components/ImagePreview/ImagePreview.variants.ts +39 -0
  345. package/src/components/ImagePreview/index.ts +2 -0
  346. package/src/components/Input/Input.tsx +113 -0
  347. package/src/components/Input/Input.types.ts +22 -0
  348. package/src/components/Input/index.ts +2 -0
  349. package/src/components/InputPrefixSuffix/InputPrefixSuffix.tsx +91 -0
  350. package/src/components/InputPrefixSuffix/InputPrefixSuffix.types.ts +81 -0
  351. package/src/components/InputPrefixSuffix/InputPrefixSuffix.variants.ts +128 -0
  352. package/src/components/InputPrefixSuffix/index.ts +8 -0
  353. package/src/components/InputsActions/InputsActions.tsx +53 -0
  354. package/src/components/InputsActions/InputsActions.types.ts +13 -0
  355. package/src/components/InputsActions/InputsActions.variants.ts +18 -0
  356. package/src/components/InputsActions/index.ts +2 -0
  357. package/src/components/InstanceColumn/InstanceColumn.tsx +43 -0
  358. package/src/components/InstanceColumn/InstanceColumn.types.ts +18 -0
  359. package/src/components/InstanceColumn/InstanceColumn.variants.ts +11 -0
  360. package/src/components/InstanceColumn/index.ts +2 -0
  361. package/src/components/InstanceItem/InstanceItem.tsx +33 -0
  362. package/src/components/InstanceItem/InstanceItem.types.ts +11 -0
  363. package/src/components/InstanceItem/InstanceItem.variants.ts +31 -0
  364. package/src/components/InstanceItem/index.ts +2 -0
  365. package/src/components/InstanceRows/InstanceRows.tsx +41 -0
  366. package/src/components/InstanceRows/InstanceRows.types.ts +17 -0
  367. package/src/components/InstanceRows/InstanceRows.variants.ts +10 -0
  368. package/src/components/InstanceRows/index.ts +2 -0
  369. package/src/components/InstanceSlot/InstanceSlot.tsx +25 -0
  370. package/src/components/InstanceSlot/InstanceSlot.types.ts +10 -0
  371. package/src/components/InstanceSlot/InstanceSlot.variants.ts +2 -0
  372. package/src/components/InstanceSlot/index.ts +2 -0
  373. package/src/components/LineChart/LineChart.tsx +592 -0
  374. package/src/components/LineChart/LineChart.types.ts +78 -0
  375. package/src/components/LineChart/LineChart.variants.ts +324 -0
  376. package/src/components/LineChart/index.ts +7 -0
  377. package/src/components/Link/Link.tsx +81 -0
  378. package/src/components/Link/Link.types.ts +23 -0
  379. package/src/components/Link/Link.variants.ts +69 -0
  380. package/src/components/Link/index.ts +2 -0
  381. package/src/components/List/List.tsx +260 -0
  382. package/src/components/List/List.types.ts +70 -0
  383. package/src/components/List/List.variants.ts +94 -0
  384. package/src/components/List/index.ts +5 -0
  385. package/src/components/ListGroup/ListGroup.tsx +37 -0
  386. package/src/components/ListGroup/ListGroup.types.ts +14 -0
  387. package/src/components/ListGroup/ListGroup.variants.ts +17 -0
  388. package/src/components/ListGroup/index.ts +3 -0
  389. package/src/components/LoadingIndicator/LoadingIndicator.tsx +208 -0
  390. package/src/components/LoadingIndicator/LoadingIndicator.types.ts +51 -0
  391. package/src/components/LoadingIndicator/LoadingIndicator.variants.ts +108 -0
  392. package/src/components/LoadingIndicator/index.ts +7 -0
  393. package/src/components/MediaGallery/MediaGallery.tsx +600 -0
  394. package/src/components/MediaGallery/MediaGallery.types.ts +124 -0
  395. package/src/components/MediaGallery/MediaGallery.variants.ts +116 -0
  396. package/src/components/MediaGallery/index.ts +2 -0
  397. package/src/components/MediaGrids/MediaGrids.tsx +48 -0
  398. package/src/components/MediaGrids/MediaGrids.types.ts +14 -0
  399. package/src/components/MediaGrids/MediaGrids.variants.ts +16 -0
  400. package/src/components/MediaGrids/index.ts +2 -0
  401. package/src/components/MediaViewer/MediaViewer.tsx +345 -0
  402. package/src/components/MediaViewer/MediaViewer.types.ts +59 -0
  403. package/src/components/MediaViewer/MediaViewer.variants.ts +168 -0
  404. package/src/components/MediaViewer/index.ts +2 -0
  405. package/src/components/Menu/Menu.tsx +109 -0
  406. package/src/components/Menu/Menu.types.ts +37 -0
  407. package/src/components/Menu/Menu.variants.ts +29 -0
  408. package/src/components/Menu/index.ts +2 -0
  409. package/src/components/MenuButtonItem/MenuButtonItem.tsx +280 -0
  410. package/src/components/MenuButtonItem/MenuButtonItem.types.ts +91 -0
  411. package/src/components/MenuButtonItem/MenuButtonItem.variants.ts +223 -0
  412. package/src/components/MenuButtonItem/index.ts +8 -0
  413. package/src/components/MenuItem/MenuItem.tsx +211 -0
  414. package/src/components/MenuItem/MenuItem.types.ts +40 -0
  415. package/src/components/MenuItem/MenuItem.variants.ts +48 -0
  416. package/src/components/MenuItem/index.ts +2 -0
  417. package/src/components/MenuItemGroup/MenuItemGroup.tsx +91 -0
  418. package/src/components/MenuItemGroup/MenuItemGroup.types.ts +82 -0
  419. package/src/components/MenuItemGroup/MenuItemGroup.variants.ts +33 -0
  420. package/src/components/MenuItemGroup/index.ts +2 -0
  421. package/src/components/MenuList/MenuList.tsx +44 -0
  422. package/src/components/MenuList/MenuList.types.ts +28 -0
  423. package/src/components/MenuList/MenuList.variants.ts +2 -0
  424. package/src/components/MenuList/index.ts +2 -0
  425. package/src/components/Metric/Metric.tsx +584 -0
  426. package/src/components/Metric/Metric.types.ts +77 -0
  427. package/src/components/Metric/Metric.variants.ts +175 -0
  428. package/src/components/Metric/index.ts +8 -0
  429. package/src/components/Modal/Modal.tsx +139 -0
  430. package/src/components/Modal/Modal.types.ts +55 -0
  431. package/src/components/Modal/index.ts +2 -0
  432. package/src/components/ModalActions/ModalActions.tsx +176 -0
  433. package/src/components/ModalActions/ModalActions.types.ts +31 -0
  434. package/src/components/ModalActions/index.ts +2 -0
  435. package/src/components/ModalHeader/ModalHeader.tsx +207 -0
  436. package/src/components/ModalHeader/ModalHeader.types.ts +24 -0
  437. package/src/components/ModalHeader/index.ts +2 -0
  438. package/src/components/NavBar/NavBar.tsx +326 -0
  439. package/src/components/NavBar/NavBar.types.ts +78 -0
  440. package/src/components/NavBar/NavBar.variants.ts +139 -0
  441. package/src/components/NavBar/index.ts +2 -0
  442. package/src/components/NavHeader/NavHeader.tsx +292 -0
  443. package/src/components/NavHeader/NavHeader.types.ts +145 -0
  444. package/src/components/NavHeader/NavHeader.variants.ts +178 -0
  445. package/src/components/NavHeader/index.ts +2 -0
  446. package/src/components/NavHeaderActions/NavHeaderActions.tsx +161 -0
  447. package/src/components/NavHeaderActions/NavHeaderActions.types.ts +61 -0
  448. package/src/components/NavHeaderActions/NavHeaderActions.variants.ts +58 -0
  449. package/src/components/NavHeaderActions/index.ts +2 -0
  450. package/src/components/NavHeaderDropdownItem/NavHeaderDropdownItem.tsx +243 -0
  451. package/src/components/NavHeaderDropdownItem/NavHeaderDropdownItem.types.ts +76 -0
  452. package/src/components/NavHeaderDropdownItem/NavHeaderDropdownItem.variants.ts +133 -0
  453. package/src/components/NavHeaderDropdownItem/index.ts +5 -0
  454. package/src/components/NavHeaderDropdownItemList/NavHeaderDropdownItemList.tsx +64 -0
  455. package/src/components/NavHeaderDropdownItemList/NavHeaderDropdownItemList.types.ts +55 -0
  456. package/src/components/NavHeaderDropdownItemList/NavHeaderDropdownItemList.variants.ts +47 -0
  457. package/src/components/NavHeaderDropdownItemList/index.ts +5 -0
  458. package/src/components/NavHeaderMenuButton/NavHeaderMenuButton.tsx +52 -0
  459. package/src/components/NavHeaderMenuButton/NavHeaderMenuButton.types.ts +17 -0
  460. package/src/components/NavHeaderMenuButton/NavHeaderMenuButton.variants.ts +73 -0
  461. package/src/components/NavHeaderMenuButton/index.ts +2 -0
  462. package/src/components/NavHeaderMenuCard/NavHeaderMenuCard.tsx +126 -0
  463. package/src/components/NavHeaderMenuCard/NavHeaderMenuCard.types.ts +74 -0
  464. package/src/components/NavHeaderMenuCard/NavHeaderMenuCard.variants.ts +169 -0
  465. package/src/components/NavHeaderMenuCard/index.ts +6 -0
  466. package/src/components/NavHeaderMenuItem/NavHeaderMenuItem.tsx +164 -0
  467. package/src/components/NavHeaderMenuItem/NavHeaderMenuItem.types.ts +64 -0
  468. package/src/components/NavHeaderMenuItem/NavHeaderMenuItem.variants.ts +175 -0
  469. package/src/components/NavHeaderMenuItem/index.ts +2 -0
  470. package/src/components/NavItem/NavItem.tsx +210 -0
  471. package/src/components/NavItem/NavItem.types.ts +71 -0
  472. package/src/components/NavItem/NavItem.variants.ts +61 -0
  473. package/src/components/NavItem/index.ts +2 -0
  474. package/src/components/NavLabel/NavLabel.tsx +84 -0
  475. package/src/components/NavLabel/NavLabel.types.ts +55 -0
  476. package/src/components/NavLabel/NavLabel.variants.ts +68 -0
  477. package/src/components/NavLabel/index.ts +2 -0
  478. package/src/components/NavLogoPlaceholder/NavLogoPlaceholder.tsx +101 -0
  479. package/src/components/NavLogoPlaceholder/NavLogoPlaceholder.types.ts +27 -0
  480. package/src/components/NavLogoPlaceholder/NavLogoPlaceholder.variants.ts +42 -0
  481. package/src/components/NavLogoPlaceholder/index.ts +6 -0
  482. package/src/components/NotificationBanner/NotificationBanner.tsx +256 -0
  483. package/src/components/NotificationBanner/NotificationBanner.types.ts +77 -0
  484. package/src/components/NotificationBanner/NotificationBanner.variants.ts +109 -0
  485. package/src/components/NotificationBanner/index.ts +7 -0
  486. package/src/components/NotificationPopup/NotificationPopup.tsx +147 -0
  487. package/src/components/NotificationPopup/NotificationPopup.types.ts +51 -0
  488. package/src/components/NotificationPopup/NotificationPopup.variants.ts +145 -0
  489. package/src/components/NotificationPopup/index.ts +5 -0
  490. package/src/components/Notifications/Notifications.tsx +209 -0
  491. package/src/components/Notifications/Notifications.types.ts +68 -0
  492. package/src/components/Notifications/Notifications.variants.ts +89 -0
  493. package/src/components/Notifications/index.ts +2 -0
  494. package/src/components/Number/Number.tsx +497 -0
  495. package/src/components/Number/Number.types.ts +58 -0
  496. package/src/components/Number/Number.variants.ts +94 -0
  497. package/src/components/Number/index.ts +2 -0
  498. package/src/components/NumberInput/NumberInput.tsx +265 -0
  499. package/src/components/NumberInput/NumberInput.types.ts +110 -0
  500. package/src/components/NumberInput/NumberInput.variants.ts +205 -0
  501. package/src/components/NumberInput/index.ts +6 -0
  502. package/src/components/Pagination/Pagination.tsx +393 -0
  503. package/src/components/Pagination/Pagination.types.ts +26 -0
  504. package/src/components/Pagination/Pagination.variants.ts +88 -0
  505. package/src/components/Pagination/index.ts +3 -0
  506. package/src/components/PaginationButtonGroup/PaginationButtonGroup.tsx +132 -0
  507. package/src/components/PaginationButtonGroup/PaginationButtonGroup.types.ts +20 -0
  508. package/src/components/PaginationButtonGroup/PaginationButtonGroup.variants.ts +45 -0
  509. package/src/components/PaginationButtonGroup/index.ts +8 -0
  510. package/src/components/PaginationCells/PaginationCells.tsx +105 -0
  511. package/src/components/PaginationCells/PaginationCells.types.ts +31 -0
  512. package/src/components/PaginationCells/PaginationCells.variants.ts +96 -0
  513. package/src/components/PaginationCells/index.ts +9 -0
  514. package/src/components/PdfViewer/PdfViewer.tsx +265 -0
  515. package/src/components/PdfViewer/PdfViewer.types.ts +79 -0
  516. package/src/components/PdfViewer/PdfViewer.variants.ts +105 -0
  517. package/src/components/PdfViewer/index.ts +3 -0
  518. package/src/components/PieChartPanel/PieChartPanel.tsx +889 -0
  519. package/src/components/PieChartPanel/PieChartPanel.types.ts +130 -0
  520. package/src/components/PieChartPanel/PieChartPanel.variants.ts +156 -0
  521. package/src/components/PieChartPanel/index.ts +8 -0
  522. package/src/components/Popover/Popover.tsx +398 -0
  523. package/src/components/Popover/Popover.types.ts +155 -0
  524. package/src/components/Popover/Popover.variants.ts +147 -0
  525. package/src/components/Popover/index.ts +7 -0
  526. package/src/components/ProgressBar/ProgressBar.tsx +241 -0
  527. package/src/components/ProgressBar/ProgressBar.types.ts +22 -0
  528. package/src/components/ProgressBar/ProgressBar.variants.ts +54 -0
  529. package/src/components/ProgressBar/index.ts +2 -0
  530. package/src/components/ProgressCircle/ProgressCircle.tsx +369 -0
  531. package/src/components/ProgressCircle/ProgressCircle.types.ts +26 -0
  532. package/src/components/ProgressCircle/ProgressCircle.variants.ts +88 -0
  533. package/src/components/ProgressCircle/index.ts +7 -0
  534. package/src/components/Quote/Quote.tsx +210 -0
  535. package/src/components/Quote/Quote.types.ts +73 -0
  536. package/src/components/Quote/Quote.variants.ts +106 -0
  537. package/src/components/Quote/index.ts +2 -0
  538. package/src/components/RadialStepper/RadialStepper.tsx +166 -0
  539. package/src/components/RadialStepper/RadialStepper.types.ts +77 -0
  540. package/src/components/RadialStepper/RadialStepper.variants.ts +122 -0
  541. package/src/components/RadialStepper/index.ts +7 -0
  542. package/src/components/RadioButton/RadioButton.tsx +237 -0
  543. package/src/components/RadioButton/RadioButton.types.ts +18 -0
  544. package/src/components/RadioButton/index.ts +2 -0
  545. package/src/components/RadioLabel/RadioLabel.tsx +157 -0
  546. package/src/components/RadioLabel/RadioLabel.types.ts +53 -0
  547. package/src/components/RadioLabel/RadioLabel.variants.ts +36 -0
  548. package/src/components/RadioLabel/index.ts +2 -0
  549. package/src/components/RangeSlider/RangeSlider.tsx +389 -0
  550. package/src/components/RangeSlider/RangeSlider.types.ts +38 -0
  551. package/src/components/RangeSlider/RangeSlider.variants.ts +27 -0
  552. package/src/components/RangeSlider/index.ts +2 -0
  553. package/src/components/Rating/Rating.tsx +246 -0
  554. package/src/components/Rating/Rating.types.ts +37 -0
  555. package/src/components/Rating/Rating.variants.ts +52 -0
  556. package/src/components/Rating/index.ts +8 -0
  557. package/src/components/RatingOverview/RatingOverview.tsx +170 -0
  558. package/src/components/RatingOverview/RatingOverview.types.ts +37 -0
  559. package/src/components/RatingOverview/RatingOverview.variants.ts +50 -0
  560. package/src/components/RatingOverview/index.ts +2 -0
  561. package/src/components/RatingStar/RatingStar.tsx +76 -0
  562. package/src/components/RatingStar/RatingStar.types.ts +18 -0
  563. package/src/components/RatingStar/RatingStar.variants.ts +34 -0
  564. package/src/components/RatingStar/index.ts +7 -0
  565. package/src/components/RichTextEditor/RichTextEditor.tsx +1341 -0
  566. package/src/components/RichTextEditor/RichTextEditor.types.ts +127 -0
  567. package/src/components/RichTextEditor/RichTextEditor.variants.ts +231 -0
  568. package/src/components/RichTextEditor/index.ts +6 -0
  569. package/src/components/ScatterChart/ScatterChart.tsx +164 -0
  570. package/src/components/ScatterChart/ScatterChart.types.ts +42 -0
  571. package/src/components/ScatterChart/ScatterChart.variants.ts +162 -0
  572. package/src/components/ScatterChart/index.ts +2 -0
  573. package/src/components/SdaiaLogoAnimation/BGSVG.tsx +216 -0
  574. package/src/components/SdaiaLogoAnimation/SdaiaLogoAnimation.tsx +120 -0
  575. package/src/components/SdaiaLogoAnimation/SdaiaLogoAnimation.types.ts +13 -0
  576. package/src/components/SdaiaLogoAnimation/SdaiaLogoAnimation.variants.ts +22 -0
  577. package/src/components/SdaiaLogoAnimation/index.ts +2 -0
  578. package/src/components/SdaiaTouch2dAnimation/SdaiaTouch2dAnimation.tsx +55 -0
  579. package/src/components/SdaiaTouch2dAnimation/SdaiaTouch2dAnimation.types.ts +12 -0
  580. package/src/components/SdaiaTouch2dAnimation/SdaiaTouch2dAnimation.variants.ts +28 -0
  581. package/src/components/SdaiaTouch2dAnimation/Star.tsx +82 -0
  582. package/src/components/SdaiaTouch2dAnimation/StarShape.tsx +78 -0
  583. package/src/components/SdaiaTouch2dAnimation/index.ts +6 -0
  584. package/src/components/SecondNavHeader/SecondNavHeader.tsx +80 -0
  585. package/src/components/SecondNavHeader/SecondNavHeader.types.ts +41 -0
  586. package/src/components/SecondNavHeader/SecondNavHeader.variants.ts +42 -0
  587. package/src/components/SecondNavHeader/index.ts +2 -0
  588. package/src/components/Select/Select.tsx +351 -0
  589. package/src/components/Select/Select.types.ts +102 -0
  590. package/src/components/Select/Select.variants.ts +111 -0
  591. package/src/components/Select/index.ts +2 -0
  592. package/src/components/SelectMenuItem/SelectMenuItem.tsx +132 -0
  593. package/src/components/SelectMenuItem/SelectMenuItem.types.ts +47 -0
  594. package/src/components/SelectMenuItem/SelectMenuItem.variants.ts +56 -0
  595. package/src/components/SelectMenuItem/index.ts +2 -0
  596. package/src/components/SeriesLabel/SeriesLabel.tsx +76 -0
  597. package/src/components/SeriesLabel/SeriesLabel.types.ts +27 -0
  598. package/src/components/SeriesLabel/SeriesLabel.variants.ts +84 -0
  599. package/src/components/SeriesLabel/index.ts +2 -0
  600. package/src/components/Signature/Signature.tsx +905 -0
  601. package/src/components/Signature/Signature.types.ts +68 -0
  602. package/src/components/Signature/Signature.variants.ts +115 -0
  603. package/src/components/Signature/index.ts +2 -0
  604. package/src/components/Skeleton/Skeleton.tsx +21 -0
  605. package/src/components/Skeleton/Skeleton.types.ts +15 -0
  606. package/src/components/Skeleton/Skeleton.variants.ts +14 -0
  607. package/src/components/Skeleton/index.ts +2 -0
  608. package/src/components/SkeletonAvatar/SkeletonAvatar.tsx +21 -0
  609. package/src/components/SkeletonAvatar/SkeletonAvatar.types.ts +15 -0
  610. package/src/components/SkeletonAvatar/SkeletonAvatar.variants.ts +14 -0
  611. package/src/components/SkeletonAvatar/index.ts +2 -0
  612. package/src/components/SlideoutMenu/SlideoutMenu.tsx +225 -0
  613. package/src/components/SlideoutMenu/SlideoutMenu.types.ts +39 -0
  614. package/src/components/SlideoutMenu/SlideoutMenuDivider.tsx +10 -0
  615. package/src/components/SlideoutMenu/SlideoutMenuSection.tsx +39 -0
  616. package/src/components/SlideoutMenu/index.ts +5 -0
  617. package/src/components/SlideoutMenuFooter/SlideoutMenuFooter.tsx +96 -0
  618. package/src/components/SlideoutMenuFooter/SlideoutMenuFooter.types.ts +28 -0
  619. package/src/components/SlideoutMenuFooter/SlideoutMenuFooter.variants.ts +49 -0
  620. package/src/components/SlideoutMenuFooter/index.ts +6 -0
  621. package/src/components/SlideoutMenuHeader/SlideoutMenuHeader.tsx +83 -0
  622. package/src/components/SlideoutMenuHeader/SlideoutMenuHeader.types.ts +19 -0
  623. package/src/components/SlideoutMenuHeader/SlideoutMenuHeader.variants.ts +78 -0
  624. package/src/components/SlideoutMenuHeader/index.ts +2 -0
  625. package/src/components/Slider/Slider.tsx +259 -0
  626. package/src/components/Slider/Slider.types.ts +22 -0
  627. package/src/components/Slider/Slider.variants.ts +23 -0
  628. package/src/components/Slider/index.ts +2 -0
  629. package/src/components/Sparkline/Sparkline.tsx +130 -0
  630. package/src/components/Sparkline/Sparkline.types.ts +36 -0
  631. package/src/components/Sparkline/Sparkline.variants.ts +118 -0
  632. package/src/components/Sparkline/index.ts +2 -0
  633. package/src/components/StatusDot/StatusDot.tsx +82 -0
  634. package/src/components/StatusDot/StatusDot.types.ts +35 -0
  635. package/src/components/StatusDot/StatusDot.variants.ts +66 -0
  636. package/src/components/StatusDot/index.ts +8 -0
  637. package/src/components/StructuredList/StructuredList.tsx +79 -0
  638. package/src/components/StructuredList/StructuredList.types.ts +27 -0
  639. package/src/components/StructuredList/index.ts +2 -0
  640. package/src/components/StructuredListGroup/StructuredListGroup.tsx +76 -0
  641. package/src/components/StructuredListGroup/StructuredListGroup.types.ts +27 -0
  642. package/src/components/StructuredListGroup/StructuredListGroup.variants.ts +14 -0
  643. package/src/components/StructuredListGroup/index.ts +5 -0
  644. package/src/components/StructuredListHeader/StructuredListHeader.tsx +98 -0
  645. package/src/components/StructuredListHeader/StructuredListHeader.types.ts +26 -0
  646. package/src/components/StructuredListHeader/StructuredListHeader.variants.ts +24 -0
  647. package/src/components/StructuredListHeader/index.ts +5 -0
  648. package/src/components/StructuredListRow/StructuredListRow.tsx +144 -0
  649. package/src/components/StructuredListRow/StructuredListRow.types.ts +37 -0
  650. package/src/components/StructuredListRow/StructuredListRow.variants.ts +53 -0
  651. package/src/components/StructuredListRow/index.ts +6 -0
  652. package/src/components/SubHeaderItem/SubHeaderItem.tsx +37 -0
  653. package/src/components/SubHeaderItem/SubHeaderItem.types.ts +20 -0
  654. package/src/components/SubHeaderItem/SubHeaderItem.variants.ts +23 -0
  655. package/src/components/SubHeaderItem/index.ts +2 -0
  656. package/src/components/Switch/Switch.tsx +138 -0
  657. package/src/components/Switch/Switch.types.ts +18 -0
  658. package/src/components/Switch/Switch.variants.ts +49 -0
  659. package/src/components/Switch/index.ts +2 -0
  660. package/src/components/SwitchLabel/SwitchLabel.tsx +114 -0
  661. package/src/components/SwitchLabel/SwitchLabel.types.ts +27 -0
  662. package/src/components/SwitchLabel/SwitchLabel.variants.ts +28 -0
  663. package/src/components/SwitchLabel/index.ts +2 -0
  664. package/src/components/Tab/Tab.tsx +92 -0
  665. package/src/components/Tab/Tab.types.ts +34 -0
  666. package/src/components/Tab/Tab.variants.ts +79 -0
  667. package/src/components/Tab/index.ts +2 -0
  668. package/src/components/Table/Table.tsx +353 -0
  669. package/src/components/Table/Table.types.ts +80 -0
  670. package/src/components/Table/Table.variants.ts +110 -0
  671. package/src/components/Table/index.ts +10 -0
  672. package/src/components/TableOfContent/TableOfContent.tsx +33 -0
  673. package/src/components/TableOfContent/TableOfContent.types.ts +15 -0
  674. package/src/components/TableOfContent/TableOfContent.variants.ts +27 -0
  675. package/src/components/TableOfContent/index.ts +2 -0
  676. package/src/components/TableOfContentItem/TableOfContentItem.tsx +85 -0
  677. package/src/components/TableOfContentItem/TableOfContentItem.types.ts +23 -0
  678. package/src/components/TableOfContentItem/TableOfContentItem.variants.ts +109 -0
  679. package/src/components/TableOfContentItem/index.ts +2 -0
  680. package/src/components/TableOfContentList/TableOfContentList.tsx +60 -0
  681. package/src/components/TableOfContentList/TableOfContentList.types.ts +39 -0
  682. package/src/components/TableOfContentList/TableOfContentList.variants.ts +6 -0
  683. package/src/components/TableOfContentList/index.ts +2 -0
  684. package/src/components/Tabs/Tabs.tsx +80 -0
  685. package/src/components/Tabs/Tabs.types.ts +36 -0
  686. package/src/components/Tabs/Tabs.variants.ts +23 -0
  687. package/src/components/Tabs/index.ts +2 -0
  688. package/src/components/Tag/Tag.tsx +114 -0
  689. package/src/components/Tag/Tag.types.ts +32 -0
  690. package/src/components/Tag/Tag.variants.ts +57 -0
  691. package/src/components/Tag/index.ts +2 -0
  692. package/src/components/TagCount/TagCount.tsx +45 -0
  693. package/src/components/TagCount/TagCount.types.ts +21 -0
  694. package/src/components/TagCount/TagCount.variants.ts +26 -0
  695. package/src/components/TagCount/index.ts +7 -0
  696. package/src/components/TextArea/TextArea.tsx +130 -0
  697. package/src/components/TextArea/TextArea.types.ts +20 -0
  698. package/src/components/TextArea/index.ts +2 -0
  699. package/src/components/TextInput/TextInput.tsx +568 -0
  700. package/src/components/TextInput/TextInput.types.ts +87 -0
  701. package/src/components/TextInput/TextInput.variants.ts +89 -0
  702. package/src/components/TextInput/TextInputTag.tsx +43 -0
  703. package/src/components/TextInput/TextInputTag.types.ts +14 -0
  704. package/src/components/TextInput/index.ts +4 -0
  705. package/src/components/Tooltip/Tooltip.tsx +229 -0
  706. package/src/components/Tooltip/Tooltip.types.ts +48 -0
  707. package/src/components/Tooltip/Tooltip.variants.ts +141 -0
  708. package/src/components/Tooltip/index.ts +10 -0
  709. package/src/components/TreeView/TreeView.tsx +130 -0
  710. package/src/components/TreeView/TreeView.types.ts +42 -0
  711. package/src/components/TreeView/TreeView.variants.ts +6 -0
  712. package/src/components/TreeView/index.ts +3 -0
  713. package/src/components/TreeViewItem/TreeViewItem.tsx +108 -0
  714. package/src/components/TreeViewItem/TreeViewItem.types.ts +34 -0
  715. package/src/components/TreeViewItem/TreeViewItem.variants.ts +40 -0
  716. package/src/components/TreeViewItem/index.ts +3 -0
  717. package/src/components/VerticalTabs/VerticalTabs.tsx +84 -0
  718. package/src/components/VerticalTabs/VerticalTabs.types.ts +37 -0
  719. package/src/components/VerticalTabs/VerticalTabs.variants.ts +43 -0
  720. package/src/components/VerticalTabs/index.ts +6 -0
  721. package/src/components/VideoPlayer/VideoPlayer.tsx +470 -0
  722. package/src/components/VideoPlayer/VideoPlayer.types.ts +59 -0
  723. package/src/components/VideoPlayer/VideoPlayer.variants.ts +134 -0
  724. package/src/components/VideoPlayer/index.ts +2 -0
  725. package/src/components/XAxis/XAxis.tsx +67 -0
  726. package/src/components/XAxis/XAxis.types.ts +30 -0
  727. package/src/components/XAxis/XAxis.variants.ts +77 -0
  728. package/src/components/XAxis/index.ts +2 -0
  729. package/src/components/YAxis/YAxis.tsx +78 -0
  730. package/src/components/YAxis/YAxis.types.ts +41 -0
  731. package/src/components/YAxis/YAxis.variants.ts +94 -0
  732. package/src/components/YAxis/index.ts +2 -0
  733. package/src/dga-icons.ts +18 -0
  734. package/src/hooks/usePresence.ts +73 -0
  735. package/src/icons/AIIcon.tsx +34 -0
  736. package/src/icons/AaIcon.tsx +34 -0
  737. package/src/icons/AlertCircle02Icon.tsx +28 -0
  738. package/src/icons/AlertCircleIcon.tsx +29 -0
  739. package/src/icons/AlertCircleSVG.tsx +19 -0
  740. package/src/icons/AlertCircleWarningIcon.tsx +37 -0
  741. package/src/icons/AlertTriangleIcon.tsx +27 -0
  742. package/src/icons/AlignCenterIcon.tsx +31 -0
  743. package/src/icons/AlignLeftIcon.tsx +31 -0
  744. package/src/icons/AlignRightIcon.tsx +31 -0
  745. package/src/icons/ArrowDownIcon.tsx +27 -0
  746. package/src/icons/ArrowDownLeft01Icon.tsx +32 -0
  747. package/src/icons/ArrowDownSVG.tsx +16 -0
  748. package/src/icons/ArrowIcon.tsx +38 -0
  749. package/src/icons/ArrowLeft01Icon.tsx +23 -0
  750. package/src/icons/ArrowLeft02SVG.tsx +19 -0
  751. package/src/icons/ArrowLeftIcon.tsx +28 -0
  752. package/src/icons/ArrowRight01Icon.tsx +23 -0
  753. package/src/icons/ArrowRight01SVG.tsx +16 -0
  754. package/src/icons/ArrowRightIcon.tsx +28 -0
  755. package/src/icons/ArrowUpIcon.tsx +27 -0
  756. package/src/icons/ArrowUpRight01Icon.tsx +31 -0
  757. package/src/icons/ArrowUpSVG.tsx +16 -0
  758. package/src/icons/AtIcon.tsx +33 -0
  759. package/src/icons/BeakBottom.tsx +13 -0
  760. package/src/icons/BeakDown.tsx +29 -0
  761. package/src/icons/BeakLeft.tsx +13 -0
  762. package/src/icons/BeakRight.tsx +11 -0
  763. package/src/icons/BeakTop.tsx +13 -0
  764. package/src/icons/BeakUp.tsx +23 -0
  765. package/src/icons/BellCircleIcon.tsx +33 -0
  766. package/src/icons/BellIcon.tsx +27 -0
  767. package/src/icons/BoldIcon.tsx +33 -0
  768. package/src/icons/CalendarIcon.tsx +35 -0
  769. package/src/icons/ChartsIcon.tsx +25 -0
  770. package/src/icons/CheckCircleIcon.tsx +29 -0
  771. package/src/icons/ChevronDownIcon.tsx +30 -0
  772. package/src/icons/ChevronDownSmIcon.tsx +34 -0
  773. package/src/icons/ChevronLeftIcon.tsx +20 -0
  774. package/src/icons/ChevronRightIcon.tsx +36 -0
  775. package/src/icons/ClearIcon.tsx +34 -0
  776. package/src/icons/ClockIcon.tsx +34 -0
  777. package/src/icons/CloseIcon.tsx +29 -0
  778. package/src/icons/CloudUploadIcon.tsx +21 -0
  779. package/src/icons/CodeSnippetChevronDownIcon.tsx +25 -0
  780. package/src/icons/CodeSnippetCopyIcon.tsx +24 -0
  781. package/src/icons/CodeSnippetStarIcon.tsx +25 -0
  782. package/src/icons/ColorSquareIcon.tsx +42 -0
  783. package/src/icons/ComponentsIcon.tsx +25 -0
  784. package/src/icons/DGALogoSVG.tsx +133 -0
  785. package/src/icons/DeleteIcon.tsx +24 -0
  786. package/src/icons/DownloadIcon.tsx +29 -0
  787. package/src/icons/DragHandleVerticalIcon.tsx +23 -0
  788. package/src/icons/FeedbackEmojiDislikeIcon.tsx +20 -0
  789. package/src/icons/FeedbackEmojiLikeIcon.tsx +20 -0
  790. package/src/icons/FeedbackEmojiNeutralIcon.tsx +20 -0
  791. package/src/icons/FeedbackThumbDislikeFilledIcon.tsx +26 -0
  792. package/src/icons/FeedbackThumbDislikeIcon.tsx +20 -0
  793. package/src/icons/FeedbackThumbLikeFilledIcon.tsx +20 -0
  794. package/src/icons/FeedbackThumbLikeIcon.tsx +20 -0
  795. package/src/icons/FileUploadItemCloseIcon.tsx +30 -0
  796. package/src/icons/FileUploadItemEmptyFileIcon.tsx +27 -0
  797. package/src/icons/FileUploadItemPdfIcon.tsx +52 -0
  798. package/src/icons/FilterFunnelIcon.tsx +34 -0
  799. package/src/icons/FilterIcon.tsx +31 -0
  800. package/src/icons/FitIcon.tsx +22 -0
  801. package/src/icons/FolderFilledIcon.tsx +25 -0
  802. package/src/icons/FolderIcon.tsx +28 -0
  803. package/src/icons/FoundationsIcon.tsx +25 -0
  804. package/src/icons/FullscreenExitIcon.tsx +71 -0
  805. package/src/icons/FullscreenIcon.tsx +70 -0
  806. package/src/icons/GoBackward10Icon.tsx +27 -0
  807. package/src/icons/GoForward10Icon.tsx +27 -0
  808. package/src/icons/GridSquaresIcon.tsx +40 -0
  809. package/src/icons/HamburgerIcon.tsx +28 -0
  810. package/src/icons/HelpCircleIcon.tsx +28 -0
  811. package/src/icons/HomeIcon.tsx +22 -0
  812. package/src/icons/HomeSVG.tsx +32 -0
  813. package/src/icons/IconFactory.ts +157 -0
  814. package/src/icons/Image01SVG.tsx +18 -0
  815. package/src/icons/ImageIcon.tsx +31 -0
  816. package/src/icons/InfoCircleIcon.tsx +31 -0
  817. package/src/icons/InfoCircleSVG.tsx +20 -0
  818. package/src/icons/InfoIcon.tsx +27 -0
  819. package/src/icons/ItalicIcon.tsx +31 -0
  820. package/src/icons/LearnMoreArrowIcon.tsx +22 -0
  821. package/src/icons/LinkCircleSVG.tsx +58 -0
  822. package/src/icons/LinkIcon.tsx +33 -0
  823. package/src/icons/ListLinesIcon.tsx +40 -0
  824. package/src/icons/LockCircleSVG.tsx +60 -0
  825. package/src/icons/LockIcon.tsx +36 -0
  826. package/src/icons/Logout02Icon.tsx +19 -0
  827. package/src/icons/MicrophoneIcon.tsx +20 -0
  828. package/src/icons/MinusIcon.tsx +40 -0
  829. package/src/icons/MoreHorizontalIcon.tsx +24 -0
  830. package/src/icons/MoreVerticalIcon.tsx +40 -0
  831. package/src/icons/NextIcon.tsx +44 -0
  832. package/src/icons/PDFSvg.tsx +39 -0
  833. package/src/icons/PatternsIcon.tsx +21 -0
  834. package/src/icons/PauseIcon.tsx +30 -0
  835. package/src/icons/PencilIcon.tsx +36 -0
  836. package/src/icons/PlayButtonCardIcon.tsx +41 -0
  837. package/src/icons/PlayCenterIcon.tsx +45 -0
  838. package/src/icons/PlayIcon.tsx +27 -0
  839. package/src/icons/PlayIconSolid.tsx +33 -0
  840. package/src/icons/PlayIconStroke.tsx +22 -0
  841. package/src/icons/PlayIconTwotone.tsx +36 -0
  842. package/src/icons/PlayVideoIcon.tsx +31 -0
  843. package/src/icons/PlusCircleIcon.tsx +41 -0
  844. package/src/icons/PlusIcon.tsx +43 -0
  845. package/src/icons/PreviousIcon.tsx +44 -0
  846. package/src/icons/PrintIcon.tsx +25 -0
  847. package/src/icons/QuestionMarkGrayBgIcon.tsx +52 -0
  848. package/src/icons/QuestionMarkIcon.tsx +47 -0
  849. package/src/icons/RedoIcon.tsx +41 -0
  850. package/src/icons/SaudiFlagSVG.tsx +31 -0
  851. package/src/icons/SdaiaNavLogo.tsx +345 -0
  852. package/src/icons/SearchIcon.tsx +34 -0
  853. package/src/icons/SettingsIcon.tsx +25 -0
  854. package/src/icons/ShareIcon.tsx +26 -0
  855. package/src/icons/SidebarCollapseIcon.tsx +25 -0
  856. package/src/icons/SmileIcon.tsx +34 -0
  857. package/src/icons/SortIcon.tsx +20 -0
  858. package/src/icons/StarIcon.tsx +38 -0
  859. package/src/icons/StatusBadgeIcon.tsx +19 -0
  860. package/src/icons/TextTIcon.tsx +33 -0
  861. package/src/icons/Tick02Icon.tsx +32 -0
  862. package/src/icons/TickIcon.tsx +33 -0
  863. package/src/icons/TrashIcon.tsx +44 -0
  864. package/src/icons/UnderlineIcon.tsx +31 -0
  865. package/src/icons/UndoIcon.tsx +31 -0
  866. package/src/icons/UploadArrowIcon.tsx +40 -0
  867. package/src/icons/UserIcon.tsx +21 -0
  868. package/src/icons/VolumeHighIcon.tsx +27 -0
  869. package/src/icons/VolumeMuteIcon.tsx +53 -0
  870. package/src/icons/XCircleIcon.tsx +32 -0
  871. package/src/icons/XIcon.tsx +27 -0
  872. package/src/icons/XIconSVG.tsx +16 -0
  873. package/src/icons/XSmallIcon.tsx +29 -0
  874. package/src/icons/XSvg.tsx +18 -0
  875. package/src/icons/ZoomInIcon.tsx +25 -0
  876. package/src/icons/index.ts +5 -0
  877. package/src/index.ts +699 -0
  878. package/src/lib/cn.ts +42 -0
  879. package/src/styles/motion.css +120 -0
  880. package/src/styles.css +242 -0
@@ -0,0 +1,31 @@
1
+ import * as React from 'react';
2
+
3
+ /**
4
+ * ProgressBar feedback icons — colocated inside the package so the
5
+ * component has no dependency on the host app's `/public` folder.
6
+ * Both icons use `currentColor` so the parent's text color drives
7
+ * the stroke (in Figma the icons inherit `Icon/icon-neutral`).
8
+ */
9
+
10
+ type IconProps = React.SVGProps<SVGSVGElement>;
11
+
12
+ const base: IconProps = {
13
+ xmlns: 'http://www.w3.org/2000/svg',
14
+ width: 14,
15
+ height: 14,
16
+ viewBox: '0 0 14 14',
17
+ fill: 'none',
18
+ 'aria-hidden': true,
19
+ };
20
+
21
+ export const InfoCircleIcon = (props: IconProps) => (
22
+ <svg {...base} {...props}>
23
+ <path
24
+ stroke="currentColor"
25
+ strokeLinecap="round"
26
+ strokeLinejoin="round"
27
+ strokeWidth={1.5}
28
+ d="M7.001 9.334V7m0-2.333h.006M12.835 7A5.833 5.833 0 1 1 1.168 7a5.833 5.833 0 0 1 11.667 0Z"
29
+ />
30
+ </svg>
31
+ );
@@ -0,0 +1,20 @@
1
+ import * as React from "react"
2
+ const InfoCircleSVG = (props: React.SVGProps<SVGSVGElement>) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width={14}
6
+ height={14}
7
+ viewBox="0 0 14 14"
8
+ fill="none"
9
+ {...props}
10
+ >
11
+ <path
12
+ stroke="rgba(56, 66, 80, 1)"
13
+ strokeLinecap="round"
14
+ strokeLinejoin="round"
15
+ strokeWidth={1.5}
16
+ d="M7.001 9.334V7m0-2.333h.006M12.835 7A5.833 5.833 0 1 1 1.168 7a5.833 5.833 0 0 1 11.667 0Z"
17
+ />
18
+ </svg>
19
+ )
20
+ export default InfoCircleSVG
@@ -0,0 +1,27 @@
1
+ import * as React from 'react';
2
+
3
+ /**
4
+ * Alert icons — colocated inside the package so the component has no
5
+ * dependency on the host app's `/public` folder. All icons use
6
+ * `currentColor` so state styling is controlled by the parent's text color.
7
+ */
8
+
9
+ type IconProps = React.SVGProps<SVGSVGElement>;
10
+
11
+ const base: IconProps = {
12
+ xmlns: 'http://www.w3.org/2000/svg',
13
+ width: 20,
14
+ height: 20,
15
+ viewBox: '0 0 20 20',
16
+ fill: 'none',
17
+ 'aria-hidden': true,
18
+ };
19
+
20
+ export const InfoIcon = (props: IconProps) => (
21
+ <svg {...base} {...props}>
22
+ <path
23
+ fill="currentColor"
24
+ d="M10 1.042A8.958 8.958 0 0 1 18.958 10 8.958 8.958 0 0 1 10 18.958 8.958 8.958 0 0 1 1.042 10 8.958 8.958 0 0 1 10 1.042Zm0 1.25a7.708 7.708 0 1 0 0 15.416 7.708 7.708 0 1 0 0-15.416Zm.001 9.375a.833.833 0 1 1 0 1.666h-.008a.833.833 0 0 1 0-1.666h.008ZM10 6.042c.345 0 .625.28.625.625V10a.625.625 0 1 1-1.25 0V6.667c0-.345.28-.625.625-.625Z"
25
+ />
26
+ </svg>
27
+ );
@@ -0,0 +1,31 @@
1
+ import type { SVGProps } from 'react';
2
+
3
+ /* ── 24×24 toolbar icons ────────────────────────────────────── */
4
+
5
+ /**
6
+ * Undo icon (undo-03) — 24×24 px.
7
+ * Figma: node inside Rich Text Editor 6259:88649
8
+ */
9
+
10
+ export function ItalicIcon({ className, ...props }: SVGProps<SVGSVGElement>) {
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
+ className={className}
18
+ {...props}
19
+ >
20
+ <path
21
+ d="M19 3.25C19.4142 3.25 19.75 3.58579 19.75 4C19.75 4.41421 19.4142 4.75 19 4.75H16.4639L9.21387 19.25H12C12.4142 19.25 12.75 19.5858 12.75 20C12.75 20.4142 12.4142 20.75 12 20.75H5C4.58579 20.75 4.25 20.4142 4.25 20C4.25 19.5858 4.58579 19.25 5 19.25H7.53613L14.7861 4.75H12C11.5858 4.75 11.25 4.41421 11.25 4C11.25 3.58579 11.5858 3.25 12 3.25H19Z"
22
+ fill="currentColor"
23
+ />
24
+ </svg>
25
+ );
26
+ }
27
+
28
+ /**
29
+ * Underline icon (text-underline) — 24×24 px.
30
+ * Figma: node inside Rich Text Editor 6259:88649
31
+ */
@@ -0,0 +1,22 @@
1
+ import type { SVGProps } from 'react';
2
+
3
+ /** Horizontal arrow pointing inline-end — used as the trailing icon on "Learn more" buttons. */
4
+ export function LearnMoreArrowIcon(props: SVGProps<SVGSVGElement>) {
5
+ return (
6
+ <svg
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ width="100%"
9
+ height="100%"
10
+ viewBox="0 0 20 20"
11
+ fill="none"
12
+ {...props}
13
+ >
14
+ <path
15
+ fill="currentColor"
16
+ d="M12.058 5.39a.626.626 0 0 1 .884 0l4.166 4.167a.623.623 0 0 1 .114.16c.006.014.015.027.021.04.009.02.014.042.02.062.017.057.029.117.029.179a.622.622 0 0 1-.027.169c-.007.024-.012.048-.022.071-.006.014-.014.027-.021.04a.62.62 0 0 1-.114.162l-4.166 4.167a.626.626 0 0 1-.884-.883l3.1-3.101H3.333a.625.625 0 0 1 0-1.25h11.825l-3.1-3.1a.626.626 0 0 1 0-.883Z"
17
+ />
18
+ </svg>
19
+ );
20
+ }
21
+
22
+ export default LearnMoreArrowIcon;
@@ -0,0 +1,58 @@
1
+ import * as React from "react"
2
+ const LinkCircleSVG = (props: React.SVGProps<SVGSVGElement>) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width={52}
6
+ height={52}
7
+ fill="none"
8
+ {...props}
9
+ >
10
+ <g filter="url(#a)">
11
+ <path
12
+ stroke="#067647"
13
+ d="M26 1.5c12.979 0 23.5 10.521 23.5 23.5S38.979 48.5 26 48.5 2.5 37.979 2.5 25 13.021 1.5 26 1.5Z"
14
+ shapeRendering="crispEdges"
15
+ />
16
+ <path
17
+ fill="#067647"
18
+ d="M33.468 17.598a4.314 4.314 0 0 0-6.265 0l-.714.742a.75.75 0 0 0 1.082 1.04l.713-.743a2.814 2.814 0 0 1 4.102 0c1.152 1.2 1.152 3.155 0 4.355l-3.24 3.371c-.18.187-.375.343-.581.47a2.81 2.81 0 0 1-3.52-.47 3.049 3.049 0 0 1-.405-.525.75.75 0 0 0-1.28.782c.17.277.37.54.604.782a4.31 4.31 0 0 0 5.386.71c.315-.194.61-.43.878-.71l3.24-3.37c1.71-1.78 1.71-4.655 0-6.434Z"
19
+ />
20
+ <path
21
+ fill="#067647"
22
+ d="M28.037 22.598a4.314 4.314 0 0 0-6.265 0l-3.24 3.37c-1.71 1.78-1.71 4.655 0 6.435a4.314 4.314 0 0 0 6.265 0l.714-.743a.75.75 0 0 0-1.081-1.04l-.714.743a2.814 2.814 0 0 1-4.102 0c-1.152-1.2-1.152-3.155 0-4.355l3.24-3.371a2.814 2.814 0 0 1 4.101 0c.156.162.291.339.405.525a.75.75 0 0 0 1.28-.782c-.17-.278-.37-.54-.603-.782Z"
23
+ />
24
+ </g>
25
+ <defs>
26
+ <filter
27
+ id="a"
28
+ width={52}
29
+ height={52}
30
+ x={0}
31
+ y={0}
32
+ colorInterpolationFilters="sRGB"
33
+ filterUnits="userSpaceOnUse"
34
+ >
35
+ <feFlood floodOpacity={0} result="BackgroundImageFix" />
36
+ <feColorMatrix
37
+ in="SourceAlpha"
38
+ result="hardAlpha"
39
+ values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
40
+ />
41
+ <feOffset dy={1} />
42
+ <feGaussianBlur stdDeviation={1} />
43
+ <feComposite in2="hardAlpha" operator="out" />
44
+ <feColorMatrix values="0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.05 0" />
45
+ <feBlend
46
+ in2="BackgroundImageFix"
47
+ result="effect1_dropShadow_7363_37203"
48
+ />
49
+ <feBlend
50
+ in="SourceGraphic"
51
+ in2="effect1_dropShadow_7363_37203"
52
+ result="shape"
53
+ />
54
+ </filter>
55
+ </defs>
56
+ </svg>
57
+ )
58
+ export default LinkCircleSVG
@@ -0,0 +1,33 @@
1
+ import type { SVGProps } from 'react';
2
+
3
+ /* ── 24×24 toolbar icons ────────────────────────────────────── */
4
+
5
+ /**
6
+ * Undo icon (undo-03) — 24×24 px.
7
+ * Figma: node inside Rich Text Editor 6259:88649
8
+ */
9
+
10
+ export function LinkIcon({ className, ...props }: SVGProps<SVGSVGElement>) {
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
+ className={className}
18
+ {...props}
19
+ >
20
+ <path
21
+ fillRule="evenodd"
22
+ clipRule="evenodd"
23
+ d="M6.62315 8.86045C6.91601 8.56759 7.39079 8.56766 7.68369 8.86045C7.97659 9.15335 7.97659 9.62811 7.68369 9.921L5.07432 12.5304C3.30844 14.2964 3.30837 17.1599 5.07432 18.9259C6.84027 20.6918 9.70384 20.6918 11.4698 18.9259L14.0792 16.3165C14.3721 16.0236 14.8469 16.0236 15.1397 16.3165C15.4325 16.6094 15.4326 17.0842 15.1397 17.3771L12.5304 19.9864C10.1786 22.3381 6.36551 22.3382 4.01377 19.9864C1.66204 17.6347 1.66211 13.8216 4.01377 11.4698L6.62315 8.86045ZM11.4698 4.01377C13.8216 1.66211 17.6347 1.66204 19.9864 4.01377C22.3382 6.36551 22.3381 10.1786 19.9864 12.5304L17.3771 15.1397C17.0842 15.4326 16.6094 15.4325 16.3165 15.1397C16.0236 14.8469 16.0236 14.3721 16.3165 14.0792L18.9259 11.4698C20.6918 9.70384 20.6918 6.84027 18.9259 5.07432C17.1599 3.30837 14.2964 3.30844 12.5304 5.07432L9.921 7.68369C9.62811 7.97659 9.15335 7.97659 8.86045 7.68369C8.56766 7.39079 8.56759 6.91601 8.86045 6.62315L11.4698 4.01377ZM13.9698 8.96983C14.2627 8.67693 14.7375 8.67693 15.0304 8.96983C15.3233 9.26272 15.3233 9.73748 15.0304 10.0304L10.0304 15.0304C9.73748 15.3233 9.26272 15.3233 8.96983 15.0304C8.67693 14.7375 8.67693 14.2627 8.96983 13.9698L13.9698 8.96983Z"
24
+ fill="currentColor"
25
+ />
26
+ </svg>
27
+ );
28
+ }
29
+
30
+ /**
31
+ * Image icon (image-01) — 24×24 px.
32
+ * Figma: node inside Rich Text Editor 6259:88649
33
+ */
@@ -0,0 +1,40 @@
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 ListLinesIcon(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
+ {/* Middle bar — 40 % opacity */}
20
+ <path
21
+ opacity="0.4"
22
+ fillRule="evenodd"
23
+ clipRule="evenodd"
24
+ d="M2.53168 9.32334C2.79738 9.26497 3.0942 9.25 3.4 9.25H20.6C20.9058 9.25 21.2026 9.26497 21.4683 9.32334C21.7425 9.38357 22.0291 9.49978 22.2647 9.73532C22.5002 9.97086 22.6164 10.2575 22.6767 10.5317C22.735 10.7974 22.75 11.0942 22.75 11.4V12.6C22.75 12.9058 22.735 13.2026 22.6767 13.4683C22.6164 13.7425 22.5002 14.0291 22.2647 14.2647C22.0291 14.5002 21.7425 14.6164 21.4683 14.6767C21.2026 14.735 20.9058 14.75 20.6 14.75H3.4C3.0942 14.75 2.79738 14.735 2.53168 14.6767C2.25749 14.6164 1.97086 14.5002 1.73532 14.2647C1.49978 14.0291 1.38357 13.7425 1.32334 13.4683C1.26497 13.2026 1.25 12.9058 1.25 12.6V11.4C1.25 11.0942 1.26497 10.7974 1.32334 10.5317C1.38357 10.2575 1.49978 9.97086 1.73532 9.73532C1.97086 9.49978 2.25749 9.38357 2.53168 9.32334ZM2.7884 10.8535C2.76525 10.9589 2.75 11.1267 2.75 11.4V12.6C2.75 12.8733 2.76525 13.0411 2.7884 13.1465C2.79336 13.169 2.79807 13.1859 2.80198 13.198C2.81413 13.2019 2.83095 13.2066 2.85353 13.2116C2.95892 13.2348 3.12666 13.25 3.4 13.25H20.6C20.8733 13.25 21.0411 13.2348 21.1465 13.2116C21.169 13.2066 21.1859 13.2019 21.198 13.198C21.2019 13.1859 21.2066 13.169 21.2116 13.1465C21.2348 13.0411 21.25 12.8733 21.25 12.6V11.4C21.25 11.1267 21.2348 10.9589 21.2116 10.8535C21.2066 10.831 21.2019 10.8141 21.198 10.802C21.1859 10.7981 21.169 10.7934 21.1465 10.7884C21.0411 10.7652 20.8733 10.75 20.6 10.75H3.4C3.12666 10.75 2.95892 10.7652 2.85353 10.7884C2.83095 10.7934 2.81413 10.7981 2.80198 10.802C2.79807 10.8141 2.79336 10.831 2.7884 10.8535Z"
25
+ fill="currentColor"
26
+ />
27
+ {/* Top bar and bottom bar — full opacity */}
28
+ <path
29
+ d="M20.5996 17.25C20.9054 17.25 21.203 17.2649 21.4688 17.3232C21.7428 17.3835 22.0292 17.4999 22.2646 17.7354C22.5001 17.9708 22.6165 18.2572 22.6768 18.5312C22.7351 18.797 22.75 19.0946 22.75 19.4004V20.5996C22.75 20.9054 22.7351 21.203 22.6768 21.4688C22.6165 21.7428 22.5001 22.0292 22.2646 22.2646C22.0292 22.5001 21.7428 22.6165 21.4688 22.6768C21.203 22.7351 20.9054 22.75 20.5996 22.75H3.40039C3.09459 22.75 2.79695 22.7351 2.53125 22.6768C2.25717 22.6165 1.97078 22.5001 1.73535 22.2646C1.49993 22.0292 1.3835 21.7428 1.32324 21.4688C1.26487 21.203 1.25 20.9054 1.25 20.5996V19.4004C1.25 19.0946 1.26487 18.797 1.32324 18.5312C1.3835 18.2572 1.49993 17.9708 1.73535 17.7354C1.97078 17.4999 2.25717 17.3835 2.53125 17.3232C2.79695 17.2649 3.09459 17.25 3.40039 17.25H20.5996ZM3.40039 18.75C3.1271 18.75 2.9589 18.7649 2.85352 18.7881C2.83094 18.793 2.8139 18.7978 2.80176 18.8018C2.79784 18.8139 2.79305 18.8309 2.78809 18.8535C2.76494 18.9589 2.75 19.1271 2.75 19.4004V20.5996C2.75 20.8729 2.76494 21.0411 2.78809 21.1465C2.79305 21.1691 2.79784 21.1861 2.80176 21.1982C2.8139 21.2022 2.83094 21.207 2.85352 21.2119C2.9589 21.2351 3.1271 21.25 3.40039 21.25H20.5996C20.8729 21.25 21.0411 21.2351 21.1465 21.2119C21.1691 21.207 21.1861 21.2022 21.1982 21.1982C21.2022 21.1861 21.207 21.1691 21.2119 21.1465C21.2351 21.0411 21.25 20.8729 21.25 20.5996V19.4004C21.25 19.1271 21.2351 18.9589 21.2119 18.8535C21.207 18.8309 21.2022 18.8139 21.1982 18.8018C21.1861 18.7978 21.1691 18.793 21.1465 18.7881C21.0411 18.7649 20.8729 18.75 20.5996 18.75H3.40039ZM20.5996 1.25C20.9054 1.25 21.203 1.26487 21.4688 1.32324C21.7428 1.3835 22.0292 1.49993 22.2646 1.73535C22.5001 1.97078 22.6165 2.25717 22.6768 2.53125C22.7351 2.79695 22.75 3.09459 22.75 3.40039V4.59961C22.75 4.90541 22.7351 5.20305 22.6768 5.46875C22.6165 5.74283 22.5001 6.02922 22.2646 6.26465C22.0292 6.50007 21.7428 6.6165 21.4688 6.67676C21.203 6.73513 20.9054 6.75 20.5996 6.75H3.40039C3.09459 6.75 2.79695 6.73513 2.53125 6.67676C2.25717 6.6165 1.97078 6.50007 1.73535 6.26465C1.49993 6.02922 1.3835 5.74283 1.32324 5.46875C1.26487 5.20305 1.25 4.90541 1.25 4.59961V3.40039C1.25 3.09459 1.26487 2.79695 1.32324 2.53125C1.3835 2.25717 1.49993 1.97078 1.73535 1.73535C1.97078 1.49993 2.25717 1.3835 2.53125 1.32324C2.79695 1.26487 3.09459 1.25 3.40039 1.25H20.5996ZM3.40039 2.75C3.1271 2.75 2.9589 2.76494 2.85352 2.78809C2.83094 2.79305 2.8139 2.79784 2.80176 2.80176C2.79784 2.8139 2.79305 2.83094 2.78809 2.85352C2.76494 2.9589 2.75 3.1271 2.75 3.40039V4.59961C2.75 4.8729 2.76494 5.0411 2.78809 5.14648C2.79305 5.16906 2.79784 5.1861 2.80176 5.19824C2.8139 5.20216 2.83094 5.20695 2.85352 5.21191C2.9589 5.23506 3.1271 5.25 3.40039 5.25H20.5996C20.8729 5.25 21.0411 5.23506 21.1465 5.21191C21.1691 5.20695 21.1861 5.20216 21.1982 5.19824C21.2022 5.1861 21.207 5.16906 21.2119 5.14648C21.2351 5.0411 21.25 4.8729 21.25 4.59961V3.40039C21.25 3.1271 21.2351 2.9589 21.2119 2.85352C21.207 2.83094 21.2022 2.8139 21.1982 2.80176C21.1861 2.79784 21.1691 2.79305 21.1465 2.78809C21.0411 2.76494 20.8729 2.75 20.5996 2.75H3.40039Z"
30
+ fill="currentColor"
31
+ />
32
+ </svg>
33
+ );
34
+ }
35
+
36
+ /**
37
+ * Grid-view icon — 2×2 squares.
38
+ * Top-right square rendered at 40 % opacity (Figma two-tone style).
39
+ * Used for the grid view toggle button in the desktop toolbar.
40
+ */
@@ -0,0 +1,60 @@
1
+ import * as React from "react"
2
+ const LockCircleSVG = (props: React.SVGProps<SVGSVGElement>) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width={52}
6
+ height={52}
7
+ fill="none"
8
+ {...props}
9
+ >
10
+ <g filter="url(#a)">
11
+ <path
12
+ stroke="#067647"
13
+ d="M26 1.5c12.979 0 23.5 10.521 23.5 23.5S38.979 48.5 26 48.5 2.5 37.979 2.5 25 13.021 1.5 26 1.5Z"
14
+ shapeRendering="crispEdges"
15
+ />
16
+ <path
17
+ fill="#067647"
18
+ d="M22.5 28.5a1 1 0 0 1 1-1h.009a1 1 0 1 1 0 2H23.5a1 1 0 0 1-1-1ZM27.491 28.5a1 1 0 0 1 1-1h.009a1 1 0 1 1 0 2h-.009a1 1 0 0 1-1-1Z"
19
+ />
20
+ <path
21
+ fill="#067647"
22
+ fillRule="evenodd"
23
+ d="M20.75 21.46V19.5a5.25 5.25 0 1 1 10.5 0v1.96c1.69.403 2.989 1.838 3.225 3.595.149 1.1.275 2.257.275 3.445 0 1.188-.126 2.344-.275 3.445-.271 2.017-1.942 3.61-4 3.705-1.429.066-2.88.1-4.475.1-1.596 0-3.046-.034-4.475-.1-2.058-.094-3.729-1.688-4-3.705-.149-1.1-.275-2.257-.275-3.445 0-1.188.126-2.344.274-3.445.237-1.757 1.535-3.192 3.226-3.596Zm1.5-1.96a3.75 3.75 0 1 1 7.5 0v1.82a97.432 97.432 0 0 0-3.75-.07c-1.327 0-2.553.024-3.75.07V19.5ZM26 22.75c-1.574 0-3.001.034-4.406.098-1.309.06-2.405 1.084-2.583 2.407-.145 1.08-.261 2.158-.261 3.245 0 1.087.116 2.165.261 3.245.178 1.323 1.274 2.347 2.583 2.407 1.405.064 2.832.098 4.406.098 1.574 0 3.001-.034 4.406-.098 1.309-.06 2.405-1.084 2.583-2.407.145-1.08.261-2.158.261-3.245 0-1.087-.116-2.165-.261-3.245-.178-1.323-1.274-2.346-2.583-2.407A94.654 94.654 0 0 0 26 22.75Z"
24
+ clipRule="evenodd"
25
+ />
26
+ </g>
27
+ <defs>
28
+ <filter
29
+ id="a"
30
+ width={52}
31
+ height={52}
32
+ x={0}
33
+ y={0}
34
+ colorInterpolationFilters="sRGB"
35
+ filterUnits="userSpaceOnUse"
36
+ >
37
+ <feFlood floodOpacity={0} result="BackgroundImageFix" />
38
+ <feColorMatrix
39
+ in="SourceAlpha"
40
+ result="hardAlpha"
41
+ values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
42
+ />
43
+ <feOffset dy={1} />
44
+ <feGaussianBlur stdDeviation={1} />
45
+ <feComposite in2="hardAlpha" operator="out" />
46
+ <feColorMatrix values="0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.05 0" />
47
+ <feBlend
48
+ in2="BackgroundImageFix"
49
+ result="effect1_dropShadow_7363_37215"
50
+ />
51
+ <feBlend
52
+ in="SourceGraphic"
53
+ in2="effect1_dropShadow_7363_37215"
54
+ result="shape"
55
+ />
56
+ </filter>
57
+ </defs>
58
+ </svg>
59
+ )
60
+ export default LockCircleSVG
@@ -0,0 +1,36 @@
1
+ import type { SVGProps } from 'react';
2
+
3
+ /**
4
+ * Lock icon — 24×24 px, `currentColor`.
5
+ *
6
+ * Padlock glyph used by content-verification UI (e.g. the HTTPS feature
7
+ * row in `DigitalStamp`). The raw path data lives in a 52-unit Figma
8
+ * source; we expose the glyph at 24×24 via a translated viewBox so
9
+ * consumers can size and tint it like every other IconFactory icon.
10
+ *
11
+ * Figma: Icon/icon-success — `LockCircleSVG` glyph (without the wrapper
12
+ * circle / drop shadow).
13
+ */
14
+ export function LockIcon({ className, ...props }: SVGProps<SVGSVGElement>) {
15
+ return (
16
+ <svg
17
+ xmlns="http://www.w3.org/2000/svg"
18
+ viewBox="14 12 24 24"
19
+ fill="none"
20
+ aria-hidden="true"
21
+ className={className}
22
+ {...props}
23
+ >
24
+ <path
25
+ fill="currentColor"
26
+ d="M22.5 28.5a1 1 0 0 1 1-1h.009a1 1 0 1 1 0 2H23.5a1 1 0 0 1-1-1ZM27.491 28.5a1 1 0 0 1 1-1h.009a1 1 0 1 1 0 2h-.009a1 1 0 0 1-1-1Z"
27
+ />
28
+ <path
29
+ fill="currentColor"
30
+ fillRule="evenodd"
31
+ clipRule="evenodd"
32
+ d="M20.75 21.46V19.5a5.25 5.25 0 1 1 10.5 0v1.96c1.69.403 2.989 1.838 3.225 3.595.149 1.1.275 2.257.275 3.445 0 1.188-.126 2.344-.275 3.445-.271 2.017-1.942 3.61-4 3.705-1.429.066-2.88.1-4.475.1-1.596 0-3.046-.034-4.475-.1-2.058-.094-3.729-1.688-4-3.705-.149-1.1-.275-2.257-.275-3.445 0-1.188.126-2.344.274-3.445.237-1.757 1.535-3.192 3.226-3.596Zm1.5-1.96a3.75 3.75 0 1 1 7.5 0v1.82a97.432 97.432 0 0 0-3.75-.07c-1.327 0-2.553.024-3.75.07V19.5ZM26 22.75c-1.574 0-3.001.034-4.406.098-1.309.06-2.405 1.084-2.583 2.407-.145 1.08-.261 2.158-.261 3.245 0 1.087.116 2.165.261 3.245.178 1.323 1.274 2.347 2.583 2.407 1.405.064 2.832.098 4.406.098 1.574 0 3.001-.034 4.406-.098 1.309-.06 2.405-1.084 2.583-2.407.145-1.08.261-2.158.261-3.245 0-1.087-.116-2.165-.261-3.245-.178-1.323-1.274-2.346-2.583-2.407A94.654 94.654 0 0 0 26 22.75Z"
33
+ />
34
+ </svg>
35
+ );
36
+ }
@@ -0,0 +1,19 @@
1
+ import type { SVGProps } from 'react';
2
+
3
+ const Logout02Icon = (props: SVGProps<SVGSVGElement>) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ width={20}
7
+ height={20}
8
+ fill="none"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill="#6C737F"
13
+ fillRule="evenodd"
14
+ d="M8.054 1.941a.625.625 0 0 1 .56 1.118L4.533 5.1a1.042 1.042 0 0 0-.576.931v7.94c0 .394.223.755.576.931l4.08 2.04a.625.625 0 0 1-.56 1.118l-4.078-2.04a2.293 2.293 0 0 1-1.268-2.05V6.03c0-.868.491-1.662 1.268-2.05l4.078-2.039Zm6.088 5.533a.625.625 0 0 1 .883 0l2.083 2.083a.626.626 0 0 1 0 .885l-2.083 2.083a.625.625 0 0 1-.883-.884l1.016-1.016H8.333a.625.625 0 0 1 0-1.25h6.825l-1.016-1.017a.625.625 0 0 1 0-.884Z"
15
+ clipRule="evenodd"
16
+ />
17
+ </svg>
18
+ )
19
+ export default Logout02Icon
@@ -0,0 +1,20 @@
1
+ import type { SVGProps } from 'react';
2
+
3
+ export function MicrophoneIcon(props: SVGProps<SVGSVGElement>) {
4
+ return (
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ width="100%"
8
+ height="100%"
9
+ viewBox="0 0 20 20"
10
+ fill="none"
11
+ aria-hidden="true"
12
+ {...props}
13
+ >
14
+ <path
15
+ d="M16.666 8.54297C17.011 8.54314 17.291 8.8229 17.291 9.16797C17.2908 12.9844 14.3584 16.1156 10.624 16.4326V17.709H12.082C12.4271 17.709 12.7069 17.989 12.707 18.334C12.707 18.6792 12.4272 18.959 12.082 18.959H7.91602C7.57084 18.959 7.29102 18.6792 7.29102 18.334C7.29119 17.989 7.57095 17.709 7.91602 17.709H9.37402V16.4326C5.63964 16.1156 2.7072 12.9844 2.70703 9.16797C2.70703 8.8229 2.987 8.54314 3.33203 8.54297C3.67721 8.54297 3.95703 8.82279 3.95703 9.16797C3.95721 12.5045 6.66241 15.209 9.99902 15.209C13.3356 15.209 16.0408 12.5045 16.041 9.16797C16.041 8.82279 16.3208 8.54297 16.666 8.54297ZM9.99902 1.04297C12.6453 1.04297 14.7908 3.18777 14.791 5.83398V9.16797C14.7908 11.8142 12.6453 13.959 9.99902 13.959C7.35277 13.959 5.20721 11.8142 5.20703 9.16797V5.83398C5.20721 3.18777 7.35277 1.04297 9.99902 1.04297ZM9.99902 2.29297C8.04312 2.29297 6.45721 3.87813 6.45703 5.83398V9.16797C6.45721 11.1238 8.04312 12.709 9.99902 12.709C11.7416 12.709 13.189 11.4506 13.4844 9.79297H11.666C11.3209 9.79297 11.0412 9.513 11.041 9.16797C11.041 8.82279 11.3208 8.54297 11.666 8.54297H13.541V6.45898H11.666C11.3208 6.45898 11.041 6.17916 11.041 5.83398C11.0412 5.48896 11.3209 5.20898 11.666 5.20898H13.4844C13.189 3.55133 11.7416 2.29297 9.99902 2.29297Z"
16
+ fill="currentColor"
17
+ />
18
+ </svg>
19
+ );
20
+ }
@@ -0,0 +1,40 @@
1
+ /**
2
+ * Inline SVG icons for InputPrefixSuffix.
3
+ *
4
+ * All icons:
5
+ * - Use `width="100%" height="100%"` — the wrapping span controls the size.
6
+ * - Use `currentColor` — the wrapping span's `text-*` class drives the color.
7
+ * - Have `aria-hidden="true"` — the parent button's `aria-label` provides the label.
8
+ * - Paths extracted from Figma node 5285:77926.
9
+ *
10
+ * SVG path sources:
11
+ * minus-sign → Figma node 5285:77212 (horizontal bar, 24×24 vp)
12
+ * plus-sign → Figma node 5285:77252 (cross/plus, 24×24 vp)
13
+ * unfold-more → Figma node 5285:80168 (up+down chevrons, 24×24 vp)
14
+ */
15
+
16
+ /** Minus (−) — horizontal bar, centered in a 24×24 viewport. */
17
+
18
+ export function MinusIcon({ className }: { className?: string }) {
19
+ return (
20
+ <svg
21
+ xmlns="http://www.w3.org/2000/svg"
22
+ width="100%"
23
+ height="100%"
24
+ viewBox="0 0 24 24"
25
+ fill="none"
26
+ aria-hidden="true"
27
+ className={className}
28
+ >
29
+ <path
30
+ d="M5 12h14"
31
+ stroke="currentColor"
32
+ strokeWidth="1.5"
33
+ strokeLinecap="round"
34
+ strokeLinejoin="round"
35
+ />
36
+ </svg>
37
+ );
38
+ }
39
+
40
+ /** Plus (+) — cross/plus, centered in a 24×24 viewport. */
@@ -0,0 +1,24 @@
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 MoreHorizontalIcon(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
+ <circle cx="5" cy="12" r="1.5" fill="currentColor" />
20
+ <circle cx="12" cy="12" r="1.5" fill="currentColor" />
21
+ <circle cx="19" cy="12" r="1.5" fill="currentColor" />
22
+ </svg>
23
+ );
24
+ }
@@ -0,0 +1,40 @@
1
+ import * as React from 'react';
2
+
3
+ /**
4
+ * Card icons — colocated inside the package so the component has no
5
+ * dependency on the host app's `/public` folder. All icons use
6
+ * `currentColor`.
7
+ */
8
+
9
+ type IconProps = React.SVGProps<SVGSVGElement>;
10
+
11
+ const base20: IconProps = {
12
+ xmlns: 'http://www.w3.org/2000/svg',
13
+ width: 20,
14
+ height: 20,
15
+ viewBox: '0 0 20 20',
16
+ fill: 'none',
17
+ 'aria-hidden': true,
18
+ };
19
+
20
+ const base24: IconProps = {
21
+ xmlns: 'http://www.w3.org/2000/svg',
22
+ width: 24,
23
+ height: 24,
24
+ viewBox: '0 0 24 24',
25
+ fill: 'none',
26
+ 'aria-hidden': true,
27
+ };
28
+
29
+ /* More-vertical (kebab) — used in Card header action button */
30
+
31
+ export const MoreVerticalIcon = (props: IconProps) => (
32
+ <svg {...base20} {...props}>
33
+ <path
34
+ fill="currentColor"
35
+ d="M10 4.167a1.458 1.458 0 1 1 0 2.916 1.458 1.458 0 0 1 0-2.916ZM10 8.542a1.458 1.458 0 1 1 0 2.916 1.458 1.458 0 0 1 0-2.916ZM10 12.917a1.458 1.458 0 1 1 0 2.916 1.458 1.458 0 0 1 0-2.916Z"
36
+ />
37
+ </svg>
38
+ );
39
+
40
+ /* Plus-circle — default glyph for the Featured Icon slot */
@@ -0,0 +1,44 @@
1
+ import type { SVGProps } from 'react';
2
+
3
+ /* ─────────────────────────────────────────────────────────────────
4
+ VideoPlayer/icons.tsx
5
+ Exact SVG paths provided directly from Figma by the designer.
6
+
7
+ Rules (per Component Build Guide §2b):
8
+ - width="100%" height="100%" — size controlled by wrapping span
9
+ - fill="currentColor" on all paths — inherits text colour from
10
+ parent so dark-mode, disabled states, and hover work automatically.
11
+ Figma exports use fill="#F3F4F6" (near-white); we convert to
12
+ currentColor so the component CSS colour token drives the shade.
13
+ ──────────────────────────────────────────────────────────────────── */
14
+
15
+ /**
16
+ * Large centre play button shown in the Default (paused) state.
17
+ * Figma: 48×48 px. Used in a 48×48 wrapper.
18
+ */
19
+
20
+ export function NextIcon(props: SVGProps<SVGSVGElement>) {
21
+ return (
22
+ <svg
23
+ width="100%"
24
+ height="100%"
25
+ viewBox="0 0 20 20"
26
+ fill="none"
27
+ xmlns="http://www.w3.org/2000/svg"
28
+ aria-hidden="true"
29
+ {...props}
30
+ >
31
+ <path
32
+ fillRule="evenodd"
33
+ clipRule="evenodd"
34
+ d="M16.5596 2.5C17.0197 2.5 17.3924 2.87292 17.3926 3.33301V16.667C17.3924 17.1271 17.0197 17.5 16.5596 17.5C16.0994 17.5 15.7267 17.1271 15.7266 16.667V3.33301C15.7267 2.87292 16.0994 2.5 16.5596 2.5ZM4.71875 3.63281C5.44789 3.40986 6.18616 3.6189 6.96289 3.99414C7.73487 4.36711 8.68133 4.97513 9.87598 5.74316L9.9502 5.79102C11.0472 6.49626 11.9195 7.0565 12.5391 7.56934C13.1694 8.09108 13.6349 8.63955 13.7842 9.35059C13.8739 9.7785 13.8739 10.2215 13.7842 10.6494C13.6349 11.3604 13.1694 11.9089 12.5391 12.4307C11.9195 12.9435 11.0472 13.5037 9.9502 14.209L9.87598 14.2568C8.68133 15.0249 7.73488 15.6329 6.96289 16.0059C6.18616 16.3811 5.44789 16.5901 4.71875 16.3672C4.28877 16.2357 3.89538 16.0046 3.56641 15.6943C3.01583 15.175 2.80162 14.4291 2.70117 13.5479C2.60107 12.6694 2.60155 11.511 2.60156 10.042V9.95801C2.60155 8.48896 2.60107 7.33064 2.70117 6.45215C2.80162 5.57094 3.01584 4.82497 3.56641 4.30566C3.89538 3.99544 4.28878 3.76429 4.71875 3.63281Z"
35
+ fill="currentColor"
36
+ />
37
+ </svg>
38
+ );
39
+ }
40
+
41
+ /**
42
+ * Volume high / speaker with arcs icon.
43
+ * Figma: 20×20 px.
44
+ */
@@ -0,0 +1,39 @@
1
+ import * as React from "react"
2
+
3
+ /**
4
+ * PDF file icon — 40 × 40.
5
+ *
6
+ * The original Figma export wrapped everything in a <g clipPath="url(#a)">
7
+ * where #a was just "M0 0h40v40H0z" (the full viewBox rectangle — a no-op).
8
+ * That generic id collides with other SVGs on the same page that also use
9
+ * id="a", causing the browser to clip the icon's content to the wrong region.
10
+ * The clip-path wrapper has been removed; visual output is identical.
11
+ */
12
+ const PDFSvg = (props: React.SVGProps<SVGSVGElement>) => (
13
+ <svg
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ width={40}
16
+ height={40}
17
+ fill="none"
18
+ {...props}
19
+ >
20
+ <path
21
+ fill="#D2D6DB"
22
+ d="M37.143 10.536a.263.263 0 0 0 0-.1.713.713 0 0 0-.15-.229l-10-10a.714.714 0 0 0-.228-.15.264.264 0 0 0-.1 0A.493.493 0 0 0 26.429 0h-20a.714.714 0 0 0-.714.714V20H3.572a.715.715 0 0 0-.715.714v12.858a.714.714 0 0 0 .715.714h2.143v5a.714.714 0 0 0 .714.714h30a.714.714 0 0 0 .714-.714V10.714a.492.492 0 0 0 0-.178Zm-10-8.1L34.707 10h-7.564V2.436ZM4.286 21.429h21.429v11.428H4.286V21.43Zm2.857 17.143v-4.286H26.43a.714.714 0 0 0 .714-.715V20.715A.714.714 0 0 0 26.43 20H7.143V1.429h18.572v9.285a.714.714 0 0 0 .714.715h9.286V38.57H7.143Z"
23
+ />
24
+ <path fill="#fff" d="M34.707 10h-7.564V2.436L34.707 10Z" />
25
+ <path
26
+ fill="#fff"
27
+ d="M35.714 11.428V38.57H7.143v-4.286h19.285a.715.715 0 0 0 .715-.714V20.713a.714.714 0 0 0-.715-.714H7.143V1.428h18.571v9.285a.714.714 0 0 0 .714.715h9.286Z"
28
+ />
29
+ <path
30
+ fill="#D92D20"
31
+ d="M2.857 21a1 1 0 0 1 1-1h22.286a1 1 0 0 1 1 1v12.286a1 1 0 0 1-1 1H3.857a1 1 0 0 1-1-1V21Z"
32
+ />
33
+ <path
34
+ fill="#fff"
35
+ d="M7.857 30v-5.714h1.9a2 2 0 0 1 1.358.414 1.728 1.728 0 0 1 .592 1.371c-.004.334-.1.66-.278.943a1.565 1.565 0 0 1-.714.629 1.907 1.907 0 0 1-.822.164h-.857V30H7.857Zm1.208-3.229h.671c.212.011.42-.06.579-.2a.716.716 0 0 0 .207-.543c0-.438-.262-.657-.786-.657h-.671v1.4ZM12.822 30v-5.714h2.143a2.271 2.271 0 0 1 1.485.485 2.856 2.856 0 0 1 1.05 2.372 3.2 3.2 0 0 1-.357 1.507 2.514 2.514 0 0 1-1 1.036 3.243 3.243 0 0 1-1.586.314h-1.735Zm1.207-1.086h.771c.275.01.546-.062.779-.207a1.808 1.808 0 0 0 .714-1.614 1.713 1.713 0 0 0-.678-1.515c-.23-.146-.5-.218-.772-.207h-.814v3.543ZM18.743 30v-5.714h3.272v1.085H19.95v1.165h1.893v1.085H19.95V30h-1.207Z"
36
+ />
37
+ </svg>
38
+ )
39
+ export default PDFSvg
@@ -0,0 +1,21 @@
1
+ import type { SVGProps } from 'react';
2
+
3
+ export function PatternsIcon(props: SVGProps<SVGSVGElement>) {
4
+ return (
5
+ <svg
6
+ width="100%"
7
+ height="100%"
8
+ viewBox="0 0 16 16"
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ {...props}
12
+ >
13
+ <path
14
+ fillRule="evenodd"
15
+ clipRule="evenodd"
16
+ d="M5.33519 6.16501C5.79052 6.16568 6.20586 6.47812 6.47386 7.02146L7.17698 8.4404C7.20432 8.49507 7.32442 8.58372 7.38109 8.59372L8.6555 8.80661C9.23609 8.90464 9.64739 9.20832 9.78538 9.63962C9.92324 10.0716 9.76349 10.5593 9.34691 10.9765L8.35569 11.9756C8.30846 12.0238 8.26586 12.1762 8.2805 12.2441L8.5637 13.4795C8.77434 14.4007 8.42642 14.8151 8.20042 14.9804C8.07978 15.0684 7.88076 15.1669 7.59886 15.167C7.35353 15.167 7.04353 15.0905 6.66819 14.8672L5.47288 14.1523C5.41364 14.117 5.25256 14.1188 5.18968 14.1552L3.9973 14.8672C3.19484 15.3469 2.69467 15.1428 2.468 14.9775C2.24071 14.8122 1.89069 14.3975 2.10179 13.4785L2.38597 12.2402C2.40063 12.1755 2.35811 12.0219 2.31077 11.9746L1.31859 10.9736C0.903451 10.555 0.744401 10.067 0.883038 9.63572C1.02177 9.20582 1.43306 8.90296 2.01097 8.80564L3.28734 8.59275C3.34254 8.58211 3.45727 8.49635 3.48362 8.44431L4.18968 7.02146C4.46099 6.4775 4.87794 6.16506 5.33323 6.16501H5.33519ZM5.33226 7.16501C5.31292 7.16768 5.20287 7.22848 5.08421 7.46579L4.38109 8.88474C4.21779 9.22066 3.82692 9.51432 3.45433 9.57907L2.17503 9.79294C1.9222 9.83548 1.84072 9.92261 1.83421 9.94236C1.82754 9.96236 1.84224 10.0838 2.02757 10.2705L3.01976 11.2705C3.30642 11.5591 3.44991 12.0602 3.36058 12.4609L3.0764 13.7021C3.0144 13.9721 3.03882 14.1177 3.05882 14.165C3.10962 14.1683 3.25198 14.1462 3.48362 14.0078L4.68089 13.2939C4.87214 13.182 5.10466 13.126 5.33519 13.1259C5.56648 13.1259 5.79729 13.1826 5.9846 13.2939L7.18089 14.0078C7.41219 14.1451 7.55565 14.169 7.60765 14.165C7.62695 14.1153 7.65025 13.969 7.58909 13.7011L7.30491 12.4638C7.21497 12.0605 7.35843 11.5598 7.64573 11.2705L8.63694 10.2705C8.82361 10.0831 8.83826 9.96333 8.83226 9.94333C8.82583 9.92365 8.74525 9.83549 8.48948 9.79294L7.21409 9.57907C6.83753 9.51509 6.44462 9.22236 6.27855 8.88181L5.5764 7.46579V7.46482C5.46077 7.23026 5.3534 7.16804 5.33226 7.16501ZM12.9797 6.31247C13.175 6.11717 13.4914 6.11722 13.6867 6.31247C13.8821 6.50781 13.8821 6.82417 13.6867 7.0195L11.6867 9.0195C11.5895 9.11661 11.462 9.16589 11.3342 9.16599H11.3332C11.2052 9.16599 11.0771 9.11751 10.9797 9.0195C10.7845 8.82423 10.7846 8.5078 10.9797 8.31247L12.9797 6.31247ZM14.3127 0.978489C14.508 0.783184 14.8254 0.78324 15.0207 0.978489C15.2161 1.17382 15.2161 1.49116 15.0207 1.6865L9.68675 7.0195C9.58954 7.11661 9.46199 7.16589 9.33421 7.16599H9.33323C9.20523 7.16599 9.07705 7.1175 8.97972 7.0195C8.78451 6.82423 8.78459 6.5078 8.97972 6.31247L14.3127 0.978489ZM10.3127 0.978489C10.508 0.783184 10.8254 0.78324 11.0207 0.978489C11.2161 1.17382 11.2161 1.49116 11.0207 1.6865L7.68675 5.0195C7.58954 5.11661 7.46199 5.16589 7.33421 5.16599H7.33323C7.20523 5.16599 7.07705 5.1175 6.97972 5.0195C6.78451 4.82423 6.78459 4.5078 6.97972 4.31247L10.3127 0.978489Z"
17
+ fill="currentColor"
18
+ />
19
+ </svg>
20
+ );
21
+ }