@antscorp/antsomi-ui 2.0.91 → 2.0.92-text-editor-beta.3

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 (317) hide show
  1. package/es/assets/css/main.scss +4 -2
  2. package/es/components/atoms/Eyedropper/Eyedropper.d.ts +2 -0
  3. package/es/components/atoms/Eyedropper/Eyedropper.js +53 -0
  4. package/es/components/atoms/Eyedropper/index.d.ts +0 -0
  5. package/es/components/atoms/Eyedropper/index.js +1 -0
  6. package/es/components/atoms/Eyedropper/styled.d.ts +9 -0
  7. package/es/components/atoms/Eyedropper/styled.js +45 -0
  8. package/es/components/atoms/Eyedropper/types.d.ts +5 -0
  9. package/es/components/atoms/Eyedropper/types.js +1 -0
  10. package/es/components/icons/ALignRightIcon.d.ts +3 -0
  11. package/es/components/icons/ALignRightIcon.js +7 -0
  12. package/es/components/icons/AlignCenterIcon.d.ts +3 -0
  13. package/es/components/icons/AlignCenterIcon.js +7 -0
  14. package/es/components/icons/AlignJustifyIcon.d.ts +3 -0
  15. package/es/components/icons/AlignJustifyIcon.js +7 -0
  16. package/es/components/icons/AlignLeftIcon.d.ts +3 -0
  17. package/es/components/icons/AlignLeftIcon.js +7 -0
  18. package/es/components/icons/ArrowDropDownIcon.d.ts +3 -0
  19. package/es/components/icons/ArrowDropDownIcon.js +7 -0
  20. package/es/components/icons/ChevronRightIcon.d.ts +3 -0
  21. package/es/components/icons/ChevronRightIcon.js +7 -0
  22. package/es/components/icons/ColorizeIcon.d.ts +3 -0
  23. package/es/components/icons/ColorizeIcon.js +7 -0
  24. package/es/components/icons/FailSlim.d.ts +3 -0
  25. package/es/components/icons/FailSlim.js +7 -0
  26. package/es/components/icons/LazyIcon/LazyIcon.d.ts +19 -9
  27. package/es/components/icons/LazyIcon/LazyIcon.js +19 -9
  28. package/es/components/icons/LinkOffIcon.d.ts +3 -0
  29. package/es/components/icons/LinkOffIcon.js +7 -0
  30. package/es/components/icons/MinusIcon.d.ts +3 -0
  31. package/es/components/icons/MinusIcon.js +7 -0
  32. package/es/components/icons/index.d.ts +19 -9
  33. package/es/components/icons/index.js +19 -9
  34. package/es/components/index.scss +2 -0
  35. package/es/components/molecules/EmojiCollections/CommonCollection/index.js +2 -2
  36. package/es/components/molecules/EmojiCollections/types.d.ts +1 -0
  37. package/es/components/molecules/EmojiPopover/EmojiPopover.d.ts +1 -0
  38. package/es/components/molecules/EmojiPopover/EmojiPopover.js +10 -6
  39. package/es/components/molecules/EmojiPopover/styled.d.ts +2 -2
  40. package/es/components/molecules/EmojiPopover/styled.js +1 -1
  41. package/es/components/molecules/EyedropperButton/EyedropperButton.d.ts +11 -0
  42. package/es/components/molecules/EyedropperButton/EyedropperButton.js +34 -0
  43. package/es/components/molecules/EyedropperButton/index.d.ts +0 -0
  44. package/es/components/molecules/EyedropperButton/index.js +1 -0
  45. package/es/components/molecules/EyedropperButton/styled.d.ts +7 -0
  46. package/es/components/molecules/EyedropperButton/styled.js +23 -0
  47. package/es/components/molecules/FontSizeInput/FontSizeInput.d.ts +3 -0
  48. package/es/components/molecules/FontSizeInput/FontSizeInput.js +134 -0
  49. package/es/components/molecules/FontSizeInput/components/FontSizeControl.d.ts +8 -0
  50. package/es/components/molecules/FontSizeInput/components/FontSizeControl.js +14 -0
  51. package/es/components/molecules/FontSizeInput/components/FontSizeDropdown.d.ts +21 -0
  52. package/es/components/molecules/FontSizeInput/components/FontSizeDropdown.js +19 -0
  53. package/es/components/molecules/FontSizeInput/constants.d.ts +2 -0
  54. package/es/components/molecules/FontSizeInput/constants.js +5 -0
  55. package/es/components/molecules/FontSizeInput/index.d.ts +2 -0
  56. package/es/components/molecules/FontSizeInput/index.js +1 -0
  57. package/es/components/molecules/FontSizeInput/styled.d.ts +7 -0
  58. package/es/components/molecules/FontSizeInput/styled.js +40 -0
  59. package/es/components/molecules/FontSizeInput/styles.scss +15 -0
  60. package/es/components/molecules/FontSizeInput/types.d.ts +23 -0
  61. package/es/components/molecules/FontSizeInput/types.js +1 -0
  62. package/es/components/molecules/FontSizeInput/utils.d.ts +7 -0
  63. package/es/components/molecules/FontSizeInput/utils.js +9 -0
  64. package/es/components/molecules/VirtualizedMenu/VirtualizedMenu.d.ts +6 -3
  65. package/es/components/molecules/VirtualizedMenu/__mocks__/index.js +2550 -938
  66. package/es/components/molecules/VirtualizedMenu/components/Item/Item.d.ts +1 -11
  67. package/es/components/molecules/VirtualizedMenu/components/Item/Item.js +53 -25
  68. package/es/components/molecules/VirtualizedMenu/components/MenuInline/MenuInline.d.ts +8 -5
  69. package/es/components/molecules/VirtualizedMenu/components/MenuInline/MenuInline.js +289 -46
  70. package/es/components/molecules/VirtualizedMenu/components/MenuInline/index.js +1 -0
  71. package/es/components/molecules/VirtualizedMenu/styled.d.ts +2 -2
  72. package/es/components/molecules/VirtualizedMenu/styled.js +23 -4
  73. package/es/components/molecules/VirtualizedMenu/types.d.ts +27 -10
  74. package/es/components/molecules/VirtualizedMenu/utils.d.ts +8 -5
  75. package/es/components/molecules/VirtualizedMenu/utils.js +13 -18
  76. package/es/components/molecules/index.d.ts +1 -0
  77. package/es/components/molecules/index.js +1 -0
  78. package/es/components/molecules/index.scss +1 -0
  79. package/es/components/organism/ActivityTimeline/__mocks__/event_tracking.json +1290 -0
  80. package/es/components/organism/ActivityTimeline/__mocks__/timeline.json +3059 -0
  81. package/es/components/organism/TextEditor/TextEditor.d.ts +3 -0
  82. package/es/components/organism/TextEditor/TextEditor.js +277 -0
  83. package/es/components/organism/TextEditor/__mocks__/text-block.settings.json +320 -0
  84. package/es/components/organism/TextEditor/__mocks__/text-contennt.d.ts +1 -0
  85. package/es/components/organism/TextEditor/__mocks__/text-contennt.js +38 -0
  86. package/es/components/organism/TextEditor/constants.d.ts +175 -0
  87. package/es/components/organism/TextEditor/constants.js +321 -0
  88. package/es/components/organism/TextEditor/extensions/BackgroundColor.d.ts +25 -0
  89. package/es/components/organism/TextEditor/extensions/BackgroundColor.js +46 -0
  90. package/es/components/organism/TextEditor/extensions/BubbleMenu/bubble-menu-plugin.d.ts +130 -0
  91. package/es/components/organism/TextEditor/extensions/BubbleMenu/bubble-menu-plugin.js +247 -0
  92. package/es/components/organism/TextEditor/extensions/BubbleMenu/bubble-menu.d.ts +15 -0
  93. package/es/components/organism/TextEditor/extensions/BubbleMenu/bubble-menu.js +31 -0
  94. package/es/components/organism/TextEditor/extensions/BubbleMenu/index.d.ts +2 -0
  95. package/es/components/organism/TextEditor/extensions/BubbleMenu/index.js +2 -0
  96. package/es/components/organism/TextEditor/extensions/Color.d.ts +6 -0
  97. package/es/components/organism/TextEditor/extensions/Color.js +34 -0
  98. package/es/components/organism/TextEditor/extensions/Emoji.d.ts +57 -0
  99. package/es/components/organism/TextEditor/extensions/Emoji.js +184 -0
  100. package/es/components/organism/TextEditor/extensions/FontFamily.d.ts +6 -0
  101. package/es/components/organism/TextEditor/extensions/FontFamily.js +36 -0
  102. package/es/components/organism/TextEditor/extensions/FontSize.d.ts +32 -0
  103. package/es/components/organism/TextEditor/extensions/FontSize.js +47 -0
  104. package/es/components/organism/TextEditor/extensions/FontWeight.d.ts +23 -0
  105. package/es/components/organism/TextEditor/extensions/FontWeight.js +41 -0
  106. package/es/components/organism/TextEditor/extensions/Highlight.d.ts +1 -0
  107. package/es/components/organism/TextEditor/extensions/Highlight.js +14 -0
  108. package/es/components/organism/TextEditor/extensions/Indent.d.ts +21 -0
  109. package/es/components/organism/TextEditor/extensions/Indent.js +63 -0
  110. package/es/components/organism/TextEditor/extensions/LetterSpacing.d.ts +32 -0
  111. package/es/components/organism/TextEditor/extensions/LetterSpacing.js +48 -0
  112. package/es/components/organism/TextEditor/extensions/LineHeight.d.ts +20 -0
  113. package/es/components/organism/TextEditor/extensions/LineHeight.js +36 -0
  114. package/es/components/organism/TextEditor/extensions/Link.d.ts +37 -0
  115. package/es/components/organism/TextEditor/extensions/Link.js +187 -0
  116. package/es/components/organism/TextEditor/extensions/ListItemMarker.d.ts +13 -0
  117. package/es/components/organism/TextEditor/extensions/ListItemMarker.js +174 -0
  118. package/es/components/organism/TextEditor/extensions/OrderedList.d.ts +56 -0
  119. package/es/components/organism/TextEditor/extensions/OrderedList.js +187 -0
  120. package/es/components/organism/TextEditor/extensions/SmartTag.d.ts +39 -0
  121. package/es/components/organism/TextEditor/extensions/SmartTag.js +167 -0
  122. package/es/components/organism/TextEditor/extensions/StyleMemory.d.ts +36 -0
  123. package/es/components/organism/TextEditor/extensions/StyleMemory.js +163 -0
  124. package/es/components/organism/TextEditor/extensions/TextTransform.d.ts +31 -0
  125. package/es/components/organism/TextEditor/extensions/TextTransform.js +37 -0
  126. package/es/components/organism/TextEditor/extensions/UnorderedList.d.ts +55 -0
  127. package/es/components/organism/TextEditor/extensions/UnorderedList.js +176 -0
  128. package/es/components/organism/TextEditor/hooks/index.d.ts +7 -0
  129. package/es/components/organism/TextEditor/hooks/index.js +7 -0
  130. package/es/components/organism/TextEditor/hooks/useColorSet.d.ts +4 -0
  131. package/es/components/organism/TextEditor/hooks/useColorSet.js +22 -0
  132. package/es/components/organism/TextEditor/hooks/useDocumentState.d.ts +18 -0
  133. package/es/components/organism/TextEditor/hooks/useDocumentState.js +42 -0
  134. package/es/components/organism/TextEditor/hooks/useLinkHandler.d.ts +14 -0
  135. package/es/components/organism/TextEditor/hooks/useLinkHandler.js +125 -0
  136. package/es/components/organism/TextEditor/hooks/useMarkTracking.d.ts +26 -0
  137. package/es/components/organism/TextEditor/hooks/useMarkTracking.js +68 -0
  138. package/es/components/organism/TextEditor/hooks/usePersistence.d.ts +31 -0
  139. package/es/components/organism/TextEditor/hooks/usePersistence.js +169 -0
  140. package/es/components/organism/TextEditor/hooks/useStyleMemory.d.ts +6 -0
  141. package/es/components/organism/TextEditor/hooks/useStyleMemory.js +42 -0
  142. package/es/components/organism/TextEditor/hooks/useStylePresets.d.ts +34 -0
  143. package/es/components/organism/TextEditor/hooks/useStylePresets.js +83 -0
  144. package/es/components/organism/TextEditor/index.d.ts +14 -0
  145. package/es/components/organism/TextEditor/index.js +6 -0
  146. package/es/components/organism/TextEditor/index.scss +61 -0
  147. package/es/components/organism/TextEditor/provider.d.ts +14 -0
  148. package/es/components/organism/TextEditor/provider.js +33 -0
  149. package/es/components/organism/TextEditor/store.d.ts +13 -0
  150. package/es/components/organism/TextEditor/store.js +20 -0
  151. package/es/components/organism/TextEditor/styled.d.ts +10 -0
  152. package/es/components/organism/TextEditor/styled.js +94 -0
  153. package/es/components/organism/TextEditor/types.d.ts +105 -0
  154. package/es/components/organism/TextEditor/types.js +3 -0
  155. package/es/components/organism/TextEditor/ui/BubbleMenu/BubbleMenu.d.ts +6 -0
  156. package/es/components/organism/TextEditor/ui/BubbleMenu/BubbleMenu.js +84 -0
  157. package/es/components/organism/TextEditor/ui/BubbleMenu/index.d.ts +1 -0
  158. package/es/components/organism/TextEditor/ui/BubbleMenu/index.js +1 -0
  159. package/es/components/organism/TextEditor/ui/BubbleToolbar/BubbleToolbar.d.ts +1 -0
  160. package/es/components/organism/TextEditor/ui/BubbleToolbar/BubbleToolbar.js +1 -0
  161. package/es/components/organism/TextEditor/ui/BubbleToolbar/index.d.ts +0 -0
  162. package/es/components/organism/TextEditor/ui/BubbleToolbar/index.js +1 -0
  163. package/es/components/organism/TextEditor/ui/Button/Button.d.ts +2 -0
  164. package/es/components/organism/TextEditor/ui/Button/Button.js +31 -0
  165. package/es/components/organism/TextEditor/ui/Button/index.d.ts +2 -0
  166. package/es/components/organism/TextEditor/ui/Button/index.js +1 -0
  167. package/es/components/organism/TextEditor/ui/Button/types.d.ts +10 -0
  168. package/es/components/organism/TextEditor/ui/Button/types.js +1 -0
  169. package/es/components/organism/TextEditor/ui/ColorPicker/ColorPicker.d.ts +39 -0
  170. package/es/components/organism/TextEditor/ui/ColorPicker/ColorPicker.js +131 -0
  171. package/es/components/organism/TextEditor/ui/ColorPicker/index.d.ts +1 -0
  172. package/es/components/organism/TextEditor/ui/ColorPicker/index.js +1 -0
  173. package/es/components/organism/TextEditor/ui/DropdownButton/DropdownButton.d.ts +17 -0
  174. package/es/components/organism/TextEditor/ui/DropdownButton/DropdownButton.js +51 -0
  175. package/es/components/organism/TextEditor/ui/DropdownButton/index.d.ts +1 -0
  176. package/es/components/organism/TextEditor/ui/DropdownButton/index.js +1 -0
  177. package/es/components/organism/TextEditor/ui/Emoji/EmojiList.d.ts +11 -0
  178. package/es/components/organism/TextEditor/ui/Emoji/EmojiList.js +66 -0
  179. package/es/components/organism/TextEditor/ui/Emoji/index.d.ts +2 -0
  180. package/es/components/organism/TextEditor/ui/Emoji/index.js +2 -0
  181. package/es/components/organism/TextEditor/ui/Emoji/suggestion.d.ts +4 -0
  182. package/es/components/organism/TextEditor/ui/Emoji/suggestion.js +71 -0
  183. package/es/components/organism/TextEditor/ui/FontPopover/FontPopover.d.ts +12 -0
  184. package/es/components/organism/TextEditor/ui/FontPopover/FontPopover.js +69 -0
  185. package/es/components/organism/TextEditor/ui/FontPopover/styled.d.ts +1 -0
  186. package/es/components/organism/TextEditor/ui/FontPopover/styled.js +22 -0
  187. package/es/components/organism/TextEditor/ui/Popover/Popover.d.ts +6 -0
  188. package/es/components/organism/TextEditor/ui/Popover/Popover.js +9 -0
  189. package/es/components/organism/TextEditor/ui/Popover/index.d.ts +1 -0
  190. package/es/components/organism/TextEditor/ui/Popover/index.js +1 -0
  191. package/es/components/organism/TextEditor/ui/Select/Select.d.ts +4 -0
  192. package/es/components/organism/TextEditor/ui/Select/Select.js +7 -0
  193. package/es/components/organism/TextEditor/ui/Select/index.d.ts +1 -0
  194. package/es/components/organism/TextEditor/ui/Select/index.js +1 -0
  195. package/es/components/organism/TextEditor/ui/SplitButtonDropdown/SplitButtonDropdown.d.ts +2 -0
  196. package/es/components/organism/TextEditor/ui/SplitButtonDropdown/SplitButtonDropdown.js +44 -0
  197. package/es/components/organism/TextEditor/ui/SplitButtonDropdown/index.d.ts +1 -0
  198. package/es/components/organism/TextEditor/ui/SplitButtonDropdown/index.js +1 -0
  199. package/es/components/organism/TextEditor/ui/SplitButtonDropdown/styled.d.ts +2 -0
  200. package/es/components/organism/TextEditor/ui/SplitButtonDropdown/styled.js +52 -0
  201. package/es/components/organism/TextEditor/ui/SplitButtonDropdown/types.d.ts +19 -0
  202. package/es/components/organism/TextEditor/ui/SplitButtonDropdown/types.js +1 -0
  203. package/es/components/organism/TextEditor/ui/TextAlignSelect/TextAlignSelect.d.ts +30 -0
  204. package/es/components/organism/TextEditor/ui/TextAlignSelect/TextAlignSelect.js +77 -0
  205. package/es/components/organism/TextEditor/ui/TextAlignSelect/index.d.ts +1 -0
  206. package/es/components/organism/TextEditor/ui/TextAlignSelect/index.js +1 -0
  207. package/es/components/organism/TextEditor/ui/Toolbar/Toolbar.d.ts +15 -0
  208. package/es/components/organism/TextEditor/ui/Toolbar/Toolbar.js +26 -0
  209. package/es/components/organism/TextEditor/ui/Toolbar/actions/BoldAction.d.ts +5 -0
  210. package/es/components/organism/TextEditor/ui/Toolbar/actions/BoldAction.js +18 -0
  211. package/es/components/organism/TextEditor/ui/Toolbar/actions/BulletListAction.d.ts +6 -0
  212. package/es/components/organism/TextEditor/ui/Toolbar/actions/BulletListAction.js +84 -0
  213. package/es/components/organism/TextEditor/ui/Toolbar/actions/ClearFormattingAction.d.ts +7 -0
  214. package/es/components/organism/TextEditor/ui/Toolbar/actions/ClearFormattingAction.js +27 -0
  215. package/es/components/organism/TextEditor/ui/Toolbar/actions/EmojiAction.d.ts +4 -0
  216. package/es/components/organism/TextEditor/ui/Toolbar/actions/EmojiAction.js +31 -0
  217. package/es/components/organism/TextEditor/ui/Toolbar/actions/FontFamilyAction.d.ts +7 -0
  218. package/es/components/organism/TextEditor/ui/Toolbar/actions/FontFamilyAction.js +28 -0
  219. package/es/components/organism/TextEditor/ui/Toolbar/actions/FontSizeAction.d.ts +7 -0
  220. package/es/components/organism/TextEditor/ui/Toolbar/actions/FontSizeAction.js +47 -0
  221. package/es/components/organism/TextEditor/ui/Toolbar/actions/HistoryAction.d.ts +5 -0
  222. package/es/components/organism/TextEditor/ui/Toolbar/actions/HistoryAction.js +21 -0
  223. package/es/components/organism/TextEditor/ui/Toolbar/actions/IndentAction.d.ts +5 -0
  224. package/es/components/organism/TextEditor/ui/Toolbar/actions/IndentAction.js +17 -0
  225. package/es/components/organism/TextEditor/ui/Toolbar/actions/ItalicAction.d.ts +5 -0
  226. package/es/components/organism/TextEditor/ui/Toolbar/actions/ItalicAction.js +18 -0
  227. package/es/components/organism/TextEditor/ui/Toolbar/actions/LetterSpacing.d.ts +5 -0
  228. package/es/components/organism/TextEditor/ui/Toolbar/actions/LetterSpacing.js +28 -0
  229. package/es/components/organism/TextEditor/ui/Toolbar/actions/LinkAction.d.ts +6 -0
  230. package/es/components/organism/TextEditor/ui/Toolbar/actions/LinkAction.js +17 -0
  231. package/es/components/organism/TextEditor/ui/Toolbar/actions/OrderedListAction.d.ts +5 -0
  232. package/es/components/organism/TextEditor/ui/Toolbar/actions/OrderedListAction.js +67 -0
  233. package/es/components/organism/TextEditor/ui/Toolbar/actions/OutdentAction.d.ts +5 -0
  234. package/es/components/organism/TextEditor/ui/Toolbar/actions/OutdentAction.js +17 -0
  235. package/es/components/organism/TextEditor/ui/Toolbar/actions/SmartTagAction.d.ts +7 -0
  236. package/es/components/organism/TextEditor/ui/Toolbar/actions/SmartTagAction.js +18 -0
  237. package/es/components/organism/TextEditor/ui/Toolbar/actions/SpacingAction.d.ts +10 -0
  238. package/es/components/organism/TextEditor/ui/Toolbar/actions/SpacingAction.js +45 -0
  239. package/es/components/organism/TextEditor/ui/Toolbar/actions/StrikeAction.d.ts +5 -0
  240. package/es/components/organism/TextEditor/ui/Toolbar/actions/StrikeAction.js +18 -0
  241. package/es/components/organism/TextEditor/ui/Toolbar/actions/SubscriptAction.d.ts +5 -0
  242. package/es/components/organism/TextEditor/ui/Toolbar/actions/SubscriptAction.js +26 -0
  243. package/es/components/organism/TextEditor/ui/Toolbar/actions/SuperscriptAction.d.ts +5 -0
  244. package/es/components/organism/TextEditor/ui/Toolbar/actions/SuperscriptAction.js +26 -0
  245. package/es/components/organism/TextEditor/ui/Toolbar/actions/TextAlignAction.d.ts +5 -0
  246. package/es/components/organism/TextEditor/ui/Toolbar/actions/TextAlignAction.js +3 -0
  247. package/es/components/organism/TextEditor/ui/Toolbar/actions/TextBackgroundColorAction.d.ts +5 -0
  248. package/es/components/organism/TextEditor/ui/Toolbar/actions/TextBackgroundColorAction.js +29 -0
  249. package/es/components/organism/TextEditor/ui/Toolbar/actions/TextColorAction.d.ts +14 -0
  250. package/es/components/organism/TextEditor/ui/Toolbar/actions/TextColorAction.js +22 -0
  251. package/es/components/organism/TextEditor/ui/Toolbar/actions/TextTransformAction.d.ts +5 -0
  252. package/es/components/organism/TextEditor/ui/Toolbar/actions/TextTransformAction.js +36 -0
  253. package/es/components/organism/TextEditor/ui/Toolbar/actions/UnderlineAction.d.ts +5 -0
  254. package/es/components/organism/TextEditor/ui/Toolbar/actions/UnderlineAction.js +18 -0
  255. package/es/components/organism/TextEditor/ui/Toolbar/actions/UnsetLink.d.ts +6 -0
  256. package/es/components/organism/TextEditor/ui/Toolbar/actions/UnsetLink.js +19 -0
  257. package/es/components/organism/TextEditor/ui/Toolbar/actions/index.d.ts +24 -0
  258. package/es/components/organism/TextEditor/ui/Toolbar/actions/index.js +24 -0
  259. package/es/components/organism/TextEditor/ui/Toolbar/index.d.ts +1 -0
  260. package/es/components/organism/TextEditor/ui/Toolbar/index.js +1 -0
  261. package/es/components/organism/TextEditor/utils/documentState.d.ts +57 -0
  262. package/es/components/organism/TextEditor/utils/documentState.js +100 -0
  263. package/es/components/organism/TextEditor/utils/font.d.ts +73 -0
  264. package/es/components/organism/TextEditor/utils/font.js +160 -0
  265. package/es/components/organism/TextEditor/utils/htmlProcessing.d.ts +63 -0
  266. package/es/components/organism/TextEditor/utils/htmlProcessing.js +320 -0
  267. package/es/components/organism/TextEditor/utils/indent.d.ts +11 -0
  268. package/es/components/organism/TextEditor/utils/indent.js +56 -0
  269. package/es/components/organism/TextEditor/utils/index.d.ts +8 -0
  270. package/es/components/organism/TextEditor/utils/index.js +16 -0
  271. package/es/components/organism/TextEditor/utils/link.d.ts +102 -0
  272. package/es/components/organism/TextEditor/utils/link.js +150 -0
  273. package/es/components/organism/TextEditor/utils/menu.d.ts +134 -0
  274. package/es/components/organism/TextEditor/utils/menu.js +317 -0
  275. package/es/components/organism/TextEditor/utils/selection.d.ts +25 -0
  276. package/es/components/organism/TextEditor/utils/selection.js +57 -0
  277. package/es/components/organism/TextEditor/utils/shared.d.ts +1 -0
  278. package/es/components/organism/TextEditor/utils/shared.js +9 -0
  279. package/es/components/organism/TextEditor/utils/smartTag.d.ts +49 -0
  280. package/es/components/organism/TextEditor/utils/smartTag.js +89 -0
  281. package/es/components/organism/TextEditor/utils/style.d.ts +78 -0
  282. package/es/components/organism/TextEditor/utils/style.js +193 -0
  283. package/es/components/organism/index.d.ts +1 -0
  284. package/es/components/organism/index.js +1 -0
  285. package/es/components/organism/index.scss +1 -0
  286. package/es/hooks/index.d.ts +4 -0
  287. package/es/hooks/index.js +4 -0
  288. package/es/hooks/useBroadcastedLocalStorage.d.ts +5 -0
  289. package/es/hooks/useBroadcastedLocalStorage.js +71 -0
  290. package/es/hooks/useElementSize.d.ts +7 -0
  291. package/es/hooks/useElementSize.js +56 -0
  292. package/es/hooks/useEyedropper/attach.d.ts +4 -0
  293. package/es/hooks/useEyedropper/attach.js +9 -0
  294. package/es/hooks/useEyedropper/eyedropper.d.ts +69 -0
  295. package/es/hooks/useEyedropper/eyedropper.js +205 -0
  296. package/es/hooks/useEyedropper/index.d.ts +2 -0
  297. package/es/hooks/useEyedropper/index.js +7 -0
  298. package/es/hooks/useEyedropper/support.d.ts +1 -0
  299. package/es/hooks/useEyedropper/support.js +3 -0
  300. package/es/hooks/useEyedropper/types.d.ts +9 -0
  301. package/es/hooks/useEyedropper/types.js +1 -0
  302. package/es/hooks/useEyedropper/useEyedropper.d.ts +8 -0
  303. package/es/hooks/useEyedropper/useEyedropper.js +50 -0
  304. package/es/hooks/useEyedropper/utils.d.ts +11 -0
  305. package/es/hooks/useEyedropper/utils.js +17 -0
  306. package/es/hooks/useIsMounted.d.ts +1 -0
  307. package/es/hooks/useIsMounted.js +11 -0
  308. package/es/locales/i18n.d.ts +1 -1
  309. package/es/utils/common.d.ts +14 -9
  310. package/es/utils/common.js +60 -23
  311. package/es/utils/index.d.ts +1 -0
  312. package/es/utils/index.js +1 -0
  313. package/es/utils/tree.d.ts +225 -0
  314. package/es/utils/tree.js +469 -0
  315. package/es/utils/web.d.ts +15 -0
  316. package/es/utils/web.js +39 -0
  317. package/package.json +25 -4
@@ -1,6 +1,8 @@
1
+ @import url('../../components/index.scss');
2
+
1
3
  :root {
2
4
  --primary-color: #005fb8;
3
5
  --text-base-color: #222222;
6
+ --antsomi-box-shadow-secondary: 0 6px 16px 0 rgba(0, 0, 0, 0.08),
7
+ 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
4
8
  }
5
-
6
-
@@ -0,0 +1,2 @@
1
+ import { EyedropperProps } from './types';
2
+ export declare const Eyedropper: (props: EyedropperProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,53 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { useEffect, useState } from 'react';
3
+ import { Typography, message } from 'antd';
4
+ import { BgColorsOutlined } from '@ant-design/icons'; // Icon hình giọt nước
5
+ import { ColorSwatch, StyledButton, StyledColorTag, StyledEyedropperContainer } from './styled';
6
+ import tinycolor from 'tinycolor2';
7
+ import clsx from 'clsx';
8
+ const { Text } = Typography;
9
+ export const Eyedropper = (props) => {
10
+ const { defaultColor, onColorPick, className } = props;
11
+ const [pickedColor, setPickedColor] = useState(defaultColor);
12
+ const [isLoading, setIsLoading] = useState(false);
13
+ const apiSupported = 'EyeDropper' in window;
14
+ // Cập nhật màu mặc định nếu prop thay đổi
15
+ useEffect(() => {
16
+ setPickedColor(defaultColor);
17
+ }, [defaultColor]);
18
+ const handlePickColor = async () => {
19
+ if (!apiSupported) {
20
+ message.error('Trình duyệt của bạn không hỗ trợ EyeDropper API.');
21
+ return;
22
+ }
23
+ setIsLoading(true);
24
+ try {
25
+ const eyeDropper = new window.EyeDropper();
26
+ const { sRGBHex } = await eyeDropper.open();
27
+ setPickedColor(sRGBHex);
28
+ message.success(`Đã chọn màu: ${sRGBHex}`);
29
+ onColorPick?.(sRGBHex);
30
+ }
31
+ catch (e) {
32
+ if (e instanceof Error && e.name === 'AbortError') {
33
+ message.info('Người dùng đã hủy chọn màu.');
34
+ }
35
+ else if (e instanceof Error) {
36
+ message.error(`Đã xảy ra lỗi khi chọn màu: ${e.message}`);
37
+ }
38
+ }
39
+ finally {
40
+ setIsLoading(false);
41
+ }
42
+ };
43
+ const isCurrentColorLight = tinycolor(pickedColor).isLight();
44
+ return (_jsxs(StyledEyedropperContainer, { className: className, children: [_jsxs(Typography.Title, { level: 4, children: [_jsx(BgColorsOutlined, {}), " C\u00F4ng c\u1EE5 tr\u00EDch xu\u1EA5t m\u00E0u"] }), _jsx(Text, { type: "secondary", children: "B\u1EA5m n\u00FAt b\u00EAn d\u01B0\u1EDBi \u0111\u1EC3 k\u00EDch ho\u1EA1t c\u00F4ng c\u1EE5 Eyedropper c\u1EE7a tr\u00ECnh duy\u1EC7t v\u00E0 ch\u1ECDn m\u00E0u t\u1EEB b\u1EA5t k\u1EF3 \u0111\u00E2u tr\u00EAn m\u00E0n h\u00ECnh." }), _jsx(StyledButton, { type: "primary", icon: _jsx(BgColorsOutlined, {}), onClick: handlePickColor, loading: isLoading, disabled: isLoading || !apiSupported, size: "large", children: "Ch\u1ECDn M\u00E0u" }), pickedColor && (_jsxs("div", { style: {
45
+ marginTop: '20px',
46
+ display: 'flex',
47
+ justifyContent: 'center',
48
+ alignItems: 'center',
49
+ gap: '10px',
50
+ }, children: [_jsx(Text, { children: "M\u00E0u \u0111\u00E3 ch\u1ECDn:" }), _jsx(StyledColorTag, { color: pickedColor, className: clsx({
51
+ 'is-lightcolor': isCurrentColorLight,
52
+ }), children: pickedColor }), _jsx(ColorSwatch, { "$color": pickedColor })] })), !apiSupported && (_jsx(Text, { type: "danger", style: { marginTop: '15px', display: 'block' }, children: "Tr\u00ECnh duy\u1EC7t hi\u1EC7n t\u1EA1i kh\u00F4ng h\u1ED7 tr\u1EE3 EyeDropper API. Vui l\u00F2ng s\u1EED d\u1EE5ng Chrome, Edge ho\u1EB7c c\u00E1c tr\u00ECnh duy\u1EC7t d\u1EF1a tr\u00EAn Chromium." }))] }));
53
+ };
File without changes
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ export declare const StyledEyedropperContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
3
+ export declare const StyledButton: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("antd").ButtonProps & import("react").RefAttributes<HTMLElement>> & {
4
+ Group: import("react").FC<import("antd/es/button").ButtonGroupProps>;
5
+ }, any, {}, never>;
6
+ export declare const StyledColorTag: import("styled-components").StyledComponent<import("antd").TagType, any, {}, never>;
7
+ export declare const ColorSwatch: import("styled-components").StyledComponent<"div", any, {
8
+ $color: string;
9
+ }, never>;
@@ -0,0 +1,45 @@
1
+ import { Button, Tag } from 'antd';
2
+ import styled from 'styled-components';
3
+ export const StyledEyedropperContainer = styled.div `
4
+ padding: 20px;
5
+ border: 1px solid #e8e8e8;
6
+ border-radius: 8px;
7
+ max-width: 450px;
8
+ margin: 20px auto;
9
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
10
+ text-align: center; /* Căn giữa nội dung */
11
+
12
+ h4 {
13
+ margin-bottom: 15px;
14
+ color: #333;
15
+ display: flex;
16
+ align-items: center;
17
+ justify-content: center; /* Căn giữa icon và tiêu đề */
18
+ gap: 8px; /* Khoảng cách giữa icon và chữ */
19
+ }
20
+ `;
21
+ export const StyledButton = styled(Button) `
22
+ margin-top: 20px;
23
+ width: auto; /* Để nút không bị giãn full chiều rộng */
24
+ `;
25
+ export const StyledColorTag = styled(Tag) `
26
+ padding: 4px 8px;
27
+ font-size: 1em;
28
+ font-weight: bold;
29
+ min-width: 100px;
30
+ text-align: center;
31
+ border: none;
32
+ color: white;
33
+
34
+ &.is-lightcolor {
35
+ border: 1px solid #d9d9d9;
36
+ color: #333;
37
+ }
38
+ `;
39
+ export const ColorSwatch = styled.div `
40
+ width: 30px;
41
+ height: 30px;
42
+ background-color: ${props => props.$color || 'transparent'}; /* Nhận prop $color */
43
+ border: 1px solid #d9d9d9;
44
+ border-radius: 4px;
45
+ `;
@@ -0,0 +1,5 @@
1
+ export type EyedropperProps = {
2
+ defaultColor?: string;
3
+ onColorPick?: (color: string) => void;
4
+ className?: string;
5
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { IconProps } from './types';
3
+ export declare const ALignRightIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,7 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ import { useIcon } from './hooks/useIcon';
4
+ export const ALignRightIcon = forwardRef((props, ref) => {
5
+ const { width, height } = useIcon(props);
6
+ return (_jsx("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, ref: ref, width: width, height: height, children: _jsx("path", { d: "M3 21H21V19H3V21ZM9 17H21V15H9V17ZM3 13H21V11H3V13ZM9 9H21V7H9V9ZM3 3V5H21V3H3Z", fill: "currentColor" }) }));
7
+ });
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { IconProps } from './types';
3
+ export declare const AlignCenterIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,7 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ import { useIcon } from './hooks/useIcon';
4
+ export const AlignCenterIcon = forwardRef((props, ref) => {
5
+ const { width, height } = useIcon(props);
6
+ return (_jsx("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, ref: ref, width: width, height: height, children: _jsx("path", { d: "M7 15V17H17V15H7ZM3 21H21V19H3V21ZM3 13H21V11H3V13ZM7 7V9H17V7H7ZM3 3V5H21V3H3Z", fill: "currentColor" }) }));
7
+ });
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { IconProps } from './types';
3
+ export declare const AlignJustifyIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,7 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ import { useIcon } from './hooks/useIcon';
4
+ export const AlignJustifyIcon = forwardRef((props, ref) => {
5
+ const { width, height } = useIcon(props);
6
+ return (_jsx("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, ref: ref, width: width, height: height, children: _jsx("path", { d: "M3 21H21V19H3V21ZM3 17H21V15H3V17ZM3 13H21V11H3V13ZM3 9H21V7H3V9ZM3 3V5H21V3H3Z", fill: "currentColor" }) }));
7
+ });
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { IconProps } from './types';
3
+ export declare const AlignLeftIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,7 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ import { useIcon } from './hooks/useIcon';
4
+ export const AlignLeftIcon = forwardRef((props, ref) => {
5
+ const { width, height } = useIcon(props);
6
+ return (_jsx("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, ref: ref, width: width, height: height, children: _jsx("path", { d: "M15 15H3V17H15V15ZM15 7H3V9H15V7ZM3 13H21V11H3V13ZM3 21H21V19H3V21ZM3 3V5H21V3H3Z", fill: "currentColor" }) }));
7
+ });
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { IconProps } from './types';
3
+ export declare const ArrowDropDownIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,7 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ import { useIcon } from './hooks/useIcon';
4
+ export const ArrowDropDownIcon = forwardRef((props, ref) => {
5
+ const { width, height } = useIcon(props);
6
+ return (_jsx("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, ref: ref, width: width, height: height, children: _jsx("path", { d: "M7 10L12 15L17 10H7Z", fill: "black" }) }));
7
+ });
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { IconProps } from './types';
3
+ export declare const ChevronRightIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,7 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ import { useIcon } from './hooks/useIcon';
4
+ export const ChevronRightIcon = forwardRef((props, ref) => {
5
+ const { width, height } = useIcon(props);
6
+ return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round", ...props, ref: ref, width: width, height: height, children: _jsx("path", { d: "m9 18 6-6-6-6" }) }));
7
+ });
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { IconProps } from './types';
3
+ export declare const ColorizeIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,7 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ import { useIcon } from './hooks/useIcon';
4
+ export const ColorizeIcon = forwardRef((props, ref) => {
5
+ const { width, height } = useIcon(props);
6
+ return (_jsx("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, ref: ref, width: width, height: height, children: _jsx("path", { d: "M21.6764 4.92454L19.0766 2.32489C18.9738 2.2219 18.8517 2.1402 18.7173 2.08445C18.5829 2.0287 18.4388 2 18.2933 2C18.1478 2 18.0037 2.0287 17.8693 2.08445C17.7349 2.1402 17.6128 2.2219 17.51 2.32489L14.0436 5.79109L11.8993 3.66916L10.3327 5.23561L11.9104 6.81317L2 16.7229V22H7.27741L17.1878 12.0902L18.7655 13.6678L20.332 12.1013L18.1989 9.9683L21.6653 6.50211C22.1097 6.05772 22.1097 5.35782 21.6764 4.92454ZM6.35525 19.7781L4.22207 17.645L13.177 8.6907L15.3102 10.8237L6.35525 19.7781Z", fill: "black" }) }));
7
+ });
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { IconProps } from './types';
3
+ export declare const FailSlim: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,7 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ import { useIcon } from './hooks/useIcon';
4
+ export const FailSlim = forwardRef((props, ref) => {
5
+ const { width, height } = useIcon(props);
6
+ return (_jsx("svg", { viewBox: "0 0 14 14", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, ref: ref, width: width, height: height, children: _jsx("path", { d: "M3.65625 6.34375H10.3438V7.65625H3.65625V6.34375ZM7 0.34375C10.6875 0.34375 13.6562 3.3125 13.6562 7C13.6562 10.6875 10.6875 13.6562 7 13.6562C3.3125 13.6562 0.34375 10.6875 0.34375 7C0.34375 3.3125 3.3125 0.34375 7 0.34375ZM7 12.3438C9.9375 12.3438 12.3438 9.9375 12.3438 7C12.3438 4.0625 9.9375 1.65625 7 1.65625C4.0625 1.65625 1.65625 4.0625 1.65625 7C1.65625 9.9375 4.0625 12.3438 7 12.3438Z", fill: "currentColor" }) }));
7
+ });
@@ -2,16 +2,20 @@
2
2
  export declare const LazyIcon: {
3
3
  AccountCircleIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
4
4
  AccountCircleOutlineIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
5
+ Accounts30Icon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
5
6
  AccountSharing30Icon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
6
7
  AccountSharingIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
7
8
  AccountTreeIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
8
- Accounts30Icon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
9
9
  AddChartIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
10
10
  AddFolderIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
11
11
  AddIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
12
12
  AddRadiusIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
13
13
  AddShoppingCartIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
14
14
  AdjustIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
15
+ AlignCenterIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
16
+ AlignJustifyIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
17
+ AlignLeftIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
18
+ ALignRightIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
15
19
  AllDevicesIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
16
20
  AllJourneyChannelsIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
17
21
  AnalyticModels30Icon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
@@ -21,6 +25,7 @@ export declare const LazyIcon: {
21
25
  AnlysisIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
22
26
  AnlyticModelsIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
23
27
  AntsomiAIIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
28
+ ArrowDropDownIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
24
29
  ArrowGrowIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
25
30
  ArrowLineIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
26
31
  ArticleIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
@@ -55,7 +60,6 @@ export declare const LazyIcon: {
55
60
  ChatConversationCommentAddCommentIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
56
61
  ChatMentionIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
57
62
  ChatUnreadIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
58
- CheckSlimIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
59
63
  CheckboxChecked5RadiusIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
60
64
  CheckboxCheckedIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
61
65
  CheckboxIndeterminate5RadiusIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
@@ -63,12 +67,15 @@ export declare const LazyIcon: {
63
67
  CheckboxUnchecked5RadiusIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
64
68
  CheckboxUncheckedIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
65
69
  ChecklistRtlIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
70
+ CheckSlimIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
71
+ ChevronRightIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
66
72
  CircleAddElementIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
67
73
  CircleInfoIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
68
74
  CircleNotificationsIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
69
75
  CloseIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
70
76
  CodeIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
71
77
  Collection30Icon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
78
+ ColorizeIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
72
79
  ColorProfileStyleThemeIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
73
80
  ColumnIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
74
81
  CommentIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
@@ -98,15 +105,15 @@ export declare const LazyIcon: {
98
105
  DataDestinationIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
99
106
  DataEncryption30Icon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
100
107
  DataEncryptionIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
108
+ Dataflows30Icon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
101
109
  DataIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
102
110
  DataRefreshIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
103
111
  DataSchema30Icon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
104
112
  DataSource30Icon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
105
- DataView30Icon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
106
- DataViewIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
107
- Dataflows30Icon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
108
113
  DatasourceIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
109
114
  DatasourceSegment30Icon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
115
+ DataView30Icon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
116
+ DataViewIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
110
117
  DecreaseDecimalIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
111
118
  DeleteRemoveTrashIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
112
119
  DeliveryLogIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
@@ -188,13 +195,13 @@ export declare const LazyIcon: {
188
195
  ForwardIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
189
196
  FreeDrawIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
190
197
  FullReviewIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
191
- GPTIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
192
198
  GalleryTemplateIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
193
199
  GeneralSettingIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
194
200
  GeneralSettings30Icon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
195
201
  GenerateAutoWizardIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
196
202
  Geofence30Icon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
197
203
  GetInsightIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
204
+ GPTIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
198
205
  GridViewIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
199
206
  GroupIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
200
207
  GroupLayerIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
@@ -229,6 +236,7 @@ export declare const LazyIcon: {
229
236
  LineIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
230
237
  LinkManagement30Icon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
231
238
  LinkManagementIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
239
+ LinkOffIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
232
240
  ListIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
233
241
  LoadingIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & {
234
242
  backgroundColor?: string | undefined;
@@ -248,6 +256,7 @@ export declare const LazyIcon: {
248
256
  MenuImageMultiIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
249
257
  MenuImageSingleIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
250
258
  MergeIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
259
+ MinusIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
251
260
  MobileFriendlyIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
252
261
  MobilePhoneIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
253
262
  MonitorAppIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
@@ -258,8 +267,8 @@ export declare const LazyIcon: {
258
267
  NodeViewIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
259
268
  NoteNewIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
260
269
  NotificationIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
261
- NotificationSettingIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
262
270
  NotificationsActiveIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
271
+ NotificationSettingIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
263
272
  OpenNewTabIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
264
273
  OpenUrlIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
265
274
  OrchestrationIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
@@ -311,7 +320,6 @@ export declare const LazyIcon: {
311
320
  ResumeIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
312
321
  RightExpandIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
313
322
  Role30Icon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
314
- SQLWorkspace30Icon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
315
323
  SaveAsIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
316
324
  SaveIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
317
325
  ScheduleEmailDeliveryIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
@@ -336,6 +344,7 @@ export declare const LazyIcon: {
336
344
  SlideGroupIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
337
345
  Sort1Icon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
338
346
  SortIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
347
+ SQLWorkspace30Icon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
339
348
  SqlWorkspaceIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
340
349
  StatisticIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
341
350
  StatusInfoIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
@@ -387,9 +396,10 @@ export declare const LazyIcon: {
387
396
  VisitorInformationIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
388
397
  WarningIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
389
398
  WebAssetIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
399
+ WebhookIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
390
400
  WebIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
391
401
  WebPersonalizationIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
392
- WebhookIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
393
402
  WidgetIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
394
403
  WritingAIAssitantIcon: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
404
+ FailSlim: import("react").LazyExoticComponent<import("react").ForwardRefExoticComponent<import("../types").IconProps & import("react").RefAttributes<SVGSVGElement>>>;
395
405
  };
@@ -2,16 +2,20 @@ import { lazy } from 'react';
2
2
  export const LazyIcon = {
3
3
  AccountCircleIcon: lazy(() => import('../AccountCircleIcon').then(m => ({ default: m.AccountCircleIcon }))),
4
4
  AccountCircleOutlineIcon: lazy(() => import('../AccountCircleOutlineIcon').then(m => ({ default: m.AccountCircleOutlineIcon }))),
5
+ Accounts30Icon: lazy(() => import('../Accounts30Icon').then(m => ({ default: m.Accounts30Icon }))),
5
6
  AccountSharing30Icon: lazy(() => import('../AccountSharing30Icon').then(m => ({ default: m.AccountSharing30Icon }))),
6
7
  AccountSharingIcon: lazy(() => import('../AccountSharingIcon').then(m => ({ default: m.AccountSharingIcon }))),
7
8
  AccountTreeIcon: lazy(() => import('../AccountTreeIcon').then(m => ({ default: m.AccountTreeIcon }))),
8
- Accounts30Icon: lazy(() => import('../Accounts30Icon').then(m => ({ default: m.Accounts30Icon }))),
9
9
  AddChartIcon: lazy(() => import('../AddChartIcon').then(m => ({ default: m.AddChartIcon }))),
10
10
  AddFolderIcon: lazy(() => import('../AddFolderIcon').then(m => ({ default: m.AddFolderIcon }))),
11
11
  AddIcon: lazy(() => import('../AddIcon').then(m => ({ default: m.AddIcon }))),
12
12
  AddRadiusIcon: lazy(() => import('../AddRadiusIcon').then(m => ({ default: m.AddRadiusIcon }))),
13
13
  AddShoppingCartIcon: lazy(() => import('../AddShoppingCartIcon').then(m => ({ default: m.AddShoppingCartIcon }))),
14
14
  AdjustIcon: lazy(() => import('../AdjustIcon').then(m => ({ default: m.AdjustIcon }))),
15
+ AlignCenterIcon: lazy(() => import('../AlignCenterIcon').then(m => ({ default: m.AlignCenterIcon }))),
16
+ AlignJustifyIcon: lazy(() => import('../AlignJustifyIcon').then(m => ({ default: m.AlignJustifyIcon }))),
17
+ AlignLeftIcon: lazy(() => import('../AlignLeftIcon').then(m => ({ default: m.AlignLeftIcon }))),
18
+ ALignRightIcon: lazy(() => import('../ALignRightIcon').then(m => ({ default: m.ALignRightIcon }))),
15
19
  AllDevicesIcon: lazy(() => import('../AllDevicesIcon').then(m => ({ default: m.AllDevicesIcon }))),
16
20
  AllJourneyChannelsIcon: lazy(() => import('../AllJourneyChannelsIcon').then(m => ({ default: m.AllJourneyChannelsIcon }))),
17
21
  AnalyticModels30Icon: lazy(() => import('../AnalyticModels30Icon').then(m => ({ default: m.AnalyticModels30Icon }))),
@@ -21,6 +25,7 @@ export const LazyIcon = {
21
25
  AnlysisIcon: lazy(() => import('../AnlysisIcon').then(m => ({ default: m.AnlysisIcon }))),
22
26
  AnlyticModelsIcon: lazy(() => import('../AnlyticModelsIcon').then(m => ({ default: m.AnlyticModelsIcon }))),
23
27
  AntsomiAIIcon: lazy(() => import('../AntsomiAIIcon').then(m => ({ default: m.AntsomiAIIcon }))),
28
+ ArrowDropDownIcon: lazy(() => import('../ArrowDropDownIcon').then(m => ({ default: m.ArrowDropDownIcon }))),
24
29
  ArrowGrowIcon: lazy(() => import('../ArrowGrowIcon').then(m => ({ default: m.ArrowGrowIcon }))),
25
30
  ArrowLineIcon: lazy(() => import('../ArrowLineIcon').then(m => ({ default: m.ArrowLineIcon }))),
26
31
  ArticleIcon: lazy(() => import('../ArticleIcon').then(m => ({ default: m.ArticleIcon }))),
@@ -57,7 +62,6 @@ export const LazyIcon = {
57
62
  }))),
58
63
  ChatMentionIcon: lazy(() => import('../ChatMentionIcon').then(m => ({ default: m.ChatMentionIcon }))),
59
64
  ChatUnreadIcon: lazy(() => import('../ChatUnreadIcon').then(m => ({ default: m.ChatUnreadIcon }))),
60
- CheckSlimIcon: lazy(() => import('../CheckSlimIcon').then(m => ({ default: m.CheckSlimIcon }))),
61
65
  CheckboxChecked5RadiusIcon: lazy(() => import('../CheckboxChecked5RadiusIcon').then(m => ({ default: m.CheckboxChecked5RadiusIcon }))),
62
66
  CheckboxCheckedIcon: lazy(() => import('../CheckboxCheckedIcon').then(m => ({ default: m.CheckboxCheckedIcon }))),
63
67
  CheckboxIndeterminate5RadiusIcon: lazy(() => import('../CheckboxIndeterminate5RadiusIcon').then(m => ({
@@ -69,12 +73,15 @@ export const LazyIcon = {
69
73
  }))),
70
74
  CheckboxUncheckedIcon: lazy(() => import('../CheckboxUncheckedIcon').then(m => ({ default: m.CheckboxUncheckedIcon }))),
71
75
  ChecklistRtlIcon: lazy(() => import('../ChecklistRtlIcon').then(m => ({ default: m.ChecklistRtlIcon }))),
76
+ CheckSlimIcon: lazy(() => import('../CheckSlimIcon').then(m => ({ default: m.CheckSlimIcon }))),
77
+ ChevronRightIcon: lazy(() => import('../ChevronRightIcon').then(m => ({ default: m.ChevronRightIcon }))),
72
78
  CircleAddElementIcon: lazy(() => import('../CircleAddElementIcon').then(m => ({ default: m.CircleAddElementIcon }))),
73
79
  CircleInfoIcon: lazy(() => import('../CircleInfoIcon').then(m => ({ default: m.CircleInfoIcon }))),
74
80
  CircleNotificationsIcon: lazy(() => import('../CircleNotificationsIcon').then(m => ({ default: m.CircleNotificationsIcon }))),
75
81
  CloseIcon: lazy(() => import('../CloseIcon').then(m => ({ default: m.CloseIcon }))),
76
82
  CodeIcon: lazy(() => import('../CodeIcon').then(m => ({ default: m.CodeIcon }))),
77
83
  Collection30Icon: lazy(() => import('../Collection30Icon').then(m => ({ default: m.Collection30Icon }))),
84
+ ColorizeIcon: lazy(() => import('../ColorizeIcon').then(m => ({ default: m.ColorizeIcon }))),
78
85
  ColorProfileStyleThemeIcon: lazy(() => import('../ColorProfileStyleThemeIcon').then(m => ({ default: m.ColorProfileStyleThemeIcon }))),
79
86
  ColumnIcon: lazy(() => import('../ColumnIcon').then(m => ({ default: m.ColumnIcon }))),
80
87
  CommentIcon: lazy(() => import('../CommentIcon').then(m => ({ default: m.CommentIcon }))),
@@ -104,15 +111,15 @@ export const LazyIcon = {
104
111
  DataDestinationIcon: lazy(() => import('../DataDestinationIcon').then(m => ({ default: m.DataDestinationIcon }))),
105
112
  DataEncryption30Icon: lazy(() => import('../DataEncryption30Icon').then(m => ({ default: m.DataEncryption30Icon }))),
106
113
  DataEncryptionIcon: lazy(() => import('../DataEncryptionIcon').then(m => ({ default: m.DataEncryptionIcon }))),
114
+ Dataflows30Icon: lazy(() => import('../Dataflows30Icon').then(m => ({ default: m.Dataflows30Icon }))),
107
115
  DataIcon: lazy(() => import('../DataIcon').then(m => ({ default: m.DataIcon }))),
108
116
  DataRefreshIcon: lazy(() => import('../DataRefreshIcon').then(m => ({ default: m.DataRefreshIcon }))),
109
117
  DataSchema30Icon: lazy(() => import('../DataSchema30Icon').then(m => ({ default: m.DataSchema30Icon }))),
110
118
  DataSource30Icon: lazy(() => import('../DataSource30Icon').then(m => ({ default: m.DataSource30Icon }))),
111
- DataView30Icon: lazy(() => import('../DataView30Icon').then(m => ({ default: m.DataView30Icon }))),
112
- DataViewIcon: lazy(() => import('../DataViewIcon').then(m => ({ default: m.DataViewIcon }))),
113
- Dataflows30Icon: lazy(() => import('../Dataflows30Icon').then(m => ({ default: m.Dataflows30Icon }))),
114
119
  DatasourceIcon: lazy(() => import('../DatasourceIcon').then(m => ({ default: m.DatasourceIcon }))),
115
120
  DatasourceSegment30Icon: lazy(() => import('../DatasourceSegment30Icon').then(m => ({ default: m.DatasourceSegment30Icon }))),
121
+ DataView30Icon: lazy(() => import('../DataView30Icon').then(m => ({ default: m.DataView30Icon }))),
122
+ DataViewIcon: lazy(() => import('../DataViewIcon').then(m => ({ default: m.DataViewIcon }))),
116
123
  DecreaseDecimalIcon: lazy(() => import('../DecreaseDecimalIcon').then(m => ({ default: m.DecreaseDecimalIcon }))),
117
124
  DeleteRemoveTrashIcon: lazy(() => import('../DeleteRemoveTrashIcon').then(m => ({ default: m.DeleteRemoveTrashIcon }))),
118
125
  DeliveryLogIcon: lazy(() => import('../DeliveryLogIcon').then(m => ({ default: m.DeliveryLogIcon }))),
@@ -191,13 +198,13 @@ export const LazyIcon = {
191
198
  ForwardIcon: lazy(() => import('../ForwardIcon').then(m => ({ default: m.ForwardIcon }))),
192
199
  FreeDrawIcon: lazy(() => import('../FreeDrawIcon').then(m => ({ default: m.FreeDrawIcon }))),
193
200
  FullReviewIcon: lazy(() => import('../FullReviewIcon').then(m => ({ default: m.FullReviewIcon }))),
194
- GPTIcon: lazy(() => import('../GPTIcon').then(m => ({ default: m.GPTIcon }))),
195
201
  GalleryTemplateIcon: lazy(() => import('../GalleryTemplateIcon').then(m => ({ default: m.GalleryTemplateIcon }))),
196
202
  GeneralSettingIcon: lazy(() => import('../GeneralSettingIcon').then(m => ({ default: m.GeneralSettingIcon }))),
197
203
  GeneralSettings30Icon: lazy(() => import('../GeneralSettings30Icon').then(m => ({ default: m.GeneralSettings30Icon }))),
198
204
  GenerateAutoWizardIcon: lazy(() => import('../GenerateAutoWizardIcon').then(m => ({ default: m.GenerateAutoWizardIcon }))),
199
205
  Geofence30Icon: lazy(() => import('../Geofence30Icon').then(m => ({ default: m.Geofence30Icon }))),
200
206
  GetInsightIcon: lazy(() => import('../GetInsightIcon').then(m => ({ default: m.GetInsightIcon }))),
207
+ GPTIcon: lazy(() => import('../GPTIcon').then(m => ({ default: m.GPTIcon }))),
201
208
  GridViewIcon: lazy(() => import('../GridViewIcon').then(m => ({ default: m.GridViewIcon }))),
202
209
  GroupIcon: lazy(() => import('../GroupIcon').then(m => ({ default: m.GroupIcon }))),
203
210
  GroupLayerIcon: lazy(() => import('../GroupLayerIcon').then(m => ({ default: m.GroupLayerIcon }))),
@@ -232,6 +239,7 @@ export const LazyIcon = {
232
239
  LineIcon: lazy(() => import('../LineIcon').then(m => ({ default: m.LineIcon }))),
233
240
  LinkManagement30Icon: lazy(() => import('../LinkManagement30Icon').then(m => ({ default: m.LinkManagement30Icon }))),
234
241
  LinkManagementIcon: lazy(() => import('../LinkManagementIcon').then(m => ({ default: m.LinkManagementIcon }))),
242
+ LinkOffIcon: lazy(() => import('../LinkOffIcon').then(m => ({ default: m.LinkOffIcon }))),
235
243
  ListIcon: lazy(() => import('../ListIcon').then(m => ({ default: m.ListIcon }))),
236
244
  LoadingIcon: lazy(() => import('../LoadingIcon').then(m => ({ default: m.LoadingIcon }))),
237
245
  LocalMallIcon: lazy(() => import('../LocalMallIcon').then(m => ({ default: m.LocalMallIcon }))),
@@ -249,6 +257,7 @@ export const LazyIcon = {
249
257
  MenuImageMultiIcon: lazy(() => import('../MenuImageMultiIcon').then(m => ({ default: m.MenuImageMultiIcon }))),
250
258
  MenuImageSingleIcon: lazy(() => import('../MenuImageSingleIcon').then(m => ({ default: m.MenuImageSingleIcon }))),
251
259
  MergeIcon: lazy(() => import('../MergeIcon').then(m => ({ default: m.MergeIcon }))),
260
+ MinusIcon: lazy(() => import('../MinusIcon').then(m => ({ default: m.MinusIcon }))),
252
261
  MobileFriendlyIcon: lazy(() => import('../MobileFriendlyIcon').then(m => ({ default: m.MobileFriendlyIcon }))),
253
262
  MobilePhoneIcon: lazy(() => import('../MobilePhoneIcon').then(m => ({ default: m.MobilePhoneIcon }))),
254
263
  MonitorAppIcon: lazy(() => import('../MonitorAppIcon').then(m => ({ default: m.MonitorAppIcon }))),
@@ -259,8 +268,8 @@ export const LazyIcon = {
259
268
  NodeViewIcon: lazy(() => import('../NodeViewIcon').then(m => ({ default: m.NodeViewIcon }))),
260
269
  NoteNewIcon: lazy(() => import('../NoteNewIcon').then(m => ({ default: m.NoteNewIcon }))),
261
270
  NotificationIcon: lazy(() => import('../NotificationIcon').then(m => ({ default: m.NotificationIcon }))),
262
- NotificationSettingIcon: lazy(() => import('../NotificationSettingIcon').then(m => ({ default: m.NotificationSettingIcon }))),
263
271
  NotificationsActiveIcon: lazy(() => import('../NotificationsActiveIcon').then(m => ({ default: m.NotificationsActiveIcon }))),
272
+ NotificationSettingIcon: lazy(() => import('../NotificationSettingIcon').then(m => ({ default: m.NotificationSettingIcon }))),
264
273
  OpenNewTabIcon: lazy(() => import('../OpenNewTabIcon').then(m => ({ default: m.OpenNewTabIcon }))),
265
274
  OpenUrlIcon: lazy(() => import('../OpenUrlIcon').then(m => ({ default: m.OpenUrlIcon }))),
266
275
  OrchestrationIcon: lazy(() => import('../OrchestrationIcon').then(m => ({ default: m.OrchestrationIcon }))),
@@ -314,7 +323,6 @@ export const LazyIcon = {
314
323
  ResumeIcon: lazy(() => import('../ResumeIcon').then(m => ({ default: m.ResumeIcon }))),
315
324
  RightExpandIcon: lazy(() => import('../RightExpandIcon').then(m => ({ default: m.RightExpandIcon }))),
316
325
  Role30Icon: lazy(() => import('../Role30Icon').then(m => ({ default: m.Role30Icon }))),
317
- SQLWorkspace30Icon: lazy(() => import('../SQLWorkspace30Icon').then(m => ({ default: m.SQLWorkspace30Icon }))),
318
326
  SaveAsIcon: lazy(() => import('../SaveAsIcon').then(m => ({ default: m.SaveAsIcon }))),
319
327
  SaveIcon: lazy(() => import('../SaveIcon').then(m => ({ default: m.SaveIcon }))),
320
328
  ScheduleEmailDeliveryIcon: lazy(() => import('../ScheduleEmailDeliveryIcon').then(m => ({ default: m.ScheduleEmailDeliveryIcon }))),
@@ -339,6 +347,7 @@ export const LazyIcon = {
339
347
  SlideGroupIcon: lazy(() => import('../SlideGroupIcon').then(m => ({ default: m.SlideGroupIcon }))),
340
348
  Sort1Icon: lazy(() => import('../Sort1Icon').then(m => ({ default: m.Sort1Icon }))),
341
349
  SortIcon: lazy(() => import('../SortIcon').then(m => ({ default: m.SortIcon }))),
350
+ SQLWorkspace30Icon: lazy(() => import('../SQLWorkspace30Icon').then(m => ({ default: m.SQLWorkspace30Icon }))),
342
351
  SqlWorkspaceIcon: lazy(() => import('../SqlWorkspaceIcon').then(m => ({ default: m.SqlWorkspaceIcon }))),
343
352
  StatisticIcon: lazy(() => import('../StatisticIcon').then(m => ({ default: m.StatisticIcon }))),
344
353
  StatusInfoIcon: lazy(() => import('../StatusInfoIcon').then(m => ({ default: m.StatusInfoIcon }))),
@@ -390,9 +399,10 @@ export const LazyIcon = {
390
399
  VisitorInformationIcon: lazy(() => import('../VisitorInformationIcon').then(m => ({ default: m.VisitorInformationIcon }))),
391
400
  WarningIcon: lazy(() => import('../WarningIcon').then(m => ({ default: m.WarningIcon }))),
392
401
  WebAssetIcon: lazy(() => import('../WebAssetIcon').then(m => ({ default: m.WebAssetIcon }))),
402
+ WebhookIcon: lazy(() => import('../WebhookIcon').then(m => ({ default: m.WebhookIcon }))),
393
403
  WebIcon: lazy(() => import('../WebIcon').then(m => ({ default: m.WebIcon }))),
394
404
  WebPersonalizationIcon: lazy(() => import('../WebPersonalizationIcon').then(m => ({ default: m.WebPersonalizationIcon }))),
395
- WebhookIcon: lazy(() => import('../WebhookIcon').then(m => ({ default: m.WebhookIcon }))),
396
405
  WidgetIcon: lazy(() => import('../WidgetIcon').then(m => ({ default: m.WidgetIcon }))),
397
406
  WritingAIAssitantIcon: lazy(() => import('../WritingAIAssitantIcon').then(m => ({ default: m.WritingAIAssitantIcon }))),
407
+ FailSlim: lazy(() => import('../FailSlim').then(m => ({ default: m.FailSlim }))),
398
408
  };
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { IconProps } from './types';
3
+ export declare const LinkOffIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,7 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ import { useIcon } from './hooks/useIcon';
4
+ export const LinkOffIcon = forwardRef((props, ref) => {
5
+ const { width, height } = useIcon(props);
6
+ return (_jsx("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, ref: ref, width: width, height: height, children: _jsx("path", { d: "M21.7338 20.4488C22.0886 20.8038 22.0888 21.3789 21.7338 21.7338C21.3789 22.0888 20.8038 22.0886 20.4488 21.7338L21.7338 20.4488ZM2 12.0006C2 10.554 2.57508 9.16568 3.59799 8.14276C4.16642 7.57438 4.8477 7.14486 5.58882 6.875L2.26633 3.55247L2.15048 3.40998C1.91716 3.05707 1.95555 2.57685 2.26633 2.26607C2.57711 1.95529 3.05732 1.91689 3.41023 2.15021L3.55271 2.26607L21.7338 20.4488L21.0907 21.0906L20.4488 21.7338L11.6239 12.9088H8.364C7.86207 12.9088 7.45471 12.5025 7.45447 12.0006C7.45447 11.4985 7.86193 11.0911 8.364 11.0911H9.80485L7.09493 8.37979C6.26264 8.46253 5.47964 8.83254 4.88304 9.42915C4.20138 10.1111 3.81905 11.0364 3.81905 12.0006C3.81916 12.9649 4.2012 13.8902 4.88304 14.5721C5.56488 15.2539 6.49022 15.636 7.45447 15.6361H9.27352L9.45596 15.6547C9.87039 15.7394 10.1817 16.1062 10.1817 16.5456C10.1817 16.9851 9.87039 17.3519 9.45596 17.4365L9.27352 17.4552H7.45447C6.00802 17.455 4.6208 16.88 3.59799 15.8572C2.57518 14.8343 2.00012 13.4471 2 12.0006ZM16.5457 6.54608C17.5584 6.54608 18.5512 6.82743 19.4128 7.35973C20.2744 7.89228 20.9719 8.65496 21.4249 9.56099C21.8778 10.4669 22.0685 11.4819 21.9775 12.4907C21.8865 13.4992 21.517 14.4624 20.9096 15.2725L20.7844 15.4084C20.468 15.6888 19.9879 15.7185 19.6365 15.455C19.2348 15.1537 19.1541 14.5836 19.4554 14.1819L19.5992 13.9742C19.9185 13.4802 20.1148 12.9152 20.1678 12.3269C20.2285 11.6543 20.0996 10.9773 19.7976 10.3733C19.4957 9.76978 19.032 9.26202 18.458 8.90714C17.8835 8.5521 17.221 8.36381 16.5457 8.36381H14.728C14.2259 8.36381 13.8185 7.95636 13.8185 7.45428C13.8187 6.95241 14.2261 6.54608 14.728 6.54608H16.5457Z", fill: "currentColor" }) }));
7
+ });
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { IconProps } from './types';
3
+ export declare const MinusIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;