cozy-ui 131.1.0-beta.9 → 131.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3522) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/dist/cozy-ui.min.css +2 -0
  3. package/dist/cozy-ui.utils.min.css +1 -0
  4. package/package.json +6 -2
  5. package/react/Accordion/Readme.md +35 -0
  6. package/react/AccordionActions/index.js +3 -0
  7. package/react/AccordionDetails/index.js +3 -0
  8. package/react/AccordionSummary/AccordionExpandIcon.jsx +8 -0
  9. package/react/AccordionSummary/index.js +10 -0
  10. package/react/ActionsBar/Readme.md +54 -0
  11. package/react/ActionsBar/ResponsiveAction.jsx +67 -0
  12. package/react/ActionsBar/index.jsx +217 -0
  13. package/react/ActionsBar/locales/en.json +4 -0
  14. package/react/ActionsBar/locales/fr.json +4 -0
  15. package/react/ActionsBar/locales/ru.json +4 -0
  16. package/react/ActionsBar/locales/vi.json +4 -0
  17. package/react/ActionsBar/locales/withActionsLocales.jsx +14 -0
  18. package/react/ActionsMenu/Actions/addToFavorites.js +66 -0
  19. package/react/ActionsMenu/Actions/call.js +34 -0
  20. package/react/ActionsMenu/Actions/copyToClipboard.js +55 -0
  21. package/react/ActionsMenu/Actions/divider.js +12 -0
  22. package/react/ActionsMenu/Actions/download.js +48 -0
  23. package/react/ActionsMenu/Actions/editAttribute.js +41 -0
  24. package/react/ActionsMenu/Actions/emailTo.js +34 -0
  25. package/react/ActionsMenu/Actions/helpers.js +242 -0
  26. package/react/ActionsMenu/Actions/helpers.spec.js +80 -0
  27. package/react/ActionsMenu/Actions/index.js +15 -0
  28. package/react/ActionsMenu/Actions/locales/en.json +29 -0
  29. package/react/ActionsMenu/Actions/locales/fr.json +29 -0
  30. package/react/ActionsMenu/Actions/locales/ru.json +29 -0
  31. package/react/ActionsMenu/Actions/locales/vi.json +29 -0
  32. package/react/ActionsMenu/Actions/locales/withActionsLocales.jsx +16 -0
  33. package/react/ActionsMenu/Actions/makeAction.jsx +42 -0
  34. package/react/ActionsMenu/Actions/modify.js +45 -0
  35. package/react/ActionsMenu/Actions/others.jsx +12 -0
  36. package/react/ActionsMenu/Actions/print.js +77 -0
  37. package/react/ActionsMenu/Actions/removeFromFavorites.js +66 -0
  38. package/react/ActionsMenu/Actions/smsTo.js +34 -0
  39. package/react/ActionsMenu/Actions/viewInContacts.js +44 -0
  40. package/react/ActionsMenu/Actions/viewInDrive.js +53 -0
  41. package/react/ActionsMenu/ActionsItems.jsx +85 -0
  42. package/react/ActionsMenu/ActionsMenuButton.jsx +45 -0
  43. package/react/ActionsMenu/ActionsMenuItem.jsx +40 -0
  44. package/react/ActionsMenu/ActionsMenuMobileHeader.jsx +31 -0
  45. package/react/ActionsMenu/ActionsMenuWrapper.jsx +82 -0
  46. package/react/ActionsMenu/Readme.md +254 -0
  47. package/react/ActionsMenu/index.jsx +97 -0
  48. package/react/Alert/Readme.md +150 -0
  49. package/react/Alert/index.jsx +146 -0
  50. package/react/AlertTitle/index.jsx +3 -0
  51. package/react/AppBar/index.js +3 -0
  52. package/react/AppIcon/Readme.md +96 -0
  53. package/react/AppIcon/index.jsx +169 -0
  54. package/react/AppIcon/styles.styl +37 -0
  55. package/react/AppLinker/Readme.md +32 -0
  56. package/react/AppLinker/__snapshots__/index.spec.jsx.snap +13 -0
  57. package/react/AppLinker/index.jsx +107 -0
  58. package/react/AppLinker/index.spec.jsx +60 -0
  59. package/react/AppLinker/native.config.js +1 -0
  60. package/react/AppLinker/native.js +55 -0
  61. package/react/AppLinker/native.spec.js +120 -0
  62. package/react/AppSections/Readme.md +41 -0
  63. package/react/AppSections/Sections.jsx +286 -0
  64. package/react/AppSections/Sections.styl +4 -0
  65. package/react/AppSections/__snapshots__/search.spec.js.snap +972 -0
  66. package/react/AppSections/_mockApps.js +197 -0
  67. package/react/AppSections/categories.js +138 -0
  68. package/react/AppSections/categories.spec.js +289 -0
  69. package/react/AppSections/components/AppsSection.jsx +81 -0
  70. package/react/AppSections/components/AppsSection.spec.jsx +58 -0
  71. package/react/AppSections/components/AppsSection.styl +7 -0
  72. package/react/AppSections/components/DropdownFilter.jsx +49 -0
  73. package/react/AppSections/components/DropdownFilter.styl +14 -0
  74. package/react/AppSections/constants.js +9 -0
  75. package/react/AppSections/generateI18nConfig.ts +23 -0
  76. package/react/AppSections/helpers.js +16 -0
  77. package/react/AppSections/helpers.spec.js +39 -0
  78. package/react/AppSections/index.jsx +3 -0
  79. package/react/AppSections/index.spec.jsx +137 -0
  80. package/react/AppSections/locales/en.json +37 -0
  81. package/react/AppSections/locales/fr.json +37 -0
  82. package/react/AppSections/locales/ru.json +37 -0
  83. package/react/AppSections/locales/vi.json +37 -0
  84. package/react/AppSections/search.js +104 -0
  85. package/react/AppSections/search.spec.js +158 -0
  86. package/react/AppTile/AppTile.spec.jsx +119 -0
  87. package/react/AppTile/Readme.md +24 -0
  88. package/react/AppTile/helpers.js +25 -0
  89. package/react/AppTile/index.jsx +139 -0
  90. package/react/AppTile/locales/en.json +9 -0
  91. package/react/AppTile/locales/fr.json +9 -0
  92. package/react/AppTile/locales/ru.json +9 -0
  93. package/react/AppTile/locales/vi.json +9 -0
  94. package/react/AppTile/styles.styl +27 -0
  95. package/react/AppTitle/Readme.md +21 -0
  96. package/react/AppTitle/index.jsx +125 -0
  97. package/react/AppTitle/styles.styl +19 -0
  98. package/react/Avatar/Readme.md +93 -0
  99. package/react/Avatar/helpers.js +60 -0
  100. package/react/Avatar/index.jsx +77 -0
  101. package/react/AvatarGroup/index.js +39 -0
  102. package/react/Backdrop/index.js +30 -0
  103. package/react/Badge/Readme.md +82 -0
  104. package/react/Badge/index.jsx +76 -0
  105. package/react/Banner/Readme.md +48 -0
  106. package/react/Banner/index.jsx +104 -0
  107. package/react/Banner/index.spec.jsx +20 -0
  108. package/react/Banner/styles.styl +35 -0
  109. package/react/BarButton/Readme.md +50 -0
  110. package/react/BarButton/index.jsx +69 -0
  111. package/react/BarButton/styles.styl +19 -0
  112. package/react/BarContextProvider/index.jsx +40 -0
  113. package/react/BarContextProvider/index.spec.jsx +176 -0
  114. package/react/BarTitle/Readme.md +36 -0
  115. package/react/BarTitle/index.jsx +26 -0
  116. package/react/BarTitle/styles.styl +8 -0
  117. package/react/BottomNavigation/index.js +3 -0
  118. package/react/BottomNavigationAction/index.js +3 -0
  119. package/react/BottomSheet/BackdropOrFragment.jsx +17 -0
  120. package/react/BottomSheet/BottomSheet.jsx +454 -0
  121. package/react/BottomSheet/BottomSheetHeader.jsx +20 -0
  122. package/react/BottomSheet/BottomSheetItem.jsx +37 -0
  123. package/react/BottomSheet/BottomSheetTitle.jsx +54 -0
  124. package/react/BottomSheet/README.md +289 -0
  125. package/react/BottomSheet/constants.js +1 -0
  126. package/react/BottomSheet/helpers.js +159 -0
  127. package/react/BottomSheet/helpers.spec.js +557 -0
  128. package/react/BottomSheet/index.jsx +4 -0
  129. package/react/BottomSheet/styles.styl +15 -0
  130. package/react/Box/index.js +3 -0
  131. package/react/Breadcrumbs/Readme.md +13 -0
  132. package/react/Breadcrumbs/index.js +3 -0
  133. package/react/Button/index.js +3 -0
  134. package/react/ButtonBase/index.js +3 -0
  135. package/react/Buttons/Readme.md +308 -0
  136. package/react/Buttons/index.jsx +126 -0
  137. package/react/Card/Readme.md +42 -0
  138. package/react/Card/index.jsx +35 -0
  139. package/react/Card/styles.styl +8 -0
  140. package/react/CardActionArea/index.js +3 -0
  141. package/react/CardActions/index.js +3 -0
  142. package/react/CardContent/index.js +3 -0
  143. package/react/CardHeader/index.js +3 -0
  144. package/react/CardMedia/index.js +3 -0
  145. package/react/Checkbox/Readme.md +66 -0
  146. package/react/Checkbox/index.jsx +119 -0
  147. package/react/Checkbox/styles.styl +27 -0
  148. package/react/Chips/Readme.md +169 -0
  149. package/react/Chips/index.jsx +35 -0
  150. package/react/CipherIcon/Readme.md +14 -0
  151. package/react/CipherIcon/index.jsx +46 -0
  152. package/react/CipherIcon/index.spec.jsx +51 -0
  153. package/react/Circle/Readme.md +41 -0
  154. package/react/Circle/index.jsx +47 -0
  155. package/react/Circle/styles.styl +7 -0
  156. package/react/CircleButton/Readme.md +128 -0
  157. package/react/CircleButton/helpers.js +16 -0
  158. package/react/CircleButton/helpers.spec.js +61 -0
  159. package/react/CircleButton/index.jsx +96 -0
  160. package/react/CircularChart/CircularChartProgress.jsx +59 -0
  161. package/react/CircularChart/CircularProgressWithBackground.jsx +43 -0
  162. package/react/CircularChart/Readme.md +130 -0
  163. package/react/CircularChart/helper.spec.ts +97 -0
  164. package/react/CircularChart/helpers.ts +46 -0
  165. package/react/CircularChart/index.jsx +75 -0
  166. package/react/CircularProgress/index.js +3 -0
  167. package/react/ClickAwayListener/index.js +3 -0
  168. package/react/Collapse/index.js +3 -0
  169. package/react/ContactPicker/Readme.md +26 -0
  170. package/react/ContactPicker/index.jsx +87 -0
  171. package/react/ContactPicker/index.spec.jsx +60 -0
  172. package/react/ContactPicker/styles.styl +5 -0
  173. package/react/Contacts/AddModal/ContactAddressDialog/helpers.js +22 -0
  174. package/react/Contacts/AddModal/ContactAddressDialog/helpers.spec.js +64 -0
  175. package/react/Contacts/AddModal/ContactAddressDialog/index.jsx +84 -0
  176. package/react/Contacts/AddModal/ContactAddressDialog/locales/en.json +25 -0
  177. package/react/Contacts/AddModal/ContactAddressDialog/locales/fr.json +25 -0
  178. package/react/Contacts/AddModal/ContactAddressDialog/locales/index.jsx +11 -0
  179. package/react/Contacts/AddModal/ContactAddressDialog/locales/ru.json +25 -0
  180. package/react/Contacts/AddModal/ContactAddressDialog/locales/vi.json +25 -0
  181. package/react/Contacts/AddModal/ContactForm/FieldInput.jsx +123 -0
  182. package/react/Contacts/AddModal/ContactForm/FieldInputAccordion.jsx +57 -0
  183. package/react/Contacts/AddModal/ContactForm/FieldInputArray.jsx +80 -0
  184. package/react/Contacts/AddModal/ContactForm/FieldInputLayout.jsx +76 -0
  185. package/react/Contacts/AddModal/ContactForm/FieldInputWrapper.jsx +43 -0
  186. package/react/Contacts/AddModal/ContactForm/HasValueCondition.jsx +31 -0
  187. package/react/Contacts/AddModal/ContactForm/HasValueCondition.spec.jsx +79 -0
  188. package/react/Contacts/AddModal/ContactForm/RelatedContactList.jsx +37 -0
  189. package/react/Contacts/AddModal/ContactForm/TextFieldCustomLabelSelect.jsx +78 -0
  190. package/react/Contacts/AddModal/ContactForm/TextFieldSelect.jsx +39 -0
  191. package/react/Contacts/AddModal/ContactForm/__snapshots__/HasValueCondition.spec.jsx.snap +33 -0
  192. package/react/Contacts/AddModal/ContactForm/contactToFormValues.js +109 -0
  193. package/react/Contacts/AddModal/ContactForm/contactToFormValues.spec.js +133 -0
  194. package/react/Contacts/AddModal/ContactForm/fieldsConfig.jsx +357 -0
  195. package/react/Contacts/AddModal/ContactForm/formValuesToContact.js +111 -0
  196. package/react/Contacts/AddModal/ContactForm/formValuesToContact.spec.js +557 -0
  197. package/react/Contacts/AddModal/ContactForm/helpers.js +393 -0
  198. package/react/Contacts/AddModal/ContactForm/helpers.spec.js +391 -0
  199. package/react/Contacts/AddModal/ContactForm/index.jsx +138 -0
  200. package/react/Contacts/AddModal/ContactForm/index.spec.jsx +301 -0
  201. package/react/Contacts/AddModal/ContactForm/locales/en.json +75 -0
  202. package/react/Contacts/AddModal/ContactForm/locales/fr.json +75 -0
  203. package/react/Contacts/AddModal/ContactForm/locales/index.jsx +11 -0
  204. package/react/Contacts/AddModal/ContactForm/locales/ru.json +75 -0
  205. package/react/Contacts/AddModal/ContactForm/locales/vi.json +75 -0
  206. package/react/Contacts/AddModal/ContactForm/styles.styl +2 -0
  207. package/react/Contacts/AddModal/CustomLabelDialog/index.jsx +108 -0
  208. package/react/Contacts/AddModal/CustomLabelDialog/locales/en.json +15 -0
  209. package/react/Contacts/AddModal/CustomLabelDialog/locales/fr.json +15 -0
  210. package/react/Contacts/AddModal/CustomLabelDialog/locales/index.jsx +11 -0
  211. package/react/Contacts/AddModal/CustomLabelDialog/locales/ru.json +15 -0
  212. package/react/Contacts/AddModal/CustomLabelDialog/locales/vi.json +15 -0
  213. package/react/Contacts/AddModal/Readme.md +55 -0
  214. package/react/Contacts/AddModal/index.jsx +85 -0
  215. package/react/Contacts/AddModal/locales/en.json +13 -0
  216. package/react/Contacts/AddModal/locales/fr.json +13 -0
  217. package/react/Contacts/AddModal/locales/index.jsx +11 -0
  218. package/react/Contacts/AddModal/locales/ru.json +13 -0
  219. package/react/Contacts/AddModal/locales/vi.json +13 -0
  220. package/react/Contacts/AddModal/mocks.js +299 -0
  221. package/react/Contacts/AddModal/types.js +102 -0
  222. package/react/Contacts/GroupsSelect/GroupCreation.jsx +95 -0
  223. package/react/Contacts/GroupsSelect/GroupsSelect.jsx +159 -0
  224. package/react/Contacts/GroupsSelect/GroupsSelect.spec.jsx +248 -0
  225. package/react/Contacts/GroupsSelect/GroupsSelectProvider.jsx +39 -0
  226. package/react/Contacts/GroupsSelect/Readme.md +1 -0
  227. package/react/Contacts/GroupsSelect/SelectBox/Control.jsx +36 -0
  228. package/react/Contacts/GroupsSelect/SelectBox/EditGroupName.jsx +52 -0
  229. package/react/Contacts/GroupsSelect/SelectBox/Menu.jsx +26 -0
  230. package/react/Contacts/GroupsSelect/SelectBox/Option.jsx +67 -0
  231. package/react/Contacts/GroupsSelect/SelectBox/SelectContainer.jsx +15 -0
  232. package/react/Contacts/GroupsSelect/SelectBox/styles.styl +2 -0
  233. package/react/Contacts/GroupsSelect/helpers.js +25 -0
  234. package/react/Contacts/GroupsSelect/locales/en.json +21 -0
  235. package/react/Contacts/GroupsSelect/locales/fr.json +21 -0
  236. package/react/Contacts/GroupsSelect/locales/index.jsx +11 -0
  237. package/react/Contacts/GroupsSelect/locales/ru.json +21 -0
  238. package/react/Contacts/GroupsSelect/locales/vi.json +21 -0
  239. package/react/Contacts/GroupsSelect/styles.styl +48 -0
  240. package/react/Contacts/GroupsSelect/useGroupSelect.jsx +88 -0
  241. package/react/Contacts/Header/GroupsSelection.jsx +74 -0
  242. package/react/Contacts/Header/ImportDropdown.jsx +78 -0
  243. package/react/Contacts/Header/Readme.md +38 -0
  244. package/react/Contacts/Header/SearchInput.jsx +19 -0
  245. package/react/Contacts/Header/index.jsx +79 -0
  246. package/react/Contacts/Header/locales/en.json +15 -0
  247. package/react/Contacts/Header/locales/fr.json +15 -0
  248. package/react/Contacts/Header/locales/index.jsx +11 -0
  249. package/react/Contacts/Header/locales/ru.json +15 -0
  250. package/react/Contacts/Header/locales/vi.json +15 -0
  251. package/react/Contacts/Readme.md +1 -0
  252. package/react/ContactsList/ContactCell.jsx +22 -0
  253. package/react/ContactsList/ContactRow.jsx +46 -0
  254. package/react/ContactsList/ContactRow.spec.js +75 -0
  255. package/react/ContactsList/Contacts/ContactCozy.jsx +22 -0
  256. package/react/ContactsList/Contacts/ContactEmail.jsx +22 -0
  257. package/react/ContactsList/Contacts/ContactIdentity.jsx +57 -0
  258. package/react/ContactsList/Contacts/ContactName.jsx +44 -0
  259. package/react/ContactsList/Contacts/ContactPhone.jsx +23 -0
  260. package/react/ContactsList/ContactsList.jsx +51 -0
  261. package/react/ContactsList/Readme.md +47 -0
  262. package/react/ContactsList/_mockContacts.json +2494 -0
  263. package/react/ContactsList/helpers.js +132 -0
  264. package/react/ContactsList/helpers.spec.js +150 -0
  265. package/react/ContactsList/index.js +3 -0
  266. package/react/ContactsList/locales/en.json +5 -0
  267. package/react/ContactsList/locales/fr.json +5 -0
  268. package/react/ContactsList/locales/ru.json +5 -0
  269. package/react/ContactsList/locales/vi.json +5 -0
  270. package/react/ContactsList/locales/withContactsListLocales.jsx +14 -0
  271. package/react/ContactsList/styles.styl +35 -0
  272. package/react/ContactsListModal/AddContact/AddContactActions.jsx +15 -0
  273. package/react/ContactsListModal/AddContact/AddContactContent.jsx +59 -0
  274. package/react/ContactsListModal/AddContact/AddContactDialog.jsx +38 -0
  275. package/react/ContactsListModal/AddContact/AddContactTitle.jsx +9 -0
  276. package/react/ContactsListModal/AddContact/helpers.js +18 -0
  277. package/react/ContactsListModal/AddContact/helpers.spec.js +74 -0
  278. package/react/ContactsListModal/AddContact/styles.styl +2 -0
  279. package/react/ContactsListModal/ContactsListContent.jsx +75 -0
  280. package/react/ContactsListModal/ContactsListModal.jsx +143 -0
  281. package/react/ContactsListModal/ContactsListModalWithQuery.jsx +27 -0
  282. package/react/ContactsListModal/EmptyMessage.jsx +18 -0
  283. package/react/ContactsListModal/MobileHeader.jsx +49 -0
  284. package/react/ContactsListModal/Readme.md +45 -0
  285. package/react/ContactsListModal/index.jsx +28 -0
  286. package/react/ContactsListModal/locales/en.json +11 -0
  287. package/react/ContactsListModal/locales/fr.json +11 -0
  288. package/react/ContactsListModal/locales/ru.json +11 -0
  289. package/react/ContactsListModal/locales/vi.json +11 -0
  290. package/react/ContactsListModal/mockClient.jsx +47 -0
  291. package/react/ContactsListModal/queries.js +12 -0
  292. package/react/ContactsListModal/styles.styl +12 -0
  293. package/react/ContactsListModal/withContactsListLocales.jsx +10 -0
  294. package/react/Container/index.js +3 -0
  295. package/react/Counter/Readme.md +21 -0
  296. package/react/Counter/index.jsx +18 -0
  297. package/react/CozyDialogs/ConfirmDialog.jsx +84 -0
  298. package/react/CozyDialogs/Dialog.jsx +83 -0
  299. package/react/CozyDialogs/DialogBackButton.jsx +34 -0
  300. package/react/CozyDialogs/DialogCloseButton.jsx +34 -0
  301. package/react/CozyDialogs/DialogTransition.jsx +21 -0
  302. package/react/CozyDialogs/FixedActionsDialog.jsx +74 -0
  303. package/react/CozyDialogs/FixedDialog.jsx +73 -0
  304. package/react/CozyDialogs/IllustrationDialog.jsx +92 -0
  305. package/react/CozyDialogs/PermissionDialog.jsx +86 -0
  306. package/react/CozyDialogs/Readme.md +495 -0
  307. package/react/CozyDialogs/SpecificDialogs/AllowLocationDialog.jsx +72 -0
  308. package/react/CozyDialogs/SpecificDialogs/AuthentificationDialog.jsx +115 -0
  309. package/react/CozyDialogs/SpecificDialogs/InstallFlagshipAppDialog.jsx +79 -0
  310. package/react/CozyDialogs/SpecificDialogs/Readme.md +130 -0
  311. package/react/CozyDialogs/SpecificDialogs/ShortcutDialog.jsx +120 -0
  312. package/react/CozyDialogs/SpecificDialogs/helpers/shortcuts.js +63 -0
  313. package/react/CozyDialogs/SpecificDialogs/icons/CozyLocation.jsx +42 -0
  314. package/react/CozyDialogs/SpecificDialogs/icons/QRCodeInstallFlagshipAppDialog.png +0 -0
  315. package/react/CozyDialogs/SpecificDialogs/icons/appstore.png +0 -0
  316. package/react/CozyDialogs/SpecificDialogs/icons/playstore.png +0 -0
  317. package/react/CozyDialogs/SpecificDialogs/index.jsx +4 -0
  318. package/react/CozyDialogs/SpecificDialogs/locales/en.json +41 -0
  319. package/react/CozyDialogs/SpecificDialogs/locales/fr.json +41 -0
  320. package/react/CozyDialogs/SpecificDialogs/locales/ru.json +41 -0
  321. package/react/CozyDialogs/SpecificDialogs/locales/vi.json +41 -0
  322. package/react/CozyDialogs/SpecificDialogs/withSpecificDialogsLocales.jsx +14 -0
  323. package/react/CozyDialogs/TopAnchoredDialog.jsx +25 -0
  324. package/react/CozyDialogs/background.png +0 -0
  325. package/react/CozyDialogs/dialogPropTypes.js +14 -0
  326. package/react/CozyDialogs/e2e.js +20 -0
  327. package/react/CozyDialogs/index.jsx +17 -0
  328. package/react/CozyDialogs/locales.js +22 -0
  329. package/react/CozyDialogs/styles.styl +19 -0
  330. package/react/CozyDialogs/testing.js +39 -0
  331. package/react/CozyDialogs/testing.spec.jsx +117 -0
  332. package/react/CozyDialogs/useCozyDialog.js +142 -0
  333. package/react/CssBaseline/index.js +3 -0
  334. package/react/DateMonthPicker/Readme.md +63 -0
  335. package/react/DateMonthPicker/index.jsx +106 -0
  336. package/react/DateMonthPicker/index.spec.jsx +47 -0
  337. package/react/DateMonthPicker/styles.styl +72 -0
  338. package/react/DatePicker/Readme.md +218 -0
  339. package/react/DatePicker/helpers.js +16 -0
  340. package/react/DatePicker/helpers.spec.js +71 -0
  341. package/react/DatePicker/index.jsx +289 -0
  342. package/react/DatePicker/locales/en.json +8 -0
  343. package/react/DatePicker/locales/fr.json +8 -0
  344. package/react/DatePicker/locales/ru.json +8 -0
  345. package/react/DatePicker/locales/vi.json +8 -0
  346. package/react/DatePicker/locales/withOwnLocales.jsx +14 -0
  347. package/react/Dialog/DialogActions.jsx +3 -0
  348. package/react/Dialog/DialogContent.jsx +3 -0
  349. package/react/Dialog/DialogContentText.jsx +3 -0
  350. package/react/Dialog/DialogEffects.spec.tsx +430 -0
  351. package/react/Dialog/DialogEffects.ts +208 -0
  352. package/react/Dialog/DialogTitle.jsx +3 -0
  353. package/react/Dialog/Readme.md +141 -0
  354. package/react/Dialog/index.jsx +30 -0
  355. package/react/DialogActions/index.js +3 -0
  356. package/react/DialogContent/index.js +3 -0
  357. package/react/DialogContentText/index.js +3 -0
  358. package/react/DialogTitle/index.js +3 -0
  359. package/react/Divider/Readme.md +45 -0
  360. package/react/Divider/TextDivider/index.jsx +33 -0
  361. package/react/Divider/TextDivider/styles.styl +26 -0
  362. package/react/Divider/index.jsx +55 -0
  363. package/react/Drawer/index.js +3 -0
  364. package/react/DropdownButton/Readme.md +77 -0
  365. package/react/DropdownButton/index.jsx +85 -0
  366. package/react/DropdownText/Readme.md +95 -0
  367. package/react/DropdownText/index.jsx +109 -0
  368. package/react/EditBadge/EditMenu.jsx +102 -0
  369. package/react/EditBadge/Readme.md +22 -0
  370. package/react/EditBadge/StatusWrapper.jsx +32 -0
  371. package/react/EditBadge/helpers.js +102 -0
  372. package/react/EditBadge/index.jsx +81 -0
  373. package/react/EditBadge/locales/en.json +18 -0
  374. package/react/EditBadge/locales/fr.json +18 -0
  375. package/react/EditBadge/locales/index.js +11 -0
  376. package/react/EditBadge/locales/ru.json +18 -0
  377. package/react/EditBadge/locales/vi.json +18 -0
  378. package/react/Empty/Readme.md +68 -0
  379. package/react/Empty/index.jsx +104 -0
  380. package/react/Empty/styles.styl +22 -0
  381. package/react/Fab/ExtendableFab.jsx +31 -0
  382. package/react/Fab/Readme.md +119 -0
  383. package/react/Fab/index.js +8 -0
  384. package/react/Fade/index.js +3 -0
  385. package/react/Field/Readme.md +357 -0
  386. package/react/Field/index.jsx +316 -0
  387. package/react/Field/index.spec.js +59 -0
  388. package/react/Field/styles.styl +41 -0
  389. package/react/Figure/Figure.jsx +112 -0
  390. package/react/Figure/Figure.md +19 -0
  391. package/react/Figure/Figure.spec.jsx +57 -0
  392. package/react/Figure/Figure.styl +47 -0
  393. package/react/Figure/FigureBlock.jsx +52 -0
  394. package/react/Figure/FigureBlock.md +31 -0
  395. package/react/Figure/FigureBlock.styl +12 -0
  396. package/react/Figure/__snapshots__/Figure.spec.jsx.snap +449 -0
  397. package/react/Figure/index.js +2 -0
  398. package/react/FileImageLoader/Readme.md +112 -0
  399. package/react/FileImageLoader/checkImageSource.js +29 -0
  400. package/react/FileImageLoader/index.jsx +185 -0
  401. package/react/FileImageLoader/index.spec.jsx +176 -0
  402. package/react/FileInput/Readme.md +50 -0
  403. package/react/FileInput/index.jsx +72 -0
  404. package/react/FileInput/index.spec.jsx +63 -0
  405. package/react/FileInput/styles.styl +2 -0
  406. package/react/FilePath/Readme.md +5 -0
  407. package/react/FilePath/index.jsx +12 -0
  408. package/react/FilePath/styles.styl +9 -0
  409. package/react/FilePathLink/Readme.md +5 -0
  410. package/react/FilePathLink/index.jsx +12 -0
  411. package/react/FilePicker/FilePickerBody.jsx +111 -0
  412. package/react/FilePicker/FilePickerBodyItem.jsx +126 -0
  413. package/react/FilePicker/FilePickerBodyItem.spec.jsx +164 -0
  414. package/react/FilePicker/FilePickerBreadcrumb.jsx +54 -0
  415. package/react/FilePicker/FilePickerFooter.jsx +41 -0
  416. package/react/FilePicker/FilePickerFooter.spec.jsx +41 -0
  417. package/react/FilePicker/FilePickerHeader.jsx +89 -0
  418. package/react/FilePicker/Readme.md +50 -0
  419. package/react/FilePicker/index.jsx +93 -0
  420. package/react/FilePicker/locales/en.json +8 -0
  421. package/react/FilePicker/locales/fr.json +8 -0
  422. package/react/FilePicker/locales/ru.json +8 -0
  423. package/react/FilePicker/locales/vi.json +8 -0
  424. package/react/FilePicker/queries.js +37 -0
  425. package/react/FilePicker/styles.styl +18 -0
  426. package/react/Filename/Readme.md +27 -0
  427. package/react/Filename/index.jsx +93 -0
  428. package/react/Filename/styles.styl +3 -0
  429. package/react/FilledInput/index.js +3 -0
  430. package/react/FormControl/index.js +3 -0
  431. package/react/FormControlLabel/index.js +3 -0
  432. package/react/FormGroup/index.js +3 -0
  433. package/react/FormHelperText/index.js +3 -0
  434. package/react/FormLabel/index.js +3 -0
  435. package/react/GhostFileBadge/Readme.md +15 -0
  436. package/react/GhostFileBadge/index.jsx +32 -0
  437. package/react/Grid/Readme.md +65 -0
  438. package/react/Grid/index.js +3 -0
  439. package/react/GridList/Virtualized/Dnd/GridItem.jsx +86 -0
  440. package/react/GridList/Virtualized/Dnd/index.jsx +59 -0
  441. package/react/GridList/Virtualized/Dnd/virtuosoComponents.jsx +36 -0
  442. package/react/GridList/Virtualized/index.jsx +21 -0
  443. package/react/GridList/index.js +3 -0
  444. package/react/GridListTile/index.js +3 -0
  445. package/react/GridListTileBar/index.js +3 -0
  446. package/react/Grow/index.js +3 -0
  447. package/react/Hero/Readme.md +52 -0
  448. package/react/Hero/index.jsx +35 -0
  449. package/react/Hero/styles.styl +51 -0
  450. package/react/Hidden/index.js +3 -0
  451. package/react/HistoryRow/Readme.md +60 -0
  452. package/react/HistoryRow/index.jsx +78 -0
  453. package/react/HistoryRow/styles.styl +45 -0
  454. package/react/I18n/index.js +25 -0
  455. package/react/I18n/withLocales.js +14 -0
  456. package/react/Icon/Readme.md +1052 -1
  457. package/react/IconButton/Readme.md +87 -0
  458. package/react/IconButton/index.jsx +51 -0
  459. package/react/IconStack/Readme.md +35 -0
  460. package/react/IconStack/index.jsx +53 -0
  461. package/react/IconStack/styles.styl +10 -0
  462. package/react/Icons/Account.jsx +12 -0
  463. package/react/Icons/Accounts.jsx +12 -0
  464. package/react/Icons/Album.jsx +12 -0
  465. package/react/Icons/AlbumAdd.jsx +12 -0
  466. package/react/Icons/AlbumRemove.jsx +12 -0
  467. package/react/Icons/Answer.jsx +12 -0
  468. package/react/Icons/Apple.jsx +15 -0
  469. package/react/Icons/Apps.jsx +17 -0
  470. package/react/Icons/Archive.jsx +12 -0
  471. package/react/Icons/ArrowUp.jsx +12 -0
  472. package/react/Icons/AssignAdmin.jsx +22 -0
  473. package/react/Icons/AssignModerator.jsx +13 -0
  474. package/react/Icons/Assistant.jsx +16 -0
  475. package/react/Icons/Attachment.jsx +12 -0
  476. package/react/Icons/Attention.jsx +12 -0
  477. package/react/Icons/Bank.jsx +12 -0
  478. package/react/Icons/BankAccounts.jsx +16 -0
  479. package/react/Icons/BankCheck.jsx +16 -0
  480. package/react/Icons/BankGroups.jsx +16 -0
  481. package/react/Icons/BankOperations.jsx +12 -0
  482. package/react/Icons/BankRecurrence.jsx +13 -0
  483. package/react/Icons/Banking.jsx +12 -0
  484. package/react/Icons/BankingAdd.jsx +12 -0
  485. package/react/Icons/Bell.jsx +12 -0
  486. package/react/Icons/Benefit.jsx +12 -0
  487. package/react/Icons/Bike.jsx +12 -0
  488. package/react/Icons/Bill.jsx +12 -0
  489. package/react/Icons/BillPermissions.jsx +13 -0
  490. package/react/Icons/Bottom.jsx +12 -0
  491. package/react/Icons/BottomSelect.jsx +12 -0
  492. package/react/Icons/BrowserBrave.jsx +15 -0
  493. package/react/Icons/BrowserChrome.jsx +15 -0
  494. package/react/Icons/BrowserDuckduckgo.jsx +15 -0
  495. package/react/Icons/BrowserEdge.jsx +15 -0
  496. package/react/Icons/BrowserEdgeChromium.jsx +15 -0
  497. package/react/Icons/BrowserFirefox.jsx +15 -0
  498. package/react/Icons/BrowserIe.jsx +15 -0
  499. package/react/Icons/BrowserOpera.jsx +15 -0
  500. package/react/Icons/BrowserSafari.jsx +15 -0
  501. package/react/Icons/BugReport.jsx +12 -0
  502. package/react/Icons/Burger.jsx +12 -0
  503. package/react/Icons/Bus.jsx +13 -0
  504. package/react/Icons/Calendar.jsx +12 -0
  505. package/react/Icons/CalendarPermissions.jsx +12 -0
  506. package/react/Icons/Camera.jsx +12 -0
  507. package/react/Icons/Car.jsx +13 -0
  508. package/react/Icons/CarbonCopy.jsx +15 -0
  509. package/react/Icons/Carpooling.jsx +17 -0
  510. package/react/Icons/Categories.jsx +12 -0
  511. package/react/Icons/Category.jsx +12 -0
  512. package/react/Icons/Certified.jsx +13 -0
  513. package/react/Icons/CertifiedPermissions.jsx +13 -0
  514. package/react/Icons/Chat.jsx +76 -0
  515. package/react/Icons/ChatText.jsx +73 -0
  516. package/react/Icons/Check.jsx +12 -0
  517. package/react/Icons/CheckCircle.jsx +12 -0
  518. package/react/Icons/CheckList.jsx +12 -0
  519. package/react/Icons/CheckSquare.jsx +16 -0
  520. package/react/Icons/CheckWhite.jsx +15 -0
  521. package/react/Icons/Checkbox.jsx +12 -0
  522. package/react/Icons/Chess.jsx +12 -0
  523. package/react/Icons/Child.jsx +13 -0
  524. package/react/Icons/CircleFilled.jsx +12 -0
  525. package/react/Icons/Clock.jsx +12 -0
  526. package/react/Icons/ClockOutline.jsx +12 -0
  527. package/react/Icons/Cloud.jsx +12 -0
  528. package/react/Icons/Cloud2.jsx +29 -0
  529. package/react/Icons/CloudBroken.jsx +12 -0
  530. package/react/Icons/CloudHappy.jsx +15 -0
  531. package/react/Icons/CloudPlusOutlined.jsx +12 -0
  532. package/react/Icons/CloudRainbow.jsx +63 -0
  533. package/react/Icons/CloudSync.jsx +21 -0
  534. package/react/Icons/CloudSync2.jsx +23 -0
  535. package/react/Icons/Cocktail.jsx +12 -0
  536. package/react/Icons/Collect.jsx +15 -0
  537. package/react/Icons/Comment.jsx +12 -0
  538. package/react/Icons/Company.jsx +12 -0
  539. package/react/Icons/Compare.jsx +12 -0
  540. package/react/Icons/Compass.jsx +12 -0
  541. package/react/Icons/ConnectedClients.jsx +12 -0
  542. package/react/Icons/Connector.jsx +12 -0
  543. package/react/Icons/Consumption.jsx +13 -0
  544. package/react/Icons/Contacts.jsx +102 -0
  545. package/react/Icons/ContactsAccounts.jsx +12 -0
  546. package/react/Icons/ContactsGroups.jsx +12 -0
  547. package/react/Icons/ContactsText.jsx +133 -0
  548. package/react/Icons/Contract.jsx +12 -0
  549. package/react/Icons/ContractPermissions.jsx +12 -0
  550. package/react/Icons/Contrast.jsx +12 -0
  551. package/react/Icons/Copy.jsx +12 -0
  552. package/react/Icons/Cozy.jsx +16 -0
  553. package/react/Icons/CozyAuthentification.jsx +12 -0
  554. package/react/Icons/CozyCircle.jsx +16 -0
  555. package/react/Icons/CozyLaugh.jsx +15 -0
  556. package/react/Icons/CozyLock.jsx +16 -0
  557. package/react/Icons/CozyLogo.jsx +18 -0
  558. package/react/Icons/CozyRelease.jsx +22 -0
  559. package/react/Icons/CozyText.jsx +12 -0
  560. package/react/Icons/CozyUpgrade.jsx +55 -0
  561. package/react/Icons/Credit.jsx +18 -0
  562. package/react/Icons/CreditCard.jsx +12 -0
  563. package/react/Icons/CreditCardAdd.jsx +12 -0
  564. package/react/Icons/CreditCardLarge.jsx +12 -0
  565. package/react/Icons/Crop.jsx +12 -0
  566. package/react/Icons/Cross.jsx +12 -0
  567. package/react/Icons/CrossCircle.jsx +15 -0
  568. package/react/Icons/CrossCircleOutline.jsx +16 -0
  569. package/react/Icons/CrossMedium.jsx +12 -0
  570. package/react/Icons/CrossSmall.jsx +12 -0
  571. package/react/Icons/CrossWhite.jsx +16 -0
  572. package/react/Icons/Cube.jsx +12 -0
  573. package/react/Icons/Dash.jsx +12 -0
  574. package/react/Icons/DashWhite.jsx +12 -0
  575. package/react/Icons/Dashboard.jsx +12 -0
  576. package/react/Icons/DataControl.jsx +14 -0
  577. package/react/Icons/Debit.jsx +12 -0
  578. package/react/Icons/DesktopDownload.jsx +13 -0
  579. package/react/Icons/DeviceBrowser.jsx +12 -0
  580. package/react/Icons/DeviceLaptop.jsx +12 -0
  581. package/react/Icons/DevicePhone.jsx +12 -0
  582. package/react/Icons/DeviceTablet.jsx +12 -0
  583. package/react/Icons/Devices.jsx +12 -0
  584. package/react/Icons/Discuss.jsx +16 -0
  585. package/react/Icons/Dots.jsx +12 -0
  586. package/react/Icons/DotsWhite.jsx +16 -0
  587. package/react/Icons/Down.jsx +12 -0
  588. package/react/Icons/Download.jsx +12 -0
  589. package/react/Icons/DrawingArrowUp.jsx +12 -0
  590. package/react/Icons/Drive.jsx +69 -0
  591. package/react/Icons/DriveText.jsx +88 -0
  592. package/react/Icons/Dropdown.jsx +12 -0
  593. package/react/Icons/DropdownClose.jsx +12 -0
  594. package/react/Icons/DropdownOpen.jsx +12 -0
  595. package/react/Icons/Dropup.jsx +12 -0
  596. package/react/Icons/Ecolyo.jsx +28 -0
  597. package/react/Icons/ElectricBike.jsx +12 -0
  598. package/react/Icons/ElectricCar.jsx +13 -0
  599. package/react/Icons/ElectricScooter.jsx +13 -0
  600. package/react/Icons/Email.jsx +12 -0
  601. package/react/Icons/EmailNotification.jsx +12 -0
  602. package/react/Icons/EmailOpen.jsx +55 -0
  603. package/react/Icons/Energy.jsx +12 -0
  604. package/react/Icons/Energybreakdown.jsx +12 -0
  605. package/react/Icons/Eu.jsx +15 -0
  606. package/react/Icons/Euro.jsx +12 -0
  607. package/react/Icons/Exchange.jsx +12 -0
  608. package/react/Icons/Eye.jsx +12 -0
  609. package/react/Icons/EyeClosed.jsx +12 -0
  610. package/react/Icons/FaceId.jsx +12 -0
  611. package/react/Icons/Fallback.jsx +20 -0
  612. package/react/Icons/Family.jsx +12 -0
  613. package/react/Icons/File.jsx +12 -0
  614. package/react/Icons/FileAdd.jsx +12 -0
  615. package/react/Icons/FileDuotone.jsx +30 -0
  616. package/react/Icons/FileNew.jsx +12 -0
  617. package/react/Icons/FileNone.jsx +18 -0
  618. package/react/Icons/FileOutline.jsx +12 -0
  619. package/react/Icons/FileTypeAudio.jsx +20 -0
  620. package/react/Icons/FileTypeBankingAccount.jsx +26 -0
  621. package/react/Icons/FileTypeBin.jsx +20 -0
  622. package/react/Icons/FileTypeCode.jsx +20 -0
  623. package/react/Icons/FileTypeFiles.jsx +26 -0
  624. package/react/Icons/FileTypeFolder.jsx +32 -0
  625. package/react/Icons/FileTypeImage.jsx +25 -0
  626. package/react/Icons/FileTypeNote.jsx +20 -0
  627. package/react/Icons/FileTypePdf.jsx +20 -0
  628. package/react/Icons/FileTypeServer.jsx +51 -0
  629. package/react/Icons/FileTypeSheet.jsx +26 -0
  630. package/react/Icons/FileTypeSlide.jsx +26 -0
  631. package/react/Icons/FileTypeText.jsx +20 -0
  632. package/react/Icons/FileTypeVideo.jsx +20 -0
  633. package/react/Icons/FileTypeZip.jsx +20 -0
  634. package/react/Icons/Files.jsx +41 -0
  635. package/react/Icons/FilesPen.jsx +21 -0
  636. package/react/Icons/FilesVersions.jsx +21 -0
  637. package/react/Icons/Filter.jsx +16 -0
  638. package/react/Icons/Fingerprint.jsx +12 -0
  639. package/react/Icons/Fitness.jsx +12 -0
  640. package/react/Icons/Flag.jsx +12 -0
  641. package/react/Icons/FlagOutlined.jsx +12 -0
  642. package/react/Icons/FlashAuto.jsx +12 -0
  643. package/react/Icons/Flashlight.jsx +13 -0
  644. package/react/Icons/Folder.jsx +12 -0
  645. package/react/Icons/FolderAdd.jsx +12 -0
  646. package/react/Icons/FolderMoveto.jsx +12 -0
  647. package/react/Icons/FolderOpen.jsx +12 -0
  648. package/react/Icons/Forbidden.jsx +12 -0
  649. package/react/Icons/ForbiddenSign.jsx +63 -0
  650. package/react/Icons/FromUser.jsx +13 -0
  651. package/react/Icons/Gear.jsx +12 -0
  652. package/react/Icons/Globe.jsx +12 -0
  653. package/react/Icons/Google.jsx +29 -0
  654. package/react/Icons/Gouv.jsx +29 -0
  655. package/react/Icons/GraphCircle.jsx +12 -0
  656. package/react/Icons/Grid.jsx +12 -0
  657. package/react/Icons/GroupList.jsx +12 -0
  658. package/react/Icons/Groups.jsx +12 -0
  659. package/react/Icons/Growth.jsx +12 -0
  660. package/react/Icons/Hand.jsx +12 -0
  661. package/react/Icons/Heart.jsx +12 -0
  662. package/react/Icons/Help.jsx +12 -0
  663. package/react/Icons/HelpOutlined.jsx +12 -0
  664. package/react/Icons/History.jsx +12 -0
  665. package/react/Icons/Home.jsx +12 -0
  666. package/react/Icons/HomePermissions.jsx +13 -0
  667. package/react/Icons/Hourglass.jsx +12 -0
  668. package/react/Icons/IconCheckAnimated.jsx +29 -0
  669. package/react/Icons/IconCrossAnimated.jsx +44 -0
  670. package/react/Icons/Identities.jsx +12 -0
  671. package/react/Icons/Image.jsx +12 -0
  672. package/react/Icons/Info.jsx +12 -0
  673. package/react/Icons/InfoOutlined.jsx +12 -0
  674. package/react/Icons/Justice.jsx +12 -0
  675. package/react/Icons/Key.jsx +12 -0
  676. package/react/Icons/Key2.jsx +23 -0
  677. package/react/Icons/Keychain.jsx +12 -0
  678. package/react/Icons/Konnectors.jsx +12 -0
  679. package/react/Icons/KonnectorsResult.jsx +12 -0
  680. package/react/Icons/Label.jsx +12 -0
  681. package/react/Icons/LabelOutlined.jsx +12 -0
  682. package/react/Icons/Laptop.jsx +12 -0
  683. package/react/Icons/Laudry.jsx +13 -0
  684. package/react/Icons/Left.jsx +12 -0
  685. package/react/Icons/Library.jsx +13 -0
  686. package/react/Icons/Lightbulb.jsx +12 -0
  687. package/react/Icons/Lightning.jsx +12 -0
  688. package/react/Icons/Link.jsx +12 -0
  689. package/react/Icons/LinkOut.jsx +12 -0
  690. package/react/Icons/List.jsx +12 -0
  691. package/react/Icons/ListMin.jsx +12 -0
  692. package/react/Icons/Location.jsx +13 -0
  693. package/react/Icons/LocationPermissions.jsx +12 -0
  694. package/react/Icons/Lock.jsx +12 -0
  695. package/react/Icons/LockScreen.jsx +12 -0
  696. package/react/Icons/Logout.jsx +12 -0
  697. package/react/Icons/LogoutLarge.jsx +12 -0
  698. package/react/Icons/MagicTrick.jsx +12 -0
  699. package/react/Icons/Magnet.jsx +15 -0
  700. package/react/Icons/Magnifier.jsx +12 -0
  701. package/react/Icons/Mail.jsx +67 -0
  702. package/react/Icons/MailText.jsx +73 -0
  703. package/react/Icons/Matrix.jsx +12 -0
  704. package/react/Icons/Merge.jsx +12 -0
  705. package/react/Icons/Moped.jsx +13 -0
  706. package/react/Icons/Mosaic.jsx +16 -0
  707. package/react/Icons/MosaicMin.jsx +12 -0
  708. package/react/Icons/Motorcycle.jsx +12 -0
  709. package/react/Icons/Mountain.jsx +12 -0
  710. package/react/Icons/Movement.jsx +12 -0
  711. package/react/Icons/MovementIn.jsx +12 -0
  712. package/react/Icons/MovementOut.jsx +12 -0
  713. package/react/Icons/Moveto.jsx +12 -0
  714. package/react/Icons/MultiFiles.jsx +12 -0
  715. package/react/Icons/Music.jsx +12 -0
  716. package/react/Icons/New.jsx +12 -0
  717. package/react/Icons/Next.jsx +12 -0
  718. package/react/Icons/Note.jsx +13 -0
  719. package/react/Icons/Notes.jsx +69 -0
  720. package/react/Icons/NotesText.jsx +88 -0
  721. package/react/Icons/NotificationEmail.jsx +12 -0
  722. package/react/Icons/Notifications.jsx +12 -0
  723. package/react/Icons/Number.jsx +12 -0
  724. package/react/Icons/Offline.jsx +12 -0
  725. package/react/Icons/Online.jsx +12 -0
  726. package/react/Icons/OnlyOffice.jsx +71 -0
  727. package/react/Icons/Openapp.jsx +12 -0
  728. package/react/Icons/Openwith.jsx +12 -0
  729. package/react/Icons/Opinions.jsx +12 -0
  730. package/react/Icons/Palette.jsx +13 -0
  731. package/react/Icons/Paper.jsx +14 -0
  732. package/react/Icons/Paperplane.jsx +12 -0
  733. package/react/Icons/Papers.jsx +66 -0
  734. package/react/Icons/Pass.jsx +65 -0
  735. package/react/Icons/PassText.jsx +15 -0
  736. package/react/Icons/Password.jsx +12 -0
  737. package/react/Icons/Passwords.jsx +12 -0
  738. package/react/Icons/Pen.jsx +12 -0
  739. package/react/Icons/People.jsx +12 -0
  740. package/react/Icons/Peoples.jsx +12 -0
  741. package/react/Icons/Percent.jsx +12 -0
  742. package/react/Icons/PercentCircle.jsx +12 -0
  743. package/react/Icons/Permissions.jsx +12 -0
  744. package/react/Icons/PersonAdd.jsx +12 -0
  745. package/react/Icons/PersonalData.jsx +12 -0
  746. package/react/Icons/Phone.jsx +12 -0
  747. package/react/Icons/PhoneDownload.jsx +13 -0
  748. package/react/Icons/PhoneUpload.jsx +12 -0
  749. package/react/Icons/Photos.jsx +104 -0
  750. package/react/Icons/PhotosAlbum.jsx +12 -0
  751. package/react/Icons/PhotosSettings.jsx +16 -0
  752. package/react/Icons/PhotosText.jsx +103 -0
  753. package/react/Icons/PieChart.jsx +12 -0
  754. package/react/Icons/Pin.jsx +12 -0
  755. package/react/Icons/Plane.jsx +12 -0
  756. package/react/Icons/Plus.jsx +12 -0
  757. package/react/Icons/PlusSmall.jsx +12 -0
  758. package/react/Icons/PopInside.jsx +12 -0
  759. package/react/Icons/Previous.jsx +12 -0
  760. package/react/Icons/Printer.jsx +13 -0
  761. package/react/Icons/Profile.jsx +16 -0
  762. package/react/Icons/Qualify.jsx +12 -0
  763. package/react/Icons/RadioChecked.jsx +13 -0
  764. package/react/Icons/RadioUnchecked.jsx +12 -0
  765. package/react/Icons/Refresh.jsx +12 -0
  766. package/react/Icons/Relationship.jsx +14 -0
  767. package/react/Icons/Remboursement.jsx +12 -0
  768. package/react/Icons/Rename.jsx +12 -0
  769. package/react/Icons/Repare.jsx +12 -0
  770. package/react/Icons/Reply.jsx +12 -0
  771. package/react/Icons/Restaurant.jsx +12 -0
  772. package/react/Icons/Restore.jsx +12 -0
  773. package/react/Icons/RestoreStraight.jsx +12 -0
  774. package/react/Icons/Right.jsx +12 -0
  775. package/react/Icons/Rise.jsx +12 -0
  776. package/react/Icons/RotateLeft.jsx +12 -0
  777. package/react/Icons/RotateRight.jsx +12 -0
  778. package/react/Icons/SadCozy.jsx +15 -0
  779. package/react/Icons/Safe.jsx +12 -0
  780. package/react/Icons/SafePermissions.jsx +16 -0
  781. package/react/Icons/School.jsx +12 -0
  782. package/react/Icons/Scooter.jsx +13 -0
  783. package/react/Icons/Security.jsx +12 -0
  784. package/react/Icons/SelectAll.jsx +12 -0
  785. package/react/Icons/Server.jsx +12 -0
  786. package/react/Icons/Setting.jsx +12 -0
  787. package/react/Icons/Settings.jsx +16 -0
  788. package/react/Icons/Share.jsx +12 -0
  789. package/react/Icons/ShareCircle.jsx +15 -0
  790. package/react/Icons/ShareGrey08.jsx +15 -0
  791. package/react/Icons/ShareIos.jsx +15 -0
  792. package/react/Icons/Sharings.jsx +12 -0
  793. package/react/Icons/Shield.jsx +12 -0
  794. package/react/Icons/Shop.jsx +12 -0
  795. package/react/Icons/Sinister.jsx +12 -0
  796. package/react/Icons/Sound.jsx +12 -0
  797. package/react/Icons/Spinner.jsx +12 -0
  798. package/react/Icons/SportBag.jsx +16 -0
  799. package/react/Icons/Stack.jsx +12 -0
  800. package/react/Icons/Star.jsx +12 -0
  801. package/react/Icons/StarOutline.jsx +12 -0
  802. package/react/Icons/Stats.jsx +12 -0
  803. package/react/Icons/Stop.jsx +12 -0
  804. package/react/Icons/Store.jsx +67 -0
  805. package/react/Icons/StoreText.jsx +88 -0
  806. package/react/Icons/Subway.jsx +12 -0
  807. package/react/Icons/Support.jsx +12 -0
  808. package/react/Icons/Swap.jsx +12 -0
  809. package/react/Icons/Sync.jsx +12 -0
  810. package/react/Icons/SyncCozy.jsx +16 -0
  811. package/react/Icons/Tab.jsx +12 -0
  812. package/react/Icons/Tag.jsx +13 -0
  813. package/react/Icons/Tags.jsx +17 -0
  814. package/react/Icons/Target.jsx +12 -0
  815. package/react/Icons/Task.jsx +12 -0
  816. package/react/Icons/TaskToEffectuate.jsx +17 -0
  817. package/react/Icons/Team.jsx +13 -0
  818. package/react/Icons/Telecom.jsx +13 -0
  819. package/react/Icons/Telephone.jsx +12 -0
  820. package/react/Icons/Text.jsx +12 -0
  821. package/react/Icons/TextInfo.jsx +12 -0
  822. package/react/Icons/ToTheCloud.jsx +12 -0
  823. package/react/Icons/Top.jsx +12 -0
  824. package/react/Icons/TopSelect.jsx +12 -0
  825. package/react/Icons/Train.jsx +13 -0
  826. package/react/Icons/Tram.jsx +12 -0
  827. package/react/Icons/Trash.jsx +12 -0
  828. package/react/Icons/TrashDuotone.jsx +12 -0
  829. package/react/Icons/Triggers.jsx +12 -0
  830. package/react/Icons/Trophy.jsx +12 -0
  831. package/react/Icons/TwakeText.jsx +14 -0
  832. package/react/Icons/TwakeWorkplace.jsx +75 -0
  833. package/react/Icons/Uncloud.jsx +12 -0
  834. package/react/Icons/Unknow.jsx +12 -0
  835. package/react/Icons/Unlink.jsx +12 -0
  836. package/react/Icons/Unlock.jsx +12 -0
  837. package/react/Icons/Up.jsx +12 -0
  838. package/react/Icons/Upload.jsx +12 -0
  839. package/react/Icons/Versioning.jsx +12 -0
  840. package/react/Icons/Videos.jsx +12 -0
  841. package/react/Icons/Walk.jsx +12 -0
  842. package/react/Icons/Wallet.jsx +12 -0
  843. package/react/Icons/WalletAdd.jsx +15 -0
  844. package/react/Icons/WalletNew.jsx +15 -0
  845. package/react/Icons/Warn.jsx +13 -0
  846. package/react/Icons/Warning.jsx +12 -0
  847. package/react/Icons/WarningCircle.jsx +12 -0
  848. package/react/Icons/Water.jsx +12 -0
  849. package/react/Icons/Work.jsx +12 -0
  850. package/react/Icons/WorkplaceText.jsx +15 -0
  851. package/react/Icons/WrenchCircle.jsx +21 -0
  852. package/react/InfosBadge/Readme.md +14 -0
  853. package/react/InfosBadge/index.jsx +31 -0
  854. package/react/Input/index.js +3 -0
  855. package/react/InputAdornment/index.js +3 -0
  856. package/react/InputBase/index.js +3 -0
  857. package/react/InputGroup/Readme.md +110 -0
  858. package/react/InputGroup/index.jsx +68 -0
  859. package/react/InputGroup/styles.styl +27 -0
  860. package/react/InputLabel/index.js +3 -0
  861. package/react/IntentDialogOpener/IntentDialogOpener.jsx +109 -0
  862. package/react/IntentDialogOpener/IntentDialogOpener.md +25 -0
  863. package/react/IntentDialogOpener/index.js +1 -0
  864. package/react/IntentHeader/index.jsx +34 -0
  865. package/react/IntentHeader/styles.styl +25 -0
  866. package/react/IntentIframe/IntentIframe.jsx +110 -0
  867. package/react/IntentIframe/Readme.md +80 -0
  868. package/react/IntentIframe/index.js +1 -0
  869. package/react/IntentIframe/styles.styl +21 -0
  870. package/react/IntentWrapper/index.jsx +42 -0
  871. package/react/IntentWrapper/styles.styl +14 -0
  872. package/react/Label/Readme.md +38 -0
  873. package/react/Label/index.jsx +41 -0
  874. package/react/Label/styles.styl +7 -0
  875. package/react/Labs/CollectionField/Readme.md +41 -0
  876. package/react/Labs/CollectionField/index.jsx +140 -0
  877. package/react/Labs/CollectionField/styles.styl +15 -0
  878. package/react/Labs/ExperimentalDialog/index.jsx +31 -0
  879. package/react/Labs/IconGrid/Readme.md +18 -0
  880. package/react/Labs/IconGrid/index.jsx +9 -0
  881. package/react/Labs/IconGrid/styles.styl +5 -0
  882. package/react/Labs/PasswordInput/Readme.md +44 -0
  883. package/react/Labs/PasswordInput/helpers.js +66 -0
  884. package/react/Labs/PasswordInput/helpers.spec.js +27 -0
  885. package/react/Labs/PasswordInput/index.jsx +81 -0
  886. package/react/Labs/PasswordInput/styles.styl +49 -0
  887. package/react/Labs/Readme.md +4 -0
  888. package/react/Labs/index.jsx +0 -0
  889. package/react/Layout/Layout.jsx +109 -0
  890. package/react/Layout/Layout.md +204 -0
  891. package/react/Layout/index.js +1 -0
  892. package/react/Layout/styles.styl +10 -0
  893. package/react/LinearProgress/index.js +3 -0
  894. package/react/Link/index.js +3 -0
  895. package/react/List/Readme.md +280 -0
  896. package/react/List/index.js +11 -0
  897. package/react/ListItem/ExpandedAttributes/ExpandedAttribute.jsx +39 -0
  898. package/react/ListItem/ExpandedAttributes/helpers.js +214 -0
  899. package/react/ListItem/ExpandedAttributes/helpers.spec.js +175 -0
  900. package/react/ListItem/ExpandedAttributes/index.jsx +61 -0
  901. package/react/ListItem/ListItemBase/Renaming/RenameDialog.jsx +37 -0
  902. package/react/ListItem/ListItemBase/Renaming/RenameInput.jsx +134 -0
  903. package/react/ListItem/ListItemBase/Renaming/helpers.js +35 -0
  904. package/react/ListItem/ListItemBase/index.jsx +115 -0
  905. package/react/ListItem/ListItemByDoc/index.jsx +103 -0
  906. package/react/ListItem/ListItemContact/helpers.js +23 -0
  907. package/react/ListItem/ListItemContact/helpers.spec.js +35 -0
  908. package/react/ListItem/ListItemContact/index.jsx +68 -0
  909. package/react/ListItem/ListItemContact/useActions.jsx +17 -0
  910. package/react/ListItem/ListItemFile/ExpirationAnnotation.jsx +39 -0
  911. package/react/ListItem/ListItemFile/ItemIcon.jsx +49 -0
  912. package/react/ListItem/ListItemFile/PrimaryText.jsx +39 -0
  913. package/react/ListItem/ListItemFile/SecondaryText.jsx +36 -0
  914. package/react/ListItem/ListItemFile/index.jsx +75 -0
  915. package/react/ListItem/Readme.md +211 -0
  916. package/react/ListItem/hoc/withListItemLocales.jsx +14 -0
  917. package/react/ListItem/index.js +129 -0
  918. package/react/ListItem/locales/en.json +75 -0
  919. package/react/ListItem/locales/fr.json +75 -0
  920. package/react/ListItem/locales/ru.json +75 -0
  921. package/react/ListItem/locales/vi.json +75 -0
  922. package/react/ListItemAvatar/index.js +3 -0
  923. package/react/ListItemIcon/index.js +26 -0
  924. package/react/ListItemSecondaryAction/index.js +3 -0
  925. package/react/ListItemText/Readme.md +28 -0
  926. package/react/ListItemText/index.jsx +90 -0
  927. package/react/ListSubheader/Readme.md +34 -0
  928. package/react/ListSubheader/index.js +44 -0
  929. package/react/LoadMore/Readme.md +37 -0
  930. package/react/LoadMore/index.jsx +62 -0
  931. package/react/Markdown/Readme.md +71 -0
  932. package/react/Markdown/index.jsx +32 -0
  933. package/react/Menu/Readme.md +114 -0
  934. package/react/Menu/index.js +3 -0
  935. package/react/MenuItem/index.js +22 -0
  936. package/react/MenuList/index.js +3 -0
  937. package/react/MidEllipsis/Readme.md +11 -0
  938. package/react/MidEllipsis/index.jsx +51 -0
  939. package/react/MobileStepper/Readme.md +43 -0
  940. package/react/MobileStepper/index.js +3 -0
  941. package/react/Modal/index.js +3 -0
  942. package/react/MuiCozyTheme/Divider/index.jsx +16 -0
  943. package/react/MuiCozyTheme/List/index.jsx +16 -0
  944. package/react/MuiCozyTheme/ListItem/index.jsx +16 -0
  945. package/react/MuiCozyTheme/ListItemIcon/index.jsx +16 -0
  946. package/react/MuiCozyTheme/ListItemSecondaryAction/index.jsx +16 -0
  947. package/react/MuiCozyTheme/Readme.md +10 -0
  948. package/react/MuiCozyTheme/helpers.js +216 -0
  949. package/react/MuiCozyTheme/index.jsx +23 -0
  950. package/react/MuiCozyTheme/makePalette.js +197 -0
  951. package/react/MuiCozyTheme/makeTheme.jsx +66 -0
  952. package/react/MuiCozyTheme/makeTypography.js +78 -0
  953. package/react/MuiCozyTheme/overrides/makeDarkInvertedOverrides.js +5 -0
  954. package/react/MuiCozyTheme/overrides/makeDarkNormalOverrides.js +5 -0
  955. package/react/MuiCozyTheme/overrides/makeLightInvertedOverrides.js +65 -0
  956. package/react/MuiCozyTheme/overrides/makeLightNormalOverrides.js +1256 -0
  957. package/react/MuiCozyTheme/theme.jsx +30 -0
  958. package/react/MuiTabs/Readme.md +40 -0
  959. package/react/MuiTabs/index.jsx +17 -0
  960. package/react/NativeSelect/index.js +3 -0
  961. package/react/Nav/index.jsx +163 -0
  962. package/react/Nav/locales/en.json +6 -0
  963. package/react/Nav/locales/fr.json +6 -0
  964. package/react/Nav/locales/ru.json +6 -0
  965. package/react/Nav/locales/vi.json +6 -0
  966. package/react/Nav/locales/withNavLocales.jsx +14 -0
  967. package/react/Nav/styles.styl +27 -0
  968. package/react/NavigationList/Readme.md +148 -0
  969. package/react/NavigationList/index.jsx +53 -0
  970. package/react/NavigationList/styles.styl +2 -0
  971. package/react/NestedSelect/BottomSheet.jsx +48 -0
  972. package/react/NestedSelect/ItemRow.jsx +96 -0
  973. package/react/NestedSelect/Modal.jsx +63 -0
  974. package/react/NestedSelect/NestedSelect.jsx +276 -0
  975. package/react/NestedSelect/NestedSelect.md +220 -0
  976. package/react/NestedSelect/NestedSelect.spec.jsx +199 -0
  977. package/react/NestedSelect/NestedSelectResponsive.jsx +15 -0
  978. package/react/NestedSelect/helpers.js +35 -0
  979. package/react/NestedSelect/helpers.spec.js +36 -0
  980. package/react/NestedSelect/index.jsx +4 -0
  981. package/react/NestedSelect/styles.styl +20 -0
  982. package/react/NestedSelect/testing.js +3 -0
  983. package/react/NoSsr/index.js +3 -0
  984. package/react/OrderedList/Readme.md +9 -0
  985. package/react/OrderedList/index.jsx +19 -0
  986. package/react/OrderedList/styles.styl +19 -0
  987. package/react/OutlinedInput/index.js +3 -0
  988. package/react/Page/Readme.md +15 -0
  989. package/react/Page/index.jsx +111 -0
  990. package/react/Page/keyboard.js +104 -0
  991. package/react/Page/styles.styl +9 -0
  992. package/react/Panel/index.jsx +12 -0
  993. package/react/Panel/styles.styl +10 -0
  994. package/react/Paper/Readme.md +54 -0
  995. package/react/Paper/index.js +3 -0
  996. package/react/PasswordExample/Readme.md +13 -0
  997. package/react/PasswordExample/index.jsx +82 -0
  998. package/react/PasswordExample/styles.styl +7 -0
  999. package/react/PasswordField/Readme.md +8 -0
  1000. package/react/PasswordField/index.jsx +56 -0
  1001. package/react/PasswordField/locales/en.json +6 -0
  1002. package/react/PasswordField/locales/fr.json +6 -0
  1003. package/react/PasswordField/locales/ru.json +6 -0
  1004. package/react/PasswordField/locales/vi.json +6 -0
  1005. package/react/Paywall/MaxAccountsByKonnectorPaywall.jsx +32 -0
  1006. package/react/Paywall/MaxAccountsPaywall.jsx +27 -0
  1007. package/react/Paywall/MaxDaysToCapturePaywall.jsx +27 -0
  1008. package/react/Paywall/MaxPapersPaywall.jsx +29 -0
  1009. package/react/Paywall/OnlyOfficePaywall.jsx +24 -0
  1010. package/react/Paywall/PasswordSharingPaywall.jsx +20 -0
  1011. package/react/Paywall/Paywall.jsx +124 -0
  1012. package/react/Paywall/Paywall.spec.jsx +230 -0
  1013. package/react/Paywall/QuotaPaywall.jsx +18 -0
  1014. package/react/Paywall/Readme.md +137 -0
  1015. package/react/Paywall/helpers.js +22 -0
  1016. package/react/Paywall/howto.md +28 -0
  1017. package/react/Paywall/index.jsx +7 -0
  1018. package/react/Paywall/locales/en.json +95 -0
  1019. package/react/Paywall/locales/fr.json +95 -0
  1020. package/react/Paywall/locales/ru.json +95 -0
  1021. package/react/Paywall/locales/vi.json +95 -0
  1022. package/react/Paywall/locales/withPaywallLocales.jsx +14 -0
  1023. package/react/PieChart/Readme.md +53 -0
  1024. package/react/PieChart/index.jsx +141 -0
  1025. package/react/PieChart/index.spec.jsx +123 -0
  1026. package/react/PointerAlert/Readme.md +167 -0
  1027. package/react/PointerAlert/index.jsx +113 -0
  1028. package/react/Popover/index.js +3 -0
  1029. package/react/Popper/index.js +3 -0
  1030. package/react/Popper/testing.js +21 -0
  1031. package/react/Popup/Readme.md +22 -0
  1032. package/react/Popup/index.jsx +154 -0
  1033. package/react/Popup/index.spec.jsx +105 -0
  1034. package/react/PopupOpener/Readme.md +8 -0
  1035. package/react/PopupOpener/index.jsx +56 -0
  1036. package/react/Portal/index.jsx +8 -0
  1037. package/react/Progress/Readme.md +31 -0
  1038. package/react/Progress/index.js +2 -0
  1039. package/react/ProgressionBanner/Readme.md +30 -0
  1040. package/react/ProgressionBanner/index.jsx +68 -0
  1041. package/react/QualificationGrid/Readme.md +25 -0
  1042. package/react/QualificationGrid/helpers.js +7 -0
  1043. package/react/QualificationGrid/index.jsx +87 -0
  1044. package/react/QualificationGrid/locales/en.json +15 -0
  1045. package/react/QualificationGrid/locales/fr.json +15 -0
  1046. package/react/QualificationGrid/locales/ru.json +15 -0
  1047. package/react/QualificationGrid/locales/vi.json +15 -0
  1048. package/react/QualificationGrid/locales/withLocales.jsx +14 -0
  1049. package/react/QualificationIcon/Readme.md +14 -0
  1050. package/react/QualificationIcon/index.jsx +105 -0
  1051. package/react/QualificationItem/Readme.md +8 -0
  1052. package/react/QualificationItem/index.jsx +64 -0
  1053. package/react/QualificationModal/Readme.md +28 -0
  1054. package/react/QualificationModal/helpers.js +63 -0
  1055. package/react/QualificationModal/helpers.spec.js +61 -0
  1056. package/react/QualificationModal/index.jsx +71 -0
  1057. package/react/QualificationModal/locales/en.json +6 -0
  1058. package/react/QualificationModal/locales/fr.json +6 -0
  1059. package/react/QualificationModal/locales/index.jsx +11 -0
  1060. package/react/QualificationModal/locales/ru.json +6 -0
  1061. package/react/QualificationModal/locales/vi.json +6 -0
  1062. package/react/RadioGroup/index.js +3 -0
  1063. package/react/Radios/Readme.md +125 -0
  1064. package/react/Radios/index.jsx +22 -0
  1065. package/react/RootRef/index.js +3 -0
  1066. package/react/ScopedCssBaseline/index.js +3 -0
  1067. package/react/SearchBar/Readme.md +87 -0
  1068. package/react/SearchBar/index.jsx +298 -0
  1069. package/react/SearchBar/locales/en.json +5 -0
  1070. package/react/SearchBar/locales/fr.json +5 -0
  1071. package/react/SearchBar/locales/ru.json +5 -0
  1072. package/react/SearchBar/locales/vi.json +5 -0
  1073. package/react/SearchBar/locales/withOnlyLocales.jsx +14 -0
  1074. package/react/Select/index.js +3 -0
  1075. package/react/SelectBox/ControlDefault.jsx +25 -0
  1076. package/react/SelectBox/Readme.md +382 -0
  1077. package/react/SelectBox/SelectBox.jsx +369 -0
  1078. package/react/SelectBox/SelectBoxWithFixedOptions.jsx +54 -0
  1079. package/react/SelectBox/index.jsx +13 -0
  1080. package/react/SelectBox/styles.styl +98 -0
  1081. package/react/SelectionBar/Readme.md +86 -0
  1082. package/react/SelectionBar/SelectionBarAction.jsx +71 -0
  1083. package/react/SelectionBar/SelectionBarMore.jsx +75 -0
  1084. package/react/SelectionBar/helpers.js +22 -0
  1085. package/react/SelectionBar/helpers.spec.js +54 -0
  1086. package/react/SelectionBar/index.jsx +178 -0
  1087. package/react/SelectionBar/styles.styl +6 -0
  1088. package/react/SelectionBar/useMaxActions.jsx +36 -0
  1089. package/react/ShortcutTile/index.tsx +61 -0
  1090. package/react/Sidebar/Readme.md +65 -0
  1091. package/react/Sidebar/index.jsx +41 -0
  1092. package/react/Sidebar/styles.styl +4 -0
  1093. package/react/Skeleton/index.js +3 -0
  1094. package/react/Skeletons/ListItemSkeleton.jsx +42 -0
  1095. package/react/Skeletons/ListSkeleton.jsx +39 -0
  1096. package/react/Skeletons/Readme.md +50 -0
  1097. package/react/Skeletons/index.js +2 -0
  1098. package/react/Slide/index.js +3 -0
  1099. package/react/Slider/index.js +3 -0
  1100. package/react/Snackbar/Readme.md +86 -0
  1101. package/react/Snackbar/index.jsx +25 -0
  1102. package/react/SnackbarContent/index.js +3 -0
  1103. package/react/Spinner/Readme.md +68 -0
  1104. package/react/Spinner/index.jsx +76 -0
  1105. package/react/Spinner/styles.styl +32 -0
  1106. package/react/SquareAppIcon/Readme.md +185 -0
  1107. package/react/SquareAppIcon/SquareAppIcon.spec.js +88 -0
  1108. package/react/SquareAppIcon/__snapshots__/SquareAppIcon.spec.js.snap +474 -0
  1109. package/react/SquareAppIcon/constants.json +6 -0
  1110. package/react/SquareAppIcon/index.jsx +289 -0
  1111. package/react/SquareAppIcon/styles.styl +141 -0
  1112. package/react/Stack/Readme.md +67 -0
  1113. package/react/Stack/index.jsx +27 -0
  1114. package/react/Stack/styles.styl +6 -0
  1115. package/react/Step/index.js +3 -0
  1116. package/react/StepButton/index.js +3 -0
  1117. package/react/StepConnector/index.js +3 -0
  1118. package/react/StepContent/index.js +3 -0
  1119. package/react/StepIcon/index.js +3 -0
  1120. package/react/StepLabel/index.js +3 -0
  1121. package/react/Stepper/Readme.md +50 -0
  1122. package/react/Stepper/index.jsx +4 -0
  1123. package/react/Stepper/testing.jsx +43 -0
  1124. package/react/Storage/Readme.md +46 -0
  1125. package/react/Storage/StorageButton.jsx +34 -0
  1126. package/react/Storage/StorageProgress.jsx +52 -0
  1127. package/react/Storage/index.jsx +41 -0
  1128. package/react/Storage/locales/en.json +7 -0
  1129. package/react/Storage/locales/fr.json +7 -0
  1130. package/react/Storage/locales/index.jsx +11 -0
  1131. package/react/Storage/locales/ru.json +7 -0
  1132. package/react/Storage/locales/vi.json +7 -0
  1133. package/react/SvgIcon/index.js +3 -0
  1134. package/react/SwipeableDrawer/index.js +3 -0
  1135. package/react/Switch/Readme.md +121 -0
  1136. package/react/Switch/index.jsx +19 -0
  1137. package/react/Tab/index.js +3 -0
  1138. package/react/Table/Readme.md +130 -0
  1139. package/react/Table/Virtualized/Cell.jsx +69 -0
  1140. package/react/Table/Virtualized/Dnd/CustomDrag/CustomDragLayer.jsx +45 -0
  1141. package/react/Table/Virtualized/Dnd/CustomDrag/DragPreview.jsx +43 -0
  1142. package/react/Table/Virtualized/Dnd/CustomDrag/DragPreviewWrapper.jsx +52 -0
  1143. package/react/Table/Virtualized/Dnd/DnDConfigWrapper.jsx +48 -0
  1144. package/react/Table/Virtualized/Dnd/TableRow.jsx +100 -0
  1145. package/react/Table/Virtualized/Dnd/index.jsx +35 -0
  1146. package/react/Table/Virtualized/Dnd/virtuosoComponents.jsx +25 -0
  1147. package/react/Table/Virtualized/FixedHeaderContent.jsx +64 -0
  1148. package/react/Table/Virtualized/HeadCell.jsx +53 -0
  1149. package/react/Table/Virtualized/RowContent.jsx +52 -0
  1150. package/react/Table/Virtualized/TableRow.jsx +20 -0
  1151. package/react/Table/Virtualized/helpers.js +43 -0
  1152. package/react/Table/Virtualized/helpers.spec.js +108 -0
  1153. package/react/Table/Virtualized/index.jsx +151 -0
  1154. package/react/Table/Virtualized/virtuosoComponents.jsx +35 -0
  1155. package/react/Table/index.js +3 -0
  1156. package/react/TableBody/index.js +3 -0
  1157. package/react/TableCell/index.js +3 -0
  1158. package/react/TableContainer/index.js +19 -0
  1159. package/react/TableFooter/index.js +3 -0
  1160. package/react/TableHead/index.js +3 -0
  1161. package/react/TablePagination/index.js +3 -0
  1162. package/react/TableRow/index.js +18 -0
  1163. package/react/TableSortLabel/index.js +3 -0
  1164. package/react/Tabs/Readme.md +100 -0
  1165. package/react/Tabs/index.jsx +46 -0
  1166. package/react/TextField/MobileSelect.jsx +168 -0
  1167. package/react/TextField/Readme.md +264 -0
  1168. package/react/TextField/helpers.js +23 -0
  1169. package/react/TextField/index.jsx +54 -0
  1170. package/react/Textarea/Readme.md +58 -0
  1171. package/react/Textarea/index.jsx +58 -0
  1172. package/react/Textarea/styles.styl +13 -0
  1173. package/react/TextareaAutosize/index.js +3 -0
  1174. package/react/Thumbnail/Readme.md +31 -0
  1175. package/react/Thumbnail/Thumbnail.styl +51 -0
  1176. package/react/Thumbnail/index.jsx +41 -0
  1177. package/react/Tile/index.jsx +98 -0
  1178. package/react/Tile/styles.styl +122 -0
  1179. package/react/Timeline/index.js +3 -0
  1180. package/react/TimelineConnector/index.js +3 -0
  1181. package/react/TimelineContent/index.js +3 -0
  1182. package/react/TimelineDot/index.js +3 -0
  1183. package/react/TimelineItem/index.js +3 -0
  1184. package/react/TimelineOppositeContent/index.js +3 -0
  1185. package/react/TimelineSeparator/index.js +3 -0
  1186. package/react/Toggle/index.jsx +50 -0
  1187. package/react/Toggle/styles.styl +39 -0
  1188. package/react/ToggleButton/Readme.md +60 -0
  1189. package/react/ToggleButton/index.js +26 -0
  1190. package/react/ToggleButtonGroup/Readme.md +90 -0
  1191. package/react/ToggleButtonGroup/index.js +3 -0
  1192. package/react/Toolbar/index.js +3 -0
  1193. package/react/Tooltip/Readme.md +30 -0
  1194. package/react/Tooltip/index.jsx +7 -0
  1195. package/react/Typography/Readme.md +44 -0
  1196. package/react/Typography/index.jsx +25 -0
  1197. package/react/UnorderedList/Readme.md +9 -0
  1198. package/react/UnorderedList/index.jsx +19 -0
  1199. package/react/UnorderedList/styles.styl +22 -0
  1200. package/react/UploadQueue/FileUploadProgress.jsx +49 -0
  1201. package/react/UploadQueue/Item.jsx +99 -0
  1202. package/react/UploadQueue/Pending.jsx +12 -0
  1203. package/react/UploadQueue/Readme.md +95 -0
  1204. package/react/UploadQueue/RemainingTime.jsx +26 -0
  1205. package/react/UploadQueue/helpers.js +3 -0
  1206. package/react/UploadQueue/index.jsx +160 -0
  1207. package/react/UploadQueue/index.spec.jsx +162 -0
  1208. package/react/UploadQueue/locales/en.json +10 -0
  1209. package/react/UploadQueue/locales/es.json +10 -0
  1210. package/react/UploadQueue/locales/fr.json +10 -0
  1211. package/react/UploadQueue/locales/ru.json +10 -0
  1212. package/react/UploadQueue/locales/vi.json +10 -0
  1213. package/react/UploadQueue/styles.styl +155 -0
  1214. package/react/UploadQueue/useStatusIcon.js +31 -0
  1215. package/react/Wizard/Readme.md +86 -0
  1216. package/react/Wizard/index.jsx +182 -0
  1217. package/react/Wizard/styles.styl +98 -0
  1218. package/react/Zoom/index.js +3 -0
  1219. package/react/deprecated/ActionMenu/ActionMenuEffects.ts +51 -0
  1220. package/react/deprecated/ActionMenu/ActionMenuHeader.jsx +18 -0
  1221. package/react/deprecated/ActionMenu/ActionMenuItem.jsx +46 -0
  1222. package/react/deprecated/ActionMenu/ActionMenuItemWrapper.jsx +83 -0
  1223. package/react/deprecated/ActionMenu/ActionMenuRadio.jsx +8 -0
  1224. package/react/deprecated/ActionMenu/ActionMenuWithClose.jsx +31 -0
  1225. package/react/deprecated/ActionMenu/ActionMenuWrapper.jsx +42 -0
  1226. package/react/deprecated/ActionMenu/Actions/ActionsItems.jsx +46 -0
  1227. package/react/deprecated/ActionMenu/Actions/call.js +29 -0
  1228. package/react/deprecated/ActionMenu/Actions/emailTo.js +29 -0
  1229. package/react/deprecated/ActionMenu/Actions/helpers.js +63 -0
  1230. package/react/deprecated/ActionMenu/Actions/helpers.spec.js +36 -0
  1231. package/react/deprecated/ActionMenu/Actions/hr.js +10 -0
  1232. package/react/deprecated/ActionMenu/Actions/index.js +7 -0
  1233. package/react/deprecated/ActionMenu/Actions/locales/en.json +8 -0
  1234. package/react/deprecated/ActionMenu/Actions/locales/fr.json +8 -0
  1235. package/react/deprecated/ActionMenu/Actions/locales/ru.json +8 -0
  1236. package/react/deprecated/ActionMenu/Actions/locales/vi.json +8 -0
  1237. package/react/deprecated/ActionMenu/Actions/locales/withActionsLocales.jsx +14 -0
  1238. package/react/deprecated/ActionMenu/Actions/modify.js +41 -0
  1239. package/react/deprecated/ActionMenu/Actions/smsTo.js +29 -0
  1240. package/react/deprecated/ActionMenu/Actions/viewInContacts.js +41 -0
  1241. package/react/deprecated/ActionMenu/NotInlineWrapper.jsx +57 -0
  1242. package/react/deprecated/ActionMenu/Readme.md +180 -0
  1243. package/react/deprecated/ActionMenu/index.jsx +134 -0
  1244. package/react/deprecated/ActionMenu/styles.styl +17 -0
  1245. package/react/deprecated/Alerter/Alert.jsx +116 -0
  1246. package/react/deprecated/Alerter/Readme.md +74 -0
  1247. package/react/deprecated/Alerter/index.jsx +146 -0
  1248. package/react/deprecated/Alerter/styles.styl +37 -0
  1249. package/react/deprecated/BottomDrawer/Readme.md +34 -0
  1250. package/react/deprecated/BottomDrawer/index.jsx +157 -0
  1251. package/react/deprecated/BottomDrawer/styles.styl +18 -0
  1252. package/react/deprecated/Button/Readme.md +240 -0
  1253. package/react/deprecated/Button/index.jsx +180 -0
  1254. package/react/deprecated/Button/styles.styl +85 -0
  1255. package/react/deprecated/ButtonAction/index.jsx +78 -0
  1256. package/react/deprecated/ButtonAction/styles.styl +22 -0
  1257. package/react/deprecated/Chip/Readme.md +161 -0
  1258. package/react/deprecated/Chip/index.jsx +88 -0
  1259. package/react/deprecated/Chip/styles.styl +58 -0
  1260. package/react/deprecated/CompositeRow/Readme.md +102 -0
  1261. package/react/deprecated/CompositeRow/index.jsx +92 -0
  1262. package/react/deprecated/CompositeRow/styles.styl +17 -0
  1263. package/react/deprecated/GridItem/Readme.md +25 -0
  1264. package/react/deprecated/GridItem/index.jsx +25 -0
  1265. package/react/deprecated/GridItem/styles.styl +8 -0
  1266. package/react/deprecated/Infos/Readme.md +37 -0
  1267. package/react/deprecated/Infos/index.jsx +125 -0
  1268. package/react/deprecated/Infos/styles.styl +32 -0
  1269. package/react/deprecated/InfosCarrousel/Readme.md +64 -0
  1270. package/react/deprecated/InfosCarrousel/index.jsx +109 -0
  1271. package/react/deprecated/InfosCarrousel/styles.styl +31 -0
  1272. package/react/deprecated/InlineCard/Readme.md +8 -0
  1273. package/react/deprecated/InlineCard/index.jsx +21 -0
  1274. package/react/deprecated/InlineCard/styles.styl +7 -0
  1275. package/react/deprecated/IntentModal/IntentModal.jsx +98 -0
  1276. package/react/deprecated/IntentModal/IntentModal.md +26 -0
  1277. package/react/deprecated/IntentModal/index.js +1 -0
  1278. package/react/deprecated/IntentModal/styles.styl +23 -0
  1279. package/react/deprecated/IntentOpener/IntentOpener.jsx +95 -0
  1280. package/react/deprecated/IntentOpener/IntentOpener.md +16 -0
  1281. package/react/deprecated/IntentOpener/index.js +1 -0
  1282. package/react/deprecated/Media/Media.jsx +43 -0
  1283. package/react/deprecated/Media/Readme.md +71 -0
  1284. package/react/deprecated/Media/index.js +1 -0
  1285. package/react/deprecated/Media/styles.styl +16 -0
  1286. package/react/deprecated/Menus/Readme.md +25 -0
  1287. package/react/deprecated/Menus/index.js +125 -0
  1288. package/react/deprecated/Modal/AnimatedContentHeader.jsx +9 -0
  1289. package/react/deprecated/Modal/ModalBackButton.jsx +37 -0
  1290. package/react/deprecated/Modal/ModalButtons.jsx +51 -0
  1291. package/react/deprecated/Modal/ModalContent.jsx +122 -0
  1292. package/react/deprecated/Modal/ModalCross.jsx +33 -0
  1293. package/react/deprecated/Modal/ModalEffects.ts +63 -0
  1294. package/react/deprecated/Modal/ModalFooter.jsx +10 -0
  1295. package/react/deprecated/Modal/ModalHeader.jsx +53 -0
  1296. package/react/deprecated/Modal/ModalSection.jsx +18 -0
  1297. package/react/deprecated/Modal/Readme.md +485 -0
  1298. package/react/deprecated/Modal/index.jsx +317 -0
  1299. package/react/deprecated/Modal/styles.styl +114 -0
  1300. package/react/deprecated/NarrowContent/Readme.md +23 -0
  1301. package/react/deprecated/NarrowContent/index.jsx +12 -0
  1302. package/react/deprecated/NarrowContent/styles.styl +2 -0
  1303. package/react/deprecated/Overlay/Readme.md +30 -0
  1304. package/react/deprecated/Overlay/index.jsx +79 -0
  1305. package/react/deprecated/Overlay/styles.styl +4 -0
  1306. package/react/deprecated/PercentageBar/Readme.md +18 -0
  1307. package/react/deprecated/PercentageBar/index.jsx +21 -0
  1308. package/react/deprecated/PercentageBar/styles.styl +11 -0
  1309. package/react/deprecated/PercentageLine/PercentageLine.styl +4 -0
  1310. package/react/deprecated/PercentageLine/Readme.md +9 -0
  1311. package/react/deprecated/PercentageLine/index.jsx +32 -0
  1312. package/react/deprecated/PushClientButton/Readme.md +40 -0
  1313. package/react/deprecated/PushClientButton/index.jsx +46 -0
  1314. package/react/deprecated/PushClientButton/index.spec.jsx +25 -0
  1315. package/react/deprecated/PushClientButton/styles.styl +4 -0
  1316. package/react/deprecated/QuotaAlert/Readme.md +40 -0
  1317. package/react/deprecated/QuotaAlert/index.jsx +18 -0
  1318. package/react/deprecated/Radio/Readme.md +127 -0
  1319. package/react/deprecated/Radio/index.jsx +89 -0
  1320. package/react/deprecated/Radio/index.spec.jsx +173 -0
  1321. package/react/deprecated/Radio/styles.styl +4 -0
  1322. package/react/deprecated/RaisedList/README.md +20 -0
  1323. package/react/deprecated/RaisedList/index.js +21 -0
  1324. package/react/deprecated/Table/Readme.md +32 -0
  1325. package/react/deprecated/Table/index.jsx +61 -0
  1326. package/react/deprecated/Table/styles.styl +22 -0
  1327. package/react/deprecated/ViewStack/ModalStack.jsx +43 -0
  1328. package/react/deprecated/ViewStack/Readme.md +10 -0
  1329. package/react/deprecated/ViewStack/ViewStack.jsx +41 -0
  1330. package/react/deprecated/ViewStack/context.js +4 -0
  1331. package/react/deprecated/ViewStack/example.jsx +41 -0
  1332. package/react/deprecated/ViewStack/hooks.js +30 -0
  1333. package/react/deprecated/ViewStack/index.js +3 -0
  1334. package/react/deprecated/readme.md +1 -0
  1335. package/react/helpers/acceptedTypes.js +50 -0
  1336. package/react/helpers/acceptedTypes.spec.js +86 -0
  1337. package/react/helpers/appDataset.js +46 -0
  1338. package/react/helpers/appDataset.spec.js +73 -0
  1339. package/react/helpers/breakpoints.js +35 -0
  1340. package/react/helpers/createDepreciationLogger.js +10 -0
  1341. package/react/helpers/createDepreciationLogger.spec.js +21 -0
  1342. package/react/helpers/getRandomUUID.js +28 -0
  1343. package/react/helpers/getRandomUUID.spec.js +9 -0
  1344. package/react/helpers/getSafeArea.ts +15 -0
  1345. package/react/helpers/isTesting.js +2 -0
  1346. package/react/helpers/migrateProps.jsx +89 -0
  1347. package/react/helpers/ref.js +11 -0
  1348. package/react/helpers/ref.spec.js +28 -0
  1349. package/react/helpers/useProgression.jsx +30 -0
  1350. package/react/helpers/withBreakpoints.jsx +81 -0
  1351. package/react/helpers/withOffline.jsx +33 -0
  1352. package/react/helpers/withState.jsx +43 -0
  1353. package/react/hooks/useBreakpoints.md +12 -0
  1354. package/react/hooks/useBrowserOffline.js +34 -0
  1355. package/react/hooks/useBrowserOffline.md +9 -0
  1356. package/react/hooks/useBrowserOffline.spec.js +93 -0
  1357. package/react/hooks/useClientErrors.jsx +140 -0
  1358. package/react/hooks/useClientErrors.spec.jsx +94 -0
  1359. package/react/hooks/useConfirmExit/Readme.md +38 -0
  1360. package/react/hooks/useConfirmExit/index.jsx +176 -0
  1361. package/react/hooks/useConfirmExit/index.spec.js +186 -0
  1362. package/react/hooks/useConfirmExit/locales/en.json +8 -0
  1363. package/react/hooks/useConfirmExit/locales/fr.json +8 -0
  1364. package/react/hooks/useConfirmExit/locales/ru.json +8 -0
  1365. package/react/hooks/useConfirmExit/locales/vi.json +8 -0
  1366. package/react/hooks/useCycle.jsx +37 -0
  1367. package/react/hooks/useCycle.md +27 -0
  1368. package/react/hooks/useCycle.spec.jsx +58 -0
  1369. package/react/hooks/useEventListener.js +17 -0
  1370. package/react/hooks/useEventListener.md +13 -0
  1371. package/react/hooks/useEventListener.spec.js +72 -0
  1372. package/react/hooks/useMediaQuery.js +6 -0
  1373. package/react/hooks/usePeriodicRender.js +23 -0
  1374. package/react/hooks/usePeriodicRender.md +17 -0
  1375. package/react/hooks/usePeriodicRender.spec.js +70 -0
  1376. package/react/hooks/useRealtime.js +51 -0
  1377. package/react/hooks/useRealtime.spec.js +42 -0
  1378. package/react/hooks/useScroll.jsx +44 -0
  1379. package/react/hooks/useScroll.md +34 -0
  1380. package/react/hooks/useScroll.spec.jsx +57 -0
  1381. package/react/hooks/useSetFlagshipUi/helpers.js +152 -0
  1382. package/react/hooks/useSetFlagshipUi/useSetFlagshipUI.spec.ts +295 -0
  1383. package/react/hooks/useSetFlagshipUi/useSetFlagshipUI.ts +58 -0
  1384. package/react/index.js +141 -0
  1385. package/react/jestLib/I18n.js +13 -0
  1386. package/react/legacy/Avatar/Readme.md +52 -0
  1387. package/react/legacy/Avatar/helpers.js +17 -0
  1388. package/react/legacy/Avatar/index.jsx +77 -0
  1389. package/react/legacy/Avatar/styles.styl +49 -0
  1390. package/react/legacy/Breadcrumbs/Readme.md +86 -0
  1391. package/react/legacy/Breadcrumbs/index.jsx +93 -0
  1392. package/react/legacy/Breadcrumbs/styles.styl +23 -0
  1393. package/react/legacy/Input/Readme.md +91 -0
  1394. package/react/legacy/Input/index.jsx +78 -0
  1395. package/react/legacy/Input/styles.styl +16 -0
  1396. package/react/legacy/readme.md +1 -0
  1397. package/react/mocks/apps.js +151 -0
  1398. package/react/palette.js +49 -0
  1399. package/react/providers/Alert/Readme.md +69 -0
  1400. package/react/providers/Alert/helpers.js +13 -0
  1401. package/react/providers/Alert/index.jsx +84 -0
  1402. package/react/providers/Breakpoints/Readme.md +64 -0
  1403. package/react/providers/Breakpoints/index.jsx +58 -0
  1404. package/react/providers/Breakpoints/useIframeConnection.jsx +31 -0
  1405. package/react/providers/Breakpoints/useIframeToSendWidth.jsx +33 -0
  1406. package/react/providers/Breakpoints/useParentBreakpoints.jsx +36 -0
  1407. package/react/providers/ConfirmDialog/Readme.md +35 -0
  1408. package/react/providers/ConfirmDialog/index.jsx +60 -0
  1409. package/react/providers/CozyTheme/CozyThemeWithQuery.jsx +25 -0
  1410. package/react/providers/CozyTheme/DumbCozyTheme.jsx +65 -0
  1411. package/react/providers/CozyTheme/Readme.md +88 -0
  1412. package/react/providers/CozyTheme/index.jsx +59 -0
  1413. package/react/providers/CozyTheme/queries.js +14 -0
  1414. package/react/providers/DemoProvider.jsx +43 -0
  1415. package/react/providers/Encrypted/index.jsx +25 -0
  1416. package/react/providers/I18n/createUseI18n.jsx +32 -0
  1417. package/react/providers/I18n/format.jsx +62 -0
  1418. package/react/providers/I18n/format.spec.jsx +73 -0
  1419. package/react/providers/I18n/helpers.js +33 -0
  1420. package/react/providers/I18n/index.jsx +107 -0
  1421. package/react/providers/I18n/index.spec.jsx +135 -0
  1422. package/react/providers/I18n/translate.jsx +28 -0
  1423. package/react/providers/I18n/translation.jsx +42 -0
  1424. package/react/providers/I18n/useExtendI18n.jsx +37 -0
  1425. package/react/providers/I18n/withLocales.jsx +47 -0
  1426. package/react/providers/I18n/withLocales.spec.jsx +58 -0
  1427. package/react/providers/I18n/withOnlyLocales.jsx +38 -0
  1428. package/react/providers/Intent/index.jsx +83 -0
  1429. package/react/providers/Readme.md +1 -0
  1430. package/react/providers/Selection/Readme.md +28 -0
  1431. package/react/providers/Selection/index.jsx +84 -0
  1432. package/react/styles/index.js +1 -0
  1433. package/react/utils/Dnd/CustomDrag/CustomDragLayer.jsx +45 -0
  1434. package/react/utils/Dnd/CustomDrag/DragPreview.jsx +43 -0
  1435. package/react/utils/Dnd/CustomDrag/DragPreviewWrapper.jsx +52 -0
  1436. package/react/utils/Dnd/DnDConfigWrapper.jsx +48 -0
  1437. package/react/utils/color.js +30 -0
  1438. package/react/utils/color.spec.js +8 -0
  1439. package/react/utils/dom.jsx +10 -0
  1440. package/react/utils/index.js +1 -0
  1441. package/react/utils/react.js +48 -0
  1442. package/scripts/screenshots/fetchAllComponents.js +114 -0
  1443. package/scripts/screenshots/helpers.js +39 -0
  1444. package/scripts/screenshots/parser.js +61 -0
  1445. package/scripts/screenshots/prepares.js +58 -0
  1446. package/scripts/screenshots/screenshotComponent.js +68 -0
  1447. package/scripts/screenshots/screenshotKSSStyleguide.js +60 -0
  1448. package/scripts/screenshots/screenshotReactStyleguide.js +74 -0
  1449. package/stylus/cozy-ui/build.styl +16 -0
  1450. package/transpiled/react/Accordion/index.d.ts +2 -0
  1451. package/transpiled/react/Accordion/index.js +2 -0
  1452. package/transpiled/react/AccordionActions/index.d.ts +2 -0
  1453. package/transpiled/react/AccordionActions/index.js +2 -0
  1454. package/transpiled/react/AccordionDetails/index.d.ts +2 -0
  1455. package/transpiled/react/AccordionDetails/index.js +2 -0
  1456. package/transpiled/react/AccordionSummary/AccordionExpandIcon.d.ts +2 -0
  1457. package/transpiled/react/AccordionSummary/AccordionExpandIcon.js +12 -0
  1458. package/transpiled/react/AccordionSummary/index.d.ts +2 -0
  1459. package/transpiled/react/AccordionSummary/index.js +7 -0
  1460. package/transpiled/react/ActionsBar/ResponsiveAction.d.ts +3 -0
  1461. package/transpiled/react/ActionsBar/ResponsiveAction.js +62 -0
  1462. package/transpiled/react/ActionsBar/index.d.ts +2 -0
  1463. package/transpiled/react/ActionsBar/index.js +221 -0
  1464. package/transpiled/react/ActionsBar/locales/withActionsLocales.d.ts +12 -0
  1465. package/transpiled/react/ActionsBar/locales/withActionsLocales.js +24 -0
  1466. package/transpiled/react/ActionsMenu/Actions/addToFavorites.d.ts +14 -0
  1467. package/transpiled/react/ActionsMenu/Actions/addToFavorites.js +144 -0
  1468. package/transpiled/react/ActionsMenu/Actions/call.d.ts +9 -0
  1469. package/transpiled/react/ActionsMenu/Actions/call.js +35 -0
  1470. package/transpiled/react/ActionsMenu/Actions/copyToClipboard.d.ts +12 -0
  1471. package/transpiled/react/ActionsMenu/Actions/copyToClipboard.js +91 -0
  1472. package/transpiled/react/ActionsMenu/Actions/divider.d.ts +5 -0
  1473. package/transpiled/react/ActionsMenu/Actions/divider.js +13 -0
  1474. package/transpiled/react/ActionsMenu/Actions/download.d.ts +15 -0
  1475. package/transpiled/react/ActionsMenu/Actions/download.js +51 -0
  1476. package/transpiled/react/ActionsMenu/Actions/editAttribute.d.ts +11 -0
  1477. package/transpiled/react/ActionsMenu/Actions/editAttribute.js +40 -0
  1478. package/transpiled/react/ActionsMenu/Actions/emailTo.d.ts +9 -0
  1479. package/transpiled/react/ActionsMenu/Actions/emailTo.js +35 -0
  1480. package/transpiled/react/ActionsMenu/Actions/helpers.d.ts +8 -0
  1481. package/transpiled/react/ActionsMenu/Actions/helpers.js +478 -0
  1482. package/transpiled/react/ActionsMenu/Actions/helpers.spec.d.ts +1 -0
  1483. package/transpiled/react/ActionsMenu/Actions/index.d.ts +15 -0
  1484. package/transpiled/react/ActionsMenu/Actions/index.js +15 -0
  1485. package/transpiled/react/ActionsMenu/Actions/locales/withActionsLocales.d.ts +17 -0
  1486. package/transpiled/react/ActionsMenu/Actions/locales/withActionsLocales.js +130 -0
  1487. package/transpiled/react/ActionsMenu/Actions/makeAction.d.ts +17 -0
  1488. package/transpiled/react/ActionsMenu/Actions/makeAction.js +45 -0
  1489. package/transpiled/react/ActionsMenu/Actions/modify.d.ts +11 -0
  1490. package/transpiled/react/ActionsMenu/Actions/modify.js +42 -0
  1491. package/transpiled/react/ActionsMenu/Actions/others.d.ts +6 -0
  1492. package/transpiled/react/ActionsMenu/Actions/others.js +12 -0
  1493. package/transpiled/react/ActionsMenu/Actions/print.d.ts +14 -0
  1494. package/transpiled/react/ActionsMenu/Actions/print.js +144 -0
  1495. package/transpiled/react/ActionsMenu/Actions/removeFromFavorites.d.ts +14 -0
  1496. package/transpiled/react/ActionsMenu/Actions/removeFromFavorites.js +144 -0
  1497. package/transpiled/react/ActionsMenu/Actions/smsTo.d.ts +9 -0
  1498. package/transpiled/react/ActionsMenu/Actions/smsTo.js +35 -0
  1499. package/transpiled/react/ActionsMenu/Actions/viewInContacts.d.ts +11 -0
  1500. package/transpiled/react/ActionsMenu/Actions/viewInContacts.js +42 -0
  1501. package/transpiled/react/ActionsMenu/Actions/viewInDrive.d.ts +11 -0
  1502. package/transpiled/react/ActionsMenu/Actions/viewInDrive.js +50 -0
  1503. package/transpiled/react/ActionsMenu/ActionsItems.d.ts +11 -0
  1504. package/transpiled/react/ActionsMenu/ActionsItems.js +81 -0
  1505. package/transpiled/react/ActionsMenu/ActionsMenuButton.d.ts +5 -0
  1506. package/transpiled/react/ActionsMenu/ActionsMenuButton.js +49 -0
  1507. package/transpiled/react/ActionsMenu/ActionsMenuItem.d.ts +3 -0
  1508. package/transpiled/react/ActionsMenu/ActionsMenuItem.js +37 -0
  1509. package/transpiled/react/ActionsMenu/ActionsMenuMobileHeader.d.ts +3 -0
  1510. package/transpiled/react/ActionsMenu/ActionsMenuMobileHeader.js +31 -0
  1511. package/transpiled/react/ActionsMenu/ActionsMenuWrapper.d.ts +15 -0
  1512. package/transpiled/react/ActionsMenu/ActionsMenuWrapper.js +81 -0
  1513. package/transpiled/react/ActionsMenu/index.d.ts +3 -0
  1514. package/transpiled/react/ActionsMenu/index.js +94 -0
  1515. package/transpiled/react/Alert/index.d.ts +54 -0
  1516. package/transpiled/react/Alert/index.js +138 -0
  1517. package/transpiled/react/AlertTitle/index.d.ts +2 -0
  1518. package/transpiled/react/AlertTitle/index.js +2 -0
  1519. package/transpiled/react/AppBar/index.d.ts +2 -0
  1520. package/transpiled/react/AppBar/index.js +2 -0
  1521. package/transpiled/react/AppIcon/index.d.ts +50 -0
  1522. package/transpiled/react/AppIcon/index.js +234 -0
  1523. package/transpiled/react/AppLinker/index.d.ts +35 -0
  1524. package/transpiled/react/AppLinker/index.js +122 -0
  1525. package/transpiled/react/AppLinker/index.spec.d.ts +1 -0
  1526. package/transpiled/react/AppLinker/native.config.d.ts +1 -0
  1527. package/transpiled/react/AppLinker/native.config.js +1 -0
  1528. package/transpiled/react/AppLinker/native.d.ts +6 -0
  1529. package/transpiled/react/AppLinker/native.js +61 -0
  1530. package/transpiled/react/AppLinker/native.spec.d.ts +1 -0
  1531. package/transpiled/react/AppSections/Sections.d.ts +48 -0
  1532. package/transpiled/react/AppSections/Sections.js +420 -0
  1533. package/transpiled/react/AppSections/_mockApps.d.ts +242 -0
  1534. package/transpiled/react/AppSections/_mockApps.js +202 -0
  1535. package/transpiled/react/AppSections/categories.d.ts +7 -0
  1536. package/transpiled/react/AppSections/categories.js +173 -0
  1537. package/transpiled/react/AppSections/categories.spec.d.ts +1 -0
  1538. package/transpiled/react/AppSections/components/AppsSection.d.ts +20 -0
  1539. package/transpiled/react/AppSections/components/AppsSection.js +89 -0
  1540. package/transpiled/react/AppSections/components/AppsSection.spec.d.ts +1 -0
  1541. package/transpiled/react/AppSections/components/DropdownFilter.d.ts +17 -0
  1542. package/transpiled/react/AppSections/components/DropdownFilter.js +77 -0
  1543. package/transpiled/react/AppSections/constants.d.ts +8 -0
  1544. package/transpiled/react/AppSections/constants.js +8 -0
  1545. package/transpiled/react/AppSections/generateI18nConfig.d.ts +4 -0
  1546. package/transpiled/react/AppSections/generateI18nConfig.js +25 -0
  1547. package/transpiled/react/AppSections/helpers.d.ts +2 -0
  1548. package/transpiled/react/AppSections/helpers.js +12 -0
  1549. package/transpiled/react/AppSections/helpers.spec.d.ts +1 -0
  1550. package/transpiled/react/AppSections/index.d.ts +3 -0
  1551. package/transpiled/react/AppSections/index.js +3 -0
  1552. package/transpiled/react/AppSections/index.spec.d.ts +1 -0
  1553. package/transpiled/react/AppSections/search.d.ts +3 -0
  1554. package/transpiled/react/AppSections/search.js +141 -0
  1555. package/transpiled/react/AppSections/search.spec.d.ts +1 -0
  1556. package/transpiled/react/AppTile/AppTile.spec.d.ts +1 -0
  1557. package/transpiled/react/AppTile/helpers.d.ts +9 -0
  1558. package/transpiled/react/AppTile/helpers.js +22 -0
  1559. package/transpiled/react/AppTile/index.d.ts +33 -0
  1560. package/transpiled/react/AppTile/index.js +141 -0
  1561. package/transpiled/react/AppTitle/index.d.ts +20 -0
  1562. package/transpiled/react/AppTitle/index.js +118 -0
  1563. package/transpiled/react/Avatar/helpers.d.ts +34 -0
  1564. package/transpiled/react/Avatar/helpers.js +49 -0
  1565. package/transpiled/react/Avatar/index.d.ts +27 -0
  1566. package/transpiled/react/Avatar/index.js +79 -0
  1567. package/transpiled/react/AvatarGroup/index.d.ts +17 -0
  1568. package/transpiled/react/AvatarGroup/index.js +48 -0
  1569. package/transpiled/react/Backdrop/index.d.ts +11 -0
  1570. package/transpiled/react/Backdrop/index.js +31 -0
  1571. package/transpiled/react/Badge/index.d.ts +38 -0
  1572. package/transpiled/react/Badge/index.js +68 -0
  1573. package/transpiled/react/Banner/index.d.ts +28 -0
  1574. package/transpiled/react/Banner/index.js +99 -0
  1575. package/transpiled/react/Banner/index.spec.d.ts +1 -0
  1576. package/transpiled/react/BarButton/index.d.ts +17 -0
  1577. package/transpiled/react/BarButton/index.js +116 -0
  1578. package/transpiled/react/BarContextProvider/index.d.ts +10 -0
  1579. package/transpiled/react/BarContextProvider/index.js +32 -0
  1580. package/transpiled/react/BarContextProvider/index.spec.d.ts +1 -0
  1581. package/transpiled/react/BarTitle/index.d.ts +15 -0
  1582. package/transpiled/react/BarTitle/index.js +27 -0
  1583. package/transpiled/react/BottomNavigation/index.d.ts +2 -0
  1584. package/transpiled/react/BottomNavigation/index.js +2 -0
  1585. package/transpiled/react/BottomNavigationAction/index.d.ts +2 -0
  1586. package/transpiled/react/BottomNavigationAction/index.js +2 -0
  1587. package/transpiled/react/BottomSheet/BackdropOrFragment.d.ts +6 -0
  1588. package/transpiled/react/BottomSheet/BackdropOrFragment.js +16 -0
  1589. package/transpiled/react/BottomSheet/BottomSheet.d.ts +8 -0
  1590. package/transpiled/react/BottomSheet/BottomSheet.js +450 -0
  1591. package/transpiled/react/BottomSheet/BottomSheetHeader.d.ts +9 -0
  1592. package/transpiled/react/BottomSheet/BottomSheetHeader.js +18 -0
  1593. package/transpiled/react/BottomSheet/BottomSheetItem.d.ts +3 -0
  1594. package/transpiled/react/BottomSheet/BottomSheetItem.js +35 -0
  1595. package/transpiled/react/BottomSheet/BottomSheetTitle.d.ts +3 -0
  1596. package/transpiled/react/BottomSheet/BottomSheetTitle.js +46 -0
  1597. package/transpiled/react/BottomSheet/constants.d.ts +1 -0
  1598. package/transpiled/react/BottomSheet/constants.js +1 -0
  1599. package/transpiled/react/BottomSheet/helpers.d.ts +46 -0
  1600. package/transpiled/react/BottomSheet/helpers.js +133 -0
  1601. package/transpiled/react/BottomSheet/helpers.spec.d.ts +1 -0
  1602. package/transpiled/react/BottomSheet/index.d.ts +4 -0
  1603. package/transpiled/react/BottomSheet/index.js +4 -0
  1604. package/transpiled/react/Box/index.d.ts +2 -0
  1605. package/transpiled/react/Box/index.js +2 -0
  1606. package/transpiled/react/Breadcrumbs/index.d.ts +2 -0
  1607. package/transpiled/react/Breadcrumbs/index.js +2 -0
  1608. package/transpiled/react/Button/index.d.ts +2 -0
  1609. package/transpiled/react/Button/index.js +2 -0
  1610. package/transpiled/react/ButtonBase/index.d.ts +2 -0
  1611. package/transpiled/react/ButtonBase/index.js +2 -0
  1612. package/transpiled/react/Buttons/index.d.ts +3 -0
  1613. package/transpiled/react/Buttons/index.js +104 -0
  1614. package/transpiled/react/Card/index.d.ts +19 -0
  1615. package/transpiled/react/Card/index.js +58 -0
  1616. package/transpiled/react/CardActionArea/index.d.ts +2 -0
  1617. package/transpiled/react/CardActionArea/index.js +2 -0
  1618. package/transpiled/react/CardActions/index.d.ts +2 -0
  1619. package/transpiled/react/CardActions/index.js +2 -0
  1620. package/transpiled/react/CardContent/index.d.ts +2 -0
  1621. package/transpiled/react/CardContent/index.js +2 -0
  1622. package/transpiled/react/CardHeader/index.d.ts +2 -0
  1623. package/transpiled/react/CardHeader/index.js +2 -0
  1624. package/transpiled/react/CardMedia/index.d.ts +2 -0
  1625. package/transpiled/react/CardMedia/index.js +2 -0
  1626. package/transpiled/react/Checkbox/index.d.ts +41 -0
  1627. package/transpiled/react/Checkbox/index.js +107 -0
  1628. package/transpiled/react/Chips/index.d.ts +3 -0
  1629. package/transpiled/react/Chips/index.js +35 -0
  1630. package/transpiled/react/CipherIcon/index.d.ts +2 -0
  1631. package/transpiled/react/CipherIcon/index.js +78 -0
  1632. package/transpiled/react/CipherIcon/index.spec.d.ts +1 -0
  1633. package/transpiled/react/Circle/index.d.ts +24 -0
  1634. package/transpiled/react/Circle/index.js +50 -0
  1635. package/transpiled/react/CircleButton/helpers.d.ts +10 -0
  1636. package/transpiled/react/CircleButton/helpers.js +26 -0
  1637. package/transpiled/react/CircleButton/helpers.spec.d.ts +1 -0
  1638. package/transpiled/react/CircleButton/index.d.ts +21 -0
  1639. package/transpiled/react/CircleButton/index.js +116 -0
  1640. package/transpiled/react/CircularChart/CircularChartProgress.d.ts +3 -0
  1641. package/transpiled/react/CircularChart/CircularChartProgress.js +68 -0
  1642. package/transpiled/react/CircularChart/CircularProgressWithBackground.d.ts +3 -0
  1643. package/transpiled/react/CircularChart/CircularProgressWithBackground.js +44 -0
  1644. package/transpiled/react/CircularChart/helpers.d.ts +1 -0
  1645. package/transpiled/react/CircularChart/helpers.js +43 -0
  1646. package/transpiled/react/CircularChart/index.d.ts +3 -0
  1647. package/transpiled/react/CircularChart/index.js +59 -0
  1648. package/transpiled/react/CircularProgress/index.d.ts +2 -0
  1649. package/transpiled/react/CircularProgress/index.js +2 -0
  1650. package/transpiled/react/ClickAwayListener/index.d.ts +2 -0
  1651. package/transpiled/react/ClickAwayListener/index.js +2 -0
  1652. package/transpiled/react/Collapse/index.d.ts +2 -0
  1653. package/transpiled/react/Collapse/index.js +2 -0
  1654. package/transpiled/react/ContactPicker/index.d.ts +21 -0
  1655. package/transpiled/react/ContactPicker/index.js +111 -0
  1656. package/transpiled/react/ContactPicker/index.spec.d.ts +1 -0
  1657. package/transpiled/react/Contacts/AddModal/ContactAddressDialog/helpers.d.ts +4 -0
  1658. package/transpiled/react/Contacts/AddModal/ContactAddressDialog/helpers.js +20 -0
  1659. package/transpiled/react/Contacts/AddModal/ContactAddressDialog/helpers.spec.d.ts +1 -0
  1660. package/transpiled/react/Contacts/AddModal/ContactAddressDialog/index.d.ts +39 -0
  1661. package/transpiled/react/Contacts/AddModal/ContactAddressDialog/index.js +87 -0
  1662. package/transpiled/react/Contacts/AddModal/ContactAddressDialog/locales/index.d.ts +10 -0
  1663. package/transpiled/react/Contacts/AddModal/ContactAddressDialog/locales/index.js +106 -0
  1664. package/transpiled/react/Contacts/AddModal/ContactForm/FieldInput.d.ts +39 -0
  1665. package/transpiled/react/Contacts/AddModal/ContactForm/FieldInput.js +135 -0
  1666. package/transpiled/react/Contacts/AddModal/ContactForm/FieldInputAccordion.d.ts +12 -0
  1667. package/transpiled/react/Contacts/AddModal/ContactForm/FieldInputAccordion.js +69 -0
  1668. package/transpiled/react/Contacts/AddModal/ContactForm/FieldInputArray.d.ts +14 -0
  1669. package/transpiled/react/Contacts/AddModal/ContactForm/FieldInputArray.js +82 -0
  1670. package/transpiled/react/Contacts/AddModal/ContactForm/FieldInputLayout.d.ts +22 -0
  1671. package/transpiled/react/Contacts/AddModal/ContactForm/FieldInputLayout.js +80 -0
  1672. package/transpiled/react/Contacts/AddModal/ContactForm/FieldInputWrapper.d.ts +19 -0
  1673. package/transpiled/react/Contacts/AddModal/ContactForm/FieldInputWrapper.js +34 -0
  1674. package/transpiled/react/Contacts/AddModal/ContactForm/HasValueCondition.d.ts +18 -0
  1675. package/transpiled/react/Contacts/AddModal/ContactForm/HasValueCondition.js +32 -0
  1676. package/transpiled/react/Contacts/AddModal/ContactForm/HasValueCondition.spec.d.ts +1 -0
  1677. package/transpiled/react/Contacts/AddModal/ContactForm/RelatedContactList.d.ts +15 -0
  1678. package/transpiled/react/Contacts/AddModal/ContactForm/RelatedContactList.js +39 -0
  1679. package/transpiled/react/Contacts/AddModal/ContactForm/TextFieldCustomLabelSelect.d.ts +9 -0
  1680. package/transpiled/react/Contacts/AddModal/ContactForm/TextFieldCustomLabelSelect.js +81 -0
  1681. package/transpiled/react/Contacts/AddModal/ContactForm/TextFieldSelect.d.ts +5 -0
  1682. package/transpiled/react/Contacts/AddModal/ContactForm/TextFieldSelect.js +42 -0
  1683. package/transpiled/react/Contacts/AddModal/ContactForm/contactToFormValues.d.ts +6 -0
  1684. package/transpiled/react/Contacts/AddModal/ContactForm/contactToFormValues.js +105 -0
  1685. package/transpiled/react/Contacts/AddModal/ContactForm/contactToFormValues.spec.d.ts +1 -0
  1686. package/transpiled/react/Contacts/AddModal/ContactForm/fieldsConfig.d.ts +4 -0
  1687. package/transpiled/react/Contacts/AddModal/ContactForm/fieldsConfig.js +291 -0
  1688. package/transpiled/react/Contacts/AddModal/ContactForm/formValuesToContact.d.ts +7 -0
  1689. package/transpiled/react/Contacts/AddModal/ContactForm/formValuesToContact.js +99 -0
  1690. package/transpiled/react/Contacts/AddModal/ContactForm/formValuesToContact.spec.d.ts +1 -0
  1691. package/transpiled/react/Contacts/AddModal/ContactForm/helpers.d.ts +35 -0
  1692. package/transpiled/react/Contacts/AddModal/ContactForm/helpers.js +398 -0
  1693. package/transpiled/react/Contacts/AddModal/ContactForm/helpers.spec.d.ts +1 -0
  1694. package/transpiled/react/Contacts/AddModal/ContactForm/index.d.ts +17 -0
  1695. package/transpiled/react/Contacts/AddModal/ContactForm/index.js +150 -0
  1696. package/transpiled/react/Contacts/AddModal/ContactForm/index.spec.d.ts +1 -0
  1697. package/transpiled/react/Contacts/AddModal/ContactForm/locales/index.d.ts +10 -0
  1698. package/transpiled/react/Contacts/AddModal/ContactForm/locales/index.js +306 -0
  1699. package/transpiled/react/Contacts/AddModal/CustomLabelDialog/index.d.ts +22 -0
  1700. package/transpiled/react/Contacts/AddModal/CustomLabelDialog/index.js +113 -0
  1701. package/transpiled/react/Contacts/AddModal/CustomLabelDialog/locales/index.d.ts +10 -0
  1702. package/transpiled/react/Contacts/AddModal/CustomLabelDialog/locales/index.js +66 -0
  1703. package/transpiled/react/Contacts/AddModal/index.d.ts +8 -0
  1704. package/transpiled/react/Contacts/AddModal/index.js +111 -0
  1705. package/transpiled/react/Contacts/AddModal/locales/index.d.ts +10 -0
  1706. package/transpiled/react/Contacts/AddModal/locales/index.js +58 -0
  1707. package/transpiled/react/Contacts/AddModal/mocks.d.ts +300 -0
  1708. package/transpiled/react/Contacts/AddModal/mocks.js +256 -0
  1709. package/transpiled/react/Contacts/AddModal/types.d.ts +188 -0
  1710. package/transpiled/react/Contacts/AddModal/types.js +94 -0
  1711. package/transpiled/react/Contacts/GroupsSelect/GroupCreation.d.ts +3 -0
  1712. package/transpiled/react/Contacts/GroupsSelect/GroupCreation.js +137 -0
  1713. package/transpiled/react/Contacts/GroupsSelect/GroupsSelect.d.ts +56 -0
  1714. package/transpiled/react/Contacts/GroupsSelect/GroupsSelect.js +181 -0
  1715. package/transpiled/react/Contacts/GroupsSelect/GroupsSelect.spec.d.ts +22 -0
  1716. package/transpiled/react/Contacts/GroupsSelect/GroupsSelectProvider.d.ts +5 -0
  1717. package/transpiled/react/Contacts/GroupsSelect/GroupsSelectProvider.js +38 -0
  1718. package/transpiled/react/Contacts/GroupsSelect/SelectBox/Control.d.ts +14 -0
  1719. package/transpiled/react/Contacts/GroupsSelect/SelectBox/Control.js +37 -0
  1720. package/transpiled/react/Contacts/GroupsSelect/SelectBox/EditGroupName.d.ts +7 -0
  1721. package/transpiled/react/Contacts/GroupsSelect/SelectBox/EditGroupName.js +71 -0
  1722. package/transpiled/react/Contacts/GroupsSelect/SelectBox/Menu.d.ts +7 -0
  1723. package/transpiled/react/Contacts/GroupsSelect/SelectBox/Menu.js +34 -0
  1724. package/transpiled/react/Contacts/GroupsSelect/SelectBox/Option.d.ts +18 -0
  1725. package/transpiled/react/Contacts/GroupsSelect/SelectBox/Option.js +66 -0
  1726. package/transpiled/react/Contacts/GroupsSelect/SelectBox/SelectContainer.d.ts +2 -0
  1727. package/transpiled/react/Contacts/GroupsSelect/SelectBox/SelectContainer.js +12 -0
  1728. package/transpiled/react/Contacts/GroupsSelect/helpers.d.ts +9 -0
  1729. package/transpiled/react/Contacts/GroupsSelect/helpers.js +30 -0
  1730. package/transpiled/react/Contacts/GroupsSelect/locales/index.d.ts +10 -0
  1731. package/transpiled/react/Contacts/GroupsSelect/locales/index.js +90 -0
  1732. package/transpiled/react/Contacts/GroupsSelect/useGroupSelect.d.ts +11 -0
  1733. package/transpiled/react/Contacts/GroupsSelect/useGroupSelect.js +179 -0
  1734. package/transpiled/react/Contacts/Header/GroupsSelection.d.ts +7 -0
  1735. package/transpiled/react/Contacts/Header/GroupsSelection.js +84 -0
  1736. package/transpiled/react/Contacts/Header/ImportDropdown.d.ts +4 -0
  1737. package/transpiled/react/Contacts/Header/ImportDropdown.js +88 -0
  1738. package/transpiled/react/Contacts/Header/SearchInput.d.ts +4 -0
  1739. package/transpiled/react/Contacts/Header/SearchInput.js +24 -0
  1740. package/transpiled/react/Contacts/Header/index.d.ts +26 -0
  1741. package/transpiled/react/Contacts/Header/index.js +72 -0
  1742. package/transpiled/react/Contacts/Header/locales/index.d.ts +10 -0
  1743. package/transpiled/react/Contacts/Header/locales/index.js +66 -0
  1744. package/transpiled/react/ContactsList/ContactCell.d.ts +8 -0
  1745. package/transpiled/react/ContactsList/ContactCell.js +32 -0
  1746. package/transpiled/react/ContactsList/ContactRow.d.ts +16 -0
  1747. package/transpiled/react/ContactsList/ContactRow.js +62 -0
  1748. package/transpiled/react/ContactsList/ContactRow.spec.d.ts +1 -0
  1749. package/transpiled/react/ContactsList/Contacts/ContactCozy.d.ts +14 -0
  1750. package/transpiled/react/ContactsList/Contacts/ContactCozy.js +31 -0
  1751. package/transpiled/react/ContactsList/Contacts/ContactEmail.d.ts +14 -0
  1752. package/transpiled/react/ContactsList/Contacts/ContactEmail.js +31 -0
  1753. package/transpiled/react/ContactsList/Contacts/ContactIdentity.d.ts +10 -0
  1754. package/transpiled/react/ContactsList/Contacts/ContactIdentity.js +67 -0
  1755. package/transpiled/react/ContactsList/Contacts/ContactName.d.ts +10 -0
  1756. package/transpiled/react/ContactsList/Contacts/ContactName.js +34 -0
  1757. package/transpiled/react/ContactsList/Contacts/ContactPhone.d.ts +14 -0
  1758. package/transpiled/react/ContactsList/Contacts/ContactPhone.js +31 -0
  1759. package/transpiled/react/ContactsList/ContactsList.d.ts +2 -0
  1760. package/transpiled/react/ContactsList/ContactsList.js +51 -0
  1761. package/transpiled/react/ContactsList/helpers.d.ts +9 -0
  1762. package/transpiled/react/ContactsList/helpers.js +130 -0
  1763. package/transpiled/react/ContactsList/helpers.spec.d.ts +1 -0
  1764. package/transpiled/react/ContactsList/index.d.ts +2 -0
  1765. package/transpiled/react/ContactsList/index.js +2 -0
  1766. package/transpiled/react/ContactsList/locales/withContactsListLocales.d.ts +12 -0
  1767. package/transpiled/react/ContactsList/locales/withContactsListLocales.js +28 -0
  1768. package/transpiled/react/ContactsListModal/AddContact/AddContactActions.d.ts +2 -0
  1769. package/transpiled/react/ContactsListModal/AddContact/AddContactActions.js +19 -0
  1770. package/transpiled/react/ContactsListModal/AddContact/AddContactContent.d.ts +2 -0
  1771. package/transpiled/react/ContactsListModal/AddContact/AddContactContent.js +65 -0
  1772. package/transpiled/react/ContactsListModal/AddContact/AddContactDialog.d.ts +6 -0
  1773. package/transpiled/react/ContactsListModal/AddContact/AddContactDialog.js +42 -0
  1774. package/transpiled/react/ContactsListModal/AddContact/AddContactTitle.d.ts +2 -0
  1775. package/transpiled/react/ContactsListModal/AddContact/AddContactTitle.js +9 -0
  1776. package/transpiled/react/ContactsListModal/AddContact/helpers.d.ts +6 -0
  1777. package/transpiled/react/ContactsListModal/AddContact/helpers.js +48 -0
  1778. package/transpiled/react/ContactsListModal/AddContact/helpers.spec.d.ts +1 -0
  1779. package/transpiled/react/ContactsListModal/ContactsListContent.d.ts +2 -0
  1780. package/transpiled/react/ContactsListModal/ContactsListContent.js +72 -0
  1781. package/transpiled/react/ContactsListModal/ContactsListModal.d.ts +20 -0
  1782. package/transpiled/react/ContactsListModal/ContactsListModal.js +144 -0
  1783. package/transpiled/react/ContactsListModal/ContactsListModalWithQuery.d.ts +12 -0
  1784. package/transpiled/react/ContactsListModal/ContactsListModalWithQuery.js +29 -0
  1785. package/transpiled/react/ContactsListModal/EmptyMessage.d.ts +2 -0
  1786. package/transpiled/react/ContactsListModal/EmptyMessage.js +19 -0
  1787. package/transpiled/react/ContactsListModal/MobileHeader.d.ts +16 -0
  1788. package/transpiled/react/ContactsListModal/MobileHeader.js +49 -0
  1789. package/transpiled/react/ContactsListModal/index.d.ts +2 -0
  1790. package/transpiled/react/ContactsListModal/index.js +39 -0
  1791. package/transpiled/react/ContactsListModal/mockClient.d.ts +3 -0
  1792. package/transpiled/react/ContactsListModal/mockClient.js +1998 -0
  1793. package/transpiled/react/ContactsListModal/queries.d.ts +7 -0
  1794. package/transpiled/react/ContactsListModal/queries.js +14 -0
  1795. package/transpiled/react/ContactsListModal/withContactsListLocales.d.ts +7 -0
  1796. package/transpiled/react/ContactsListModal/withContactsListLocales.js +28 -0
  1797. package/transpiled/react/Container/index.d.ts +2 -0
  1798. package/transpiled/react/Container/index.js +2 -0
  1799. package/transpiled/react/Counter/index.d.ts +18 -0
  1800. package/transpiled/react/Counter/index.js +18 -0
  1801. package/transpiled/react/CozyDialogs/ConfirmDialog.d.ts +9 -0
  1802. package/transpiled/react/CozyDialogs/ConfirmDialog.js +64 -0
  1803. package/transpiled/react/CozyDialogs/Dialog.d.ts +6 -0
  1804. package/transpiled/react/CozyDialogs/Dialog.js +53 -0
  1805. package/transpiled/react/CozyDialogs/DialogBackButton.d.ts +11 -0
  1806. package/transpiled/react/CozyDialogs/DialogBackButton.js +40 -0
  1807. package/transpiled/react/CozyDialogs/DialogCloseButton.d.ts +11 -0
  1808. package/transpiled/react/CozyDialogs/DialogCloseButton.js +40 -0
  1809. package/transpiled/react/CozyDialogs/DialogTransition.d.ts +3 -0
  1810. package/transpiled/react/CozyDialogs/DialogTransition.js +24 -0
  1811. package/transpiled/react/CozyDialogs/FixedActionsDialog.d.ts +6 -0
  1812. package/transpiled/react/CozyDialogs/FixedActionsDialog.js +59 -0
  1813. package/transpiled/react/CozyDialogs/FixedDialog.d.ts +6 -0
  1814. package/transpiled/react/CozyDialogs/FixedDialog.js +49 -0
  1815. package/transpiled/react/CozyDialogs/IllustrationDialog.d.ts +6 -0
  1816. package/transpiled/react/CozyDialogs/IllustrationDialog.js +64 -0
  1817. package/transpiled/react/CozyDialogs/PermissionDialog.d.ts +25 -0
  1818. package/transpiled/react/CozyDialogs/PermissionDialog.js +80 -0
  1819. package/transpiled/react/CozyDialogs/SpecificDialogs/AllowLocationDialog.d.ts +2 -0
  1820. package/transpiled/react/CozyDialogs/SpecificDialogs/AllowLocationDialog.js +73 -0
  1821. package/transpiled/react/CozyDialogs/SpecificDialogs/AuthentificationDialog.d.ts +2 -0
  1822. package/transpiled/react/CozyDialogs/SpecificDialogs/AuthentificationDialog.js +113 -0
  1823. package/transpiled/react/CozyDialogs/SpecificDialogs/InstallFlagshipAppDialog.d.ts +2 -0
  1824. package/transpiled/react/CozyDialogs/SpecificDialogs/InstallFlagshipAppDialog.js +80 -0
  1825. package/transpiled/react/CozyDialogs/SpecificDialogs/ShortcutDialog.d.ts +2 -0
  1826. package/transpiled/react/CozyDialogs/SpecificDialogs/ShortcutDialog.js +114 -0
  1827. package/transpiled/react/CozyDialogs/SpecificDialogs/helpers/shortcuts.d.ts +13 -0
  1828. package/transpiled/react/CozyDialogs/SpecificDialogs/helpers/shortcuts.js +91 -0
  1829. package/transpiled/react/CozyDialogs/SpecificDialogs/icons/CozyLocation.d.ts +2 -0
  1830. package/transpiled/react/CozyDialogs/SpecificDialogs/icons/CozyLocation.js +41 -0
  1831. package/transpiled/react/CozyDialogs/SpecificDialogs/icons/QRCodeInstallFlagshipAppDialog.png +0 -0
  1832. package/transpiled/react/CozyDialogs/SpecificDialogs/icons/appstore.png +0 -0
  1833. package/transpiled/react/CozyDialogs/SpecificDialogs/icons/playstore.png +0 -0
  1834. package/transpiled/react/CozyDialogs/SpecificDialogs/index.d.ts +4 -0
  1835. package/transpiled/react/CozyDialogs/SpecificDialogs/index.js +4 -0
  1836. package/transpiled/react/CozyDialogs/SpecificDialogs/withSpecificDialogsLocales.d.ts +12 -0
  1837. package/transpiled/react/CozyDialogs/SpecificDialogs/withSpecificDialogsLocales.js +172 -0
  1838. package/transpiled/react/CozyDialogs/TopAnchoredDialog.d.ts +18 -0
  1839. package/transpiled/react/CozyDialogs/TopAnchoredDialog.js +23 -0
  1840. package/transpiled/react/CozyDialogs/background.png +0 -0
  1841. package/transpiled/react/CozyDialogs/dialogPropTypes.d.ts +14 -0
  1842. package/transpiled/react/CozyDialogs/dialogPropTypes.js +13 -0
  1843. package/transpiled/react/CozyDialogs/e2e.d.ts +2 -0
  1844. package/transpiled/react/CozyDialogs/e2e.js +65 -0
  1845. package/transpiled/react/CozyDialogs/index.d.ts +11 -0
  1846. package/transpiled/react/CozyDialogs/index.js +11 -0
  1847. package/transpiled/react/CozyDialogs/locales.d.ts +31 -0
  1848. package/transpiled/react/CozyDialogs/locales.js +22 -0
  1849. package/transpiled/react/CozyDialogs/testing.d.ts +5 -0
  1850. package/transpiled/react/CozyDialogs/testing.js +35 -0
  1851. package/transpiled/react/CozyDialogs/testing.spec.d.ts +1 -0
  1852. package/transpiled/react/CozyDialogs/useCozyDialog.d.ts +15 -0
  1853. package/transpiled/react/CozyDialogs/useCozyDialog.js +141 -0
  1854. package/transpiled/react/CssBaseline/index.d.ts +2 -0
  1855. package/transpiled/react/CssBaseline/index.js +2 -0
  1856. package/transpiled/react/DateMonthPicker/index.d.ts +13 -0
  1857. package/transpiled/react/DateMonthPicker/index.js +119 -0
  1858. package/transpiled/react/DateMonthPicker/index.spec.d.ts +1 -0
  1859. package/transpiled/react/DatePicker/helpers.d.ts +5 -0
  1860. package/transpiled/react/DatePicker/helpers.js +19 -0
  1861. package/transpiled/react/DatePicker/helpers.spec.d.ts +1 -0
  1862. package/transpiled/react/DatePicker/index.d.ts +2 -0
  1863. package/transpiled/react/DatePicker/index.js +331 -0
  1864. package/transpiled/react/DatePicker/locales/withOwnLocales.d.ts +12 -0
  1865. package/transpiled/react/DatePicker/locales/withOwnLocales.js +40 -0
  1866. package/transpiled/react/Dialog/DialogActions.d.ts +2 -0
  1867. package/transpiled/react/Dialog/DialogActions.js +2 -0
  1868. package/transpiled/react/Dialog/DialogContent.d.ts +2 -0
  1869. package/transpiled/react/Dialog/DialogContent.js +2 -0
  1870. package/transpiled/react/Dialog/DialogContentText.d.ts +2 -0
  1871. package/transpiled/react/Dialog/DialogContentText.js +2 -0
  1872. package/transpiled/react/Dialog/DialogEffects.d.ts +36 -0
  1873. package/transpiled/react/Dialog/DialogEffects.js +145 -0
  1874. package/transpiled/react/Dialog/DialogTitle.d.ts +2 -0
  1875. package/transpiled/react/Dialog/DialogTitle.js +2 -0
  1876. package/transpiled/react/Dialog/index.d.ts +14 -0
  1877. package/transpiled/react/Dialog/index.js +31 -0
  1878. package/transpiled/react/DialogActions/index.d.ts +2 -0
  1879. package/transpiled/react/DialogActions/index.js +2 -0
  1880. package/transpiled/react/DialogContent/index.d.ts +2 -0
  1881. package/transpiled/react/DialogContent/index.js +2 -0
  1882. package/transpiled/react/DialogContentText/index.d.ts +2 -0
  1883. package/transpiled/react/DialogContentText/index.js +2 -0
  1884. package/transpiled/react/DialogTitle/index.d.ts +2 -0
  1885. package/transpiled/react/DialogTitle/index.js +2 -0
  1886. package/transpiled/react/Divider/TextDivider/index.d.ts +18 -0
  1887. package/transpiled/react/Divider/TextDivider/index.js +36 -0
  1888. package/transpiled/react/Divider/index.d.ts +8 -0
  1889. package/transpiled/react/Divider/index.js +55 -0
  1890. package/transpiled/react/Drawer/index.d.ts +2 -0
  1891. package/transpiled/react/Drawer/index.js +2 -0
  1892. package/transpiled/react/DropdownButton/index.d.ts +3 -0
  1893. package/transpiled/react/DropdownButton/index.js +84 -0
  1894. package/transpiled/react/DropdownText/index.d.ts +3 -0
  1895. package/transpiled/react/DropdownText/index.js +122 -0
  1896. package/transpiled/react/EditBadge/EditMenu.d.ts +11 -0
  1897. package/transpiled/react/EditBadge/EditMenu.js +93 -0
  1898. package/transpiled/react/EditBadge/StatusWrapper.d.ts +9 -0
  1899. package/transpiled/react/EditBadge/StatusWrapper.js +44 -0
  1900. package/transpiled/react/EditBadge/helpers.d.ts +20 -0
  1901. package/transpiled/react/EditBadge/helpers.js +153 -0
  1902. package/transpiled/react/EditBadge/index.d.ts +23 -0
  1903. package/transpiled/react/EditBadge/index.js +89 -0
  1904. package/transpiled/react/EditBadge/locales/index.d.ts +10 -0
  1905. package/transpiled/react/EditBadge/locales/index.js +78 -0
  1906. package/transpiled/react/Empty/index.d.ts +38 -0
  1907. package/transpiled/react/Empty/index.js +85 -0
  1908. package/transpiled/react/Fab/ExtendableFab.d.ts +3 -0
  1909. package/transpiled/react/Fab/ExtendableFab.js +32 -0
  1910. package/transpiled/react/Fab/index.d.ts +3 -0
  1911. package/transpiled/react/Fab/index.js +6 -0
  1912. package/transpiled/react/Fade/index.d.ts +2 -0
  1913. package/transpiled/react/Fade/index.js +2 -0
  1914. package/transpiled/react/Field/index.d.ts +53 -0
  1915. package/transpiled/react/Field/index.js +269 -0
  1916. package/transpiled/react/Field/index.spec.d.ts +1 -0
  1917. package/transpiled/react/Figure/Figure.d.ts +18 -0
  1918. package/transpiled/react/Figure/Figure.js +98 -0
  1919. package/transpiled/react/Figure/Figure.spec.d.ts +1 -0
  1920. package/transpiled/react/Figure/FigureBlock.d.ts +26 -0
  1921. package/transpiled/react/Figure/FigureBlock.js +54 -0
  1922. package/transpiled/react/Figure/index.d.ts +2 -0
  1923. package/transpiled/react/Figure/index.js +2 -0
  1924. package/transpiled/react/FileImageLoader/checkImageSource.d.ts +1 -0
  1925. package/transpiled/react/FileImageLoader/checkImageSource.js +49 -0
  1926. package/transpiled/react/FileImageLoader/index.d.ts +45 -0
  1927. package/transpiled/react/FileImageLoader/index.js +368 -0
  1928. package/transpiled/react/FileImageLoader/index.spec.d.ts +1 -0
  1929. package/transpiled/react/FileInput/index.d.ts +29 -0
  1930. package/transpiled/react/FileInput/index.js +68 -0
  1931. package/transpiled/react/FileInput/index.spec.d.ts +1 -0
  1932. package/transpiled/react/FilePath/index.d.ts +5 -0
  1933. package/transpiled/react/FilePath/index.js +15 -0
  1934. package/transpiled/react/FilePathLink/index.d.ts +5 -0
  1935. package/transpiled/react/FilePathLink/index.js +18 -0
  1936. package/transpiled/react/FilePicker/FilePickerBody.d.ts +19 -0
  1937. package/transpiled/react/FilePicker/FilePickerBody.js +85 -0
  1938. package/transpiled/react/FilePicker/FilePickerBodyItem.d.ts +22 -0
  1939. package/transpiled/react/FilePicker/FilePickerBodyItem.js +105 -0
  1940. package/transpiled/react/FilePicker/FilePickerBodyItem.spec.d.ts +1 -0
  1941. package/transpiled/react/FilePicker/FilePickerBreadcrumb.d.ts +13 -0
  1942. package/transpiled/react/FilePicker/FilePickerBreadcrumb.js +52 -0
  1943. package/transpiled/react/FilePicker/FilePickerFooter.d.ts +15 -0
  1944. package/transpiled/react/FilePicker/FilePickerFooter.js +71 -0
  1945. package/transpiled/react/FilePicker/FilePickerFooter.spec.d.ts +1 -0
  1946. package/transpiled/react/FilePicker/FilePickerHeader.d.ts +14 -0
  1947. package/transpiled/react/FilePicker/FilePickerHeader.js +81 -0
  1948. package/transpiled/react/FilePicker/index.d.ts +22 -0
  1949. package/transpiled/react/FilePicker/index.js +98 -0
  1950. package/transpiled/react/FilePicker/queries.d.ts +14 -0
  1951. package/transpiled/react/FilePicker/queries.js +45 -0
  1952. package/transpiled/react/Filename/index.d.ts +26 -0
  1953. package/transpiled/react/Filename/index.js +85 -0
  1954. package/transpiled/react/FilledInput/index.d.ts +2 -0
  1955. package/transpiled/react/FilledInput/index.js +2 -0
  1956. package/transpiled/react/FormControl/index.d.ts +2 -0
  1957. package/transpiled/react/FormControl/index.js +2 -0
  1958. package/transpiled/react/FormControlLabel/index.d.ts +2 -0
  1959. package/transpiled/react/FormControlLabel/index.js +2 -0
  1960. package/transpiled/react/FormGroup/index.d.ts +2 -0
  1961. package/transpiled/react/FormGroup/index.js +2 -0
  1962. package/transpiled/react/FormHelperText/index.d.ts +2 -0
  1963. package/transpiled/react/FormHelperText/index.js +2 -0
  1964. package/transpiled/react/FormLabel/index.d.ts +2 -0
  1965. package/transpiled/react/FormLabel/index.js +2 -0
  1966. package/transpiled/react/GhostFileBadge/index.d.ts +9 -0
  1967. package/transpiled/react/GhostFileBadge/index.js +41 -0
  1968. package/transpiled/react/Grid/index.d.ts +2 -0
  1969. package/transpiled/react/Grid/index.js +2 -0
  1970. package/transpiled/react/GridList/Virtualized/Dnd/GridItem.d.ts +7 -0
  1971. package/transpiled/react/GridList/Virtualized/Dnd/GridItem.js +139 -0
  1972. package/transpiled/react/GridList/Virtualized/Dnd/index.d.ts +11 -0
  1973. package/transpiled/react/GridList/Virtualized/Dnd/index.js +55 -0
  1974. package/transpiled/react/GridList/Virtualized/Dnd/virtuosoComponents.d.ts +9 -0
  1975. package/transpiled/react/GridList/Virtualized/Dnd/virtuosoComponents.js +45 -0
  1976. package/transpiled/react/GridList/Virtualized/index.d.ts +3 -0
  1977. package/transpiled/react/GridList/Virtualized/index.js +24 -0
  1978. package/transpiled/react/GridList/index.d.ts +2 -0
  1979. package/transpiled/react/GridList/index.js +2 -0
  1980. package/transpiled/react/GridListTile/index.d.ts +2 -0
  1981. package/transpiled/react/GridListTile/index.js +2 -0
  1982. package/transpiled/react/GridListTileBar/index.d.ts +2 -0
  1983. package/transpiled/react/GridListTileBar/index.js +2 -0
  1984. package/transpiled/react/Grow/index.d.ts +2 -0
  1985. package/transpiled/react/Grow/index.js +2 -0
  1986. package/transpiled/react/Hero/index.d.ts +48 -0
  1987. package/transpiled/react/Hero/index.js +59 -0
  1988. package/transpiled/react/Hidden/index.d.ts +2 -0
  1989. package/transpiled/react/Hidden/index.js +2 -0
  1990. package/transpiled/react/HistoryRow/index.d.ts +24 -0
  1991. package/transpiled/react/HistoryRow/index.js +88 -0
  1992. package/transpiled/react/I18n/index.d.ts +3 -0
  1993. package/transpiled/react/I18n/index.js +16 -0
  1994. package/transpiled/react/I18n/withLocales.d.ts +2 -0
  1995. package/transpiled/react/I18n/withLocales.js +10 -0
  1996. package/transpiled/react/Icon/Sprite.d.ts +2 -0
  1997. package/transpiled/react/Icon/Sprite.js +16 -0
  1998. package/transpiled/react/Icon/icons-sprite.d.ts +2 -0
  1999. package/transpiled/react/Icon/icons-sprite.js +3 -0
  2000. package/transpiled/react/Icon/index.d.ts +23 -0
  2001. package/transpiled/react/Icon/index.js +116 -0
  2002. package/transpiled/react/IconButton/index.d.ts +46 -0
  2003. package/transpiled/react/IconButton/index.js +43 -0
  2004. package/transpiled/react/IconStack/index.d.ts +2 -0
  2005. package/transpiled/react/IconStack/index.js +46 -0
  2006. package/transpiled/react/Icons/Account.d.ts +2 -0
  2007. package/transpiled/react/Icons/Account.js +13 -0
  2008. package/transpiled/react/Icons/Accounts.d.ts +2 -0
  2009. package/transpiled/react/Icons/Accounts.js +13 -0
  2010. package/transpiled/react/Icons/Album.d.ts +2 -0
  2011. package/transpiled/react/Icons/Album.js +13 -0
  2012. package/transpiled/react/Icons/AlbumAdd.d.ts +2 -0
  2013. package/transpiled/react/Icons/AlbumAdd.js +13 -0
  2014. package/transpiled/react/Icons/AlbumRemove.d.ts +2 -0
  2015. package/transpiled/react/Icons/AlbumRemove.js +13 -0
  2016. package/transpiled/react/Icons/Answer.d.ts +2 -0
  2017. package/transpiled/react/Icons/Answer.js +13 -0
  2018. package/transpiled/react/Icons/Apple.d.ts +2 -0
  2019. package/transpiled/react/Icons/Apple.js +14 -0
  2020. package/transpiled/react/Icons/Apps.d.ts +2 -0
  2021. package/transpiled/react/Icons/Apps.js +17 -0
  2022. package/transpiled/react/Icons/Archive.d.ts +2 -0
  2023. package/transpiled/react/Icons/Archive.js +13 -0
  2024. package/transpiled/react/Icons/ArrowUp.d.ts +2 -0
  2025. package/transpiled/react/Icons/ArrowUp.js +13 -0
  2026. package/transpiled/react/Icons/AssignAdmin.d.ts +2 -0
  2027. package/transpiled/react/Icons/AssignAdmin.js +18 -0
  2028. package/transpiled/react/Icons/AssignModerator.d.ts +2 -0
  2029. package/transpiled/react/Icons/AssignModerator.js +12 -0
  2030. package/transpiled/react/Icons/Assistant.d.ts +2 -0
  2031. package/transpiled/react/Icons/Assistant.js +15 -0
  2032. package/transpiled/react/Icons/Attachment.d.ts +2 -0
  2033. package/transpiled/react/Icons/Attachment.js +13 -0
  2034. package/transpiled/react/Icons/Attention.d.ts +2 -0
  2035. package/transpiled/react/Icons/Attention.js +13 -0
  2036. package/transpiled/react/Icons/Bank.d.ts +2 -0
  2037. package/transpiled/react/Icons/Bank.js +13 -0
  2038. package/transpiled/react/Icons/BankAccounts.d.ts +2 -0
  2039. package/transpiled/react/Icons/BankAccounts.js +15 -0
  2040. package/transpiled/react/Icons/BankCheck.d.ts +2 -0
  2041. package/transpiled/react/Icons/BankCheck.js +15 -0
  2042. package/transpiled/react/Icons/BankGroups.d.ts +2 -0
  2043. package/transpiled/react/Icons/BankGroups.js +15 -0
  2044. package/transpiled/react/Icons/BankOperations.d.ts +2 -0
  2045. package/transpiled/react/Icons/BankOperations.js +13 -0
  2046. package/transpiled/react/Icons/BankRecurrence.d.ts +2 -0
  2047. package/transpiled/react/Icons/BankRecurrence.js +15 -0
  2048. package/transpiled/react/Icons/Banking.d.ts +2 -0
  2049. package/transpiled/react/Icons/Banking.js +13 -0
  2050. package/transpiled/react/Icons/BankingAdd.d.ts +2 -0
  2051. package/transpiled/react/Icons/BankingAdd.js +13 -0
  2052. package/transpiled/react/Icons/Bell.d.ts +2 -0
  2053. package/transpiled/react/Icons/Bell.js +13 -0
  2054. package/transpiled/react/Icons/Benefit.d.ts +2 -0
  2055. package/transpiled/react/Icons/Benefit.js +13 -0
  2056. package/transpiled/react/Icons/Bike.d.ts +2 -0
  2057. package/transpiled/react/Icons/Bike.js +13 -0
  2058. package/transpiled/react/Icons/Bill.d.ts +2 -0
  2059. package/transpiled/react/Icons/Bill.js +13 -0
  2060. package/transpiled/react/Icons/BillPermissions.d.ts +2 -0
  2061. package/transpiled/react/Icons/BillPermissions.js +15 -0
  2062. package/transpiled/react/Icons/Bottom.d.ts +2 -0
  2063. package/transpiled/react/Icons/Bottom.js +13 -0
  2064. package/transpiled/react/Icons/BottomSelect.d.ts +2 -0
  2065. package/transpiled/react/Icons/BottomSelect.js +13 -0
  2066. package/transpiled/react/Icons/BrowserBrave.d.ts +2 -0
  2067. package/transpiled/react/Icons/BrowserBrave.js +14 -0
  2068. package/transpiled/react/Icons/BrowserChrome.d.ts +2 -0
  2069. package/transpiled/react/Icons/BrowserChrome.js +14 -0
  2070. package/transpiled/react/Icons/BrowserDuckduckgo.d.ts +2 -0
  2071. package/transpiled/react/Icons/BrowserDuckduckgo.js +14 -0
  2072. package/transpiled/react/Icons/BrowserEdge.d.ts +2 -0
  2073. package/transpiled/react/Icons/BrowserEdge.js +18 -0
  2074. package/transpiled/react/Icons/BrowserEdgeChromium.d.ts +2 -0
  2075. package/transpiled/react/Icons/BrowserEdgeChromium.js +14 -0
  2076. package/transpiled/react/Icons/BrowserFirefox.d.ts +2 -0
  2077. package/transpiled/react/Icons/BrowserFirefox.js +14 -0
  2078. package/transpiled/react/Icons/BrowserIe.d.ts +2 -0
  2079. package/transpiled/react/Icons/BrowserIe.js +14 -0
  2080. package/transpiled/react/Icons/BrowserOpera.d.ts +2 -0
  2081. package/transpiled/react/Icons/BrowserOpera.js +14 -0
  2082. package/transpiled/react/Icons/BrowserSafari.d.ts +2 -0
  2083. package/transpiled/react/Icons/BrowserSafari.js +14 -0
  2084. package/transpiled/react/Icons/BugReport.d.ts +2 -0
  2085. package/transpiled/react/Icons/BugReport.js +13 -0
  2086. package/transpiled/react/Icons/Burger.d.ts +2 -0
  2087. package/transpiled/react/Icons/Burger.js +13 -0
  2088. package/transpiled/react/Icons/Bus.d.ts +2 -0
  2089. package/transpiled/react/Icons/Bus.js +15 -0
  2090. package/transpiled/react/Icons/Calendar.d.ts +2 -0
  2091. package/transpiled/react/Icons/Calendar.js +13 -0
  2092. package/transpiled/react/Icons/CalendarPermissions.d.ts +2 -0
  2093. package/transpiled/react/Icons/CalendarPermissions.js +13 -0
  2094. package/transpiled/react/Icons/Camera.d.ts +2 -0
  2095. package/transpiled/react/Icons/Camera.js +13 -0
  2096. package/transpiled/react/Icons/Car.d.ts +2 -0
  2097. package/transpiled/react/Icons/Car.js +15 -0
  2098. package/transpiled/react/Icons/CarbonCopy.d.ts +2 -0
  2099. package/transpiled/react/Icons/CarbonCopy.js +14 -0
  2100. package/transpiled/react/Icons/Carpooling.d.ts +2 -0
  2101. package/transpiled/react/Icons/Carpooling.js +17 -0
  2102. package/transpiled/react/Icons/Categories.d.ts +2 -0
  2103. package/transpiled/react/Icons/Categories.js +13 -0
  2104. package/transpiled/react/Icons/Category.d.ts +2 -0
  2105. package/transpiled/react/Icons/Category.js +13 -0
  2106. package/transpiled/react/Icons/Certified.d.ts +2 -0
  2107. package/transpiled/react/Icons/Certified.js +15 -0
  2108. package/transpiled/react/Icons/CertifiedPermissions.d.ts +2 -0
  2109. package/transpiled/react/Icons/CertifiedPermissions.js +15 -0
  2110. package/transpiled/react/Icons/Chat.d.ts +2 -0
  2111. package/transpiled/react/Icons/Chat.js +75 -0
  2112. package/transpiled/react/Icons/ChatText.d.ts +2 -0
  2113. package/transpiled/react/Icons/ChatText.js +72 -0
  2114. package/transpiled/react/Icons/Check.d.ts +2 -0
  2115. package/transpiled/react/Icons/Check.js +13 -0
  2116. package/transpiled/react/Icons/CheckCircle.d.ts +2 -0
  2117. package/transpiled/react/Icons/CheckCircle.js +13 -0
  2118. package/transpiled/react/Icons/CheckList.d.ts +2 -0
  2119. package/transpiled/react/Icons/CheckList.js +13 -0
  2120. package/transpiled/react/Icons/CheckSquare.d.ts +2 -0
  2121. package/transpiled/react/Icons/CheckSquare.js +15 -0
  2122. package/transpiled/react/Icons/CheckWhite.d.ts +2 -0
  2123. package/transpiled/react/Icons/CheckWhite.js +15 -0
  2124. package/transpiled/react/Icons/Checkbox.d.ts +2 -0
  2125. package/transpiled/react/Icons/Checkbox.js +13 -0
  2126. package/transpiled/react/Icons/Chess.d.ts +2 -0
  2127. package/transpiled/react/Icons/Chess.js +13 -0
  2128. package/transpiled/react/Icons/Child.d.ts +2 -0
  2129. package/transpiled/react/Icons/Child.js +15 -0
  2130. package/transpiled/react/Icons/CircleFilled.d.ts +2 -0
  2131. package/transpiled/react/Icons/CircleFilled.js +13 -0
  2132. package/transpiled/react/Icons/Clock.d.ts +2 -0
  2133. package/transpiled/react/Icons/Clock.js +13 -0
  2134. package/transpiled/react/Icons/ClockOutline.d.ts +2 -0
  2135. package/transpiled/react/Icons/ClockOutline.js +13 -0
  2136. package/transpiled/react/Icons/Cloud.d.ts +2 -0
  2137. package/transpiled/react/Icons/Cloud.js +13 -0
  2138. package/transpiled/react/Icons/Cloud2.d.ts +2 -0
  2139. package/transpiled/react/Icons/Cloud2.js +27 -0
  2140. package/transpiled/react/Icons/CloudBroken.d.ts +2 -0
  2141. package/transpiled/react/Icons/CloudBroken.js +13 -0
  2142. package/transpiled/react/Icons/CloudHappy.d.ts +2 -0
  2143. package/transpiled/react/Icons/CloudHappy.js +14 -0
  2144. package/transpiled/react/Icons/CloudPlusOutlined.d.ts +2 -0
  2145. package/transpiled/react/Icons/CloudPlusOutlined.js +13 -0
  2146. package/transpiled/react/Icons/CloudRainbow.d.ts +2 -0
  2147. package/transpiled/react/Icons/CloudRainbow.js +66 -0
  2148. package/transpiled/react/Icons/CloudSync.d.ts +2 -0
  2149. package/transpiled/react/Icons/CloudSync.js +20 -0
  2150. package/transpiled/react/Icons/CloudSync2.d.ts +2 -0
  2151. package/transpiled/react/Icons/CloudSync2.js +22 -0
  2152. package/transpiled/react/Icons/Cocktail.d.ts +2 -0
  2153. package/transpiled/react/Icons/Cocktail.js +13 -0
  2154. package/transpiled/react/Icons/Collect.d.ts +2 -0
  2155. package/transpiled/react/Icons/Collect.js +14 -0
  2156. package/transpiled/react/Icons/Comment.d.ts +2 -0
  2157. package/transpiled/react/Icons/Comment.js +13 -0
  2158. package/transpiled/react/Icons/Company.d.ts +2 -0
  2159. package/transpiled/react/Icons/Company.js +13 -0
  2160. package/transpiled/react/Icons/Compare.d.ts +2 -0
  2161. package/transpiled/react/Icons/Compare.js +13 -0
  2162. package/transpiled/react/Icons/Compass.d.ts +2 -0
  2163. package/transpiled/react/Icons/Compass.js +13 -0
  2164. package/transpiled/react/Icons/ConnectedClients.d.ts +2 -0
  2165. package/transpiled/react/Icons/ConnectedClients.js +13 -0
  2166. package/transpiled/react/Icons/Connector.d.ts +2 -0
  2167. package/transpiled/react/Icons/Connector.js +13 -0
  2168. package/transpiled/react/Icons/Consumption.d.ts +2 -0
  2169. package/transpiled/react/Icons/Consumption.js +15 -0
  2170. package/transpiled/react/Icons/Contacts.d.ts +2 -0
  2171. package/transpiled/react/Icons/Contacts.js +109 -0
  2172. package/transpiled/react/Icons/ContactsAccounts.d.ts +2 -0
  2173. package/transpiled/react/Icons/ContactsAccounts.js +13 -0
  2174. package/transpiled/react/Icons/ContactsGroups.d.ts +2 -0
  2175. package/transpiled/react/Icons/ContactsGroups.js +13 -0
  2176. package/transpiled/react/Icons/ContactsText.d.ts +2 -0
  2177. package/transpiled/react/Icons/ContactsText.js +132 -0
  2178. package/transpiled/react/Icons/Contract.d.ts +2 -0
  2179. package/transpiled/react/Icons/Contract.js +13 -0
  2180. package/transpiled/react/Icons/ContractPermissions.d.ts +2 -0
  2181. package/transpiled/react/Icons/ContractPermissions.js +13 -0
  2182. package/transpiled/react/Icons/Contrast.d.ts +2 -0
  2183. package/transpiled/react/Icons/Contrast.js +13 -0
  2184. package/transpiled/react/Icons/Copy.d.ts +2 -0
  2185. package/transpiled/react/Icons/Copy.js +13 -0
  2186. package/transpiled/react/Icons/Cozy.d.ts +2 -0
  2187. package/transpiled/react/Icons/Cozy.js +15 -0
  2188. package/transpiled/react/Icons/CozyAuthentification.d.ts +2 -0
  2189. package/transpiled/react/Icons/CozyAuthentification.js +13 -0
  2190. package/transpiled/react/Icons/CozyCircle.d.ts +2 -0
  2191. package/transpiled/react/Icons/CozyCircle.js +15 -0
  2192. package/transpiled/react/Icons/CozyLaugh.d.ts +2 -0
  2193. package/transpiled/react/Icons/CozyLaugh.js +14 -0
  2194. package/transpiled/react/Icons/CozyLock.d.ts +2 -0
  2195. package/transpiled/react/Icons/CozyLock.js +15 -0
  2196. package/transpiled/react/Icons/CozyLogo.d.ts +2 -0
  2197. package/transpiled/react/Icons/CozyLogo.js +19 -0
  2198. package/transpiled/react/Icons/CozyRelease.d.ts +2 -0
  2199. package/transpiled/react/Icons/CozyRelease.js +20 -0
  2200. package/transpiled/react/Icons/CozyText.d.ts +2 -0
  2201. package/transpiled/react/Icons/CozyText.js +13 -0
  2202. package/transpiled/react/Icons/CozyUpgrade.d.ts +2 -0
  2203. package/transpiled/react/Icons/CozyUpgrade.js +45 -0
  2204. package/transpiled/react/Icons/Credit.d.ts +2 -0
  2205. package/transpiled/react/Icons/Credit.js +18 -0
  2206. package/transpiled/react/Icons/CreditCard.d.ts +2 -0
  2207. package/transpiled/react/Icons/CreditCard.js +13 -0
  2208. package/transpiled/react/Icons/CreditCardAdd.d.ts +2 -0
  2209. package/transpiled/react/Icons/CreditCardAdd.js +13 -0
  2210. package/transpiled/react/Icons/CreditCardLarge.d.ts +2 -0
  2211. package/transpiled/react/Icons/CreditCardLarge.js +13 -0
  2212. package/transpiled/react/Icons/Crop.d.ts +2 -0
  2213. package/transpiled/react/Icons/Crop.js +13 -0
  2214. package/transpiled/react/Icons/Cross.d.ts +2 -0
  2215. package/transpiled/react/Icons/Cross.js +13 -0
  2216. package/transpiled/react/Icons/CrossCircle.d.ts +2 -0
  2217. package/transpiled/react/Icons/CrossCircle.js +14 -0
  2218. package/transpiled/react/Icons/CrossCircleOutline.d.ts +2 -0
  2219. package/transpiled/react/Icons/CrossCircleOutline.js +15 -0
  2220. package/transpiled/react/Icons/CrossMedium.d.ts +2 -0
  2221. package/transpiled/react/Icons/CrossMedium.js +13 -0
  2222. package/transpiled/react/Icons/CrossSmall.d.ts +2 -0
  2223. package/transpiled/react/Icons/CrossSmall.js +13 -0
  2224. package/transpiled/react/Icons/CrossWhite.d.ts +2 -0
  2225. package/transpiled/react/Icons/CrossWhite.js +15 -0
  2226. package/transpiled/react/Icons/Cube.d.ts +5 -0
  2227. package/transpiled/react/Icons/Cube.js +20 -0
  2228. package/transpiled/react/Icons/Dash.d.ts +2 -0
  2229. package/transpiled/react/Icons/Dash.js +13 -0
  2230. package/transpiled/react/Icons/DashWhite.d.ts +2 -0
  2231. package/transpiled/react/Icons/DashWhite.js +15 -0
  2232. package/transpiled/react/Icons/Dashboard.d.ts +2 -0
  2233. package/transpiled/react/Icons/Dashboard.js +13 -0
  2234. package/transpiled/react/Icons/DataControl.d.ts +2 -0
  2235. package/transpiled/react/Icons/DataControl.js +17 -0
  2236. package/transpiled/react/Icons/Debit.d.ts +2 -0
  2237. package/transpiled/react/Icons/Debit.js +13 -0
  2238. package/transpiled/react/Icons/DesktopDownload.d.ts +2 -0
  2239. package/transpiled/react/Icons/DesktopDownload.js +15 -0
  2240. package/transpiled/react/Icons/DeviceBrowser.d.ts +2 -0
  2241. package/transpiled/react/Icons/DeviceBrowser.js +13 -0
  2242. package/transpiled/react/Icons/DeviceLaptop.d.ts +2 -0
  2243. package/transpiled/react/Icons/DeviceLaptop.js +13 -0
  2244. package/transpiled/react/Icons/DevicePhone.d.ts +2 -0
  2245. package/transpiled/react/Icons/DevicePhone.js +13 -0
  2246. package/transpiled/react/Icons/DeviceTablet.d.ts +2 -0
  2247. package/transpiled/react/Icons/DeviceTablet.js +13 -0
  2248. package/transpiled/react/Icons/Devices.d.ts +2 -0
  2249. package/transpiled/react/Icons/Devices.js +13 -0
  2250. package/transpiled/react/Icons/Discuss.d.ts +2 -0
  2251. package/transpiled/react/Icons/Discuss.js +15 -0
  2252. package/transpiled/react/Icons/Dots.d.ts +2 -0
  2253. package/transpiled/react/Icons/Dots.js +13 -0
  2254. package/transpiled/react/Icons/DotsWhite.d.ts +2 -0
  2255. package/transpiled/react/Icons/DotsWhite.js +15 -0
  2256. package/transpiled/react/Icons/Down.d.ts +2 -0
  2257. package/transpiled/react/Icons/Down.js +13 -0
  2258. package/transpiled/react/Icons/Download.d.ts +2 -0
  2259. package/transpiled/react/Icons/Download.js +13 -0
  2260. package/transpiled/react/Icons/DrawingArrowUp.d.ts +2 -0
  2261. package/transpiled/react/Icons/DrawingArrowUp.js +13 -0
  2262. package/transpiled/react/Icons/Drive.d.ts +2 -0
  2263. package/transpiled/react/Icons/Drive.js +72 -0
  2264. package/transpiled/react/Icons/DriveText.d.ts +2 -0
  2265. package/transpiled/react/Icons/DriveText.js +87 -0
  2266. package/transpiled/react/Icons/Dropdown.d.ts +2 -0
  2267. package/transpiled/react/Icons/Dropdown.js +13 -0
  2268. package/transpiled/react/Icons/DropdownClose.d.ts +2 -0
  2269. package/transpiled/react/Icons/DropdownClose.js +13 -0
  2270. package/transpiled/react/Icons/DropdownOpen.d.ts +2 -0
  2271. package/transpiled/react/Icons/DropdownOpen.js +13 -0
  2272. package/transpiled/react/Icons/Dropup.d.ts +2 -0
  2273. package/transpiled/react/Icons/Dropup.js +13 -0
  2274. package/transpiled/react/Icons/Ecolyo.d.ts +2 -0
  2275. package/transpiled/react/Icons/Ecolyo.js +27 -0
  2276. package/transpiled/react/Icons/ElectricBike.d.ts +2 -0
  2277. package/transpiled/react/Icons/ElectricBike.js +13 -0
  2278. package/transpiled/react/Icons/ElectricCar.d.ts +2 -0
  2279. package/transpiled/react/Icons/ElectricCar.js +15 -0
  2280. package/transpiled/react/Icons/ElectricScooter.d.ts +2 -0
  2281. package/transpiled/react/Icons/ElectricScooter.js +15 -0
  2282. package/transpiled/react/Icons/Email.d.ts +2 -0
  2283. package/transpiled/react/Icons/Email.js +13 -0
  2284. package/transpiled/react/Icons/EmailNotification.d.ts +2 -0
  2285. package/transpiled/react/Icons/EmailNotification.js +13 -0
  2286. package/transpiled/react/Icons/EmailOpen.d.ts +2 -0
  2287. package/transpiled/react/Icons/EmailOpen.js +53 -0
  2288. package/transpiled/react/Icons/Energy.d.ts +2 -0
  2289. package/transpiled/react/Icons/Energy.js +13 -0
  2290. package/transpiled/react/Icons/Energybreakdown.d.ts +2 -0
  2291. package/transpiled/react/Icons/Energybreakdown.js +13 -0
  2292. package/transpiled/react/Icons/Eu.d.ts +2 -0
  2293. package/transpiled/react/Icons/Eu.js +14 -0
  2294. package/transpiled/react/Icons/Euro.d.ts +2 -0
  2295. package/transpiled/react/Icons/Euro.js +13 -0
  2296. package/transpiled/react/Icons/Exchange.d.ts +2 -0
  2297. package/transpiled/react/Icons/Exchange.js +13 -0
  2298. package/transpiled/react/Icons/Eye.d.ts +2 -0
  2299. package/transpiled/react/Icons/Eye.js +13 -0
  2300. package/transpiled/react/Icons/EyeClosed.d.ts +2 -0
  2301. package/transpiled/react/Icons/EyeClosed.js +13 -0
  2302. package/transpiled/react/Icons/FaceId.d.ts +2 -0
  2303. package/transpiled/react/Icons/FaceId.js +13 -0
  2304. package/transpiled/react/Icons/Fallback.d.ts +2 -0
  2305. package/transpiled/react/Icons/Fallback.js +18 -0
  2306. package/transpiled/react/Icons/Family.d.ts +2 -0
  2307. package/transpiled/react/Icons/Family.js +13 -0
  2308. package/transpiled/react/Icons/File.d.ts +2 -0
  2309. package/transpiled/react/Icons/File.js +13 -0
  2310. package/transpiled/react/Icons/FileAdd.d.ts +2 -0
  2311. package/transpiled/react/Icons/FileAdd.js +13 -0
  2312. package/transpiled/react/Icons/FileDuotone.d.ts +2 -0
  2313. package/transpiled/react/Icons/FileDuotone.js +29 -0
  2314. package/transpiled/react/Icons/FileNew.d.ts +2 -0
  2315. package/transpiled/react/Icons/FileNew.js +13 -0
  2316. package/transpiled/react/Icons/FileNone.d.ts +2 -0
  2317. package/transpiled/react/Icons/FileNone.js +17 -0
  2318. package/transpiled/react/Icons/FileOutline.d.ts +2 -0
  2319. package/transpiled/react/Icons/FileOutline.js +13 -0
  2320. package/transpiled/react/Icons/FileTypeAudio.d.ts +2 -0
  2321. package/transpiled/react/Icons/FileTypeAudio.js +19 -0
  2322. package/transpiled/react/Icons/FileTypeBankingAccount.d.ts +2 -0
  2323. package/transpiled/react/Icons/FileTypeBankingAccount.js +24 -0
  2324. package/transpiled/react/Icons/FileTypeBin.d.ts +2 -0
  2325. package/transpiled/react/Icons/FileTypeBin.js +19 -0
  2326. package/transpiled/react/Icons/FileTypeCode.d.ts +2 -0
  2327. package/transpiled/react/Icons/FileTypeCode.js +19 -0
  2328. package/transpiled/react/Icons/FileTypeFiles.d.ts +2 -0
  2329. package/transpiled/react/Icons/FileTypeFiles.js +24 -0
  2330. package/transpiled/react/Icons/FileTypeFolder.d.ts +2 -0
  2331. package/transpiled/react/Icons/FileTypeFolder.js +36 -0
  2332. package/transpiled/react/Icons/FileTypeImage.d.ts +2 -0
  2333. package/transpiled/react/Icons/FileTypeImage.js +27 -0
  2334. package/transpiled/react/Icons/FileTypeNote.d.ts +2 -0
  2335. package/transpiled/react/Icons/FileTypeNote.js +19 -0
  2336. package/transpiled/react/Icons/FileTypePdf.d.ts +2 -0
  2337. package/transpiled/react/Icons/FileTypePdf.js +19 -0
  2338. package/transpiled/react/Icons/FileTypeServer.d.ts +2 -0
  2339. package/transpiled/react/Icons/FileTypeServer.js +60 -0
  2340. package/transpiled/react/Icons/FileTypeSheet.d.ts +2 -0
  2341. package/transpiled/react/Icons/FileTypeSheet.js +24 -0
  2342. package/transpiled/react/Icons/FileTypeSlide.d.ts +2 -0
  2343. package/transpiled/react/Icons/FileTypeSlide.js +24 -0
  2344. package/transpiled/react/Icons/FileTypeText.d.ts +2 -0
  2345. package/transpiled/react/Icons/FileTypeText.js +19 -0
  2346. package/transpiled/react/Icons/FileTypeVideo.d.ts +2 -0
  2347. package/transpiled/react/Icons/FileTypeVideo.js +19 -0
  2348. package/transpiled/react/Icons/FileTypeZip.d.ts +2 -0
  2349. package/transpiled/react/Icons/FileTypeZip.js +19 -0
  2350. package/transpiled/react/Icons/Files.d.ts +2 -0
  2351. package/transpiled/react/Icons/Files.js +44 -0
  2352. package/transpiled/react/Icons/FilesPen.d.ts +2 -0
  2353. package/transpiled/react/Icons/FilesPen.js +19 -0
  2354. package/transpiled/react/Icons/FilesVersions.d.ts +2 -0
  2355. package/transpiled/react/Icons/FilesVersions.js +19 -0
  2356. package/transpiled/react/Icons/Filter.d.ts +2 -0
  2357. package/transpiled/react/Icons/Filter.js +15 -0
  2358. package/transpiled/react/Icons/Fingerprint.d.ts +2 -0
  2359. package/transpiled/react/Icons/Fingerprint.js +13 -0
  2360. package/transpiled/react/Icons/Fitness.d.ts +2 -0
  2361. package/transpiled/react/Icons/Fitness.js +13 -0
  2362. package/transpiled/react/Icons/Flag.d.ts +2 -0
  2363. package/transpiled/react/Icons/Flag.js +13 -0
  2364. package/transpiled/react/Icons/FlagOutlined.d.ts +2 -0
  2365. package/transpiled/react/Icons/FlagOutlined.js +13 -0
  2366. package/transpiled/react/Icons/FlashAuto.d.ts +2 -0
  2367. package/transpiled/react/Icons/FlashAuto.js +13 -0
  2368. package/transpiled/react/Icons/Flashlight.d.ts +2 -0
  2369. package/transpiled/react/Icons/Flashlight.js +15 -0
  2370. package/transpiled/react/Icons/Folder.d.ts +2 -0
  2371. package/transpiled/react/Icons/Folder.js +13 -0
  2372. package/transpiled/react/Icons/FolderAdd.d.ts +2 -0
  2373. package/transpiled/react/Icons/FolderAdd.js +13 -0
  2374. package/transpiled/react/Icons/FolderMoveto.d.ts +2 -0
  2375. package/transpiled/react/Icons/FolderMoveto.js +13 -0
  2376. package/transpiled/react/Icons/FolderOpen.d.ts +2 -0
  2377. package/transpiled/react/Icons/FolderOpen.js +13 -0
  2378. package/transpiled/react/Icons/Forbidden.d.ts +2 -0
  2379. package/transpiled/react/Icons/Forbidden.js +13 -0
  2380. package/transpiled/react/Icons/ForbiddenSign.d.ts +2 -0
  2381. package/transpiled/react/Icons/ForbiddenSign.js +61 -0
  2382. package/transpiled/react/Icons/FromUser.d.ts +2 -0
  2383. package/transpiled/react/Icons/FromUser.js +15 -0
  2384. package/transpiled/react/Icons/Gear.d.ts +2 -0
  2385. package/transpiled/react/Icons/Gear.js +13 -0
  2386. package/transpiled/react/Icons/Globe.d.ts +2 -0
  2387. package/transpiled/react/Icons/Globe.js +13 -0
  2388. package/transpiled/react/Icons/Google.d.ts +2 -0
  2389. package/transpiled/react/Icons/Google.js +26 -0
  2390. package/transpiled/react/Icons/Gouv.d.ts +2 -0
  2391. package/transpiled/react/Icons/Gouv.js +27 -0
  2392. package/transpiled/react/Icons/GraphCircle.d.ts +2 -0
  2393. package/transpiled/react/Icons/GraphCircle.js +13 -0
  2394. package/transpiled/react/Icons/Grid.d.ts +2 -0
  2395. package/transpiled/react/Icons/Grid.js +13 -0
  2396. package/transpiled/react/Icons/GroupList.d.ts +2 -0
  2397. package/transpiled/react/Icons/GroupList.js +13 -0
  2398. package/transpiled/react/Icons/Groups.d.ts +2 -0
  2399. package/transpiled/react/Icons/Groups.js +13 -0
  2400. package/transpiled/react/Icons/Growth.d.ts +2 -0
  2401. package/transpiled/react/Icons/Growth.js +13 -0
  2402. package/transpiled/react/Icons/Hand.d.ts +2 -0
  2403. package/transpiled/react/Icons/Hand.js +13 -0
  2404. package/transpiled/react/Icons/Heart.d.ts +2 -0
  2405. package/transpiled/react/Icons/Heart.js +13 -0
  2406. package/transpiled/react/Icons/Help.d.ts +2 -0
  2407. package/transpiled/react/Icons/Help.js +13 -0
  2408. package/transpiled/react/Icons/HelpOutlined.d.ts +2 -0
  2409. package/transpiled/react/Icons/HelpOutlined.js +13 -0
  2410. package/transpiled/react/Icons/History.d.ts +2 -0
  2411. package/transpiled/react/Icons/History.js +13 -0
  2412. package/transpiled/react/Icons/Home.d.ts +2 -0
  2413. package/transpiled/react/Icons/Home.js +13 -0
  2414. package/transpiled/react/Icons/HomePermissions.d.ts +2 -0
  2415. package/transpiled/react/Icons/HomePermissions.js +15 -0
  2416. package/transpiled/react/Icons/Hourglass.d.ts +2 -0
  2417. package/transpiled/react/Icons/Hourglass.js +13 -0
  2418. package/transpiled/react/Icons/IconCheckAnimated.d.ts +2 -0
  2419. package/transpiled/react/Icons/IconCheckAnimated.js +24 -0
  2420. package/transpiled/react/Icons/IconCrossAnimated.d.ts +2 -0
  2421. package/transpiled/react/Icons/IconCrossAnimated.js +38 -0
  2422. package/transpiled/react/Icons/Identities.d.ts +2 -0
  2423. package/transpiled/react/Icons/Identities.js +13 -0
  2424. package/transpiled/react/Icons/Image.d.ts +2 -0
  2425. package/transpiled/react/Icons/Image.js +13 -0
  2426. package/transpiled/react/Icons/Info.d.ts +2 -0
  2427. package/transpiled/react/Icons/Info.js +13 -0
  2428. package/transpiled/react/Icons/InfoOutlined.d.ts +2 -0
  2429. package/transpiled/react/Icons/InfoOutlined.js +13 -0
  2430. package/transpiled/react/Icons/Justice.d.ts +2 -0
  2431. package/transpiled/react/Icons/Justice.js +13 -0
  2432. package/transpiled/react/Icons/Key.d.ts +2 -0
  2433. package/transpiled/react/Icons/Key.js +13 -0
  2434. package/transpiled/react/Icons/Key2.d.ts +2 -0
  2435. package/transpiled/react/Icons/Key2.js +21 -0
  2436. package/transpiled/react/Icons/Keychain.d.ts +2 -0
  2437. package/transpiled/react/Icons/Keychain.js +13 -0
  2438. package/transpiled/react/Icons/Konnectors.d.ts +2 -0
  2439. package/transpiled/react/Icons/Konnectors.js +13 -0
  2440. package/transpiled/react/Icons/KonnectorsResult.d.ts +2 -0
  2441. package/transpiled/react/Icons/KonnectorsResult.js +13 -0
  2442. package/transpiled/react/Icons/Label.d.ts +2 -0
  2443. package/transpiled/react/Icons/Label.js +13 -0
  2444. package/transpiled/react/Icons/LabelOutlined.d.ts +2 -0
  2445. package/transpiled/react/Icons/LabelOutlined.js +13 -0
  2446. package/transpiled/react/Icons/Laptop.d.ts +2 -0
  2447. package/transpiled/react/Icons/Laptop.js +13 -0
  2448. package/transpiled/react/Icons/Laudry.d.ts +2 -0
  2449. package/transpiled/react/Icons/Laudry.js +15 -0
  2450. package/transpiled/react/Icons/Left.d.ts +2 -0
  2451. package/transpiled/react/Icons/Left.js +13 -0
  2452. package/transpiled/react/Icons/Library.d.ts +2 -0
  2453. package/transpiled/react/Icons/Library.js +15 -0
  2454. package/transpiled/react/Icons/Lightbulb.d.ts +2 -0
  2455. package/transpiled/react/Icons/Lightbulb.js +13 -0
  2456. package/transpiled/react/Icons/Lightning.d.ts +2 -0
  2457. package/transpiled/react/Icons/Lightning.js +13 -0
  2458. package/transpiled/react/Icons/Link.d.ts +2 -0
  2459. package/transpiled/react/Icons/Link.js +13 -0
  2460. package/transpiled/react/Icons/LinkOut.d.ts +2 -0
  2461. package/transpiled/react/Icons/LinkOut.js +13 -0
  2462. package/transpiled/react/Icons/List.d.ts +2 -0
  2463. package/transpiled/react/Icons/List.js +13 -0
  2464. package/transpiled/react/Icons/ListMin.d.ts +2 -0
  2465. package/transpiled/react/Icons/ListMin.js +13 -0
  2466. package/transpiled/react/Icons/Location.d.ts +2 -0
  2467. package/transpiled/react/Icons/Location.js +15 -0
  2468. package/transpiled/react/Icons/LocationPermissions.d.ts +2 -0
  2469. package/transpiled/react/Icons/LocationPermissions.js +13 -0
  2470. package/transpiled/react/Icons/Lock.d.ts +2 -0
  2471. package/transpiled/react/Icons/Lock.js +13 -0
  2472. package/transpiled/react/Icons/LockScreen.d.ts +2 -0
  2473. package/transpiled/react/Icons/LockScreen.js +13 -0
  2474. package/transpiled/react/Icons/Logout.d.ts +2 -0
  2475. package/transpiled/react/Icons/Logout.js +13 -0
  2476. package/transpiled/react/Icons/LogoutLarge.d.ts +2 -0
  2477. package/transpiled/react/Icons/LogoutLarge.js +13 -0
  2478. package/transpiled/react/Icons/MagicTrick.d.ts +2 -0
  2479. package/transpiled/react/Icons/MagicTrick.js +13 -0
  2480. package/transpiled/react/Icons/Magnet.d.ts +2 -0
  2481. package/transpiled/react/Icons/Magnet.js +14 -0
  2482. package/transpiled/react/Icons/Magnifier.d.ts +2 -0
  2483. package/transpiled/react/Icons/Magnifier.js +13 -0
  2484. package/transpiled/react/Icons/Mail.d.ts +2 -0
  2485. package/transpiled/react/Icons/Mail.js +67 -0
  2486. package/transpiled/react/Icons/MailText.d.ts +2 -0
  2487. package/transpiled/react/Icons/MailText.js +72 -0
  2488. package/transpiled/react/Icons/Matrix.d.ts +2 -0
  2489. package/transpiled/react/Icons/Matrix.js +13 -0
  2490. package/transpiled/react/Icons/Merge.d.ts +2 -0
  2491. package/transpiled/react/Icons/Merge.js +13 -0
  2492. package/transpiled/react/Icons/Moped.d.ts +2 -0
  2493. package/transpiled/react/Icons/Moped.js +15 -0
  2494. package/transpiled/react/Icons/Mosaic.d.ts +2 -0
  2495. package/transpiled/react/Icons/Mosaic.js +15 -0
  2496. package/transpiled/react/Icons/MosaicMin.d.ts +2 -0
  2497. package/transpiled/react/Icons/MosaicMin.js +13 -0
  2498. package/transpiled/react/Icons/Motorcycle.d.ts +2 -0
  2499. package/transpiled/react/Icons/Motorcycle.js +13 -0
  2500. package/transpiled/react/Icons/Mountain.d.ts +2 -0
  2501. package/transpiled/react/Icons/Mountain.js +13 -0
  2502. package/transpiled/react/Icons/Movement.d.ts +2 -0
  2503. package/transpiled/react/Icons/Movement.js +13 -0
  2504. package/transpiled/react/Icons/MovementIn.d.ts +2 -0
  2505. package/transpiled/react/Icons/MovementIn.js +13 -0
  2506. package/transpiled/react/Icons/MovementOut.d.ts +2 -0
  2507. package/transpiled/react/Icons/MovementOut.js +13 -0
  2508. package/transpiled/react/Icons/Moveto.d.ts +2 -0
  2509. package/transpiled/react/Icons/Moveto.js +13 -0
  2510. package/transpiled/react/Icons/MultiFiles.d.ts +2 -0
  2511. package/transpiled/react/Icons/MultiFiles.js +13 -0
  2512. package/transpiled/react/Icons/Music.d.ts +2 -0
  2513. package/transpiled/react/Icons/Music.js +13 -0
  2514. package/transpiled/react/Icons/New.d.ts +2 -0
  2515. package/transpiled/react/Icons/New.js +13 -0
  2516. package/transpiled/react/Icons/Next.d.ts +2 -0
  2517. package/transpiled/react/Icons/Next.js +13 -0
  2518. package/transpiled/react/Icons/Note.d.ts +2 -0
  2519. package/transpiled/react/Icons/Note.js +15 -0
  2520. package/transpiled/react/Icons/Notes.d.ts +2 -0
  2521. package/transpiled/react/Icons/Notes.js +70 -0
  2522. package/transpiled/react/Icons/NotesText.d.ts +2 -0
  2523. package/transpiled/react/Icons/NotesText.js +87 -0
  2524. package/transpiled/react/Icons/NotificationEmail.d.ts +2 -0
  2525. package/transpiled/react/Icons/NotificationEmail.js +13 -0
  2526. package/transpiled/react/Icons/Notifications.d.ts +2 -0
  2527. package/transpiled/react/Icons/Notifications.js +13 -0
  2528. package/transpiled/react/Icons/Number.d.ts +2 -0
  2529. package/transpiled/react/Icons/Number.js +13 -0
  2530. package/transpiled/react/Icons/Offline.d.ts +2 -0
  2531. package/transpiled/react/Icons/Offline.js +13 -0
  2532. package/transpiled/react/Icons/Online.d.ts +2 -0
  2533. package/transpiled/react/Icons/Online.js +13 -0
  2534. package/transpiled/react/Icons/OnlyOffice.d.ts +2 -0
  2535. package/transpiled/react/Icons/OnlyOffice.js +67 -0
  2536. package/transpiled/react/Icons/Openapp.d.ts +2 -0
  2537. package/transpiled/react/Icons/Openapp.js +13 -0
  2538. package/transpiled/react/Icons/Openwith.d.ts +2 -0
  2539. package/transpiled/react/Icons/Openwith.js +13 -0
  2540. package/transpiled/react/Icons/Opinions.d.ts +2 -0
  2541. package/transpiled/react/Icons/Opinions.js +13 -0
  2542. package/transpiled/react/Icons/Palette.d.ts +2 -0
  2543. package/transpiled/react/Icons/Palette.js +15 -0
  2544. package/transpiled/react/Icons/Paper.d.ts +2 -0
  2545. package/transpiled/react/Icons/Paper.js +17 -0
  2546. package/transpiled/react/Icons/Paperplane.d.ts +2 -0
  2547. package/transpiled/react/Icons/Paperplane.js +13 -0
  2548. package/transpiled/react/Icons/Papers.d.ts +2 -0
  2549. package/transpiled/react/Icons/Papers.js +72 -0
  2550. package/transpiled/react/Icons/Pass.d.ts +2 -0
  2551. package/transpiled/react/Icons/Pass.js +66 -0
  2552. package/transpiled/react/Icons/PassText.d.ts +2 -0
  2553. package/transpiled/react/Icons/PassText.js +15 -0
  2554. package/transpiled/react/Icons/Password.d.ts +2 -0
  2555. package/transpiled/react/Icons/Password.js +13 -0
  2556. package/transpiled/react/Icons/Passwords.d.ts +2 -0
  2557. package/transpiled/react/Icons/Passwords.js +13 -0
  2558. package/transpiled/react/Icons/Pen.d.ts +2 -0
  2559. package/transpiled/react/Icons/Pen.js +13 -0
  2560. package/transpiled/react/Icons/People.d.ts +2 -0
  2561. package/transpiled/react/Icons/People.js +13 -0
  2562. package/transpiled/react/Icons/Peoples.d.ts +2 -0
  2563. package/transpiled/react/Icons/Peoples.js +13 -0
  2564. package/transpiled/react/Icons/Percent.d.ts +2 -0
  2565. package/transpiled/react/Icons/Percent.js +13 -0
  2566. package/transpiled/react/Icons/PercentCircle.d.ts +2 -0
  2567. package/transpiled/react/Icons/PercentCircle.js +13 -0
  2568. package/transpiled/react/Icons/Permissions.d.ts +2 -0
  2569. package/transpiled/react/Icons/Permissions.js +13 -0
  2570. package/transpiled/react/Icons/PersonAdd.d.ts +2 -0
  2571. package/transpiled/react/Icons/PersonAdd.js +13 -0
  2572. package/transpiled/react/Icons/PersonalData.d.ts +2 -0
  2573. package/transpiled/react/Icons/PersonalData.js +13 -0
  2574. package/transpiled/react/Icons/Phone.d.ts +2 -0
  2575. package/transpiled/react/Icons/Phone.js +13 -0
  2576. package/transpiled/react/Icons/PhoneDownload.d.ts +2 -0
  2577. package/transpiled/react/Icons/PhoneDownload.js +15 -0
  2578. package/transpiled/react/Icons/PhoneUpload.d.ts +2 -0
  2579. package/transpiled/react/Icons/PhoneUpload.js +13 -0
  2580. package/transpiled/react/Icons/Photos.d.ts +2 -0
  2581. package/transpiled/react/Icons/Photos.js +112 -0
  2582. package/transpiled/react/Icons/PhotosAlbum.d.ts +2 -0
  2583. package/transpiled/react/Icons/PhotosAlbum.js +13 -0
  2584. package/transpiled/react/Icons/PhotosSettings.d.ts +2 -0
  2585. package/transpiled/react/Icons/PhotosSettings.js +15 -0
  2586. package/transpiled/react/Icons/PhotosText.d.ts +2 -0
  2587. package/transpiled/react/Icons/PhotosText.js +108 -0
  2588. package/transpiled/react/Icons/PieChart.d.ts +2 -0
  2589. package/transpiled/react/Icons/PieChart.js +13 -0
  2590. package/transpiled/react/Icons/Pin.d.ts +2 -0
  2591. package/transpiled/react/Icons/Pin.js +13 -0
  2592. package/transpiled/react/Icons/Plane.d.ts +2 -0
  2593. package/transpiled/react/Icons/Plane.js +13 -0
  2594. package/transpiled/react/Icons/Plus.d.ts +2 -0
  2595. package/transpiled/react/Icons/Plus.js +13 -0
  2596. package/transpiled/react/Icons/PlusSmall.d.ts +2 -0
  2597. package/transpiled/react/Icons/PlusSmall.js +13 -0
  2598. package/transpiled/react/Icons/PopInside.d.ts +2 -0
  2599. package/transpiled/react/Icons/PopInside.js +13 -0
  2600. package/transpiled/react/Icons/Previous.d.ts +2 -0
  2601. package/transpiled/react/Icons/Previous.js +13 -0
  2602. package/transpiled/react/Icons/Printer.d.ts +2 -0
  2603. package/transpiled/react/Icons/Printer.js +15 -0
  2604. package/transpiled/react/Icons/Profile.d.ts +2 -0
  2605. package/transpiled/react/Icons/Profile.js +15 -0
  2606. package/transpiled/react/Icons/Qualify.d.ts +2 -0
  2607. package/transpiled/react/Icons/Qualify.js +13 -0
  2608. package/transpiled/react/Icons/RadioChecked.d.ts +2 -0
  2609. package/transpiled/react/Icons/RadioChecked.js +15 -0
  2610. package/transpiled/react/Icons/RadioUnchecked.d.ts +2 -0
  2611. package/transpiled/react/Icons/RadioUnchecked.js +13 -0
  2612. package/transpiled/react/Icons/Refresh.d.ts +2 -0
  2613. package/transpiled/react/Icons/Refresh.js +13 -0
  2614. package/transpiled/react/Icons/Relationship.d.ts +2 -0
  2615. package/transpiled/react/Icons/Relationship.js +17 -0
  2616. package/transpiled/react/Icons/Remboursement.d.ts +2 -0
  2617. package/transpiled/react/Icons/Remboursement.js +13 -0
  2618. package/transpiled/react/Icons/Rename.d.ts +2 -0
  2619. package/transpiled/react/Icons/Rename.js +13 -0
  2620. package/transpiled/react/Icons/Repare.d.ts +2 -0
  2621. package/transpiled/react/Icons/Repare.js +13 -0
  2622. package/transpiled/react/Icons/Reply.d.ts +2 -0
  2623. package/transpiled/react/Icons/Reply.js +13 -0
  2624. package/transpiled/react/Icons/Restaurant.d.ts +2 -0
  2625. package/transpiled/react/Icons/Restaurant.js +13 -0
  2626. package/transpiled/react/Icons/Restore.d.ts +2 -0
  2627. package/transpiled/react/Icons/Restore.js +13 -0
  2628. package/transpiled/react/Icons/RestoreStraight.d.ts +2 -0
  2629. package/transpiled/react/Icons/RestoreStraight.js +13 -0
  2630. package/transpiled/react/Icons/Right.d.ts +2 -0
  2631. package/transpiled/react/Icons/Right.js +13 -0
  2632. package/transpiled/react/Icons/Rise.d.ts +2 -0
  2633. package/transpiled/react/Icons/Rise.js +13 -0
  2634. package/transpiled/react/Icons/RotateLeft.d.ts +2 -0
  2635. package/transpiled/react/Icons/RotateLeft.js +13 -0
  2636. package/transpiled/react/Icons/RotateRight.d.ts +2 -0
  2637. package/transpiled/react/Icons/RotateRight.js +13 -0
  2638. package/transpiled/react/Icons/SadCozy.d.ts +2 -0
  2639. package/transpiled/react/Icons/SadCozy.js +14 -0
  2640. package/transpiled/react/Icons/Safe.d.ts +2 -0
  2641. package/transpiled/react/Icons/Safe.js +13 -0
  2642. package/transpiled/react/Icons/SafePermissions.d.ts +2 -0
  2643. package/transpiled/react/Icons/SafePermissions.js +15 -0
  2644. package/transpiled/react/Icons/School.d.ts +2 -0
  2645. package/transpiled/react/Icons/School.js +13 -0
  2646. package/transpiled/react/Icons/Scooter.d.ts +2 -0
  2647. package/transpiled/react/Icons/Scooter.js +15 -0
  2648. package/transpiled/react/Icons/Security.d.ts +2 -0
  2649. package/transpiled/react/Icons/Security.js +13 -0
  2650. package/transpiled/react/Icons/SelectAll.d.ts +2 -0
  2651. package/transpiled/react/Icons/SelectAll.js +13 -0
  2652. package/transpiled/react/Icons/Server.d.ts +2 -0
  2653. package/transpiled/react/Icons/Server.js +13 -0
  2654. package/transpiled/react/Icons/Setting.d.ts +2 -0
  2655. package/transpiled/react/Icons/Setting.js +13 -0
  2656. package/transpiled/react/Icons/Settings.d.ts +2 -0
  2657. package/transpiled/react/Icons/Settings.js +15 -0
  2658. package/transpiled/react/Icons/Share.d.ts +2 -0
  2659. package/transpiled/react/Icons/Share.js +13 -0
  2660. package/transpiled/react/Icons/ShareCircle.d.ts +2 -0
  2661. package/transpiled/react/Icons/ShareCircle.js +14 -0
  2662. package/transpiled/react/Icons/ShareGrey08.d.ts +2 -0
  2663. package/transpiled/react/Icons/ShareGrey08.js +18 -0
  2664. package/transpiled/react/Icons/ShareIos.d.ts +2 -0
  2665. package/transpiled/react/Icons/ShareIos.js +14 -0
  2666. package/transpiled/react/Icons/Sharings.d.ts +2 -0
  2667. package/transpiled/react/Icons/Sharings.js +13 -0
  2668. package/transpiled/react/Icons/Shield.d.ts +2 -0
  2669. package/transpiled/react/Icons/Shield.js +13 -0
  2670. package/transpiled/react/Icons/Shop.d.ts +2 -0
  2671. package/transpiled/react/Icons/Shop.js +13 -0
  2672. package/transpiled/react/Icons/Sinister.d.ts +2 -0
  2673. package/transpiled/react/Icons/Sinister.js +13 -0
  2674. package/transpiled/react/Icons/Sound.d.ts +2 -0
  2675. package/transpiled/react/Icons/Sound.js +13 -0
  2676. package/transpiled/react/Icons/Spinner.d.ts +2 -0
  2677. package/transpiled/react/Icons/Spinner.js +16 -0
  2678. package/transpiled/react/Icons/SportBag.d.ts +2 -0
  2679. package/transpiled/react/Icons/SportBag.js +15 -0
  2680. package/transpiled/react/Icons/Stack.d.ts +2 -0
  2681. package/transpiled/react/Icons/Stack.js +13 -0
  2682. package/transpiled/react/Icons/Star.d.ts +2 -0
  2683. package/transpiled/react/Icons/Star.js +13 -0
  2684. package/transpiled/react/Icons/StarOutline.d.ts +2 -0
  2685. package/transpiled/react/Icons/StarOutline.js +13 -0
  2686. package/transpiled/react/Icons/Stats.d.ts +2 -0
  2687. package/transpiled/react/Icons/Stats.js +13 -0
  2688. package/transpiled/react/Icons/Stop.d.ts +2 -0
  2689. package/transpiled/react/Icons/Stop.js +13 -0
  2690. package/transpiled/react/Icons/Store.d.ts +2 -0
  2691. package/transpiled/react/Icons/Store.js +68 -0
  2692. package/transpiled/react/Icons/StoreText.d.ts +2 -0
  2693. package/transpiled/react/Icons/StoreText.js +92 -0
  2694. package/transpiled/react/Icons/Subway.d.ts +2 -0
  2695. package/transpiled/react/Icons/Subway.js +13 -0
  2696. package/transpiled/react/Icons/Support.d.ts +2 -0
  2697. package/transpiled/react/Icons/Support.js +13 -0
  2698. package/transpiled/react/Icons/Swap.d.ts +2 -0
  2699. package/transpiled/react/Icons/Swap.js +13 -0
  2700. package/transpiled/react/Icons/Sync.d.ts +2 -0
  2701. package/transpiled/react/Icons/Sync.js +13 -0
  2702. package/transpiled/react/Icons/SyncCozy.d.ts +2 -0
  2703. package/transpiled/react/Icons/SyncCozy.js +15 -0
  2704. package/transpiled/react/Icons/Tab.d.ts +2 -0
  2705. package/transpiled/react/Icons/Tab.js +13 -0
  2706. package/transpiled/react/Icons/Tag.d.ts +2 -0
  2707. package/transpiled/react/Icons/Tag.js +15 -0
  2708. package/transpiled/react/Icons/Tags.d.ts +2 -0
  2709. package/transpiled/react/Icons/Tags.js +17 -0
  2710. package/transpiled/react/Icons/Target.d.ts +2 -0
  2711. package/transpiled/react/Icons/Target.js +13 -0
  2712. package/transpiled/react/Icons/Task.d.ts +2 -0
  2713. package/transpiled/react/Icons/Task.js +13 -0
  2714. package/transpiled/react/Icons/TaskToEffectuate.d.ts +2 -0
  2715. package/transpiled/react/Icons/TaskToEffectuate.js +17 -0
  2716. package/transpiled/react/Icons/Team.d.ts +2 -0
  2717. package/transpiled/react/Icons/Team.js +15 -0
  2718. package/transpiled/react/Icons/Telecom.d.ts +2 -0
  2719. package/transpiled/react/Icons/Telecom.js +15 -0
  2720. package/transpiled/react/Icons/Telephone.d.ts +2 -0
  2721. package/transpiled/react/Icons/Telephone.js +13 -0
  2722. package/transpiled/react/Icons/Text.d.ts +2 -0
  2723. package/transpiled/react/Icons/Text.js +13 -0
  2724. package/transpiled/react/Icons/TextInfo.d.ts +2 -0
  2725. package/transpiled/react/Icons/TextInfo.js +13 -0
  2726. package/transpiled/react/Icons/ToTheCloud.d.ts +2 -0
  2727. package/transpiled/react/Icons/ToTheCloud.js +13 -0
  2728. package/transpiled/react/Icons/Top.d.ts +2 -0
  2729. package/transpiled/react/Icons/Top.js +13 -0
  2730. package/transpiled/react/Icons/TopSelect.d.ts +2 -0
  2731. package/transpiled/react/Icons/TopSelect.js +13 -0
  2732. package/transpiled/react/Icons/Train.d.ts +2 -0
  2733. package/transpiled/react/Icons/Train.js +15 -0
  2734. package/transpiled/react/Icons/Tram.d.ts +2 -0
  2735. package/transpiled/react/Icons/Tram.js +13 -0
  2736. package/transpiled/react/Icons/Trash.d.ts +2 -0
  2737. package/transpiled/react/Icons/Trash.js +13 -0
  2738. package/transpiled/react/Icons/TrashDuotone.d.ts +2 -0
  2739. package/transpiled/react/Icons/TrashDuotone.js +13 -0
  2740. package/transpiled/react/Icons/Triggers.d.ts +2 -0
  2741. package/transpiled/react/Icons/Triggers.js +13 -0
  2742. package/transpiled/react/Icons/Trophy.d.ts +2 -0
  2743. package/transpiled/react/Icons/Trophy.js +13 -0
  2744. package/transpiled/react/Icons/TwakeText.d.ts +2 -0
  2745. package/transpiled/react/Icons/TwakeText.js +18 -0
  2746. package/transpiled/react/Icons/TwakeWorkplace.d.ts +2 -0
  2747. package/transpiled/react/Icons/TwakeWorkplace.js +79 -0
  2748. package/transpiled/react/Icons/Uncloud.d.ts +2 -0
  2749. package/transpiled/react/Icons/Uncloud.js +13 -0
  2750. package/transpiled/react/Icons/Unknow.d.ts +2 -0
  2751. package/transpiled/react/Icons/Unknow.js +13 -0
  2752. package/transpiled/react/Icons/Unlink.d.ts +2 -0
  2753. package/transpiled/react/Icons/Unlink.js +13 -0
  2754. package/transpiled/react/Icons/Unlock.d.ts +2 -0
  2755. package/transpiled/react/Icons/Unlock.js +13 -0
  2756. package/transpiled/react/Icons/Up.d.ts +2 -0
  2757. package/transpiled/react/Icons/Up.js +13 -0
  2758. package/transpiled/react/Icons/Upload.d.ts +2 -0
  2759. package/transpiled/react/Icons/Upload.js +13 -0
  2760. package/transpiled/react/Icons/Versioning.d.ts +2 -0
  2761. package/transpiled/react/Icons/Versioning.js +13 -0
  2762. package/transpiled/react/Icons/Videos.d.ts +2 -0
  2763. package/transpiled/react/Icons/Videos.js +13 -0
  2764. package/transpiled/react/Icons/Walk.d.ts +2 -0
  2765. package/transpiled/react/Icons/Walk.js +13 -0
  2766. package/transpiled/react/Icons/Wallet.d.ts +2 -0
  2767. package/transpiled/react/Icons/Wallet.js +13 -0
  2768. package/transpiled/react/Icons/WalletAdd.d.ts +2 -0
  2769. package/transpiled/react/Icons/WalletAdd.js +14 -0
  2770. package/transpiled/react/Icons/WalletNew.d.ts +2 -0
  2771. package/transpiled/react/Icons/WalletNew.js +14 -0
  2772. package/transpiled/react/Icons/Warn.d.ts +2 -0
  2773. package/transpiled/react/Icons/Warn.js +15 -0
  2774. package/transpiled/react/Icons/Warning.d.ts +2 -0
  2775. package/transpiled/react/Icons/Warning.js +13 -0
  2776. package/transpiled/react/Icons/WarningCircle.d.ts +2 -0
  2777. package/transpiled/react/Icons/WarningCircle.js +13 -0
  2778. package/transpiled/react/Icons/Water.d.ts +2 -0
  2779. package/transpiled/react/Icons/Water.js +13 -0
  2780. package/transpiled/react/Icons/Work.d.ts +2 -0
  2781. package/transpiled/react/Icons/Work.js +13 -0
  2782. package/transpiled/react/Icons/WorkplaceText.d.ts +2 -0
  2783. package/transpiled/react/Icons/WorkplaceText.js +15 -0
  2784. package/transpiled/react/Icons/WrenchCircle.d.ts +2 -0
  2785. package/transpiled/react/Icons/WrenchCircle.js +19 -0
  2786. package/transpiled/react/InfosBadge/index.d.ts +5 -0
  2787. package/transpiled/react/InfosBadge/index.js +36 -0
  2788. package/transpiled/react/Input/index.d.ts +2 -0
  2789. package/transpiled/react/Input/index.js +2 -0
  2790. package/transpiled/react/InputAdornment/index.d.ts +2 -0
  2791. package/transpiled/react/InputAdornment/index.js +2 -0
  2792. package/transpiled/react/InputBase/index.d.ts +2 -0
  2793. package/transpiled/react/InputBase/index.js +2 -0
  2794. package/transpiled/react/InputGroup/index.d.ts +30 -0
  2795. package/transpiled/react/InputGroup/index.js +107 -0
  2796. package/transpiled/react/InputLabel/index.d.ts +2 -0
  2797. package/transpiled/react/InputLabel/index.js +2 -0
  2798. package/transpiled/react/IntentDialogOpener/IntentDialogOpener.d.ts +32 -0
  2799. package/transpiled/react/IntentDialogOpener/IntentDialogOpener.js +120 -0
  2800. package/transpiled/react/IntentDialogOpener/index.d.ts +1 -0
  2801. package/transpiled/react/IntentDialogOpener/index.js +1 -0
  2802. package/transpiled/react/IntentHeader/index.d.ts +23 -0
  2803. package/transpiled/react/IntentHeader/index.js +33 -0
  2804. package/transpiled/react/IntentIframe/IntentIframe.d.ts +8 -0
  2805. package/transpiled/react/IntentIframe/IntentIframe.js +159 -0
  2806. package/transpiled/react/IntentIframe/index.d.ts +1 -0
  2807. package/transpiled/react/IntentIframe/index.js +1 -0
  2808. package/transpiled/react/IntentWrapper/index.d.ts +20 -0
  2809. package/transpiled/react/IntentWrapper/index.js +38 -0
  2810. package/transpiled/react/Label/index.d.ts +20 -0
  2811. package/transpiled/react/Label/index.js +42 -0
  2812. package/transpiled/react/Labs/CollectionField/index.d.ts +23 -0
  2813. package/transpiled/react/Labs/CollectionField/index.js +142 -0
  2814. package/transpiled/react/Labs/ExperimentalDialog/index.d.ts +4 -0
  2815. package/transpiled/react/Labs/ExperimentalDialog/index.js +19 -0
  2816. package/transpiled/react/Labs/IconGrid/index.d.ts +4 -0
  2817. package/transpiled/react/Labs/IconGrid/index.js +13 -0
  2818. package/transpiled/react/Labs/PasswordInput/helpers.d.ts +4 -0
  2819. package/transpiled/react/Labs/PasswordInput/helpers.js +75 -0
  2820. package/transpiled/react/Labs/PasswordInput/helpers.spec.d.ts +1 -0
  2821. package/transpiled/react/Labs/PasswordInput/index.d.ts +15 -0
  2822. package/transpiled/react/Labs/PasswordInput/index.js +93 -0
  2823. package/transpiled/react/Labs/index.d.ts +0 -0
  2824. package/transpiled/react/Labs/index.js +0 -0
  2825. package/transpiled/react/Layout/Layout.d.ts +6 -0
  2826. package/transpiled/react/Layout/Layout.js +110 -0
  2827. package/transpiled/react/Layout/index.d.ts +1 -0
  2828. package/transpiled/react/Layout/index.js +1 -0
  2829. package/transpiled/react/LinearProgress/index.d.ts +2 -0
  2830. package/transpiled/react/LinearProgress/index.js +2 -0
  2831. package/transpiled/react/Link/index.d.ts +2 -0
  2832. package/transpiled/react/Link/index.js +2 -0
  2833. package/transpiled/react/List/index.d.ts +9 -0
  2834. package/transpiled/react/List/index.js +8 -0
  2835. package/transpiled/react/ListItem/ExpandedAttributes/ExpandedAttribute.d.ts +14 -0
  2836. package/transpiled/react/ListItem/ExpandedAttributes/ExpandedAttribute.js +45 -0
  2837. package/transpiled/react/ListItem/ExpandedAttributes/helpers.d.ts +43 -0
  2838. package/transpiled/react/ListItem/ExpandedAttributes/helpers.js +215 -0
  2839. package/transpiled/react/ListItem/ExpandedAttributes/helpers.spec.d.ts +1 -0
  2840. package/transpiled/react/ListItem/ExpandedAttributes/index.d.ts +2 -0
  2841. package/transpiled/react/ListItem/ExpandedAttributes/index.js +66 -0
  2842. package/transpiled/react/ListItem/ListItemBase/Renaming/RenameDialog.d.ts +2 -0
  2843. package/transpiled/react/ListItem/ListItemBase/Renaming/RenameDialog.js +35 -0
  2844. package/transpiled/react/ListItem/ListItemBase/Renaming/RenameInput.d.ts +12 -0
  2845. package/transpiled/react/ListItem/ListItemBase/Renaming/RenameInput.js +292 -0
  2846. package/transpiled/react/ListItem/ListItemBase/Renaming/helpers.d.ts +1 -0
  2847. package/transpiled/react/ListItem/ListItemBase/Renaming/helpers.js +59 -0
  2848. package/transpiled/react/ListItem/ListItemBase/index.d.ts +2 -0
  2849. package/transpiled/react/ListItem/ListItemBase/index.js +122 -0
  2850. package/transpiled/react/ListItem/ListItemByDoc/index.d.ts +46 -0
  2851. package/transpiled/react/ListItem/ListItemByDoc/index.js +95 -0
  2852. package/transpiled/react/ListItem/ListItemContact/helpers.d.ts +1 -0
  2853. package/transpiled/react/ListItem/ListItemContact/helpers.js +29 -0
  2854. package/transpiled/react/ListItem/ListItemContact/helpers.spec.d.ts +1 -0
  2855. package/transpiled/react/ListItem/ListItemContact/index.d.ts +35 -0
  2856. package/transpiled/react/ListItem/ListItemContact/index.js +68 -0
  2857. package/transpiled/react/ListItem/ListItemContact/useActions.d.ts +2 -0
  2858. package/transpiled/react/ListItem/ListItemContact/useActions.js +18 -0
  2859. package/transpiled/react/ListItem/ListItemFile/ExpirationAnnotation.d.ts +2 -0
  2860. package/transpiled/react/ListItem/ListItemFile/ExpirationAnnotation.js +37 -0
  2861. package/transpiled/react/ListItem/ListItemFile/ItemIcon.d.ts +12 -0
  2862. package/transpiled/react/ListItem/ListItemFile/ItemIcon.js +42 -0
  2863. package/transpiled/react/ListItem/ListItemFile/PrimaryText.d.ts +12 -0
  2864. package/transpiled/react/ListItem/ListItemFile/PrimaryText.js +33 -0
  2865. package/transpiled/react/ListItem/ListItemFile/SecondaryText.d.ts +12 -0
  2866. package/transpiled/react/ListItem/ListItemFile/SecondaryText.js +27 -0
  2867. package/transpiled/react/ListItem/ListItemFile/index.d.ts +37 -0
  2868. package/transpiled/react/ListItem/ListItemFile/index.js +78 -0
  2869. package/transpiled/react/ListItem/hoc/withListItemLocales.d.ts +12 -0
  2870. package/transpiled/react/ListItem/hoc/withListItemLocales.js +308 -0
  2871. package/transpiled/react/ListItem/index.d.ts +10 -0
  2872. package/transpiled/react/ListItem/index.js +140 -0
  2873. package/transpiled/react/ListItemAvatar/index.d.ts +2 -0
  2874. package/transpiled/react/ListItemAvatar/index.js +2 -0
  2875. package/transpiled/react/ListItemIcon/index.d.ts +8 -0
  2876. package/transpiled/react/ListItemIcon/index.js +25 -0
  2877. package/transpiled/react/ListItemSecondaryAction/index.d.ts +2 -0
  2878. package/transpiled/react/ListItemSecondaryAction/index.js +2 -0
  2879. package/transpiled/react/ListItemText/index.d.ts +5 -0
  2880. package/transpiled/react/ListItemText/index.js +71 -0
  2881. package/transpiled/react/ListSubheader/index.d.ts +3 -0
  2882. package/transpiled/react/ListSubheader/index.js +43 -0
  2883. package/transpiled/react/LoadMore/index.d.ts +12 -0
  2884. package/transpiled/react/LoadMore/index.js +81 -0
  2885. package/transpiled/react/Markdown/index.d.ts +4 -0
  2886. package/transpiled/react/Markdown/index.js +39 -0
  2887. package/transpiled/react/Menu/index.d.ts +2 -0
  2888. package/transpiled/react/Menu/index.js +2 -0
  2889. package/transpiled/react/MenuItem/index.d.ts +3 -0
  2890. package/transpiled/react/MenuItem/index.js +20 -0
  2891. package/transpiled/react/MenuList/index.d.ts +2 -0
  2892. package/transpiled/react/MenuList/index.js +2 -0
  2893. package/transpiled/react/MidEllipsis/index.d.ts +3 -0
  2894. package/transpiled/react/MidEllipsis/index.js +41 -0
  2895. package/transpiled/react/MobileStepper/index.d.ts +2 -0
  2896. package/transpiled/react/MobileStepper/index.js +2 -0
  2897. package/transpiled/react/Modal/index.d.ts +2 -0
  2898. package/transpiled/react/Modal/index.js +2 -0
  2899. package/transpiled/react/MuiCozyTheme/Divider/index.d.ts +2 -0
  2900. package/transpiled/react/MuiCozyTheme/Divider/index.js +11 -0
  2901. package/transpiled/react/MuiCozyTheme/List/index.d.ts +2 -0
  2902. package/transpiled/react/MuiCozyTheme/List/index.js +11 -0
  2903. package/transpiled/react/MuiCozyTheme/ListItem/index.d.ts +2 -0
  2904. package/transpiled/react/MuiCozyTheme/ListItem/index.js +11 -0
  2905. package/transpiled/react/MuiCozyTheme/ListItemIcon/index.d.ts +2 -0
  2906. package/transpiled/react/MuiCozyTheme/ListItemIcon/index.js +11 -0
  2907. package/transpiled/react/MuiCozyTheme/ListItemSecondaryAction/index.d.ts +2 -0
  2908. package/transpiled/react/MuiCozyTheme/ListItemSecondaryAction/index.js +11 -0
  2909. package/transpiled/react/MuiCozyTheme/helpers.d.ts +138 -0
  2910. package/transpiled/react/MuiCozyTheme/helpers.js +179 -0
  2911. package/transpiled/react/MuiCozyTheme/index.d.ts +19 -0
  2912. package/transpiled/react/MuiCozyTheme/index.js +24 -0
  2913. package/transpiled/react/MuiCozyTheme/makePalette.d.ts +1 -0
  2914. package/transpiled/react/MuiCozyTheme/makePalette.js +170 -0
  2915. package/transpiled/react/MuiCozyTheme/makeTheme.d.ts +15 -0
  2916. package/transpiled/react/MuiCozyTheme/makeTheme.js +71 -0
  2917. package/transpiled/react/MuiCozyTheme/makeTypography.d.ts +78 -0
  2918. package/transpiled/react/MuiCozyTheme/makeTypography.js +80 -0
  2919. package/transpiled/react/MuiCozyTheme/overrides/makeDarkInvertedOverrides.d.ts +1794 -0
  2920. package/transpiled/react/MuiCozyTheme/overrides/makeDarkInvertedOverrides.js +4 -0
  2921. package/transpiled/react/MuiCozyTheme/overrides/makeDarkNormalOverrides.d.ts +1743 -0
  2922. package/transpiled/react/MuiCozyTheme/overrides/makeDarkNormalOverrides.js +4 -0
  2923. package/transpiled/react/MuiCozyTheme/overrides/makeLightInvertedOverrides.d.ts +1794 -0
  2924. package/transpiled/react/MuiCozyTheme/overrides/makeLightInvertedOverrides.js +61 -0
  2925. package/transpiled/react/MuiCozyTheme/overrides/makeLightNormalOverrides.d.ts +1743 -0
  2926. package/transpiled/react/MuiCozyTheme/overrides/makeLightNormalOverrides.js +1200 -0
  2927. package/transpiled/react/MuiCozyTheme/theme.d.ts +61 -0
  2928. package/transpiled/react/MuiCozyTheme/theme.js +27 -0
  2929. package/transpiled/react/MuiTabs/index.d.ts +11 -0
  2930. package/transpiled/react/MuiTabs/index.js +22 -0
  2931. package/transpiled/react/NativeSelect/index.d.ts +2 -0
  2932. package/transpiled/react/NativeSelect/index.js +2 -0
  2933. package/transpiled/react/Nav/index.d.ts +40 -0
  2934. package/transpiled/react/Nav/index.js +189 -0
  2935. package/transpiled/react/Nav/locales/withNavLocales.d.ts +12 -0
  2936. package/transpiled/react/Nav/locales/withNavLocales.js +32 -0
  2937. package/transpiled/react/NavigationList/index.d.ts +12 -0
  2938. package/transpiled/react/NavigationList/index.js +59 -0
  2939. package/transpiled/react/NestedSelect/BottomSheet.d.ts +2 -0
  2940. package/transpiled/react/NestedSelect/BottomSheet.js +46 -0
  2941. package/transpiled/react/NestedSelect/ItemRow.d.ts +22 -0
  2942. package/transpiled/react/NestedSelect/ItemRow.js +83 -0
  2943. package/transpiled/react/NestedSelect/Modal.d.ts +2 -0
  2944. package/transpiled/react/NestedSelect/Modal.js +65 -0
  2945. package/transpiled/react/NestedSelect/NestedSelect.d.ts +82 -0
  2946. package/transpiled/react/NestedSelect/NestedSelect.js +287 -0
  2947. package/transpiled/react/NestedSelect/NestedSelect.spec.d.ts +1 -0
  2948. package/transpiled/react/NestedSelect/NestedSelectResponsive.d.ts +2 -0
  2949. package/transpiled/react/NestedSelect/NestedSelectResponsive.js +14 -0
  2950. package/transpiled/react/NestedSelect/helpers.d.ts +1 -0
  2951. package/transpiled/react/NestedSelect/helpers.js +44 -0
  2952. package/transpiled/react/NestedSelect/helpers.spec.d.ts +1 -0
  2953. package/transpiled/react/NestedSelect/index.d.ts +4 -0
  2954. package/transpiled/react/NestedSelect/index.js +4 -0
  2955. package/transpiled/react/NestedSelect/testing.d.ts +1 -0
  2956. package/transpiled/react/NestedSelect/testing.js +4 -0
  2957. package/transpiled/react/NoSsr/index.d.ts +2 -0
  2958. package/transpiled/react/NoSsr/index.js +2 -0
  2959. package/transpiled/react/OrderedList/index.d.ts +2 -0
  2960. package/transpiled/react/OrderedList/index.js +28 -0
  2961. package/transpiled/react/OutlinedInput/index.d.ts +2 -0
  2962. package/transpiled/react/OutlinedInput/index.js +2 -0
  2963. package/transpiled/react/Page/index.d.ts +14 -0
  2964. package/transpiled/react/Page/index.js +116 -0
  2965. package/transpiled/react/Page/keyboard.d.ts +31 -0
  2966. package/transpiled/react/Page/keyboard.js +94 -0
  2967. package/transpiled/react/Panel/index.d.ts +21 -0
  2968. package/transpiled/react/Panel/index.js +20 -0
  2969. package/transpiled/react/Paper/index.d.ts +2 -0
  2970. package/transpiled/react/Paper/index.js +2 -0
  2971. package/transpiled/react/PasswordExample/index.d.ts +7 -0
  2972. package/transpiled/react/PasswordExample/index.js +83 -0
  2973. package/transpiled/react/PasswordField/index.d.ts +12 -0
  2974. package/transpiled/react/PasswordField/index.js +82 -0
  2975. package/transpiled/react/Paywall/MaxAccountsByKonnectorPaywall.d.ts +2 -0
  2976. package/transpiled/react/Paywall/MaxAccountsByKonnectorPaywall.js +33 -0
  2977. package/transpiled/react/Paywall/MaxAccountsPaywall.d.ts +2 -0
  2978. package/transpiled/react/Paywall/MaxAccountsPaywall.js +28 -0
  2979. package/transpiled/react/Paywall/MaxDaysToCapturePaywall.d.ts +2 -0
  2980. package/transpiled/react/Paywall/MaxDaysToCapturePaywall.js +28 -0
  2981. package/transpiled/react/Paywall/MaxPapersPaywall.d.ts +2 -0
  2982. package/transpiled/react/Paywall/MaxPapersPaywall.js +29 -0
  2983. package/transpiled/react/Paywall/OnlyOfficePaywall.d.ts +16 -0
  2984. package/transpiled/react/Paywall/OnlyOfficePaywall.js +29 -0
  2985. package/transpiled/react/Paywall/PasswordSharingPaywall.d.ts +10 -0
  2986. package/transpiled/react/Paywall/PasswordSharingPaywall.js +22 -0
  2987. package/transpiled/react/Paywall/Paywall.d.ts +2 -0
  2988. package/transpiled/react/Paywall/Paywall.js +167 -0
  2989. package/transpiled/react/Paywall/Paywall.spec.d.ts +1 -0
  2990. package/transpiled/react/Paywall/QuotaPaywall.d.ts +13 -0
  2991. package/transpiled/react/Paywall/QuotaPaywall.js +20 -0
  2992. package/transpiled/react/Paywall/helpers.d.ts +1 -0
  2993. package/transpiled/react/Paywall/helpers.js +22 -0
  2994. package/transpiled/react/Paywall/index.d.ts +7 -0
  2995. package/transpiled/react/Paywall/index.js +7 -0
  2996. package/transpiled/react/Paywall/locales/withPaywallLocales.d.ts +2 -0
  2997. package/transpiled/react/Paywall/locales/withPaywallLocales.js +388 -0
  2998. package/transpiled/react/PieChart/index.d.ts +30 -0
  2999. package/transpiled/react/PieChart/index.js +164 -0
  3000. package/transpiled/react/PieChart/index.spec.d.ts +1 -0
  3001. package/transpiled/react/PointerAlert/index.d.ts +3 -0
  3002. package/transpiled/react/PointerAlert/index.js +154 -0
  3003. package/transpiled/react/Popover/index.d.ts +2 -0
  3004. package/transpiled/react/Popover/index.js +2 -0
  3005. package/transpiled/react/Popper/index.d.ts +2 -0
  3006. package/transpiled/react/Popper/index.js +2 -0
  3007. package/transpiled/react/Popper/testing.d.ts +1 -0
  3008. package/transpiled/react/Popper/testing.js +21 -0
  3009. package/transpiled/react/Popup/index.d.ts +60 -0
  3010. package/transpiled/react/Popup/index.js +195 -0
  3011. package/transpiled/react/Popup/index.spec.d.ts +1 -0
  3012. package/transpiled/react/PopupOpener/index.d.ts +20 -0
  3013. package/transpiled/react/PopupOpener/index.js +50 -0
  3014. package/transpiled/react/Portal/index.d.ts +5 -0
  3015. package/transpiled/react/Portal/index.js +10 -0
  3016. package/transpiled/react/Progress/index.d.ts +2 -0
  3017. package/transpiled/react/Progress/index.js +2 -0
  3018. package/transpiled/react/ProgressionBanner/index.d.ts +9 -0
  3019. package/transpiled/react/ProgressionBanner/index.js +64 -0
  3020. package/transpiled/react/QualificationGrid/helpers.d.ts +1 -0
  3021. package/transpiled/react/QualificationGrid/helpers.js +7 -0
  3022. package/transpiled/react/QualificationGrid/index.d.ts +2 -0
  3023. package/transpiled/react/QualificationGrid/index.js +97 -0
  3024. package/transpiled/react/QualificationGrid/locales/withLocales.d.ts +12 -0
  3025. package/transpiled/react/QualificationGrid/locales/withLocales.js +68 -0
  3026. package/transpiled/react/QualificationIcon/index.d.ts +13 -0
  3027. package/transpiled/react/QualificationIcon/index.js +108 -0
  3028. package/transpiled/react/QualificationItem/index.d.ts +17 -0
  3029. package/transpiled/react/QualificationItem/index.js +63 -0
  3030. package/transpiled/react/QualificationModal/helpers.d.ts +14 -0
  3031. package/transpiled/react/QualificationModal/helpers.js +70 -0
  3032. package/transpiled/react/QualificationModal/helpers.spec.d.ts +1 -0
  3033. package/transpiled/react/QualificationModal/index.d.ts +16 -0
  3034. package/transpiled/react/QualificationModal/index.js +98 -0
  3035. package/transpiled/react/QualificationModal/locales/index.d.ts +10 -0
  3036. package/transpiled/react/QualificationModal/locales/index.js +30 -0
  3037. package/transpiled/react/RadioGroup/index.d.ts +2 -0
  3038. package/transpiled/react/RadioGroup/index.js +2 -0
  3039. package/transpiled/react/Radios/index.d.ts +7 -0
  3040. package/transpiled/react/Radios/index.js +22 -0
  3041. package/transpiled/react/RootRef/index.d.ts +2 -0
  3042. package/transpiled/react/RootRef/index.js +2 -0
  3043. package/transpiled/react/ScopedCssBaseline/index.d.ts +2 -0
  3044. package/transpiled/react/ScopedCssBaseline/index.js +2 -0
  3045. package/transpiled/react/SearchBar/index.d.ts +3 -0
  3046. package/transpiled/react/SearchBar/index.js +304 -0
  3047. package/transpiled/react/SearchBar/locales/withOnlyLocales.d.ts +12 -0
  3048. package/transpiled/react/SearchBar/locales/withOnlyLocales.js +28 -0
  3049. package/transpiled/react/Select/index.d.ts +2 -0
  3050. package/transpiled/react/Select/index.js +2 -0
  3051. package/transpiled/react/SelectBox/ControlDefault.d.ts +14 -0
  3052. package/transpiled/react/SelectBox/ControlDefault.js +34 -0
  3053. package/transpiled/react/SelectBox/SelectBox.d.ts +108 -0
  3054. package/transpiled/react/SelectBox/SelectBox.js +386 -0
  3055. package/transpiled/react/SelectBox/SelectBoxWithFixedOptions.d.ts +8 -0
  3056. package/transpiled/react/SelectBox/SelectBoxWithFixedOptions.js +82 -0
  3057. package/transpiled/react/SelectBox/index.d.ts +3 -0
  3058. package/transpiled/react/SelectBox/index.js +4 -0
  3059. package/transpiled/react/SelectionBar/SelectionBarAction.d.ts +14 -0
  3060. package/transpiled/react/SelectionBar/SelectionBarAction.js +76 -0
  3061. package/transpiled/react/SelectionBar/SelectionBarMore.d.ts +14 -0
  3062. package/transpiled/react/SelectionBar/SelectionBarMore.js +86 -0
  3063. package/transpiled/react/SelectionBar/helpers.d.ts +7 -0
  3064. package/transpiled/react/SelectionBar/helpers.js +23 -0
  3065. package/transpiled/react/SelectionBar/helpers.spec.d.ts +1 -0
  3066. package/transpiled/react/SelectionBar/index.d.ts +25 -0
  3067. package/transpiled/react/SelectionBar/index.js +152 -0
  3068. package/transpiled/react/SelectionBar/useMaxActions.d.ts +7 -0
  3069. package/transpiled/react/SelectionBar/useMaxActions.js +43 -0
  3070. package/transpiled/react/ShortcutTile/index.d.ts +15 -0
  3071. package/transpiled/react/ShortcutTile/index.js +51 -0
  3072. package/transpiled/react/Sidebar/index.d.ts +13 -0
  3073. package/transpiled/react/Sidebar/index.js +41 -0
  3074. package/transpiled/react/Skeleton/index.d.ts +2 -0
  3075. package/transpiled/react/Skeleton/index.js +2 -0
  3076. package/transpiled/react/Skeletons/ListItemSkeleton.d.ts +14 -0
  3077. package/transpiled/react/Skeletons/ListItemSkeleton.js +40 -0
  3078. package/transpiled/react/Skeletons/ListSkeleton.d.ts +19 -0
  3079. package/transpiled/react/Skeletons/ListSkeleton.js +37 -0
  3080. package/transpiled/react/Skeletons/index.d.ts +2 -0
  3081. package/transpiled/react/Skeletons/index.js +2 -0
  3082. package/transpiled/react/Slide/index.d.ts +2 -0
  3083. package/transpiled/react/Slide/index.js +2 -0
  3084. package/transpiled/react/Slider/index.d.ts +2 -0
  3085. package/transpiled/react/Slider/index.js +2 -0
  3086. package/transpiled/react/Snackbar/index.d.ts +3 -0
  3087. package/transpiled/react/Snackbar/index.js +22 -0
  3088. package/transpiled/react/SnackbarContent/index.d.ts +2 -0
  3089. package/transpiled/react/SnackbarContent/index.js +2 -0
  3090. package/transpiled/react/Spinner/index.d.ts +37 -0
  3091. package/transpiled/react/Spinner/index.js +64 -0
  3092. package/transpiled/react/SquareAppIcon/SquareAppIcon.spec.d.ts +1 -0
  3093. package/transpiled/react/SquareAppIcon/index.d.ts +26 -0
  3094. package/transpiled/react/SquareAppIcon/index.js +222 -0
  3095. package/transpiled/react/Stack/index.d.ts +17 -0
  3096. package/transpiled/react/Stack/index.js +34 -0
  3097. package/transpiled/react/Step/index.d.ts +2 -0
  3098. package/transpiled/react/Step/index.js +2 -0
  3099. package/transpiled/react/StepButton/index.d.ts +2 -0
  3100. package/transpiled/react/StepButton/index.js +2 -0
  3101. package/transpiled/react/StepConnector/index.d.ts +2 -0
  3102. package/transpiled/react/StepConnector/index.js +2 -0
  3103. package/transpiled/react/StepContent/index.d.ts +2 -0
  3104. package/transpiled/react/StepContent/index.js +2 -0
  3105. package/transpiled/react/StepIcon/index.d.ts +2 -0
  3106. package/transpiled/react/StepIcon/index.js +2 -0
  3107. package/transpiled/react/StepLabel/index.d.ts +2 -0
  3108. package/transpiled/react/StepLabel/index.js +2 -0
  3109. package/transpiled/react/Stepper/index.d.ts +4 -0
  3110. package/transpiled/react/Stepper/index.js +4 -0
  3111. package/transpiled/react/Stepper/testing.d.ts +1 -0
  3112. package/transpiled/react/Stepper/testing.js +37 -0
  3113. package/transpiled/react/Storage/StorageButton.d.ts +4 -0
  3114. package/transpiled/react/Storage/StorageButton.js +36 -0
  3115. package/transpiled/react/Storage/StorageProgress.d.ts +5 -0
  3116. package/transpiled/react/Storage/StorageProgress.js +50 -0
  3117. package/transpiled/react/Storage/index.d.ts +14 -0
  3118. package/transpiled/react/Storage/index.js +32 -0
  3119. package/transpiled/react/Storage/locales/index.d.ts +10 -0
  3120. package/transpiled/react/Storage/locales/index.js +34 -0
  3121. package/transpiled/react/SvgIcon/index.d.ts +2 -0
  3122. package/transpiled/react/SvgIcon/index.js +2 -0
  3123. package/transpiled/react/SwipeableDrawer/index.d.ts +2 -0
  3124. package/transpiled/react/SwipeableDrawer/index.js +2 -0
  3125. package/transpiled/react/Switch/index.d.ts +5 -0
  3126. package/transpiled/react/Switch/index.js +28 -0
  3127. package/transpiled/react/Tab/index.d.ts +2 -0
  3128. package/transpiled/react/Tab/index.js +2 -0
  3129. package/transpiled/react/Table/Virtualized/Cell.d.ts +10 -0
  3130. package/transpiled/react/Table/Virtualized/Cell.js +86 -0
  3131. package/transpiled/react/Table/Virtualized/Dnd/CustomDrag/CustomDragLayer.d.ts +4 -0
  3132. package/transpiled/react/Table/Virtualized/Dnd/CustomDrag/CustomDragLayer.js +47 -0
  3133. package/transpiled/react/Table/Virtualized/Dnd/CustomDrag/DragPreview.d.ts +6 -0
  3134. package/transpiled/react/Table/Virtualized/Dnd/CustomDrag/DragPreview.js +34 -0
  3135. package/transpiled/react/Table/Virtualized/Dnd/CustomDrag/DragPreviewWrapper.d.ts +8 -0
  3136. package/transpiled/react/Table/Virtualized/Dnd/CustomDrag/DragPreviewWrapper.js +63 -0
  3137. package/transpiled/react/Table/Virtualized/Dnd/DnDConfigWrapper.d.ts +2 -0
  3138. package/transpiled/react/Table/Virtualized/Dnd/DnDConfigWrapper.js +55 -0
  3139. package/transpiled/react/Table/Virtualized/Dnd/TableRow.d.ts +7 -0
  3140. package/transpiled/react/Table/Virtualized/Dnd/TableRow.js +137 -0
  3141. package/transpiled/react/Table/Virtualized/Dnd/index.d.ts +7 -0
  3142. package/transpiled/react/Table/Virtualized/Dnd/index.js +47 -0
  3143. package/transpiled/react/Table/Virtualized/Dnd/virtuosoComponents.d.ts +14 -0
  3144. package/transpiled/react/Table/Virtualized/Dnd/virtuosoComponents.js +37 -0
  3145. package/transpiled/react/Table/Virtualized/FixedHeaderContent.d.ts +10 -0
  3146. package/transpiled/react/Table/Virtualized/FixedHeaderContent.js +60 -0
  3147. package/transpiled/react/Table/Virtualized/HeadCell.d.ts +8 -0
  3148. package/transpiled/react/Table/Virtualized/HeadCell.js +44 -0
  3149. package/transpiled/react/Table/Virtualized/RowContent.d.ts +12 -0
  3150. package/transpiled/react/Table/Virtualized/RowContent.js +45 -0
  3151. package/transpiled/react/Table/Virtualized/TableRow.d.ts +7 -0
  3152. package/transpiled/react/Table/Virtualized/TableRow.js +24 -0
  3153. package/transpiled/react/Table/Virtualized/helpers.d.ts +2 -0
  3154. package/transpiled/react/Table/Virtualized/helpers.js +66 -0
  3155. package/transpiled/react/Table/Virtualized/helpers.spec.d.ts +1 -0
  3156. package/transpiled/react/Table/Virtualized/index.d.ts +3 -0
  3157. package/transpiled/react/Table/Virtualized/index.js +172 -0
  3158. package/transpiled/react/Table/Virtualized/virtuosoComponents.d.ts +10 -0
  3159. package/transpiled/react/Table/Virtualized/virtuosoComponents.js +70 -0
  3160. package/transpiled/react/Table/index.d.ts +2 -0
  3161. package/transpiled/react/Table/index.js +2 -0
  3162. package/transpiled/react/TableBody/index.d.ts +2 -0
  3163. package/transpiled/react/TableBody/index.js +2 -0
  3164. package/transpiled/react/TableCell/index.d.ts +2 -0
  3165. package/transpiled/react/TableCell/index.js +2 -0
  3166. package/transpiled/react/TableContainer/index.d.ts +3 -0
  3167. package/transpiled/react/TableContainer/index.js +22 -0
  3168. package/transpiled/react/TableFooter/index.d.ts +2 -0
  3169. package/transpiled/react/TableFooter/index.js +2 -0
  3170. package/transpiled/react/TableHead/index.d.ts +2 -0
  3171. package/transpiled/react/TableHead/index.js +2 -0
  3172. package/transpiled/react/TablePagination/index.d.ts +2 -0
  3173. package/transpiled/react/TablePagination/index.js +2 -0
  3174. package/transpiled/react/TableRow/index.d.ts +3 -0
  3175. package/transpiled/react/TableRow/index.js +21 -0
  3176. package/transpiled/react/TableSortLabel/index.d.ts +2 -0
  3177. package/transpiled/react/TableSortLabel/index.js +2 -0
  3178. package/transpiled/react/Tabs/index.d.ts +3 -0
  3179. package/transpiled/react/Tabs/index.js +49 -0
  3180. package/transpiled/react/TextField/MobileSelect.d.ts +3 -0
  3181. package/transpiled/react/TextField/MobileSelect.js +150 -0
  3182. package/transpiled/react/TextField/helpers.d.ts +2 -0
  3183. package/transpiled/react/TextField/helpers.js +30 -0
  3184. package/transpiled/react/TextField/index.d.ts +3 -0
  3185. package/transpiled/react/TextField/index.js +54 -0
  3186. package/transpiled/react/Textarea/index.d.ts +3 -0
  3187. package/transpiled/react/Textarea/index.js +51 -0
  3188. package/transpiled/react/TextareaAutosize/index.d.ts +2 -0
  3189. package/transpiled/react/TextareaAutosize/index.js +2 -0
  3190. package/transpiled/react/Thumbnail/index.d.ts +22 -0
  3191. package/transpiled/react/Thumbnail/index.js +41 -0
  3192. package/transpiled/react/Tile/index.d.ts +68 -0
  3193. package/transpiled/react/Tile/index.js +94 -0
  3194. package/transpiled/react/Timeline/index.d.ts +2 -0
  3195. package/transpiled/react/Timeline/index.js +2 -0
  3196. package/transpiled/react/TimelineConnector/index.d.ts +2 -0
  3197. package/transpiled/react/TimelineConnector/index.js +2 -0
  3198. package/transpiled/react/TimelineContent/index.d.ts +2 -0
  3199. package/transpiled/react/TimelineContent/index.js +2 -0
  3200. package/transpiled/react/TimelineDot/index.d.ts +2 -0
  3201. package/transpiled/react/TimelineDot/index.js +2 -0
  3202. package/transpiled/react/TimelineItem/index.d.ts +2 -0
  3203. package/transpiled/react/TimelineItem/index.js +2 -0
  3204. package/transpiled/react/TimelineOppositeContent/index.d.ts +2 -0
  3205. package/transpiled/react/TimelineOppositeContent/index.js +2 -0
  3206. package/transpiled/react/TimelineSeparator/index.d.ts +2 -0
  3207. package/transpiled/react/TimelineSeparator/index.js +2 -0
  3208. package/transpiled/react/Toggle/index.d.ts +18 -0
  3209. package/transpiled/react/Toggle/index.js +80 -0
  3210. package/transpiled/react/ToggleButton/index.d.ts +3 -0
  3211. package/transpiled/react/ToggleButton/index.js +27 -0
  3212. package/transpiled/react/ToggleButtonGroup/index.d.ts +2 -0
  3213. package/transpiled/react/ToggleButtonGroup/index.js +2 -0
  3214. package/transpiled/react/Toolbar/index.d.ts +2 -0
  3215. package/transpiled/react/Toolbar/index.js +2 -0
  3216. package/transpiled/react/Tooltip/index.d.ts +2 -0
  3217. package/transpiled/react/Tooltip/index.js +5 -0
  3218. package/transpiled/react/Typography/index.d.ts +38 -0
  3219. package/transpiled/react/Typography/index.js +30 -0
  3220. package/transpiled/react/UnorderedList/index.d.ts +2 -0
  3221. package/transpiled/react/UnorderedList/index.js +28 -0
  3222. package/transpiled/react/UploadQueue/FileUploadProgress.d.ts +4 -0
  3223. package/transpiled/react/UploadQueue/FileUploadProgress.js +66 -0
  3224. package/transpiled/react/UploadQueue/Item.d.ts +3 -0
  3225. package/transpiled/react/UploadQueue/Item.js +106 -0
  3226. package/transpiled/react/UploadQueue/Pending.d.ts +3 -0
  3227. package/transpiled/react/UploadQueue/Pending.js +10 -0
  3228. package/transpiled/react/UploadQueue/RemainingTime.d.ts +4 -0
  3229. package/transpiled/react/UploadQueue/RemainingTime.js +43 -0
  3230. package/transpiled/react/UploadQueue/helpers.d.ts +1 -0
  3231. package/transpiled/react/UploadQueue/helpers.js +4 -0
  3232. package/transpiled/react/UploadQueue/index.d.ts +42 -0
  3233. package/transpiled/react/UploadQueue/index.js +241 -0
  3234. package/transpiled/react/UploadQueue/index.spec.d.ts +1 -0
  3235. package/transpiled/react/UploadQueue/useStatusIcon.d.ts +1 -0
  3236. package/transpiled/react/UploadQueue/useStatusIcon.js +42 -0
  3237. package/transpiled/react/Wizard/index.d.ts +75 -0
  3238. package/transpiled/react/Wizard/index.js +202 -0
  3239. package/transpiled/react/Zoom/index.d.ts +2 -0
  3240. package/transpiled/react/Zoom/index.js +2 -0
  3241. package/transpiled/react/deprecated/ActionMenu/ActionMenuEffects.d.ts +1 -0
  3242. package/transpiled/react/deprecated/ActionMenu/ActionMenuEffects.js +38 -0
  3243. package/transpiled/react/deprecated/ActionMenu/ActionMenuHeader.d.ts +11 -0
  3244. package/transpiled/react/deprecated/ActionMenu/ActionMenuHeader.js +21 -0
  3245. package/transpiled/react/deprecated/ActionMenu/ActionMenuItem.d.ts +23 -0
  3246. package/transpiled/react/deprecated/ActionMenu/ActionMenuItem.js +44 -0
  3247. package/transpiled/react/deprecated/ActionMenu/ActionMenuItemWrapper.d.ts +32 -0
  3248. package/transpiled/react/deprecated/ActionMenu/ActionMenuItemWrapper.js +63 -0
  3249. package/transpiled/react/deprecated/ActionMenu/ActionMenuRadio.d.ts +1 -0
  3250. package/transpiled/react/deprecated/ActionMenu/ActionMenuRadio.js +15 -0
  3251. package/transpiled/react/deprecated/ActionMenu/ActionMenuWithClose.d.ts +7 -0
  3252. package/transpiled/react/deprecated/ActionMenu/ActionMenuWithClose.js +30 -0
  3253. package/transpiled/react/deprecated/ActionMenu/ActionMenuWrapper.d.ts +12 -0
  3254. package/transpiled/react/deprecated/ActionMenu/ActionMenuWrapper.js +38 -0
  3255. package/transpiled/react/deprecated/ActionMenu/Actions/ActionsItems.d.ts +18 -0
  3256. package/transpiled/react/deprecated/ActionMenu/Actions/ActionsItems.js +49 -0
  3257. package/transpiled/react/deprecated/ActionMenu/Actions/call.d.ts +5 -0
  3258. package/transpiled/react/deprecated/ActionMenu/Actions/call.js +29 -0
  3259. package/transpiled/react/deprecated/ActionMenu/Actions/emailTo.d.ts +5 -0
  3260. package/transpiled/react/deprecated/ActionMenu/Actions/emailTo.js +29 -0
  3261. package/transpiled/react/deprecated/ActionMenu/Actions/helpers.d.ts +3 -0
  3262. package/transpiled/react/deprecated/ActionMenu/Actions/helpers.js +51 -0
  3263. package/transpiled/react/deprecated/ActionMenu/Actions/helpers.spec.d.ts +1 -0
  3264. package/transpiled/react/deprecated/ActionMenu/Actions/hr.d.ts +4 -0
  3265. package/transpiled/react/deprecated/ActionMenu/Actions/hr.js +9 -0
  3266. package/transpiled/react/deprecated/ActionMenu/Actions/index.d.ts +7 -0
  3267. package/transpiled/react/deprecated/ActionMenu/Actions/index.js +7 -0
  3268. package/transpiled/react/deprecated/ActionMenu/Actions/locales/withActionsLocales.d.ts +12 -0
  3269. package/transpiled/react/deprecated/ActionMenu/Actions/locales/withActionsLocales.js +40 -0
  3270. package/transpiled/react/deprecated/ActionMenu/Actions/modify.d.ts +4 -0
  3271. package/transpiled/react/deprecated/ActionMenu/Actions/modify.js +39 -0
  3272. package/transpiled/react/deprecated/ActionMenu/Actions/smsTo.d.ts +5 -0
  3273. package/transpiled/react/deprecated/ActionMenu/Actions/smsTo.js +29 -0
  3274. package/transpiled/react/deprecated/ActionMenu/Actions/viewInContacts.d.ts +4 -0
  3275. package/transpiled/react/deprecated/ActionMenu/Actions/viewInContacts.js +39 -0
  3276. package/transpiled/react/deprecated/ActionMenu/NotInlineWrapper.d.ts +9 -0
  3277. package/transpiled/react/deprecated/ActionMenu/NotInlineWrapper.js +58 -0
  3278. package/transpiled/react/deprecated/ActionMenu/index.d.ts +48 -0
  3279. package/transpiled/react/deprecated/ActionMenu/index.js +104 -0
  3280. package/transpiled/react/deprecated/Alerter/Alert.d.ts +39 -0
  3281. package/transpiled/react/deprecated/Alerter/Alert.js +168 -0
  3282. package/transpiled/react/deprecated/Alerter/index.d.ts +50 -0
  3283. package/transpiled/react/deprecated/Alerter/index.js +217 -0
  3284. package/transpiled/react/deprecated/BottomDrawer/index.d.ts +31 -0
  3285. package/transpiled/react/deprecated/BottomDrawer/index.js +203 -0
  3286. package/transpiled/react/deprecated/Button/index.d.ts +41 -0
  3287. package/transpiled/react/deprecated/Button/index.js +212 -0
  3288. package/transpiled/react/deprecated/ButtonAction/index.d.ts +21 -0
  3289. package/transpiled/react/deprecated/ButtonAction/index.js +69 -0
  3290. package/transpiled/react/deprecated/Chip/index.d.ts +26 -0
  3291. package/transpiled/react/deprecated/Chip/index.js +129 -0
  3292. package/transpiled/react/deprecated/CompositeRow/index.d.ts +34 -0
  3293. package/transpiled/react/deprecated/CompositeRow/index.js +93 -0
  3294. package/transpiled/react/deprecated/GridItem/index.d.ts +12 -0
  3295. package/transpiled/react/deprecated/GridItem/index.js +27 -0
  3296. package/transpiled/react/deprecated/Infos/index.d.ts +26 -0
  3297. package/transpiled/react/deprecated/Infos/index.js +103 -0
  3298. package/transpiled/react/deprecated/InfosCarrousel/index.d.ts +24 -0
  3299. package/transpiled/react/deprecated/InfosCarrousel/index.js +120 -0
  3300. package/transpiled/react/deprecated/InlineCard/index.d.ts +16 -0
  3301. package/transpiled/react/deprecated/InlineCard/index.js +53 -0
  3302. package/transpiled/react/deprecated/IntentModal/IntentModal.d.ts +23 -0
  3303. package/transpiled/react/deprecated/IntentModal/IntentModal.js +126 -0
  3304. package/transpiled/react/deprecated/IntentModal/index.d.ts +1 -0
  3305. package/transpiled/react/deprecated/IntentModal/index.js +1 -0
  3306. package/transpiled/react/deprecated/IntentOpener/IntentOpener.d.ts +25 -0
  3307. package/transpiled/react/deprecated/IntentOpener/IntentOpener.js +105 -0
  3308. package/transpiled/react/deprecated/IntentOpener/index.d.ts +1 -0
  3309. package/transpiled/react/deprecated/IntentOpener/index.js +1 -0
  3310. package/transpiled/react/deprecated/Media/Media.d.ts +24 -0
  3311. package/transpiled/react/deprecated/Media/Media.js +55 -0
  3312. package/transpiled/react/deprecated/Media/index.d.ts +1 -0
  3313. package/transpiled/react/deprecated/Media/index.js +1 -0
  3314. package/transpiled/react/deprecated/Menus/index.d.ts +24 -0
  3315. package/transpiled/react/deprecated/Menus/index.js +154 -0
  3316. package/transpiled/react/deprecated/Modal/AnimatedContentHeader.d.ts +6 -0
  3317. package/transpiled/react/deprecated/Modal/AnimatedContentHeader.js +34 -0
  3318. package/transpiled/react/deprecated/Modal/ModalBackButton.d.ts +2 -0
  3319. package/transpiled/react/deprecated/Modal/ModalBackButton.js +67 -0
  3320. package/transpiled/react/deprecated/Modal/ModalButtons.d.ts +17 -0
  3321. package/transpiled/react/deprecated/Modal/ModalButtons.js +68 -0
  3322. package/transpiled/react/deprecated/Modal/ModalContent.d.ts +20 -0
  3323. package/transpiled/react/deprecated/Modal/ModalContent.js +177 -0
  3324. package/transpiled/react/deprecated/Modal/ModalCross.d.ts +7 -0
  3325. package/transpiled/react/deprecated/Modal/ModalCross.js +68 -0
  3326. package/transpiled/react/deprecated/Modal/ModalEffects.d.ts +1 -0
  3327. package/transpiled/react/deprecated/Modal/ModalEffects.js +50 -0
  3328. package/transpiled/react/deprecated/Modal/ModalFooter.d.ts +5 -0
  3329. package/transpiled/react/deprecated/Modal/ModalFooter.js +47 -0
  3330. package/transpiled/react/deprecated/Modal/ModalHeader.d.ts +17 -0
  3331. package/transpiled/react/deprecated/Modal/ModalHeader.js +87 -0
  3332. package/transpiled/react/deprecated/Modal/ModalSection.d.ts +5 -0
  3333. package/transpiled/react/deprecated/Modal/ModalSection.js +47 -0
  3334. package/transpiled/react/deprecated/Modal/index.d.ts +14 -0
  3335. package/transpiled/react/deprecated/Modal/index.js +345 -0
  3336. package/transpiled/react/deprecated/NarrowContent/index.d.ts +2 -0
  3337. package/transpiled/react/deprecated/NarrowContent/index.js +19 -0
  3338. package/transpiled/react/deprecated/Overlay/index.d.ts +3 -0
  3339. package/transpiled/react/deprecated/Overlay/index.js +115 -0
  3340. package/transpiled/react/deprecated/PercentageBar/index.d.ts +2 -0
  3341. package/transpiled/react/deprecated/PercentageBar/index.js +27 -0
  3342. package/transpiled/react/deprecated/PercentageLine/index.d.ts +18 -0
  3343. package/transpiled/react/deprecated/PercentageLine/index.js +44 -0
  3344. package/transpiled/react/deprecated/PushClientButton/index.d.ts +16 -0
  3345. package/transpiled/react/deprecated/PushClientButton/index.js +50 -0
  3346. package/transpiled/react/deprecated/PushClientButton/index.spec.d.ts +1 -0
  3347. package/transpiled/react/deprecated/QuotaAlert/index.d.ts +7 -0
  3348. package/transpiled/react/deprecated/QuotaAlert/index.js +17 -0
  3349. package/transpiled/react/deprecated/Radio/index.d.ts +21 -0
  3350. package/transpiled/react/deprecated/Radio/index.js +78 -0
  3351. package/transpiled/react/deprecated/Radio/index.spec.d.ts +1 -0
  3352. package/transpiled/react/deprecated/RaisedList/index.d.ts +2 -0
  3353. package/transpiled/react/deprecated/RaisedList/index.js +15 -0
  3354. package/transpiled/react/deprecated/Table/index.d.ts +7 -0
  3355. package/transpiled/react/deprecated/Table/index.js +97 -0
  3356. package/transpiled/react/deprecated/ViewStack/ModalStack.d.ts +16 -0
  3357. package/transpiled/react/deprecated/ViewStack/ModalStack.js +47 -0
  3358. package/transpiled/react/deprecated/ViewStack/ViewStack.d.ts +13 -0
  3359. package/transpiled/react/deprecated/ViewStack/ViewStack.js +49 -0
  3360. package/transpiled/react/deprecated/ViewStack/context.d.ts +3 -0
  3361. package/transpiled/react/deprecated/ViewStack/context.js +5 -0
  3362. package/transpiled/react/deprecated/ViewStack/example.d.ts +3 -0
  3363. package/transpiled/react/deprecated/ViewStack/example.js +66 -0
  3364. package/transpiled/react/deprecated/ViewStack/hooks.d.ts +1 -0
  3365. package/transpiled/react/deprecated/ViewStack/hooks.js +77 -0
  3366. package/transpiled/react/deprecated/ViewStack/index.d.ts +3 -0
  3367. package/transpiled/react/deprecated/ViewStack/index.js +3 -0
  3368. package/transpiled/react/helpers/acceptedTypes.d.ts +3 -0
  3369. package/transpiled/react/helpers/acceptedTypes.js +42 -0
  3370. package/transpiled/react/helpers/acceptedTypes.spec.d.ts +1 -0
  3371. package/transpiled/react/helpers/appDataset.d.ts +11 -0
  3372. package/transpiled/react/helpers/appDataset.js +44 -0
  3373. package/transpiled/react/helpers/appDataset.spec.d.ts +1 -0
  3374. package/transpiled/react/helpers/breakpoints.d.ts +15 -0
  3375. package/transpiled/react/helpers/breakpoints.js +34 -0
  3376. package/transpiled/react/helpers/createDepreciationLogger.d.ts +2 -0
  3377. package/transpiled/react/helpers/createDepreciationLogger.js +9 -0
  3378. package/transpiled/react/helpers/createDepreciationLogger.spec.d.ts +1 -0
  3379. package/transpiled/react/helpers/getRandomUUID.d.ts +1 -0
  3380. package/transpiled/react/helpers/getRandomUUID.js +30 -0
  3381. package/transpiled/react/helpers/getRandomUUID.spec.d.ts +1 -0
  3382. package/transpiled/react/helpers/getSafeArea.d.ts +10 -0
  3383. package/transpiled/react/helpers/getSafeArea.js +15 -0
  3384. package/transpiled/react/helpers/isTesting.d.ts +2 -0
  3385. package/transpiled/react/helpers/isTesting.js +3 -0
  3386. package/transpiled/react/helpers/migrateProps.d.ts +2 -0
  3387. package/transpiled/react/helpers/migrateProps.js +123 -0
  3388. package/transpiled/react/helpers/ref.d.ts +2 -0
  3389. package/transpiled/react/helpers/ref.js +6 -0
  3390. package/transpiled/react/helpers/ref.spec.d.ts +1 -0
  3391. package/transpiled/react/helpers/useProgression.d.ts +9 -0
  3392. package/transpiled/react/helpers/useProgression.js +36 -0
  3393. package/transpiled/react/helpers/withBreakpoints.d.ts +31 -0
  3394. package/transpiled/react/helpers/withBreakpoints.js +105 -0
  3395. package/transpiled/react/helpers/withOffline.d.ts +68 -0
  3396. package/transpiled/react/helpers/withOffline.js +82 -0
  3397. package/transpiled/react/helpers/withState.d.ts +49 -0
  3398. package/transpiled/react/helpers/withState.js +63 -0
  3399. package/transpiled/react/hooks/useBrowserOffline.d.ts +10 -0
  3400. package/transpiled/react/hooks/useBrowserOffline.js +33 -0
  3401. package/transpiled/react/hooks/useBrowserOffline.spec.d.ts +1 -0
  3402. package/transpiled/react/hooks/useClientErrors.d.ts +29 -0
  3403. package/transpiled/react/hooks/useClientErrors.js +167 -0
  3404. package/transpiled/react/hooks/useClientErrors.spec.d.ts +1 -0
  3405. package/transpiled/react/hooks/useConfirmExit/index.d.ts +41 -0
  3406. package/transpiled/react/hooks/useConfirmExit/index.js +204 -0
  3407. package/transpiled/react/hooks/useConfirmExit/index.spec.d.ts +1 -0
  3408. package/transpiled/react/hooks/useCycle.d.ts +12 -0
  3409. package/transpiled/react/hooks/useCycle.js +38 -0
  3410. package/transpiled/react/hooks/useCycle.spec.d.ts +1 -0
  3411. package/transpiled/react/hooks/useEventListener.d.ts +2 -0
  3412. package/transpiled/react/hooks/useEventListener.js +17 -0
  3413. package/transpiled/react/hooks/useEventListener.spec.d.ts +1 -0
  3414. package/transpiled/react/hooks/useMediaQuery.d.ts +2 -0
  3415. package/transpiled/react/hooks/useMediaQuery.js +15 -0
  3416. package/transpiled/react/hooks/usePeriodicRender.d.ts +7 -0
  3417. package/transpiled/react/hooks/usePeriodicRender.js +27 -0
  3418. package/transpiled/react/hooks/usePeriodicRender.spec.d.ts +1 -0
  3419. package/transpiled/react/hooks/useRealtime.d.ts +2 -0
  3420. package/transpiled/react/hooks/useRealtime.js +108 -0
  3421. package/transpiled/react/hooks/useRealtime.spec.d.ts +1 -0
  3422. package/transpiled/react/hooks/useScroll.d.ts +14 -0
  3423. package/transpiled/react/hooks/useScroll.js +49 -0
  3424. package/transpiled/react/hooks/useScroll.spec.d.ts +1 -0
  3425. package/transpiled/react/hooks/useSetFlagshipUi/helpers.d.ts +17 -0
  3426. package/transpiled/react/hooks/useSetFlagshipUi/helpers.js +143 -0
  3427. package/transpiled/react/hooks/useSetFlagshipUi/useSetFlagshipUI.d.ts +12 -0
  3428. package/transpiled/react/hooks/useSetFlagshipUi/useSetFlagshipUI.js +36 -0
  3429. package/transpiled/react/index.d.ts +114 -0
  3430. package/transpiled/react/index.js +114 -0
  3431. package/transpiled/react/jestLib/I18n.d.ts +6 -0
  3432. package/transpiled/react/jestLib/I18n.js +13 -0
  3433. package/transpiled/react/legacy/Avatar/helpers.d.ts +1 -0
  3434. package/transpiled/react/legacy/Avatar/helpers.js +21 -0
  3435. package/transpiled/react/legacy/Avatar/index.d.ts +43 -0
  3436. package/transpiled/react/legacy/Avatar/index.js +83 -0
  3437. package/transpiled/react/legacy/Breadcrumbs/index.d.ts +17 -0
  3438. package/transpiled/react/legacy/Breadcrumbs/index.js +109 -0
  3439. package/transpiled/react/legacy/Input/index.d.ts +3 -0
  3440. package/transpiled/react/legacy/Input/index.js +65 -0
  3441. package/transpiled/react/mocks/apps.d.ts +203 -0
  3442. package/transpiled/react/mocks/apps.js +154 -0
  3443. package/transpiled/react/palette.d.ts +49 -0
  3444. package/transpiled/react/palette.js +49 -0
  3445. package/transpiled/react/proptypes.d.ts +18 -0
  3446. package/transpiled/react/proptypes.js +18 -0
  3447. package/transpiled/react/providers/Alert/helpers.d.ts +1 -0
  3448. package/transpiled/react/providers/Alert/helpers.js +24 -0
  3449. package/transpiled/react/providers/Alert/index.d.ts +21 -0
  3450. package/transpiled/react/providers/Alert/index.js +90 -0
  3451. package/transpiled/react/providers/Breakpoints/index.d.ts +16 -0
  3452. package/transpiled/react/providers/Breakpoints/index.js +62 -0
  3453. package/transpiled/react/providers/Breakpoints/useIframeConnection.d.ts +5 -0
  3454. package/transpiled/react/providers/Breakpoints/useIframeConnection.js +35 -0
  3455. package/transpiled/react/providers/Breakpoints/useIframeToSendWidth.d.ts +3 -0
  3456. package/transpiled/react/providers/Breakpoints/useIframeToSendWidth.js +32 -0
  3457. package/transpiled/react/providers/Breakpoints/useParentBreakpoints.d.ts +5 -0
  3458. package/transpiled/react/providers/Breakpoints/useParentBreakpoints.js +34 -0
  3459. package/transpiled/react/providers/ConfirmDialog/index.d.ts +7 -0
  3460. package/transpiled/react/providers/ConfirmDialog/index.js +73 -0
  3461. package/transpiled/react/providers/CozyTheme/CozyThemeWithQuery.d.ts +2 -0
  3462. package/transpiled/react/providers/CozyTheme/CozyThemeWithQuery.js +25 -0
  3463. package/transpiled/react/providers/CozyTheme/DumbCozyTheme.d.ts +18 -0
  3464. package/transpiled/react/providers/CozyTheme/DumbCozyTheme.js +50 -0
  3465. package/transpiled/react/providers/CozyTheme/index.d.ts +31 -0
  3466. package/transpiled/react/providers/CozyTheme/index.js +53 -0
  3467. package/transpiled/react/providers/CozyTheme/queries.d.ts +8 -0
  3468. package/transpiled/react/providers/CozyTheme/queries.js +13 -0
  3469. package/transpiled/react/providers/DemoProvider.d.ts +7 -0
  3470. package/transpiled/react/providers/DemoProvider.js +48 -0
  3471. package/transpiled/react/providers/Encrypted/index.d.ts +8 -0
  3472. package/transpiled/react/providers/Encrypted/index.js +24 -0
  3473. package/transpiled/react/providers/I18n/createUseI18n.d.ts +6 -0
  3474. package/transpiled/react/providers/I18n/createUseI18n.js +39 -0
  3475. package/transpiled/react/providers/I18n/format.d.ts +3 -0
  3476. package/transpiled/react/providers/I18n/format.js +72 -0
  3477. package/transpiled/react/providers/I18n/format.spec.d.ts +1 -0
  3478. package/transpiled/react/providers/I18n/helpers.d.ts +5 -0
  3479. package/transpiled/react/providers/I18n/helpers.js +35 -0
  3480. package/transpiled/react/providers/I18n/index.d.ts +62 -0
  3481. package/transpiled/react/providers/I18n/index.js +132 -0
  3482. package/transpiled/react/providers/I18n/index.spec.d.ts +1 -0
  3483. package/transpiled/react/providers/I18n/translate.d.ts +3 -0
  3484. package/transpiled/react/providers/I18n/translate.js +21 -0
  3485. package/transpiled/react/providers/I18n/translation.d.ts +3 -0
  3486. package/transpiled/react/providers/I18n/translation.js +40 -0
  3487. package/transpiled/react/providers/I18n/useExtendI18n.d.ts +7 -0
  3488. package/transpiled/react/providers/I18n/useExtendI18n.js +42 -0
  3489. package/transpiled/react/providers/I18n/withLocales.d.ts +8 -0
  3490. package/transpiled/react/providers/I18n/withLocales.js +69 -0
  3491. package/transpiled/react/providers/I18n/withLocales.spec.d.ts +1 -0
  3492. package/transpiled/react/providers/I18n/withOnlyLocales.d.ts +8 -0
  3493. package/transpiled/react/providers/I18n/withOnlyLocales.js +39 -0
  3494. package/transpiled/react/providers/Intent/index.d.ts +9 -0
  3495. package/transpiled/react/providers/Intent/index.js +104 -0
  3496. package/transpiled/react/providers/Selection/index.d.ts +6 -0
  3497. package/transpiled/react/providers/Selection/index.js +94 -0
  3498. package/transpiled/react/styles/index.d.ts +1 -0
  3499. package/transpiled/react/styles/index.js +1 -0
  3500. package/transpiled/react/stylesheet.css +1 -0
  3501. package/transpiled/react/types.d.js +0 -0
  3502. package/transpiled/react/types.js +28 -0
  3503. package/transpiled/react/utils/Dnd/CustomDrag/CustomDragLayer.d.ts +4 -0
  3504. package/transpiled/react/utils/Dnd/CustomDrag/CustomDragLayer.js +47 -0
  3505. package/transpiled/react/utils/Dnd/CustomDrag/DragPreview.d.ts +6 -0
  3506. package/transpiled/react/utils/Dnd/CustomDrag/DragPreview.js +34 -0
  3507. package/transpiled/react/utils/Dnd/CustomDrag/DragPreviewWrapper.d.ts +8 -0
  3508. package/transpiled/react/utils/Dnd/CustomDrag/DragPreviewWrapper.js +63 -0
  3509. package/transpiled/react/utils/Dnd/DnDConfigWrapper.d.ts +2 -0
  3510. package/transpiled/react/utils/Dnd/DnDConfigWrapper.js +55 -0
  3511. package/transpiled/react/utils/color.d.ts +2 -0
  3512. package/transpiled/react/utils/color.js +28 -0
  3513. package/transpiled/react/utils/color.spec.d.ts +1 -0
  3514. package/transpiled/react/utils/dom.d.ts +1 -0
  3515. package/transpiled/react/utils/dom.js +11 -0
  3516. package/transpiled/react/utils/index.d.ts +1 -0
  3517. package/transpiled/react/utils/index.js +1 -0
  3518. package/transpiled/react/utils/react.d.ts +5 -0
  3519. package/transpiled/react/utils/react.js +47 -0
  3520. package/transpiled/react/utils.d.ts +5 -0
  3521. package/transpiled/react/utils.js +23 -0
  3522. package/react/Icon/icons-sprite.js +0 -178
@@ -0,0 +1,16 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/mosaic.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgMosaic(props) {
5
+ return (
6
+ <svg viewBox="0 0 16 16" {...props}>
7
+ <path
8
+ fillRule="evenodd"
9
+ clipRule="evenodd"
10
+ d="M9.289 1.92l.02-.02.737-.737.02-.02c.241-.24.454-.453.645-.615a2.11 2.11 0 01.718-.426c.418-.136.87-.136 1.288 0 .286.093.515.253.718.426.191.162.404.374.644.615l.02.02.738.737.02.02c.24.241.454.454.615.645.173.203.333.432.426.718.136.419.136.87 0 1.288a2.117 2.117 0 01-.426.718c-.162.191-.374.404-.615.644l-.02.02-.737.738-.02.02c-.241.24-.454.454-.645.615a2.118 2.118 0 01-.718.426c-.418.136-.87.136-1.288 0a2.117 2.117 0 01-.718-.426 10.947 10.947 0 01-.644-.615l-.02-.02-.738-.737-.02-.02c-.24-.241-.454-.454-.615-.645a2.118 2.118 0 01-.426-.718 2.084 2.084 0 010-1.288 2.11 2.11 0 01.426-.718c.161-.191.374-.404.615-.644zm.576 1.657c-.11.129-.126.177-.13.189a.521.521 0 000 .322c.004.012.02.06.13.19.116.136.283.303.55.57l.737.737c.267.267.434.434.57.55.13.11.178.126.19.13a.521.521 0 00.322 0c.011-.004.06-.02.19-.13.136-.116.303-.283.57-.55l.737-.737c.267-.267.434-.434.55-.57.11-.13.126-.178.13-.19a.521.521 0 000-.322c-.004-.012-.02-.06-.13-.19a11.036 11.036 0 00-.55-.57l-.737-.737a10.98 10.98 0 00-.57-.55c-.13-.11-.178-.126-.19-.13a.521.521 0 00-.322 0c-.012.004-.06.02-.19.13a10.98 10.98 0 00-.57.55l-.737.737c-.267.267-.434.434-.55.57zM3.91 7.314h.028c.34 0 .641 0 .89-.02a2.12 2.12 0 00.81-.207c.392-.2.71-.519.91-.91a2.12 2.12 0 00.207-.81c.02-.249.02-.55.02-.89V3.376c0-.34 0-.64-.02-.89a2.119 2.119 0 00-.206-.808 2.085 2.085 0 00-.911-.911 2.118 2.118 0 00-.81-.207c-.249-.02-.55-.02-.89-.02H2.837c-.34 0-.64 0-.89.02a2.12 2.12 0 00-.809.207c-.392.2-.71.519-.91.91a2.118 2.118 0 00-.208.81c-.02.249-.02.55-.02.89v1.101c0 .34 0 .64.02.89.022.265.07.54.207.808.2.392.519.711.911.911.268.137.543.185.809.207.25.02.55.02.89.02H3.91zm1.018-1.62c-.011.006-.057.028-.226.042a11.01 11.01 0 01-.792.015H2.866c-.377 0-.614 0-.792-.015-.169-.014-.215-.036-.226-.042a.521.521 0 01-.228-.228c-.005-.01-.028-.057-.041-.226a10.986 10.986 0 01-.016-.792V3.406c0-.378.001-.614.016-.792.013-.17.036-.216.041-.226a.521.521 0 01.228-.228c.01-.006.057-.028.226-.042.178-.014.415-.015.792-.015H3.91c.377 0 .614 0 .792.015.169.014.215.036.226.042.098.05.178.13.228.228.005.01.027.057.041.226.015.178.015.414.015.792v1.042c0 .378 0 .614-.015.792-.014.17-.036.216-.041.226a.521.521 0 01-.228.228zM3.909 16h.028c.34 0 .642 0 .89-.02a2.12 2.12 0 00.81-.207c.392-.2.71-.519.91-.911.137-.268.186-.543.207-.809.02-.25.02-.55.02-.89v-1.101c0-.34 0-.64-.02-.89a2.119 2.119 0 00-.206-.809 2.085 2.085 0 00-.911-.91 2.117 2.117 0 00-.81-.207c-.248-.02-.55-.02-.89-.02H2.838c-.34 0-.64 0-.89.02-.266.021-.54.07-.809.206-.392.2-.71.52-.91.911a2.118 2.118 0 00-.208.81c-.02.248-.02.55-.02.89v1.099c0 .34 0 .64.02.89.022.266.07.54.207.809.2.392.519.71.911.91.268.137.543.186.809.208.25.02.55.02.89.02H3.91zm1.018-1.62c-.011.005-.057.028-.226.041a10.95 10.95 0 01-.792.016H2.866c-.377 0-.614-.001-.792-.016-.169-.013-.215-.036-.226-.041a.521.521 0 01-.228-.228c-.005-.01-.028-.057-.041-.226a10.985 10.985 0 01-.016-.792V12.09c0-.377.001-.614.016-.792.013-.168.036-.215.041-.226a.521.521 0 01.228-.228c.01-.005.057-.027.226-.041.178-.015.415-.015.792-.015H3.91c.377 0 .614 0 .792.015.169.014.215.036.226.041.098.05.178.13.228.228.005.01.027.057.041.226.015.178.015.415.015.793v1.042c0 .377 0 .614-.015.792-.014.169-.036.215-.041.226a.521.521 0 01-.228.228zM12.594 16h.03c.34 0 .64 0 .89-.02.265-.022.54-.07.808-.207.392-.2.711-.519.911-.911a2.12 2.12 0 00.207-.809c.02-.25.02-.55.02-.89v-1.101c0-.34 0-.64-.02-.89a2.12 2.12 0 00-.207-.809 2.085 2.085 0 00-.91-.91 2.117 2.117 0 00-.81-.207c-.249-.02-.55-.02-.89-.02h-1.101c-.34 0-.64 0-.89.02-.265.021-.54.07-.808.206-.392.2-.711.52-.911.911a2.118 2.118 0 00-.207.81c-.02.248-.02.55-.02.89v1.099c0 .34 0 .64.02.89.022.266.07.54.207.809.2.392.519.71.91.91.269.137.544.186.81.208.249.02.55.02.89.02h1.071zm1.018-1.62c-.01.005-.057.028-.226.041a10.6 10.6 0 01-.792.016h-1.042a10.6 10.6 0 01-.792-.016c-.17-.013-.216-.036-.226-.041a.521.521 0 01-.228-.228c-.006-.01-.028-.057-.042-.226a11.009 11.009 0 01-.015-.792V12.09c0-.377 0-.614.015-.792.014-.168.036-.215.042-.226a.521.521 0 01.228-.228c.01-.005.057-.027.226-.041.178-.015.414-.015.792-.015h1.042c.378 0 .614 0 .792.015.17.014.216.036.226.041.098.05.178.13.228.228.006.01.028.057.042.226.014.178.015.415.015.793v1.042c0 .377 0 .614-.015.792-.014.169-.036.215-.042.226a.521.521 0 01-.228.228z"
11
+ />
12
+ </svg>
13
+ )
14
+ }
15
+
16
+ export default SvgMosaic
@@ -0,0 +1,12 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/mosaic-min.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgMosaicMin(props) {
5
+ return (
6
+ <svg viewBox="0 0 16 16" {...props}>
7
+ <path d="M0 1.778v12.444C0 15.2.791 16 1.778 16H7.11V0H1.778C.79 0 0 .8 0 1.778zm5.333 12.444H1.778V1.778h3.555v12.444zM14.222 0H8.89v7.111H16V1.778C16 .8 15.2 0 14.222 0zm0 5.333h-3.555V1.778h3.555v3.555zM8.889 16h5.333C15.2 16 16 15.2 16 14.222V8.89H8.889V16zm1.778-5.333h3.555v3.555h-3.555v-3.555z" />
8
+ </svg>
9
+ )
10
+ }
11
+
12
+ export default SvgMosaicMin
@@ -0,0 +1,12 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/motorcycle.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgMotorcycle(props) {
5
+ return (
6
+ <svg viewBox="0 0 16 10" {...props}>
7
+ <path d="M2.78 4.333h-.113.113zm6.16-4H6v1.334h2.393L9.727 3H7.333L4.667 4.333 3.333 3H0v1.333h2.667a2.666 2.666 0 100 5.334A2.666 2.666 0 005.333 7l1.334 1.334h2l2.326-4.067.674.673c-.607.487-1 1.227-1 2.06A2.666 2.666 0 1016 7a2.666 2.666 0 00-2.667-2.667c-.12 0-.24.02-.353.034L11.607 3h1.726V1l-2.48 1.24L8.94.333zm4.393 8C12.6 8.334 12 7.734 12 7s.6-1.333 1.333-1.333c.734 0 1.334.6 1.334 1.333 0 .734-.6 1.334-1.334 1.334zm-10.666 0c-.734 0-1.334-.6-1.334-1.333s.6-1.333 1.334-1.333C3.4 5.667 4 6.267 4 7c0 .734-.6 1.334-1.333 1.334z" />
8
+ </svg>
9
+ )
10
+ }
11
+
12
+ export default SvgMotorcycle
@@ -0,0 +1,12 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/mountain.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgMountain(props) {
5
+ return (
6
+ <svg viewBox="0 0 16 10" {...props}>
7
+ <path d="M9.455.636l-3.07 4.095.91 1.214 2.16-2.887L13.09 7.91H6.938L4.022 4.004 0 9.364h16L9.455.636zM2.909 7.91l1.106-1.476L5.12 7.909H2.91z" />
8
+ </svg>
9
+ )
10
+ }
11
+
12
+ export default SvgMountain
@@ -0,0 +1,12 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/movement.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgMovement(props) {
5
+ return (
6
+ <svg viewBox="0 0 16 8" {...props}>
7
+ <path d="M12.01 3H0v2h12.01v3L16 4l-3.99-4v3z" />
8
+ </svg>
9
+ )
10
+ }
11
+
12
+ export default SvgMovement
@@ -0,0 +1,12 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/movement-in.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgMovementIn(props) {
5
+ return (
6
+ <svg viewBox="0 0 16 14" {...props}>
7
+ <path d="M3.547 6.111L0 9.667l3.547 3.555v-2.666h6.23V8.778h-6.23V6.11zM16 4.333L12.453.778v2.667h-6.23v1.777h6.23V7.89L16 4.333z" />
8
+ </svg>
9
+ )
10
+ }
11
+
12
+ export default SvgMovementIn
@@ -0,0 +1,12 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/movement-out.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgMovementOut(props) {
5
+ return (
6
+ <svg viewBox="0 0 16 13" {...props}>
7
+ <path d="M3.547 5.333L0 8.89l3.547 3.555V9.778h6.23V8h-6.23V5.333zM16 3.556L12.453 0v2.667h-6.23v1.777h6.23v2.667L16 3.556z" />
8
+ </svg>
9
+ )
10
+ }
11
+
12
+ export default SvgMovementOut
@@ -0,0 +1,12 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/moveto.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgMoveto(props) {
5
+ return (
6
+ <svg viewBox="0 0 17 10" {...props}>
7
+ <path d="M8.569 1.503l2.727 2.735H.5v1.524h10.796L8.561 8.497l1.082 1.075L14.214 5 9.643.43 8.569 1.503zM14.976.429v9.143H16.5V.429h-1.524z" />
8
+ </svg>
9
+ )
10
+ }
11
+
12
+ export default SvgMoveto
@@ -0,0 +1,12 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/multi-files.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgMultiFiles(props) {
5
+ return (
6
+ <svg viewBox="0 0 16 15" {...props}>
7
+ <path d="M1.455 12.954h12.363v1.455H1.455A1.46 1.46 0 010 12.954V3.5h1.455v9.454zM16 3.5v6.545c0 .8-.655 1.455-1.454 1.455H4.364a1.46 1.46 0 01-1.455-1.455l.007-8c0-.8.648-1.454 1.448-1.454H8l1.455 1.454h5.09c.8 0 1.455.655 1.455 1.455zM4.364 10.045h10.181V3.5H8.852L7.396 2.045H4.364v8z" />
8
+ </svg>
9
+ )
10
+ }
11
+
12
+ export default SvgMultiFiles
@@ -0,0 +1,12 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/music.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgMusic(props) {
5
+ return (
6
+ <svg viewBox="0 0 12 16" {...props}>
7
+ <path d="M6 0l.009 9.378a3.553 3.553 0 00-1.778-.49 3.556 3.556 0 100 7.112 3.541 3.541 0 003.547-3.556V3.556h3.555V0H6zM4.231 14.222c-.978 0-1.778-.8-1.778-1.778 0-.977.8-1.777 1.778-1.777s1.778.8 1.778 1.777c0 .978-.8 1.778-1.778 1.778z" />
8
+ </svg>
9
+ )
10
+ }
11
+
12
+ export default SvgMusic
@@ -0,0 +1,12 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/new.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgNew(props) {
5
+ return (
6
+ <svg viewBox="0 0 16 16" {...props}>
7
+ <path d="M13.09 5.818l.91-2 2-.909L14 2l-.91-2-.908 2-2 .91 2 .908.909 2zm0 4.364l-.908 2-2 .909 2 .909.909 2L14 14l2-.91-2-.908-.91-2zm-5.454-4l-1.818-4-1.818 4L0 8l4 1.818 1.818 4 1.818-4 4-1.818-4-1.818zM6.538 8.72l-.72 1.585-.72-1.585L3.513 8l1.585-.72.72-1.585.72 1.585L8.124 8l-1.586.72z" />
8
+ </svg>
9
+ )
10
+ }
11
+
12
+ export default SvgNew
@@ -0,0 +1,12 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/next.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgNext(props) {
5
+ return (
6
+ <svg viewBox="0 0 16 16" {...props}>
7
+ <path d="M8 0L6.59 1.41 12.17 7H0v2h12.17l-5.58 5.59L8 16l8-8-8-8z" />
8
+ </svg>
9
+ )
10
+ }
11
+
12
+ export default SvgNext
@@ -0,0 +1,13 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/note.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgNote(props) {
5
+ return (
6
+ <svg viewBox="0 0 16 16" {...props}>
7
+ <path d="M13.6 1.6h-3.344A2.408 2.408 0 008 0C6.96 0 6.08.672 5.744 1.6H2.4c-.88 0-1.6.72-1.6 1.6v11.2c0 .88.72 1.6 1.6 1.6h11.2c.88 0 1.6-.72 1.6-1.6V3.2c0-.88-.72-1.6-1.6-1.6zM8 1.4c.328 0 .6.272.6.6 0 .328-.272.6-.6.6a.604.604 0 01-.6-.6c0-.328.272-.6.6-.6zm5.6 13H2.4V3.2h11.2v11.2z" />
8
+ <path d="M10.464 8.024L8.768 6.328 4 11.088V12.8h1.68l4.784-4.776zm1.416-1.408a.396.396 0 000-.568L10.752 4.92a.396.396 0 00-.568 0l-.848.848 1.696 1.696.848-.848z" />
9
+ </svg>
10
+ )
11
+ }
12
+
13
+ export default SvgNote
@@ -0,0 +1,69 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/illus/notes.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgNotes(props) {
5
+ return (
6
+ <svg viewBox="0 0 33 33" fill="none" {...props}>
7
+ <rect
8
+ x={0.718}
9
+ y={0.718}
10
+ width={32}
11
+ height={32}
12
+ rx={10.568}
13
+ fill="url(#notes_svg__paint0_linear_11347_30909)"
14
+ />
15
+ <g filter="url(#notes_svg__filter0_d_11347_30909)">
16
+ <path
17
+ fillRule="evenodd"
18
+ clipRule="evenodd"
19
+ d="M16.71 6.43c-1.434 0-2.628.913-2.886 2.12h-1.847a4.569 4.569 0 00-4.569 4.57v9.464a4.569 4.569 0 004.57 4.569h9.464a4.569 4.569 0 004.569-4.57V13.12a4.569 4.569 0 00-4.57-4.57h-1.846c-.258-1.207-1.451-2.12-2.885-2.12zm2.266 6.823c.51-.51 1.337-.51 1.846 0l.347.346c.51.51.51 1.337 0 1.846l-.577.577-2.193-2.192.577-.577zm-1.269 1.27l2.192 2.192-6.135 6.135a.326.326 0 01-.23.095h-1.731a.326.326 0 01-.327-.326v-1.73c0-.087.035-.17.096-.231l6.135-6.136z"
20
+ fill="#fff"
21
+ />
22
+ </g>
23
+ <defs>
24
+ <linearGradient
25
+ id="notes_svg__paint0_linear_11347_30909"
26
+ x1={6.266}
27
+ y1={29.845}
28
+ x2={30.906}
29
+ y2={2.676}
30
+ gradientUnits="userSpaceOnUse"
31
+ >
32
+ <stop offset={0.23} stopColor="#FFB81E" />
33
+ <stop offset={1} stopColor="#FFE098" />
34
+ </linearGradient>
35
+ <filter
36
+ id="notes_svg__filter0_d_11347_30909"
37
+ x={5.777}
38
+ y={5.124}
39
+ width={21.866}
40
+ height={23.987}
41
+ filterUnits="userSpaceOnUse"
42
+ colorInterpolationFilters="sRGB"
43
+ >
44
+ <feFlood floodOpacity={0} result="BackgroundImageFix" />
45
+ <feColorMatrix
46
+ in="SourceAlpha"
47
+ values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
48
+ result="hardAlpha"
49
+ />
50
+ <feOffset dy={0.326} />
51
+ <feGaussianBlur stdDeviation={0.816} />
52
+ <feComposite in2="hardAlpha" operator="out" />
53
+ <feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0" />
54
+ <feBlend
55
+ in2="BackgroundImageFix"
56
+ result="effect1_dropShadow_11347_30909"
57
+ />
58
+ <feBlend
59
+ in="SourceGraphic"
60
+ in2="effect1_dropShadow_11347_30909"
61
+ result="shape"
62
+ />
63
+ </filter>
64
+ </defs>
65
+ </svg>
66
+ )
67
+ }
68
+
69
+ export default SvgNotes
@@ -0,0 +1,88 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/illus/notes-text.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgNotesText(props) {
5
+ return (
6
+ <svg viewBox="0 0 479 136" fill="none" {...props}>
7
+ <path
8
+ d="M0 132.881V0h20.122l64.732 76.881c3.037 3.417 6.075 7.024 8.732 11.01-.759-5.695-.949-13.857-.949-21.64V0h24.298v132.881H99.661l-67.2-79.918c-3.037-3.417-6.075-7.024-8.732-11.01.76 5.694.949 13.857.949 21.64v69.288H0z"
9
+ fill="url(#notes-text_svg__paint0_linear_59620_144)"
10
+ />
11
+ <path
12
+ d="M182.772 135.349c-30.562 0-52.583-23.159-52.583-51.634 0-28.474 22.021-51.824 52.583-51.824 30.563 0 52.583 23.35 52.583 51.824 0 28.475-22.02 51.634-52.583 51.634zm-26.956-51.634c0 15.376 10.631 28.285 26.956 28.285 16.326 0 26.956-12.909 26.956-28.285s-10.63-28.474-26.956-28.474c-16.325 0-26.956 13.098-26.956 28.474z"
13
+ fill="url(#notes-text_svg__paint1_linear_59620_144)"
14
+ />
15
+ <path
16
+ d="M278.718 132.881c-19.552 0-30.183-9.112-30.183-30.563V56h-13.857V34.17h13.857V14.236l25.627-2.657v22.59h20.882V56h-20.882v44.99c0 6.264 3.038 9.112 7.973 9.112h10.631v22.779h-14.048z"
17
+ fill="url(#notes-text_svg__paint2_linear_59620_144)"
18
+ />
19
+ <path
20
+ d="M348.282 135.349c-30.563 0-51.064-23.159-51.064-51.634 0-28.474 21.451-52.013 51.064-52.013 29.614 0 50.115 23.539 50.115 52.013 0 2.848-.19 5.885-.759 9.112h-73.844c2.847 11.58 11.58 19.742 24.488 19.742 11.01 0 19.553-5.695 24.108-13.288l19.933 14.997c-7.973 12.339-24.488 21.071-44.041 21.071zm-24.488-61.695h48.786c-2.847-11.01-12.149-19.932-24.678-19.932-12.149 0-21.261 8.163-24.108 19.932z"
21
+ fill="url(#notes-text_svg__paint3_linear_59620_144)"
22
+ />
23
+ <path
24
+ d="M440.657 135.349c-16.705 0-30.183-5.695-41.004-17.275l17.275-15.756c7.213 8.163 14.807 12.15 23.159 12.15 8.732 0 13.668-4.366 13.668-10.251 0-5.126-2.468-7.973-18.034-11.58-26.386-6.264-30.373-18.224-30.373-30.752 0-17.275 13.668-30.183 36.827-30.183 15.946 0 26.577 3.986 36.638 17.084l-18.604 14.238c-4.746-7.594-10.82-10.63-17.464-10.63-7.024 0-12.339 2.657-12.339 8.731 0 3.417 1.519 6.455 13.288 9.492 28.664 7.403 35.308 18.034 35.308 32.84 0 18.224-16.515 31.892-38.345 31.892z"
25
+ fill="url(#notes-text_svg__paint4_linear_59620_144)"
26
+ />
27
+ <defs>
28
+ <linearGradient
29
+ id="notes-text_svg__paint0_linear_59620_144"
30
+ x1={236.012}
31
+ y1={7.974}
32
+ x2={236.012}
33
+ y2={132.881}
34
+ gradientUnits="userSpaceOnUse"
35
+ >
36
+ <stop stopColor="#FFC953" />
37
+ <stop offset={1} stopColor="#FFB81E" />
38
+ </linearGradient>
39
+ <linearGradient
40
+ id="notes-text_svg__paint1_linear_59620_144"
41
+ x1={236.012}
42
+ y1={7.974}
43
+ x2={236.012}
44
+ y2={132.881}
45
+ gradientUnits="userSpaceOnUse"
46
+ >
47
+ <stop stopColor="#FFC953" />
48
+ <stop offset={1} stopColor="#FFB81E" />
49
+ </linearGradient>
50
+ <linearGradient
51
+ id="notes-text_svg__paint2_linear_59620_144"
52
+ x1={236.012}
53
+ y1={7.974}
54
+ x2={236.012}
55
+ y2={132.881}
56
+ gradientUnits="userSpaceOnUse"
57
+ >
58
+ <stop stopColor="#FFC953" />
59
+ <stop offset={1} stopColor="#FFB81E" />
60
+ </linearGradient>
61
+ <linearGradient
62
+ id="notes-text_svg__paint3_linear_59620_144"
63
+ x1={236.012}
64
+ y1={7.974}
65
+ x2={236.012}
66
+ y2={132.881}
67
+ gradientUnits="userSpaceOnUse"
68
+ >
69
+ <stop stopColor="#FFC953" />
70
+ <stop offset={1} stopColor="#FFB81E" />
71
+ </linearGradient>
72
+ <linearGradient
73
+ id="notes-text_svg__paint4_linear_59620_144"
74
+ x1={236.012}
75
+ y1={7.974}
76
+ x2={236.012}
77
+ y2={132.881}
78
+ gradientUnits="userSpaceOnUse"
79
+ >
80
+ <stop stopColor="#FFC953" />
81
+ <stop offset={1} stopColor="#FFB81E" />
82
+ </linearGradient>
83
+ </defs>
84
+ </svg>
85
+ )
86
+ }
87
+
88
+ export default SvgNotesText
@@ -0,0 +1,12 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/notification-email.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgNotificationEmail(props) {
5
+ return (
6
+ <svg viewBox="0 0 20 18" {...props}>
7
+ <path d="M20 6.98V16c0 1.1-.9 2-2 2H2c-1.1 0-2-.9-2-2L.01 4C.01 2.9.9 2 2 2h10.1c-.06.32-.1.66-.1 1 0 .34.04.68.1 1H2l8 5 3.67-2.29c.47.43 1.02.76 1.63.98L10 11 2 6v10h16V7.9c.74-.15 1.42-.48 2-.92zM14 3c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" />
8
+ </svg>
9
+ )
10
+ }
11
+
12
+ export default SvgNotificationEmail
@@ -0,0 +1,12 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/permissions/notifications.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgNotifications(props) {
5
+ return (
6
+ <svg viewBox="0 0 14 16" {...props}>
7
+ <path d="M6.564 16c.903 0 1.641-.739 1.641-1.641H4.923c0 .902.739 1.641 1.641 1.641zm4.923-4.923V6.974c0-2.519-1.337-4.627-3.692-5.185V1.23c0-.68-.55-1.23-1.23-1.23a1.23 1.23 0 00-1.232 1.23v.559c-2.346.558-3.692 2.658-3.692 5.185v4.103L0 12.717v.822h13.128v-.821l-1.64-1.641zm-1.64.82H3.281V6.974c0-2.035 1.239-3.692 3.282-3.692s3.282 1.657 3.282 3.692v4.923z" />
8
+ </svg>
9
+ )
10
+ }
11
+
12
+ export default SvgNotifications
@@ -0,0 +1,12 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/number.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgNumber(props) {
5
+ return (
6
+ <svg viewBox="0 0 17 8" {...props}>
7
+ <path d="M3.847 7.097H2.298V2.452H.75V.903h3.097v6.194zm6.71-1.549H7.46V4.516h2.064c.568 0 1.033-.464 1.033-1.032V1.936c0-.568-.465-1.033-1.033-1.033H5.911v1.549h3.097v1.032H6.944c-.568 0-1.033.464-1.033 1.032v2.58h4.646V5.549zm6.193.517v-4.13c0-.567-.465-1.032-1.032-1.032h-3.613v1.549h3.097v1.032h-2.065v1.032h2.065v1.032h-3.097v1.549h3.613c.567 0 1.032-.465 1.032-1.032z" />
8
+ </svg>
9
+ )
10
+ }
11
+
12
+ export default SvgNumber
@@ -0,0 +1,12 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/offline.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgOffline(props) {
5
+ return (
6
+ <svg viewBox="0 0 16 14" {...props}>
7
+ <path d="M14.546 7.314L16 5.859c-2.713-2.713-6.45-3.745-9.964-3.134L7.913 4.6a9.27 9.27 0 016.633 2.713zM13.09 8.768a7.196 7.196 0 00-2.705-1.694l2.196 2.196.509-.502zm-7.273 2.91L8 13.858l2.182-2.182a3.081 3.081 0 00-4.364 0zM1.753.505L.727 1.532 2.945 3.75A11.42 11.42 0 000 5.86l1.455 1.454a9.199 9.199 0 013.032-2.022l1.63 1.629a7.144 7.144 0 00-3.208 1.847l1.455 1.455A5.09 5.09 0 017.92 8.725l5.15 5.149 1.024-1.026L1.754.506z" />
8
+ </svg>
9
+ )
10
+ }
11
+
12
+ export default SvgOffline
@@ -0,0 +1,12 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/online.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgOnline(props) {
5
+ return (
6
+ <svg viewBox="0 0 16 12" {...props}>
7
+ <path d="M0 3.432l1.455 1.454a9.257 9.257 0 0113.09 0L16 3.432c-4.415-4.415-11.578-4.415-16 0zM5.818 9.25L8 11.43l2.182-2.181a3.081 3.081 0 00-4.364 0zM2.91 6.34l1.455 1.455a5.145 5.145 0 017.272 0l1.455-1.454c-2.807-2.808-7.367-2.808-10.182 0z" />
8
+ </svg>
9
+ )
10
+ }
11
+
12
+ export default SvgOnline
@@ -0,0 +1,71 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/illus/only-office.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgOnlyOffice(props) {
5
+ return (
6
+ <svg viewBox="0 0 16 16" fill="none" {...props}>
7
+ <g
8
+ clipPath="url(#only-office_svg__clip0_6882_51948)"
9
+ fillRule="evenodd"
10
+ clipRule="evenodd"
11
+ >
12
+ <path
13
+ d="M7 15.172l-6.58-3.02c-.56-.264-.56-.672 0-.912l2.291-1.055 4.265 1.966c.56.264 1.463.264 1.999 0l4.265-1.966 2.29 1.055c.561.264.561.671 0 .911l-6.58 3.021c-.511.24-1.413.24-1.95 0z"
14
+ fill="url(#only-office_svg__paint0_linear_6882_51948)"
15
+ />
16
+ <path
17
+ d="M7 11.456L.42 8.436c-.56-.265-.56-.672 0-.912l2.243-1.03L7 8.483c.56.263 1.462.263 1.998 0l4.338-1.99 2.242 1.03c.561.264.561.671 0 .911L9 11.456c-.56.264-1.462.264-1.998 0z"
18
+ fill="url(#only-office_svg__paint1_linear_6882_51948)"
19
+ />
20
+ <path
21
+ d="M7 7.836L.42 4.815c-.56-.264-.56-.672 0-.911L7 .883c.561-.264 1.463-.264 2 0l6.58 3.02c.56.264.56.672 0 .912L9 7.835c-.561.24-1.463.24-2 0z"
22
+ fill="url(#only-office_svg__paint2_linear_6882_51948)"
23
+ />
24
+ </g>
25
+ <defs>
26
+ <linearGradient
27
+ id="only-office_svg__paint0_linear_6882_51948"
28
+ x1={7.994}
29
+ y1={18.035}
30
+ x2={7.994}
31
+ y2={7.007}
32
+ gradientUnits="userSpaceOnUse"
33
+ >
34
+ <stop stopColor="#FCC2B1" />
35
+ <stop offset={0.885} stopColor="#D9420B" />
36
+ </linearGradient>
37
+ <linearGradient
38
+ id="only-office_svg__paint1_linear_6882_51948"
39
+ x1={7.994}
40
+ y1={13.26}
41
+ x2={7.994}
42
+ y2={6.007}
43
+ gradientUnits="userSpaceOnUse"
44
+ >
45
+ <stop stopColor="#DEEDC9" />
46
+ <stop offset={0.661} stopColor="#8BBA25" />
47
+ </linearGradient>
48
+ <linearGradient
49
+ id="only-office_svg__paint2_linear_6882_51948"
50
+ x1={7.994}
51
+ y1={10.323}
52
+ x2={7.994}
53
+ y2={0.453}
54
+ gradientUnits="userSpaceOnUse"
55
+ >
56
+ <stop stopColor="#C2EBFA" />
57
+ <stop offset={1} stopColor="#26A8DE" />
58
+ </linearGradient>
59
+ <clipPath id="only-office_svg__clip0_6882_51948">
60
+ <path
61
+ fill="#fff"
62
+ transform="translate(0 .556)"
63
+ d="M0 0h16v14.889H0z"
64
+ />
65
+ </clipPath>
66
+ </defs>
67
+ </svg>
68
+ )
69
+ }
70
+
71
+ export default SvgOnlyOffice
@@ -0,0 +1,12 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/openapp.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgOpenapp(props) {
5
+ return (
6
+ <svg viewBox="0 0 16 14" {...props}>
7
+ <path d="M14.546.452H1.455C.655.452 0 1.106 0 1.906v2.902h1.455V1.892h13.09v10.203H1.456V9.172H0v2.916c0 .8.655 1.44 1.455 1.44h13.09c.8 0 1.455-.64 1.455-1.44V1.906C16 1.1 15.345.452 14.546.452zM7.273 9.899l2.909-2.91-2.91-2.908v2.182H0v1.454h7.273V9.9zM14.546.452H1.455C.655.452 0 1.106 0 1.906v2.902h1.455V1.892h13.09v10.203H1.456V9.172H0v2.916c0 .8.655 1.44 1.455 1.44h13.09c.8 0 1.455-.64 1.455-1.44V1.906C16 1.1 15.345.452 14.546.452zM7.273 9.899l2.909-2.91-2.91-2.908v2.182H0v1.454h7.273V9.9z" />
8
+ </svg>
9
+ )
10
+ }
11
+
12
+ export default SvgOpenapp
@@ -0,0 +1,12 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/openwith.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgOpenwith(props) {
5
+ return (
6
+ <svg viewBox="0 0 16 16" {...props}>
7
+ <path d="M14.222 14.222H1.778V1.778H8V0H1.778C.79 0 0 .8 0 1.778v12.444C0 15.2.791 16 1.778 16h12.444C15.2 16 16 15.2 16 14.222V8h-1.778v6.222zM9.778 0v1.778h3.19l-8.737 8.738 1.253 1.253 8.738-8.738v3.191H16V0H9.778z" />
8
+ </svg>
9
+ )
10
+ }
11
+
12
+ export default SvgOpenwith
@@ -0,0 +1,12 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/permissions/opinions.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgOpinions(props) {
5
+ return (
6
+ <svg viewBox="0 0 16 17" {...props}>
7
+ <path d="M8 13.116l4.944 2.984-1.312-5.624L16 6.692l-5.752-.488L8 .9 5.752 6.204 0 6.692l4.368 3.784L3.056 16.1 8 13.116z" />
8
+ </svg>
9
+ )
10
+ }
11
+
12
+ export default SvgOpinions
@@ -0,0 +1,13 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/palette.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgPalette(props) {
5
+ return (
6
+ <svg viewBox="0 0 16 16" {...props}>
7
+ <path d="M8 16c-4.408 0-8-3.592-8-8 0-4.408 3.592-8 8-8 4.408 0 8 3.232 8 7.2 0 2.648-2.152 4.8-4.8 4.8H9.784c-.224 0-.4.176-.4.4 0 .096.04.184.104.264.328.376.512.848.512 1.336a2 2 0 01-2 2zM8 1.6A6.408 6.408 0 001.6 8c0 3.528 2.872 6.4 6.4 6.4.224 0 .4-.176.4-.4a.433.433 0 00-.112-.28 1.986 1.986 0 01-.504-1.32 2 2 0 012-2H11.2a3.2 3.2 0 003.2-3.2c0-3.088-2.872-5.6-6.4-5.6z" />
8
+ <path d="M3.6 8.8a1.2 1.2 0 100-2.4 1.2 1.2 0 000 2.4zM6 5.6a1.2 1.2 0 100-2.4 1.2 1.2 0 000 2.4zm4 0a1.2 1.2 0 100-2.4 1.2 1.2 0 000 2.4zm2.4 3.2a1.2 1.2 0 100-2.4 1.2 1.2 0 000 2.4z" />
9
+ </svg>
10
+ )
11
+ }
12
+
13
+ export default SvgPalette
@@ -0,0 +1,14 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/paper.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgPaper(props) {
5
+ return (
6
+ <svg viewBox="0 0 20 20" {...props}>
7
+ <path d="M16 10h-4v1.5h4V10zm0 3h-4v1.5h4V13z" />
8
+ <path d="M18 5h-5V2c0-1.1-.9-2-2-2H9C7.9 0 7 .9 7 2v3H2C.9 5 0 5.9 0 7v11c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM9 2h2v5H9V2zm9 16H2V7h5c0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2h5v11z" />
9
+ <path d="M7 13a1.5 1.5 0 100-3 1.5 1.5 0 000 3zm2.08 1.18c-.64-.28-1.34-.43-2.08-.43s-1.44.15-2.08.43c-.56.24-.92.78-.92 1.39V16h6v-.43c0-.61-.36-1.15-.92-1.39z" />
10
+ </svg>
11
+ )
12
+ }
13
+
14
+ export default SvgPaper
@@ -0,0 +1,12 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/paperplane.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgPaperplane(props) {
5
+ return (
6
+ <svg viewBox="0 0 17 14" {...props}>
7
+ <path d="M2.031 2.452l5.722 2.453-5.73-.762.008-1.691zm5.715 6.643L2.024 11.55V9.857l5.722-.762zM.508.143L.5 5.476 11.929 7 .5 8.524l.008 5.333L16.5 7 .508.143z" />
8
+ </svg>
9
+ )
10
+ }
11
+
12
+ export default SvgPaperplane
@@ -0,0 +1,66 @@
1
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/illus/papers.svg` to regenerate;
2
+ import React from 'react'
3
+
4
+ function SvgPapers(props) {
5
+ return (
6
+ <svg viewBox="0 0 16 16" fill="none" {...props}>
7
+ <g clipPath="url(#papers_svg__clip0_11291_1044)">
8
+ <path
9
+ d="M10.716 0H5.284A5.284 5.284 0 000 5.284v5.432A5.284 5.284 0 005.284 16h5.432A5.284 5.284 0 0016 10.716V5.284A5.284 5.284 0 0010.716 0z"
10
+ fill="url(#papers_svg__paint0_linear_11291_1044)"
11
+ />
12
+ <g filter="url(#papers_svg__filter0_d_11291_1044)" fill="#fff">
13
+ <path d="M5.5 5A1.5 1.5 0 017 3.5h5A1.5 1.5 0 0113.5 5v3A1.5 1.5 0 0112 9.5h-.25V8A2.75 2.75 0 009 5.25H5.5V5z" />
14
+ <path d="M4 6.5A1.5 1.5 0 002.5 8v3A1.5 1.5 0 004 12.5h5a1.5 1.5 0 001.5-1.5V8A1.5 1.5 0 009 6.5H4z" />
15
+ </g>
16
+ </g>
17
+ <defs>
18
+ <linearGradient
19
+ id="papers_svg__paint0_linear_11291_1044"
20
+ x1={2.162}
21
+ y1={14.686}
22
+ x2={15.012}
23
+ y2={0}
24
+ gradientUnits="userSpaceOnUse"
25
+ >
26
+ <stop stopColor="#E97C00" />
27
+ <stop offset={1} stopColor="#FFD900" />
28
+ </linearGradient>
29
+ <clipPath id="papers_svg__clip0_11291_1044">
30
+ <path fill="#fff" d="M0 0h16v16H0z" />
31
+ </clipPath>
32
+ <filter
33
+ id="papers_svg__filter0_d_11291_1044"
34
+ x={1.079}
35
+ y={2.363}
36
+ width={13.843}
37
+ height={11.843}
38
+ filterUnits="userSpaceOnUse"
39
+ colorInterpolationFilters="sRGB"
40
+ >
41
+ <feFlood floodOpacity={0} result="BackgroundImageFix" />
42
+ <feColorMatrix
43
+ in="SourceAlpha"
44
+ values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
45
+ result="hardAlpha"
46
+ />
47
+ <feOffset dy={0.284} />
48
+ <feGaussianBlur stdDeviation={0.711} />
49
+ <feComposite in2="hardAlpha" operator="out" />
50
+ <feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0" />
51
+ <feBlend
52
+ in2="BackgroundImageFix"
53
+ result="effect1_dropShadow_11291_1044"
54
+ />
55
+ <feBlend
56
+ in="SourceGraphic"
57
+ in2="effect1_dropShadow_11291_1044"
58
+ result="shape"
59
+ />
60
+ </filter>
61
+ </defs>
62
+ </svg>
63
+ )
64
+ }
65
+
66
+ export default SvgPapers