@edifice.io/react 1.7.4-develop-pedago.20241211160712

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 (1334) hide show
  1. package/LICENSE +661 -0
  2. package/README.md +110 -0
  3. package/dist/audience.js +16 -0
  4. package/dist/comments.js +4 -0
  5. package/dist/components/ActionBar/ActionBar.d.ts +9 -0
  6. package/dist/components/ActionBar/ActionBar.js +8 -0
  7. package/dist/components/ActionBar/index.d.ts +2 -0
  8. package/dist/components/Alert/Alert.d.ts +60 -0
  9. package/dist/components/Alert/Alert.js +81 -0
  10. package/dist/components/Alert/index.d.ts +2 -0
  11. package/dist/components/AppHeader/AppHeader.d.ts +17 -0
  12. package/dist/components/AppHeader/AppHeader.js +22 -0
  13. package/dist/components/AppHeader/index.d.ts +2 -0
  14. package/dist/components/AppIcon/AppIcon.d.ts +45 -0
  15. package/dist/components/AppIcon/AppIcon.js +51 -0
  16. package/dist/components/AppIcon/index.d.ts +1 -0
  17. package/dist/components/Attachment/Attachment.d.ts +14 -0
  18. package/dist/components/Attachment/Attachment.js +18 -0
  19. package/dist/components/Attachment/index.d.ts +2 -0
  20. package/dist/components/Avatar/Avatar.d.ts +31 -0
  21. package/dist/components/Avatar/Avatar.js +33 -0
  22. package/dist/components/Avatar/index.d.ts +2 -0
  23. package/dist/components/Badge/Badge.d.ts +49 -0
  24. package/dist/components/Badge/Badge.js +18 -0
  25. package/dist/components/Badge/index.d.ts +2 -0
  26. package/dist/components/Breadcrumb/Breadcrumb.d.ts +13 -0
  27. package/dist/components/Breadcrumb/Breadcrumb.js +28 -0
  28. package/dist/components/Breadcrumb/BreadcrumbItem.d.ts +13 -0
  29. package/dist/components/Breadcrumb/BreadcrumbItem.js +14 -0
  30. package/dist/components/Breadcrumb/BreadcrumbList.d.ts +13 -0
  31. package/dist/components/Breadcrumb/BreadcrumbList.js +13 -0
  32. package/dist/components/Breadcrumb/BreadcrumbNav.d.ts +18 -0
  33. package/dist/components/Breadcrumb/BreadcrumbNav.js +22 -0
  34. package/dist/components/Breadcrumb/index.d.ts +2 -0
  35. package/dist/components/Button/Button.d.ts +63 -0
  36. package/dist/components/Button/Button.js +35 -0
  37. package/dist/components/Button/IconButton.d.ts +11 -0
  38. package/dist/components/Button/IconButton.js +18 -0
  39. package/dist/components/Button/SearchButton.d.ts +21 -0
  40. package/dist/components/Button/SearchButton.js +17 -0
  41. package/dist/components/Button/index.d.ts +6 -0
  42. package/dist/components/Card/Card.d.ts +87 -0
  43. package/dist/components/Card/Card.js +53 -0
  44. package/dist/components/Card/CardBody.d.ts +10 -0
  45. package/dist/components/Card/CardBody.js +18 -0
  46. package/dist/components/Card/CardContext.d.ts +12 -0
  47. package/dist/components/Card/CardContext.js +11 -0
  48. package/dist/components/Card/CardFooter.d.ts +8 -0
  49. package/dist/components/Card/CardFooter.js +7 -0
  50. package/dist/components/Card/CardHeader.d.ts +5 -0
  51. package/dist/components/Card/CardHeader.js +22 -0
  52. package/dist/components/Card/CardImage.d.ts +9 -0
  53. package/dist/components/Card/CardImage.js +21 -0
  54. package/dist/components/Card/CardText.d.ts +9 -0
  55. package/dist/components/Card/CardText.js +12 -0
  56. package/dist/components/Card/CardTitle.d.ts +9 -0
  57. package/dist/components/Card/CardTitle.js +12 -0
  58. package/dist/components/Card/CardUser.d.ts +8 -0
  59. package/dist/components/Card/CardUser.js +10 -0
  60. package/dist/components/Card/index.d.ts +2 -0
  61. package/dist/components/Checkbox/Checkbox.d.ts +20 -0
  62. package/dist/components/Checkbox/Checkbox.js +35 -0
  63. package/dist/components/Checkbox/index.d.ts +2 -0
  64. package/dist/components/ColorPicker/ColorPalette.d.ts +46 -0
  65. package/dist/components/ColorPicker/ColorPalette.js +171 -0
  66. package/dist/components/ColorPicker/ColorPicker.d.ts +18 -0
  67. package/dist/components/ColorPicker/ColorPicker.js +38 -0
  68. package/dist/components/ColorPicker/ColorPickerItem.d.ts +20 -0
  69. package/dist/components/ColorPicker/ColorPickerItem.js +13 -0
  70. package/dist/components/ColorPicker/index.d.ts +5 -0
  71. package/dist/components/Combobox/Combobox.d.ts +31 -0
  72. package/dist/components/Combobox/Combobox.js +40 -0
  73. package/dist/components/Combobox/ComboboxTrigger.d.ts +9 -0
  74. package/dist/components/Combobox/ComboboxTrigger.js +30 -0
  75. package/dist/components/Combobox/index.d.ts +2 -0
  76. package/dist/components/Dropdown/Dropdown.d.ts +79 -0
  77. package/dist/components/Dropdown/Dropdown.js +60 -0
  78. package/dist/components/Dropdown/DropdownCheckboxItem.d.ts +24 -0
  79. package/dist/components/Dropdown/DropdownCheckboxItem.js +34 -0
  80. package/dist/components/Dropdown/DropdownContext.d.ts +8 -0
  81. package/dist/components/Dropdown/DropdownContext.js +11 -0
  82. package/dist/components/Dropdown/DropdownItem.d.ts +29 -0
  83. package/dist/components/Dropdown/DropdownItem.js +33 -0
  84. package/dist/components/Dropdown/DropdownMenu.d.ts +35 -0
  85. package/dist/components/Dropdown/DropdownMenu.js +26 -0
  86. package/dist/components/Dropdown/DropdownMenuGroup.d.ts +13 -0
  87. package/dist/components/Dropdown/DropdownMenuGroup.js +12 -0
  88. package/dist/components/Dropdown/DropdownRadioItem.d.ts +24 -0
  89. package/dist/components/Dropdown/DropdownRadioItem.js +34 -0
  90. package/dist/components/Dropdown/DropdownSeparator.d.ts +5 -0
  91. package/dist/components/Dropdown/DropdownSeparator.js +5 -0
  92. package/dist/components/Dropdown/DropdownTrigger.d.ts +37 -0
  93. package/dist/components/Dropdown/DropdownTrigger.js +34 -0
  94. package/dist/components/Dropdown/index.d.ts +2 -0
  95. package/dist/components/Dropzone/Dropzone.d.ts +52 -0
  96. package/dist/components/Dropzone/Dropzone.js +55 -0
  97. package/dist/components/Dropzone/DropzoneContext.d.ts +9 -0
  98. package/dist/components/Dropzone/DropzoneContext.js +12 -0
  99. package/dist/components/Dropzone/DropzoneDrag.d.ts +5 -0
  100. package/dist/components/Dropzone/DropzoneDrag.js +11 -0
  101. package/dist/components/Dropzone/DropzoneFile.d.ts +9 -0
  102. package/dist/components/Dropzone/DropzoneFile.js +30 -0
  103. package/dist/components/Dropzone/DropzoneImport.d.ts +5 -0
  104. package/dist/components/Dropzone/DropzoneImport.js +28 -0
  105. package/dist/components/Dropzone/index.d.ts +3 -0
  106. package/dist/components/EmptyScreen/EmptyScreen.d.ts +31 -0
  107. package/dist/components/EmptyScreen/EmptyScreen.js +21 -0
  108. package/dist/components/EmptyScreen/index.d.ts +2 -0
  109. package/dist/components/Form/FormContext.d.ts +6 -0
  110. package/dist/components/Form/FormContext.js +11 -0
  111. package/dist/components/Form/FormControl.d.ts +42 -0
  112. package/dist/components/Form/FormControl.js +32 -0
  113. package/dist/components/Form/FormText.d.ts +8 -0
  114. package/dist/components/Form/FormText.js +17 -0
  115. package/dist/components/Form/index.d.ts +3 -0
  116. package/dist/components/Grid/Grid.d.ts +56 -0
  117. package/dist/components/Grid/Grid.js +32 -0
  118. package/dist/components/Grid/index.d.ts +1 -0
  119. package/dist/components/Heading/Heading.d.ts +27 -0
  120. package/dist/components/Heading/Heading.js +16 -0
  121. package/dist/components/Heading/index.d.ts +2 -0
  122. package/dist/components/Image/Image.d.ts +28 -0
  123. package/dist/components/Image/Image.js +41 -0
  124. package/dist/components/Image/index.d.ts +2 -0
  125. package/dist/components/Input/Input.d.ts +33 -0
  126. package/dist/components/Input/Input.js +31 -0
  127. package/dist/components/Input/index.d.ts +2 -0
  128. package/dist/components/Label/Label.d.ts +26 -0
  129. package/dist/components/Label/Label.js +37 -0
  130. package/dist/components/Label/index.d.ts +2 -0
  131. package/dist/components/Layout/Layout.d.ts +12 -0
  132. package/dist/components/Layout/Layout.js +44 -0
  133. package/dist/components/Layout/components/Header.d.ts +9 -0
  134. package/dist/components/Layout/components/Header.js +189 -0
  135. package/dist/components/Layout/components/Help.d.ts +8 -0
  136. package/dist/components/Layout/components/Help.js +25 -0
  137. package/dist/components/Layout/components/Main.d.ts +16 -0
  138. package/dist/components/Layout/components/NavItem.d.ts +6 -0
  139. package/dist/components/Layout/components/NavItem.js +14 -0
  140. package/dist/components/Layout/components/NavLink.d.ts +24 -0
  141. package/dist/components/Layout/components/NavLink.js +19 -0
  142. package/dist/components/Layout/components/Navbar.d.ts +6 -0
  143. package/dist/components/Layout/components/Navbar.js +13 -0
  144. package/dist/components/Layout/components/NavbarNav.d.ts +6 -0
  145. package/dist/components/Layout/components/NavbarNav.js +13 -0
  146. package/dist/components/Layout/components/SearchEngine.d.ts +5 -0
  147. package/dist/components/Layout/components/SearchEngine.js +33 -0
  148. package/dist/components/Layout/components/WidgetApps.d.ts +9 -0
  149. package/dist/components/Layout/components/WidgetApps.js +23 -0
  150. package/dist/components/Layout/hooks/index.d.ts +2 -0
  151. package/dist/components/Layout/hooks/useHeader.d.ts +5 -0
  152. package/dist/components/Layout/hooks/useHelp.d.ts +9 -0
  153. package/dist/components/Layout/hooks/useHelp.js +85 -0
  154. package/dist/components/Layout/index.d.ts +1 -0
  155. package/dist/components/List/List.d.ts +23 -0
  156. package/dist/components/List/List.js +50 -0
  157. package/dist/components/List/index.d.ts +1 -0
  158. package/dist/components/Loading/Loading.d.ts +29 -0
  159. package/dist/components/Loading/Loading.js +27 -0
  160. package/dist/components/Loading/index.d.ts +2 -0
  161. package/dist/components/LoadingScreen/LoadingScreen.d.ts +6 -0
  162. package/dist/components/LoadingScreen/LoadingScreen.js +25 -0
  163. package/dist/components/LoadingScreen/index.d.ts +1 -0
  164. package/dist/components/Logo/Logo.d.ts +7 -0
  165. package/dist/components/Logo/Logo.js +14 -0
  166. package/dist/components/Logo/index.d.ts +2 -0
  167. package/dist/components/Menu/components/Menu.d.ts +14 -0
  168. package/dist/components/Menu/components/Menu.js +27 -0
  169. package/dist/components/Menu/components/MenuButton.d.ts +5 -0
  170. package/dist/components/Menu/components/MenuButton.js +21 -0
  171. package/dist/components/Menu/components/MenuContext.d.ts +10 -0
  172. package/dist/components/Menu/components/MenuContext.js +12 -0
  173. package/dist/components/Menu/components/MenuItem.d.ts +4 -0
  174. package/dist/components/Menu/components/MenuItem.js +19 -0
  175. package/dist/components/Menu/hooks/useMenu.d.ts +9 -0
  176. package/dist/components/Menu/hooks/useMenu.js +50 -0
  177. package/dist/components/Menu/index.d.ts +2 -0
  178. package/dist/components/Modal/Modal.d.ts +55 -0
  179. package/dist/components/Modal/Modal.js +72 -0
  180. package/dist/components/Modal/ModalBody.d.ts +19 -0
  181. package/dist/components/Modal/ModalBody.js +15 -0
  182. package/dist/components/Modal/ModalContext.d.ts +7 -0
  183. package/dist/components/Modal/ModalContext.js +15 -0
  184. package/dist/components/Modal/ModalFooter.d.ts +12 -0
  185. package/dist/components/Modal/ModalFooter.js +5 -0
  186. package/dist/components/Modal/ModalHeader.d.ts +19 -0
  187. package/dist/components/Modal/ModalHeader.js +27 -0
  188. package/dist/components/Modal/ModalSubtitle.d.ts +12 -0
  189. package/dist/components/Modal/ModalSubtitle.js +5 -0
  190. package/dist/components/Modal/index.d.ts +2 -0
  191. package/dist/components/Popover/Popover.d.ts +33 -0
  192. package/dist/components/Popover/Popover.js +51 -0
  193. package/dist/components/Popover/index.d.ts +1 -0
  194. package/dist/components/Radio/Radio.d.ts +25 -0
  195. package/dist/components/Radio/Radio.js +31 -0
  196. package/dist/components/Radio/index.d.ts +2 -0
  197. package/dist/components/SearchBar/SearchBar.d.ts +51 -0
  198. package/dist/components/SearchBar/SearchBar.js +36 -0
  199. package/dist/components/SearchBar/index.d.ts +2 -0
  200. package/dist/components/Select/Select.d.ts +39 -0
  201. package/dist/components/Select/Select.js +37 -0
  202. package/dist/components/Select/SelectTrigger.d.ts +8 -0
  203. package/dist/components/Select/SelectTrigger.js +6 -0
  204. package/dist/components/Select/index.d.ts +2 -0
  205. package/dist/components/Table/components/Table.d.ts +30 -0
  206. package/dist/components/Table/components/Table.js +19 -0
  207. package/dist/components/Table/components/TableTbody.d.ts +6 -0
  208. package/dist/components/Table/components/TableTbody.js +11 -0
  209. package/dist/components/Table/components/TableTd.d.ts +4 -0
  210. package/dist/components/Table/components/TableTd.js +11 -0
  211. package/dist/components/Table/components/TableTh.d.ts +4 -0
  212. package/dist/components/Table/components/TableTh.js +11 -0
  213. package/dist/components/Table/components/TableThead.d.ts +4 -0
  214. package/dist/components/Table/components/TableThead.js +11 -0
  215. package/dist/components/Table/components/TableTr.d.ts +4 -0
  216. package/dist/components/Table/components/TableTr.js +11 -0
  217. package/dist/components/Table/index.d.ts +2 -0
  218. package/dist/components/Tabs/components/Tabs.d.ts +42 -0
  219. package/dist/components/Tabs/components/Tabs.js +45 -0
  220. package/dist/components/Tabs/components/TabsItem.d.ts +26 -0
  221. package/dist/components/Tabs/components/TabsItem.js +26 -0
  222. package/dist/components/Tabs/components/TabsList.d.ts +6 -0
  223. package/dist/components/Tabs/components/TabsList.js +24 -0
  224. package/dist/components/Tabs/components/TabsPanel.d.ts +17 -0
  225. package/dist/components/Tabs/components/TabsPanel.js +14 -0
  226. package/dist/components/Tabs/context/TabsContext.d.ts +12 -0
  227. package/dist/components/Tabs/context/TabsContext.js +12 -0
  228. package/dist/components/Tabs/hooks/useTabs.d.ts +15 -0
  229. package/dist/components/Tabs/hooks/useTabs.js +61 -0
  230. package/dist/components/Tabs/index.d.ts +2 -0
  231. package/dist/components/TextArea/TextArea.d.ts +33 -0
  232. package/dist/components/TextArea/TextArea.js +34 -0
  233. package/dist/components/TextArea/TextareaCounter.d.ts +4 -0
  234. package/dist/components/TextArea/TextareaCounter.js +8 -0
  235. package/dist/components/TextArea/index.d.ts +2 -0
  236. package/dist/components/Toolbar/Toolbar.d.ts +76 -0
  237. package/dist/components/Toolbar/Toolbar.js +78 -0
  238. package/dist/components/Toolbar/index.d.ts +1 -0
  239. package/dist/components/Tooltip/Tooltip.d.ts +22 -0
  240. package/dist/components/Tooltip/Tooltip.js +41 -0
  241. package/dist/components/Tooltip/index.d.ts +2 -0
  242. package/dist/components/Tree/components/DndTree.d.ts +3 -0
  243. package/dist/components/Tree/components/DndTree.js +61 -0
  244. package/dist/components/Tree/components/SortableTree.d.ts +9 -0
  245. package/dist/components/Tree/components/SortableTree.js +138 -0
  246. package/dist/components/Tree/components/Tree.d.ts +7 -0
  247. package/dist/components/Tree/components/Tree.js +86 -0
  248. package/dist/components/Tree/hooks/useTree.d.ts +31 -0
  249. package/dist/components/Tree/hooks/useTree.js +85 -0
  250. package/dist/components/Tree/hooks/useTreeSortable.d.ts +38 -0
  251. package/dist/components/Tree/hooks/useTreeSortable.js +202 -0
  252. package/dist/components/Tree/index.d.ts +6 -0
  253. package/dist/components/Tree/types/index.d.ts +174 -0
  254. package/dist/components/Tree/utilities/tree-sortable.d.ts +30 -0
  255. package/dist/components/Tree/utilities/tree-sortable.js +160 -0
  256. package/dist/components/Tree/utilities/tree.d.ts +34 -0
  257. package/dist/components/Tree/utilities/tree.js +44 -0
  258. package/dist/components/TreeView/TreeNode.d.ts +48 -0
  259. package/dist/components/TreeView/TreeNode.js +69 -0
  260. package/dist/components/TreeView/TreeView.d.ts +56 -0
  261. package/dist/components/TreeView/TreeView.js +37 -0
  262. package/dist/components/TreeView/hooks/useTreeView.d.ts +33 -0
  263. package/dist/components/TreeView/hooks/useTreeView.js +105 -0
  264. package/dist/components/TreeView/index.d.ts +5 -0
  265. package/dist/components/TreeView/utilities/index.d.ts +1 -0
  266. package/dist/components/TreeView/utilities/treeview.d.ts +35 -0
  267. package/dist/components/TreeView/utilities/treeview.js +177 -0
  268. package/dist/components/VisuallyHidden/VisuallyHidden.d.ts +6 -0
  269. package/dist/components/VisuallyHidden/VisuallyHidden.js +8 -0
  270. package/dist/components/VisuallyHidden/index.d.ts +1 -0
  271. package/dist/components/index.d.ts +41 -0
  272. package/dist/editor.js +58 -0
  273. package/dist/hooks/index.d.ts +39 -0
  274. package/dist/hooks/useAvatar/index.d.ts +1 -0
  275. package/dist/hooks/useAvatar/useAvatar.d.ts +6 -0
  276. package/dist/hooks/useAvatar/useAvatar.js +30 -0
  277. package/dist/hooks/useBookmark/index.d.ts +1 -0
  278. package/dist/hooks/useBookmark/useBookmark.d.ts +2 -0
  279. package/dist/hooks/useBookmark/useBookmark.js +14 -0
  280. package/dist/hooks/useBreakpoint/index.d.ts +1 -0
  281. package/dist/hooks/useBreakpoint/useBreakpoint.d.ts +20 -0
  282. package/dist/hooks/useBreakpoint/useBreakpoint.js +14 -0
  283. package/dist/hooks/useBrowserInfo/index.d.ts +1 -0
  284. package/dist/hooks/useBrowserInfo/useBrowserInfo.d.ts +9 -0
  285. package/dist/hooks/useBrowserInfo/useBrowserInfo.js +16 -0
  286. package/dist/hooks/useCantoo/index.d.ts +1 -0
  287. package/dist/hooks/useCantoo/useCantoo.d.ts +1 -0
  288. package/dist/hooks/useCantoo/useCantoo.js +18 -0
  289. package/dist/hooks/useCheckable/index.d.ts +1 -0
  290. package/dist/hooks/useCheckable/useCheckable.d.ts +9 -0
  291. package/dist/hooks/useCheckable/useCheckable.js +21 -0
  292. package/dist/hooks/useClickOutside/index.d.ts +1 -0
  293. package/dist/hooks/useClickOutside/useClickOutside.d.ts +1 -0
  294. package/dist/hooks/useClickOutside/useClickOutside.js +26 -0
  295. package/dist/hooks/useConf/index.d.ts +1 -0
  296. package/dist/hooks/useConf/useConf.d.ts +4 -0
  297. package/dist/hooks/useConf/useConf.js +13 -0
  298. package/dist/hooks/useConversation/index.d.ts +1 -0
  299. package/dist/hooks/useConversation/useConversation.d.ts +6 -0
  300. package/dist/hooks/useConversation/useConversation.js +43 -0
  301. package/dist/hooks/useCookiesConsent/index.d.ts +1 -0
  302. package/dist/hooks/useCookiesConsent/useCookiesConsent.d.ts +5 -0
  303. package/dist/hooks/useCookiesConsent/useCookiesConsent.js +29 -0
  304. package/dist/hooks/useDate/index.d.ts +2 -0
  305. package/dist/hooks/useDate/useDate.d.ts +14 -0
  306. package/dist/hooks/useDate/useDate.js +65 -0
  307. package/dist/hooks/useDebounce/index.d.ts +1 -0
  308. package/dist/hooks/useDebounce/useDebounce.d.ts +2 -0
  309. package/dist/hooks/useDebounce/useDebounce.js +15 -0
  310. package/dist/hooks/useDirectory/index.d.ts +1 -0
  311. package/dist/hooks/useDirectory/useDirectory.d.ts +6 -0
  312. package/dist/hooks/useDirectory/useDirectory.js +16 -0
  313. package/dist/hooks/useDropdown/index.d.ts +1 -0
  314. package/dist/hooks/useDropdown/useDropdown.d.ts +32 -0
  315. package/dist/hooks/useDropdown/useDropdown.js +158 -0
  316. package/dist/hooks/useDropzone/index.d.ts +1 -0
  317. package/dist/hooks/useDropzone/useDropzone.d.ts +34 -0
  318. package/dist/hooks/useDropzone/useDropzone.js +78 -0
  319. package/dist/hooks/useEdificeIcons/index.d.ts +1 -0
  320. package/dist/hooks/useEdificeIcons/useEdificeIcons.d.ts +9 -0
  321. package/dist/hooks/useEdificeIcons/useEdificeIcons.js +92 -0
  322. package/dist/hooks/useHasWorkflow/index.d.ts +1 -0
  323. package/dist/hooks/useHasWorkflow/useHasWorkflow.d.ts +1 -0
  324. package/dist/hooks/useHasWorkflow/useHasWorkflow.js +22 -0
  325. package/dist/hooks/useHeader/index.d.ts +1 -0
  326. package/dist/hooks/useHeader/useHeader.d.ts +5 -0
  327. package/dist/hooks/useHeader/useHeader.js +46 -0
  328. package/dist/hooks/useHover/index.d.ts +1 -0
  329. package/dist/hooks/useHover/useHover.d.ts +2 -0
  330. package/dist/hooks/useHover/useHover.js +22 -0
  331. package/dist/hooks/useHttpErrorToast/index.d.ts +1 -0
  332. package/dist/hooks/useHttpErrorToast/useHttpErrorToast.d.ts +3 -0
  333. package/dist/hooks/useHttpErrorToast/useHttpErrorToast.js +21 -0
  334. package/dist/hooks/useImage/index.d.ts +1 -0
  335. package/dist/hooks/useImage/useImage.d.ts +9 -0
  336. package/dist/hooks/useImage/useImage.js +18 -0
  337. package/dist/hooks/useIsAdml/index.d.ts +1 -0
  338. package/dist/hooks/useIsAdml/useIsAdml.d.ts +3 -0
  339. package/dist/hooks/useIsAdml/useIsAdml.js +18 -0
  340. package/dist/hooks/useKeyPress/index.d.ts +1 -0
  341. package/dist/hooks/useKeyPress/useKeyPress.d.ts +1 -0
  342. package/dist/hooks/useKeyPress/useKeyPress.js +14 -0
  343. package/dist/hooks/useLibraryUrl/index.d.ts +1 -0
  344. package/dist/hooks/useLibraryUrl/useLibraryUrl.d.ts +7 -0
  345. package/dist/hooks/useLibraryUrl/useLibraryUrl.js +21 -0
  346. package/dist/hooks/useMediaLibrary/index.d.ts +1 -0
  347. package/dist/hooks/useMediaLibrary/useMediaLibrary.d.ts +12 -0
  348. package/dist/hooks/useMediaLibrary/useMediaLibrary.js +58 -0
  349. package/dist/hooks/usePreferences/index.d.ts +1 -0
  350. package/dist/hooks/usePreferences/usePreferences.d.ts +4 -0
  351. package/dist/hooks/usePreferences/usePreferences.js +10 -0
  352. package/dist/hooks/useResource/index.d.ts +1 -0
  353. package/dist/hooks/useResource/useResource.d.ts +3 -0
  354. package/dist/hooks/useResource/useResource.js +25 -0
  355. package/dist/hooks/useResourceSearch/index.d.ts +1 -0
  356. package/dist/hooks/useResourceSearch/useResourceSearch.d.ts +18 -0
  357. package/dist/hooks/useResourceSearch/useResourceSearch.js +19 -0
  358. package/dist/hooks/useScrollToTop/index.d.ts +1 -0
  359. package/dist/hooks/useScrollToTop/useScrollToTop.d.ts +1 -0
  360. package/dist/hooks/useScrollToTop/useScrollToTop.js +9 -0
  361. package/dist/hooks/useSession/index.d.ts +1 -0
  362. package/dist/hooks/useSession/useSession.d.ts +1 -0
  363. package/dist/hooks/useSession/useSession.js +11 -0
  364. package/dist/hooks/useThumbnail/index.d.ts +1 -0
  365. package/dist/hooks/useThumbnail/useThumbnail.d.ts +14 -0
  366. package/dist/hooks/useThumbnail/useThumbnail.js +29 -0
  367. package/dist/hooks/useTitle/index.d.ts +1 -0
  368. package/dist/hooks/useTitle/useTitle.d.ts +1 -0
  369. package/dist/hooks/useTitle/useTitle.js +10 -0
  370. package/dist/hooks/useToast/index.d.ts +1 -0
  371. package/dist/hooks/useToast/useToast.d.ts +17 -0
  372. package/dist/hooks/useToast/useToast.js +34 -0
  373. package/dist/hooks/useToggle/index.d.ts +1 -0
  374. package/dist/hooks/useToggle/useToggle.d.ts +1 -0
  375. package/dist/hooks/useToggle/useToggle.js +10 -0
  376. package/dist/hooks/useTrapFocus/index.d.ts +1 -0
  377. package/dist/hooks/useTrapFocus/useTrapFocus.d.ts +1 -0
  378. package/dist/hooks/useTrapFocus/useTrapFocus.js +16 -0
  379. package/dist/hooks/useTrashedResource/index.d.ts +1 -0
  380. package/dist/hooks/useTrashedResource/useTrashedResource.d.ts +6 -0
  381. package/dist/hooks/useTrashedResource/useTrashedResource.js +27 -0
  382. package/dist/hooks/useUpload/index.d.ts +1 -0
  383. package/dist/hooks/useUpload/useUpload.d.ts +18 -0
  384. package/dist/hooks/useUpload/useUpload.js +106 -0
  385. package/dist/hooks/useUploadFiles/index.d.ts +1 -0
  386. package/dist/hooks/useUploadFiles/useUploadFiles.d.ts +25 -0
  387. package/dist/hooks/useUploadFiles/useUploadFiles.js +100 -0
  388. package/dist/hooks/useUser/index.d.ts +1 -0
  389. package/dist/hooks/useUser/useUser.d.ts +7 -0
  390. package/dist/hooks/useUser/useUser.js +22 -0
  391. package/dist/hooks/useWorkspaceFile/index.d.ts +1 -0
  392. package/dist/hooks/useWorkspaceFile/useWorkspaceFile.d.ts +21 -0
  393. package/dist/hooks/useWorkspaceFile/useWorkspaceFile.js +49 -0
  394. package/dist/hooks/useWorkspaceSearch/index.d.ts +1 -0
  395. package/dist/hooks/useWorkspaceSearch/useWorkspaceSearch.d.ts +9 -0
  396. package/dist/hooks/useWorkspaceSearch/useWorkspaceSearch.js +58 -0
  397. package/dist/hooks/useXitiTrackPageLoad/index.d.ts +1 -0
  398. package/dist/hooks/useXitiTrackPageLoad/useXitiTrackPageLoad.d.ts +4 -0
  399. package/dist/hooks/useXitiTrackPageLoad/useXitiTrackPageLoad.js +28 -0
  400. package/dist/hooks/useZendeskGuide/index.d.ts +1 -0
  401. package/dist/hooks/useZendeskGuide/useZendeskGuide.d.ts +2 -0
  402. package/dist/hooks/useZendeskGuide/useZendeskGuide.js +101 -0
  403. package/dist/icons-apps.js +232 -0
  404. package/dist/icons-audience.js +28 -0
  405. package/dist/icons-nav.js +28 -0
  406. package/dist/icons.js +300 -0
  407. package/dist/index.d.ts +5 -0
  408. package/dist/index.js +236 -0
  409. package/dist/modals.js +18 -0
  410. package/dist/modules/audience/ReactionChoice.d.ts +11 -0
  411. package/dist/modules/audience/ReactionChoice.js +33 -0
  412. package/dist/modules/audience/ReactionModal.Card.d.ts +4 -0
  413. package/dist/modules/audience/ReactionModal.Card.js +33 -0
  414. package/dist/modules/audience/ReactionModal.d.ts +20 -0
  415. package/dist/modules/audience/ReactionModal.js +72 -0
  416. package/dist/modules/audience/ReactionSummary.d.ts +10 -0
  417. package/dist/modules/audience/ReactionSummary.js +27 -0
  418. package/dist/modules/audience/ViewsByProfileCard.d.ts +9 -0
  419. package/dist/modules/audience/ViewsByProfileCard.js +40 -0
  420. package/dist/modules/audience/ViewsCounter.d.ts +10 -0
  421. package/dist/modules/audience/ViewsCounter.js +18 -0
  422. package/dist/modules/audience/ViewsModal.d.ts +11 -0
  423. package/dist/modules/audience/ViewsModal.js +41 -0
  424. package/dist/modules/audience/hooks/useReactionIcons.d.ts +5 -0
  425. package/dist/modules/audience/hooks/useReactionIcons.js +45 -0
  426. package/dist/modules/audience/hooks/useReactions.d.ts +15 -0
  427. package/dist/modules/audience/hooks/useReactions.js +35 -0
  428. package/dist/modules/audience/hooks/useViews.d.ts +11 -0
  429. package/dist/modules/audience/index.d.ts +12 -0
  430. package/dist/modules/comments/components/BadgeProfile.d.ts +4 -0
  431. package/dist/modules/comments/components/BadgeProfile.js +18 -0
  432. package/dist/modules/comments/components/Comment.d.ts +7 -0
  433. package/dist/modules/comments/components/Comment.js +72 -0
  434. package/dist/modules/comments/components/CommentAvatar.d.ts +3 -0
  435. package/dist/modules/comments/components/CommentAvatar.js +17 -0
  436. package/dist/modules/comments/components/CommentDate.d.ts +4 -0
  437. package/dist/modules/comments/components/CommentDate.js +27 -0
  438. package/dist/modules/comments/components/CommentForm.d.ts +3 -0
  439. package/dist/modules/comments/components/CommentForm.js +37 -0
  440. package/dist/modules/comments/components/CommentHeader.d.ts +3 -0
  441. package/dist/modules/comments/components/CommentHeader.js +8 -0
  442. package/dist/modules/comments/components/CommentList.d.ts +1 -0
  443. package/dist/modules/comments/components/CommentList.js +22 -0
  444. package/dist/modules/comments/components/CommentTitle.d.ts +4 -0
  445. package/dist/modules/comments/components/CommentTitle.js +7 -0
  446. package/dist/modules/comments/components/TextCounter.d.ts +4 -0
  447. package/dist/modules/comments/components/TextCounter.js +8 -0
  448. package/dist/modules/comments/constants.d.ts +20 -0
  449. package/dist/modules/comments/constants.js +8 -0
  450. package/dist/modules/comments/context/Context.d.ts +16 -0
  451. package/dist/modules/comments/context/Context.js +5 -0
  452. package/dist/modules/comments/hooks/useAutosizeTextarea.d.ts +1 -0
  453. package/dist/modules/comments/hooks/useAutosizeTextarea.js +19 -0
  454. package/dist/modules/comments/hooks/useComments.d.ts +29 -0
  455. package/dist/modules/comments/hooks/useComments.js +66 -0
  456. package/dist/modules/comments/hooks/useCommentsContext.d.ts +15 -0
  457. package/dist/modules/comments/hooks/useCommentsContext.js +11 -0
  458. package/dist/modules/comments/hooks/useProfileQueries.d.ts +4 -0
  459. package/dist/modules/comments/hooks/useProfileQueries.js +26 -0
  460. package/dist/modules/comments/index.d.ts +1 -0
  461. package/dist/modules/comments/provider/CommentProvider.d.ts +3 -0
  462. package/dist/modules/comments/provider/CommentProvider.js +85 -0
  463. package/dist/modules/comments/types.d.ts +102 -0
  464. package/dist/modules/editor/components/BubbleMenuEditImage/BubbleMenuEditImage.d.ts +8 -0
  465. package/dist/modules/editor/components/BubbleMenuEditImage/BubbleMenuEditImage.js +135 -0
  466. package/dist/modules/editor/components/BubbleMenuEditImage/index.d.ts +1 -0
  467. package/dist/modules/editor/components/Editor/Editor.d.ts +45 -0
  468. package/dist/modules/editor/components/Editor/Editor.js +82 -0
  469. package/dist/modules/editor/components/Editor/MathsModal.d.ts +7 -0
  470. package/dist/modules/editor/components/Editor/MathsModal.js +50 -0
  471. package/dist/modules/editor/components/Editor/index.d.ts +2 -0
  472. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.DropdownMenu.d.ts +22 -0
  473. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.DropdownMenu.js +17 -0
  474. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Emoji.d.ts +14 -0
  475. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Emoji.js +54 -0
  476. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.HighlightColor.d.ts +14 -0
  477. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.HighlightColor.js +47 -0
  478. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.PlusMenu.d.ts +9 -0
  479. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.PlusMenu.js +18 -0
  480. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.TextColor.d.ts +14 -0
  481. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.TextColor.js +50 -0
  482. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.TextSize.d.ts +10 -0
  483. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.TextSize.js +62 -0
  484. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Typography.d.ts +10 -0
  485. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Typography.js +52 -0
  486. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.d.ts +10 -0
  487. package/dist/modules/editor/components/EditorToolbar/EditorToolbar.js +331 -0
  488. package/dist/modules/editor/components/EditorToolbar/index.d.ts +1 -0
  489. package/dist/modules/editor/components/NodeView/AttachmentNodeView.d.ts +2 -0
  490. package/dist/modules/editor/components/NodeView/AttachmentNodeView.js +10 -0
  491. package/dist/modules/editor/components/NodeView/AudioNodeView.d.ts +2 -0
  492. package/dist/modules/editor/components/NodeView/AudioNodeView.js +10 -0
  493. package/dist/modules/editor/components/NodeView/ImageNodeView.d.ts +3 -0
  494. package/dist/modules/editor/components/NodeView/ImageNodeView.js +12 -0
  495. package/dist/modules/editor/components/NodeView/LinkerNodeView.d.ts +2 -0
  496. package/dist/modules/editor/components/NodeView/LinkerNodeView.js +10 -0
  497. package/dist/modules/editor/components/NodeView/VideoNodeView.d.ts +2 -0
  498. package/dist/modules/editor/components/NodeView/VideoNodeView.js +10 -0
  499. package/dist/modules/editor/components/NodeView/index.d.ts +5 -0
  500. package/dist/modules/editor/components/Renderer/AttachmentRenderer.d.ts +7 -0
  501. package/dist/modules/editor/components/Renderer/AttachmentRenderer.js +35 -0
  502. package/dist/modules/editor/components/Renderer/AudioRenderer.d.ts +7 -0
  503. package/dist/modules/editor/components/Renderer/AudioRenderer.js +11 -0
  504. package/dist/modules/editor/components/Renderer/LinkerRenderer.d.ts +9 -0
  505. package/dist/modules/editor/components/Renderer/LinkerRenderer.js +34 -0
  506. package/dist/modules/editor/components/Renderer/MediaRenderer.d.ts +3 -0
  507. package/dist/modules/editor/components/Renderer/MediaRenderer.js +70 -0
  508. package/dist/modules/editor/components/Renderer/index.d.ts +4 -0
  509. package/dist/modules/editor/components/Toolbar/LinkToolbar.TippyOptions.d.ts +2 -0
  510. package/dist/modules/editor/components/Toolbar/LinkToolbar.TippyOptions.js +8 -0
  511. package/dist/modules/editor/components/Toolbar/LinkToolbar.d.ts +15 -0
  512. package/dist/modules/editor/components/Toolbar/LinkToolbar.js +61 -0
  513. package/dist/modules/editor/components/Toolbar/TableToolbar.AddMenu.d.ts +9 -0
  514. package/dist/modules/editor/components/Toolbar/TableToolbar.AddMenu.js +33 -0
  515. package/dist/modules/editor/components/Toolbar/TableToolbar.CellColor.d.ts +13 -0
  516. package/dist/modules/editor/components/Toolbar/TableToolbar.CellColor.js +45 -0
  517. package/dist/modules/editor/components/Toolbar/TableToolbar.DelMenu.d.ts +9 -0
  518. package/dist/modules/editor/components/Toolbar/TableToolbar.DelMenu.js +31 -0
  519. package/dist/modules/editor/components/Toolbar/TableToolbar.d.ts +9 -0
  520. package/dist/modules/editor/components/Toolbar/TableToolbar.js +89 -0
  521. package/dist/modules/editor/components/Toolbar/index.d.ts +2 -0
  522. package/dist/modules/editor/components/index.d.ts +6 -0
  523. package/dist/modules/editor/hooks/index.d.ts +12 -0
  524. package/dist/modules/editor/hooks/useActionOptions.d.ts +5 -0
  525. package/dist/modules/editor/hooks/useActionOptions.js +86 -0
  526. package/dist/modules/editor/hooks/useCommentEditor.d.ts +13 -0
  527. package/dist/modules/editor/hooks/useCommentEditor.js +37 -0
  528. package/dist/modules/editor/hooks/useEditorContext.d.ts +37 -0
  529. package/dist/modules/editor/hooks/useEditorContext.js +12 -0
  530. package/dist/modules/editor/hooks/useImageModal.d.ts +31 -0
  531. package/dist/modules/editor/hooks/useImageModal.js +46 -0
  532. package/dist/modules/editor/hooks/useImageSelection.d.ts +21 -0
  533. package/dist/modules/editor/hooks/useImageSelection.js +46 -0
  534. package/dist/modules/editor/hooks/useLinkToolbar.d.ts +18 -0
  535. package/dist/modules/editor/hooks/useLinkToolbar.js +37 -0
  536. package/dist/modules/editor/hooks/useMathsModal.d.ts +17 -0
  537. package/dist/modules/editor/hooks/useMathsModal.js +17 -0
  538. package/dist/modules/editor/hooks/useMathsStyles.d.ts +1 -0
  539. package/dist/modules/editor/hooks/useMathsStyles.js +20 -0
  540. package/dist/modules/editor/hooks/useMediaLibraryEditor.d.ts +19 -0
  541. package/dist/modules/editor/hooks/useMediaLibraryEditor.js +152 -0
  542. package/dist/modules/editor/hooks/useResizeMedia.d.ts +10 -0
  543. package/dist/modules/editor/hooks/useResizeMedia.js +47 -0
  544. package/dist/modules/editor/hooks/useSpeechRecognition.d.ts +6 -0
  545. package/dist/modules/editor/hooks/useSpeechRecognition.js +21 -0
  546. package/dist/modules/editor/hooks/useSpeechSynthetisis.d.ts +12 -0
  547. package/dist/modules/editor/hooks/useSpeechSynthetisis.js +20 -0
  548. package/dist/modules/editor/hooks/useTipTapEditor.d.ts +16 -0
  549. package/dist/modules/editor/hooks/useTipTapEditor.js +86 -0
  550. package/dist/modules/editor/index.d.ts +3 -0
  551. package/dist/modules/editor/utilities/has-extension.d.ts +2 -0
  552. package/dist/modules/editor/utilities/has-extension.js +4 -0
  553. package/dist/modules/editor/utilities/has-mark.d.ts +2 -0
  554. package/dist/modules/editor/utilities/has-mark.js +4 -0
  555. package/dist/modules/editor/utilities/has-text-style.d.ts +2 -0
  556. package/dist/modules/editor/utilities/has-text-style.js +5 -0
  557. package/dist/modules/icons/components/IconAdd.d.ts +7 -0
  558. package/dist/modules/icons/components/IconAdd.js +12 -0
  559. package/dist/modules/icons/components/IconAddUser.d.ts +7 -0
  560. package/dist/modules/icons/components/IconAddUser.js +12 -0
  561. package/dist/modules/icons/components/IconAlertCircle.d.ts +7 -0
  562. package/dist/modules/icons/components/IconAlertCircle.js +13 -0
  563. package/dist/modules/icons/components/IconAlertTriangle.d.ts +7 -0
  564. package/dist/modules/icons/components/IconAlertTriangle.js +13 -0
  565. package/dist/modules/icons/components/IconAlignCenter.d.ts +7 -0
  566. package/dist/modules/icons/components/IconAlignCenter.js +12 -0
  567. package/dist/modules/icons/components/IconAlignJustify.d.ts +7 -0
  568. package/dist/modules/icons/components/IconAlignJustify.js +12 -0
  569. package/dist/modules/icons/components/IconAlignLeft.d.ts +7 -0
  570. package/dist/modules/icons/components/IconAlignLeft.js +12 -0
  571. package/dist/modules/icons/components/IconAlignRight.d.ts +7 -0
  572. package/dist/modules/icons/components/IconAlignRight.js +12 -0
  573. package/dist/modules/icons/components/IconAnswer.d.ts +7 -0
  574. package/dist/modules/icons/components/IconAnswer.js +13 -0
  575. package/dist/modules/icons/components/IconApplications.d.ts +7 -0
  576. package/dist/modules/icons/components/IconApplications.js +12 -0
  577. package/dist/modules/icons/components/IconArrowDown.d.ts +7 -0
  578. package/dist/modules/icons/components/IconArrowDown.js +13 -0
  579. package/dist/modules/icons/components/IconArrowLeft.d.ts +7 -0
  580. package/dist/modules/icons/components/IconArrowLeft.js +13 -0
  581. package/dist/modules/icons/components/IconArrowRight.d.ts +7 -0
  582. package/dist/modules/icons/components/IconArrowRight.js +13 -0
  583. package/dist/modules/icons/components/IconArrowUp.d.ts +7 -0
  584. package/dist/modules/icons/components/IconArrowUp.js +13 -0
  585. package/dist/modules/icons/components/IconBlock.d.ts +7 -0
  586. package/dist/modules/icons/components/IconBlock.js +12 -0
  587. package/dist/modules/icons/components/IconBlur.d.ts +7 -0
  588. package/dist/modules/icons/components/IconBlur.js +13 -0
  589. package/dist/modules/icons/components/IconBookmark.d.ts +7 -0
  590. package/dist/modules/icons/components/IconBookmark.js +12 -0
  591. package/dist/modules/icons/components/IconBulletList.d.ts +7 -0
  592. package/dist/modules/icons/components/IconBulletList.js +16 -0
  593. package/dist/modules/icons/components/IconBurgerMenu.d.ts +7 -0
  594. package/dist/modules/icons/components/IconBurgerMenu.js +12 -0
  595. package/dist/modules/icons/components/IconCalendar.d.ts +7 -0
  596. package/dist/modules/icons/components/IconCalendar.js +12 -0
  597. package/dist/modules/icons/components/IconCalendarLight.d.ts +7 -0
  598. package/dist/modules/icons/components/IconCalendarLight.js +12 -0
  599. package/dist/modules/icons/components/IconCamera.d.ts +7 -0
  600. package/dist/modules/icons/components/IconCamera.js +13 -0
  601. package/dist/modules/icons/components/IconCenter.d.ts +7 -0
  602. package/dist/modules/icons/components/IconCenter.js +12 -0
  603. package/dist/modules/icons/components/IconCheck.d.ts +7 -0
  604. package/dist/modules/icons/components/IconCheck.js +12 -0
  605. package/dist/modules/icons/components/IconChecklist.d.ts +7 -0
  606. package/dist/modules/icons/components/IconChecklist.js +13 -0
  607. package/dist/modules/icons/components/IconClock.d.ts +7 -0
  608. package/dist/modules/icons/components/IconClock.js +12 -0
  609. package/dist/modules/icons/components/IconClose.d.ts +7 -0
  610. package/dist/modules/icons/components/IconClose.js +13 -0
  611. package/dist/modules/icons/components/IconCloseFullScreen.d.ts +7 -0
  612. package/dist/modules/icons/components/IconCloseFullScreen.js +12 -0
  613. package/dist/modules/icons/components/IconCode.d.ts +7 -0
  614. package/dist/modules/icons/components/IconCode.js +12 -0
  615. package/dist/modules/icons/components/IconCopy.d.ts +7 -0
  616. package/dist/modules/icons/components/IconCopy.js +12 -0
  617. package/dist/modules/icons/components/IconCrop.d.ts +7 -0
  618. package/dist/modules/icons/components/IconCrop.js +13 -0
  619. package/dist/modules/icons/components/IconCut.d.ts +7 -0
  620. package/dist/modules/icons/components/IconCut.js +13 -0
  621. package/dist/modules/icons/components/IconDelete.d.ts +7 -0
  622. package/dist/modules/icons/components/IconDelete.js +12 -0
  623. package/dist/modules/icons/components/IconDeleteColor.d.ts +7 -0
  624. package/dist/modules/icons/components/IconDeleteColor.js +13 -0
  625. package/dist/modules/icons/components/IconDeleteColumn.d.ts +7 -0
  626. package/dist/modules/icons/components/IconDeleteColumn.js +12 -0
  627. package/dist/modules/icons/components/IconDeleteColumnHighlight.d.ts +7 -0
  628. package/dist/modules/icons/components/IconDeleteColumnHighlight.js +12 -0
  629. package/dist/modules/icons/components/IconDeleteRow.d.ts +7 -0
  630. package/dist/modules/icons/components/IconDeleteRow.js +12 -0
  631. package/dist/modules/icons/components/IconDeleteRowHighlight.d.ts +7 -0
  632. package/dist/modules/icons/components/IconDeleteRowHighlight.js +12 -0
  633. package/dist/modules/icons/components/IconDepositeInbox.d.ts +7 -0
  634. package/dist/modules/icons/components/IconDepositeInbox.js +13 -0
  635. package/dist/modules/icons/components/IconDownload.d.ts +7 -0
  636. package/dist/modules/icons/components/IconDownload.js +17 -0
  637. package/dist/modules/icons/components/IconEdit.d.ts +7 -0
  638. package/dist/modules/icons/components/IconEdit.js +13 -0
  639. package/dist/modules/icons/components/IconError.d.ts +7 -0
  640. package/dist/modules/icons/components/IconError.js +12 -0
  641. package/dist/modules/icons/components/IconExternalLink.d.ts +7 -0
  642. package/dist/modules/icons/components/IconExternalLink.js +13 -0
  643. package/dist/modules/icons/components/IconFiles.d.ts +7 -0
  644. package/dist/modules/icons/components/IconFiles.js +12 -0
  645. package/dist/modules/icons/components/IconFilter.d.ts +7 -0
  646. package/dist/modules/icons/components/IconFilter.js +12 -0
  647. package/dist/modules/icons/components/IconFlag.d.ts +7 -0
  648. package/dist/modules/icons/components/IconFlag.js +12 -0
  649. package/dist/modules/icons/components/IconFolder.d.ts +7 -0
  650. package/dist/modules/icons/components/IconFolder.js +12 -0
  651. package/dist/modules/icons/components/IconFolderMove.d.ts +7 -0
  652. package/dist/modules/icons/components/IconFolderMove.js +17 -0
  653. package/dist/modules/icons/components/IconForgoing.d.ts +7 -0
  654. package/dist/modules/icons/components/IconForgoing.js +12 -0
  655. package/dist/modules/icons/components/IconFullScreen.d.ts +7 -0
  656. package/dist/modules/icons/components/IconFullScreen.js +12 -0
  657. package/dist/modules/icons/components/IconGlobe.d.ts +7 -0
  658. package/dist/modules/icons/components/IconGlobe.js +12 -0
  659. package/dist/modules/icons/components/IconHeadphone.d.ts +7 -0
  660. package/dist/modules/icons/components/IconHeadphone.js +12 -0
  661. package/dist/modules/icons/components/IconHide.d.ts +7 -0
  662. package/dist/modules/icons/components/IconHide.js +13 -0
  663. package/dist/modules/icons/components/IconHighlightColumn.d.ts +7 -0
  664. package/dist/modules/icons/components/IconHighlightColumn.js +12 -0
  665. package/dist/modules/icons/components/IconHighlightRow.d.ts +7 -0
  666. package/dist/modules/icons/components/IconHighlightRow.js +12 -0
  667. package/dist/modules/icons/components/IconHome.d.ts +7 -0
  668. package/dist/modules/icons/components/IconHome.js +12 -0
  669. package/dist/modules/icons/components/IconHourglass.d.ts +7 -0
  670. package/dist/modules/icons/components/IconHourglass.js +12 -0
  671. package/dist/modules/icons/components/IconImageSizeLarge.d.ts +7 -0
  672. package/dist/modules/icons/components/IconImageSizeLarge.js +12 -0
  673. package/dist/modules/icons/components/IconImageSizeMedium.d.ts +7 -0
  674. package/dist/modules/icons/components/IconImageSizeMedium.js +12 -0
  675. package/dist/modules/icons/components/IconImageSizeSmall.d.ts +7 -0
  676. package/dist/modules/icons/components/IconImageSizeSmall.js +12 -0
  677. package/dist/modules/icons/components/IconInbox.d.ts +7 -0
  678. package/dist/modules/icons/components/IconInbox.js +12 -0
  679. package/dist/modules/icons/components/IconInfoCircle.d.ts +7 -0
  680. package/dist/modules/icons/components/IconInfoCircle.js +13 -0
  681. package/dist/modules/icons/components/IconLandscape.d.ts +7 -0
  682. package/dist/modules/icons/components/IconLandscape.js +12 -0
  683. package/dist/modules/icons/components/IconLink.d.ts +7 -0
  684. package/dist/modules/icons/components/IconLink.js +16 -0
  685. package/dist/modules/icons/components/IconListOrder.d.ts +7 -0
  686. package/dist/modules/icons/components/IconListOrder.js +12 -0
  687. package/dist/modules/icons/components/IconLoader.d.ts +7 -0
  688. package/dist/modules/icons/components/IconLoader.js +12 -0
  689. package/dist/modules/icons/components/IconLock.d.ts +7 -0
  690. package/dist/modules/icons/components/IconLock.js +12 -0
  691. package/dist/modules/icons/components/IconMail.d.ts +7 -0
  692. package/dist/modules/icons/components/IconMail.js +13 -0
  693. package/dist/modules/icons/components/IconMergeCells.d.ts +7 -0
  694. package/dist/modules/icons/components/IconMergeCells.js +13 -0
  695. package/dist/modules/icons/components/IconMessageInfo.d.ts +7 -0
  696. package/dist/modules/icons/components/IconMessageInfo.js +13 -0
  697. package/dist/modules/icons/components/IconMic.d.ts +7 -0
  698. package/dist/modules/icons/components/IconMic.js +12 -0
  699. package/dist/modules/icons/components/IconMinus.d.ts +7 -0
  700. package/dist/modules/icons/components/IconMinus.js +12 -0
  701. package/dist/modules/icons/components/IconMove.d.ts +7 -0
  702. package/dist/modules/icons/components/IconMove.js +14 -0
  703. package/dist/modules/icons/components/IconNoColors.d.ts +7 -0
  704. package/dist/modules/icons/components/IconNoColors.js +12 -0
  705. package/dist/modules/icons/components/IconOptions.d.ts +7 -0
  706. package/dist/modules/icons/components/IconOptions.js +14 -0
  707. package/dist/modules/icons/components/IconOrderedList.d.ts +7 -0
  708. package/dist/modules/icons/components/IconOrderedList.js +16 -0
  709. package/dist/modules/icons/components/IconPaperclip.d.ts +7 -0
  710. package/dist/modules/icons/components/IconPaperclip.js +12 -0
  711. package/dist/modules/icons/components/IconPause.d.ts +7 -0
  712. package/dist/modules/icons/components/IconPause.js +12 -0
  713. package/dist/modules/icons/components/IconPinOff.d.ts +7 -0
  714. package/dist/modules/icons/components/IconPinOff.js +12 -0
  715. package/dist/modules/icons/components/IconPinOn.d.ts +7 -0
  716. package/dist/modules/icons/components/IconPinOn.js +12 -0
  717. package/dist/modules/icons/components/IconPlaceholder.d.ts +7 -0
  718. package/dist/modules/icons/components/IconPlaceholder.js +16 -0
  719. package/dist/modules/icons/components/IconPlay.d.ts +7 -0
  720. package/dist/modules/icons/components/IconPlay.js +12 -0
  721. package/dist/modules/icons/components/IconPlayFilled.d.ts +7 -0
  722. package/dist/modules/icons/components/IconPlayFilled.js +12 -0
  723. package/dist/modules/icons/components/IconPlus.d.ts +7 -0
  724. package/dist/modules/icons/components/IconPlus.js +12 -0
  725. package/dist/modules/icons/components/IconPointerDefault.d.ts +7 -0
  726. package/dist/modules/icons/components/IconPointerDefault.js +12 -0
  727. package/dist/modules/icons/components/IconPointerHand.d.ts +7 -0
  728. package/dist/modules/icons/components/IconPointerHand.js +12 -0
  729. package/dist/modules/icons/components/IconPrint.d.ts +7 -0
  730. package/dist/modules/icons/components/IconPrint.js +12 -0
  731. package/dist/modules/icons/components/IconQuestion.d.ts +7 -0
  732. package/dist/modules/icons/components/IconQuestion.js +14 -0
  733. package/dist/modules/icons/components/IconRafterDown.d.ts +7 -0
  734. package/dist/modules/icons/components/IconRafterDown.js +12 -0
  735. package/dist/modules/icons/components/IconRafterLeft.d.ts +7 -0
  736. package/dist/modules/icons/components/IconRafterLeft.js +12 -0
  737. package/dist/modules/icons/components/IconRafterRight.d.ts +7 -0
  738. package/dist/modules/icons/components/IconRafterRight.js +12 -0
  739. package/dist/modules/icons/components/IconRafterUp.d.ts +7 -0
  740. package/dist/modules/icons/components/IconRafterUp.js +12 -0
  741. package/dist/modules/icons/components/IconReaction.d.ts +7 -0
  742. package/dist/modules/icons/components/IconReaction.js +12 -0
  743. package/dist/modules/icons/components/IconRecord.d.ts +7 -0
  744. package/dist/modules/icons/components/IconRecord.js +12 -0
  745. package/dist/modules/icons/components/IconRecordPause.d.ts +7 -0
  746. package/dist/modules/icons/components/IconRecordPause.js +12 -0
  747. package/dist/modules/icons/components/IconRecordStop.d.ts +7 -0
  748. package/dist/modules/icons/components/IconRecordStop.js +12 -0
  749. package/dist/modules/icons/components/IconRecordVideo.d.ts +7 -0
  750. package/dist/modules/icons/components/IconRecordVideo.js +12 -0
  751. package/dist/modules/icons/components/IconRedo.d.ts +7 -0
  752. package/dist/modules/icons/components/IconRedo.js +13 -0
  753. package/dist/modules/icons/components/IconRefresh.d.ts +7 -0
  754. package/dist/modules/icons/components/IconRefresh.js +13 -0
  755. package/dist/modules/icons/components/IconReset.d.ts +7 -0
  756. package/dist/modules/icons/components/IconReset.js +12 -0
  757. package/dist/modules/icons/components/IconRestart.d.ts +7 -0
  758. package/dist/modules/icons/components/IconRestart.js +12 -0
  759. package/dist/modules/icons/components/IconRestore.d.ts +7 -0
  760. package/dist/modules/icons/components/IconRestore.js +12 -0
  761. package/dist/modules/icons/components/IconSave.d.ts +7 -0
  762. package/dist/modules/icons/components/IconSave.js +12 -0
  763. package/dist/modules/icons/components/IconSearch.d.ts +7 -0
  764. package/dist/modules/icons/components/IconSearch.js +12 -0
  765. package/dist/modules/icons/components/IconSee.d.ts +7 -0
  766. package/dist/modules/icons/components/IconSee.js +13 -0
  767. package/dist/modules/icons/components/IconSend.d.ts +7 -0
  768. package/dist/modules/icons/components/IconSend.js +12 -0
  769. package/dist/modules/icons/components/IconSetBackground.d.ts +7 -0
  770. package/dist/modules/icons/components/IconSetBackground.js +17 -0
  771. package/dist/modules/icons/components/IconSettings.d.ts +7 -0
  772. package/dist/modules/icons/components/IconSettings.js +16 -0
  773. package/dist/modules/icons/components/IconShare.d.ts +7 -0
  774. package/dist/modules/icons/components/IconShare.js +12 -0
  775. package/dist/modules/icons/components/IconSmartphone.d.ts +7 -0
  776. package/dist/modules/icons/components/IconSmartphone.js +13 -0
  777. package/dist/modules/icons/components/IconSmiley.d.ts +7 -0
  778. package/dist/modules/icons/components/IconSmiley.js +13 -0
  779. package/dist/modules/icons/components/IconSortAscendingLetters.d.ts +7 -0
  780. package/dist/modules/icons/components/IconSortAscendingLetters.js +13 -0
  781. package/dist/modules/icons/components/IconSortDescending.d.ts +7 -0
  782. package/dist/modules/icons/components/IconSortDescending.js +13 -0
  783. package/dist/modules/icons/components/IconSortDescendingLetters.d.ts +7 -0
  784. package/dist/modules/icons/components/IconSortDescendingLetters.js +13 -0
  785. package/dist/modules/icons/components/IconSortTime.d.ts +7 -0
  786. package/dist/modules/icons/components/IconSortTime.js +14 -0
  787. package/dist/modules/icons/components/IconSpeechToText.d.ts +7 -0
  788. package/dist/modules/icons/components/IconSpeechToText.js +12 -0
  789. package/dist/modules/icons/components/IconSplitCells.d.ts +7 -0
  790. package/dist/modules/icons/components/IconSplitCells.js +13 -0
  791. package/dist/modules/icons/components/IconSquareRoot.d.ts +7 -0
  792. package/dist/modules/icons/components/IconSquareRoot.js +12 -0
  793. package/dist/modules/icons/components/IconSubscript.d.ts +7 -0
  794. package/dist/modules/icons/components/IconSubscript.js +12 -0
  795. package/dist/modules/icons/components/IconSuccessFill.d.ts +7 -0
  796. package/dist/modules/icons/components/IconSuccessFill.js +12 -0
  797. package/dist/modules/icons/components/IconSuccessOutline.d.ts +7 -0
  798. package/dist/modules/icons/components/IconSuccessOutline.js +13 -0
  799. package/dist/modules/icons/components/IconSuperscript.d.ts +7 -0
  800. package/dist/modules/icons/components/IconSuperscript.js +12 -0
  801. package/dist/modules/icons/components/IconTable.d.ts +7 -0
  802. package/dist/modules/icons/components/IconTable.js +12 -0
  803. package/dist/modules/icons/components/IconTextBold.d.ts +7 -0
  804. package/dist/modules/icons/components/IconTextBold.js +12 -0
  805. package/dist/modules/icons/components/IconTextColor.d.ts +7 -0
  806. package/dist/modules/icons/components/IconTextColor.js +16 -0
  807. package/dist/modules/icons/components/IconTextHighlight.d.ts +7 -0
  808. package/dist/modules/icons/components/IconTextHighlight.js +16 -0
  809. package/dist/modules/icons/components/IconTextItalic.d.ts +7 -0
  810. package/dist/modules/icons/components/IconTextItalic.js +12 -0
  811. package/dist/modules/icons/components/IconTextPage.d.ts +7 -0
  812. package/dist/modules/icons/components/IconTextPage.js +12 -0
  813. package/dist/modules/icons/components/IconTextSize.d.ts +7 -0
  814. package/dist/modules/icons/components/IconTextSize.js +12 -0
  815. package/dist/modules/icons/components/IconTextToSpeech.d.ts +7 -0
  816. package/dist/modules/icons/components/IconTextToSpeech.js +12 -0
  817. package/dist/modules/icons/components/IconTextTypo.d.ts +7 -0
  818. package/dist/modules/icons/components/IconTextTypo.js +12 -0
  819. package/dist/modules/icons/components/IconTextUnderline.d.ts +7 -0
  820. package/dist/modules/icons/components/IconTextUnderline.js +13 -0
  821. package/dist/modules/icons/components/IconTextVanilla.d.ts +7 -0
  822. package/dist/modules/icons/components/IconTextVanilla.js +13 -0
  823. package/dist/modules/icons/components/IconTool.d.ts +7 -0
  824. package/dist/modules/icons/components/IconTool.js +12 -0
  825. package/dist/modules/icons/components/IconTrendingUp.d.ts +7 -0
  826. package/dist/modules/icons/components/IconTrendingUp.js +16 -0
  827. package/dist/modules/icons/components/IconUndo.d.ts +7 -0
  828. package/dist/modules/icons/components/IconUndo.js +13 -0
  829. package/dist/modules/icons/components/IconUnlink.d.ts +7 -0
  830. package/dist/modules/icons/components/IconUnlink.js +13 -0
  831. package/dist/modules/icons/components/IconUnlock.d.ts +7 -0
  832. package/dist/modules/icons/components/IconUnlock.js +13 -0
  833. package/dist/modules/icons/components/IconUpload.d.ts +7 -0
  834. package/dist/modules/icons/components/IconUpload.js +18 -0
  835. package/dist/modules/icons/components/IconUser.d.ts +7 -0
  836. package/dist/modules/icons/components/IconUser.js +12 -0
  837. package/dist/modules/icons/components/IconUserSearch.d.ts +7 -0
  838. package/dist/modules/icons/components/IconUserSearch.js +13 -0
  839. package/dist/modules/icons/components/IconUsers.d.ts +7 -0
  840. package/dist/modules/icons/components/IconUsers.js +13 -0
  841. package/dist/modules/icons/components/IconVideo.d.ts +7 -0
  842. package/dist/modules/icons/components/IconVideo.js +12 -0
  843. package/dist/modules/icons/components/IconViewCalendar.d.ts +7 -0
  844. package/dist/modules/icons/components/IconViewCalendar.js +12 -0
  845. package/dist/modules/icons/components/IconViewList.d.ts +7 -0
  846. package/dist/modules/icons/components/IconViewList.js +15 -0
  847. package/dist/modules/icons/components/IconWand.d.ts +7 -0
  848. package/dist/modules/icons/components/IconWand.js +12 -0
  849. package/dist/modules/icons/components/IconWrite.d.ts +7 -0
  850. package/dist/modules/icons/components/IconWrite.js +12 -0
  851. package/dist/modules/icons/components/IconZoomIn.d.ts +7 -0
  852. package/dist/modules/icons/components/IconZoomIn.js +12 -0
  853. package/dist/modules/icons/components/IconZoomOut.d.ts +7 -0
  854. package/dist/modules/icons/components/IconZoomOut.js +12 -0
  855. package/dist/modules/icons/components/apps/IconAccount.d.ts +7 -0
  856. package/dist/modules/icons/components/apps/IconAccount.js +12 -0
  857. package/dist/modules/icons/components/apps/IconActualites.d.ts +7 -0
  858. package/dist/modules/icons/components/apps/IconActualites.js +12 -0
  859. package/dist/modules/icons/components/apps/IconAdmin.d.ts +7 -0
  860. package/dist/modules/icons/components/apps/IconAdmin.js +12 -0
  861. package/dist/modules/icons/components/apps/IconAdminPortal.d.ts +7 -0
  862. package/dist/modules/icons/components/apps/IconAdminPortal.js +12 -0
  863. package/dist/modules/icons/components/apps/IconAdmissionPostBac.d.ts +7 -0
  864. package/dist/modules/icons/components/apps/IconAdmissionPostBac.js +12 -0
  865. package/dist/modules/icons/components/apps/IconAgenda.d.ts +7 -0
  866. package/dist/modules/icons/components/apps/IconAgenda.js +12 -0
  867. package/dist/modules/icons/components/apps/IconArchive.d.ts +7 -0
  868. package/dist/modules/icons/components/apps/IconArchive.js +12 -0
  869. package/dist/modules/icons/components/apps/IconAssistance.d.ts +7 -0
  870. package/dist/modules/icons/components/apps/IconAssistance.js +12 -0
  871. package/dist/modules/icons/components/apps/IconAssr.d.ts +7 -0
  872. package/dist/modules/icons/components/apps/IconAssr.js +12 -0
  873. package/dist/modules/icons/components/apps/IconAward.d.ts +7 -0
  874. package/dist/modules/icons/components/apps/IconAward.js +12 -0
  875. package/dist/modules/icons/components/apps/IconBanquesavoir.d.ts +7 -0
  876. package/dist/modules/icons/components/apps/IconBanquesavoir.js +12 -0
  877. package/dist/modules/icons/components/apps/IconBcdi.d.ts +7 -0
  878. package/dist/modules/icons/components/apps/IconBcdi.js +12 -0
  879. package/dist/modules/icons/components/apps/IconBiblionisep.d.ts +7 -0
  880. package/dist/modules/icons/components/apps/IconBiblionisep.js +12 -0
  881. package/dist/modules/icons/components/apps/IconBlog.d.ts +7 -0
  882. package/dist/modules/icons/components/apps/IconBlog.js +12 -0
  883. package/dist/modules/icons/components/apps/IconBookmarkEmpty.d.ts +7 -0
  884. package/dist/modules/icons/components/apps/IconBookmarkEmpty.js +12 -0
  885. package/dist/modules/icons/components/apps/IconCahierDeTexte.d.ts +7 -0
  886. package/dist/modules/icons/components/apps/IconCahierDeTexte.js +12 -0
  887. package/dist/modules/icons/components/apps/IconCahierTextes.d.ts +7 -0
  888. package/dist/modules/icons/components/apps/IconCahierTextes.js +12 -0
  889. package/dist/modules/icons/components/apps/IconCalendar.d.ts +7 -0
  890. package/dist/modules/icons/components/apps/IconCalendar.js +12 -0
  891. package/dist/modules/icons/components/apps/IconCanalNumerique.d.ts +7 -0
  892. package/dist/modules/icons/components/apps/IconCanalNumerique.js +12 -0
  893. package/dist/modules/icons/components/apps/IconCcn.d.ts +7 -0
  894. package/dist/modules/icons/components/apps/IconCcn.js +12 -0
  895. package/dist/modules/icons/components/apps/IconCerise.d.ts +7 -0
  896. package/dist/modules/icons/components/apps/IconCerise.js +12 -0
  897. package/dist/modules/icons/components/apps/IconCervoprint.d.ts +7 -0
  898. package/dist/modules/icons/components/apps/IconCervoprint.js +12 -0
  899. package/dist/modules/icons/components/apps/IconCharlemagne.d.ts +7 -0
  900. package/dist/modules/icons/components/apps/IconCharlemagne.js +12 -0
  901. package/dist/modules/icons/components/apps/IconCharte.d.ts +7 -0
  902. package/dist/modules/icons/components/apps/IconCharte.js +12 -0
  903. package/dist/modules/icons/components/apps/IconChat.d.ts +7 -0
  904. package/dist/modules/icons/components/apps/IconChat.js +12 -0
  905. package/dist/modules/icons/components/apps/IconCidj.d.ts +7 -0
  906. package/dist/modules/icons/components/apps/IconCidj.js +12 -0
  907. package/dist/modules/icons/components/apps/IconCns.d.ts +7 -0
  908. package/dist/modules/icons/components/apps/IconCns.js +12 -0
  909. package/dist/modules/icons/components/apps/IconCollaborativeWall.d.ts +7 -0
  910. package/dist/modules/icons/components/apps/IconCollaborativeWall.js +12 -0
  911. package/dist/modules/icons/components/apps/IconCommunity.d.ts +7 -0
  912. package/dist/modules/icons/components/apps/IconCommunity.js +12 -0
  913. package/dist/modules/icons/components/apps/IconCompetences.d.ts +7 -0
  914. package/dist/modules/icons/components/apps/IconCompetences.js +12 -0
  915. package/dist/modules/icons/components/apps/IconConnecteurGenerique1.d.ts +7 -0
  916. package/dist/modules/icons/components/apps/IconConnecteurGenerique1.js +12 -0
  917. package/dist/modules/icons/components/apps/IconConnecteurGenerique2.d.ts +7 -0
  918. package/dist/modules/icons/components/apps/IconConnecteurGenerique2.js +12 -0
  919. package/dist/modules/icons/components/apps/IconConversation.d.ts +7 -0
  920. package/dist/modules/icons/components/apps/IconConversation.js +12 -0
  921. package/dist/modules/icons/components/apps/IconDirectory.d.ts +7 -0
  922. package/dist/modules/icons/components/apps/IconDirectory.js +12 -0
  923. package/dist/modules/icons/components/apps/IconEducagri.d.ts +7 -0
  924. package/dist/modules/icons/components/apps/IconEducagri.js +12 -0
  925. package/dist/modules/icons/components/apps/IconEdumedia.d.ts +7 -0
  926. package/dist/modules/icons/components/apps/IconEdumedia.js +12 -0
  927. package/dist/modules/icons/components/apps/IconEdumoov.d.ts +7 -0
  928. package/dist/modules/icons/components/apps/IconEdumoov.js +12 -0
  929. package/dist/modules/icons/components/apps/IconEdutheque.d.ts +7 -0
  930. package/dist/modules/icons/components/apps/IconEdutheque.js +12 -0
  931. package/dist/modules/icons/components/apps/IconElectron.d.ts +7 -0
  932. package/dist/modules/icons/components/apps/IconElectron.js +12 -0
  933. package/dist/modules/icons/components/apps/IconElyceepicardie.d.ts +7 -0
  934. package/dist/modules/icons/components/apps/IconElyceepicardie.js +12 -0
  935. package/dist/modules/icons/components/apps/IconEsidoc.d.ts +7 -0
  936. package/dist/modules/icons/components/apps/IconEsidoc.js +12 -0
  937. package/dist/modules/icons/components/apps/IconEuropress.d.ts +7 -0
  938. package/dist/modules/icons/components/apps/IconEuropress.js +12 -0
  939. package/dist/modules/icons/components/apps/IconExercizer.d.ts +7 -0
  940. package/dist/modules/icons/components/apps/IconExercizer.js +12 -0
  941. package/dist/modules/icons/components/apps/IconForms.d.ts +7 -0
  942. package/dist/modules/icons/components/apps/IconForms.js +16 -0
  943. package/dist/modules/icons/components/apps/IconForum.d.ts +7 -0
  944. package/dist/modules/icons/components/apps/IconForum.js +12 -0
  945. package/dist/modules/icons/components/apps/IconGepi.d.ts +7 -0
  946. package/dist/modules/icons/components/apps/IconGepi.js +12 -0
  947. package/dist/modules/icons/components/apps/IconGlpi.d.ts +7 -0
  948. package/dist/modules/icons/components/apps/IconGlpi.js +12 -0
  949. package/dist/modules/icons/components/apps/IconHiboutheque.d.ts +7 -0
  950. package/dist/modules/icons/components/apps/IconHiboutheque.js +12 -0
  951. package/dist/modules/icons/components/apps/IconItopstore.d.ts +7 -0
  952. package/dist/modules/icons/components/apps/IconItopstore.js +12 -0
  953. package/dist/modules/icons/components/apps/IconKne.d.ts +7 -0
  954. package/dist/modules/icons/components/apps/IconKne.js +12 -0
  955. package/dist/modules/icons/components/apps/IconLeSiteTv.d.ts +7 -0
  956. package/dist/modules/icons/components/apps/IconLeSiteTv.js +12 -0
  957. package/dist/modules/icons/components/apps/IconLemonde.d.ts +7 -0
  958. package/dist/modules/icons/components/apps/IconLemonde.js +12 -0
  959. package/dist/modules/icons/components/apps/IconLesechos.d.ts +7 -0
  960. package/dist/modules/icons/components/apps/IconLesechos.js +12 -0
  961. package/dist/modules/icons/components/apps/IconLibrary.d.ts +7 -0
  962. package/dist/modules/icons/components/apps/IconLibrary.js +12 -0
  963. package/dist/modules/icons/components/apps/IconLsu.d.ts +7 -0
  964. package/dist/modules/icons/components/apps/IconLsu.js +12 -0
  965. package/dist/modules/icons/components/apps/IconMadmagz.d.ts +7 -0
  966. package/dist/modules/icons/components/apps/IconMadmagz.js +12 -0
  967. package/dist/modules/icons/components/apps/IconMatholycee.d.ts +7 -0
  968. package/dist/modules/icons/components/apps/IconMatholycee.js +12 -0
  969. package/dist/modules/icons/components/apps/IconMaxicours.d.ts +7 -0
  970. package/dist/modules/icons/components/apps/IconMaxicours.js +12 -0
  971. package/dist/modules/icons/components/apps/IconMediacentre.d.ts +7 -0
  972. package/dist/modules/icons/components/apps/IconMediacentre.js +12 -0
  973. package/dist/modules/icons/components/apps/IconMindmap.d.ts +7 -0
  974. package/dist/modules/icons/components/apps/IconMindmap.js +12 -0
  975. package/dist/modules/icons/components/apps/IconMonorientationenligne.d.ts +7 -0
  976. package/dist/modules/icons/components/apps/IconMonorientationenligne.js +12 -0
  977. package/dist/modules/icons/components/apps/IconMonstageenligne.d.ts +7 -0
  978. package/dist/modules/icons/components/apps/IconMonstageenligne.js +12 -0
  979. package/dist/modules/icons/components/apps/IconMoodle.d.ts +7 -0
  980. package/dist/modules/icons/components/apps/IconMoodle.js +12 -0
  981. package/dist/modules/icons/components/apps/IconMuseefrancaisphoto.d.ts +7 -0
  982. package/dist/modules/icons/components/apps/IconMuseefrancaisphoto.js +12 -0
  983. package/dist/modules/icons/components/apps/IconMyNetwork.d.ts +7 -0
  984. package/dist/modules/icons/components/apps/IconMyNetwork.js +12 -0
  985. package/dist/modules/icons/components/apps/IconNetvibes.d.ts +7 -0
  986. package/dist/modules/icons/components/apps/IconNetvibes.js +12 -0
  987. package/dist/modules/icons/components/apps/IconNote.d.ts +7 -0
  988. package/dist/modules/icons/components/apps/IconNote.js +12 -0
  989. package/dist/modules/icons/components/apps/IconNotebook.d.ts +7 -0
  990. package/dist/modules/icons/components/apps/IconNotebook.js +12 -0
  991. package/dist/modules/icons/components/apps/IconNotes.d.ts +7 -0
  992. package/dist/modules/icons/components/apps/IconNotes.js +12 -0
  993. package/dist/modules/icons/components/apps/IconOnisep.d.ts +7 -0
  994. package/dist/modules/icons/components/apps/IconOnisep.js +12 -0
  995. package/dist/modules/icons/components/apps/IconOnisep2.d.ts +7 -0
  996. package/dist/modules/icons/components/apps/IconOnisep2.js +12 -0
  997. package/dist/modules/icons/components/apps/IconPad.d.ts +7 -0
  998. package/dist/modules/icons/components/apps/IconPad.js +12 -0
  999. package/dist/modules/icons/components/apps/IconPages.d.ts +7 -0
  1000. package/dist/modules/icons/components/apps/IconPages.js +12 -0
  1001. package/dist/modules/icons/components/apps/IconParametrage.d.ts +7 -0
  1002. package/dist/modules/icons/components/apps/IconParametrage.js +12 -0
  1003. package/dist/modules/icons/components/apps/IconParametrages.d.ts +7 -0
  1004. package/dist/modules/icons/components/apps/IconParametrages.js +12 -0
  1005. package/dist/modules/icons/components/apps/IconParaschool.d.ts +7 -0
  1006. package/dist/modules/icons/components/apps/IconParaschool.js +12 -0
  1007. package/dist/modules/icons/components/apps/IconParcours.d.ts +7 -0
  1008. package/dist/modules/icons/components/apps/IconParcours.js +12 -0
  1009. package/dist/modules/icons/components/apps/IconPearltrees.d.ts +7 -0
  1010. package/dist/modules/icons/components/apps/IconPearltrees.js +12 -0
  1011. package/dist/modules/icons/components/apps/IconPicardieCursus.d.ts +7 -0
  1012. package/dist/modules/icons/components/apps/IconPicardieCursus.js +12 -0
  1013. package/dist/modules/icons/components/apps/IconPlaceholder.d.ts +7 -0
  1014. package/dist/modules/icons/components/apps/IconPlaceholder.js +16 -0
  1015. package/dist/modules/icons/components/apps/IconPoll.d.ts +7 -0
  1016. package/dist/modules/icons/components/apps/IconPoll.js +12 -0
  1017. package/dist/modules/icons/components/apps/IconPresences.d.ts +7 -0
  1018. package/dist/modules/icons/components/apps/IconPresences.js +16 -0
  1019. package/dist/modules/icons/components/apps/IconProeps.d.ts +7 -0
  1020. package/dist/modules/icons/components/apps/IconProeps.js +12 -0
  1021. package/dist/modules/icons/components/apps/IconPronote.d.ts +7 -0
  1022. package/dist/modules/icons/components/apps/IconPronote.js +12 -0
  1023. package/dist/modules/icons/components/apps/IconPublic.d.ts +7 -0
  1024. package/dist/modules/icons/components/apps/IconPublic.js +12 -0
  1025. package/dist/modules/icons/components/apps/IconQwant.d.ts +7 -0
  1026. package/dist/modules/icons/components/apps/IconQwant.js +12 -0
  1027. package/dist/modules/icons/components/apps/IconQwantJunior.d.ts +7 -0
  1028. package/dist/modules/icons/components/apps/IconQwantJunior.js +12 -0
  1029. package/dist/modules/icons/components/apps/IconRack.d.ts +7 -0
  1030. package/dist/modules/icons/components/apps/IconRack.js +12 -0
  1031. package/dist/modules/icons/components/apps/IconRbs.d.ts +7 -0
  1032. package/dist/modules/icons/components/apps/IconRbs.js +12 -0
  1033. package/dist/modules/icons/components/apps/IconResidenceArtiste.d.ts +7 -0
  1034. package/dist/modules/icons/components/apps/IconResidenceArtiste.js +12 -0
  1035. package/dist/modules/icons/components/apps/IconRessourcesdepartementale91.d.ts +7 -0
  1036. package/dist/modules/icons/components/apps/IconRessourcesdepartementale91.js +12 -0
  1037. package/dist/modules/icons/components/apps/IconSacoche.d.ts +7 -0
  1038. package/dist/modules/icons/components/apps/IconSacoche.js +12 -0
  1039. package/dist/modules/icons/components/apps/IconSchoolbook.d.ts +7 -0
  1040. package/dist/modules/icons/components/apps/IconSchoolbook.js +12 -0
  1041. package/dist/modules/icons/components/apps/IconScolinfo.d.ts +7 -0
  1042. package/dist/modules/icons/components/apps/IconScolinfo.js +12 -0
  1043. package/dist/modules/icons/components/apps/IconScrapbook.d.ts +7 -0
  1044. package/dist/modules/icons/components/apps/IconScrapbook.js +12 -0
  1045. package/dist/modules/icons/components/apps/IconSearchengine.d.ts +7 -0
  1046. package/dist/modules/icons/components/apps/IconSearchengine.js +12 -0
  1047. package/dist/modules/icons/components/apps/IconSettingsClass.d.ts +7 -0
  1048. package/dist/modules/icons/components/apps/IconSettingsClass.js +12 -0
  1049. package/dist/modules/icons/components/apps/IconSharebigfiles.d.ts +7 -0
  1050. package/dist/modules/icons/components/apps/IconSharebigfiles.js +12 -0
  1051. package/dist/modules/icons/components/apps/IconStatistics.d.ts +7 -0
  1052. package/dist/modules/icons/components/apps/IconStatistics.js +12 -0
  1053. package/dist/modules/icons/components/apps/IconStats.d.ts +7 -0
  1054. package/dist/modules/icons/components/apps/IconStats.js +12 -0
  1055. package/dist/modules/icons/components/apps/IconSuitcase.d.ts +7 -0
  1056. package/dist/modules/icons/components/apps/IconSuitcase.js +12 -0
  1057. package/dist/modules/icons/components/apps/IconSupport.d.ts +7 -0
  1058. package/dist/modules/icons/components/apps/IconSupport.js +12 -0
  1059. package/dist/modules/icons/components/apps/IconTimeline.d.ts +7 -0
  1060. package/dist/modules/icons/components/apps/IconTimeline.js +12 -0
  1061. package/dist/modules/icons/components/apps/IconTimelinegenerator.d.ts +7 -0
  1062. package/dist/modules/icons/components/apps/IconTimelinegenerator.js +12 -0
  1063. package/dist/modules/icons/components/apps/IconTurboself.d.ts +7 -0
  1064. package/dist/modules/icons/components/apps/IconTurboself.js +12 -0
  1065. package/dist/modules/icons/components/apps/IconUniversalis.d.ts +7 -0
  1066. package/dist/modules/icons/components/apps/IconUniversalis.js +12 -0
  1067. package/dist/modules/icons/components/apps/IconUnstagepourtous.d.ts +7 -0
  1068. package/dist/modules/icons/components/apps/IconUnstagepourtous.js +12 -0
  1069. package/dist/modules/icons/components/apps/IconUserbook.d.ts +7 -0
  1070. package/dist/modules/icons/components/apps/IconUserbook.js +12 -0
  1071. package/dist/modules/icons/components/apps/IconVideo.d.ts +7 -0
  1072. package/dist/modules/icons/components/apps/IconVideo.js +12 -0
  1073. package/dist/modules/icons/components/apps/IconVieScolaire.d.ts +7 -0
  1074. package/dist/modules/icons/components/apps/IconVieScolaire.js +12 -0
  1075. package/dist/modules/icons/components/apps/IconVisioconf.d.ts +7 -0
  1076. package/dist/modules/icons/components/apps/IconVisioconf.js +12 -0
  1077. package/dist/modules/icons/components/apps/IconWebclasseur.d.ts +7 -0
  1078. package/dist/modules/icons/components/apps/IconWebclasseur.js +12 -0
  1079. package/dist/modules/icons/components/apps/IconWebsite.d.ts +7 -0
  1080. package/dist/modules/icons/components/apps/IconWebsite.js +12 -0
  1081. package/dist/modules/icons/components/apps/IconWiki.d.ts +7 -0
  1082. package/dist/modules/icons/components/apps/IconWiki.js +13 -0
  1083. package/dist/modules/icons/components/apps/IconWorkspace.d.ts +7 -0
  1084. package/dist/modules/icons/components/apps/IconWorkspace.js +12 -0
  1085. package/dist/modules/icons/components/apps/index.d.ts +115 -0
  1086. package/dist/modules/icons/components/audience/IconCongrats.d.ts +7 -0
  1087. package/dist/modules/icons/components/audience/IconCongrats.js +22 -0
  1088. package/dist/modules/icons/components/audience/IconCongratsCounter.d.ts +7 -0
  1089. package/dist/modules/icons/components/audience/IconCongratsCounter.js +21 -0
  1090. package/dist/modules/icons/components/audience/IconGreat.d.ts +7 -0
  1091. package/dist/modules/icons/components/audience/IconGreat.js +16 -0
  1092. package/dist/modules/icons/components/audience/IconGreatCounter.d.ts +7 -0
  1093. package/dist/modules/icons/components/audience/IconGreatCounter.js +14 -0
  1094. package/dist/modules/icons/components/audience/IconGuest.d.ts +7 -0
  1095. package/dist/modules/icons/components/audience/IconGuest.js +12 -0
  1096. package/dist/modules/icons/components/audience/IconInteresting.d.ts +7 -0
  1097. package/dist/modules/icons/components/audience/IconInteresting.js +15 -0
  1098. package/dist/modules/icons/components/audience/IconInterestingCounter.d.ts +7 -0
  1099. package/dist/modules/icons/components/audience/IconInterestingCounter.js +17 -0
  1100. package/dist/modules/icons/components/audience/IconParent.d.ts +7 -0
  1101. package/dist/modules/icons/components/audience/IconParent.js +12 -0
  1102. package/dist/modules/icons/components/audience/IconPersonnel.d.ts +7 -0
  1103. package/dist/modules/icons/components/audience/IconPersonnel.js +12 -0
  1104. package/dist/modules/icons/components/audience/IconStudent.d.ts +7 -0
  1105. package/dist/modules/icons/components/audience/IconStudent.js +20 -0
  1106. package/dist/modules/icons/components/audience/IconTeacher.d.ts +7 -0
  1107. package/dist/modules/icons/components/audience/IconTeacher.js +12 -0
  1108. package/dist/modules/icons/components/audience/IconThanks.d.ts +7 -0
  1109. package/dist/modules/icons/components/audience/IconThanks.js +18 -0
  1110. package/dist/modules/icons/components/audience/IconThanksCounter.d.ts +7 -0
  1111. package/dist/modules/icons/components/audience/IconThanksCounter.js +16 -0
  1112. package/dist/modules/icons/components/audience/index.d.ts +13 -0
  1113. package/dist/modules/icons/components/index.d.ts +149 -0
  1114. package/dist/modules/icons/components/nav/IconCommunity.d.ts +7 -0
  1115. package/dist/modules/icons/components/nav/IconCommunity.js +12 -0
  1116. package/dist/modules/icons/components/nav/IconDisconnect.d.ts +7 -0
  1117. package/dist/modules/icons/components/nav/IconDisconnect.js +12 -0
  1118. package/dist/modules/icons/components/nav/IconHome.d.ts +7 -0
  1119. package/dist/modules/icons/components/nav/IconHome.js +12 -0
  1120. package/dist/modules/icons/components/nav/IconMyApps.d.ts +7 -0
  1121. package/dist/modules/icons/components/nav/IconMyApps.js +12 -0
  1122. package/dist/modules/icons/components/nav/IconNeoAssistance.d.ts +7 -0
  1123. package/dist/modules/icons/components/nav/IconNeoAssistance.js +12 -0
  1124. package/dist/modules/icons/components/nav/IconNeoMessaging.d.ts +7 -0
  1125. package/dist/modules/icons/components/nav/IconNeoMessaging.js +12 -0
  1126. package/dist/modules/icons/components/nav/IconNewRelease.d.ts +7 -0
  1127. package/dist/modules/icons/components/nav/IconNewRelease.js +12 -0
  1128. package/dist/modules/icons/components/nav/IconOneAssistance.d.ts +7 -0
  1129. package/dist/modules/icons/components/nav/IconOneAssistance.js +12 -0
  1130. package/dist/modules/icons/components/nav/IconOneMessaging.d.ts +7 -0
  1131. package/dist/modules/icons/components/nav/IconOneMessaging.js +12 -0
  1132. package/dist/modules/icons/components/nav/IconOneProfile.d.ts +7 -0
  1133. package/dist/modules/icons/components/nav/IconOneProfile.js +13 -0
  1134. package/dist/modules/icons/components/nav/IconProfile.d.ts +7 -0
  1135. package/dist/modules/icons/components/nav/IconProfile.js +12 -0
  1136. package/dist/modules/icons/components/nav/IconSearch.d.ts +7 -0
  1137. package/dist/modules/icons/components/nav/IconSearch.js +12 -0
  1138. package/dist/modules/icons/components/nav/IconUserbook.d.ts +7 -0
  1139. package/dist/modules/icons/components/nav/IconUserbook.js +12 -0
  1140. package/dist/modules/icons/components/nav/index.d.ts +13 -0
  1141. package/dist/modules/modals/OnboardingModal/OnboardingModal.d.ts +42 -0
  1142. package/dist/modules/modals/OnboardingModal/OnboardingModal.js +58 -0
  1143. package/dist/modules/modals/OnboardingModal/index.d.ts +1 -0
  1144. package/dist/modules/modals/OnboardingModal/useOnboardingModal.d.ts +6 -0
  1145. package/dist/modules/modals/OnboardingModal/useOnboardingModal.js +30 -0
  1146. package/dist/modules/modals/PublishModal/PublishModal.d.ts +9 -0
  1147. package/dist/modules/modals/PublishModal/PublishModal.js +120 -0
  1148. package/dist/modules/modals/PublishModal/components/ActivitiesDropdown.d.ts +7 -0
  1149. package/dist/modules/modals/PublishModal/components/ActivitiesDropdown.js +29 -0
  1150. package/dist/modules/modals/PublishModal/components/AgeSelect.d.ts +8 -0
  1151. package/dist/modules/modals/PublishModal/components/AgeSelect.js +20 -0
  1152. package/dist/modules/modals/PublishModal/components/LangSelect.d.ts +5 -0
  1153. package/dist/modules/modals/PublishModal/components/LangSelect.js +19 -0
  1154. package/dist/modules/modals/PublishModal/components/PublishModalFooter.d.ts +1 -0
  1155. package/dist/modules/modals/PublishModal/components/PublishModalFooter.js +23 -0
  1156. package/dist/modules/modals/PublishModal/components/SubjectsDropdown.d.ts +7 -0
  1157. package/dist/modules/modals/PublishModal/components/SubjectsDropdown.js +29 -0
  1158. package/dist/modules/modals/PublishModal/components/ToastError.d.ts +5 -0
  1159. package/dist/modules/modals/PublishModal/components/ToastError.js +24 -0
  1160. package/dist/modules/modals/PublishModal/components/ToastSuccess.d.ts +4 -0
  1161. package/dist/modules/modals/PublishModal/components/ToastSuccess.js +18 -0
  1162. package/dist/modules/modals/PublishModal/constants/ageOptions.d.ts +1 -0
  1163. package/dist/modules/modals/PublishModal/constants/ageOptions.js +4 -0
  1164. package/dist/modules/modals/PublishModal/hooks/useActivitiesOptions.d.ts +4 -0
  1165. package/dist/modules/modals/PublishModal/hooks/useActivitiesOptions.js +34 -0
  1166. package/dist/modules/modals/PublishModal/hooks/useLanguageOptions.d.ts +4 -0
  1167. package/dist/modules/modals/PublishModal/hooks/useLanguageOptions.js +43 -0
  1168. package/dist/modules/modals/PublishModal/hooks/usePublishModal.d.ts +38 -0
  1169. package/dist/modules/modals/PublishModal/hooks/usePublishModal.js +106 -0
  1170. package/dist/modules/modals/PublishModal/hooks/useSubjectsOptions.d.ts +4 -0
  1171. package/dist/modules/modals/PublishModal/hooks/useSubjectsOptions.js +118 -0
  1172. package/dist/modules/modals/PublishModal/index.d.ts +1 -0
  1173. package/dist/modules/modals/ResourceModal/ResourceModal.d.ts +30 -0
  1174. package/dist/modules/modals/ResourceModal/ResourceModal.js +155 -0
  1175. package/dist/modules/modals/ResourceModal/apps/BlogPublic.d.ts +13 -0
  1176. package/dist/modules/modals/ResourceModal/apps/BlogPublic.js +62 -0
  1177. package/dist/modules/modals/ResourceModal/hooks/useSlug.d.ts +17 -0
  1178. package/dist/modules/modals/ResourceModal/hooks/useSlug.js +41 -0
  1179. package/dist/modules/modals/ResourceModal/hooks/useThumb.d.ts +11 -0
  1180. package/dist/modules/modals/ResourceModal/hooks/useThumb.js +17 -0
  1181. package/dist/modules/modals/ResourceModal/hooks/useUpdateMutation.d.ts +7 -0
  1182. package/dist/modules/modals/ResourceModal/hooks/useUpdateMutation.js +12 -0
  1183. package/dist/modules/modals/ResourceModal/index.d.ts +3 -0
  1184. package/dist/modules/modals/ShareModal/ShareBookmark.d.ts +8 -0
  1185. package/dist/modules/modals/ShareModal/ShareBookmark.js +22 -0
  1186. package/dist/modules/modals/ShareModal/ShareBookmarkLine.d.ts +9 -0
  1187. package/dist/modules/modals/ShareModal/ShareBookmarkLine.js +49 -0
  1188. package/dist/modules/modals/ShareModal/ShareModal.d.ts +41 -0
  1189. package/dist/modules/modals/ShareModal/ShareModal.js +130 -0
  1190. package/dist/modules/modals/ShareModal/apps/ShareBlog.d.ts +8 -0
  1191. package/dist/modules/modals/ShareModal/apps/ShareBlog.js +43 -0
  1192. package/dist/modules/modals/ShareModal/hooks/useSearch.d.ts +24 -0
  1193. package/dist/modules/modals/ShareModal/hooks/useSearch.js +178 -0
  1194. package/dist/modules/modals/ShareModal/hooks/useShare.d.ts +54 -0
  1195. package/dist/modules/modals/ShareModal/hooks/useShare.js +192 -0
  1196. package/dist/modules/modals/ShareModal/hooks/useShareBookmark.d.ts +23 -0
  1197. package/dist/modules/modals/ShareModal/hooks/useShareBookmark.js +67 -0
  1198. package/dist/modules/modals/ShareModal/hooks/useShareMutation.d.ts +13 -0
  1199. package/dist/modules/modals/ShareModal/hooks/useShareMutation.js +15 -0
  1200. package/dist/modules/modals/ShareModal/index.d.ts +3 -0
  1201. package/dist/modules/modals/ShareModal/utils/hasRight.d.ts +2 -0
  1202. package/dist/modules/modals/ShareModal/utils/hasRight.js +4 -0
  1203. package/dist/modules/modals/ShareModal/utils/showShareRightLine.d.ts +2 -0
  1204. package/dist/modules/modals/ShareModal/utils/showShareRightLine.js +4 -0
  1205. package/dist/modules/modals/index.d.ts +4 -0
  1206. package/dist/modules/multimedia/AudioRecorder/AudioRecorder.d.ts +12 -0
  1207. package/dist/modules/multimedia/AudioRecorder/AudioRecorder.js +49 -0
  1208. package/dist/modules/multimedia/AudioRecorder/AudioRecorderTimer.d.ts +10 -0
  1209. package/dist/modules/multimedia/AudioRecorder/AudioRecorderTimer.js +26 -0
  1210. package/dist/modules/multimedia/AudioRecorder/index.d.ts +1 -0
  1211. package/dist/modules/multimedia/AudioRecorder/useAudioRecorder.d.ts +16 -0
  1212. package/dist/modules/multimedia/AudioRecorder/useAudioRecorder.js +314 -0
  1213. package/dist/modules/multimedia/Embed/Embed.d.ts +5 -0
  1214. package/dist/modules/multimedia/Embed/Embed.js +32 -0
  1215. package/dist/modules/multimedia/Embed/index.d.ts +2 -0
  1216. package/dist/modules/multimedia/FileCard/FileCard._.d.ts +17 -0
  1217. package/dist/modules/multimedia/FileCard/FileCard.d.ts +13 -0
  1218. package/dist/modules/multimedia/FileCard/FileCard.js +94 -0
  1219. package/dist/modules/multimedia/FileCard/FileIcon.d.ts +6 -0
  1220. package/dist/modules/multimedia/FileCard/FileIcon.js +15 -0
  1221. package/dist/modules/multimedia/FileCard/index.d.ts +2 -0
  1222. package/dist/modules/multimedia/ImageEditor/components/ImageEditor.d.ts +27 -0
  1223. package/dist/modules/multimedia/ImageEditor/components/ImageEditor.js +116 -0
  1224. package/dist/modules/multimedia/ImageEditor/components/ImageEditorToolbar.d.ts +7 -0
  1225. package/dist/modules/multimedia/ImageEditor/components/ImageEditorToolbar.js +72 -0
  1226. package/dist/modules/multimedia/ImageEditor/effects/blur.d.ts +19 -0
  1227. package/dist/modules/multimedia/ImageEditor/effects/blur.js +72 -0
  1228. package/dist/modules/multimedia/ImageEditor/effects/crop.d.ts +28 -0
  1229. package/dist/modules/multimedia/ImageEditor/effects/crop.js +155 -0
  1230. package/dist/modules/multimedia/ImageEditor/effects/misc.d.ts +154 -0
  1231. package/dist/modules/multimedia/ImageEditor/effects/misc.js +162 -0
  1232. package/dist/modules/multimedia/ImageEditor/effects/resize.d.ts +25 -0
  1233. package/dist/modules/multimedia/ImageEditor/effects/resize.js +157 -0
  1234. package/dist/modules/multimedia/ImageEditor/effects/rotate.d.ts +8 -0
  1235. package/dist/modules/multimedia/ImageEditor/effects/rotate.js +33 -0
  1236. package/dist/modules/multimedia/ImageEditor/hooks/useHistoryTool.d.ts +32 -0
  1237. package/dist/modules/multimedia/ImageEditor/hooks/useHistoryTool.js +66 -0
  1238. package/dist/modules/multimedia/ImageEditor/hooks/useImageEditor.d.ts +29 -0
  1239. package/dist/modules/multimedia/ImageEditor/hooks/useImageEditor.js +76 -0
  1240. package/dist/modules/multimedia/ImageEditor/hooks/useImageEffects.d.ts +23 -0
  1241. package/dist/modules/multimedia/ImageEditor/hooks/useImageEffects.js +52 -0
  1242. package/dist/modules/multimedia/ImageEditor/index.d.ts +1 -0
  1243. package/dist/modules/multimedia/ImageEditor/utilities/aggregate.d.ts +9 -0
  1244. package/dist/modules/multimedia/ImageEditor/utilities/aggregate.js +13 -0
  1245. package/dist/modules/multimedia/ImageEditor/utilities/debounceAggregate.d.ts +10 -0
  1246. package/dist/modules/multimedia/ImagePicker/ImagePicker.d.ts +46 -0
  1247. package/dist/modules/multimedia/ImagePicker/ImagePicker.js +40 -0
  1248. package/dist/modules/multimedia/ImagePicker/index.d.ts +2 -0
  1249. package/dist/modules/multimedia/Linker/ExternalLinker/ExternalLinker.d.ts +28 -0
  1250. package/dist/modules/multimedia/Linker/ExternalLinker/ExternalLinker.js +45 -0
  1251. package/dist/modules/multimedia/Linker/InternalLinker/InternalLinker.d.ts +37 -0
  1252. package/dist/modules/multimedia/Linker/InternalLinker/InternalLinker.js +129 -0
  1253. package/dist/modules/multimedia/Linker/index.d.ts +4 -0
  1254. package/dist/modules/multimedia/LinkerCard/LinkerCard._.d.ts +8 -0
  1255. package/dist/modules/multimedia/LinkerCard/LinkerCard.d.ts +13 -0
  1256. package/dist/modules/multimedia/LinkerCard/LinkerCard.js +38 -0
  1257. package/dist/modules/multimedia/LinkerCard/index.d.ts +2 -0
  1258. package/dist/modules/multimedia/MediaLibrary/MediaLibrary.d.ts +84 -0
  1259. package/dist/modules/multimedia/MediaLibrary/MediaLibrary.js +217 -0
  1260. package/dist/modules/multimedia/MediaLibrary/MediaLibraryContext.d.ts +60 -0
  1261. package/dist/modules/multimedia/MediaLibrary/MediaLibraryContext.js +12 -0
  1262. package/dist/modules/multimedia/MediaLibrary/index.d.ts +3 -0
  1263. package/dist/modules/multimedia/MediaLibrary/innertabs/Audio.d.ts +1 -0
  1264. package/dist/modules/multimedia/MediaLibrary/innertabs/Audio.js +19 -0
  1265. package/dist/modules/multimedia/MediaLibrary/innertabs/ExternalLink.d.ts +6 -0
  1266. package/dist/modules/multimedia/MediaLibrary/innertabs/ExternalLink.js +17 -0
  1267. package/dist/modules/multimedia/MediaLibrary/innertabs/Iframe.d.ts +1 -0
  1268. package/dist/modules/multimedia/MediaLibrary/innertabs/Iframe.js +14 -0
  1269. package/dist/modules/multimedia/MediaLibrary/innertabs/InternalLink.d.ts +11 -0
  1270. package/dist/modules/multimedia/MediaLibrary/innertabs/InternalLink.js +35 -0
  1271. package/dist/modules/multimedia/MediaLibrary/innertabs/Upload.d.ts +1 -0
  1272. package/dist/modules/multimedia/MediaLibrary/innertabs/Upload.js +34 -0
  1273. package/dist/modules/multimedia/MediaLibrary/innertabs/Video.d.ts +1 -0
  1274. package/dist/modules/multimedia/MediaLibrary/innertabs/Video.js +22 -0
  1275. package/dist/modules/multimedia/MediaLibrary/innertabs/VideoEmbedder.d.ts +1 -0
  1276. package/dist/modules/multimedia/MediaLibrary/innertabs/VideoEmbedder.js +15 -0
  1277. package/dist/modules/multimedia/MediaLibrary/innertabs/Workspace.d.ts +1 -0
  1278. package/dist/modules/multimedia/MediaLibrary/innertabs/Workspace.js +31 -0
  1279. package/dist/modules/multimedia/MediaLibrary/innertabs/index.d.ts +10 -0
  1280. package/dist/modules/multimedia/MediaLibrary/innertabs/index.js +21 -0
  1281. package/dist/modules/multimedia/UploadCard/UploadCard._.d.ts +9 -0
  1282. package/dist/modules/multimedia/UploadCard/UploadCard.d.ts +43 -0
  1283. package/dist/modules/multimedia/UploadCard/UploadCard.js +75 -0
  1284. package/dist/modules/multimedia/UploadCard/index.d.ts +2 -0
  1285. package/dist/modules/multimedia/UploadFiles/UploadFiles.d.ts +9 -0
  1286. package/dist/modules/multimedia/UploadFiles/UploadFiles.js +56 -0
  1287. package/dist/modules/multimedia/UploadFiles/index.d.ts +2 -0
  1288. package/dist/modules/multimedia/VideoEmbed/VideoEmbed.d.ts +6 -0
  1289. package/dist/modules/multimedia/VideoEmbed/VideoEmbed.js +76 -0
  1290. package/dist/modules/multimedia/VideoEmbed/index.d.ts +1 -0
  1291. package/dist/modules/multimedia/VideoRecorder/VideoRecorder.d.ts +14 -0
  1292. package/dist/modules/multimedia/VideoRecorder/VideoRecorder.js +265 -0
  1293. package/dist/modules/multimedia/VideoRecorder/index.d.ts +1 -0
  1294. package/dist/modules/multimedia/Workspace/Workspace.d.ts +33 -0
  1295. package/dist/modules/multimedia/Workspace/Workspace.js +172 -0
  1296. package/dist/modules/multimedia/Workspace/index.d.ts +2 -0
  1297. package/dist/modules/multimedia/index.d.ts +7 -0
  1298. package/dist/modules/widgets/BookmarkedApps/BookmarkedApps.d.ts +8 -0
  1299. package/dist/modules/widgets/BookmarkedApps/index.d.ts +2 -0
  1300. package/dist/modules/widgets/Widget/Widget.d.ts +17 -0
  1301. package/dist/modules/widgets/Widget/index.d.ts +2 -0
  1302. package/dist/modules/widgets/index.d.ts +2 -0
  1303. package/dist/multimedia.js +18 -0
  1304. package/dist/providers/EdificeClientProvider/EdificeClientProvider.context.d.ts +26 -0
  1305. package/dist/providers/EdificeClientProvider/EdificeClientProvider.context.js +5 -0
  1306. package/dist/providers/EdificeClientProvider/EdificeClientProvider.d.ts +9 -0
  1307. package/dist/providers/EdificeClientProvider/EdificeClientProvider.hook.d.ts +1 -0
  1308. package/dist/providers/EdificeClientProvider/EdificeClientProvider.hook.js +11 -0
  1309. package/dist/providers/EdificeClientProvider/EdificeClientProvider.js +54 -0
  1310. package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.context.d.ts +10 -0
  1311. package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.context.js +5 -0
  1312. package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.d.ts +2 -0
  1313. package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.hook.d.ts +1 -0
  1314. package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.hook.js +11 -0
  1315. package/dist/providers/EdificeThemeProvider/EdificeThemeProvider.js +46 -0
  1316. package/dist/providers/MockedDataProvider/MockedDataProvider.d.ts +28 -0
  1317. package/dist/providers/MockedDataProvider/MockedDataProvider.js +9 -0
  1318. package/dist/providers/MockedDataProvider/index.d.ts +1 -0
  1319. package/dist/providers/index.d.ts +6 -0
  1320. package/dist/types/index.d.ts +3 -0
  1321. package/dist/types/size.d.ts +1 -0
  1322. package/dist/types/status.d.ts +1 -0
  1323. package/dist/types/treedata.d.ts +30 -0
  1324. package/dist/utilities/check-user-rights/check-user-rights.d.ts +11 -0
  1325. package/dist/utilities/check-user-rights/check-user-rights.js +46 -0
  1326. package/dist/utilities/check-user-rights/index.d.ts +1 -0
  1327. package/dist/utilities/emptyscreen-mapping/emptyscreen-mapping.d.ts +6 -0
  1328. package/dist/utilities/emptyscreen-mapping/emptyscreen-mapping.js +49 -0
  1329. package/dist/utilities/emptyscreen-mapping/index.d.ts +1 -0
  1330. package/dist/utilities/index.d.ts +3 -0
  1331. package/dist/utilities/refs/index.d.ts +1 -0
  1332. package/dist/utilities/refs/ref.d.ts +5 -0
  1333. package/dist/utilities/refs/ref.js +14 -0
  1334. package/package.json +177 -0
@@ -0,0 +1,157 @@
1
+ import * as PIXI from "pixi.js";
2
+ const POINT_RADIUS = 20, CONTROL_NAME = "CONTROL_NAME";
3
+ function getCornerName(index) {
4
+ return "RESIZE_CORNER_" + index;
5
+ }
6
+ function computeCornerPosition(position, sprite) {
7
+ const left = sprite.x, top = sprite.y;
8
+ switch (position) {
9
+ case "TOP_LEFT":
10
+ return {
11
+ x: left,
12
+ y: top,
13
+ start: 0,
14
+ end: Math.PI / 2
15
+ };
16
+ case "TOP_RIGHT":
17
+ return {
18
+ x: left + sprite.width,
19
+ y: top,
20
+ start: Math.PI / 2,
21
+ end: Math.PI
22
+ };
23
+ case "BOTTOM_LEFT":
24
+ return {
25
+ x: left,
26
+ y: top + sprite.height,
27
+ start: 3 * Math.PI / 2,
28
+ end: 2 * Math.PI
29
+ };
30
+ case "BOTTOM_RIGHT":
31
+ return {
32
+ x: left + sprite.width,
33
+ y: top + sprite.height,
34
+ start: Math.PI,
35
+ end: 3 * Math.PI / 2
36
+ };
37
+ }
38
+ }
39
+ function resizeContainer(application, {
40
+ container,
41
+ cornerType,
42
+ position,
43
+ spriteName
44
+ }) {
45
+ const sprite = application.stage.getChildByName(spriteName, !0);
46
+ if (sprite == null) return;
47
+ const isRotated = sprite.rotation % Math.PI !== 0, spriteWidth = isRotated ? sprite.height : sprite.width, spriteHeight = isRotated ? sprite.width : sprite.height;
48
+ switch (cornerType) {
49
+ case "TOP_LEFT": {
50
+ container.position = new PIXI.Point(position.x, position.y), container.width = spriteWidth - 2 * position.x, container.height = spriteHeight - 2 * position.y;
51
+ break;
52
+ }
53
+ case "TOP_RIGHT": {
54
+ const newX = spriteWidth - position.x;
55
+ container.position = new PIXI.Point(newX, position.y), container.width = spriteWidth - 2 * newX, container.height = spriteHeight - 2 * position.y;
56
+ break;
57
+ }
58
+ case "BOTTOM_LEFT": {
59
+ const newY = spriteHeight - position.y;
60
+ container.position = new PIXI.Point(position.x, newY), container.width = spriteWidth - 2 * position.x, container.height = spriteHeight - 2 * newY;
61
+ break;
62
+ }
63
+ case "BOTTOM_RIGHT": {
64
+ const newY = spriteHeight - position.y, newX = spriteWidth - position.x;
65
+ container.position = new PIXI.Point(newX, newY), container.width = spriteWidth - 2 * newX, container.height = spriteHeight - 2 * newY;
66
+ break;
67
+ }
68
+ }
69
+ }
70
+ function removeCorner(application, cornerType) {
71
+ const previous = application.stage.getChildByName(getCornerName(cornerType), !0);
72
+ previous == null || previous.removeFromParent();
73
+ }
74
+ function drawCorner(application, cornerType, {
75
+ spriteName
76
+ }) {
77
+ removeCorner(application, cornerType);
78
+ const sprite = application.stage.getChildByName(spriteName, !0), container = application.stage.getChildByName(CONTROL_NAME, !0);
79
+ if (sprite == null || container === null || container === void 0) return;
80
+ const position = computeCornerPosition(cornerType, container), corner = new PIXI.Graphics();
81
+ corner.beginFill(4960213, 1), corner.arc(0, 0, POINT_RADIUS, position.start, position.end), corner.lineTo(0, 0), corner.endFill(), corner.position = new PIXI.Point(position.x, position.y), corner.name = getCornerName(cornerType), corner.interactive = !0;
82
+ let enable = !1;
83
+ application.stage.on("pointermove", (event) => {
84
+ if (enable === !1) return;
85
+ const localPosition = application.stage.toLocal(event.global);
86
+ resizeContainer(application, {
87
+ cornerType,
88
+ position: localPosition,
89
+ container,
90
+ spriteName
91
+ });
92
+ });
93
+ const handlePointerUp = () => {
94
+ enable = !1;
95
+ };
96
+ globalThis.addEventListener("pointerup", handlePointerUp), corner.once("destroyed", () => {
97
+ corner.off("pointerdown"), globalThis.removeEventListener("pointerup", handlePointerUp);
98
+ });
99
+ const handlePointerDown = () => {
100
+ enable = !0;
101
+ };
102
+ corner.on("pointerdown", handlePointerDown), container.addChild(corner);
103
+ }
104
+ function drawContainer(application, spriteName) {
105
+ removeContainer(application);
106
+ const sprite = application.stage.getChildByName(spriteName, !0);
107
+ if (sprite == null) return;
108
+ const stageTexture = application.renderer.generateTexture(application.stage), clonedStage = new PIXI.Sprite(stageTexture);
109
+ application.stage.children.forEach((child) => {
110
+ child.alpha = 0;
111
+ });
112
+ const container = new PIXI.Graphics();
113
+ container.drawRect(0, 0, sprite.width, sprite.height), container.name = CONTROL_NAME, container.interactive = !0, container.interactiveChildren = !0, application.stage.interactive = !0, application.stage.interactiveChildren = !0, application.stage.addChild(container), container.addChild(clonedStage);
114
+ }
115
+ function removeContainer(application) {
116
+ const container = application.stage.getChildByName(CONTROL_NAME, !0);
117
+ container == null || container.removeFromParent(), application.stage.children.forEach((child) => {
118
+ child.alpha = 1;
119
+ });
120
+ }
121
+ function drawControl(application, spriteName) {
122
+ drawContainer(application, spriteName), drawCorner(application, "BOTTOM_LEFT", {
123
+ spriteName
124
+ }), drawCorner(application, "BOTTOM_RIGHT", {
125
+ spriteName
126
+ }), drawCorner(application, "TOP_LEFT", {
127
+ spriteName
128
+ }), drawCorner(application, "TOP_RIGHT", {
129
+ spriteName
130
+ });
131
+ }
132
+ function removeControl(application) {
133
+ removeContainer(application), removeCorner(application, "BOTTOM_LEFT"), removeCorner(application, "BOTTOM_RIGHT"), removeCorner(application, "TOP_LEFT"), removeCorner(application, "TOP_RIGHT"), application.stage.off("pointermove");
134
+ }
135
+ function start(application, spriteName) {
136
+ drawControl(application, spriteName);
137
+ }
138
+ function stop(application) {
139
+ removeControl(application), application.stage.off("pointermove"), application.render();
140
+ }
141
+ function save(application) {
142
+ var _a;
143
+ const container = (_a = application == null ? void 0 : application.stage) == null ? void 0 : _a.getChildByName(CONTROL_NAME, !0), size = container ? {
144
+ height: container.height,
145
+ width: container.width
146
+ } : void 0;
147
+ if (removeControl(application), size) {
148
+ const stageTexture = application.renderer.generateTexture(application.stage).clone(), clonedStage = new PIXI.Sprite(stageTexture);
149
+ return clonedStage.width = size.width, clonedStage.height = size.height, clonedStage;
150
+ } else
151
+ return;
152
+ }
153
+ export {
154
+ save,
155
+ start,
156
+ stop
157
+ };
@@ -0,0 +1,8 @@
1
+ import * as PIXI from 'pixi.js';
2
+ /**
3
+ * This function rotate the sprite by adding PI/2
4
+ *
5
+ * @param application The PIXI.Application context
6
+ * @param spriteName The name of the sprite representing the image
7
+ */
8
+ export declare function rotate(application: PIXI.Application, spriteName: string): Promise<void>;
@@ -0,0 +1,33 @@
1
+ import { toBlob, updateImageFromBlob, createImageSettings, resizeStage } from "./misc.js";
2
+ async function rotate(application, spriteName) {
3
+ const sprite = application == null ? void 0 : application.stage.getChildByName(spriteName, !0);
4
+ if (application && sprite) {
5
+ if (!application) return;
6
+ const blobBefore = await toBlob(application), mergedSprite = await updateImageFromBlob(application, {
7
+ imgDatasource: blobBefore,
8
+ spriteName,
9
+ settings: createImageSettings({
10
+ application,
11
+ sprite
12
+ })
13
+ });
14
+ if (!mergedSprite)
15
+ return;
16
+ let backupOldMaxHeight, backupOldVisibility;
17
+ const canvas = application.view;
18
+ canvas.style && (backupOldMaxHeight = canvas.style.maxHeight ?? "", backupOldVisibility = canvas.style.visibility ?? "", canvas.style.maxHeight = `${canvas.clientHeight}px`, canvas.style.visibility = "hidden"), mergedSprite.rotation += Math.PI / 2, resizeStage({
19
+ application,
20
+ sprite: mergedSprite,
21
+ newHeight: mergedSprite.width,
22
+ newWidth: mergedSprite.height
23
+ }), application.render();
24
+ const blobAfter = await toBlob(application);
25
+ backupOldMaxHeight !== void 0 && (canvas.style.maxHeight = backupOldMaxHeight), backupOldVisibility !== void 0 && (canvas.style.visibility = backupOldVisibility), await updateImageFromBlob(application, {
26
+ imgDatasource: blobAfter,
27
+ spriteName
28
+ });
29
+ }
30
+ }
31
+ export {
32
+ rotate
33
+ };
@@ -0,0 +1,32 @@
1
+ import { ImageSettings } from '../effects/misc';
2
+ import * as PIXI from 'pixi.js';
3
+ /**
4
+ * Defined the structure of the backup in history
5
+ */
6
+ export interface HistoryState extends ImageSettings {
7
+ backup: Promise<Blob>;
8
+ }
9
+ export interface UseHistoryToolsProps {
10
+ maxSize?: number;
11
+ application?: PIXI.Application;
12
+ spriteName: string;
13
+ onRestore: (img: Blob, state: HistoryState) => void;
14
+ }
15
+ /**
16
+ * This hook expose all the functions needed for historizing actions:
17
+ * - historize: Create a backup
18
+ * - restore: Restore a backup
19
+ * - historyCount: How much states stored in history
20
+ *
21
+ * @param param.maxSize the maximum size of the history
22
+ * @param param.application the PIXI.Application context
23
+ * @param param.spriteName the sprite name of the edited image
24
+ * @param param.onRestore a callback called when a backup is restored
25
+ * @returns all functions needed for managing history
26
+ */
27
+ declare const useHistoryTool: ({ maxSize, application, spriteName, onRestore, }: UseHistoryToolsProps) => {
28
+ historyCount: number;
29
+ restore: () => Promise<void>;
30
+ historize: <T extends (...args: any[]) => any>(callback: T) => Promise<any>;
31
+ };
32
+ export default useHistoryTool;
@@ -0,0 +1,66 @@
1
+ import { useState, useEffect } from "react";
2
+ import { toBlob } from "../effects/misc.js";
3
+ const DEFAULT_MAX_HISTORY = 20, useHistoryTool = ({
4
+ maxSize = DEFAULT_MAX_HISTORY,
5
+ application,
6
+ spriteName,
7
+ onRestore
8
+ }) => {
9
+ const [history, setHistory] = useState([]);
10
+ useEffect(() => {
11
+ setHistory([]);
12
+ }, [application]);
13
+ const restore = async () => {
14
+ const imgData = history.pop();
15
+ imgData && (onRestore(await imgData.backup, imgData), setHistory(history.filter((current) => current !== imgData)));
16
+ }, listSize = (arr) => (arr.length > maxSize && arr.splice(0, arr.length - maxSize), arr), historize = async (callback) => {
17
+ {
18
+ if (!application)
19
+ return;
20
+ const sprite = application.stage.getChildByName(spriteName, !0);
21
+ if (sprite == null)
22
+ return;
23
+ const promise = toBlob(application), state = {
24
+ backup: promise,
25
+ sprite: {
26
+ rotation: sprite.rotation,
27
+ size: {
28
+ width: sprite.width,
29
+ height: sprite.height
30
+ },
31
+ position: {
32
+ x: sprite.position.x,
33
+ y: sprite.position.y
34
+ },
35
+ scale: {
36
+ x: sprite.scale.x,
37
+ y: sprite.scale.y
38
+ },
39
+ anchor: {
40
+ x: sprite.anchor.x,
41
+ y: sprite.anchor.y
42
+ }
43
+ },
44
+ stage: {
45
+ size: {
46
+ width: application.stage.width,
47
+ height: application.stage.height
48
+ },
49
+ scale: {
50
+ x: application.stage.scale.x,
51
+ y: application.stage.scale.y
52
+ }
53
+ }
54
+ };
55
+ return setHistory([...listSize(history), state]), await promise, callback.call(callback);
56
+ }
57
+ };
58
+ return {
59
+ historyCount: history.length,
60
+ restore,
61
+ historize
62
+ };
63
+ };
64
+ export {
65
+ useHistoryTool as default
66
+ };
@@ -0,0 +1,29 @@
1
+ import * as PIXI from 'pixi.js';
2
+ /**
3
+ * This hook expose all the functions available for the pixi editor:
4
+ * - all the effects (crop, resize, rotate, blur)
5
+ * - historize every action
6
+ * - backup functions
7
+ *
8
+ * @param args.spriteName The spriteName of the original image
9
+ * @param args.imageSrc The URL of the image to edit
10
+ * @returns all the action available for the image editor
11
+ */
12
+ export default function useImageEditor({ imageSrc, spriteName, }: {
13
+ imageSrc: string;
14
+ spriteName?: string;
15
+ }): {
16
+ historyCount: number;
17
+ setApplication: import('react').Dispatch<import('react').SetStateAction<PIXI.Application<PIXI.ICanvas> | undefined>>;
18
+ restore: () => Promise<void>;
19
+ stopCrop: (save: boolean) => void;
20
+ stopBlur: () => void;
21
+ stopResize: (save: boolean) => void;
22
+ startResize: () => Promise<void>;
23
+ startCrop: () => Promise<void>;
24
+ startBlur: () => Promise<void>;
25
+ rotate: () => Promise<void>;
26
+ toBlob: () => Promise<Blob | undefined>;
27
+ toDataURL: () => string | undefined;
28
+ loading: boolean;
29
+ };
@@ -0,0 +1,76 @@
1
+ import { useState, useEffect } from "react";
2
+ import "@pixi/mixin-get-child-by-name";
3
+ import useHistoryTool from "./useHistoryTool.js";
4
+ import useImageEffects from "./useImageEffects.js";
5
+ import { updateImage, DEFAULT_SPRITE_NAME, saveAsBlob, saveAsDataURL, updateImageFromBlob } from "../effects/misc.js";
6
+ function useImageEditor({
7
+ imageSrc,
8
+ spriteName = DEFAULT_SPRITE_NAME
9
+ }) {
10
+ const [application, setApplication] = useState(void 0), [loading, setLoading] = useState(!0), {
11
+ rotate,
12
+ startBlur,
13
+ startCrop,
14
+ startResize,
15
+ stopBlur,
16
+ stopCrop,
17
+ stopResize
18
+ } = useImageEffects({
19
+ spriteName,
20
+ application,
21
+ onSave(sprite) {
22
+ application && updateImage(application, {
23
+ imgDatasource: sprite,
24
+ spriteName
25
+ });
26
+ }
27
+ }), toBlob = () => application ? saveAsBlob(application) : Promise.resolve(void 0), toDataURL = () => {
28
+ if (application)
29
+ return saveAsDataURL(application);
30
+ }, {
31
+ restore,
32
+ historize,
33
+ historyCount
34
+ } = useHistoryTool({
35
+ application,
36
+ spriteName,
37
+ onRestore(imgDatasource, state) {
38
+ application && updateImageFromBlob(application, {
39
+ imgDatasource,
40
+ spriteName,
41
+ settings: state
42
+ });
43
+ }
44
+ });
45
+ return useEffect(() => {
46
+ application && (setLoading(!0), updateImage(application, {
47
+ spriteName,
48
+ imgDatasource: imageSrc
49
+ }).finally(() => setLoading(!1)));
50
+ }, [application, imageSrc, spriteName]), {
51
+ historyCount,
52
+ setApplication,
53
+ restore,
54
+ stopCrop,
55
+ stopBlur,
56
+ stopResize,
57
+ startResize: async () => {
58
+ setLoading(!0), await historize(startResize), setLoading(!1);
59
+ },
60
+ startCrop: async () => {
61
+ setLoading(!0), await historize(startCrop), setLoading(!1);
62
+ },
63
+ startBlur: async () => {
64
+ setLoading(!0), await historize(startBlur), setLoading(!1);
65
+ },
66
+ rotate: async () => {
67
+ setLoading(!0), await historize(rotate), setLoading(!1);
68
+ },
69
+ toBlob,
70
+ toDataURL,
71
+ loading
72
+ };
73
+ }
74
+ export {
75
+ useImageEditor as default
76
+ };
@@ -0,0 +1,23 @@
1
+ import * as PIXI from 'pixi.js';
2
+ export interface UseImageEffectsProps {
3
+ spriteName: string;
4
+ application?: PIXI.Application;
5
+ onSave(sprite: PIXI.Sprite): void;
6
+ }
7
+ /**
8
+ * This hook expose all effects of the pixi editor
9
+ *
10
+ * @param args.spriteName The spriteName of the original image
11
+ * @param args.application The PIXI.Application context
12
+ * @param args.onSave A callback called when the sprite changes
13
+ * @returns all the action available for the image editor
14
+ */
15
+ export default function useImageEffects({ application, spriteName, onSave, }: UseImageEffectsProps): {
16
+ rotate: () => Promise<void>;
17
+ startCrop: () => void;
18
+ stopCrop: (save: boolean) => void;
19
+ startBlur: () => void;
20
+ stopBlur: () => void;
21
+ startResize: () => void;
22
+ stopResize: (save: boolean) => void;
23
+ };
@@ -0,0 +1,52 @@
1
+ import { start as start$1, stop as stop$1 } from "../effects/blur.js";
2
+ import { start, save, stop } from "../effects/crop.js";
3
+ import { save as save$1, stop as stop$2, start as start$2 } from "../effects/resize.js";
4
+ import { rotate } from "../effects/rotate.js";
5
+ function useImageEffects({
6
+ application,
7
+ spriteName,
8
+ onSave
9
+ }) {
10
+ return {
11
+ rotate: async () => {
12
+ application && await rotate(application, spriteName);
13
+ },
14
+ startCrop: () => {
15
+ application && start(application, {
16
+ spriteName
17
+ });
18
+ },
19
+ stopCrop: (save$12) => {
20
+ if (application) {
21
+ if (save$12) {
22
+ const result = save(application);
23
+ result && onSave(result);
24
+ }
25
+ stop(application);
26
+ }
27
+ },
28
+ startBlur: () => {
29
+ application && start$1(application, {
30
+ spriteName
31
+ });
32
+ },
33
+ stopBlur: () => {
34
+ application && stop$1(application);
35
+ },
36
+ startResize: () => {
37
+ application && start$2(application, spriteName);
38
+ },
39
+ stopResize: (save2) => {
40
+ if (application) {
41
+ if (save2) {
42
+ const result = save$1(application);
43
+ result && onSave(result);
44
+ }
45
+ stop$2(application);
46
+ }
47
+ }
48
+ };
49
+ }
50
+ export {
51
+ useImageEffects as default
52
+ };
@@ -0,0 +1 @@
1
+ export { default as ImageEditor } from './components/ImageEditor';
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This function aggregate events and call the callback with aggregated events every {delay}
3
+ *
4
+ * @param delay delay between each call
5
+ * @param map a function to transform event from {INPUT} to {OUTPUT}
6
+ * @param callback a callback called with aggregated events every x ms
7
+ * @returns a function that take as argument (INPUT)=>void
8
+ */
9
+ export declare function aggregate<INPUT, OUTPUT>(delay: number, map: (input: INPUT) => OUTPUT, callback: (aggregated: OUTPUT[]) => void): (arg: INPUT) => void;
@@ -0,0 +1,13 @@
1
+ function aggregate(delay, map, callback) {
2
+ let timerId;
3
+ const pending = [];
4
+ return function(arg) {
5
+ pending.push(map(arg)), !timerId && (timerId = setTimeout(() => {
6
+ const copy = [...pending];
7
+ pending.splice(0, pending.length), callback(copy), timerId = void 0;
8
+ }, delay));
9
+ };
10
+ }
11
+ export {
12
+ aggregate
13
+ };
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This function aggregate events and call the callback with aggregated events every {delay}
3
+ * But this function apply a debounce, thats means that the timer is reseted every time the function is called
4
+ *
5
+ * @param delay delay between each call
6
+ * @param map a function to transform event from {INPUT} to {OUTPUT}
7
+ * @param callback a callback called with aggregated events every x ms
8
+ * @returns a function that take as argument (INPUT)=>void
9
+ */
10
+ export declare function debounceAggregate<INPUT, OUTPUT>(delay: number, map: (input: INPUT) => OUTPUT, callback: (aggregated: OUTPUT[]) => void): (arg: INPUT) => void;
@@ -0,0 +1,46 @@
1
+ import { ComponentPropsWithRef } from 'react';
2
+ import { IWebApp } from '@edifice.io/client';
3
+ export interface ImagePickerProps extends ComponentPropsWithRef<'input'> {
4
+ /**
5
+ * Accessible description of the add button
6
+ */
7
+ addButtonLabel: string;
8
+ /**
9
+ * Accessible description of the delete button
10
+ */
11
+ deleteButtonLabel: string;
12
+ /**
13
+ * Provide a default image as placeholder
14
+ */
15
+ src?: string;
16
+ /**
17
+ * Pathe element select in WorkSpace
18
+ */
19
+ libraryMedia: string;
20
+ /**
21
+ * Element select in WorkSpace
22
+ */
23
+ mediaLibraryRef: any;
24
+ /**
25
+ * To show the icon of an application
26
+ */
27
+ app?: IWebApp | undefined;
28
+ appCode?: string;
29
+ /**
30
+ * Optional class for styling purpose
31
+ */
32
+ className?: string;
33
+ /**
34
+ * Callback when uploading image
35
+ */
36
+ onUploadImage: (file: File | string) => void;
37
+ /**
38
+ * Callback when deleting image
39
+ */
40
+ onDeleteImage: () => void;
41
+ }
42
+ declare const ImagePicker: {
43
+ ({ addButtonLabel, deleteButtonLabel, src, className, mediaLibraryRef, libraryMedia, app, onUploadImage, onDeleteImage, }: ImagePickerProps): import("react/jsx-runtime").JSX.Element;
44
+ displayName: string;
45
+ };
46
+ export default ImagePicker;
@@ -0,0 +1,40 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ import { useState, useEffect } from "react";
3
+ import clsx from "clsx";
4
+ import SvgIconDelete from "../../icons/components/IconDelete.js";
5
+ import SvgIconEdit from "../../icons/components/IconEdit.js";
6
+ import IconButton from "../../../components/Button/IconButton.js";
7
+ import Avatar from "../../../components/Avatar/Avatar.js";
8
+ import AppIcon from "../../../components/AppIcon/AppIcon.js";
9
+ const ImagePicker = ({
10
+ addButtonLabel = "Add image",
11
+ deleteButtonLabel = "Delete image",
12
+ src,
13
+ className,
14
+ mediaLibraryRef,
15
+ libraryMedia,
16
+ app,
17
+ onUploadImage,
18
+ onDeleteImage
19
+ }) => {
20
+ const [preview, setPreview] = useState(src || "");
21
+ useEffect(() => {
22
+ libraryMedia && (setPreview(libraryMedia), onUploadImage(libraryMedia));
23
+ }, [libraryMedia]);
24
+ const handleClick = () => {
25
+ var _a;
26
+ (_a = mediaLibraryRef.current) == null || _a.show("image");
27
+ }, handleClean = () => {
28
+ setPreview(""), onDeleteImage();
29
+ }, classes = clsx("image-input", className);
30
+ return /* @__PURE__ */ jsxs("div", { id: "image-input", className: classes, children: [
31
+ /* @__PURE__ */ jsxs("div", { className: "image-input-actions gap-8", children: [
32
+ /* @__PURE__ */ jsx(IconButton, { "aria-label": addButtonLabel, color: "tertiary", icon: /* @__PURE__ */ jsx(SvgIconEdit, {}), onClick: handleClick, type: "button", variant: "ghost" }),
33
+ /* @__PURE__ */ jsx(IconButton, { "aria-label": deleteButtonLabel, color: "danger", disabled: !preview, icon: /* @__PURE__ */ jsx(SvgIconDelete, {}), onClick: handleClean, type: "button", variant: "ghost" })
34
+ ] }),
35
+ preview ? /* @__PURE__ */ jsx(Avatar, { alt: "", src: preview, size: "xl" }) : /* @__PURE__ */ jsx(AppIcon, { app, iconFit: "ratio", size: "160", variant: "rounded" })
36
+ ] });
37
+ };
38
+ export {
39
+ ImagePicker as default
40
+ };
@@ -0,0 +1,2 @@
1
+ export * from './ImagePicker';
2
+ export { default as ImagePickerWorkspace } from './ImagePicker';
@@ -0,0 +1,28 @@
1
+ /**
2
+ * Properties for the ExternalLink.
3
+ */
4
+ export interface IExternalLink {
5
+ /** Link Url */
6
+ url: string;
7
+ /** Link text for the llink display */
8
+ text?: string;
9
+ /** Link target (default: _blank) */
10
+ target?: '_blank';
11
+ }
12
+ /**
13
+ * Properties for the ExternalLinker react component.
14
+ */
15
+ export type ExternalLinkerProps = {
16
+ /** Default link to update. */
17
+ link?: Partial<IExternalLink>;
18
+ /**
19
+ * Set true if the user select multiple nodes. (note simple text selection)
20
+ */
21
+ multiNodeSelected?: boolean;
22
+ /** Target */
23
+ target?: '_blank';
24
+ /** Notify when the user change any link information */
25
+ onChange?: (link?: IExternalLink) => void;
26
+ };
27
+ declare const ExternalLinker: ({ link, onChange, multiNodeSelected, }: ExternalLinkerProps) => import("react/jsx-runtime").JSX.Element;
28
+ export default ExternalLinker;