@fibery/ui-kit 2.0.0 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1116) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/{eslint.config.mjs → esfint.config.mjs} +1 -1
  3. package/jest.config.cjs +36 -0
  4. package/package.json +17 -54
  5. package/scripts/generate-icons.mjs +42 -34
  6. package/src/@types/css.d.ts +1 -0
  7. package/src/a11y-color.test.ts +62 -55
  8. package/src/a11y-color.ts +40 -37
  9. package/src/actions-menu/actions-menu-checkbox-item.tsx +74 -0
  10. package/src/actions-menu/actions-menu-item.tsx +1 -1
  11. package/src/actions-menu/actions-menu.tsx +3 -3
  12. package/src/actions-menu/contexts/actions-menu-context.tsx +1 -0
  13. package/src/actions-menu/index.tsx +1 -0
  14. package/src/ai/model.tsx +1 -1
  15. package/src/ai/temperature.tsx +1 -1
  16. package/src/animated-height-container.tsx +2 -2
  17. package/src/animated-number.tsx +2 -2
  18. package/src/antd/AutoComplete.d.ts +1 -0
  19. package/src/antd/{AutoComplete.js → AutoComplete.ts} +1 -1
  20. package/src/antd/Tabs.js +2 -2
  21. package/src/antd/ant-upload.tsx +4 -4
  22. package/src/antd/input-number.tsx +2 -2
  23. package/src/antd/input.tsx +2 -2
  24. package/src/antd/styles.ts +8 -8
  25. package/src/antd/utils.tsx +12 -23
  26. package/src/app-icon-with-fallback.tsx +32 -9
  27. package/src/app-icon.tsx +21 -8
  28. package/src/appIcons.json +1227 -1227
  29. package/src/avatar.tsx +50 -8
  30. package/src/axis-header.tsx +2 -2
  31. package/src/banner/banner-action.tsx +23 -0
  32. package/src/banner/banner-context.tsx +4 -0
  33. package/src/banner/banner-variant.ts +1 -0
  34. package/src/banner/banner.tsx +101 -0
  35. package/src/box.tsx +13 -18
  36. package/src/breadcrumb.tsx +14 -11
  37. package/src/button/base-button.tsx +2 -2
  38. package/src/button/make-button-colors.ts +14 -14
  39. package/src/canvas-colors.ts +133 -0
  40. package/src/card-container.tsx +1 -1
  41. package/src/checkbox-multi-select.tsx +4 -4
  42. package/src/checkbox.tsx +23 -11
  43. package/src/collapsible-section.tsx +1 -1
  44. package/src/color-filter.test.ts +155 -0
  45. package/src/color-filter.ts +156 -0
  46. package/src/color-picker/ColorPickerOrLoader.js +1 -1
  47. package/src/color-picker/{SliderPointer.js → SliderPointer.tsx} +3 -2
  48. package/src/color-picker/index.js +7 -4
  49. package/src/color-picker/swatch.tsx +5 -4
  50. package/src/color-utils.test.ts +246 -116
  51. package/src/color-utils.ts +156 -144
  52. package/src/command-menu/index.tsx +1 -1
  53. package/src/context-menu/index.tsx +4 -0
  54. package/src/date-picker/autocomplete.tsx +1 -0
  55. package/src/date-picker/date-range-picker-popup-content.tsx +1 -1
  56. package/src/date-picker/date-range-picker.tsx +2 -2
  57. package/src/date-picker/fake-date-input.tsx +10 -4
  58. package/src/date-picker/relative-date-picker.tsx +35 -3
  59. package/src/date-picker/single-date-picker.tsx +23 -12
  60. package/src/date-picker/styles.ts +12 -12
  61. package/src/date-picker/types.ts +2 -0
  62. package/src/design-system/alpha.ts +6 -12
  63. package/src/design-system/animation.ts +24 -5
  64. package/src/design-system/colors-css.test.ts +1 -9
  65. package/src/design-system/colors-css.ts +5 -5
  66. package/src/design-system/colors-js.test.ts +167 -153
  67. package/src/design-system/colors-js.ts +30 -85
  68. package/src/design-system/colors.test.ts +5 -5
  69. package/src/design-system/colors.ts +896 -540
  70. package/src/design-system/layout.ts +2 -1
  71. package/src/design-system/theme.test.ts +13 -68
  72. package/src/design-system/theme.ts +24 -73
  73. package/src/design-system/vars.test.ts +64 -1677
  74. package/src/design-system/vars.ts +43 -29
  75. package/src/design-system.ts +4 -4
  76. package/src/dnd.tsx +1 -1
  77. package/src/{utils-dom.ts → dom-utils.ts} +19 -0
  78. package/src/dot.tsx +2 -2
  79. package/src/dropdown-menu/index.tsx +4 -0
  80. package/src/emoji-picker/app-icon-picker.tsx +2 -1
  81. package/src/emoji-picker/emoji-picker-content-with-color.tsx +4 -1
  82. package/src/emoji-picker/emoji-picker.tsx +3 -0
  83. package/src/emoji-picker/icon-emoji-picker.tsx +1 -1
  84. package/src/emoji-picker/primitives/emoji.tsx +15 -2
  85. package/src/emoji-picker/primitives/grid.tsx +100 -104
  86. package/src/emoji.tsx +1 -0
  87. package/src/favorites-icon.tsx +1 -1
  88. package/src/fibermoji-placeholder.tsx +6 -1
  89. package/src/file-item/add-query-param.ts +13 -0
  90. package/src/file-item/file-menu-items.tsx +2 -1
  91. package/src/file-item/file-preview-actions.tsx +14 -2
  92. package/src/file-item.tsx +308 -265
  93. package/src/flags.ts +3 -0
  94. package/src/header-layout.tsx +9 -2
  95. package/src/html-styles.ts +3 -3
  96. package/src/hue-shift.test.ts +17 -4
  97. package/src/icons/Icon.tsx +5 -2
  98. package/src/icons/ast/Abort.ts +8 -4
  99. package/src/icons/ast/AccessTemplate.ts +8 -4
  100. package/src/icons/ast/Activity.ts +8 -4
  101. package/src/icons/ast/ActivityFilled.ts +8 -4
  102. package/src/icons/ast/ActivityLog.ts +8 -4
  103. package/src/icons/ast/Add.ts +8 -4
  104. package/src/icons/ast/AddAfter.ts +8 -4
  105. package/src/icons/ast/AddBefore.ts +8 -4
  106. package/src/icons/ast/AddCompact.ts +8 -4
  107. package/src/icons/ast/AddDatabase.ts +8 -4
  108. package/src/icons/ast/AddGroup.ts +8 -4
  109. package/src/icons/ast/AddIntegration.ts +8 -4
  110. package/src/icons/ast/AddReactions.ts +8 -4
  111. package/src/icons/ast/AiAssistant.ts +8 -4
  112. package/src/icons/ast/AiAssistantFilled.ts +8 -4
  113. package/src/icons/ast/AiAvatar.ts +8 -4
  114. package/src/icons/ast/AiFiberyBuild.ts +8 -4
  115. package/src/icons/ast/AiSearch.ts +8 -4
  116. package/src/icons/ast/AlertTriangle.ts +8 -4
  117. package/src/icons/ast/Anthropic.ts +8 -4
  118. package/src/icons/ast/App.ts +8 -4
  119. package/src/icons/ast/AppDetails.ts +8 -4
  120. package/src/icons/ast/AppStore.ts +8 -4
  121. package/src/icons/ast/AppStoreOneColor.ts +8 -4
  122. package/src/icons/ast/AppTemplates.ts +8 -4
  123. package/src/icons/ast/AppWebhooks.ts +8 -4
  124. package/src/icons/ast/AppWiki.ts +8 -4
  125. package/src/icons/ast/AppearanceAuto.ts +8 -4
  126. package/src/icons/ast/AppearanceDark.ts +8 -4
  127. package/src/icons/ast/AppearanceLight.ts +8 -4
  128. package/src/icons/ast/Apple.ts +8 -4
  129. package/src/icons/ast/ArrowBarDown.ts +12 -0
  130. package/src/icons/ast/ArrowBarLeft.ts +8 -4
  131. package/src/icons/ast/ArrowBarRight.ts +8 -4
  132. package/src/icons/ast/ArrowBarUp.ts +12 -0
  133. package/src/icons/ast/ArrowBottom.ts +8 -4
  134. package/src/icons/ast/ArrowCollapse.ts +8 -4
  135. package/src/icons/ast/ArrowCollapseVertical.ts +8 -4
  136. package/src/icons/ast/ArrowForward.ts +8 -4
  137. package/src/icons/ast/ArrowLeft.ts +8 -4
  138. package/src/icons/ast/ArrowRight.ts +8 -4
  139. package/src/icons/ast/ArrowTop.ts +8 -4
  140. package/src/icons/ast/ArrowUpCircle.ts +8 -4
  141. package/src/icons/ast/ArrowsRightLeft.ts +8 -4
  142. package/src/icons/ast/AskForInput.ts +8 -4
  143. package/src/icons/ast/Asterisk.ts +8 -4
  144. package/src/icons/ast/Atom.ts +8 -4
  145. package/src/icons/ast/AutomationsCancelled.ts +8 -4
  146. package/src/icons/ast/AutomationsDisabled.ts +8 -4
  147. package/src/icons/ast/AutomationsError.ts +8 -4
  148. package/src/icons/ast/AutomationsInProgress.ts +8 -4
  149. package/src/icons/ast/AutomationsNotStarted.ts +8 -4
  150. package/src/icons/ast/AutomationsSuccess.ts +8 -4
  151. package/src/icons/ast/Back.ts +8 -4
  152. package/src/icons/ast/BacklogIcon.ts +8 -4
  153. package/src/icons/ast/BatchActionsIcon.ts +8 -4
  154. package/src/icons/ast/BellCircle.ts +8 -4
  155. package/src/icons/ast/BellFilled.ts +8 -4
  156. package/src/icons/ast/BellOff.ts +8 -4
  157. package/src/icons/ast/BellRinging.ts +8 -4
  158. package/src/icons/ast/BellX.ts +8 -4
  159. package/src/icons/ast/Bolt.ts +8 -4
  160. package/src/icons/ast/BringForward.ts +8 -4
  161. package/src/icons/ast/BringToFront.ts +8 -4
  162. package/src/icons/ast/Cards.ts +8 -4
  163. package/src/icons/ast/Chat.ts +8 -4
  164. package/src/icons/ast/ChatAi.ts +8 -4
  165. package/src/icons/ast/ChatBubble.ts +8 -4
  166. package/src/icons/ast/ChatFloat.ts +8 -4
  167. package/src/icons/ast/ChatSidebar.ts +8 -4
  168. package/src/icons/ast/CheckCircle.ts +8 -4
  169. package/src/icons/ast/CheckCircleFilled.ts +8 -4
  170. package/src/icons/ast/Checked.ts +8 -4
  171. package/src/icons/ast/Clean.ts +8 -4
  172. package/src/icons/ast/Clear.ts +8 -4
  173. package/src/icons/ast/ClearInputFilled.ts +8 -4
  174. package/src/icons/ast/ClearValue.ts +8 -4
  175. package/src/icons/ast/Clock.ts +8 -4
  176. package/src/icons/ast/ClockAlarm.ts +8 -4
  177. package/src/icons/ast/ClockForward.ts +8 -4
  178. package/src/icons/ast/Close.ts +8 -4
  179. package/src/icons/ast/CollapseAll.ts +8 -4
  180. package/src/icons/ast/CollapseAllHorizontal.ts +8 -4
  181. package/src/icons/ast/ColorCoding.ts +8 -4
  182. package/src/icons/ast/ColorCodingFilled.ts +8 -4
  183. package/src/icons/ast/Columns.ts +8 -4
  184. package/src/icons/ast/Columns2.ts +8 -4
  185. package/src/icons/ast/Columns4.ts +8 -4
  186. package/src/icons/ast/CommentBubble.ts +8 -4
  187. package/src/icons/ast/Copy.ts +8 -4
  188. package/src/icons/ast/Create.ts +8 -4
  189. package/src/icons/ast/CreditsFilled.ts +8 -4
  190. package/src/icons/ast/CrossCircle.ts +8 -4
  191. package/src/icons/ast/Crosshair.ts +8 -4
  192. package/src/icons/ast/Csv.ts +8 -4
  193. package/src/icons/ast/Database.ts +8 -4
  194. package/src/icons/ast/DatabaseOff.ts +8 -4
  195. package/src/icons/ast/DatabaseStroke.ts +8 -4
  196. package/src/icons/ast/DateRange.ts +8 -4
  197. package/src/icons/ast/Delete.ts +8 -4
  198. package/src/icons/ast/Demo.ts +8 -4
  199. package/src/icons/ast/Dependency.ts +8 -4
  200. package/src/icons/ast/Dividers.ts +8 -4
  201. package/src/icons/ast/Document.ts +8 -4
  202. package/src/icons/ast/DoubleArrowLeft.ts +8 -4
  203. package/src/icons/ast/DoubleArrowRight.ts +8 -4
  204. package/src/icons/ast/DoubleLine.ts +8 -4
  205. package/src/icons/ast/DragBlockHandle.ts +8 -4
  206. package/src/icons/ast/DragBlockHandleSingle.ts +8 -4
  207. package/src/icons/ast/DragHandle.ts +8 -4
  208. package/src/icons/ast/Duplicate.ts +8 -4
  209. package/src/icons/ast/DynamicFilterValue.ts +8 -4
  210. package/src/icons/ast/EditValue.ts +8 -4
  211. package/src/icons/ast/Email.ts +8 -4
  212. package/src/icons/ast/EmojiDelete.ts +8 -4
  213. package/src/icons/ast/EntityCreate.ts +8 -4
  214. package/src/icons/ast/EntityCreateFilled.ts +8 -4
  215. package/src/icons/ast/EntityMerge.ts +8 -4
  216. package/src/icons/ast/Equation.ts +8 -4
  217. package/src/icons/ast/ExpandAll.ts +8 -4
  218. package/src/icons/ast/ExpandAllHorizontal.ts +8 -4
  219. package/src/icons/ast/Export.ts +8 -4
  220. package/src/icons/ast/ExtensionAssignments.ts +8 -4
  221. package/src/icons/ast/ExtensionAvatar.ts +8 -4
  222. package/src/icons/ast/ExtensionComments.ts +8 -4
  223. package/src/icons/ast/ExtensionFiles.ts +8 -4
  224. package/src/icons/ast/ExtensionReferences.ts +8 -4
  225. package/src/icons/ast/ExtensionWorkflow.ts +8 -4
  226. package/src/icons/ast/Eye.ts +8 -4
  227. package/src/icons/ast/Favorites.ts +8 -4
  228. package/src/icons/ast/FavoritesChecked.ts +8 -4
  229. package/src/icons/ast/FavoritesOff.ts +8 -4
  230. package/src/icons/ast/FiberyDesktopApp.ts +8 -4
  231. package/src/icons/ast/FiberyMono.ts +8 -4
  232. package/src/icons/ast/FieldUnit.ts +8 -4
  233. package/src/icons/ast/Fields.ts +8 -4
  234. package/src/icons/ast/Figma.ts +8 -4
  235. package/src/icons/ast/FileArchive.ts +8 -4
  236. package/src/icons/ast/FileBroken.ts +8 -4
  237. package/src/icons/ast/FileCounter.ts +8 -4
  238. package/src/icons/ast/FileDocument.ts +8 -4
  239. package/src/icons/ast/FileDownload.ts +8 -4
  240. package/src/icons/ast/FileImage.ts +8 -4
  241. package/src/icons/ast/FileMultiple.ts +8 -4
  242. package/src/icons/ast/FileOther.ts +8 -4
  243. package/src/icons/ast/FilePresentation.ts +8 -4
  244. package/src/icons/ast/FileTable.ts +8 -4
  245. package/src/icons/ast/FileUpload.ts +8 -4
  246. package/src/icons/ast/FileVideo.ts +8 -4
  247. package/src/icons/ast/Filter.ts +8 -4
  248. package/src/icons/ast/FitToScreen.ts +8 -4
  249. package/src/icons/ast/FocusMode.ts +8 -4
  250. package/src/icons/ast/FocusModeOff.ts +8 -4
  251. package/src/icons/ast/Folder.ts +8 -4
  252. package/src/icons/ast/FolderFavorite.ts +12 -0
  253. package/src/icons/ast/FormWithCover.ts +8 -4
  254. package/src/icons/ast/FormWithoutCover.ts +8 -4
  255. package/src/icons/ast/FullscreenModeOffIcon.ts +8 -4
  256. package/src/icons/ast/FullscreenModeOn.ts +8 -4
  257. package/src/icons/ast/FullscreenModeOnIcon.ts +8 -4
  258. package/src/icons/ast/Gift.ts +8 -4
  259. package/src/icons/ast/Github.ts +8 -4
  260. package/src/icons/ast/Gitlab.ts +8 -4
  261. package/src/icons/ast/Globe.ts +8 -4
  262. package/src/icons/ast/GlobeSimple.ts +8 -4
  263. package/src/icons/ast/GlobeUnpublish.ts +8 -4
  264. package/src/icons/ast/GoTo.ts +8 -4
  265. package/src/icons/ast/GoogleDrive.ts +8 -4
  266. package/src/icons/ast/GoogleMap.ts +8 -4
  267. package/src/icons/ast/GraduationCapFilled.ts +8 -4
  268. package/src/icons/ast/Headphones.ts +8 -4
  269. package/src/icons/ast/HeadphonesAi.ts +8 -4
  270. package/src/icons/ast/Hide.ts +8 -4
  271. package/src/icons/ast/Highlights.ts +8 -4
  272. package/src/icons/ast/Hint.ts +8 -4
  273. package/src/icons/ast/Home.ts +8 -4
  274. package/src/icons/ast/HomeFilled.ts +8 -4
  275. package/src/icons/ast/ImageXmark.ts +8 -4
  276. package/src/icons/ast/Import.ts +8 -4
  277. package/src/icons/ast/ImportFilled.ts +8 -4
  278. package/src/icons/ast/InfoCircle.ts +8 -4
  279. package/src/icons/ast/InfoCircleFilled.ts +8 -4
  280. package/src/icons/ast/Integration.ts +8 -4
  281. package/src/icons/ast/IntegrationsFilled.ts +8 -4
  282. package/src/icons/ast/IntegrationsIntegrationDiscourseColor.ts +8 -4
  283. package/src/icons/ast/IntegrationsIntegrationIntercomColor.ts +8 -4
  284. package/src/icons/ast/IntegrationsIntegrationSlackColor.ts +8 -4
  285. package/src/icons/ast/IntegrationsIntegrationZendeskColor.ts +8 -4
  286. package/src/icons/ast/Intercom.ts +12 -0
  287. package/src/icons/ast/InvitePeople.ts +8 -4
  288. package/src/icons/ast/Items.ts +8 -4
  289. package/src/icons/ast/ItemsTimeline.ts +8 -4
  290. package/src/icons/ast/Jira.ts +8 -4
  291. package/src/icons/ast/Key.ts +8 -4
  292. package/src/icons/ast/KeyboardHideDown.ts +8 -4
  293. package/src/icons/ast/Lab.ts +8 -4
  294. package/src/icons/ast/LayoutDouble.ts +8 -4
  295. package/src/icons/ast/LayoutMultiple.ts +8 -4
  296. package/src/icons/ast/LayoutSingle.ts +8 -4
  297. package/src/icons/ast/LeftPanel.ts +8 -4
  298. package/src/icons/ast/LevelPlus.ts +8 -4
  299. package/src/icons/ast/Levels.ts +8 -4
  300. package/src/icons/ast/LineDivider.ts +8 -4
  301. package/src/icons/ast/LineJump.ts +8 -4
  302. package/src/icons/ast/Link.ts +8 -4
  303. package/src/icons/ast/LocationEdit.ts +8 -4
  304. package/src/icons/ast/Lock.ts +8 -4
  305. package/src/icons/ast/LockOutline.ts +8 -4
  306. package/src/icons/ast/Logout.ts +8 -4
  307. package/src/icons/ast/Loom.ts +8 -4
  308. package/src/icons/ast/LoupeZoom.ts +8 -4
  309. package/src/icons/ast/LoupeZoomIn.ts +8 -4
  310. package/src/icons/ast/LoupeZoomOut.ts +8 -4
  311. package/src/icons/ast/ManyPeople.ts +8 -4
  312. package/src/icons/ast/MapMode.ts +8 -4
  313. package/src/icons/ast/Markdown.ts +8 -4
  314. package/src/icons/ast/MenuCollapser.ts +8 -4
  315. package/src/icons/ast/Mermaid.ts +8 -4
  316. package/src/icons/ast/MessagePlus.ts +8 -4
  317. package/src/icons/ast/MessagePlusSquare.ts +8 -4
  318. package/src/icons/ast/Milestones.ts +8 -4
  319. package/src/icons/ast/Minus.ts +8 -4
  320. package/src/icons/ast/Miro.ts +8 -4
  321. package/src/icons/ast/MirrorOff.ts +8 -4
  322. package/src/icons/ast/MirrorOn.ts +8 -4
  323. package/src/icons/ast/Mixpanel.ts +8 -4
  324. package/src/icons/ast/Monitor.ts +8 -4
  325. package/src/icons/ast/More.ts +8 -4
  326. package/src/icons/ast/MoreCompact.ts +8 -4
  327. package/src/icons/ast/MoveBottom.ts +8 -4
  328. package/src/icons/ast/MoveLeft.ts +8 -4
  329. package/src/icons/ast/MoveRight.ts +8 -4
  330. package/src/icons/ast/MoveSpace.ts +8 -4
  331. package/src/icons/ast/MoveTop.ts +8 -4
  332. package/src/icons/ast/Network.ts +8 -4
  333. package/src/icons/ast/NetworkAdd.ts +8 -4
  334. package/src/icons/ast/NoBorder.ts +8 -4
  335. package/src/icons/ast/NoFill.ts +8 -4
  336. package/src/icons/ast/Notifications.ts +8 -4
  337. package/src/icons/ast/ObjChild.ts +8 -4
  338. package/src/icons/ast/ObjM2M.ts +8 -4
  339. package/src/icons/ast/ObjO2O.ts +8 -4
  340. package/src/icons/ast/ObjParent.ts +8 -4
  341. package/src/icons/ast/ObjSelf.ts +8 -4
  342. package/src/icons/ast/OnSchedule.ts +8 -4
  343. package/src/icons/ast/OpenAi.ts +8 -4
  344. package/src/icons/ast/OpenAsPage.ts +8 -4
  345. package/src/icons/ast/PageRegularMode.ts +8 -4
  346. package/src/icons/ast/PageWideMode.ts +8 -4
  347. package/src/icons/ast/PanelAdd.ts +8 -4
  348. package/src/icons/ast/Pencil.ts +8 -4
  349. package/src/icons/ast/People.ts +8 -4
  350. package/src/icons/ast/PeopleCheck.ts +8 -4
  351. package/src/icons/ast/Photo.ts +8 -4
  352. package/src/icons/ast/Pin.ts +8 -4
  353. package/src/icons/ast/PinFilled.ts +8 -4
  354. package/src/icons/ast/Popup.ts +8 -4
  355. package/src/icons/ast/Posts.ts +8 -4
  356. package/src/icons/ast/PresentPlay.ts +8 -4
  357. package/src/icons/ast/PresentStop.ts +8 -4
  358. package/src/icons/ast/Print.ts +8 -4
  359. package/src/icons/ast/PrivateItems.ts +8 -4
  360. package/src/icons/ast/Question.ts +8 -4
  361. package/src/icons/ast/QuickFilter.ts +8 -4
  362. package/src/icons/ast/QuickFilterPersonal.ts +8 -4
  363. package/src/icons/ast/ReadOnly.ts +8 -4
  364. package/src/icons/ast/Refresh.ts +8 -4
  365. package/src/icons/ast/Remove.ts +8 -4
  366. package/src/icons/ast/RemovePeople.ts +8 -4
  367. package/src/icons/ast/Reply.ts +8 -4
  368. package/src/icons/ast/ResetPassword.ts +8 -4
  369. package/src/icons/ast/Restore.ts +8 -4
  370. package/src/icons/ast/RicheditorActionsMore.ts +8 -4
  371. package/src/icons/ast/RicheditorBlockCallout.ts +8 -4
  372. package/src/icons/ast/RicheditorBlockCode.ts +8 -4
  373. package/src/icons/ast/RicheditorBlockEmbed.ts +8 -4
  374. package/src/icons/ast/RicheditorBlockEntity.ts +8 -4
  375. package/src/icons/ast/RicheditorBlockFile.ts +8 -4
  376. package/src/icons/ast/RicheditorBlockH1.ts +8 -4
  377. package/src/icons/ast/RicheditorBlockH2.ts +8 -4
  378. package/src/icons/ast/RicheditorBlockH3.ts +8 -4
  379. package/src/icons/ast/RicheditorBlockH4.ts +8 -4
  380. package/src/icons/ast/RicheditorBlockMention.ts +8 -4
  381. package/src/icons/ast/RicheditorBlockParagraph.ts +8 -4
  382. package/src/icons/ast/RicheditorBlockQuote.ts +8 -4
  383. package/src/icons/ast/RicheditorChecklistCreate.ts +8 -4
  384. package/src/icons/ast/RicheditorCommentCreate.ts +8 -4
  385. package/src/icons/ast/RicheditorEntityLinkCreate.ts +8 -4
  386. package/src/icons/ast/RicheditorHistoryRedo.ts +8 -4
  387. package/src/icons/ast/RicheditorHistoryUndo.ts +8 -4
  388. package/src/icons/ast/RicheditorImageAlignCenter.ts +8 -4
  389. package/src/icons/ast/RicheditorImageAlignLeft.ts +8 -4
  390. package/src/icons/ast/RicheditorImageAlignRight.ts +8 -4
  391. package/src/icons/ast/RicheditorImageUpload.ts +8 -4
  392. package/src/icons/ast/RicheditorImageWrapCenter.ts +8 -4
  393. package/src/icons/ast/RicheditorImageWrapLeft.ts +8 -4
  394. package/src/icons/ast/RicheditorImageWrapRight.ts +8 -4
  395. package/src/icons/ast/RicheditorImageZoom.ts +8 -4
  396. package/src/icons/ast/RicheditorLinkCreate.ts +8 -4
  397. package/src/icons/ast/RicheditorLinkedhighlightCreate.ts +8 -4
  398. package/src/icons/ast/RicheditorListBullet.ts +8 -4
  399. package/src/icons/ast/RicheditorListIndent.ts +8 -4
  400. package/src/icons/ast/RicheditorListOrdered.ts +8 -4
  401. package/src/icons/ast/RicheditorListUnindent.ts +8 -4
  402. package/src/icons/ast/RicheditorMarkCode.ts +8 -4
  403. package/src/icons/ast/RicheditorMarkEm.ts +8 -4
  404. package/src/icons/ast/RicheditorMarkHighlight.ts +8 -4
  405. package/src/icons/ast/RicheditorMarkStrike.ts +8 -4
  406. package/src/icons/ast/RicheditorMarkStrong.ts +8 -4
  407. package/src/icons/ast/RicheditorMarkTextBackgroundColor.ts +8 -4
  408. package/src/icons/ast/RicheditorMarkUnderline.ts +8 -4
  409. package/src/icons/ast/RicheditorOpenLink.ts +8 -4
  410. package/src/icons/ast/RicheditorTableCreate.ts +8 -4
  411. package/src/icons/ast/RicheditorUnlink.ts +8 -4
  412. package/src/icons/ast/RicheditorVideoUpload.ts +8 -4
  413. package/src/icons/ast/RightPanel.ts +8 -4
  414. package/src/icons/ast/Rows.ts +8 -4
  415. package/src/icons/ast/RuleScheduled.ts +8 -4
  416. package/src/icons/ast/Search.ts +8 -4
  417. package/src/icons/ast/SearchAdd.ts +8 -4
  418. package/src/icons/ast/SearchFilled.ts +8 -4
  419. package/src/icons/ast/SearchRemove.ts +8 -4
  420. package/src/icons/ast/SelfReferenceOff.ts +8 -4
  421. package/src/icons/ast/SelfReferenceOn.ts +8 -4
  422. package/src/icons/ast/SendArrow.ts +8 -4
  423. package/src/icons/ast/SendBackward.ts +8 -4
  424. package/src/icons/ast/SendToBack.ts +8 -4
  425. package/src/icons/ast/Settings.ts +8 -4
  426. package/src/icons/ast/SettingsFilled.ts +8 -4
  427. package/src/icons/ast/SettingsOff.ts +8 -4
  428. package/src/icons/ast/Share.ts +8 -4
  429. package/src/icons/ast/Shared.ts +8 -4
  430. package/src/icons/ast/ShieldKeyhole.ts +8 -4
  431. package/src/icons/ast/ShowAuthor.ts +8 -4
  432. package/src/icons/ast/Sidebar.ts +8 -4
  433. package/src/icons/ast/SidebarFields.ts +8 -4
  434. package/src/icons/ast/SidebarFieldsOpened.ts +8 -4
  435. package/src/icons/ast/SimpleCompass.ts +8 -4
  436. package/src/icons/ast/Slack.ts +8 -4
  437. package/src/icons/ast/SlackIcon.ts +8 -4
  438. package/src/icons/ast/SlideMenu.ts +8 -4
  439. package/src/icons/ast/SlideMenuClose.ts +8 -4
  440. package/src/icons/ast/SlideMenuFilled.ts +8 -4
  441. package/src/icons/ast/SlideMenuOpen.ts +8 -4
  442. package/src/icons/ast/SmartFolder.ts +8 -4
  443. package/src/icons/ast/Sort.ts +8 -4
  444. package/src/icons/ast/SortOnBottom.ts +8 -4
  445. package/src/icons/ast/SortOnTop.ts +8 -4
  446. package/src/icons/ast/SpaceApp.ts +8 -4
  447. package/src/icons/ast/SpaceGenerate.ts +8 -4
  448. package/src/icons/ast/SpaceList.ts +8 -4
  449. package/src/icons/ast/SpaceScratch.ts +8 -4
  450. package/src/icons/ast/SpaceTemplate.ts +8 -4
  451. package/src/icons/ast/Spinner.ts +8 -4
  452. package/src/icons/ast/Success.ts +8 -4
  453. package/src/icons/ast/SuggestIntegration.ts +8 -4
  454. package/src/icons/ast/SwitchToMention.ts +8 -4
  455. package/src/icons/ast/SwitchToText.ts +8 -4
  456. package/src/icons/ast/SwitchToWidget.ts +8 -4
  457. package/src/icons/ast/TableLayout.ts +8 -4
  458. package/src/icons/ast/Template.ts +8 -4
  459. package/src/icons/ast/Templates.ts +8 -4
  460. package/src/icons/ast/TemplatesFilled.ts +8 -4
  461. package/src/icons/ast/Terminal.ts +8 -4
  462. package/src/icons/ast/TextNoWrap.ts +8 -4
  463. package/src/icons/ast/TextToolAlignBottom.ts +8 -4
  464. package/src/icons/ast/TextToolAlignMiddle.ts +8 -4
  465. package/src/icons/ast/TextToolAlignTop.ts +8 -4
  466. package/src/icons/ast/TextWrap.ts +8 -4
  467. package/src/icons/ast/ThumbsDown.ts +8 -4
  468. package/src/icons/ast/ThumbsUp.ts +8 -4
  469. package/src/icons/ast/Toc.ts +12 -0
  470. package/src/icons/ast/Twitter.ts +8 -4
  471. package/src/icons/ast/TypeBoolean.ts +8 -4
  472. package/src/icons/ast/TypeButton.ts +8 -4
  473. package/src/icons/ast/TypeCheckbox.ts +8 -4
  474. package/src/icons/ast/TypeDate.ts +8 -4
  475. package/src/icons/ast/TypeEmail.ts +8 -4
  476. package/src/icons/ast/TypeEmoji.ts +8 -4
  477. package/src/icons/ast/TypeFormula.ts +8 -4
  478. package/src/icons/ast/TypeFunction.ts +8 -4
  479. package/src/icons/ast/TypeId.ts +8 -4
  480. package/src/icons/ast/TypeLocation.ts +8 -4
  481. package/src/icons/ast/TypeLookup.ts +8 -4
  482. package/src/icons/ast/TypeMoney.ts +8 -4
  483. package/src/icons/ast/TypeMultiSelect.ts +8 -4
  484. package/src/icons/ast/TypeNumber.ts +8 -4
  485. package/src/icons/ast/TypePercent.ts +8 -4
  486. package/src/icons/ast/TypePhone.ts +8 -4
  487. package/src/icons/ast/TypeRelation.ts +8 -4
  488. package/src/icons/ast/TypeRichText.ts +8 -4
  489. package/src/icons/ast/TypeRule.ts +8 -4
  490. package/src/icons/ast/TypeSingleSelect.ts +8 -4
  491. package/src/icons/ast/TypeText.ts +8 -4
  492. package/src/icons/ast/TypeUrl.ts +8 -4
  493. package/src/icons/ast/UnitsAvatar.ts +8 -4
  494. package/src/icons/ast/UnitsCollection.ts +8 -4
  495. package/src/icons/ast/UnitsCounter.ts +8 -4
  496. package/src/icons/ast/UnitsDate.ts +8 -4
  497. package/src/icons/ast/UnitsDbBadgeAbbr.ts +8 -4
  498. package/src/icons/ast/UnitsDbBadgeFull.ts +8 -4
  499. package/src/icons/ast/UnitsDbIcon.ts +8 -4
  500. package/src/icons/ast/UnitsField.ts +8 -4
  501. package/src/icons/ast/UnitsFieldIconButton.ts +8 -4
  502. package/src/icons/ast/UnitsInput.ts +8 -4
  503. package/src/icons/ast/UnitsProgressBar.ts +8 -4
  504. package/src/icons/ast/UnitsRichText.ts +8 -4
  505. package/src/icons/ast/UnitsSnippet.ts +8 -4
  506. package/src/icons/ast/Unlink.ts +8 -4
  507. package/src/icons/ast/UnlockFilled.ts +8 -4
  508. package/src/icons/ast/UnlockOutline.ts +8 -4
  509. package/src/icons/ast/Upgrade.ts +8 -4
  510. package/src/icons/ast/UsbFlashDrive.ts +8 -4
  511. package/src/icons/ast/UserCheck.ts +8 -4
  512. package/src/icons/ast/UserGroup.ts +8 -4
  513. package/src/icons/ast/UserGroupRemove.ts +8 -4
  514. package/src/icons/ast/UserRole.ts +8 -4
  515. package/src/icons/ast/UserX.ts +8 -4
  516. package/src/icons/ast/ValueEdit.ts +8 -4
  517. package/src/icons/ast/ViewAi.ts +8 -4
  518. package/src/icons/ast/ViewBoard.ts +8 -4
  519. package/src/icons/ast/ViewCalendar.ts +8 -4
  520. package/src/icons/ast/ViewCanvas.ts +8 -4
  521. package/src/icons/ast/ViewChart.ts +8 -4
  522. package/src/icons/ast/ViewDashboard.ts +8 -4
  523. package/src/icons/ast/ViewDetails.ts +8 -4
  524. package/src/icons/ast/ViewDocument.ts +8 -4
  525. package/src/icons/ast/ViewEmbed.ts +12 -0
  526. package/src/icons/ast/ViewFeed.ts +8 -4
  527. package/src/icons/ast/ViewForm.ts +8 -4
  528. package/src/icons/ast/ViewGallery.ts +8 -4
  529. package/src/icons/ast/ViewGantt.ts +8 -4
  530. package/src/icons/ast/ViewList.ts +8 -4
  531. package/src/icons/ast/ViewMap.ts +8 -4
  532. package/src/icons/ast/ViewPage.ts +8 -4
  533. package/src/icons/ast/ViewTable.ts +8 -4
  534. package/src/icons/ast/ViewTimeline.ts +8 -4
  535. package/src/icons/ast/Views.ts +8 -4
  536. package/src/icons/ast/Warning.ts +8 -4
  537. package/src/icons/ast/WarningTriangle.ts +8 -4
  538. package/src/icons/ast/WarningTriangleFilled.ts +8 -4
  539. package/src/icons/ast/Webhooks.ts +12 -0
  540. package/src/icons/ast/Windows.ts +8 -4
  541. package/src/icons/ast/WorkspaceMap.ts +8 -4
  542. package/src/icons/ast/Youtube.ts +8 -4
  543. package/src/icons/ast/ZoomIn.ts +8 -4
  544. package/src/icons/ast/ZoomOut.ts +8 -4
  545. package/src/icons/ast/index.tsx +453 -441
  546. package/src/icons/react/Abort.tsx +10 -5
  547. package/src/icons/react/AccessTemplate.tsx +10 -5
  548. package/src/icons/react/Activity.tsx +10 -5
  549. package/src/icons/react/ActivityFilled.tsx +10 -5
  550. package/src/icons/react/ActivityLog.tsx +10 -5
  551. package/src/icons/react/Add.tsx +10 -5
  552. package/src/icons/react/AddAfter.tsx +10 -5
  553. package/src/icons/react/AddBefore.tsx +10 -5
  554. package/src/icons/react/AddCompact.tsx +10 -5
  555. package/src/icons/react/AddDatabase.tsx +10 -5
  556. package/src/icons/react/AddGroup.tsx +10 -5
  557. package/src/icons/react/AddIntegration.tsx +10 -5
  558. package/src/icons/react/AddReactions.tsx +10 -5
  559. package/src/icons/react/AiAssistant.tsx +10 -5
  560. package/src/icons/react/AiAssistantFilled.tsx +10 -5
  561. package/src/icons/react/AiAvatar.tsx +10 -5
  562. package/src/icons/react/AiFiberyBuild.tsx +10 -5
  563. package/src/icons/react/AiSearch.tsx +10 -5
  564. package/src/icons/react/AlertTriangle.tsx +10 -5
  565. package/src/icons/react/Anthropic.tsx +10 -5
  566. package/src/icons/react/App.tsx +10 -5
  567. package/src/icons/react/AppDetails.tsx +10 -5
  568. package/src/icons/react/AppStore.tsx +10 -5
  569. package/src/icons/react/AppStoreOneColor.tsx +10 -5
  570. package/src/icons/react/AppTemplates.tsx +10 -5
  571. package/src/icons/react/AppWebhooks.tsx +10 -5
  572. package/src/icons/react/AppWiki.tsx +10 -5
  573. package/src/icons/react/AppearanceAuto.tsx +10 -5
  574. package/src/icons/react/AppearanceDark.tsx +10 -5
  575. package/src/icons/react/AppearanceLight.tsx +10 -5
  576. package/src/icons/react/Apple.tsx +10 -5
  577. package/src/icons/react/ArrowBarDown.tsx +18 -0
  578. package/src/icons/react/ArrowBarLeft.tsx +10 -5
  579. package/src/icons/react/ArrowBarRight.tsx +10 -5
  580. package/src/icons/react/ArrowBarUp.tsx +18 -0
  581. package/src/icons/react/ArrowBottom.tsx +10 -5
  582. package/src/icons/react/ArrowCollapse.tsx +10 -5
  583. package/src/icons/react/ArrowCollapseVertical.tsx +10 -5
  584. package/src/icons/react/ArrowForward.tsx +10 -5
  585. package/src/icons/react/ArrowLeft.tsx +10 -5
  586. package/src/icons/react/ArrowRight.tsx +10 -5
  587. package/src/icons/react/ArrowTop.tsx +10 -5
  588. package/src/icons/react/ArrowUpCircle.tsx +10 -5
  589. package/src/icons/react/ArrowsRightLeft.tsx +10 -5
  590. package/src/icons/react/AskForInput.tsx +10 -5
  591. package/src/icons/react/Asterisk.tsx +10 -5
  592. package/src/icons/react/Atom.tsx +10 -5
  593. package/src/icons/react/AutomationsCancelled.tsx +10 -5
  594. package/src/icons/react/AutomationsDisabled.tsx +10 -5
  595. package/src/icons/react/AutomationsError.tsx +10 -5
  596. package/src/icons/react/AutomationsInProgress.tsx +10 -5
  597. package/src/icons/react/AutomationsNotStarted.tsx +10 -5
  598. package/src/icons/react/AutomationsSuccess.tsx +10 -5
  599. package/src/icons/react/Back.tsx +10 -5
  600. package/src/icons/react/BacklogIcon.tsx +10 -5
  601. package/src/icons/react/BatchActionsIcon.tsx +10 -5
  602. package/src/icons/react/BellCircle.tsx +10 -5
  603. package/src/icons/react/BellFilled.tsx +10 -5
  604. package/src/icons/react/BellOff.tsx +10 -5
  605. package/src/icons/react/BellRinging.tsx +10 -5
  606. package/src/icons/react/BellX.tsx +10 -5
  607. package/src/icons/react/Bolt.tsx +10 -5
  608. package/src/icons/react/BringForward.tsx +10 -5
  609. package/src/icons/react/BringToFront.tsx +10 -5
  610. package/src/icons/react/Cards.tsx +10 -5
  611. package/src/icons/react/Chat.tsx +10 -5
  612. package/src/icons/react/ChatAi.tsx +10 -5
  613. package/src/icons/react/ChatBubble.tsx +10 -5
  614. package/src/icons/react/ChatFloat.tsx +10 -5
  615. package/src/icons/react/ChatSidebar.tsx +10 -5
  616. package/src/icons/react/CheckCircle.tsx +10 -5
  617. package/src/icons/react/CheckCircleFilled.tsx +10 -5
  618. package/src/icons/react/Checked.tsx +10 -5
  619. package/src/icons/react/Clean.tsx +10 -5
  620. package/src/icons/react/Clear.tsx +10 -5
  621. package/src/icons/react/ClearInputFilled.tsx +10 -5
  622. package/src/icons/react/ClearValue.tsx +10 -5
  623. package/src/icons/react/Clock.tsx +10 -5
  624. package/src/icons/react/ClockAlarm.tsx +10 -5
  625. package/src/icons/react/ClockForward.tsx +10 -5
  626. package/src/icons/react/Close.tsx +10 -5
  627. package/src/icons/react/CollapseAll.tsx +10 -5
  628. package/src/icons/react/CollapseAllHorizontal.tsx +10 -5
  629. package/src/icons/react/ColorCoding.tsx +10 -5
  630. package/src/icons/react/ColorCodingFilled.tsx +10 -5
  631. package/src/icons/react/Columns.tsx +10 -5
  632. package/src/icons/react/Columns2.tsx +10 -5
  633. package/src/icons/react/Columns4.tsx +10 -5
  634. package/src/icons/react/CommentBubble.tsx +10 -5
  635. package/src/icons/react/Copy.tsx +10 -5
  636. package/src/icons/react/Create.tsx +10 -5
  637. package/src/icons/react/CreditsFilled.tsx +10 -5
  638. package/src/icons/react/CrossCircle.tsx +10 -5
  639. package/src/icons/react/Crosshair.tsx +10 -5
  640. package/src/icons/react/Csv.tsx +10 -5
  641. package/src/icons/react/Database.tsx +10 -5
  642. package/src/icons/react/DatabaseOff.tsx +10 -5
  643. package/src/icons/react/DatabaseStroke.tsx +10 -5
  644. package/src/icons/react/DateRange.tsx +10 -5
  645. package/src/icons/react/Delete.tsx +10 -5
  646. package/src/icons/react/Demo.tsx +10 -5
  647. package/src/icons/react/Dependency.tsx +10 -5
  648. package/src/icons/react/Dividers.tsx +10 -5
  649. package/src/icons/react/Document.tsx +10 -5
  650. package/src/icons/react/DoubleArrowLeft.tsx +10 -5
  651. package/src/icons/react/DoubleArrowRight.tsx +10 -5
  652. package/src/icons/react/DoubleLine.tsx +10 -5
  653. package/src/icons/react/DragBlockHandle.tsx +10 -5
  654. package/src/icons/react/DragBlockHandleSingle.tsx +10 -5
  655. package/src/icons/react/DragHandle.tsx +10 -5
  656. package/src/icons/react/Duplicate.tsx +10 -5
  657. package/src/icons/react/DynamicFilterValue.tsx +10 -5
  658. package/src/icons/react/EditValue.tsx +10 -5
  659. package/src/icons/react/Email.tsx +10 -5
  660. package/src/icons/react/EmojiDelete.tsx +10 -5
  661. package/src/icons/react/EntityCreate.tsx +10 -5
  662. package/src/icons/react/EntityCreateFilled.tsx +10 -5
  663. package/src/icons/react/EntityMerge.tsx +10 -5
  664. package/src/icons/react/Equation.tsx +10 -5
  665. package/src/icons/react/ExpandAll.tsx +10 -5
  666. package/src/icons/react/ExpandAllHorizontal.tsx +10 -5
  667. package/src/icons/react/Export.tsx +10 -5
  668. package/src/icons/react/ExtensionAssignments.tsx +10 -5
  669. package/src/icons/react/ExtensionAvatar.tsx +10 -5
  670. package/src/icons/react/ExtensionComments.tsx +10 -5
  671. package/src/icons/react/ExtensionFiles.tsx +10 -5
  672. package/src/icons/react/ExtensionReferences.tsx +10 -5
  673. package/src/icons/react/ExtensionWorkflow.tsx +10 -5
  674. package/src/icons/react/Eye.tsx +10 -5
  675. package/src/icons/react/Favorites.tsx +10 -5
  676. package/src/icons/react/FavoritesChecked.tsx +10 -5
  677. package/src/icons/react/FavoritesOff.tsx +10 -5
  678. package/src/icons/react/FiberyDesktopApp.tsx +10 -5
  679. package/src/icons/react/FiberyMono.tsx +10 -5
  680. package/src/icons/react/FieldUnit.tsx +10 -5
  681. package/src/icons/react/Fields.tsx +10 -5
  682. package/src/icons/react/Figma.tsx +10 -5
  683. package/src/icons/react/FileArchive.tsx +10 -5
  684. package/src/icons/react/FileBroken.tsx +10 -5
  685. package/src/icons/react/FileCounter.tsx +10 -5
  686. package/src/icons/react/FileDocument.tsx +10 -5
  687. package/src/icons/react/FileDownload.tsx +10 -5
  688. package/src/icons/react/FileImage.tsx +10 -5
  689. package/src/icons/react/FileMultiple.tsx +10 -5
  690. package/src/icons/react/FileOther.tsx +10 -5
  691. package/src/icons/react/FilePresentation.tsx +10 -5
  692. package/src/icons/react/FileTable.tsx +10 -5
  693. package/src/icons/react/FileUpload.tsx +10 -5
  694. package/src/icons/react/FileVideo.tsx +10 -5
  695. package/src/icons/react/Filter.tsx +10 -5
  696. package/src/icons/react/FitToScreen.tsx +10 -5
  697. package/src/icons/react/FocusMode.tsx +10 -5
  698. package/src/icons/react/FocusModeOff.tsx +10 -5
  699. package/src/icons/react/Folder.tsx +10 -5
  700. package/src/icons/react/FolderFavorite.tsx +18 -0
  701. package/src/icons/react/FormWithCover.tsx +10 -5
  702. package/src/icons/react/FormWithoutCover.tsx +10 -5
  703. package/src/icons/react/FullscreenModeOffIcon.tsx +10 -5
  704. package/src/icons/react/FullscreenModeOn.tsx +10 -5
  705. package/src/icons/react/FullscreenModeOnIcon.tsx +10 -5
  706. package/src/icons/react/Gift.tsx +10 -5
  707. package/src/icons/react/Github.tsx +10 -5
  708. package/src/icons/react/Gitlab.tsx +10 -5
  709. package/src/icons/react/Globe.tsx +10 -5
  710. package/src/icons/react/GlobeSimple.tsx +10 -5
  711. package/src/icons/react/GlobeUnpublish.tsx +10 -5
  712. package/src/icons/react/GoTo.tsx +10 -5
  713. package/src/icons/react/GoogleDrive.tsx +10 -5
  714. package/src/icons/react/GoogleMap.tsx +10 -5
  715. package/src/icons/react/GraduationCapFilled.tsx +10 -5
  716. package/src/icons/react/Headphones.tsx +10 -5
  717. package/src/icons/react/HeadphonesAi.tsx +10 -5
  718. package/src/icons/react/Hide.tsx +10 -5
  719. package/src/icons/react/Highlights.tsx +10 -5
  720. package/src/icons/react/Hint.tsx +10 -5
  721. package/src/icons/react/Home.tsx +10 -5
  722. package/src/icons/react/HomeFilled.tsx +10 -5
  723. package/src/icons/react/ImageXmark.tsx +10 -5
  724. package/src/icons/react/Import.tsx +10 -5
  725. package/src/icons/react/ImportFilled.tsx +10 -5
  726. package/src/icons/react/InfoCircle.tsx +10 -5
  727. package/src/icons/react/InfoCircleFilled.tsx +10 -5
  728. package/src/icons/react/Integration.tsx +10 -5
  729. package/src/icons/react/IntegrationsFilled.tsx +10 -5
  730. package/src/icons/react/IntegrationsIntegrationDiscourseColor.tsx +10 -5
  731. package/src/icons/react/IntegrationsIntegrationIntercomColor.tsx +10 -5
  732. package/src/icons/react/IntegrationsIntegrationSlackColor.tsx +10 -5
  733. package/src/icons/react/IntegrationsIntegrationZendeskColor.tsx +10 -5
  734. package/src/icons/react/Intercom.tsx +18 -0
  735. package/src/icons/react/InvitePeople.tsx +10 -5
  736. package/src/icons/react/Items.tsx +10 -5
  737. package/src/icons/react/ItemsTimeline.tsx +10 -5
  738. package/src/icons/react/Jira.tsx +10 -5
  739. package/src/icons/react/Key.tsx +10 -5
  740. package/src/icons/react/KeyboardHideDown.tsx +10 -5
  741. package/src/icons/react/Lab.tsx +10 -5
  742. package/src/icons/react/LayoutDouble.tsx +10 -5
  743. package/src/icons/react/LayoutMultiple.tsx +10 -5
  744. package/src/icons/react/LayoutSingle.tsx +10 -5
  745. package/src/icons/react/LeftPanel.tsx +10 -5
  746. package/src/icons/react/LevelPlus.tsx +10 -5
  747. package/src/icons/react/Levels.tsx +10 -5
  748. package/src/icons/react/LineDivider.tsx +10 -5
  749. package/src/icons/react/LineJump.tsx +10 -5
  750. package/src/icons/react/Link.tsx +10 -5
  751. package/src/icons/react/LocationEdit.tsx +10 -5
  752. package/src/icons/react/Lock.tsx +10 -5
  753. package/src/icons/react/LockOutline.tsx +10 -5
  754. package/src/icons/react/Logout.tsx +10 -5
  755. package/src/icons/react/Loom.tsx +10 -5
  756. package/src/icons/react/LoupeZoom.tsx +10 -5
  757. package/src/icons/react/LoupeZoomIn.tsx +10 -5
  758. package/src/icons/react/LoupeZoomOut.tsx +10 -5
  759. package/src/icons/react/ManyPeople.tsx +10 -5
  760. package/src/icons/react/MapMode.tsx +10 -5
  761. package/src/icons/react/Markdown.tsx +10 -5
  762. package/src/icons/react/MenuCollapser.tsx +10 -5
  763. package/src/icons/react/Mermaid.tsx +10 -5
  764. package/src/icons/react/MessagePlus.tsx +10 -5
  765. package/src/icons/react/MessagePlusSquare.tsx +10 -5
  766. package/src/icons/react/Milestones.tsx +10 -5
  767. package/src/icons/react/Minus.tsx +10 -5
  768. package/src/icons/react/Miro.tsx +10 -5
  769. package/src/icons/react/MirrorOff.tsx +10 -5
  770. package/src/icons/react/MirrorOn.tsx +10 -5
  771. package/src/icons/react/Mixpanel.tsx +10 -5
  772. package/src/icons/react/Monitor.tsx +10 -5
  773. package/src/icons/react/More.tsx +10 -5
  774. package/src/icons/react/MoreCompact.tsx +10 -5
  775. package/src/icons/react/MoveBottom.tsx +10 -5
  776. package/src/icons/react/MoveLeft.tsx +10 -5
  777. package/src/icons/react/MoveRight.tsx +10 -5
  778. package/src/icons/react/MoveSpace.tsx +10 -5
  779. package/src/icons/react/MoveTop.tsx +10 -5
  780. package/src/icons/react/Network.tsx +10 -5
  781. package/src/icons/react/NetworkAdd.tsx +10 -5
  782. package/src/icons/react/NoBorder.tsx +10 -5
  783. package/src/icons/react/NoFill.tsx +10 -5
  784. package/src/icons/react/Notifications.tsx +10 -5
  785. package/src/icons/react/ObjChild.tsx +10 -5
  786. package/src/icons/react/ObjM2M.tsx +10 -5
  787. package/src/icons/react/ObjO2O.tsx +10 -5
  788. package/src/icons/react/ObjParent.tsx +10 -5
  789. package/src/icons/react/ObjSelf.tsx +10 -5
  790. package/src/icons/react/OnSchedule.tsx +10 -5
  791. package/src/icons/react/OpenAi.tsx +10 -5
  792. package/src/icons/react/OpenAsPage.tsx +10 -5
  793. package/src/icons/react/PageRegularMode.tsx +10 -5
  794. package/src/icons/react/PageWideMode.tsx +10 -5
  795. package/src/icons/react/PanelAdd.tsx +10 -5
  796. package/src/icons/react/Pencil.tsx +10 -5
  797. package/src/icons/react/People.tsx +10 -5
  798. package/src/icons/react/PeopleCheck.tsx +10 -5
  799. package/src/icons/react/Photo.tsx +10 -5
  800. package/src/icons/react/Pin.tsx +10 -5
  801. package/src/icons/react/PinFilled.tsx +10 -5
  802. package/src/icons/react/Popup.tsx +10 -5
  803. package/src/icons/react/Posts.tsx +10 -5
  804. package/src/icons/react/PresentPlay.tsx +10 -5
  805. package/src/icons/react/PresentStop.tsx +10 -5
  806. package/src/icons/react/Print.tsx +10 -5
  807. package/src/icons/react/PrivateItems.tsx +10 -5
  808. package/src/icons/react/Question.tsx +10 -5
  809. package/src/icons/react/QuickFilter.tsx +10 -5
  810. package/src/icons/react/QuickFilterPersonal.tsx +10 -5
  811. package/src/icons/react/ReadOnly.tsx +10 -5
  812. package/src/icons/react/Refresh.tsx +10 -5
  813. package/src/icons/react/Remove.tsx +10 -5
  814. package/src/icons/react/RemovePeople.tsx +10 -5
  815. package/src/icons/react/Reply.tsx +10 -5
  816. package/src/icons/react/ResetPassword.tsx +10 -5
  817. package/src/icons/react/Restore.tsx +10 -5
  818. package/src/icons/react/RicheditorActionsMore.tsx +10 -5
  819. package/src/icons/react/RicheditorBlockCallout.tsx +10 -5
  820. package/src/icons/react/RicheditorBlockCode.tsx +10 -5
  821. package/src/icons/react/RicheditorBlockEmbed.tsx +10 -5
  822. package/src/icons/react/RicheditorBlockEntity.tsx +10 -5
  823. package/src/icons/react/RicheditorBlockFile.tsx +10 -5
  824. package/src/icons/react/RicheditorBlockH1.tsx +10 -5
  825. package/src/icons/react/RicheditorBlockH2.tsx +10 -5
  826. package/src/icons/react/RicheditorBlockH3.tsx +10 -5
  827. package/src/icons/react/RicheditorBlockH4.tsx +10 -5
  828. package/src/icons/react/RicheditorBlockMention.tsx +10 -5
  829. package/src/icons/react/RicheditorBlockParagraph.tsx +10 -5
  830. package/src/icons/react/RicheditorBlockQuote.tsx +10 -5
  831. package/src/icons/react/RicheditorChecklistCreate.tsx +10 -5
  832. package/src/icons/react/RicheditorCommentCreate.tsx +10 -5
  833. package/src/icons/react/RicheditorEntityLinkCreate.tsx +10 -5
  834. package/src/icons/react/RicheditorHistoryRedo.tsx +10 -5
  835. package/src/icons/react/RicheditorHistoryUndo.tsx +10 -5
  836. package/src/icons/react/RicheditorImageAlignCenter.tsx +10 -5
  837. package/src/icons/react/RicheditorImageAlignLeft.tsx +10 -5
  838. package/src/icons/react/RicheditorImageAlignRight.tsx +10 -5
  839. package/src/icons/react/RicheditorImageUpload.tsx +10 -5
  840. package/src/icons/react/RicheditorImageWrapCenter.tsx +10 -5
  841. package/src/icons/react/RicheditorImageWrapLeft.tsx +10 -5
  842. package/src/icons/react/RicheditorImageWrapRight.tsx +10 -5
  843. package/src/icons/react/RicheditorImageZoom.tsx +10 -5
  844. package/src/icons/react/RicheditorLinkCreate.tsx +10 -5
  845. package/src/icons/react/RicheditorLinkedhighlightCreate.tsx +10 -5
  846. package/src/icons/react/RicheditorListBullet.tsx +10 -5
  847. package/src/icons/react/RicheditorListIndent.tsx +10 -5
  848. package/src/icons/react/RicheditorListOrdered.tsx +10 -5
  849. package/src/icons/react/RicheditorListUnindent.tsx +10 -5
  850. package/src/icons/react/RicheditorMarkCode.tsx +10 -5
  851. package/src/icons/react/RicheditorMarkEm.tsx +10 -5
  852. package/src/icons/react/RicheditorMarkHighlight.tsx +10 -5
  853. package/src/icons/react/RicheditorMarkStrike.tsx +10 -5
  854. package/src/icons/react/RicheditorMarkStrong.tsx +10 -5
  855. package/src/icons/react/RicheditorMarkTextBackgroundColor.tsx +10 -5
  856. package/src/icons/react/RicheditorMarkUnderline.tsx +10 -5
  857. package/src/icons/react/RicheditorOpenLink.tsx +10 -5
  858. package/src/icons/react/RicheditorTableCreate.tsx +10 -5
  859. package/src/icons/react/RicheditorUnlink.tsx +10 -5
  860. package/src/icons/react/RicheditorVideoUpload.tsx +10 -5
  861. package/src/icons/react/RightPanel.tsx +10 -5
  862. package/src/icons/react/Rows.tsx +10 -5
  863. package/src/icons/react/RuleScheduled.tsx +10 -5
  864. package/src/icons/react/Search.tsx +10 -5
  865. package/src/icons/react/SearchAdd.tsx +10 -5
  866. package/src/icons/react/SearchFilled.tsx +10 -5
  867. package/src/icons/react/SearchRemove.tsx +10 -5
  868. package/src/icons/react/SelfReferenceOff.tsx +10 -5
  869. package/src/icons/react/SelfReferenceOn.tsx +10 -5
  870. package/src/icons/react/SendArrow.tsx +10 -5
  871. package/src/icons/react/SendBackward.tsx +10 -5
  872. package/src/icons/react/SendToBack.tsx +10 -5
  873. package/src/icons/react/Settings.tsx +10 -5
  874. package/src/icons/react/SettingsFilled.tsx +10 -5
  875. package/src/icons/react/SettingsOff.tsx +10 -5
  876. package/src/icons/react/Share.tsx +10 -5
  877. package/src/icons/react/Shared.tsx +10 -5
  878. package/src/icons/react/ShieldKeyhole.tsx +10 -5
  879. package/src/icons/react/ShowAuthor.tsx +10 -5
  880. package/src/icons/react/Sidebar.tsx +10 -5
  881. package/src/icons/react/SidebarFields.tsx +10 -5
  882. package/src/icons/react/SidebarFieldsOpened.tsx +10 -5
  883. package/src/icons/react/SimpleCompass.tsx +10 -5
  884. package/src/icons/react/Slack.tsx +10 -5
  885. package/src/icons/react/SlackIcon.tsx +10 -5
  886. package/src/icons/react/SlideMenu.tsx +10 -5
  887. package/src/icons/react/SlideMenuClose.tsx +10 -5
  888. package/src/icons/react/SlideMenuFilled.tsx +10 -5
  889. package/src/icons/react/SlideMenuOpen.tsx +10 -5
  890. package/src/icons/react/SmartFolder.tsx +10 -5
  891. package/src/icons/react/Sort.tsx +10 -5
  892. package/src/icons/react/SortOnBottom.tsx +10 -5
  893. package/src/icons/react/SortOnTop.tsx +10 -5
  894. package/src/icons/react/SpaceApp.tsx +10 -5
  895. package/src/icons/react/SpaceGenerate.tsx +10 -5
  896. package/src/icons/react/SpaceList.tsx +10 -5
  897. package/src/icons/react/SpaceScratch.tsx +10 -5
  898. package/src/icons/react/SpaceTemplate.tsx +10 -5
  899. package/src/icons/react/Spinner.tsx +10 -5
  900. package/src/icons/react/Success.tsx +10 -5
  901. package/src/icons/react/SuggestIntegration.tsx +10 -5
  902. package/src/icons/react/SwitchToMention.tsx +10 -5
  903. package/src/icons/react/SwitchToText.tsx +10 -5
  904. package/src/icons/react/SwitchToWidget.tsx +10 -5
  905. package/src/icons/react/TableLayout.tsx +10 -5
  906. package/src/icons/react/Template.tsx +10 -5
  907. package/src/icons/react/Templates.tsx +10 -5
  908. package/src/icons/react/TemplatesFilled.tsx +10 -5
  909. package/src/icons/react/Terminal.tsx +10 -5
  910. package/src/icons/react/TextNoWrap.tsx +10 -5
  911. package/src/icons/react/TextToolAlignBottom.tsx +10 -5
  912. package/src/icons/react/TextToolAlignMiddle.tsx +10 -5
  913. package/src/icons/react/TextToolAlignTop.tsx +10 -5
  914. package/src/icons/react/TextWrap.tsx +10 -5
  915. package/src/icons/react/ThumbsDown.tsx +10 -5
  916. package/src/icons/react/ThumbsUp.tsx +10 -5
  917. package/src/icons/react/Toc.tsx +18 -0
  918. package/src/icons/react/Twitter.tsx +10 -5
  919. package/src/icons/react/TypeBoolean.tsx +10 -5
  920. package/src/icons/react/TypeButton.tsx +10 -5
  921. package/src/icons/react/TypeCheckbox.tsx +10 -5
  922. package/src/icons/react/TypeDate.tsx +10 -5
  923. package/src/icons/react/TypeEmail.tsx +10 -5
  924. package/src/icons/react/TypeEmoji.tsx +10 -5
  925. package/src/icons/react/TypeFormula.tsx +10 -5
  926. package/src/icons/react/TypeFunction.tsx +10 -5
  927. package/src/icons/react/TypeId.tsx +10 -5
  928. package/src/icons/react/TypeLocation.tsx +10 -5
  929. package/src/icons/react/TypeLookup.tsx +10 -5
  930. package/src/icons/react/TypeMoney.tsx +10 -5
  931. package/src/icons/react/TypeMultiSelect.tsx +10 -5
  932. package/src/icons/react/TypeNumber.tsx +10 -5
  933. package/src/icons/react/TypePercent.tsx +10 -5
  934. package/src/icons/react/TypePhone.tsx +10 -5
  935. package/src/icons/react/TypeRelation.tsx +10 -5
  936. package/src/icons/react/TypeRichText.tsx +10 -5
  937. package/src/icons/react/TypeRule.tsx +10 -5
  938. package/src/icons/react/TypeSingleSelect.tsx +10 -5
  939. package/src/icons/react/TypeText.tsx +10 -5
  940. package/src/icons/react/TypeUrl.tsx +10 -5
  941. package/src/icons/react/UnitsAvatar.tsx +10 -5
  942. package/src/icons/react/UnitsCollection.tsx +10 -5
  943. package/src/icons/react/UnitsCounter.tsx +10 -5
  944. package/src/icons/react/UnitsDate.tsx +10 -5
  945. package/src/icons/react/UnitsDbBadgeAbbr.tsx +10 -5
  946. package/src/icons/react/UnitsDbBadgeFull.tsx +10 -5
  947. package/src/icons/react/UnitsDbIcon.tsx +10 -5
  948. package/src/icons/react/UnitsField.tsx +10 -5
  949. package/src/icons/react/UnitsFieldIconButton.tsx +10 -5
  950. package/src/icons/react/UnitsInput.tsx +10 -5
  951. package/src/icons/react/UnitsProgressBar.tsx +10 -5
  952. package/src/icons/react/UnitsRichText.tsx +10 -5
  953. package/src/icons/react/UnitsSnippet.tsx +10 -5
  954. package/src/icons/react/Unlink.tsx +10 -5
  955. package/src/icons/react/UnlockFilled.tsx +10 -5
  956. package/src/icons/react/UnlockOutline.tsx +10 -5
  957. package/src/icons/react/Upgrade.tsx +10 -5
  958. package/src/icons/react/UsbFlashDrive.tsx +10 -5
  959. package/src/icons/react/UserCheck.tsx +10 -5
  960. package/src/icons/react/UserGroup.tsx +10 -5
  961. package/src/icons/react/UserGroupRemove.tsx +10 -5
  962. package/src/icons/react/UserRole.tsx +10 -5
  963. package/src/icons/react/UserX.tsx +10 -5
  964. package/src/icons/react/ValueEdit.tsx +10 -5
  965. package/src/icons/react/ViewAi.tsx +10 -5
  966. package/src/icons/react/ViewBoard.tsx +10 -5
  967. package/src/icons/react/ViewCalendar.tsx +10 -5
  968. package/src/icons/react/ViewCanvas.tsx +10 -5
  969. package/src/icons/react/ViewChart.tsx +10 -5
  970. package/src/icons/react/ViewDashboard.tsx +10 -5
  971. package/src/icons/react/ViewDetails.tsx +10 -5
  972. package/src/icons/react/ViewDocument.tsx +10 -5
  973. package/src/icons/react/ViewEmbed.tsx +18 -0
  974. package/src/icons/react/ViewFeed.tsx +10 -5
  975. package/src/icons/react/ViewForm.tsx +10 -5
  976. package/src/icons/react/ViewGallery.tsx +10 -5
  977. package/src/icons/react/ViewGantt.tsx +10 -5
  978. package/src/icons/react/ViewList.tsx +10 -5
  979. package/src/icons/react/ViewMap.tsx +10 -5
  980. package/src/icons/react/ViewPage.tsx +10 -5
  981. package/src/icons/react/ViewTable.tsx +10 -5
  982. package/src/icons/react/ViewTimeline.tsx +10 -5
  983. package/src/icons/react/Views.tsx +10 -5
  984. package/src/icons/react/Warning.tsx +10 -5
  985. package/src/icons/react/WarningTriangle.tsx +10 -5
  986. package/src/icons/react/WarningTriangleFilled.tsx +10 -5
  987. package/src/icons/react/Webhooks.tsx +18 -0
  988. package/src/icons/react/Windows.tsx +10 -5
  989. package/src/icons/react/WorkspaceMap.tsx +10 -5
  990. package/src/icons/react/Youtube.tsx +10 -5
  991. package/src/icons/react/ZoomIn.tsx +10 -5
  992. package/src/icons/react/ZoomOut.tsx +10 -5
  993. package/src/icons/react/index.tsx +453 -441
  994. package/src/icons/svg/add-database.svg +1 -1
  995. package/src/icons/svg/add-integration.svg +1 -1
  996. package/src/icons/svg/arrow-bar-down.svg +4 -0
  997. package/src/icons/svg/arrow-bar-up.svg +4 -0
  998. package/src/icons/svg/arrows-right-left.svg +1 -1
  999. package/src/icons/svg/chat-bubble.svg +1 -1
  1000. package/src/icons/svg/chat-float.svg +1 -1
  1001. package/src/icons/svg/chat-sidebar.svg +3 -3
  1002. package/src/icons/svg/clean.svg +1 -1
  1003. package/src/icons/svg/create.svg +1 -1
  1004. package/src/icons/svg/folder-favorite.svg +3 -0
  1005. package/src/icons/svg/intercom.svg +3 -0
  1006. package/src/icons/svg/items-timeline.svg +1 -1
  1007. package/src/icons/svg/key.svg +1 -1
  1008. package/src/icons/svg/network-add.svg +1 -1
  1009. package/src/icons/svg/print.svg +1 -1
  1010. package/src/icons/svg/richeditor/list/indent.svg +7 -2
  1011. package/src/icons/svg/richeditor/list/unindent.svg +7 -2
  1012. package/src/icons/svg/richeditor/mark/underline.svg +2 -2
  1013. package/src/icons/svg/success.svg +1 -1
  1014. package/src/icons/svg/suggest-integration.svg +1 -1
  1015. package/src/icons/svg/toc.svg +5 -0
  1016. package/src/icons/svg/view-embed.svg +3 -0
  1017. package/src/icons/svg/warning-triangle.svg +1 -1
  1018. package/src/icons/svg/webhooks.svg +5 -0
  1019. package/src/icons/svg/windows.svg +1 -1
  1020. package/src/icons/types.ts +2 -0
  1021. package/src/images-gallery/images-gallery.tsx +91 -16
  1022. package/src/images-gallery/slide-buttons.tsx +5 -9
  1023. package/src/integration-compact-info-button.tsx +10 -6
  1024. package/src/lists/actions-menu-row-surface.tsx +2 -1
  1025. package/src/loaders.tsx +2 -2
  1026. package/src/loading-sausage.tsx +4 -4
  1027. package/src/logo.tsx +14 -13
  1028. package/src/mobile-keyboard-aware-popup.tsx +1 -1
  1029. package/src/modal-menu/index.tsx +1 -0
  1030. package/src/modal-menu/modal-menu-checkbox-item.tsx +50 -0
  1031. package/src/modal-menu/modal-menu-content.tsx +1 -1
  1032. package/src/modal-menu/modal-menu-separator.tsx +1 -1
  1033. package/src/modal-menu/modal-submenu-content.tsx +3 -1
  1034. package/src/new-badge.tsx +2 -2
  1035. package/src/number-input/edit-unit-styles.ts +3 -3
  1036. package/src/online-users.tsx +53 -54
  1037. package/src/open-popover-tracker.tsx +73 -0
  1038. package/src/palette-generator.test.ts +145 -147
  1039. package/src/palette-generator.ts +24 -34
  1040. package/src/palettes/_.test.ts +226 -0
  1041. package/src/palettes/_.ts +66 -23
  1042. package/src/palettes/diff-colors.ts +253 -0
  1043. package/src/palettes/inspect.canvas-colors.test.ts +257 -0
  1044. package/src/palettes/inspect.defs.colors.neutral-arch.test.ts +2291 -0
  1045. package/src/palettes/inspect.defs.colors.neutral-user.test.ts +2291 -0
  1046. package/src/palettes/inspect.defs.colors.warm-arch.test.ts +2291 -0
  1047. package/src/palettes/inspect.defs.colors.warm-user.test.ts +2291 -0
  1048. package/src/palettes/inspect.neutral-arch.test.ts +191 -0
  1049. package/src/palettes/inspect.neutral-user.test.ts +191 -0
  1050. package/src/palettes/inspect.warm-arch.test.ts +191 -0
  1051. package/src/palettes/inspect.warm-user.test.ts +191 -0
  1052. package/src/palettes/neutral-arch.ts +37 -0
  1053. package/src/palettes/neutral-user.ts +37 -0
  1054. package/src/palettes/{slate-arch.ts → neutral.ts} +19 -33
  1055. package/src/palettes/warm-arch.ts +2 -187
  1056. package/src/palettes/warm-user.ts +2 -187
  1057. package/src/palettes/warm.ts +157 -0
  1058. package/src/popover/index.tsx +124 -212
  1059. package/src/popover/mobile-popover.tsx +4 -2
  1060. package/src/popover/popup-modifiers-context.ts +4 -4
  1061. package/src/preference-setting.test.ts +223 -0
  1062. package/src/preference-setting.ts +71 -0
  1063. package/src/pretty-size.test.ts +18 -0
  1064. package/src/pretty-size.ts +23 -0
  1065. package/src/reactions/reaction-button.tsx +4 -4
  1066. package/src/reactions/reaction-picker.tsx +2 -2
  1067. package/src/rich-text-embed-error.tsx +3 -1
  1068. package/src/root-theme-provider.test.tsx +25 -20
  1069. package/src/scale-generator.ts +2 -2
  1070. package/src/select/components/clear-indicator.tsx +1 -1
  1071. package/src/select/components/drop-down-indicator.tsx +2 -2
  1072. package/src/select/components/group-heading.tsx +3 -3
  1073. package/src/select/components/menu-list-virtualized.tsx +1 -1
  1074. package/src/select/components/option.tsx +1 -1
  1075. package/src/select/index.tsx +39 -38
  1076. package/src/select/select-in-popover.tsx +34 -202
  1077. package/src/select/select.tsx +6 -4
  1078. package/src/select/styles.ts +3 -0
  1079. package/src/static-palettes.ts +3 -5
  1080. package/src/tab-nav/tab-nav.tsx +61 -17
  1081. package/src/thematic-color-picker.tsx +158 -234
  1082. package/src/thematic-constants.tsx +0 -1
  1083. package/src/thematic-controls.tsx +118 -9
  1084. package/src/thematic-scales.tsx +66 -86
  1085. package/src/thematic-state.ts +62 -45
  1086. package/src/thematic.tsx +379 -244
  1087. package/src/theme-provider.test.tsx +70 -67
  1088. package/src/theme-provider.tsx +51 -34
  1089. package/src/theme-settings.ts +12 -44
  1090. package/src/theme-styles.ts +36 -23
  1091. package/src/themed-ink.tsx +26 -0
  1092. package/src/toast/toast-action.tsx +2 -2
  1093. package/src/toggle-button/round-toggle-button.tsx +2 -1
  1094. package/src/toggle-button/toggle-button.tsx +51 -38
  1095. package/src/toggle-on-off.tsx +7 -7
  1096. package/src/tooltip-if-overflown.tsx +3 -3
  1097. package/src/tree-utils.test.ts +166 -0
  1098. package/src/tree-utils.ts +107 -0
  1099. package/src/type-badge-box.tsx +2 -2
  1100. package/src/type-badge.tsx +9 -10
  1101. package/src/unit/maybe-unit-value.tsx +1 -1
  1102. package/src/unit/types.ts +1 -1
  1103. package/src/workflow-progress-icon.tsx +1 -1
  1104. package/src/actions-menu/actions-menu-open-state-tracker.tsx +0 -66
  1105. package/src/design-system/alpha.test.ts +0 -59
  1106. package/src/design-system.test.ts +0 -47
  1107. package/src/error-alert/error-alert-action.tsx +0 -12
  1108. package/src/error-alert/error-alert.tsx +0 -71
  1109. package/src/file-item/use-register-in-image-gallery.tsx +0 -70
  1110. package/src/file-item-2.tsx +0 -357
  1111. package/src/palettes/slate-arch.colors-snapshot.test.ts +0 -1689
  1112. package/src/palettes/slate-user.colors-snapshot.test.ts +0 -1689
  1113. package/src/palettes/slate-user.ts +0 -187
  1114. package/src/palettes/warm-arch.colors-snapshot.test.ts +0 -1689
  1115. package/src/palettes/warm-user.colors-snapshot.test.ts +0 -1689
  1116. /package/src/number-input/{decimal.test.js → decimal.test.ts} +0 -0
@@ -1,3 +1,3 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
1
+ <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
2
  <path fill-rule="evenodd" clip-rule="evenodd" d="M5.83504 8.7377C5.48428 8.56753 5.17462 8.36727 4.9143 8.13536C4.45434 7.72559 4 7.04571 4 6.40068C4 4.00199 6.68629 3 10 3C13.3137 3 16 3.97162 16 6.40068C16 7.04924 15.5523 7.73222 15.0892 8.14566C14.8283 8.37864 14.5176 8.57898 14.1654 8.74861C13.0862 9.26835 11.6178 9.5 10 9.5C8.38231 9.5 6.91414 9.2612 5.83504 8.7377ZM2.5 13.5993C2.5 15.5032 3.6269 16.801 5.07921 17.5371C6.53919 18.2771 8.42745 18.5281 10.2953 18.4976C10.6913 18.4911 11 18.1623 11 17.7663C11 17.3344 10.6349 16.9935 10.203 16.9988C8.26302 17.0224 5.27591 16.818 4.27385 14.8121C4.03917 14.3423 3.96183 13.8044 4.01608 13.2844C4.03279 13.1243 4.06236 12.971 4.10407 12.8244C4.51038 13.2198 4.99469 13.5272 5.50864 13.763C7.00724 14.4507 8.72233 14.6002 10.3529 14.5674C10.7166 14.5601 11 14.2577 11 13.8939C11 13.4964 10.6641 13.1827 10.2667 13.1891C8.76839 13.2132 7.16155 13.0857 5.79908 12.4113C5.4425 12.2348 5.12939 12.0266 4.86861 11.7851C4.60523 11.5412 4.15873 11.0642 4.07361 10.7017C4.02516 10.4954 4 10.2763 4 10.0442C4 9.76752 4.03574 9.50942 4.10407 9.2693C4.49786 9.65252 4.97532 9.96325 5.50864 10.208C6.76549 10.7847 8.35916 11.0158 10 11.0158C11.6378 11.0158 13.2325 10.7922 14.4906 10.219C15.007 9.98374 15.4935 9.67568 15.9007 9.27818C15.9344 9.40085 15.9598 9.52829 15.9765 9.66057C16.0012 9.85653 16 10.053 16 10.25C16 10.6642 16.3358 11 16.75 11C17.1642 11 17.5 10.6642 17.5 10.25V6.40068C17.5 4.48619 16.3779 3.18493 14.9171 2.44961C13.5324 1.75263 11.7642 1.5 10 1.5C8.22975 1.5 6.46226 1.76187 5.07921 2.46288C3.6269 3.19899 2.5 4.4968 2.5 6.40068V13.5993ZM15.75 12.75C15.75 12.3358 15.4142 12 15 12C14.5858 12 14.25 12.3358 14.25 12.75V14.25H12.75C12.3358 14.25 12 14.5858 12 15C12 15.4142 12.3358 15.75 12.75 15.75H14.25V17.25C14.25 17.6642 14.5857 18 15 18C15.4142 18 15.75 17.6642 15.75 17.25V15.75H17.25C17.6642 15.75 18 15.4142 18 15C18 14.5858 17.6642 14.25 17.25 14.25H15.75V12.75Z"/>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
1
+ <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
2
  <path fill-rule="evenodd" clip-rule="evenodd" d="M8.43474 6.62663L7.73471 5.92661C7.58417 5.77604 7.49959 5.57182 7.49959 5.3589C7.49959 5.14597 7.58416 4.94177 7.7347 4.7912L8.36858 4.15731C10.2392 2.28673 13.1628 2.11237 15.2304 3.63423L16.6057 2.25887C16.6761 2.18257 16.7605 2.12061 16.8544 2.07643C16.9499 2.03151 17.0534 2.00584 17.1588 2.00089C17.2642 1.99593 17.3695 2.0118 17.4688 2.04757C17.5681 2.08334 17.6594 2.13832 17.7374 2.20937C17.8155 2.28041 17.8787 2.36614 17.9236 2.46164C17.9685 2.55715 17.9942 2.66056 17.9991 2.76598C18.0041 2.8714 17.9882 2.97676 17.9524 3.07604C17.9166 3.1753 17.8616 3.26654 17.7906 3.34456C17.7748 3.36184 17.7583 3.37846 17.7411 3.39429L16.3656 4.76989C17.388 6.16413 17.6624 8.09354 17.075 9.75281C16.9267 10.1718 16.4006 10.3447 16 10.1008C15.6423 9.88288 15.5198 9.42929 15.6247 9.02378C16 7.57317 15.6686 6.25406 14.7073 5.29274C14.47 5.05545 14.2097 4.85703 13.934 4.69746C12.5262 3.88274 10.7156 4.08117 9.50401 5.29274L9.43786 5.3589L13.0761 9C13.4186 9.31082 13.4315 9.84485 13.1044 10.1718C12.8034 10.4728 12.3208 10.4892 12 10.2094L9.57017 7.76206L8.8711 8.46113C8.79716 8.5369 8.70896 8.5973 8.61157 8.63885C8.51371 8.68061 8.40852 8.7025 8.30213 8.70325C8.19574 8.704 8.09025 8.6836 7.99181 8.64323C7.89337 8.60287 7.80393 8.54333 7.7287 8.4681C7.65346 8.39287 7.59393 8.30343 7.55356 8.20499C7.51319 8.10655 7.49279 8.00106 7.49355 7.89467C7.4943 7.78827 7.51619 7.68309 7.55794 7.58523C7.5995 7.48784 7.6599 7.39964 7.73567 7.3257L8.43474 6.62663ZM9.7075 17.0785C8.07472 17.6768 6.20414 17.4425 4.75537 16.3801L3.37758 17.7579C3.30364 17.8336 3.21543 17.894 3.11805 17.9356C3.02018 17.9773 2.915 17.9992 2.8086 18C2.70221 18.0007 2.59672 17.9803 2.49829 17.94C2.39985 17.8996 2.31041 17.8401 2.23517 17.7648C2.15994 17.6896 2.10041 17.6002 2.06004 17.5017C2.01967 17.4033 1.99927 17.2978 2.00002 17.1914C2.00077 17.085 2.02266 16.9798 2.06442 16.882C2.10597 16.7846 2.16638 16.6964 2.24215 16.6224L3.61971 15.2449C2.09786 13.1773 2.27222 10.2537 4.1428 8.3831L4.77666 7.74923C4.92724 7.59869 5.13146 7.5141 5.34438 7.5141C5.5573 7.5141 5.7615 7.59868 5.91208 7.74922L10.094 11.9184C10.4319 12.234 10.4345 12.7688 10.0997 13.0876C9.79262 13.38 9.31125 13.3835 9 13.0956L5.34438 9.45238L5.27822 9.51853C3.82936 10.9674 3.82936 13.2729 5.27822 14.7218C6.20019 15.6438 7.68452 15.8614 8.94504 15.5629C9.43076 15.4479 9.97353 15.6733 10.1253 16.1488C10.2458 16.5261 10.0794 16.9422 9.7075 17.0785ZM15.75 12.75C15.75 12.3358 15.4142 12 15 12C14.5858 12 14.25 12.3358 14.25 12.75V14.25H12.75C12.3358 14.25 12 14.5858 12 15C12 15.4142 12.3358 15.75 12.75 15.75H14.25V17.25C14.25 17.6642 14.5857 18 15 18C15.4142 18 15.75 17.6642 15.75 17.25V15.75H17.25C17.6642 15.75 18 15.4142 18 15C18 14.5858 17.6642 14.25 17.25 14.25H15.75V12.75Z"/>
3
3
  </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3 16C3 15.5858 3.33579 15.25 3.75 15.25H16.25C16.6642 15.25 17 15.5858 17 16C17 16.4142 16.6642 16.75 16.25 16.75H3.75C3.33579 16.75 3 16.4142 3 16Z" />
3
+ <path d="M6.96973 10.2803C6.67684 9.98737 6.67684 9.51263 6.96973 9.21973C7.26261 8.92685 7.73739 8.92685 8.03027 9.21973L9.25 10.4395V4.75C9.25 4.33579 9.58579 4 10 4C10.4142 4 10.75 4.33579 10.75 4.75V10.4395L11.9697 9.21973C12.2626 8.92683 12.7374 8.92683 13.0303 9.21973C13.3232 9.51263 13.3232 9.98737 13.0303 10.2803L10.5303 12.7803C10.2374 13.0732 9.76262 13.0732 9.46973 12.7803L6.96973 10.2803Z" />
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.25 16.75C16.6642 16.75 17 16.4142 17 16C17 15.5858 16.6642 15.25 16.25 15.25H3.75C3.3358 15.25 3 15.5858 3 16C3 16.4142 3.3358 16.75 3.75 16.75H16.25Z" />
3
+ <path d="M11.9697 7.78033C12.2626 8.07322 12.7374 8.07322 13.0303 7.78033C13.3232 7.48744 13.3232 7.01256 13.0303 6.71967L10.5303 4.21967C10.2374 3.92678 9.7626 3.92678 9.4697 4.21967L6.9697 6.71967C6.6768 7.01256 6.6768 7.48744 6.9697 7.78033C7.2626 8.07322 7.7374 8.07322 8.0303 7.78033L9.25 6.56066L9.25 12.25C9.25 12.6642 9.5858 13 10 13C10.4142 13 10.75 12.6642 10.75 12.25L10.75 6.56066L11.9697 7.78033Z" />
4
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
1
+ <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
2
  <path fill-rule="evenodd" clip-rule="evenodd" d="M3.223 13.3864C2.9301 13.6792 2.93011 14.1541 3.223 14.447L6.05633 17.2803C6.34922 17.5732 6.8241 17.5732 7.11699 17.2803C7.40988 16.9875 7.40988 16.5126 7.11699 16.2197L5.56399 14.6667H16.25C16.6642 14.6667 17 14.3309 17 13.9167C17 13.5025 16.6642 13.1667 16.25 13.1667H5.56399L7.11699 11.6137C7.40988 11.3208 7.40988 10.8459 7.11699 10.553C6.8241 10.2601 6.34922 10.2601 6.05633 10.553L3.223 13.3864ZM2.99998 6.08335C2.99998 6.49756 3.33577 6.83335 3.74998 6.83335H14.436L12.883 8.38635C12.5901 8.67924 12.5901 9.15412 12.883 9.44701C13.1759 9.7399 13.6508 9.7399 13.9437 9.44701L16.777 6.61368C17.0699 6.32079 17.0699 5.84591 16.777 5.55302L13.9437 2.71969C13.6508 2.42679 13.1759 2.42679 12.883 2.71969C12.5901 3.01258 12.5901 3.48745 12.883 3.78035L14.436 5.33335H3.74998C3.33577 5.33335 2.99998 5.66913 2.99998 6.08335Z"/>
3
3
  </svg>
@@ -1,4 +1,4 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
1
+ <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
2
  <path d="M13.1367 10.2354C14.2412 10.2354 15.1366 11.1309 15.1367 12.2354C15.1367 13.3399 14.2413 14.2354 13.1367 14.2354C12.0321 14.2354 11.1367 13.3399 11.1367 12.2354C11.1369 11.1309 12.0322 10.2354 13.1367 10.2354Z"/>
3
3
  <path fill-rule="evenodd" clip-rule="evenodd" d="M15.251 3C16.0499 3.00007 16.7826 3.22033 17.3027 3.78613C17.8118 4.34007 18 5.0993 18 5.9248V14.0752C18 14.9007 17.8118 15.6599 17.3027 16.2139C16.7826 16.7797 16.0499 16.9999 15.251 17H4.74902C3.95013 16.9999 3.21744 16.7797 2.69727 16.2139C2.18815 15.6599 2 14.9007 2 14.0752V5.9248C2 5.0993 2.18815 4.34007 2.69727 3.78613C3.21744 3.22033 3.95013 3.00007 4.74902 3H15.251ZM4.74902 4.5C4.21538 4.50006 3.94793 4.64276 3.80176 4.80176C3.64471 4.97282 3.5 5.30102 3.5 5.9248V14.0752C3.5 14.699 3.64471 15.0272 3.80176 15.1982C3.94793 15.3572 4.21538 15.4999 4.74902 15.5H15.251C15.7846 15.4999 16.0521 15.3572 16.1982 15.1982C16.3553 15.0272 16.5 14.699 16.5 14.0752V5.9248C16.5 5.30102 16.3553 4.97282 16.1982 4.80176C16.0521 4.64276 15.7846 4.50006 15.251 4.5H4.74902Z"/>
4
4
  </svg>
@@ -1,4 +1,4 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
1
+ <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
2
  <path d="M14.8398 9.0498C15.2538 9.05007 15.5897 9.38587 15.5898 9.7998V13.7998C15.5898 14.2139 15.2538 14.5495 14.8398 14.5498H11.3398C10.9256 14.5498 10.5898 14.214 10.5898 13.7998V9.7998C10.59 9.3857 10.9257 9.0498 11.3398 9.0498H14.8398Z"/>
3
3
  <path fill-rule="evenodd" clip-rule="evenodd" d="M15.251 3C16.0499 3.00007 16.7826 3.22033 17.3027 3.78613C17.8118 4.34007 18 5.0993 18 5.9248V14.0752C18 14.9007 17.8118 15.6599 17.3027 16.2139C16.7826 16.7797 16.0499 16.9999 15.251 17H4.74902C3.95013 16.9999 3.21744 16.7797 2.69727 16.2139C2.18815 15.6599 2 14.9007 2 14.0752V5.9248C2 5.0993 2.18815 4.34007 2.69727 3.78613C3.21744 3.22033 3.95013 3.00007 4.74902 3H15.251ZM4.74902 4.5C4.21538 4.50006 3.94793 4.64276 3.80176 4.80176C3.64471 4.97282 3.5 5.30102 3.5 5.9248V14.0752C3.5 14.699 3.64471 15.0272 3.80176 15.1982C3.94793 15.3572 4.21538 15.4999 4.74902 15.5H15.251C15.7846 15.4999 16.0521 15.3572 16.1982 15.1982C16.3553 15.0272 16.5 14.699 16.5 14.0752V5.9248C16.5 5.30102 16.3553 4.97282 16.1982 4.80176C16.0521 4.64276 15.7846 4.50006 15.251 4.5H4.74902Z"/>
4
4
  </svg>
@@ -1,4 +1,4 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M14.7021 5.35059C15.1164 5.35059 15.4521 5.68639 15.4521 6.10059V13.8994C15.452 14.3135 15.1163 14.6494 14.7021 14.6494H11.2021C10.788 14.6494 10.4523 14.3135 10.4521 13.8994V6.10059C10.4522 5.68639 10.7879 5.35059 11.2021 5.35059H14.7021Z"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M15.251 3C16.0499 3.00007 16.7826 3.22033 17.3027 3.78613C17.8118 4.34007 18 5.0993 18 5.9248V14.0752C18 14.9007 17.8118 15.6599 17.3027 16.2139C16.7826 16.7797 16.0499 16.9999 15.251 17H4.74902C3.95013 16.9999 3.21744 16.7797 2.69727 16.2139C2.18815 15.6599 2 14.9007 2 14.0752V5.9248C2 5.0993 2.18815 4.34007 2.69727 3.78613C3.21744 3.22033 3.95013 3.00007 4.74902 3H15.251ZM4.74902 4.5C4.21538 4.50006 3.94793 4.64276 3.80176 4.80176C3.64471 4.97282 3.5 5.30102 3.5 5.9248V14.0752C3.5 14.699 3.64471 15.0272 3.80176 15.1982C3.94793 15.3572 4.21538 15.4999 4.74902 15.5H15.251C15.7846 15.4999 16.0521 15.3572 16.1982 15.1982C16.3553 15.0272 16.5 14.699 16.5 14.0752V5.9248C16.5 5.30102 16.3553 4.97282 16.1982 4.80176C16.0521 4.64276 15.7846 4.50006 15.251 4.5H4.74902Z"/>
1
+ <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8.75 5.35059C9.1642 5.35059 9.49998 5.68639 9.5 6.10059V13.8994C9.49987 14.3135 9.16413 14.6494 8.75 14.6494H5.25C4.83587 14.6494 4.50013 14.3135 4.5 13.8994V6.10059C4.50002 5.68639 4.8358 5.35059 5.25 5.35059H8.75Z" />
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M15.251 3C16.0499 3.00007 16.7826 3.22033 17.3027 3.78613C17.8118 4.34007 18 5.0993 18 5.9248V14.0752C18 14.9007 17.8118 15.6599 17.3027 16.2139C16.7826 16.7797 16.0499 16.9999 15.251 17H4.74902C3.95013 16.9999 3.21744 16.7797 2.69727 16.2139C2.18815 15.6599 2 14.9007 2 14.0752V5.9248C2 5.0993 2.18815 4.34007 2.69727 3.78613C3.21744 3.22033 3.95013 3.00007 4.74902 3H15.251ZM4.74902 4.5C4.21538 4.50006 3.94793 4.64276 3.80176 4.80176C3.64471 4.97282 3.5 5.30102 3.5 5.9248V14.0752C3.5 14.699 3.64471 15.0272 3.80176 15.1982C3.94793 15.3572 4.21538 15.4999 4.74902 15.5H15.251C15.7846 15.4999 16.0521 15.3572 16.1982 15.1982C16.3553 15.0272 16.5 14.699 16.5 14.0752V5.9248C16.5 5.30102 16.3553 4.97282 16.1982 4.80176C16.0521 4.64276 15.7846 4.50006 15.251 4.5H4.74902Z" />
4
4
  </svg>
@@ -1,4 +1,4 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
1
+ <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
2
  <path d="M2.75 4.5C3.16421 4.5 3.5 4.16421 3.5 3.75C3.5 3.33579 3.16421 3 2.75 3C2.33579 3 2 3.33579 2 3.75C2 4.16421 2.33579 4.5 2.75 4.5Z"/>
3
3
  <path d="M6 4.5C6 4.77614 5.77614 5 5.5 5C5.22386 5 5 4.77614 5 4.5C5 4.22386 5.22386 4 5.5 4C5.77614 4 6 4.22386 6 4.5Z"/>
4
4
  <path d="M4.5 7.25C4.5 7.94036 3.94036 8.5 3.25 8.5C2.55964 8.5 2 7.94036 2 7.25C2 6.55964 2.55964 6 3.25 6C3.94036 6 4.5 6.55964 4.5 7.25Z"/>
@@ -1,3 +1,3 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
1
+ <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
2
  <path fill-rule="evenodd" clip-rule="evenodd" d="M4.25 2C3.00736 2 2 3.0074 2 4.25V15.75C2 16.9926 3.00736 18 4.25 18H15.75C16.9926 18 18 16.9926 18 15.75V9.75C18 9.33579 17.6642 9 17.25 9C16.8358 9 16.5 9.33579 16.5 9.75V15.75C16.5 16.1642 16.1642 16.5 15.75 16.5H4.25C3.83579 16.5 3.5 16.1642 3.5 15.75V4.25C3.5 3.8358 3.83579 3.5 4.25 3.5H10.25C10.6642 3.5 11 3.16421 11 2.75C11 2.33579 10.6642 2 10.25 2H4.25ZM13.9247 2.69921C14.857 1.76693 16.3685 1.76693 17.3008 2.69921C18.2331 3.63148 18.2331 5.143 17.3008 6.07528L11.5741 11.8019C11.4473 11.9288 11.2753 12 11.096 12H8.83756C8.37499 12 8 11.625 8 11.1624V8.90404C8 8.72469 8.07125 8.55268 8.19807 8.42586L13.9247 2.69921ZM16.3444 3.65557C15.9403 3.25148 15.2852 3.25148 14.8811 3.65557L14.657 3.87967L16.1203 5.34302L16.3444 5.11892C16.7485 4.71483 16.7485 4.05966 16.3444 3.65557ZM9.3525 9.18415V10.6475H10.8158L15.278 6.18532L13.8147 4.72197L9.3525 9.18415Z" />
3
3
  </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" >
2
+ <path d="M7.5 3C7.69891 3 7.88962 3.07907 8.03027 3.21973L10.3105 5.5H15.583C16.2239 5.5 16.8388 5.7548 17.292 6.20801C17.7452 6.66122 18 7.27605 18 7.91699V14.583C18 15.2239 17.7452 15.8388 17.292 16.292C17.0183 16.5657 16.6474 16.7336 16.3809 16.8291C16.1213 16.9221 15.8078 17 15.583 17H4.41699C3.77605 17 3.16122 16.7452 2.70801 16.292C2.2548 15.8388 2 15.2239 2 14.583V5.41699C2 4.77605 2.25479 4.16122 2.70801 3.70801C3.16122 3.25479 3.77605 3 4.41699 3H7.5ZM4.41699 4.5C4.17388 4.5 3.94046 4.59665 3.76855 4.76855C3.59665 4.94046 3.5 5.17388 3.5 5.41699V14.583C3.5 14.8261 3.59665 15.0595 3.76855 15.2314C3.94046 15.4034 4.17388 15.5 4.41699 15.5H15.5684C15.5767 15.4988 15.6004 15.4954 15.6406 15.4863C15.7054 15.4718 15.7874 15.448 15.874 15.417C15.9614 15.3857 16.044 15.35 16.1123 15.3125C16.1836 15.2734 16.2195 15.2434 16.2314 15.2314C16.4034 15.0595 16.5 14.8261 16.5 14.583V7.91699C16.5 7.67388 16.4034 7.44046 16.2314 7.26855C16.0595 7.09665 15.8261 7 15.583 7H10C9.80109 7 9.61038 6.92093 9.46973 6.78027L7.18945 4.5H4.41699ZM9.7998 8.04492C9.92588 7.98472 10.0741 7.98472 10.2002 8.04492C10.3093 8.0971 10.3681 8.18974 10.3984 8.24219C10.4309 8.2982 10.4642 8.37087 10.499 8.44629L11.1191 9.78711L12.6328 9.94141C12.7182 9.95008 12.8008 9.95827 12.8662 9.9707C12.9274 9.98236 13.0361 10.0072 13.1211 10.0908C13.2196 10.1878 13.2656 10.3237 13.2451 10.458C13.2274 10.5739 13.1547 10.6561 13.1123 10.7002C13.067 10.7473 13.0052 10.8011 12.9414 10.8564L11.8105 11.8389L12.126 13.2734C12.1438 13.3542 12.161 13.4324 12.1689 13.4961C12.1764 13.5556 12.1861 13.6637 12.1299 13.7676C12.0646 13.8878 11.9444 13.9724 11.8057 13.9951C11.6857 14.0147 11.582 13.9725 11.5254 13.9473C11.4649 13.9203 11.3927 13.8812 11.3184 13.8398L10 13.1064L8.68164 13.8398C8.60728 13.8812 8.53511 13.9203 8.47461 13.9473C8.41804 13.9725 8.31433 14.0147 8.19434 13.9951C8.05556 13.9724 7.93537 13.8878 7.87012 13.7676C7.81395 13.6637 7.82364 13.5556 7.83105 13.4961C7.83902 13.4324 7.85624 13.3542 7.87402 13.2734L8.18945 11.8389L7.05859 10.8564C6.99482 10.8011 6.93303 10.7473 6.8877 10.7002C6.84529 10.6561 6.77261 10.5739 6.75488 10.458C6.73437 10.3237 6.78037 10.1878 6.87891 10.0908C6.96388 10.0072 7.07261 9.98236 7.13379 9.9707C7.1992 9.95827 7.28181 9.95008 7.36719 9.94141C7.37079 9.94104 7.37431 9.93982 7.37793 9.93945L8.88086 9.78711L9.49609 8.45605C9.49756 8.45287 9.49951 8.44946 9.50098 8.44629C9.53584 8.37087 9.56914 8.2982 9.60156 8.24219C9.63192 8.18974 9.69071 8.0971 9.7998 8.04492Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.7042 10.7751C15.7027 10.9116 15.6474 11.0421 15.5503 11.1381C15.4532 11.2341 15.3222 11.288 15.1856 11.288C15.0491 11.288 14.918 11.2341 14.8209 11.1381C14.7239 11.0421 14.6686 10.9116 14.6671 10.7751V6.11155C14.6686 5.97499 14.7239 5.84454 14.8209 5.7485C14.918 5.65247 15.0491 5.5986 15.1856 5.5986C15.3222 5.5986 15.4532 5.65247 15.5503 5.7485C15.6474 5.84454 15.7027 5.97499 15.7042 6.11155V10.7751ZM15.5232 14.0206C15.4431 14.0892 13.5222 15.7011 10.0004 15.7011C6.47868 15.7011 4.55793 14.0892 4.47779 14.0206C4.37339 13.9311 4.30882 13.8037 4.29828 13.6666C4.28774 13.5295 4.33209 13.3938 4.42158 13.2894C4.51087 13.1851 4.63787 13.1206 4.77472 13.1098C4.91157 13.0991 5.04708 13.1431 5.15154 13.2322C5.18198 13.2577 6.89722 14.6639 10.0005 14.6639C13.1427 14.6639 14.8314 13.2475 14.8481 13.2333C15.0651 13.0469 15.393 13.0719 15.5793 13.2895C15.6688 13.3939 15.7132 13.5295 15.7027 13.6667C15.6921 13.8038 15.6276 13.9311 15.5232 14.0206ZM4.29671 6.11155C4.29819 5.97499 4.35347 5.84454 4.45055 5.7485C4.54763 5.65247 4.67868 5.5986 4.81524 5.5986C4.9518 5.5986 5.08284 5.65247 5.17993 5.7485C5.27701 5.84454 5.33229 5.97499 5.33377 6.11155V10.7751C5.33229 10.9116 5.27701 11.0421 5.17993 11.1381C5.08284 11.2341 4.9518 11.288 4.81524 11.288C4.67868 11.288 4.54763 11.2341 4.45055 11.1381C4.35347 11.0421 4.29819 10.9116 4.29671 10.7751V6.11155ZM6.88938 5.07449C6.89147 4.93835 6.94701 4.80849 7.04402 4.71295C7.14103 4.61742 7.27173 4.56387 7.40788 4.56387C7.54404 4.56387 7.67473 4.61742 7.77174 4.71295C7.86875 4.80849 7.9243 4.93835 7.92638 5.07449V12.0016C7.9243 12.1378 7.86875 12.2676 7.77174 12.3632C7.67473 12.4587 7.54404 12.5123 7.40788 12.5123C7.27173 12.5123 7.14103 12.4587 7.04402 12.3632C6.94701 12.2676 6.89147 12.1378 6.88938 12.0016V5.07455V5.07449ZM9.48194 4.81211C9.48193 4.74402 9.49533 4.67659 9.52139 4.61368C9.54744 4.55077 9.58563 4.49361 9.63378 4.44546C9.68193 4.39731 9.73909 4.35912 9.802 4.33306C9.86491 4.30701 9.93234 4.2936 10.0004 4.29361C10.0685 4.2936 10.136 4.307 10.1989 4.33305C10.2618 4.3591 10.319 4.39729 10.3671 4.44544C10.4153 4.49359 10.4535 4.55075 10.4795 4.61367C10.5056 4.67658 10.519 4.74401 10.519 4.81211V12.3306C10.5175 12.4672 10.4622 12.5976 10.3652 12.6937C10.2681 12.7897 10.137 12.8436 10.0005 12.8436C9.86391 12.8436 9.73286 12.7897 9.63578 12.6937C9.5387 12.5976 9.48341 12.4672 9.48194 12.3306V4.81211ZM12.0745 5.07449C12.0766 4.93835 12.1322 4.80849 12.2292 4.71295C12.3262 4.61742 12.4569 4.56387 12.593 4.56387C12.7292 4.56387 12.8599 4.61742 12.9569 4.71295C13.0539 4.80849 13.1095 4.93835 13.1115 5.07449V12.0016C13.1095 12.1378 13.0539 12.2676 12.9569 12.3632C12.8599 12.4587 12.7292 12.5123 12.593 12.5123C12.4569 12.5123 12.3262 12.4587 12.2292 12.3632C12.1322 12.2676 12.0766 12.1378 12.0745 12.0016V5.07455V5.07449ZM15.8338 2.22266H4.1671C3.09322 2.22266 2.22266 3.09322 2.22266 4.1671V15.8338C2.22266 16.9076 3.09322 17.7782 4.1671 17.7782H15.8338C16.9076 17.7782 17.7782 16.9076 17.7782 15.8338V4.1671C17.7782 3.09322 16.9076 2.22266 15.8338 2.22266Z" />
3
+ </svg>
@@ -1,4 +1,4 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
1
+ <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
2
  <path fill-rule="evenodd" clip-rule="evenodd"
3
3
  d="M4.25 4.5C3.83579 4.5 3.5 4.83579 3.5 5.25V7C3.5 7.41421 3.83579 7.75 4.25 7.75H10.75C11.1642 7.75 11.5 7.41421 11.5 7V5.25C11.5 4.83579 11.1642 4.5 10.75 4.5H4.25ZM2 5.25C2 4.00736 3.00736 3 4.25 3H10.75C11.9926 3 13 4.00736 13 5.25V7C13 8.24264 11.9926 9.25 10.75 9.25H4.25C3.00736 9.25 2 8.24264 2 7V5.25ZM9.25 12.25C8.83579 12.25 8.5 12.5858 8.5 13V14.75C8.5 15.1642 8.83579 15.5 9.25 15.5H15.75C16.1642 15.5 16.5 15.1642 16.5 14.75V13C16.5 12.5858 16.1642 12.25 15.75 12.25H9.25ZM7 13C7 11.7574 8.00736 10.75 9.25 10.75H15.75C16.9926 10.75 18 11.7574 18 13V14.75C18 15.9926 16.9926 17 15.75 17H9.25C8.00736 17 7 15.9926 7 14.75V13Z" />
4
4
  </svg>
@@ -1,4 +1,4 @@
1
- <svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
1
+ <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
2
  <path fill-rule="evenodd" clip-rule="evenodd" d="M6.91681 7.66667C6.91681 4.67512 9.34193 2.25 12.3335 2.25C15.325 2.25 17.7501 4.67512 17.7501 7.66667C17.7501 10.6582 15.325 13.0833 12.3335 13.0833C12.0871 13.0833 11.8442 13.0668 11.6058 13.0348C11.4311 13.0113 11.3209 12.9966 11.2405 12.9888C11.2195 12.9868 11.2039 12.9857 11.1928 12.985C11.1884 12.9888 11.1828 12.9937 11.1761 12.9998C11.1339 13.0383 11.0787 13.0932 10.9809 13.191L9.75269 14.4192C9.61204 14.5599 9.42127 14.6389 9.22236 14.6389H8.41681V15.4444C8.41681 15.8587 8.08102 16.1944 7.66681 16.1944H6.86125V17C6.86125 17.4142 6.52546 17.75 6.11125 17.75L4.22034 17.75C4.02352 17.75 3.8334 17.75 3.67267 17.7369C3.49659 17.7225 3.29086 17.6887 3.08432 17.5835C2.79685 17.437 2.56313 17.2033 2.41666 16.9158C2.31142 16.7093 2.27761 16.5035 2.26323 16.3275C2.25009 16.1667 2.25012 15.9766 2.25014 15.7798L2.25014 14.4044C2.25014 14.3915 2.25011 14.3783 2.25007 14.3649C2.2497 14.2166 2.24923 14.034 2.29235 13.8544C2.32978 13.6985 2.39151 13.5495 2.47527 13.4128C2.57178 13.2553 2.70125 13.1265 2.80633 13.0219C2.81587 13.0125 2.8252 13.0032 2.8343 12.9941L6.80913 9.01923C6.90689 8.92148 6.96187 8.86623 7.0003 8.82404C7.00643 8.8173 7.01133 8.81176 7.01517 8.80732C7.01448 8.79623 7.01331 8.78061 7.01129 8.75966C7.00352 8.6792 6.98884 8.56907 6.96535 8.39429C6.9333 8.15596 6.91681 7.91304 6.91681 7.66667ZM12.3335 3.75C10.1704 3.75 8.41681 5.50355 8.41681 7.66667C8.41681 7.84601 8.42881 8.02216 8.45197 8.19443L8.45378 8.20789C8.47493 8.36521 8.49355 8.50362 8.50435 8.61552C8.51475 8.72322 8.52494 8.86692 8.50392 9.01388C8.47495 9.21639 8.42493 9.36439 8.32513 9.54296C8.21913 9.73259 8.05143 9.89928 7.91054 10.0393C7.89667 10.0531 7.88306 10.0666 7.86979 10.0799L3.89496 14.0547C3.82308 14.1266 3.78673 14.1632 3.76128 14.1911C3.75774 14.195 3.75493 14.1981 3.75275 14.2006C3.75253 14.2039 3.75228 14.2082 3.75204 14.2134C3.75032 14.2511 3.75014 14.3027 3.75014 14.4044V15.7556C3.75014 15.9857 3.75072 16.1133 3.75825 16.2053C3.75935 16.2189 3.7605 16.2298 3.76157 16.2386C3.77029 16.2396 3.78127 16.2408 3.79481 16.2419C3.88689 16.2494 4.01441 16.25 4.24458 16.25H5.36125V15.4444C5.36125 15.0302 5.69704 14.6944 6.11125 14.6944H6.91681V13.8889C6.91681 13.4747 7.25259 13.1389 7.66681 13.1389H8.9117L9.92025 12.1303C9.93351 12.1171 9.94704 12.1035 9.96083 12.0896C10.1009 11.9487 10.2675 11.781 10.4572 11.675C10.6357 11.5752 10.7838 11.5252 10.9863 11.4962C11.1332 11.4752 11.2769 11.4854 11.3846 11.4958C11.4965 11.5066 11.6349 11.5252 11.7921 11.5463L11.8057 11.5482C11.978 11.5713 12.1541 11.5833 12.3335 11.5833C14.4966 11.5833 16.2501 9.82978 16.2501 7.66667C16.2501 5.50355 14.4966 3.75 12.3335 3.75ZM11.5835 6.11111C11.5835 5.6969 11.9193 5.36111 12.3335 5.36111C12.9224 5.36111 13.5137 5.58635 13.9637 6.03639C14.4138 6.48642 14.639 7.07774 14.639 7.6666C14.639 8.08081 14.3033 8.41661 13.889 8.41662C13.4748 8.41663 13.139 8.08086 13.139 7.66664C13.139 7.45933 13.0605 7.25449 12.9031 7.09705C12.7456 6.93961 12.5408 6.86111 12.3335 6.86111C11.9193 6.86111 11.5835 6.52532 11.5835 6.11111Z"/>
3
3
  </svg>
4
4
 
@@ -1,4 +1,4 @@
1
- <svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
1
+ <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
2
  <path fill-rule="evenodd" clip-rule="evenodd" d="M7 4C7 2.89543 7.89543 2 9 2H11C12.1046 2 13 2.89543 13 4V6C13 7.10457 12.1046 8 11 8H10.75V9.25H13.3333C13.7475 9.25 14.0833 9.58579 14.0833 10C14.0833 10.4142 13.7475 10.75 13.3333 10.75H6.66667C6.42355 10.75 6.19039 10.8466 6.01849 11.0185C5.84658 11.1904 5.75 11.4236 5.75 11.6667V12H6C7.10457 12 8 12.8954 8 14V16C8 17.1046 7.10457 18 6 18H4C2.89543 18 2 17.1046 2 16V14C2 12.8954 2.89543 12 4 12H4.25V11.6667C4.25 11.0257 4.50461 10.411 4.95783 9.95783C5.41104 9.50461 6.02573 9.25 6.66667 9.25H9.25V8H9C7.89543 8 7 7.10457 7 6V4ZM9 3.5C8.72386 3.5 8.5 3.72386 8.5 4V6C8.5 6.27614 8.72386 6.5 9 6.5H11C11.2761 6.5 11.5 6.27614 11.5 6V4C11.5 3.72386 11.2761 3.5 11 3.5H9ZM4 13.5C3.72386 13.5 3.5 13.7239 3.5 14V16C3.5 16.2761 3.72386 16.5 4 16.5H6C6.27614 16.5 6.5 16.2761 6.5 16V14C6.5 13.7239 6.27614 13.5 6 13.5H4Z"/>
3
3
  <path d="M15 12C15.4142 12 15.75 12.3358 15.75 12.75L15.75 14.25H17.25C17.6642 14.25 18 14.5858 18 15C18 15.4142 17.6642 15.75 17.25 15.75H15.75L15.75 17.25C15.75 17.6642 15.4142 18 15 18C14.5857 18 14.25 17.6642 14.25 17.25L14.25 15.75H12.75C12.3358 15.75 12 15.4142 12 15C12 14.5858 12.3358 14.25 12.75 14.25H14.25L14.25 12.75C14.25 12.3358 14.5858 12 15 12Z"/>
4
4
  </svg>
@@ -1,3 +1,3 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
1
+ <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
2
  <path d="M13.75 2.25C14.9926 2.25 16 3.25736 16 4.5V7.0498C17.1411 7.28143 18 8.29051 18 9.5V15.5C18 16.8807 16.8807 18 15.5 18H4.5C3.11929 18 2 16.8807 2 15.5V9.5C2 8.29051 2.85886 7.28142 4 7.0498V4.5C4 3.25736 5.00736 2.25 6.25 2.25H13.75ZM4.5 8.5C3.94771 8.5 3.5 9.05709 3.5 9.60938V15.5C3.5 16.0523 3.94771 16.5 4.5 16.5H8V14.5C8 14.2239 8.22386 14 8.5 14H14.5C14.7761 14 15 14.2239 15 14.5V16.5H15.5C16.0523 16.5 16.5 16.0523 16.5 15.5V9.5C16.5 8.94771 16.0523 8.5 15.5 8.5H4.5ZM8 10C8.41421 10 8.75 10.3358 8.75 10.75C8.75 11.1642 8.41421 11.5 8 11.5H5.5C5.08579 11.5 4.75 11.1642 4.75 10.75C4.75 10.3358 5.08579 10 5.5 10H8ZM6.25 3.75C5.83579 3.75 5.5 4.08579 5.5 4.5V7H14.5V4.5C14.5 4.08579 14.1642 3.75 13.75 3.75H6.25Z"/>
3
3
  </svg>
@@ -1,2 +1,7 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon"><path d="M3 3V5H17V3H3ZM3 17H17V15H3V17ZM8 13H17V11H8V13ZM8 9H17V7H8V9ZM3 7V13L6 10L3 7Z" class="richEditorIcons"></path></svg>
1
+ <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2.52967 6.96965C2.82256 6.67676 3.29732 6.67676 3.59021 6.96965L6.09021 9.46965C6.23087 9.6103 6.30994 9.80101 6.30994 9.99992C6.30994 10.1988 6.23087 10.3895 6.09021 10.5302L3.59021 13.0302C3.29732 13.3231 2.82256 13.3231 2.52967 13.0302C2.23677 12.7373 2.23677 12.2625 2.52967 11.9696L4.49939 9.99992L2.52967 8.0302C2.23677 7.7373 2.23677 7.26254 2.52967 6.96965Z" fill="black"/>
3
+ <path d="M16.94 3.41992C17.3542 3.41996 17.69 3.75573 17.69 4.16992C17.69 4.58411 17.3542 4.91988 16.94 4.91992H8.60994C8.19573 4.91992 7.85994 4.58414 7.85994 4.16992C7.85994 3.75571 8.19573 3.41992 8.60994 3.41992H16.94Z" />
4
+ <path d="M16.94 7.30992C17.3542 7.30996 17.69 7.64573 17.69 8.05992C17.69 8.47411 17.3542 8.80988 16.94 8.80992H8.60994C8.19573 8.80992 7.85994 8.47414 7.85994 8.05992C7.85994 7.64571 8.19573 7.30992 8.60994 7.30992H16.94Z" />
5
+ <path d="M16.94 11.1899C17.3542 11.19 17.69 11.5257 17.69 11.9399C17.69 12.3541 17.3542 12.6899 16.94 12.6899H8.60994C8.19573 12.6899 7.85994 12.3541 7.85994 11.9399C7.85994 11.5257 8.19573 11.1899 8.60994 11.1899H16.94Z" />
6
+ <path d="M16.94 15.0799C17.3542 15.08 17.69 15.4157 17.69 15.8299C17.69 16.2441 17.3542 16.5799 16.94 16.5799H8.60994C8.19573 16.5799 7.85994 16.2441 7.85994 15.8299C7.85994 15.4157 8.19573 15.0799 8.60994 15.0799H16.94Z" />
7
+ </svg>
@@ -1,2 +1,7 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="Icon"><path d="M3 3V5H17V3H3ZM3 17H17V15H3V17ZM9 13H17V11H9V13ZM9 9H17V7H9V9ZM3 10L6 13V7L3 10Z" class="richEditorIcons"></path></svg>
1
+ <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.4098 6.96965C16.7027 6.67676 17.1774 6.67676 17.4703 6.96965C17.7632 7.26254 17.7632 7.7373 17.4703 8.0302L15.5006 9.99992L17.4703 11.9696C17.7632 12.2625 17.7632 12.7373 17.4703 13.0302C17.1774 13.3231 16.7027 13.3231 16.4098 13.0302L13.9098 10.5302C13.6169 10.2373 13.6169 9.76254 13.9098 9.46965L16.4098 6.96965Z" />
3
+ <path d="M11.3901 15.0799C11.8043 15.08 12.1401 15.4157 12.1401 15.8299C12.1401 16.2441 11.8043 16.5799 11.3901 16.5799H3.06006C2.64585 16.5799 2.31006 16.2441 2.31006 15.8299C2.31006 15.4157 2.64585 15.0799 3.06006 15.0799H11.3901Z" />
4
+ <path d="M11.3901 11.1899C11.8043 11.19 12.1401 11.5257 12.1401 11.9399C12.1401 12.3541 11.8043 12.6899 11.3901 12.6899H3.06006C2.64585 12.6899 2.31006 12.3541 2.31006 11.9399C2.31006 11.5257 2.64585 11.1899 3.06006 11.1899H11.3901Z" />
5
+ <path d="M11.3901 7.30992C11.8043 7.30996 12.1401 7.64573 12.1401 8.05992C12.1401 8.47411 11.8043 8.80988 11.3901 8.80992H3.06006C2.64585 8.80992 2.31006 8.47414 2.31006 8.05992C2.31006 7.64571 2.64585 7.30992 3.06006 7.30992H11.3901Z" />
6
+ <path d="M11.3901 3.41992C11.8043 3.41996 12.1401 3.75573 12.1401 4.16992C12.1401 4.58411 11.8043 4.91988 11.3901 4.91992H3.06006C2.64585 4.91992 2.31006 4.58414 2.31006 4.16992C2.31006 3.75571 2.64585 3.41992 3.06006 3.41992H11.3901Z" />
7
+ </svg>
@@ -1,4 +1,4 @@
1
1
  <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M7.31301 5.13599H6.08301V11.54C6.08301 13.645 7.55301 15.163 10 15.163C12.447 15.163 13.917 13.645 13.917 11.54V5.13599H12.687V11.459C12.687 12.949 11.709 14.029 10 14.029C8.29101 14.029 7.31301 12.949 7.31301 11.459V5.13599Z" fill="black"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M14.5 17H5.5V16H14.5V17Z" fill="black"/>
2
+ <path d="M16.9299 16.1301C17.3717 16.1301 17.7296 16.4881 17.7297 16.9299C17.7297 17.3717 17.3717 17.7297 16.9299 17.7297H3.04999C2.60816 17.7297 2.25018 17.3717 2.25018 16.9299C2.25025 16.4881 2.6082 16.1301 3.04999 16.1301H16.9299Z" />
3
+ <path d="M14.1506 2.29999C14.5645 2.30029 14.9006 2.63596 14.9006 3.04999V9.43964C14.9006 10.7418 14.3828 11.9915 13.4621 12.9123C12.5414 13.8329 11.2924 14.3497 9.99042 14.3498C8.68845 14.3498 7.43949 13.8328 6.51874 12.9123C5.59793 11.9915 5.08026 10.7418 5.08026 9.43964V3.04999C5.08026 2.63577 5.41605 2.29999 5.83026 2.29999C6.24436 2.30012 6.58026 2.63586 6.58026 3.04999V9.43964C6.58026 10.344 6.93985 11.2113 7.57928 11.8508C8.21877 12.4902 9.08609 12.8498 9.99042 12.8498C10.8947 12.8497 11.7621 12.4902 12.4016 11.8508C13.0408 11.2113 13.4006 10.3438 13.4006 9.43964V3.04999C13.4006 2.63577 13.7364 2.29999 14.1506 2.29999Z" />
4
4
  </svg>
@@ -1,4 +1,4 @@
1
- <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
2
2
  <path
3
3
  d="m12.267 7.325-3.575 3.583-1.375-1.375a.833.833 0 1 0-1.175 1.175L8.1 12.675a.834.834 0 0 0 1.175 0l4.167-4.167a.833.833 0 1 0-1.175-1.183ZM10 1.667a8.333 8.333 0 1 0 0 16.666 8.333 8.333 0 0 0 0-16.666Zm0 15a6.667 6.667 0 1 1 0-13.334 6.667 6.667 0 0 1 0 13.334Z" />
4
4
  </svg>
@@ -1,4 +1,4 @@
1
- <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
1
+ <svg viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
2
2
  <path fill-rule="evenodd" clip-rule="evenodd" d="M4.27499 2.02502C2.90808 2.02502 1.79999 3.13312 1.79999 4.50003V11.6197C1.79999 12.9866 2.90808 14.0947 4.27499 14.0947H8.57547L12.3738 16.3317C12.5825 16.4546 12.8411 16.4562 13.0513 16.336C13.2616 16.2159 13.3914 15.9922 13.3914 15.75V14.0947H14.175C15.5419 14.0947 16.65 12.9866 16.65 11.6197V4.68002C16.65 3.21371 15.4613 2.02502 13.995 2.02502H4.27499ZM3.14999 4.50003C3.14999 3.8787 3.65367 3.37502 4.27499 3.37502H13.995C14.7157 3.37502 15.3 3.95929 15.3 4.68002V11.6197C15.3 12.241 14.7963 12.7447 14.175 12.7447H12.7164C12.3436 12.7447 12.0414 13.0469 12.0414 13.4197V14.5691L9.10201 12.838C8.99821 12.7769 8.87994 12.7447 8.75947 12.7447H4.27499C3.65367 12.7447 3.14999 12.241 3.14999 11.6197V4.50003ZM8.99999 5.40002C9.37277 5.40002 9.67499 5.70224 9.67499 6.07502V7.42502H11.025C11.3978 7.42502 11.7 7.72723 11.7 8.10002C11.7 8.4728 11.3978 8.77502 11.025 8.77502H9.67499V10.125C9.67499 10.4978 9.37277 10.8 8.99999 10.8C8.62712 10.8 8.32499 10.4978 8.32499 10.125V8.77502H6.97499C6.60221 8.77502 6.29999 8.4728 6.29999 8.10002C6.29999 7.72723 6.60221 7.42502 6.97499 7.42502H8.32499V6.07502C8.32499 5.70224 8.62721 5.40002 8.99999 5.40002Z"/>
3
3
  </svg>
4
4
 
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.9302 15.0702C17.3443 15.0703 17.6802 15.406 17.6802 15.8202C17.6801 16.2342 17.3442 16.57 16.9302 16.5702H3.05031C2.63615 16.5702 2.30039 16.2343 2.30031 15.8202C2.30031 15.4059 2.6361 15.0702 3.05031 15.0702H16.9302Z" />
3
+ <path d="M8.15871 9.24985C8.57285 9.24913 8.90888 9.58471 8.90968 9.99887C8.91032 10.4129 8.57566 10.749 8.16164 10.7498L3.00148 10.7596C2.5873 10.7604 2.25038 10.4257 2.24953 10.0116C2.24872 9.59735 2.58434 9.26042 2.99855 9.25961L8.15871 9.24985Z" />
4
+ <path d="M16.9302 3.41C17.3443 3.41017 17.6802 3.74589 17.6802 4.16C17.6802 4.57412 17.3443 4.90984 16.9302 4.91H3.05031C2.6361 4.91 2.30031 4.57422 2.30031 4.16C2.30031 3.74579 2.6361 3.41 3.05031 3.41H16.9302Z" />
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" >
2
+ <path d="M15 3C16.1046 3 17 3.89543 17 5V15C17 16.1046 16.1046 17 15 17H5C3.89543 17 3 16.1046 3 15V5C3 3.89543 3.89543 3 5 3H15ZM5.5 7C5.22386 7 5 7.22386 5 7.5V14.5C5 14.7761 5.22386 15 5.5 15H14.5C14.7761 15 15 14.7761 15 14.5V7.5C15 7.22386 14.7761 7 14.5 7H5.5Z"/>
3
+ </svg>
@@ -1,4 +1,4 @@
1
- <svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
2
2
  <path
3
3
  d="M10 13.333A.833.833 0 1 0 10 15a.833.833 0 0 0 0-1.666Zm8.892 1.225L12.183 2.892a2.5 2.5 0 0 0-4.366 0L1.15 14.558a2.5 2.5 0 0 0 2.133 3.775h13.434a2.5 2.5 0 0 0 2.175-3.775Zm-1.442 1.667a.832.832 0 0 1-.733.425H3.283a.832.832 0 0 1-.733-.425.833.833 0 0 1 0-.833L9.217 3.725a.833.833 0 0 1 1.483 0l6.708 11.667a.834.834 0 0 1 .042.85v-.017ZM10 6.667a.833.833 0 0 0-.833.833v3.333a.833.833 0 0 0 1.666 0V7.5A.834.834 0 0 0 10 6.667Z" />
4
4
  </svg>
@@ -0,0 +1,5 @@
1
+ <svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M9.131 2.61037C9.6728 2.47393 10.2391 2.46682 10.7841 2.58964C11.3292 2.71246 11.8377 2.96176 12.2686 3.31739C12.6996 3.67303 13.0408 4.12503 13.2648 4.63689C13.4308 5.01636 13.2578 5.4586 12.8783 5.62464C12.4988 5.79069 12.0566 5.61767 11.8906 5.2382C11.7609 4.94186 11.5633 4.68017 11.3139 4.47428C11.0644 4.26839 10.77 4.12406 10.4544 4.05295C10.1389 3.98185 9.811 3.98596 9.49733 4.06495C9.18366 4.14395 8.89296 4.29562 8.64873 4.5077C8.40449 4.71979 8.21356 4.98635 8.09136 5.28585C7.96917 5.58535 7.91913 5.90939 7.94529 6.23179C7.97144 6.5542 8.07307 6.86594 8.24195 7.14182C8.41083 7.4177 8.64223 7.64999 8.91746 7.81993C9.26945 8.03726 9.379 8.49855 9.16232 8.85094L6.57832 13.0532C6.60869 13.1552 6.625 13.2632 6.625 13.375C6.625 13.9963 6.12132 14.5 5.5 14.5C4.87868 14.5 4.375 13.9963 4.375 13.375C4.375 12.8218 4.77435 12.3618 5.3005 12.2676L7.53411 8.63516C7.31473 8.42459 7.12246 8.18608 6.96262 7.92496C6.67091 7.44844 6.49538 6.90998 6.4502 6.3531C6.40502 5.79621 6.49145 5.2365 6.70252 4.71919C6.91359 4.20187 7.24337 3.74145 7.66523 3.37512C8.08709 3.00879 8.5892 2.74682 9.131 2.61037Z"/>
3
+ <path d="M11.0783 6.38429C11.1087 6.28234 11.125 6.17432 11.125 6.0625C11.125 5.44118 10.6213 4.9375 10 4.9375C9.37868 4.9375 8.875 5.44118 8.875 6.0625C8.875 6.61572 9.27432 7.07568 9.80046 7.16986L12.3846 11.3723C12.4888 11.5418 12.656 11.6629 12.8495 11.709C13.043 11.7552 13.247 11.7225 13.4164 11.6183C13.6878 11.4513 13.9943 11.3495 14.3117 11.3209C14.6291 11.2922 14.9488 11.3375 15.2458 11.4532C15.5428 11.5689 15.8089 11.7519 16.0232 11.9877C16.2376 12.2235 16.3944 12.5058 16.4813 12.8124C16.5683 13.1191 16.583 13.4416 16.5243 13.7549C16.4656 14.0681 16.3351 14.3635 16.143 14.6179C15.951 14.8722 15.7026 15.0786 15.4174 15.2208C15.1322 15.363 14.8179 15.4372 14.4992 15.4375C14.085 15.438 13.7496 15.7741 13.75 16.1883C13.7504 16.6025 14.0866 16.938 14.5008 16.9375C15.0513 16.9369 15.5941 16.8088 16.0868 16.5632C16.5794 16.3175 17.0084 15.961 17.3401 15.5217C17.6718 15.0824 17.8972 14.5722 17.9986 14.0312C18.1 13.4901 18.0746 12.9329 17.9245 12.4033C17.7743 11.8737 17.5035 11.3861 17.1332 10.9787C16.7629 10.5714 16.3033 10.2554 15.7904 10.0556C15.2774 9.85572 14.7252 9.77746 14.1769 9.82693C13.8807 9.85366 13.5899 9.91729 13.3112 10.0157L11.0783 6.38429Z"/>
4
+ <path d="M15.625 13.375C15.625 13.9963 15.1213 14.5 14.5 14.5C14.1668 14.5 13.8675 14.3552 13.6615 14.125H8.98266C8.91753 14.4274 8.81307 14.7211 8.67114 14.9984C8.41391 15.5008 8.04097 15.935 7.58303 16.2651C7.1251 16.5951 6.59528 16.8116 6.03726 16.8968C5.47923 16.9819 4.90896 16.9332 4.37344 16.7547C3.83792 16.5762 3.35249 16.273 2.95714 15.8701C2.5618 15.4671 2.26786 14.976 2.09955 14.4372C1.93123 13.8984 1.89337 13.3273 1.98907 12.771C2.08478 12.2147 2.31131 11.6891 2.65 11.2375C2.89853 10.9061 3.36863 10.839 3.7 11.0875C4.03137 11.336 4.09853 11.8061 3.85 12.1375C3.65392 12.399 3.52277 12.7033 3.46736 13.0253C3.41195 13.3474 3.43387 13.678 3.53132 13.99C3.62876 14.3019 3.79894 14.5862 4.02782 14.8195C4.2567 15.0528 4.53774 15.2283 4.84778 15.3317C5.15782 15.435 5.48797 15.4632 5.81104 15.4139C6.13411 15.3646 6.44085 15.2393 6.70597 15.0482C6.97108 14.8571 7.187 14.6058 7.33592 14.3149C7.48484 14.0239 7.5625 13.7018 7.5625 13.375C7.5625 12.9608 7.89829 12.625 8.3125 12.625H13.6614C13.8674 12.3948 14.1668 12.25 14.5 12.25C15.1213 12.25 15.625 12.7537 15.625 13.375Z"/>
5
+ </svg>
@@ -1,4 +1,4 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
1
+ <svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
2
  <g clip-path="url(#clip0_11033_44381)">
3
3
  <mask id="mask0_11033_44381" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="2" y="2" width="16" height="16">
4
4
  <path d="M18 2H2V18H18V2Z"/>
@@ -26,6 +26,8 @@ export type IconBaseProps = Omit<SVGProps<SVGSVGElement>, "ref" | "color"> & {
26
26
  iconSize?: number;
27
27
  /** Pass null to inherit parent's color */
28
28
  color?: string | null | undefined;
29
+ /** Skip auto-deneutralize when the color is already processed for display (e.g. a11y-adjusted) */
30
+ colorProcessed?: boolean;
29
31
  };
30
32
 
31
33
  export type IconProps = IconBaseProps & {
@@ -27,6 +27,8 @@ type Methods = {
27
27
  update: () => void;
28
28
  nextImage: () => void;
29
29
  prevImage: () => void;
30
+ deleteSlide: (key: string) => void;
31
+ registerOnClose: (callback: () => void) => () => void;
30
32
  };
31
33
 
32
34
  export {ImagesGalleryRegistryProvider, useImagesGalleryRegistry};
@@ -37,6 +39,8 @@ const [ImagesGalleryMethodsProvider, useImagesGalleryMethods] = createContext<Me
37
39
  update: noop,
38
40
  nextImage: noop,
39
41
  prevImage: noop,
42
+ deleteSlide: noop,
43
+ registerOnClose: () => noop,
40
44
  });
41
45
  type State = {version: "1" | "2"; visible: boolean; activated: boolean; _inc: number};
42
46
 
@@ -51,6 +55,14 @@ export {
51
55
  ImagesGalleryStateContext,
52
56
  };
53
57
 
58
+ export function useOnImageGalleryClose(callback: () => void) {
59
+ const methods = useImagesGalleryMethods();
60
+
61
+ useEffect(() => {
62
+ return methods.registerOnClose(callback);
63
+ }, [methods, callback]);
64
+ }
65
+
54
66
  type Registry = Map<
55
67
  string,
56
68
  {
@@ -130,6 +142,8 @@ export function ImagesGalleryProvider({children}: PropsWithChildren) {
130
142
  const [galleryState, dispatchState] = useReducer(imagesGalleryReducer, [], initialState);
131
143
 
132
144
  const lightbox = useRef<PhotoSwipeLightbox | null>(null);
145
+ const onCloseCallbacks = useRef<Set<() => void>>(new Set());
146
+
133
147
  const markAllNotZoomed = useCallback(() => {
134
148
  for (const node of imagesRegistry.values()) {
135
149
  if (node.zoomed) {
@@ -161,6 +175,53 @@ export function ImagesGalleryProvider({children}: PropsWithChildren) {
161
175
  prevImage: () => {
162
176
  lightbox.current?.pswp?.prev();
163
177
  },
178
+ deleteSlide: (key: string) => {
179
+ const pswp = lightbox.current?.pswp;
180
+ if (!pswp) {
181
+ return;
182
+ }
183
+
184
+ const dataSource = (pswp.options.dataSource as GalleryEntry[]) ?? [];
185
+ const indexToDelete = dataSource.findIndex((entry) => entry.key === key);
186
+ if (indexToDelete < 0) {
187
+ return;
188
+ }
189
+
190
+ const currIndex = pswp.currIndex;
191
+
192
+ dataSource.splice(indexToDelete, 1);
193
+ if (dataSource.length === 0) {
194
+ pswp.close();
195
+ return;
196
+ }
197
+
198
+ let newIndex = currIndex;
199
+ if (indexToDelete === currIndex) {
200
+ newIndex = currIndex >= dataSource.length ? dataSource.length - 1 : currIndex;
201
+ } else if (indexToDelete < currIndex) {
202
+ newIndex = currIndex - 1;
203
+ }
204
+
205
+ pswp.options.dataSource = dataSource;
206
+ pswp.goTo(newIndex);
207
+
208
+ // reset cached in the DOM slides
209
+ pswp.refreshSlideContent(newIndex);
210
+ if (dataSource.length > 1) {
211
+ const prevIndex = (newIndex - 1 + dataSource.length) % dataSource.length;
212
+ const nextIndex = (newIndex + 1) % dataSource.length;
213
+ pswp.refreshSlideContent(prevIndex);
214
+ pswp.refreshSlideContent(nextIndex);
215
+ }
216
+
217
+ pswp.dispatch("change");
218
+ },
219
+ registerOnClose: (callback: () => void) => {
220
+ onCloseCallbacks.current.add(callback);
221
+ return () => {
222
+ onCloseCallbacks.current.delete(callback);
223
+ };
224
+ },
164
225
  };
165
226
  }, []);
166
227
 
@@ -170,10 +231,16 @@ export function ImagesGalleryProvider({children}: PropsWithChildren) {
170
231
 
171
232
  useEffect(() => {
172
233
  if (galleryState.activated) {
234
+ const onCloseCallbacksCopy = [...onCloseCallbacks.current];
235
+ const onClose = () => {
236
+ onCloseCallbacksCopy.forEach((callback) => callback());
237
+ };
238
+
173
239
  const value = initGallery(imagesRegistry, {toastQueue: toast, isPhone, themeMode});
174
240
  value.on("close", () => {
175
241
  dispatchState({type: "set-activated", payload: false});
176
242
  markAllNotZoomed();
243
+ onClose();
177
244
  value.destroy();
178
245
  });
179
246
 
@@ -215,6 +282,7 @@ function imagesGalleryReducer(state: State, action: Actions) {
215
282
  }
216
283
 
217
284
  type GalleryEntry = {
285
+ key?: string;
218
286
  type: string;
219
287
  src: string;
220
288
  contentType: string | null;
@@ -230,8 +298,8 @@ function attachCustomControls(
230
298
  items: {
231
299
  src: string;
232
300
  label?: string;
233
- type: "image" | "video" | "iframe";
234
- contentType?: string;
301
+ type: string;
302
+ contentType?: string | null;
235
303
  actions?: React.ReactNode;
236
304
  zoomed: boolean;
237
305
  setZoomed: (zoomed: boolean) => void;
@@ -294,15 +362,21 @@ function attachCustomControls(
294
362
  isButton: false,
295
363
  appendTo: "wrapper",
296
364
  onInit: (el, pswp) => {
297
- createRoot(el).render(
298
- <SlideButtons
299
- items={items}
300
- pswp={pswp}
301
- toastQueue={toastQueue}
302
- themeMode={themeMode}
303
- uiHandlers={uiHandlers}
304
- />
305
- );
365
+ const root = createRoot(el);
366
+ const render = () => {
367
+ root.render(
368
+ <SlideButtons
369
+ items={[...items]}
370
+ pswp={pswp}
371
+ toastQueue={toastQueue}
372
+ themeMode={themeMode}
373
+ uiHandlers={uiHandlers}
374
+ />
375
+ );
376
+ };
377
+
378
+ render();
379
+ lightbox.pswp?.on("change", render);
306
380
  },
307
381
  });
308
382
  });
@@ -345,7 +419,9 @@ export function initGallery(
345
419
  imagesRegistry: Registry,
346
420
  {toastQueue, themeMode, isPhone}: {toastQueue: ToastQueue; themeMode: ThemeMode; isPhone: boolean}
347
421
  ) {
348
- const items = [...imagesRegistry.values()];
422
+ const items = [...imagesRegistry.entries()].map(([key, value]) => {
423
+ return {...value, key};
424
+ });
349
425
  const dataSource: GalleryEntry[] = items.map((item) => ({
350
426
  ...item,
351
427
  state: "none",
@@ -404,7 +480,7 @@ export function initGallery(
404
480
  });
405
481
 
406
482
  lightbox.on("contentDeactivate", (e) => {
407
- dataSource[e.content.index].setZoomed(false);
483
+ dataSource[e.content.index]?.setZoomed(false);
408
484
  e.content.element?.querySelector("video")?.pause();
409
485
  });
410
486
 
@@ -430,7 +506,7 @@ export function initGallery(
430
506
  lightbox.on("contentRemove", (e) => {
431
507
  const item = dataSource[e.content.index];
432
508
 
433
- if (item.type === "video" || item.type === "iframe") {
509
+ if (item?.type === "video" || item?.type === "iframe") {
434
510
  item.state = "none";
435
511
  }
436
512
  });
@@ -475,8 +551,7 @@ export function initGallery(
475
551
  }
476
552
  });
477
553
 
478
- attachCustomControls(lightbox, items, toastQueue, themeMode);
479
-
554
+ attachCustomControls(lightbox, dataSource, toastQueue, themeMode);
480
555
  lightbox.on("destroy", () => {
481
556
  contentAppendTimeouts.forEach((timeoutId) => {
482
557
  clearTimeout(timeoutId);
@@ -65,6 +65,8 @@ export function SlideButtons({
65
65
  }) {
66
66
  const [slideState, setSliceState] = useState<SlideState>(getSlideData(pswp, items));
67
67
  useEffect(() => {
68
+ setSliceState(getSlideData(pswp, items));
69
+
68
70
  const handler = () => {
69
71
  setSliceState(getSlideData(pswp, items));
70
72
  };
@@ -80,7 +82,7 @@ export function SlideButtons({
80
82
  return (
81
83
  <ToastProvider toastQueue={toastQueue}>
82
84
  <ThemeProvider mode="dark">
83
- <div className={wrapper}>
85
+ <div key={slideState.src} className={wrapper}>
84
86
  <div className={barClassName}>
85
87
  {slideState.src ? <CopyURLButton pswp={pswp} showUI={uiHandlers.showUI} /> : null}
86
88
  <ZoomButton pswp={pswp} showUI={uiHandlers.showUI} />
@@ -158,6 +160,7 @@ function SlideActionsMenu({
158
160
  return (
159
161
  <div>
160
162
  <ActionsMenu
163
+ modal
161
164
  onOpenChange={(value) => {
162
165
  uiHandlers.setForceShowUI(value);
163
166
  }}
@@ -165,14 +168,7 @@ function SlideActionsMenu({
165
168
  margin-top: ${space.s8}px;
166
169
  `}
167
170
  container={container}
168
- trigger={
169
- <ActionsButtonCompact
170
- size={isPhone ? "large" : "medium"}
171
- color="neutral"
172
- variant="soft"
173
- onClick={uiHandlers.showUI}
174
- />
175
- }
171
+ trigger={<ActionsButtonCompact size={isPhone ? "large" : "medium"} color="neutral" variant="soft" />}
176
172
  >
177
173
  {actions}
178
174
  </ActionsMenu>
@@ -1,6 +1,6 @@
1
1
  import {css, cx} from "@linaria/core";
2
2
  import {Tooltip} from "./tooltip";
3
- import {space, textStyles, themeVars} from "./design-system";
3
+ import {border, space, textStyles, themeVars} from "./design-system";
4
4
  import {useTheme} from "./theme-provider";
5
5
  import WarningIcon from "./icons/react/WarningTriangle";
6
6
  import {Spinner} from "./loaders";
@@ -12,7 +12,7 @@ const buttonCss = css`
12
12
  align-items: center;
13
13
  padding: ${space.s2}px ${space.s8}px ${space.s2}px ${space.s4}px;
14
14
  gap: ${space.s4}px;
15
- border-radius: 6px;
15
+ border-radius: ${border.radius6}px;
16
16
  `;
17
17
 
18
18
  const loadingCss = css`
@@ -27,15 +27,19 @@ export const IntegrationCompactInfoButton: React.FC<{
27
27
  loading?: boolean;
28
28
  onClick?: () => void;
29
29
  }> = ({onClick, loading, icon, name, title, error}) => {
30
- const colors = useTheme();
31
-
30
+ const theme = useTheme();
32
31
  let iconNode = icon;
33
32
 
34
33
  if (error) {
35
- iconNode = <WarningIcon color={colors.errorButtonColor} iconSize={18} containerSize={24} />;
34
+ iconNode = <WarningIcon color={theme.colors.errorButtonColor} iconSize={18} containerSize={24} />;
36
35
  } else if (loading) {
37
36
  iconNode = (
38
- <Spinner color={colors.accentTextColor} backgroundColor={colors.mainBg} iconSize={16} containerSize={24} />
37
+ <Spinner
38
+ color={theme.colors.accentTextColor}
39
+ backgroundColor={theme.colors.mainBg}
40
+ iconSize={16}
41
+ containerSize={24}
42
+ />
39
43
  );
40
44
  }
41
45
 
@@ -19,7 +19,8 @@ import {
19
19
  } from "./list-row-surface";
20
20
 
21
21
  interface ActionMenuItemSurfaceProps
22
- extends Omit<ActionsMenuItemProps, "description">,
22
+ extends
23
+ Omit<ActionsMenuItemProps, "description">,
23
24
  Omit<ListRowSurfaceProps, "children" | "darker" | "onSelect" | "id"> {}
24
25
 
25
26
  export const actionMenuItemSurface = css`
package/src/loaders.tsx CHANGED
@@ -1,6 +1,6 @@
1
1
  import {css, cx} from "@linaria/core";
2
2
  import {styled} from "@linaria/react";
3
- import {ReactNode, memo, useMemo} from "react";
3
+ import {memo, ReactNode, useMemo} from "react";
4
4
  import {IconBaseProps} from "./icons/types";
5
5
  import {border, layout, space, textStyles, themeVars} from "./design-system";
6
6
  import {getShiftStyle} from "./icons/get-shift-style";
@@ -93,7 +93,7 @@ const spinner = css`
93
93
  }
94
94
  }
95
95
  box-sizing: border-box;
96
- border-radius: 50%;
96
+ border-radius: ${border.radiusFull};
97
97
  border-style: solid;
98
98
  animation: spinnerAnimation 0.6s linear infinite;
99
99
  `;
@@ -17,11 +17,11 @@ export const getRandomInt = (min: number, max: number, seed?: number): number =>
17
17
  return Math.floor(random * (max - min + 1)) + min;
18
18
  };
19
19
 
20
- const blackGradient1 = `linear-gradient(90deg, ${themeVars.shades.opacity5} 0%, ${themeVars.shades.opacity10} 100%)`;
21
- const blackGradient2 = `linear-gradient(90deg, ${themeVars.shades.opacity10} 0%, ${themeVars.shades.opacity5} 100%)`;
20
+ const blackGradient1 = `linear-gradient(90deg, ${themeVars.colorBgSkeletonFrom} 0%, ${themeVars.colorBgSkeletonTo} 100%)`;
21
+ const blackGradient2 = `linear-gradient(90deg, ${themeVars.colorBgSkeletonTo} 0%, ${themeVars.colorBgSkeletonFrom} 100%)`;
22
22
 
23
- const whiteGradient1 = `linear-gradient(90deg, ${themeVars.lights.opacity5} 0%, ${themeVars.lights.opacity10} 100%)`;
24
- const whiteGradient2 = `linear-gradient(90deg, ${themeVars.lights.opacity10} 0%, ${themeVars.lights.opacity5} 100%)`;
23
+ const whiteGradient1 = `linear-gradient(90deg, ${themeVars.separatorColorDimmed} 0%, ${themeVars.separatorColor} 100%)`;
24
+ const whiteGradient2 = `linear-gradient(90deg, ${themeVars.separatorColor} 0%, ${themeVars.separatorColorDimmed} 100%)`;
25
25
 
26
26
  const loadingSausageStyle = css`
27
27
  vertical-align: middle;