@onesy/ui-react 1.0.59 → 1.0.63

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 (1659) hide show
  1. package/build/AudioPlayer/AudioPlayer.js +477 -0
  2. package/build/AudioRecorder/AudioRecorder.js +267 -0
  3. package/build/AutoComplete/AutoComplete.js +583 -0
  4. package/build/AutoCompleteCountry/AutoCompleteCountry.js +65 -0
  5. package/build/AutoCompleteCurrency/AutoCompleteCurrency.js +64 -0
  6. package/build/Breadcrumbs/Breadcrumbs.js +150 -0
  7. package/build/BubbleChart/BubbleChart.js +138 -0
  8. package/build/Calendar/Calendar.js +463 -0
  9. package/build/CalendarAvailability/CalendarAvailability.d.ts +50 -0
  10. package/build/CalendarAvailability/CalendarAvailability.js +405 -0
  11. package/build/CalendarMenu/CalendarMenu.js +314 -0
  12. package/build/CalendarMonth/CalendarMonth.js +514 -0
  13. package/build/CalendarViews/CalendarViews.d.ts +33 -0
  14. package/build/CalendarViews/CalendarViews.js +266 -0
  15. package/build/Chart/Chart.js +1191 -0
  16. package/build/ColorTextField/ColorTextField.js +181 -0
  17. package/build/Confirm/Confirm.js +134 -0
  18. package/build/CookieBanner/CookieBanner.js +79 -0
  19. package/build/Countdown/Countdown.js +266 -0
  20. package/build/DatePicker/DatePicker.js +560 -0
  21. package/build/DateTimePicker/DateTimePicker.js +477 -0
  22. package/build/Drawing/Drawing.js +533 -0
  23. package/build/DropZone/DropZone.d.ts +16 -0
  24. package/build/DropZone/DropZone.js +207 -0
  25. package/build/Emojis/Emojis.js +323 -0
  26. package/build/Frame/Frame.js +155 -0
  27. package/build/ImageEdit/ImageEdit.js +790 -0
  28. package/build/Info/Info.js +67 -0
  29. package/build/Links/Links.d.ts +34 -0
  30. package/build/Links/Links.js +160 -0
  31. package/build/Medias/Medias.js +405 -0
  32. package/build/MenuDesktop/MenuDesktop.js +435 -0
  33. package/build/NavigationItem/NavigationItem.js +294 -0
  34. package/build/NotFound/NotFound.d.ts +17 -0
  35. package/build/NotFound/NotFound.js +69 -0
  36. package/build/Page/Page.js +71 -0
  37. package/build/PieChart/PieChart.js +277 -0
  38. package/build/README.MD +85 -0
  39. package/build/RichTextEditor/RichTextEditor.js +1012 -0
  40. package/build/ScreenCapture/ScreenCapture.js +344 -0
  41. package/build/SectionAction/SectionAction.js +64 -0
  42. package/build/SectionBoxes/SectionBoxes.js +212 -0
  43. package/build/SectionCards/SectionCards.js +222 -0
  44. package/build/SectionCarousel/SectionCarousel.js +247 -0
  45. package/build/SectionMedia/SectionMedia.js +156 -0
  46. package/build/SectionTextMedia/SectionTextMedia.js +147 -0
  47. package/build/Select/Select.js +408 -0
  48. package/build/Share/Share.js +339 -0
  49. package/build/SmartTextField/SmartTextField.js +793 -0
  50. package/build/SpeechToText/SpeechToText.js +178 -0
  51. package/build/SpeedDial/SpeedDial.js +413 -0
  52. package/build/SpeedDialItem/SpeedDialItem.js +69 -0
  53. package/build/TableCell/TableCell.js +227 -0
  54. package/build/TablePagination/TablePagination.js +101 -0
  55. package/build/TextField/TextField.d.ts +61 -0
  56. package/build/TextToSpeech/TextToSpeech.js +158 -0
  57. package/build/TimePicker/TimePicker.js +737 -0
  58. package/build/Timer/Timer.js +209 -0
  59. package/build/VideoPlayer/VideoPlayer.js +671 -0
  60. package/build/Widgets/Widgets.js +177 -0
  61. package/build/esm/AudioPlayer/AudioPlayer.js +655 -0
  62. package/build/esm/AudioRecorder/AudioRecorder.js +340 -0
  63. package/build/esm/AutoComplete/AutoComplete.js +668 -0
  64. package/build/esm/AutoCompleteCountry/AutoCompleteCountry.js +82 -0
  65. package/build/esm/AutoCompleteCurrency/AutoCompleteCurrency.js +62 -0
  66. package/build/esm/Breadcrumbs/Breadcrumbs.js +156 -0
  67. package/build/esm/BubbleChart/BubbleChart.js +232 -0
  68. package/build/esm/Calendar/Calendar.js +668 -0
  69. package/build/esm/CalendarAvailability/CalendarAvailability.js +650 -0
  70. package/build/esm/CalendarMenu/CalendarMenu.js +389 -0
  71. package/build/esm/CalendarMonth/CalendarMonth.js +521 -0
  72. package/build/esm/CalendarViews/CalendarViews.js +370 -0
  73. package/build/esm/Chart/Chart.js +1296 -0
  74. package/build/esm/ColorTextField/ColorTextField.js +215 -0
  75. package/build/esm/Confirm/Confirm.js +156 -0
  76. package/build/esm/CookieBanner/CookieBanner.js +120 -0
  77. package/build/esm/Countdown/Countdown.js +377 -0
  78. package/build/esm/DatePicker/DatePicker.js +753 -0
  79. package/build/esm/DateTimePicker/DateTimePicker.js +646 -0
  80. package/build/esm/Drawing/Drawing.js +804 -0
  81. package/build/esm/DropZone/DropZone.js +218 -0
  82. package/build/esm/Emojis/Emojis.js +373 -0
  83. package/build/esm/Frame/Frame.js +195 -0
  84. package/build/esm/ImageEdit/ImageEdit.js +1050 -0
  85. package/build/esm/Info/Info.js +78 -0
  86. package/build/esm/Links/Links.js +244 -0
  87. package/build/esm/Medias/Medias.js +398 -0
  88. package/build/esm/MenuDesktop/MenuDesktop.js +474 -0
  89. package/build/esm/NavigationItem/NavigationItem.js +297 -0
  90. package/build/esm/NotFound/NotFound.js +73 -0
  91. package/build/esm/Page/Page.js +113 -0
  92. package/build/esm/PieChart/PieChart.js +364 -0
  93. package/build/esm/RichTextEditor/RichTextEditor.js +1749 -0
  94. package/build/esm/ScreenCapture/ScreenCapture.js +403 -0
  95. package/build/esm/SectionAction/SectionAction.js +59 -0
  96. package/build/esm/SectionBoxes/SectionBoxes.js +219 -0
  97. package/build/esm/SectionCards/SectionCards.js +236 -0
  98. package/build/esm/SectionCarousel/SectionCarousel.js +261 -0
  99. package/build/esm/SectionMedia/SectionMedia.js +143 -0
  100. package/build/esm/SectionTextMedia/SectionTextMedia.js +157 -0
  101. package/build/esm/Select/Select.js +474 -0
  102. package/build/esm/Share/Share.js +444 -0
  103. package/build/esm/SmartTextField/SmartTextField.js +959 -0
  104. package/build/esm/SpeechToText/SpeechToText.js +191 -0
  105. package/build/esm/SpeedDial/SpeedDial.js +422 -0
  106. package/build/esm/SpeedDialItem/SpeedDialItem.js +79 -0
  107. package/build/esm/TableCell/TableCell.js +242 -0
  108. package/build/esm/TablePagination/TablePagination.js +149 -0
  109. package/build/esm/TextToSpeech/TextToSpeech.js +162 -0
  110. package/build/esm/TimePicker/TimePicker.js +958 -0
  111. package/build/esm/Timer/Timer.js +293 -0
  112. package/build/esm/VideoPlayer/VideoPlayer.js +835 -0
  113. package/build/esm/Widgets/Widgets.js +201 -0
  114. package/build/esm/index.js +432 -0
  115. package/build/package.json +57 -0
  116. package/package.json +27 -6
  117. package/AudioPlayer/AudioPlayer.js +0 -494
  118. package/AudioRecorder/AudioRecorder.js +0 -266
  119. package/AutoComplete/AutoComplete.js +0 -582
  120. package/AutoCompleteCountry/AutoCompleteCountry.js +0 -64
  121. package/AutoCompleteCurrency/AutoCompleteCurrency.js +0 -63
  122. package/Breadcrumbs/Breadcrumbs.js +0 -149
  123. package/BubbleChart/BubbleChart.js +0 -137
  124. package/Calendar/Calendar.js +0 -462
  125. package/CalendarAvailability/CalendarAvailability.d.ts +0 -47
  126. package/CalendarAvailability/CalendarAvailability.js +0 -400
  127. package/CalendarMenu/CalendarMenu.js +0 -313
  128. package/CalendarMonth/CalendarMonth.js +0 -513
  129. package/CalendarViews/CalendarViews.d.ts +0 -30
  130. package/CalendarViews/CalendarViews.js +0 -261
  131. package/Chart/Chart.js +0 -1190
  132. package/ColorTextField/ColorTextField.js +0 -180
  133. package/Confirm/Confirm.js +0 -133
  134. package/CookieBanner/CookieBanner.js +0 -78
  135. package/Countdown/Countdown.js +0 -265
  136. package/DatePicker/DatePicker.js +0 -559
  137. package/DateTimePicker/DateTimePicker.js +0 -476
  138. package/Drawing/Drawing.js +0 -532
  139. package/DropZone/DropZone.d.ts +0 -15
  140. package/DropZone/DropZone.js +0 -206
  141. package/Emojis/Emojis.js +0 -320
  142. package/Frame/Frame.js +0 -154
  143. package/ImageEdit/ImageEdit.js +0 -789
  144. package/Info/Info.js +0 -66
  145. package/Links/Links.d.ts +0 -32
  146. package/Links/Links.js +0 -159
  147. package/Medias/Medias.js +0 -404
  148. package/MenuDesktop/MenuDesktop.js +0 -437
  149. package/NavigationItem/NavigationItem.js +0 -294
  150. package/NotFound/NotFound.d.ts +0 -16
  151. package/NotFound/NotFound.js +0 -68
  152. package/Page/Page.js +0 -70
  153. package/PieChart/PieChart.js +0 -276
  154. package/RichTextEditor/RichTextEditor.js +0 -1011
  155. package/ScreenCapture/ScreenCapture.js +0 -343
  156. package/SectionAction/SectionAction.js +0 -63
  157. package/SectionBoxes/SectionBoxes.js +0 -211
  158. package/SectionCards/SectionCards.js +0 -221
  159. package/SectionCarousel/SectionCarousel.js +0 -246
  160. package/SectionMedia/SectionMedia.js +0 -155
  161. package/SectionTextMedia/SectionTextMedia.js +0 -146
  162. package/Select/Select.js +0 -407
  163. package/Share/Share.js +0 -338
  164. package/SmartTextField/SmartTextField.js +0 -792
  165. package/SpeechToText/SpeechToText.js +0 -177
  166. package/SpeedDial/SpeedDial.js +0 -413
  167. package/SpeedDialItem/SpeedDialItem.js +0 -69
  168. package/TableCell/TableCell.js +0 -226
  169. package/TablePagination/TablePagination.js +0 -100
  170. package/TextField/TextField.d.ts +0 -60
  171. package/TextToSpeech/TextToSpeech.js +0 -157
  172. package/TimePicker/TimePicker.js +0 -736
  173. package/Timer/Timer.js +0 -208
  174. package/VideoPlayer/VideoPlayer.js +0 -670
  175. package/Widgets/Widgets.js +0 -176
  176. package/esm/AudioPlayer/AudioPlayer.js +0 -678
  177. package/esm/AudioRecorder/AudioRecorder.js +0 -339
  178. package/esm/AutoComplete/AutoComplete.js +0 -667
  179. package/esm/AutoCompleteCountry/AutoCompleteCountry.js +0 -80
  180. package/esm/AutoCompleteCurrency/AutoCompleteCurrency.js +0 -61
  181. package/esm/Breadcrumbs/Breadcrumbs.js +0 -155
  182. package/esm/BubbleChart/BubbleChart.js +0 -231
  183. package/esm/Calendar/Calendar.js +0 -667
  184. package/esm/CalendarAvailability/CalendarAvailability.js +0 -640
  185. package/esm/CalendarMenu/CalendarMenu.js +0 -388
  186. package/esm/CalendarMonth/CalendarMonth.js +0 -520
  187. package/esm/CalendarViews/CalendarViews.js +0 -360
  188. package/esm/Chart/Chart.js +0 -1295
  189. package/esm/ColorTextField/ColorTextField.js +0 -214
  190. package/esm/Confirm/Confirm.js +0 -155
  191. package/esm/CookieBanner/CookieBanner.js +0 -119
  192. package/esm/Countdown/Countdown.js +0 -376
  193. package/esm/DatePicker/DatePicker.js +0 -752
  194. package/esm/DateTimePicker/DateTimePicker.js +0 -645
  195. package/esm/Drawing/Drawing.js +0 -803
  196. package/esm/DropZone/DropZone.js +0 -216
  197. package/esm/Emojis/Emojis.js +0 -370
  198. package/esm/Frame/Frame.js +0 -194
  199. package/esm/ImageEdit/ImageEdit.js +0 -1049
  200. package/esm/Info/Info.js +0 -77
  201. package/esm/Links/Links.js +0 -241
  202. package/esm/Medias/Medias.js +0 -397
  203. package/esm/MenuDesktop/MenuDesktop.js +0 -475
  204. package/esm/NavigationItem/NavigationItem.js +0 -297
  205. package/esm/NotFound/NotFound.js +0 -71
  206. package/esm/Page/Page.js +0 -112
  207. package/esm/PieChart/PieChart.js +0 -364
  208. package/esm/RichTextEditor/RichTextEditor.js +0 -1748
  209. package/esm/ScreenCapture/ScreenCapture.js +0 -402
  210. package/esm/SectionAction/SectionAction.js +0 -58
  211. package/esm/SectionBoxes/SectionBoxes.js +0 -218
  212. package/esm/SectionCards/SectionCards.js +0 -235
  213. package/esm/SectionCarousel/SectionCarousel.js +0 -260
  214. package/esm/SectionMedia/SectionMedia.js +0 -142
  215. package/esm/SectionTextMedia/SectionTextMedia.js +0 -156
  216. package/esm/Select/Select.js +0 -473
  217. package/esm/Share/Share.js +0 -443
  218. package/esm/SmartTextField/SmartTextField.js +0 -958
  219. package/esm/SpeechToText/SpeechToText.js +0 -190
  220. package/esm/SpeedDial/SpeedDial.js +0 -422
  221. package/esm/SpeedDialItem/SpeedDialItem.js +0 -79
  222. package/esm/TableCell/TableCell.js +0 -241
  223. package/esm/TablePagination/TablePagination.js +0 -148
  224. package/esm/TextToSpeech/TextToSpeech.js +0 -161
  225. package/esm/TimePicker/TimePicker.js +0 -957
  226. package/esm/Timer/Timer.js +0 -292
  227. package/esm/VideoPlayer/VideoPlayer.js +0 -834
  228. package/esm/Widgets/Widgets.js +0 -200
  229. package/esm/index.js +0 -432
  230. /package/{Accordion → build/Accordion}/Accordion.d.ts +0 -0
  231. /package/{Accordion → build/Accordion}/Accordion.js +0 -0
  232. /package/{Accordion → build/Accordion}/index.d.ts +0 -0
  233. /package/{Accordion → build/Accordion}/index.js +0 -0
  234. /package/{Accordion → build/Accordion}/package.json +0 -0
  235. /package/{AdvancedTextField → build/AdvancedTextField}/AdvancedTextField.d.ts +0 -0
  236. /package/{AdvancedTextField → build/AdvancedTextField}/AdvancedTextField.js +0 -0
  237. /package/{AdvancedTextField → build/AdvancedTextField}/index.d.ts +0 -0
  238. /package/{AdvancedTextField → build/AdvancedTextField}/index.js +0 -0
  239. /package/{AdvancedTextField → build/AdvancedTextField}/package.json +0 -0
  240. /package/{Append → build/Append}/Append.d.ts +0 -0
  241. /package/{Append → build/Append}/Append.js +0 -0
  242. /package/{Append → build/Append}/index.d.ts +0 -0
  243. /package/{Append → build/Append}/index.js +0 -0
  244. /package/{Append → build/Append}/package.json +0 -0
  245. /package/{AreaChart → build/AreaChart}/AreaChart.d.ts +0 -0
  246. /package/{AreaChart → build/AreaChart}/AreaChart.js +0 -0
  247. /package/{AreaChart → build/AreaChart}/index.d.ts +0 -0
  248. /package/{AreaChart → build/AreaChart}/index.js +0 -0
  249. /package/{AreaChart → build/AreaChart}/package.json +0 -0
  250. /package/{AreaChartItem → build/AreaChartItem}/AreaChartItem.d.ts +0 -0
  251. /package/{AreaChartItem → build/AreaChartItem}/AreaChartItem.js +0 -0
  252. /package/{AreaChartItem → build/AreaChartItem}/index.d.ts +0 -0
  253. /package/{AreaChartItem → build/AreaChartItem}/index.js +0 -0
  254. /package/{AreaChartItem → build/AreaChartItem}/package.json +0 -0
  255. /package/{AudioPlayer → build/AudioPlayer}/AudioPlayer.d.ts +0 -0
  256. /package/{AudioPlayer → build/AudioPlayer}/index.d.ts +0 -0
  257. /package/{AudioPlayer → build/AudioPlayer}/index.js +0 -0
  258. /package/{AudioPlayer → build/AudioPlayer}/package.json +0 -0
  259. /package/{AudioRecorder → build/AudioRecorder}/AudioRecorder.d.ts +0 -0
  260. /package/{AudioRecorder → build/AudioRecorder}/index.d.ts +0 -0
  261. /package/{AudioRecorder → build/AudioRecorder}/index.js +0 -0
  262. /package/{AudioRecorder → build/AudioRecorder}/package.json +0 -0
  263. /package/{AutoComplete → build/AutoComplete}/AutoComplete.d.ts +0 -0
  264. /package/{AutoComplete → build/AutoComplete}/index.d.ts +0 -0
  265. /package/{AutoComplete → build/AutoComplete}/index.js +0 -0
  266. /package/{AutoComplete → build/AutoComplete}/package.json +0 -0
  267. /package/{AutoCompleteCountry → build/AutoCompleteCountry}/AutoCompleteCountry.d.ts +0 -0
  268. /package/{AutoCompleteCountry → build/AutoCompleteCountry}/index.d.ts +0 -0
  269. /package/{AutoCompleteCountry → build/AutoCompleteCountry}/index.js +0 -0
  270. /package/{AutoCompleteCountry → build/AutoCompleteCountry}/package.json +0 -0
  271. /package/{AutoCompleteCurrency → build/AutoCompleteCurrency}/AutoCompleteCurrency.d.ts +0 -0
  272. /package/{AutoCompleteCurrency → build/AutoCompleteCurrency}/index.d.ts +0 -0
  273. /package/{AutoCompleteCurrency → build/AutoCompleteCurrency}/index.js +0 -0
  274. /package/{AutoCompleteCurrency → build/AutoCompleteCurrency}/package.json +0 -0
  275. /package/{AutoCompleteGooglePlaces → build/AutoCompleteGooglePlaces}/AutoCompleteGooglePlaces.d.ts +0 -0
  276. /package/{AutoCompleteGooglePlaces → build/AutoCompleteGooglePlaces}/AutoCompleteGooglePlaces.js +0 -0
  277. /package/{AutoCompleteGooglePlaces → build/AutoCompleteGooglePlaces}/index.d.ts +0 -0
  278. /package/{AutoCompleteGooglePlaces → build/AutoCompleteGooglePlaces}/index.js +0 -0
  279. /package/{AutoCompleteGooglePlaces → build/AutoCompleteGooglePlaces}/package.json +0 -0
  280. /package/{Avatar → build/Avatar}/Avatar.d.ts +0 -0
  281. /package/{Avatar → build/Avatar}/Avatar.js +0 -0
  282. /package/{Avatar → build/Avatar}/index.d.ts +0 -0
  283. /package/{Avatar → build/Avatar}/index.js +0 -0
  284. /package/{Avatar → build/Avatar}/package.json +0 -0
  285. /package/{AvatarGroup → build/AvatarGroup}/AvatarGroup.d.ts +0 -0
  286. /package/{AvatarGroup → build/AvatarGroup}/AvatarGroup.js +0 -0
  287. /package/{AvatarGroup → build/AvatarGroup}/index.d.ts +0 -0
  288. /package/{AvatarGroup → build/AvatarGroup}/index.js +0 -0
  289. /package/{AvatarGroup → build/AvatarGroup}/package.json +0 -0
  290. /package/{Backdrop → build/Backdrop}/Backdrop.d.ts +0 -0
  291. /package/{Backdrop → build/Backdrop}/Backdrop.js +0 -0
  292. /package/{Backdrop → build/Backdrop}/index.d.ts +0 -0
  293. /package/{Backdrop → build/Backdrop}/index.js +0 -0
  294. /package/{Backdrop → build/Backdrop}/package.json +0 -0
  295. /package/{Badge → build/Badge}/Badge.d.ts +0 -0
  296. /package/{Badge → build/Badge}/Badge.js +0 -0
  297. /package/{Badge → build/Badge}/index.d.ts +0 -0
  298. /package/{Badge → build/Badge}/index.js +0 -0
  299. /package/{Badge → build/Badge}/package.json +0 -0
  300. /package/{Banner → build/Banner}/Banner.d.ts +0 -0
  301. /package/{Banner → build/Banner}/Banner.js +0 -0
  302. /package/{Banner → build/Banner}/index.d.ts +0 -0
  303. /package/{Banner → build/Banner}/index.js +0 -0
  304. /package/{Banner → build/Banner}/package.json +0 -0
  305. /package/{BottomAppBar → build/BottomAppBar}/BottomAppBar.d.ts +0 -0
  306. /package/{BottomAppBar → build/BottomAppBar}/BottomAppBar.js +0 -0
  307. /package/{BottomAppBar → build/BottomAppBar}/index.d.ts +0 -0
  308. /package/{BottomAppBar → build/BottomAppBar}/index.js +0 -0
  309. /package/{BottomAppBar → build/BottomAppBar}/package.json +0 -0
  310. /package/{BottomSheet → build/BottomSheet}/BottomSheet.d.ts +0 -0
  311. /package/{BottomSheet → build/BottomSheet}/BottomSheet.js +0 -0
  312. /package/{BottomSheet → build/BottomSheet}/index.d.ts +0 -0
  313. /package/{BottomSheet → build/BottomSheet}/index.js +0 -0
  314. /package/{BottomSheet → build/BottomSheet}/package.json +0 -0
  315. /package/{Box → build/Box}/Box.d.ts +0 -0
  316. /package/{Box → build/Box}/Box.js +0 -0
  317. /package/{Box → build/Box}/index.d.ts +0 -0
  318. /package/{Box → build/Box}/index.js +0 -0
  319. /package/{Box → build/Box}/package.json +0 -0
  320. /package/{Breadcrumbs → build/Breadcrumbs}/Breadcrumbs.d.ts +0 -0
  321. /package/{Breadcrumbs → build/Breadcrumbs}/index.d.ts +0 -0
  322. /package/{Breadcrumbs → build/Breadcrumbs}/index.js +0 -0
  323. /package/{Breadcrumbs → build/Breadcrumbs}/package.json +0 -0
  324. /package/{BubbleChart → build/BubbleChart}/BubbleChart.d.ts +0 -0
  325. /package/{BubbleChart → build/BubbleChart}/index.d.ts +0 -0
  326. /package/{BubbleChart → build/BubbleChart}/index.js +0 -0
  327. /package/{BubbleChart → build/BubbleChart}/package.json +0 -0
  328. /package/{BubbleChartItem → build/BubbleChartItem}/BubbleChartItem.d.ts +0 -0
  329. /package/{BubbleChartItem → build/BubbleChartItem}/BubbleChartItem.js +0 -0
  330. /package/{BubbleChartItem → build/BubbleChartItem}/index.d.ts +0 -0
  331. /package/{BubbleChartItem → build/BubbleChartItem}/index.js +0 -0
  332. /package/{BubbleChartItem → build/BubbleChartItem}/package.json +0 -0
  333. /package/{Button → build/Button}/Button.d.ts +0 -0
  334. /package/{Button → build/Button}/Button.js +0 -0
  335. /package/{Button → build/Button}/index.d.ts +0 -0
  336. /package/{Button → build/Button}/index.js +0 -0
  337. /package/{Button → build/Button}/package.json +0 -0
  338. /package/{Buttons → build/Buttons}/Buttons.d.ts +0 -0
  339. /package/{Buttons → build/Buttons}/Buttons.js +0 -0
  340. /package/{Buttons → build/Buttons}/index.d.ts +0 -0
  341. /package/{Buttons → build/Buttons}/index.js +0 -0
  342. /package/{Buttons → build/Buttons}/package.json +0 -0
  343. /package/{Calendar → build/Calendar}/Calendar.d.ts +0 -0
  344. /package/{Calendar → build/Calendar}/index.d.ts +0 -0
  345. /package/{Calendar → build/Calendar}/index.js +0 -0
  346. /package/{Calendar → build/Calendar}/package.json +0 -0
  347. /package/{CalendarAvailability → build/CalendarAvailability}/index.d.ts +0 -0
  348. /package/{CalendarAvailability → build/CalendarAvailability}/index.js +0 -0
  349. /package/{CalendarAvailability → build/CalendarAvailability}/package.json +0 -0
  350. /package/{CalendarMenu → build/CalendarMenu}/CalendarMenu.d.ts +0 -0
  351. /package/{CalendarMenu → build/CalendarMenu}/index.d.ts +0 -0
  352. /package/{CalendarMenu → build/CalendarMenu}/index.js +0 -0
  353. /package/{CalendarMenu → build/CalendarMenu}/package.json +0 -0
  354. /package/{CalendarMonth → build/CalendarMonth}/CalendarMonth.d.ts +0 -0
  355. /package/{CalendarMonth → build/CalendarMonth}/index.d.ts +0 -0
  356. /package/{CalendarMonth → build/CalendarMonth}/index.js +0 -0
  357. /package/{CalendarMonth → build/CalendarMonth}/package.json +0 -0
  358. /package/{CalendarViews → build/CalendarViews}/index.d.ts +0 -0
  359. /package/{CalendarViews → build/CalendarViews}/index.js +0 -0
  360. /package/{CalendarViews → build/CalendarViews}/package.json +0 -0
  361. /package/{CalendarWeek → build/CalendarWeek}/CalendarWeek.d.ts +0 -0
  362. /package/{CalendarWeek → build/CalendarWeek}/CalendarWeek.js +0 -0
  363. /package/{CalendarWeek → build/CalendarWeek}/index.d.ts +0 -0
  364. /package/{CalendarWeek → build/CalendarWeek}/index.js +0 -0
  365. /package/{CalendarWeek → build/CalendarWeek}/package.json +0 -0
  366. /package/{Card → build/Card}/Card.d.ts +0 -0
  367. /package/{Card → build/Card}/Card.js +0 -0
  368. /package/{Card → build/Card}/index.d.ts +0 -0
  369. /package/{Card → build/Card}/index.js +0 -0
  370. /package/{Card → build/Card}/package.json +0 -0
  371. /package/{CardButton → build/CardButton}/CardButton.d.ts +0 -0
  372. /package/{CardButton → build/CardButton}/CardButton.js +0 -0
  373. /package/{CardButton → build/CardButton}/index.d.ts +0 -0
  374. /package/{CardButton → build/CardButton}/index.js +0 -0
  375. /package/{CardButton → build/CardButton}/package.json +0 -0
  376. /package/{CardFooter → build/CardFooter}/CardFooter.d.ts +0 -0
  377. /package/{CardFooter → build/CardFooter}/CardFooter.js +0 -0
  378. /package/{CardFooter → build/CardFooter}/index.d.ts +0 -0
  379. /package/{CardFooter → build/CardFooter}/index.js +0 -0
  380. /package/{CardFooter → build/CardFooter}/package.json +0 -0
  381. /package/{CardHeader → build/CardHeader}/CardHeader.d.ts +0 -0
  382. /package/{CardHeader → build/CardHeader}/CardHeader.js +0 -0
  383. /package/{CardHeader → build/CardHeader}/index.d.ts +0 -0
  384. /package/{CardHeader → build/CardHeader}/index.js +0 -0
  385. /package/{CardHeader → build/CardHeader}/package.json +0 -0
  386. /package/{CardImage → build/CardImage}/CardImage.d.ts +0 -0
  387. /package/{CardImage → build/CardImage}/CardImage.js +0 -0
  388. /package/{CardImage → build/CardImage}/index.d.ts +0 -0
  389. /package/{CardImage → build/CardImage}/index.js +0 -0
  390. /package/{CardImage → build/CardImage}/package.json +0 -0
  391. /package/{CardMain → build/CardMain}/CardMain.d.ts +0 -0
  392. /package/{CardMain → build/CardMain}/CardMain.js +0 -0
  393. /package/{CardMain → build/CardMain}/index.d.ts +0 -0
  394. /package/{CardMain → build/CardMain}/index.js +0 -0
  395. /package/{CardMain → build/CardMain}/package.json +0 -0
  396. /package/{Carousel → build/Carousel}/Carousel.d.ts +0 -0
  397. /package/{Carousel → build/Carousel}/Carousel.js +0 -0
  398. /package/{Carousel → build/Carousel}/index.d.ts +0 -0
  399. /package/{Carousel → build/Carousel}/index.js +0 -0
  400. /package/{Carousel → build/Carousel}/package.json +0 -0
  401. /package/{Chart → build/Chart}/Chart.d.ts +0 -0
  402. /package/{Chart → build/Chart}/index.d.ts +0 -0
  403. /package/{Chart → build/Chart}/index.js +0 -0
  404. /package/{Chart → build/Chart}/package.json +0 -0
  405. /package/{Checkbox → build/Checkbox}/Checkbox.d.ts +0 -0
  406. /package/{Checkbox → build/Checkbox}/Checkbox.js +0 -0
  407. /package/{Checkbox → build/Checkbox}/index.d.ts +0 -0
  408. /package/{Checkbox → build/Checkbox}/index.js +0 -0
  409. /package/{Checkbox → build/Checkbox}/package.json +0 -0
  410. /package/{Chip → build/Chip}/Chip.d.ts +0 -0
  411. /package/{Chip → build/Chip}/Chip.js +0 -0
  412. /package/{Chip → build/Chip}/index.d.ts +0 -0
  413. /package/{Chip → build/Chip}/index.js +0 -0
  414. /package/{Chip → build/Chip}/package.json +0 -0
  415. /package/{Chips → build/Chips}/Chips.d.ts +0 -0
  416. /package/{Chips → build/Chips}/Chips.js +0 -0
  417. /package/{Chips → build/Chips}/index.d.ts +0 -0
  418. /package/{Chips → build/Chips}/index.js +0 -0
  419. /package/{Chips → build/Chips}/package.json +0 -0
  420. /package/{ClickListener → build/ClickListener}/ClickListener.d.ts +0 -0
  421. /package/{ClickListener → build/ClickListener}/ClickListener.js +0 -0
  422. /package/{ClickListener → build/ClickListener}/index.d.ts +0 -0
  423. /package/{ClickListener → build/ClickListener}/index.js +0 -0
  424. /package/{ClickListener → build/ClickListener}/package.json +0 -0
  425. /package/{Clock → build/Clock}/Clock.d.ts +0 -0
  426. /package/{Clock → build/Clock}/Clock.js +0 -0
  427. /package/{Clock → build/Clock}/index.d.ts +0 -0
  428. /package/{Clock → build/Clock}/index.js +0 -0
  429. /package/{Clock → build/Clock}/package.json +0 -0
  430. /package/{ColorTextField → build/ColorTextField}/ColorTextField.d.ts +0 -0
  431. /package/{ColorTextField → build/ColorTextField}/index.d.ts +0 -0
  432. /package/{ColorTextField → build/ColorTextField}/index.js +0 -0
  433. /package/{ColorTextField → build/ColorTextField}/package.json +0 -0
  434. /package/{ColumnChart → build/ColumnChart}/ColumnChart.d.ts +0 -0
  435. /package/{ColumnChart → build/ColumnChart}/ColumnChart.js +0 -0
  436. /package/{ColumnChart → build/ColumnChart}/index.d.ts +0 -0
  437. /package/{ColumnChart → build/ColumnChart}/index.js +0 -0
  438. /package/{ColumnChart → build/ColumnChart}/package.json +0 -0
  439. /package/{ColumnChartItem → build/ColumnChartItem}/ColumnChartItem.d.ts +0 -0
  440. /package/{ColumnChartItem → build/ColumnChartItem}/ColumnChartItem.js +0 -0
  441. /package/{ColumnChartItem → build/ColumnChartItem}/index.d.ts +0 -0
  442. /package/{ColumnChartItem → build/ColumnChartItem}/index.js +0 -0
  443. /package/{ColumnChartItem → build/ColumnChartItem}/package.json +0 -0
  444. /package/{Confirm → build/Confirm}/Confirm.d.ts +0 -0
  445. /package/{Confirm → build/Confirm}/Context.d.ts +0 -0
  446. /package/{Confirm → build/Confirm}/Context.js +0 -0
  447. /package/{Confirm → build/Confirm}/index.d.ts +0 -0
  448. /package/{Confirm → build/Confirm}/index.js +0 -0
  449. /package/{Confirm → build/Confirm}/package.json +0 -0
  450. /package/{Confirm → build/Confirm}/useConfirm.d.ts +0 -0
  451. /package/{Confirm → build/Confirm}/useConfirm.js +0 -0
  452. /package/{Container → build/Container}/Container.d.ts +0 -0
  453. /package/{Container → build/Container}/Container.js +0 -0
  454. /package/{Container → build/Container}/index.d.ts +0 -0
  455. /package/{Container → build/Container}/index.js +0 -0
  456. /package/{Container → build/Container}/package.json +0 -0
  457. /package/{CookieBanner → build/CookieBanner}/CookieBanner.d.ts +0 -0
  458. /package/{CookieBanner → build/CookieBanner}/index.d.ts +0 -0
  459. /package/{CookieBanner → build/CookieBanner}/index.js +0 -0
  460. /package/{CookieBanner → build/CookieBanner}/package.json +0 -0
  461. /package/{Countdown → build/Countdown}/Countdown.d.ts +0 -0
  462. /package/{Countdown → build/Countdown}/index.d.ts +0 -0
  463. /package/{Countdown → build/Countdown}/index.js +0 -0
  464. /package/{Countdown → build/Countdown}/package.json +0 -0
  465. /package/{DatePicker → build/DatePicker}/DatePicker.d.ts +0 -0
  466. /package/{DatePicker → build/DatePicker}/index.d.ts +0 -0
  467. /package/{DatePicker → build/DatePicker}/index.js +0 -0
  468. /package/{DatePicker → build/DatePicker}/package.json +0 -0
  469. /package/{DateRangePicker → build/DateRangePicker}/DateRangePicker.d.ts +0 -0
  470. /package/{DateRangePicker → build/DateRangePicker}/DateRangePicker.js +0 -0
  471. /package/{DateRangePicker → build/DateRangePicker}/index.d.ts +0 -0
  472. /package/{DateRangePicker → build/DateRangePicker}/index.js +0 -0
  473. /package/{DateRangePicker → build/DateRangePicker}/package.json +0 -0
  474. /package/{DateTimePicker → build/DateTimePicker}/DateTimePicker.d.ts +0 -0
  475. /package/{DateTimePicker → build/DateTimePicker}/index.d.ts +0 -0
  476. /package/{DateTimePicker → build/DateTimePicker}/index.js +0 -0
  477. /package/{DateTimePicker → build/DateTimePicker}/package.json +0 -0
  478. /package/{DateTimeRangePicker → build/DateTimeRangePicker}/DateTimeRangePicker.d.ts +0 -0
  479. /package/{DateTimeRangePicker → build/DateTimeRangePicker}/DateTimeRangePicker.js +0 -0
  480. /package/{DateTimeRangePicker → build/DateTimeRangePicker}/index.d.ts +0 -0
  481. /package/{DateTimeRangePicker → build/DateTimeRangePicker}/index.js +0 -0
  482. /package/{DateTimeRangePicker → build/DateTimeRangePicker}/package.json +0 -0
  483. /package/{Divider → build/Divider}/Divider.d.ts +0 -0
  484. /package/{Divider → build/Divider}/Divider.js +0 -0
  485. /package/{Divider → build/Divider}/index.d.ts +0 -0
  486. /package/{Divider → build/Divider}/index.js +0 -0
  487. /package/{Divider → build/Divider}/package.json +0 -0
  488. /package/{DonutChart → build/DonutChart}/DonutChart.d.ts +0 -0
  489. /package/{DonutChart → build/DonutChart}/DonutChart.js +0 -0
  490. /package/{DonutChart → build/DonutChart}/index.d.ts +0 -0
  491. /package/{DonutChart → build/DonutChart}/index.js +0 -0
  492. /package/{DonutChart → build/DonutChart}/package.json +0 -0
  493. /package/{DragAndDropList → build/DragAndDropList}/DragAndDropList.d.ts +0 -0
  494. /package/{DragAndDropList → build/DragAndDropList}/DragAndDropList.js +0 -0
  495. /package/{DragAndDropList → build/DragAndDropList}/index.d.ts +0 -0
  496. /package/{DragAndDropList → build/DragAndDropList}/index.js +0 -0
  497. /package/{DragAndDropList → build/DragAndDropList}/package.json +0 -0
  498. /package/{Drawing → build/Drawing}/Drawing.d.ts +0 -0
  499. /package/{Drawing → build/Drawing}/index.d.ts +0 -0
  500. /package/{Drawing → build/Drawing}/index.js +0 -0
  501. /package/{Drawing → build/Drawing}/package.json +0 -0
  502. /package/{DropZone → build/DropZone}/index.d.ts +0 -0
  503. /package/{DropZone → build/DropZone}/index.js +0 -0
  504. /package/{DropZone → build/DropZone}/package.json +0 -0
  505. /package/{Emojis → build/Emojis}/Emojis.d.ts +0 -0
  506. /package/{Emojis → build/Emojis}/emojis_list.d.ts +0 -0
  507. /package/{Emojis → build/Emojis}/emojis_list.js +0 -0
  508. /package/{Emojis → build/Emojis}/index.d.ts +0 -0
  509. /package/{Emojis → build/Emojis}/index.js +0 -0
  510. /package/{Emojis → build/Emojis}/package.json +0 -0
  511. /package/{Expand → build/Expand}/Expand.d.ts +0 -0
  512. /package/{Expand → build/Expand}/Expand.js +0 -0
  513. /package/{Expand → build/Expand}/index.d.ts +0 -0
  514. /package/{Expand → build/Expand}/index.js +0 -0
  515. /package/{Expand → build/Expand}/package.json +0 -0
  516. /package/{Fab → build/Fab}/Fab.d.ts +0 -0
  517. /package/{Fab → build/Fab}/Fab.js +0 -0
  518. /package/{Fab → build/Fab}/index.d.ts +0 -0
  519. /package/{Fab → build/Fab}/index.js +0 -0
  520. /package/{Fab → build/Fab}/package.json +0 -0
  521. /package/{Fade → build/Fade}/Fade.d.ts +0 -0
  522. /package/{Fade → build/Fade}/Fade.js +0 -0
  523. /package/{Fade → build/Fade}/index.d.ts +0 -0
  524. /package/{Fade → build/Fade}/index.js +0 -0
  525. /package/{Fade → build/Fade}/package.json +0 -0
  526. /package/{FileChoose → build/FileChoose}/FileChoose.d.ts +0 -0
  527. /package/{FileChoose → build/FileChoose}/FileChoose.js +0 -0
  528. /package/{FileChoose → build/FileChoose}/index.d.ts +0 -0
  529. /package/{FileChoose → build/FileChoose}/index.js +0 -0
  530. /package/{FileChoose → build/FileChoose}/package.json +0 -0
  531. /package/{Focus → build/Focus}/Focus.d.ts +0 -0
  532. /package/{Focus → build/Focus}/Focus.js +0 -0
  533. /package/{Focus → build/Focus}/index.d.ts +0 -0
  534. /package/{Focus → build/Focus}/index.js +0 -0
  535. /package/{Focus → build/Focus}/package.json +0 -0
  536. /package/{Form → build/Form}/Form.d.ts +0 -0
  537. /package/{Form → build/Form}/Form.js +0 -0
  538. /package/{Form → build/Form}/index.d.ts +0 -0
  539. /package/{Form → build/Form}/index.js +0 -0
  540. /package/{Form → build/Form}/package.json +0 -0
  541. /package/{FormRow → build/FormRow}/FormRow.d.ts +0 -0
  542. /package/{FormRow → build/FormRow}/FormRow.js +0 -0
  543. /package/{FormRow → build/FormRow}/index.d.ts +0 -0
  544. /package/{FormRow → build/FormRow}/index.js +0 -0
  545. /package/{FormRow → build/FormRow}/package.json +0 -0
  546. /package/{Forms → build/Forms}/Forms.d.ts +0 -0
  547. /package/{Forms → build/Forms}/Forms.js +0 -0
  548. /package/{Forms → build/Forms}/index.d.ts +0 -0
  549. /package/{Forms → build/Forms}/index.js +0 -0
  550. /package/{Forms → build/Forms}/package.json +0 -0
  551. /package/{Frame → build/Frame}/Frame.d.ts +0 -0
  552. /package/{Frame → build/Frame}/index.d.ts +0 -0
  553. /package/{Frame → build/Frame}/index.js +0 -0
  554. /package/{Frame → build/Frame}/package.json +0 -0
  555. /package/{Grid → build/Grid}/Grid.d.ts +0 -0
  556. /package/{Grid → build/Grid}/Grid.js +0 -0
  557. /package/{Grid → build/Grid}/index.d.ts +0 -0
  558. /package/{Grid → build/Grid}/index.js +0 -0
  559. /package/{Grid → build/Grid}/package.json +0 -0
  560. /package/{Grow → build/Grow}/Grow.d.ts +0 -0
  561. /package/{Grow → build/Grow}/Grow.js +0 -0
  562. /package/{Grow → build/Grow}/index.d.ts +0 -0
  563. /package/{Grow → build/Grow}/index.js +0 -0
  564. /package/{Grow → build/Grow}/package.json +0 -0
  565. /package/{HTMLCanvas → build/HTMLCanvas}/HTMLCanvas.d.ts +0 -0
  566. /package/{HTMLCanvas → build/HTMLCanvas}/HTMLCanvas.js +0 -0
  567. /package/{HTMLCanvas → build/HTMLCanvas}/index.d.ts +0 -0
  568. /package/{HTMLCanvas → build/HTMLCanvas}/index.js +0 -0
  569. /package/{HTMLCanvas → build/HTMLCanvas}/package.json +0 -0
  570. /package/{IFrame → build/IFrame}/IFrame.d.ts +0 -0
  571. /package/{IFrame → build/IFrame}/IFrame.js +0 -0
  572. /package/{IFrame → build/IFrame}/index.d.ts +0 -0
  573. /package/{IFrame → build/IFrame}/index.js +0 -0
  574. /package/{IFrame → build/IFrame}/package.json +0 -0
  575. /package/{Icon → build/Icon}/Icon.d.ts +0 -0
  576. /package/{Icon → build/Icon}/Icon.js +0 -0
  577. /package/{Icon → build/Icon}/index.d.ts +0 -0
  578. /package/{Icon → build/Icon}/index.js +0 -0
  579. /package/{Icon → build/Icon}/package.json +0 -0
  580. /package/{IconButton → build/IconButton}/IconButton.d.ts +0 -0
  581. /package/{IconButton → build/IconButton}/IconButton.js +0 -0
  582. /package/{IconButton → build/IconButton}/index.d.ts +0 -0
  583. /package/{IconButton → build/IconButton}/index.js +0 -0
  584. /package/{IconButton → build/IconButton}/package.json +0 -0
  585. /package/{Image → build/Image}/Image.d.ts +0 -0
  586. /package/{Image → build/Image}/Image.js +0 -0
  587. /package/{Image → build/Image}/index.d.ts +0 -0
  588. /package/{Image → build/Image}/index.js +0 -0
  589. /package/{Image → build/Image}/package.json +0 -0
  590. /package/{ImageCrop → build/ImageCrop}/ImageCrop.d.ts +0 -0
  591. /package/{ImageCrop → build/ImageCrop}/ImageCrop.js +0 -0
  592. /package/{ImageCrop → build/ImageCrop}/index.d.ts +0 -0
  593. /package/{ImageCrop → build/ImageCrop}/index.js +0 -0
  594. /package/{ImageCrop → build/ImageCrop}/package.json +0 -0
  595. /package/{ImageEdit → build/ImageEdit}/ImageEdit.d.ts +0 -0
  596. /package/{ImageEdit → build/ImageEdit}/index.d.ts +0 -0
  597. /package/{ImageEdit → build/ImageEdit}/index.js +0 -0
  598. /package/{ImageEdit → build/ImageEdit}/package.json +0 -0
  599. /package/{ImageGallery → build/ImageGallery}/ImageGallery.d.ts +0 -0
  600. /package/{ImageGallery → build/ImageGallery}/ImageGallery.js +0 -0
  601. /package/{ImageGallery → build/ImageGallery}/index.d.ts +0 -0
  602. /package/{ImageGallery → build/ImageGallery}/index.js +0 -0
  603. /package/{ImageGallery → build/ImageGallery}/package.json +0 -0
  604. /package/{ImageList → build/ImageList}/ImageList.d.ts +0 -0
  605. /package/{ImageList → build/ImageList}/ImageList.js +0 -0
  606. /package/{ImageList → build/ImageList}/index.d.ts +0 -0
  607. /package/{ImageList → build/ImageList}/index.js +0 -0
  608. /package/{ImageList → build/ImageList}/package.json +0 -0
  609. /package/{ImageListItem → build/ImageListItem}/ImageListItem.d.ts +0 -0
  610. /package/{ImageListItem → build/ImageListItem}/ImageListItem.js +0 -0
  611. /package/{ImageListItem → build/ImageListItem}/index.d.ts +0 -0
  612. /package/{ImageListItem → build/ImageListItem}/index.js +0 -0
  613. /package/{ImageListItem → build/ImageListItem}/package.json +0 -0
  614. /package/{ImageListItemBox → build/ImageListItemBox}/ImageListItemBox.d.ts +0 -0
  615. /package/{ImageListItemBox → build/ImageListItemBox}/ImageListItemBox.js +0 -0
  616. /package/{ImageListItemBox → build/ImageListItemBox}/index.d.ts +0 -0
  617. /package/{ImageListItemBox → build/ImageListItemBox}/index.js +0 -0
  618. /package/{ImageListItemBox → build/ImageListItemBox}/package.json +0 -0
  619. /package/{Info → build/Info}/Info.d.ts +0 -0
  620. /package/{Info → build/Info}/index.d.ts +0 -0
  621. /package/{Info → build/Info}/index.js +0 -0
  622. /package/{Info → build/Info}/package.json +0 -0
  623. /package/{Interaction → build/Interaction}/Interaction.d.ts +0 -0
  624. /package/{Interaction → build/Interaction}/Interaction.js +0 -0
  625. /package/{Interaction → build/Interaction}/index.d.ts +0 -0
  626. /package/{Interaction → build/Interaction}/index.js +0 -0
  627. /package/{Interaction → build/Interaction}/package.json +0 -0
  628. /package/{Keyframes → build/Keyframes}/Context.d.ts +0 -0
  629. /package/{Keyframes → build/Keyframes}/Context.js +0 -0
  630. /package/{Keyframes → build/Keyframes}/Keyframes.d.ts +0 -0
  631. /package/{Keyframes → build/Keyframes}/Keyframes.js +0 -0
  632. /package/{Keyframes → build/Keyframes}/index.d.ts +0 -0
  633. /package/{Keyframes → build/Keyframes}/index.js +0 -0
  634. /package/{Keyframes → build/Keyframes}/package.json +0 -0
  635. /package/{Keyframes → build/Keyframes}/useKeyframes.d.ts +0 -0
  636. /package/{Keyframes → build/Keyframes}/useKeyframes.js +0 -0
  637. /package/{LICENSE → build/LICENSE} +0 -0
  638. /package/{Label → build/Label}/Label.d.ts +0 -0
  639. /package/{Label → build/Label}/Label.js +0 -0
  640. /package/{Label → build/Label}/index.d.ts +0 -0
  641. /package/{Label → build/Label}/index.js +0 -0
  642. /package/{Label → build/Label}/package.json +0 -0
  643. /package/{Labels → build/Labels}/Labels.d.ts +0 -0
  644. /package/{Labels → build/Labels}/Labels.js +0 -0
  645. /package/{Labels → build/Labels}/index.d.ts +0 -0
  646. /package/{Labels → build/Labels}/index.js +0 -0
  647. /package/{Labels → build/Labels}/package.json +0 -0
  648. /package/{Line → build/Line}/Line.d.ts +0 -0
  649. /package/{Line → build/Line}/Line.js +0 -0
  650. /package/{Line → build/Line}/index.d.ts +0 -0
  651. /package/{Line → build/Line}/index.js +0 -0
  652. /package/{Line → build/Line}/package.json +0 -0
  653. /package/{LineChart → build/LineChart}/LineChart.d.ts +0 -0
  654. /package/{LineChart → build/LineChart}/LineChart.js +0 -0
  655. /package/{LineChart → build/LineChart}/index.d.ts +0 -0
  656. /package/{LineChart → build/LineChart}/index.js +0 -0
  657. /package/{LineChart → build/LineChart}/package.json +0 -0
  658. /package/{LineChartItem → build/LineChartItem}/LineChartItem.d.ts +0 -0
  659. /package/{LineChartItem → build/LineChartItem}/LineChartItem.js +0 -0
  660. /package/{LineChartItem → build/LineChartItem}/index.d.ts +0 -0
  661. /package/{LineChartItem → build/LineChartItem}/index.js +0 -0
  662. /package/{LineChartItem → build/LineChartItem}/package.json +0 -0
  663. /package/{LinearMeter → build/LinearMeter}/LinearMeter.d.ts +0 -0
  664. /package/{LinearMeter → build/LinearMeter}/LinearMeter.js +0 -0
  665. /package/{LinearMeter → build/LinearMeter}/index.d.ts +0 -0
  666. /package/{LinearMeter → build/LinearMeter}/index.js +0 -0
  667. /package/{LinearMeter → build/LinearMeter}/package.json +0 -0
  668. /package/{LinearProgress → build/LinearProgress}/LinearProgress.d.ts +0 -0
  669. /package/{LinearProgress → build/LinearProgress}/LinearProgress.js +0 -0
  670. /package/{LinearProgress → build/LinearProgress}/index.d.ts +0 -0
  671. /package/{LinearProgress → build/LinearProgress}/index.js +0 -0
  672. /package/{LinearProgress → build/LinearProgress}/package.json +0 -0
  673. /package/{Link → build/Link}/Link.d.ts +0 -0
  674. /package/{Link → build/Link}/Link.js +0 -0
  675. /package/{Link → build/Link}/index.d.ts +0 -0
  676. /package/{Link → build/Link}/index.js +0 -0
  677. /package/{Link → build/Link}/package.json +0 -0
  678. /package/{Links → build/Links}/index.d.ts +0 -0
  679. /package/{Links → build/Links}/index.js +0 -0
  680. /package/{Links → build/Links}/package.json +0 -0
  681. /package/{List → build/List}/List.d.ts +0 -0
  682. /package/{List → build/List}/List.js +0 -0
  683. /package/{List → build/List}/index.d.ts +0 -0
  684. /package/{List → build/List}/index.js +0 -0
  685. /package/{List → build/List}/package.json +0 -0
  686. /package/{ListItem → build/ListItem}/ListItem.d.ts +0 -0
  687. /package/{ListItem → build/ListItem}/ListItem.js +0 -0
  688. /package/{ListItem → build/ListItem}/index.d.ts +0 -0
  689. /package/{ListItem → build/ListItem}/index.js +0 -0
  690. /package/{ListItem → build/ListItem}/package.json +0 -0
  691. /package/{ListSubheader → build/ListSubheader}/ListSubheader.d.ts +0 -0
  692. /package/{ListSubheader → build/ListSubheader}/ListSubheader.js +0 -0
  693. /package/{ListSubheader → build/ListSubheader}/index.d.ts +0 -0
  694. /package/{ListSubheader → build/ListSubheader}/index.js +0 -0
  695. /package/{ListSubheader → build/ListSubheader}/package.json +0 -0
  696. /package/{MainProgress → build/MainProgress}/Context.d.ts +0 -0
  697. /package/{MainProgress → build/MainProgress}/Context.js +0 -0
  698. /package/{MainProgress → build/MainProgress}/MainProgress.d.ts +0 -0
  699. /package/{MainProgress → build/MainProgress}/MainProgress.js +0 -0
  700. /package/{MainProgress → build/MainProgress}/index.d.ts +0 -0
  701. /package/{MainProgress → build/MainProgress}/index.js +0 -0
  702. /package/{MainProgress → build/MainProgress}/package.json +0 -0
  703. /package/{MainProgress → build/MainProgress}/useMainProgress.d.ts +0 -0
  704. /package/{MainProgress → build/MainProgress}/useMainProgress.js +0 -0
  705. /package/{Markdown → build/Markdown}/Markdown.d.ts +0 -0
  706. /package/{Markdown → build/Markdown}/Markdown.js +0 -0
  707. /package/{Markdown → build/Markdown}/index.d.ts +0 -0
  708. /package/{Markdown → build/Markdown}/index.js +0 -0
  709. /package/{Markdown → build/Markdown}/package.json +0 -0
  710. /package/{Masonry → build/Masonry}/Masonry.d.ts +0 -0
  711. /package/{Masonry → build/Masonry}/Masonry.js +0 -0
  712. /package/{Masonry → build/Masonry}/index.d.ts +0 -0
  713. /package/{Masonry → build/Masonry}/index.js +0 -0
  714. /package/{Masonry → build/Masonry}/package.json +0 -0
  715. /package/{Medias → build/Medias}/Medias.d.ts +0 -0
  716. /package/{Medias → build/Medias}/index.d.ts +0 -0
  717. /package/{Medias → build/Medias}/index.js +0 -0
  718. /package/{Medias → build/Medias}/package.json +0 -0
  719. /package/{Menu → build/Menu}/Menu.d.ts +0 -0
  720. /package/{Menu → build/Menu}/Menu.js +0 -0
  721. /package/{Menu → build/Menu}/index.d.ts +0 -0
  722. /package/{Menu → build/Menu}/index.js +0 -0
  723. /package/{Menu → build/Menu}/package.json +0 -0
  724. /package/{MenuDesktop → build/MenuDesktop}/MenuDesktop.d.ts +0 -0
  725. /package/{MenuDesktop → build/MenuDesktop}/index.d.ts +0 -0
  726. /package/{MenuDesktop → build/MenuDesktop}/index.js +0 -0
  727. /package/{MenuDesktop → build/MenuDesktop}/package.json +0 -0
  728. /package/{MenuItem → build/MenuItem}/MenuItem.d.ts +0 -0
  729. /package/{MenuItem → build/MenuItem}/MenuItem.js +0 -0
  730. /package/{MenuItem → build/MenuItem}/index.d.ts +0 -0
  731. /package/{MenuItem → build/MenuItem}/index.js +0 -0
  732. /package/{MenuItem → build/MenuItem}/package.json +0 -0
  733. /package/{Meta → build/Meta}/Meta.d.ts +0 -0
  734. /package/{Meta → build/Meta}/Meta.js +0 -0
  735. /package/{Meta → build/Meta}/index.d.ts +0 -0
  736. /package/{Meta → build/Meta}/index.js +0 -0
  737. /package/{Meta → build/Meta}/package.json +0 -0
  738. /package/{Modal → build/Modal}/Modal.d.ts +0 -0
  739. /package/{Modal → build/Modal}/Modal.js +0 -0
  740. /package/{Modal → build/Modal}/index.d.ts +0 -0
  741. /package/{Modal → build/Modal}/index.js +0 -0
  742. /package/{Modal → build/Modal}/package.json +0 -0
  743. /package/{ModalFooter → build/ModalFooter}/ModalFooter.d.ts +0 -0
  744. /package/{ModalFooter → build/ModalFooter}/ModalFooter.js +0 -0
  745. /package/{ModalFooter → build/ModalFooter}/index.d.ts +0 -0
  746. /package/{ModalFooter → build/ModalFooter}/index.js +0 -0
  747. /package/{ModalFooter → build/ModalFooter}/package.json +0 -0
  748. /package/{ModalHeader → build/ModalHeader}/ModalHeader.d.ts +0 -0
  749. /package/{ModalHeader → build/ModalHeader}/ModalHeader.js +0 -0
  750. /package/{ModalHeader → build/ModalHeader}/index.d.ts +0 -0
  751. /package/{ModalHeader → build/ModalHeader}/index.js +0 -0
  752. /package/{ModalHeader → build/ModalHeader}/package.json +0 -0
  753. /package/{ModalIcon → build/ModalIcon}/ModalIcon.d.ts +0 -0
  754. /package/{ModalIcon → build/ModalIcon}/ModalIcon.js +0 -0
  755. /package/{ModalIcon → build/ModalIcon}/index.d.ts +0 -0
  756. /package/{ModalIcon → build/ModalIcon}/index.js +0 -0
  757. /package/{ModalIcon → build/ModalIcon}/package.json +0 -0
  758. /package/{ModalMain → build/ModalMain}/ModalMain.d.ts +0 -0
  759. /package/{ModalMain → build/ModalMain}/ModalMain.js +0 -0
  760. /package/{ModalMain → build/ModalMain}/index.d.ts +0 -0
  761. /package/{ModalMain → build/ModalMain}/index.js +0 -0
  762. /package/{ModalMain → build/ModalMain}/package.json +0 -0
  763. /package/{ModalText → build/ModalText}/ModalText.d.ts +0 -0
  764. /package/{ModalText → build/ModalText}/ModalText.js +0 -0
  765. /package/{ModalText → build/ModalText}/index.d.ts +0 -0
  766. /package/{ModalText → build/ModalText}/index.js +0 -0
  767. /package/{ModalText → build/ModalText}/package.json +0 -0
  768. /package/{ModalTitle → build/ModalTitle}/ModalTitle.d.ts +0 -0
  769. /package/{ModalTitle → build/ModalTitle}/ModalTitle.js +0 -0
  770. /package/{ModalTitle → build/ModalTitle}/index.d.ts +0 -0
  771. /package/{ModalTitle → build/ModalTitle}/index.js +0 -0
  772. /package/{ModalTitle → build/ModalTitle}/package.json +0 -0
  773. /package/{MoreOptions → build/MoreOptions}/MoreOptions.d.ts +0 -0
  774. /package/{MoreOptions → build/MoreOptions}/MoreOptions.js +0 -0
  775. /package/{MoreOptions → build/MoreOptions}/index.d.ts +0 -0
  776. /package/{MoreOptions → build/MoreOptions}/index.js +0 -0
  777. /package/{MoreOptions → build/MoreOptions}/package.json +0 -0
  778. /package/{Move → build/Move}/Move.d.ts +0 -0
  779. /package/{Move → build/Move}/Move.js +0 -0
  780. /package/{Move → build/Move}/index.d.ts +0 -0
  781. /package/{Move → build/Move}/index.js +0 -0
  782. /package/{Move → build/Move}/package.json +0 -0
  783. /package/{NavigationBar → build/NavigationBar}/NavigationBar.d.ts +0 -0
  784. /package/{NavigationBar → build/NavigationBar}/NavigationBar.js +0 -0
  785. /package/{NavigationBar → build/NavigationBar}/index.d.ts +0 -0
  786. /package/{NavigationBar → build/NavigationBar}/index.js +0 -0
  787. /package/{NavigationBar → build/NavigationBar}/package.json +0 -0
  788. /package/{NavigationDrawer → build/NavigationDrawer}/NavigationDrawer.d.ts +0 -0
  789. /package/{NavigationDrawer → build/NavigationDrawer}/NavigationDrawer.js +0 -0
  790. /package/{NavigationDrawer → build/NavigationDrawer}/index.d.ts +0 -0
  791. /package/{NavigationDrawer → build/NavigationDrawer}/index.js +0 -0
  792. /package/{NavigationDrawer → build/NavigationDrawer}/package.json +0 -0
  793. /package/{NavigationItem → build/NavigationItem}/NavigationItem.d.ts +0 -0
  794. /package/{NavigationItem → build/NavigationItem}/index.d.ts +0 -0
  795. /package/{NavigationItem → build/NavigationItem}/index.js +0 -0
  796. /package/{NavigationItem → build/NavigationItem}/package.json +0 -0
  797. /package/{NavigationRail → build/NavigationRail}/NavigationRail.d.ts +0 -0
  798. /package/{NavigationRail → build/NavigationRail}/NavigationRail.js +0 -0
  799. /package/{NavigationRail → build/NavigationRail}/index.d.ts +0 -0
  800. /package/{NavigationRail → build/NavigationRail}/index.js +0 -0
  801. /package/{NavigationRail → build/NavigationRail}/package.json +0 -0
  802. /package/{NotFound → build/NotFound}/index.d.ts +0 -0
  803. /package/{NotFound → build/NotFound}/index.js +0 -0
  804. /package/{NotFound → build/NotFound}/package.json +0 -0
  805. /package/{NumericTextField → build/NumericTextField}/NumericTextField.d.ts +0 -0
  806. /package/{NumericTextField → build/NumericTextField}/NumericTextField.js +0 -0
  807. /package/{NumericTextField → build/NumericTextField}/index.d.ts +0 -0
  808. /package/{NumericTextField → build/NumericTextField}/index.js +0 -0
  809. /package/{NumericTextField → build/NumericTextField}/package.json +0 -0
  810. /package/{Page → build/Page}/Page.d.ts +0 -0
  811. /package/{Page → build/Page}/index.d.ts +0 -0
  812. /package/{Page → build/Page}/index.js +0 -0
  813. /package/{Page → build/Page}/package.json +0 -0
  814. /package/{PageTransition → build/PageTransition}/PageTransition.d.ts +0 -0
  815. /package/{PageTransition → build/PageTransition}/PageTransition.js +0 -0
  816. /package/{PageTransition → build/PageTransition}/index.d.ts +0 -0
  817. /package/{PageTransition → build/PageTransition}/index.js +0 -0
  818. /package/{PageTransition → build/PageTransition}/package.json +0 -0
  819. /package/{Pagination → build/Pagination}/Pagination.d.ts +0 -0
  820. /package/{Pagination → build/Pagination}/Pagination.js +0 -0
  821. /package/{Pagination → build/Pagination}/index.d.ts +0 -0
  822. /package/{Pagination → build/Pagination}/index.js +0 -0
  823. /package/{Pagination → build/Pagination}/package.json +0 -0
  824. /package/{PaginationItem → build/PaginationItem}/PaginationItem.d.ts +0 -0
  825. /package/{PaginationItem → build/PaginationItem}/PaginationItem.js +0 -0
  826. /package/{PaginationItem → build/PaginationItem}/index.d.ts +0 -0
  827. /package/{PaginationItem → build/PaginationItem}/index.js +0 -0
  828. /package/{PaginationItem → build/PaginationItem}/package.json +0 -0
  829. /package/{Parallax → build/Parallax}/Parallax.d.ts +0 -0
  830. /package/{Parallax → build/Parallax}/Parallax.js +0 -0
  831. /package/{Parallax → build/Parallax}/index.d.ts +0 -0
  832. /package/{Parallax → build/Parallax}/index.js +0 -0
  833. /package/{Parallax → build/Parallax}/package.json +0 -0
  834. /package/{Path → build/Path}/Path.d.ts +0 -0
  835. /package/{Path → build/Path}/Path.js +0 -0
  836. /package/{Path → build/Path}/index.d.ts +0 -0
  837. /package/{Path → build/Path}/index.js +0 -0
  838. /package/{Path → build/Path}/package.json +0 -0
  839. /package/{PieChart → build/PieChart}/PieChart.d.ts +0 -0
  840. /package/{PieChart → build/PieChart}/index.d.ts +0 -0
  841. /package/{PieChart → build/PieChart}/index.js +0 -0
  842. /package/{PieChart → build/PieChart}/package.json +0 -0
  843. /package/{Placeholder → build/Placeholder}/Placeholder.d.ts +0 -0
  844. /package/{Placeholder → build/Placeholder}/Placeholder.js +0 -0
  845. /package/{Placeholder → build/Placeholder}/index.d.ts +0 -0
  846. /package/{Placeholder → build/Placeholder}/index.js +0 -0
  847. /package/{Placeholder → build/Placeholder}/package.json +0 -0
  848. /package/{Portal → build/Portal}/Portal.d.ts +0 -0
  849. /package/{Portal → build/Portal}/Portal.js +0 -0
  850. /package/{Portal → build/Portal}/index.d.ts +0 -0
  851. /package/{Portal → build/Portal}/index.js +0 -0
  852. /package/{Portal → build/Portal}/package.json +0 -0
  853. /package/{Properties → build/Properties}/Properties.d.ts +0 -0
  854. /package/{Properties → build/Properties}/Properties.js +0 -0
  855. /package/{Properties → build/Properties}/index.d.ts +0 -0
  856. /package/{Properties → build/Properties}/index.js +0 -0
  857. /package/{Properties → build/Properties}/package.json +0 -0
  858. /package/{Property → build/Property}/Property.d.ts +0 -0
  859. /package/{Property → build/Property}/Property.js +0 -0
  860. /package/{Property → build/Property}/index.d.ts +0 -0
  861. /package/{Property → build/Property}/index.js +0 -0
  862. /package/{Property → build/Property}/package.json +0 -0
  863. /package/{Radio → build/Radio}/Radio.d.ts +0 -0
  864. /package/{Radio → build/Radio}/Radio.js +0 -0
  865. /package/{Radio → build/Radio}/index.d.ts +0 -0
  866. /package/{Radio → build/Radio}/index.js +0 -0
  867. /package/{Radio → build/Radio}/package.json +0 -0
  868. /package/{Radios → build/Radios}/Radios.d.ts +0 -0
  869. /package/{Radios → build/Radios}/Radios.js +0 -0
  870. /package/{Radios → build/Radios}/index.d.ts +0 -0
  871. /package/{Radios → build/Radios}/index.js +0 -0
  872. /package/{Radios → build/Radios}/package.json +0 -0
  873. /package/{Rating → build/Rating}/Rating.d.ts +0 -0
  874. /package/{Rating → build/Rating}/Rating.js +0 -0
  875. /package/{Rating → build/Rating}/index.d.ts +0 -0
  876. /package/{Rating → build/Rating}/index.js +0 -0
  877. /package/{Rating → build/Rating}/package.json +0 -0
  878. /package/{Reset → build/Reset}/Reset.d.ts +0 -0
  879. /package/{Reset → build/Reset}/Reset.js +0 -0
  880. /package/{Reset → build/Reset}/index.d.ts +0 -0
  881. /package/{Reset → build/Reset}/index.js +0 -0
  882. /package/{Reset → build/Reset}/package.json +0 -0
  883. /package/{Reveal → build/Reveal}/Reveal.d.ts +0 -0
  884. /package/{Reveal → build/Reveal}/Reveal.js +0 -0
  885. /package/{Reveal → build/Reveal}/index.d.ts +0 -0
  886. /package/{Reveal → build/Reveal}/index.js +0 -0
  887. /package/{Reveal → build/Reveal}/package.json +0 -0
  888. /package/{RichTextEditor → build/RichTextEditor}/RichTextEditor.d.ts +0 -0
  889. /package/{RichTextEditor → build/RichTextEditor}/index.d.ts +0 -0
  890. /package/{RichTextEditor → build/RichTextEditor}/index.js +0 -0
  891. /package/{RichTextEditor → build/RichTextEditor}/package.json +0 -0
  892. /package/{RoundMeter → build/RoundMeter}/RoundMeter.d.ts +0 -0
  893. /package/{RoundMeter → build/RoundMeter}/RoundMeter.js +0 -0
  894. /package/{RoundMeter → build/RoundMeter}/index.d.ts +0 -0
  895. /package/{RoundMeter → build/RoundMeter}/index.js +0 -0
  896. /package/{RoundMeter → build/RoundMeter}/package.json +0 -0
  897. /package/{RoundProgress → build/RoundProgress}/RoundProgress.d.ts +0 -0
  898. /package/{RoundProgress → build/RoundProgress}/RoundProgress.js +0 -0
  899. /package/{RoundProgress → build/RoundProgress}/index.d.ts +0 -0
  900. /package/{RoundProgress → build/RoundProgress}/index.js +0 -0
  901. /package/{RoundProgress → build/RoundProgress}/package.json +0 -0
  902. /package/{ScatterChart → build/ScatterChart}/ScatterChart.d.ts +0 -0
  903. /package/{ScatterChart → build/ScatterChart}/ScatterChart.js +0 -0
  904. /package/{ScatterChart → build/ScatterChart}/index.d.ts +0 -0
  905. /package/{ScatterChart → build/ScatterChart}/index.js +0 -0
  906. /package/{ScatterChart → build/ScatterChart}/package.json +0 -0
  907. /package/{ScatterChartItem → build/ScatterChartItem}/ScatterChartItem.d.ts +0 -0
  908. /package/{ScatterChartItem → build/ScatterChartItem}/ScatterChartItem.js +0 -0
  909. /package/{ScatterChartItem → build/ScatterChartItem}/index.d.ts +0 -0
  910. /package/{ScatterChartItem → build/ScatterChartItem}/index.js +0 -0
  911. /package/{ScatterChartItem → build/ScatterChartItem}/package.json +0 -0
  912. /package/{ScreenCapture → build/ScreenCapture}/ScreenCapture.d.ts +0 -0
  913. /package/{ScreenCapture → build/ScreenCapture}/index.d.ts +0 -0
  914. /package/{ScreenCapture → build/ScreenCapture}/index.js +0 -0
  915. /package/{ScreenCapture → build/ScreenCapture}/package.json +0 -0
  916. /package/{Section → build/Section}/Section.d.ts +0 -0
  917. /package/{Section → build/Section}/Section.js +0 -0
  918. /package/{Section → build/Section}/index.d.ts +0 -0
  919. /package/{Section → build/Section}/index.js +0 -0
  920. /package/{Section → build/Section}/package.json +0 -0
  921. /package/{SectionAction → build/SectionAction}/SectionAction.d.ts +0 -0
  922. /package/{SectionAction → build/SectionAction}/index.d.ts +0 -0
  923. /package/{SectionAction → build/SectionAction}/index.js +0 -0
  924. /package/{SectionAction → build/SectionAction}/package.json +0 -0
  925. /package/{SectionBoxes → build/SectionBoxes}/SectionBoxes.d.ts +0 -0
  926. /package/{SectionBoxes → build/SectionBoxes}/index.d.ts +0 -0
  927. /package/{SectionBoxes → build/SectionBoxes}/index.js +0 -0
  928. /package/{SectionBoxes → build/SectionBoxes}/package.json +0 -0
  929. /package/{SectionCards → build/SectionCards}/SectionCards.d.ts +0 -0
  930. /package/{SectionCards → build/SectionCards}/index.d.ts +0 -0
  931. /package/{SectionCards → build/SectionCards}/index.js +0 -0
  932. /package/{SectionCards → build/SectionCards}/package.json +0 -0
  933. /package/{SectionCarousel → build/SectionCarousel}/SectionCarousel.d.ts +0 -0
  934. /package/{SectionCarousel → build/SectionCarousel}/index.d.ts +0 -0
  935. /package/{SectionCarousel → build/SectionCarousel}/index.js +0 -0
  936. /package/{SectionCarousel → build/SectionCarousel}/package.json +0 -0
  937. /package/{SectionContact → build/SectionContact}/SectionContact.d.ts +0 -0
  938. /package/{SectionContact → build/SectionContact}/SectionContact.js +0 -0
  939. /package/{SectionContact → build/SectionContact}/index.d.ts +0 -0
  940. /package/{SectionContact → build/SectionContact}/index.js +0 -0
  941. /package/{SectionContact → build/SectionContact}/package.json +0 -0
  942. /package/{SectionImageGallery → build/SectionImageGallery}/SectionImageGallery.d.ts +0 -0
  943. /package/{SectionImageGallery → build/SectionImageGallery}/SectionImageGallery.js +0 -0
  944. /package/{SectionImageGallery → build/SectionImageGallery}/index.d.ts +0 -0
  945. /package/{SectionImageGallery → build/SectionImageGallery}/index.js +0 -0
  946. /package/{SectionImageGallery → build/SectionImageGallery}/package.json +0 -0
  947. /package/{SectionLogos → build/SectionLogos}/SectionLogos.d.ts +0 -0
  948. /package/{SectionLogos → build/SectionLogos}/SectionLogos.js +0 -0
  949. /package/{SectionLogos → build/SectionLogos}/index.d.ts +0 -0
  950. /package/{SectionLogos → build/SectionLogos}/index.js +0 -0
  951. /package/{SectionLogos → build/SectionLogos}/package.json +0 -0
  952. /package/{SectionMedia → build/SectionMedia}/SectionMedia.d.ts +0 -0
  953. /package/{SectionMedia → build/SectionMedia}/index.d.ts +0 -0
  954. /package/{SectionMedia → build/SectionMedia}/index.js +0 -0
  955. /package/{SectionMedia → build/SectionMedia}/package.json +0 -0
  956. /package/{SectionReviews → build/SectionReviews}/SectionReviews.d.ts +0 -0
  957. /package/{SectionReviews → build/SectionReviews}/SectionReviews.js +0 -0
  958. /package/{SectionReviews → build/SectionReviews}/index.d.ts +0 -0
  959. /package/{SectionReviews → build/SectionReviews}/index.js +0 -0
  960. /package/{SectionReviews → build/SectionReviews}/package.json +0 -0
  961. /package/{SectionTextMedia → build/SectionTextMedia}/SectionTextMedia.d.ts +0 -0
  962. /package/{SectionTextMedia → build/SectionTextMedia}/index.d.ts +0 -0
  963. /package/{SectionTextMedia → build/SectionTextMedia}/index.js +0 -0
  964. /package/{SectionTextMedia → build/SectionTextMedia}/package.json +0 -0
  965. /package/{SectionTimeline → build/SectionTimeline}/SectionTimeline.d.ts +0 -0
  966. /package/{SectionTimeline → build/SectionTimeline}/SectionTimeline.js +0 -0
  967. /package/{SectionTimeline → build/SectionTimeline}/index.d.ts +0 -0
  968. /package/{SectionTimeline → build/SectionTimeline}/index.js +0 -0
  969. /package/{SectionTimeline → build/SectionTimeline}/package.json +0 -0
  970. /package/{SectionWatch → build/SectionWatch}/SectionWatch.d.ts +0 -0
  971. /package/{SectionWatch → build/SectionWatch}/SectionWatch.js +0 -0
  972. /package/{SectionWatch → build/SectionWatch}/index.d.ts +0 -0
  973. /package/{SectionWatch → build/SectionWatch}/index.js +0 -0
  974. /package/{SectionWatch → build/SectionWatch}/package.json +0 -0
  975. /package/{Select → build/Select}/Select.d.ts +0 -0
  976. /package/{Select → build/Select}/index.d.ts +0 -0
  977. /package/{Select → build/Select}/index.js +0 -0
  978. /package/{Select → build/Select}/package.json +0 -0
  979. /package/{Share → build/Share}/Share.d.ts +0 -0
  980. /package/{Share → build/Share}/index.d.ts +0 -0
  981. /package/{Share → build/Share}/index.js +0 -0
  982. /package/{Share → build/Share}/package.json +0 -0
  983. /package/{Slide → build/Slide}/Slide.d.ts +0 -0
  984. /package/{Slide → build/Slide}/Slide.js +0 -0
  985. /package/{Slide → build/Slide}/index.d.ts +0 -0
  986. /package/{Slide → build/Slide}/index.js +0 -0
  987. /package/{Slide → build/Slide}/package.json +0 -0
  988. /package/{Slider → build/Slider}/Slider.d.ts +0 -0
  989. /package/{Slider → build/Slider}/Slider.js +0 -0
  990. /package/{Slider → build/Slider}/index.d.ts +0 -0
  991. /package/{Slider → build/Slider}/index.js +0 -0
  992. /package/{Slider → build/Slider}/package.json +0 -0
  993. /package/{SmartTextField → build/SmartTextField}/SmartTextField.d.ts +0 -0
  994. /package/{SmartTextField → build/SmartTextField}/index.d.ts +0 -0
  995. /package/{SmartTextField → build/SmartTextField}/index.js +0 -0
  996. /package/{SmartTextField → build/SmartTextField}/package.json +0 -0
  997. /package/{Snackbar → build/Snackbar}/Snackbar.d.ts +0 -0
  998. /package/{Snackbar → build/Snackbar}/Snackbar.js +0 -0
  999. /package/{Snackbar → build/Snackbar}/index.d.ts +0 -0
  1000. /package/{Snackbar → build/Snackbar}/index.js +0 -0
  1001. /package/{Snackbar → build/Snackbar}/package.json +0 -0
  1002. /package/{Snackbars → build/Snackbars}/Context.d.ts +0 -0
  1003. /package/{Snackbars → build/Snackbars}/Context.js +0 -0
  1004. /package/{Snackbars → build/Snackbars}/Snackbars.d.ts +0 -0
  1005. /package/{Snackbars → build/Snackbars}/Snackbars.js +0 -0
  1006. /package/{Snackbars → build/Snackbars}/index.d.ts +0 -0
  1007. /package/{Snackbars → build/Snackbars}/index.js +0 -0
  1008. /package/{Snackbars → build/Snackbars}/package.json +0 -0
  1009. /package/{Snackbars → build/Snackbars}/useSnackbars.d.ts +0 -0
  1010. /package/{Snackbars → build/Snackbars}/useSnackbars.js +0 -0
  1011. /package/{Space → build/Space}/Space.d.ts +0 -0
  1012. /package/{Space → build/Space}/Space.js +0 -0
  1013. /package/{Space → build/Space}/index.d.ts +0 -0
  1014. /package/{Space → build/Space}/index.js +0 -0
  1015. /package/{Space → build/Space}/package.json +0 -0
  1016. /package/{SpeechToText → build/SpeechToText}/SpeechToText.d.ts +0 -0
  1017. /package/{SpeechToText → build/SpeechToText}/index.d.ts +0 -0
  1018. /package/{SpeechToText → build/SpeechToText}/index.js +0 -0
  1019. /package/{SpeechToText → build/SpeechToText}/package.json +0 -0
  1020. /package/{SpeedDial → build/SpeedDial}/SpeedDial.d.ts +0 -0
  1021. /package/{SpeedDial → build/SpeedDial}/index.d.ts +0 -0
  1022. /package/{SpeedDial → build/SpeedDial}/index.js +0 -0
  1023. /package/{SpeedDial → build/SpeedDial}/package.json +0 -0
  1024. /package/{SpeedDialItem → build/SpeedDialItem}/SpeedDialItem.d.ts +0 -0
  1025. /package/{SpeedDialItem → build/SpeedDialItem}/index.d.ts +0 -0
  1026. /package/{SpeedDialItem → build/SpeedDialItem}/index.js +0 -0
  1027. /package/{SpeedDialItem → build/SpeedDialItem}/package.json +0 -0
  1028. /package/{SpyScroll → build/SpyScroll}/SpyScroll.d.ts +0 -0
  1029. /package/{SpyScroll → build/SpyScroll}/SpyScroll.js +0 -0
  1030. /package/{SpyScroll → build/SpyScroll}/index.d.ts +0 -0
  1031. /package/{SpyScroll → build/SpyScroll}/index.js +0 -0
  1032. /package/{SpyScroll → build/SpyScroll}/package.json +0 -0
  1033. /package/{Step → build/Step}/Step.d.ts +0 -0
  1034. /package/{Step → build/Step}/Step.js +0 -0
  1035. /package/{Step → build/Step}/index.d.ts +0 -0
  1036. /package/{Step → build/Step}/index.js +0 -0
  1037. /package/{Step → build/Step}/package.json +0 -0
  1038. /package/{Stepper → build/Stepper}/Stepper.d.ts +0 -0
  1039. /package/{Stepper → build/Stepper}/Stepper.js +0 -0
  1040. /package/{Stepper → build/Stepper}/index.d.ts +0 -0
  1041. /package/{Stepper → build/Stepper}/index.js +0 -0
  1042. /package/{Stepper → build/Stepper}/package.json +0 -0
  1043. /package/{Surface → build/Surface}/Surface.d.ts +0 -0
  1044. /package/{Surface → build/Surface}/Surface.js +0 -0
  1045. /package/{Surface → build/Surface}/index.d.ts +0 -0
  1046. /package/{Surface → build/Surface}/index.js +0 -0
  1047. /package/{Surface → build/Surface}/package.json +0 -0
  1048. /package/{Switch → build/Switch}/Switch.d.ts +0 -0
  1049. /package/{Switch → build/Switch}/Switch.js +0 -0
  1050. /package/{Switch → build/Switch}/index.d.ts +0 -0
  1051. /package/{Switch → build/Switch}/index.js +0 -0
  1052. /package/{Switch → build/Switch}/package.json +0 -0
  1053. /package/{Tab → build/Tab}/Tab.d.ts +0 -0
  1054. /package/{Tab → build/Tab}/Tab.js +0 -0
  1055. /package/{Tab → build/Tab}/index.d.ts +0 -0
  1056. /package/{Tab → build/Tab}/index.js +0 -0
  1057. /package/{Tab → build/Tab}/package.json +0 -0
  1058. /package/{Table → build/Table}/Table.d.ts +0 -0
  1059. /package/{Table → build/Table}/Table.js +0 -0
  1060. /package/{Table → build/Table}/index.d.ts +0 -0
  1061. /package/{Table → build/Table}/index.js +0 -0
  1062. /package/{Table → build/Table}/package.json +0 -0
  1063. /package/{TableBody → build/TableBody}/TableBody.d.ts +0 -0
  1064. /package/{TableBody → build/TableBody}/TableBody.js +0 -0
  1065. /package/{TableBody → build/TableBody}/index.d.ts +0 -0
  1066. /package/{TableBody → build/TableBody}/index.js +0 -0
  1067. /package/{TableBody → build/TableBody}/package.json +0 -0
  1068. /package/{TableCell → build/TableCell}/TableCell.d.ts +0 -0
  1069. /package/{TableCell → build/TableCell}/index.d.ts +0 -0
  1070. /package/{TableCell → build/TableCell}/index.js +0 -0
  1071. /package/{TableCell → build/TableCell}/package.json +0 -0
  1072. /package/{TableFooter → build/TableFooter}/TableFooter.d.ts +0 -0
  1073. /package/{TableFooter → build/TableFooter}/TableFooter.js +0 -0
  1074. /package/{TableFooter → build/TableFooter}/index.d.ts +0 -0
  1075. /package/{TableFooter → build/TableFooter}/index.js +0 -0
  1076. /package/{TableFooter → build/TableFooter}/package.json +0 -0
  1077. /package/{TableHead → build/TableHead}/TableHead.d.ts +0 -0
  1078. /package/{TableHead → build/TableHead}/TableHead.js +0 -0
  1079. /package/{TableHead → build/TableHead}/index.d.ts +0 -0
  1080. /package/{TableHead → build/TableHead}/index.js +0 -0
  1081. /package/{TableHead → build/TableHead}/package.json +0 -0
  1082. /package/{TableHeader → build/TableHeader}/TableHeader.d.ts +0 -0
  1083. /package/{TableHeader → build/TableHeader}/TableHeader.js +0 -0
  1084. /package/{TableHeader → build/TableHeader}/index.d.ts +0 -0
  1085. /package/{TableHeader → build/TableHeader}/index.js +0 -0
  1086. /package/{TableHeader → build/TableHeader}/package.json +0 -0
  1087. /package/{TablePagination → build/TablePagination}/TablePagination.d.ts +0 -0
  1088. /package/{TablePagination → build/TablePagination}/index.d.ts +0 -0
  1089. /package/{TablePagination → build/TablePagination}/index.js +0 -0
  1090. /package/{TablePagination → build/TablePagination}/package.json +0 -0
  1091. /package/{TableRow → build/TableRow}/TableRow.d.ts +0 -0
  1092. /package/{TableRow → build/TableRow}/TableRow.js +0 -0
  1093. /package/{TableRow → build/TableRow}/index.d.ts +0 -0
  1094. /package/{TableRow → build/TableRow}/index.js +0 -0
  1095. /package/{TableRow → build/TableRow}/package.json +0 -0
  1096. /package/{Tabs → build/Tabs}/Tabs.d.ts +0 -0
  1097. /package/{Tabs → build/Tabs}/Tabs.js +0 -0
  1098. /package/{Tabs → build/Tabs}/index.d.ts +0 -0
  1099. /package/{Tabs → build/Tabs}/index.js +0 -0
  1100. /package/{Tabs → build/Tabs}/package.json +0 -0
  1101. /package/{Text → build/Text}/Text.d.ts +0 -0
  1102. /package/{Text → build/Text}/Text.js +0 -0
  1103. /package/{Text → build/Text}/index.d.ts +0 -0
  1104. /package/{Text → build/Text}/index.js +0 -0
  1105. /package/{Text → build/Text}/package.json +0 -0
  1106. /package/{TextField → build/TextField}/TextField.js +0 -0
  1107. /package/{TextField → build/TextField}/index.d.ts +0 -0
  1108. /package/{TextField → build/TextField}/index.js +0 -0
  1109. /package/{TextField → build/TextField}/package.json +0 -0
  1110. /package/{TextToSpeech → build/TextToSpeech}/TextToSpeech.d.ts +0 -0
  1111. /package/{TextToSpeech → build/TextToSpeech}/index.d.ts +0 -0
  1112. /package/{TextToSpeech → build/TextToSpeech}/index.js +0 -0
  1113. /package/{TextToSpeech → build/TextToSpeech}/package.json +0 -0
  1114. /package/{TimePicker → build/TimePicker}/TimePicker.d.ts +0 -0
  1115. /package/{TimePicker → build/TimePicker}/index.d.ts +0 -0
  1116. /package/{TimePicker → build/TimePicker}/index.js +0 -0
  1117. /package/{TimePicker → build/TimePicker}/package.json +0 -0
  1118. /package/{TimeRangePicker → build/TimeRangePicker}/TimeRangePicker.d.ts +0 -0
  1119. /package/{TimeRangePicker → build/TimeRangePicker}/TimeRangePicker.js +0 -0
  1120. /package/{TimeRangePicker → build/TimeRangePicker}/index.d.ts +0 -0
  1121. /package/{TimeRangePicker → build/TimeRangePicker}/index.js +0 -0
  1122. /package/{TimeRangePicker → build/TimeRangePicker}/package.json +0 -0
  1123. /package/{Timeline → build/Timeline}/Timeline.d.ts +0 -0
  1124. /package/{Timeline → build/Timeline}/Timeline.js +0 -0
  1125. /package/{Timeline → build/Timeline}/index.d.ts +0 -0
  1126. /package/{Timeline → build/Timeline}/index.js +0 -0
  1127. /package/{Timeline → build/Timeline}/package.json +0 -0
  1128. /package/{TimelineItem → build/TimelineItem}/TimelineItem.d.ts +0 -0
  1129. /package/{TimelineItem → build/TimelineItem}/TimelineItem.js +0 -0
  1130. /package/{TimelineItem → build/TimelineItem}/index.d.ts +0 -0
  1131. /package/{TimelineItem → build/TimelineItem}/index.js +0 -0
  1132. /package/{TimelineItem → build/TimelineItem}/package.json +0 -0
  1133. /package/{Timer → build/Timer}/Timer.d.ts +0 -0
  1134. /package/{Timer → build/Timer}/index.d.ts +0 -0
  1135. /package/{Timer → build/Timer}/index.js +0 -0
  1136. /package/{Timer → build/Timer}/package.json +0 -0
  1137. /package/{ToggleButton → build/ToggleButton}/ToggleButton.d.ts +0 -0
  1138. /package/{ToggleButton → build/ToggleButton}/ToggleButton.js +0 -0
  1139. /package/{ToggleButton → build/ToggleButton}/index.d.ts +0 -0
  1140. /package/{ToggleButton → build/ToggleButton}/index.js +0 -0
  1141. /package/{ToggleButton → build/ToggleButton}/package.json +0 -0
  1142. /package/{ToggleButtons → build/ToggleButtons}/ToggleButtons.d.ts +0 -0
  1143. /package/{ToggleButtons → build/ToggleButtons}/ToggleButtons.js +0 -0
  1144. /package/{ToggleButtons → build/ToggleButtons}/index.d.ts +0 -0
  1145. /package/{ToggleButtons → build/ToggleButtons}/index.js +0 -0
  1146. /package/{ToggleButtons → build/ToggleButtons}/package.json +0 -0
  1147. /package/{Tooltip → build/Tooltip}/Tooltip.d.ts +0 -0
  1148. /package/{Tooltip → build/Tooltip}/Tooltip.js +0 -0
  1149. /package/{Tooltip → build/Tooltip}/index.d.ts +0 -0
  1150. /package/{Tooltip → build/Tooltip}/index.js +0 -0
  1151. /package/{Tooltip → build/Tooltip}/package.json +0 -0
  1152. /package/{TopAppBar → build/TopAppBar}/TopAppBar.d.ts +0 -0
  1153. /package/{TopAppBar → build/TopAppBar}/TopAppBar.js +0 -0
  1154. /package/{TopAppBar → build/TopAppBar}/index.d.ts +0 -0
  1155. /package/{TopAppBar → build/TopAppBar}/index.js +0 -0
  1156. /package/{TopAppBar → build/TopAppBar}/package.json +0 -0
  1157. /package/{Transition → build/Transition}/Context.d.ts +0 -0
  1158. /package/{Transition → build/Transition}/Context.js +0 -0
  1159. /package/{Transition → build/Transition}/Transition.d.ts +0 -0
  1160. /package/{Transition → build/Transition}/Transition.js +0 -0
  1161. /package/{Transition → build/Transition}/index.d.ts +0 -0
  1162. /package/{Transition → build/Transition}/index.js +0 -0
  1163. /package/{Transition → build/Transition}/package.json +0 -0
  1164. /package/{Transition → build/Transition}/useTransition.d.ts +0 -0
  1165. /package/{Transition → build/Transition}/useTransition.js +0 -0
  1166. /package/{Transitions → build/Transitions}/Transitions.d.ts +0 -0
  1167. /package/{Transitions → build/Transitions}/Transitions.js +0 -0
  1168. /package/{Transitions → build/Transitions}/index.d.ts +0 -0
  1169. /package/{Transitions → build/Transitions}/index.js +0 -0
  1170. /package/{Transitions → build/Transitions}/package.json +0 -0
  1171. /package/{Tree → build/Tree}/Tree.d.ts +0 -0
  1172. /package/{Tree → build/Tree}/Tree.js +0 -0
  1173. /package/{Tree → build/Tree}/index.d.ts +0 -0
  1174. /package/{Tree → build/Tree}/index.js +0 -0
  1175. /package/{Tree → build/Tree}/package.json +0 -0
  1176. /package/{Type → build/Type}/Type.d.ts +0 -0
  1177. /package/{Type → build/Type}/Type.js +0 -0
  1178. /package/{Type → build/Type}/index.d.ts +0 -0
  1179. /package/{Type → build/Type}/index.js +0 -0
  1180. /package/{Type → build/Type}/package.json +0 -0
  1181. /package/{VideoPlayer → build/VideoPlayer}/VideoPlayer.d.ts +0 -0
  1182. /package/{VideoPlayer → build/VideoPlayer}/index.d.ts +0 -0
  1183. /package/{VideoPlayer → build/VideoPlayer}/index.js +0 -0
  1184. /package/{VideoPlayer → build/VideoPlayer}/package.json +0 -0
  1185. /package/{ViewSplit → build/ViewSplit}/ViewSplit.d.ts +0 -0
  1186. /package/{ViewSplit → build/ViewSplit}/ViewSplit.js +0 -0
  1187. /package/{ViewSplit → build/ViewSplit}/index.d.ts +0 -0
  1188. /package/{ViewSplit → build/ViewSplit}/index.js +0 -0
  1189. /package/{ViewSplit → build/ViewSplit}/package.json +0 -0
  1190. /package/{Watch → build/Watch}/Watch.d.ts +0 -0
  1191. /package/{Watch → build/Watch}/Watch.js +0 -0
  1192. /package/{Watch → build/Watch}/index.d.ts +0 -0
  1193. /package/{Watch → build/Watch}/index.js +0 -0
  1194. /package/{Watch → build/Watch}/package.json +0 -0
  1195. /package/{Weather → build/Weather}/Weather.d.ts +0 -0
  1196. /package/{Weather → build/Weather}/Weather.js +0 -0
  1197. /package/{Weather → build/Weather}/index.d.ts +0 -0
  1198. /package/{Weather → build/Weather}/index.js +0 -0
  1199. /package/{Weather → build/Weather}/package.json +0 -0
  1200. /package/{Whiteboard → build/Whiteboard}/Whiteboard.d.ts +0 -0
  1201. /package/{Whiteboard → build/Whiteboard}/Whiteboard.js +0 -0
  1202. /package/{Whiteboard → build/Whiteboard}/index.d.ts +0 -0
  1203. /package/{Whiteboard → build/Whiteboard}/index.js +0 -0
  1204. /package/{Whiteboard → build/Whiteboard}/package.json +0 -0
  1205. /package/{Widgets → build/Widgets}/Context.d.ts +0 -0
  1206. /package/{Widgets → build/Widgets}/Context.js +0 -0
  1207. /package/{Widgets → build/Widgets}/Widgets.d.ts +0 -0
  1208. /package/{Widgets → build/Widgets}/index.d.ts +0 -0
  1209. /package/{Widgets → build/Widgets}/index.js +0 -0
  1210. /package/{Widgets → build/Widgets}/package.json +0 -0
  1211. /package/{Widgets → build/Widgets}/useWidgets.d.ts +0 -0
  1212. /package/{Widgets → build/Widgets}/useWidgets.js +0 -0
  1213. /package/{WindowSplit → build/WindowSplit}/WindowSplit.d.ts +0 -0
  1214. /package/{WindowSplit → build/WindowSplit}/WindowSplit.js +0 -0
  1215. /package/{WindowSplit → build/WindowSplit}/index.d.ts +0 -0
  1216. /package/{WindowSplit → build/WindowSplit}/index.js +0 -0
  1217. /package/{WindowSplit → build/WindowSplit}/package.json +0 -0
  1218. /package/{Zoom → build/Zoom}/Zoom.d.ts +0 -0
  1219. /package/{Zoom → build/Zoom}/Zoom.js +0 -0
  1220. /package/{Zoom → build/Zoom}/index.d.ts +0 -0
  1221. /package/{Zoom → build/Zoom}/index.js +0 -0
  1222. /package/{Zoom → build/Zoom}/package.json +0 -0
  1223. /package/{esm → build/esm}/Accordion/Accordion.js +0 -0
  1224. /package/{esm → build/esm}/Accordion/index.js +0 -0
  1225. /package/{esm → build/esm}/AdvancedTextField/AdvancedTextField.js +0 -0
  1226. /package/{esm → build/esm}/AdvancedTextField/index.js +0 -0
  1227. /package/{esm → build/esm}/Append/Append.js +0 -0
  1228. /package/{esm → build/esm}/Append/index.js +0 -0
  1229. /package/{esm → build/esm}/AreaChart/AreaChart.js +0 -0
  1230. /package/{esm → build/esm}/AreaChart/index.js +0 -0
  1231. /package/{esm → build/esm}/AreaChartItem/AreaChartItem.js +0 -0
  1232. /package/{esm → build/esm}/AreaChartItem/index.js +0 -0
  1233. /package/{esm → build/esm}/AudioPlayer/index.js +0 -0
  1234. /package/{esm → build/esm}/AudioRecorder/index.js +0 -0
  1235. /package/{esm → build/esm}/AutoComplete/index.js +0 -0
  1236. /package/{esm → build/esm}/AutoCompleteCountry/index.js +0 -0
  1237. /package/{esm → build/esm}/AutoCompleteCurrency/index.js +0 -0
  1238. /package/{esm → build/esm}/AutoCompleteGooglePlaces/AutoCompleteGooglePlaces.js +0 -0
  1239. /package/{esm → build/esm}/AutoCompleteGooglePlaces/index.js +0 -0
  1240. /package/{esm → build/esm}/Avatar/Avatar.js +0 -0
  1241. /package/{esm → build/esm}/Avatar/index.js +0 -0
  1242. /package/{esm → build/esm}/AvatarGroup/AvatarGroup.js +0 -0
  1243. /package/{esm → build/esm}/AvatarGroup/index.js +0 -0
  1244. /package/{esm → build/esm}/Backdrop/Backdrop.js +0 -0
  1245. /package/{esm → build/esm}/Backdrop/index.js +0 -0
  1246. /package/{esm → build/esm}/Badge/Badge.js +0 -0
  1247. /package/{esm → build/esm}/Badge/index.js +0 -0
  1248. /package/{esm → build/esm}/Banner/Banner.js +0 -0
  1249. /package/{esm → build/esm}/Banner/index.js +0 -0
  1250. /package/{esm → build/esm}/BottomAppBar/BottomAppBar.js +0 -0
  1251. /package/{esm → build/esm}/BottomAppBar/index.js +0 -0
  1252. /package/{esm → build/esm}/BottomSheet/BottomSheet.js +0 -0
  1253. /package/{esm → build/esm}/BottomSheet/index.js +0 -0
  1254. /package/{esm → build/esm}/Box/Box.js +0 -0
  1255. /package/{esm → build/esm}/Box/index.js +0 -0
  1256. /package/{esm → build/esm}/Breadcrumbs/index.js +0 -0
  1257. /package/{esm → build/esm}/BubbleChart/index.js +0 -0
  1258. /package/{esm → build/esm}/BubbleChartItem/BubbleChartItem.js +0 -0
  1259. /package/{esm → build/esm}/BubbleChartItem/index.js +0 -0
  1260. /package/{esm → build/esm}/Button/Button.js +0 -0
  1261. /package/{esm → build/esm}/Button/index.js +0 -0
  1262. /package/{esm → build/esm}/Buttons/Buttons.js +0 -0
  1263. /package/{esm → build/esm}/Buttons/index.js +0 -0
  1264. /package/{esm → build/esm}/Calendar/index.js +0 -0
  1265. /package/{esm → build/esm}/CalendarAvailability/index.js +0 -0
  1266. /package/{esm → build/esm}/CalendarMenu/index.js +0 -0
  1267. /package/{esm → build/esm}/CalendarMonth/index.js +0 -0
  1268. /package/{esm → build/esm}/CalendarViews/index.js +0 -0
  1269. /package/{esm → build/esm}/CalendarWeek/CalendarWeek.js +0 -0
  1270. /package/{esm → build/esm}/CalendarWeek/index.js +0 -0
  1271. /package/{esm → build/esm}/Card/Card.js +0 -0
  1272. /package/{esm → build/esm}/Card/index.js +0 -0
  1273. /package/{esm → build/esm}/CardButton/CardButton.js +0 -0
  1274. /package/{esm → build/esm}/CardButton/index.js +0 -0
  1275. /package/{esm → build/esm}/CardFooter/CardFooter.js +0 -0
  1276. /package/{esm → build/esm}/CardFooter/index.js +0 -0
  1277. /package/{esm → build/esm}/CardHeader/CardHeader.js +0 -0
  1278. /package/{esm → build/esm}/CardHeader/index.js +0 -0
  1279. /package/{esm → build/esm}/CardImage/CardImage.js +0 -0
  1280. /package/{esm → build/esm}/CardImage/index.js +0 -0
  1281. /package/{esm → build/esm}/CardMain/CardMain.js +0 -0
  1282. /package/{esm → build/esm}/CardMain/index.js +0 -0
  1283. /package/{esm → build/esm}/Carousel/Carousel.js +0 -0
  1284. /package/{esm → build/esm}/Carousel/index.js +0 -0
  1285. /package/{esm → build/esm}/Chart/index.js +0 -0
  1286. /package/{esm → build/esm}/Checkbox/Checkbox.js +0 -0
  1287. /package/{esm → build/esm}/Checkbox/index.js +0 -0
  1288. /package/{esm → build/esm}/Chip/Chip.js +0 -0
  1289. /package/{esm → build/esm}/Chip/index.js +0 -0
  1290. /package/{esm → build/esm}/Chips/Chips.js +0 -0
  1291. /package/{esm → build/esm}/Chips/index.js +0 -0
  1292. /package/{esm → build/esm}/ClickListener/ClickListener.js +0 -0
  1293. /package/{esm → build/esm}/ClickListener/index.js +0 -0
  1294. /package/{esm → build/esm}/Clock/Clock.js +0 -0
  1295. /package/{esm → build/esm}/Clock/index.js +0 -0
  1296. /package/{esm → build/esm}/ColorTextField/index.js +0 -0
  1297. /package/{esm → build/esm}/ColumnChart/ColumnChart.js +0 -0
  1298. /package/{esm → build/esm}/ColumnChart/index.js +0 -0
  1299. /package/{esm → build/esm}/ColumnChartItem/ColumnChartItem.js +0 -0
  1300. /package/{esm → build/esm}/ColumnChartItem/index.js +0 -0
  1301. /package/{esm → build/esm}/Confirm/Context.js +0 -0
  1302. /package/{esm → build/esm}/Confirm/index.js +0 -0
  1303. /package/{esm → build/esm}/Confirm/useConfirm.js +0 -0
  1304. /package/{esm → build/esm}/Container/Container.js +0 -0
  1305. /package/{esm → build/esm}/Container/index.js +0 -0
  1306. /package/{esm → build/esm}/CookieBanner/index.js +0 -0
  1307. /package/{esm → build/esm}/Countdown/index.js +0 -0
  1308. /package/{esm → build/esm}/DatePicker/index.js +0 -0
  1309. /package/{esm → build/esm}/DateRangePicker/DateRangePicker.js +0 -0
  1310. /package/{esm → build/esm}/DateRangePicker/index.js +0 -0
  1311. /package/{esm → build/esm}/DateTimePicker/index.js +0 -0
  1312. /package/{esm → build/esm}/DateTimeRangePicker/DateTimeRangePicker.js +0 -0
  1313. /package/{esm → build/esm}/DateTimeRangePicker/index.js +0 -0
  1314. /package/{esm → build/esm}/Divider/Divider.js +0 -0
  1315. /package/{esm → build/esm}/Divider/index.js +0 -0
  1316. /package/{esm → build/esm}/DonutChart/DonutChart.js +0 -0
  1317. /package/{esm → build/esm}/DonutChart/index.js +0 -0
  1318. /package/{esm → build/esm}/DragAndDropList/DragAndDropList.js +0 -0
  1319. /package/{esm → build/esm}/DragAndDropList/index.js +0 -0
  1320. /package/{esm → build/esm}/Drawing/index.js +0 -0
  1321. /package/{esm → build/esm}/DropZone/index.js +0 -0
  1322. /package/{esm → build/esm}/Emojis/emojis_list.js +0 -0
  1323. /package/{esm → build/esm}/Emojis/index.js +0 -0
  1324. /package/{esm → build/esm}/Expand/Expand.js +0 -0
  1325. /package/{esm → build/esm}/Expand/index.js +0 -0
  1326. /package/{esm → build/esm}/Fab/Fab.js +0 -0
  1327. /package/{esm → build/esm}/Fab/index.js +0 -0
  1328. /package/{esm → build/esm}/Fade/Fade.js +0 -0
  1329. /package/{esm → build/esm}/Fade/index.js +0 -0
  1330. /package/{esm → build/esm}/FileChoose/FileChoose.js +0 -0
  1331. /package/{esm → build/esm}/FileChoose/index.js +0 -0
  1332. /package/{esm → build/esm}/Focus/Focus.js +0 -0
  1333. /package/{esm → build/esm}/Focus/index.js +0 -0
  1334. /package/{esm → build/esm}/Form/Form.js +0 -0
  1335. /package/{esm → build/esm}/Form/index.js +0 -0
  1336. /package/{esm → build/esm}/FormRow/FormRow.js +0 -0
  1337. /package/{esm → build/esm}/FormRow/index.js +0 -0
  1338. /package/{esm → build/esm}/Forms/Forms.js +0 -0
  1339. /package/{esm → build/esm}/Forms/index.js +0 -0
  1340. /package/{esm → build/esm}/Frame/index.js +0 -0
  1341. /package/{esm → build/esm}/Grid/Grid.js +0 -0
  1342. /package/{esm → build/esm}/Grid/index.js +0 -0
  1343. /package/{esm → build/esm}/Grow/Grow.js +0 -0
  1344. /package/{esm → build/esm}/Grow/index.js +0 -0
  1345. /package/{esm → build/esm}/HTMLCanvas/HTMLCanvas.js +0 -0
  1346. /package/{esm → build/esm}/HTMLCanvas/index.js +0 -0
  1347. /package/{esm → build/esm}/IFrame/IFrame.js +0 -0
  1348. /package/{esm → build/esm}/IFrame/index.js +0 -0
  1349. /package/{esm → build/esm}/Icon/Icon.js +0 -0
  1350. /package/{esm → build/esm}/Icon/index.js +0 -0
  1351. /package/{esm → build/esm}/IconButton/IconButton.js +0 -0
  1352. /package/{esm → build/esm}/IconButton/index.js +0 -0
  1353. /package/{esm → build/esm}/Image/Image.js +0 -0
  1354. /package/{esm → build/esm}/Image/index.js +0 -0
  1355. /package/{esm → build/esm}/ImageCrop/ImageCrop.js +0 -0
  1356. /package/{esm → build/esm}/ImageCrop/index.js +0 -0
  1357. /package/{esm → build/esm}/ImageEdit/index.js +0 -0
  1358. /package/{esm → build/esm}/ImageGallery/ImageGallery.js +0 -0
  1359. /package/{esm → build/esm}/ImageGallery/index.js +0 -0
  1360. /package/{esm → build/esm}/ImageList/ImageList.js +0 -0
  1361. /package/{esm → build/esm}/ImageList/index.js +0 -0
  1362. /package/{esm → build/esm}/ImageListItem/ImageListItem.js +0 -0
  1363. /package/{esm → build/esm}/ImageListItem/index.js +0 -0
  1364. /package/{esm → build/esm}/ImageListItemBox/ImageListItemBox.js +0 -0
  1365. /package/{esm → build/esm}/ImageListItemBox/index.js +0 -0
  1366. /package/{esm → build/esm}/Info/index.js +0 -0
  1367. /package/{esm → build/esm}/Interaction/Interaction.js +0 -0
  1368. /package/{esm → build/esm}/Interaction/index.js +0 -0
  1369. /package/{esm → build/esm}/Keyframes/Context.js +0 -0
  1370. /package/{esm → build/esm}/Keyframes/Keyframes.js +0 -0
  1371. /package/{esm → build/esm}/Keyframes/index.js +0 -0
  1372. /package/{esm → build/esm}/Keyframes/useKeyframes.js +0 -0
  1373. /package/{esm → build/esm}/Label/Label.js +0 -0
  1374. /package/{esm → build/esm}/Label/index.js +0 -0
  1375. /package/{esm → build/esm}/Labels/Labels.js +0 -0
  1376. /package/{esm → build/esm}/Labels/index.js +0 -0
  1377. /package/{esm → build/esm}/Line/Line.js +0 -0
  1378. /package/{esm → build/esm}/Line/index.js +0 -0
  1379. /package/{esm → build/esm}/LineChart/LineChart.js +0 -0
  1380. /package/{esm → build/esm}/LineChart/index.js +0 -0
  1381. /package/{esm → build/esm}/LineChartItem/LineChartItem.js +0 -0
  1382. /package/{esm → build/esm}/LineChartItem/index.js +0 -0
  1383. /package/{esm → build/esm}/LinearMeter/LinearMeter.js +0 -0
  1384. /package/{esm → build/esm}/LinearMeter/index.js +0 -0
  1385. /package/{esm → build/esm}/LinearProgress/LinearProgress.js +0 -0
  1386. /package/{esm → build/esm}/LinearProgress/index.js +0 -0
  1387. /package/{esm → build/esm}/Link/Link.js +0 -0
  1388. /package/{esm → build/esm}/Link/index.js +0 -0
  1389. /package/{esm → build/esm}/Links/index.js +0 -0
  1390. /package/{esm → build/esm}/List/List.js +0 -0
  1391. /package/{esm → build/esm}/List/index.js +0 -0
  1392. /package/{esm → build/esm}/ListItem/ListItem.js +0 -0
  1393. /package/{esm → build/esm}/ListItem/index.js +0 -0
  1394. /package/{esm → build/esm}/ListSubheader/ListSubheader.js +0 -0
  1395. /package/{esm → build/esm}/ListSubheader/index.js +0 -0
  1396. /package/{esm → build/esm}/MainProgress/Context.js +0 -0
  1397. /package/{esm → build/esm}/MainProgress/MainProgress.js +0 -0
  1398. /package/{esm → build/esm}/MainProgress/index.js +0 -0
  1399. /package/{esm → build/esm}/MainProgress/useMainProgress.js +0 -0
  1400. /package/{esm → build/esm}/Markdown/Markdown.js +0 -0
  1401. /package/{esm → build/esm}/Markdown/index.js +0 -0
  1402. /package/{esm → build/esm}/Masonry/Masonry.js +0 -0
  1403. /package/{esm → build/esm}/Masonry/index.js +0 -0
  1404. /package/{esm → build/esm}/Medias/index.js +0 -0
  1405. /package/{esm → build/esm}/Menu/Menu.js +0 -0
  1406. /package/{esm → build/esm}/Menu/index.js +0 -0
  1407. /package/{esm → build/esm}/MenuDesktop/index.js +0 -0
  1408. /package/{esm → build/esm}/MenuItem/MenuItem.js +0 -0
  1409. /package/{esm → build/esm}/MenuItem/index.js +0 -0
  1410. /package/{esm → build/esm}/Meta/Meta.js +0 -0
  1411. /package/{esm → build/esm}/Meta/index.js +0 -0
  1412. /package/{esm → build/esm}/Modal/Modal.js +0 -0
  1413. /package/{esm → build/esm}/Modal/index.js +0 -0
  1414. /package/{esm → build/esm}/ModalFooter/ModalFooter.js +0 -0
  1415. /package/{esm → build/esm}/ModalFooter/index.js +0 -0
  1416. /package/{esm → build/esm}/ModalHeader/ModalHeader.js +0 -0
  1417. /package/{esm → build/esm}/ModalHeader/index.js +0 -0
  1418. /package/{esm → build/esm}/ModalIcon/ModalIcon.js +0 -0
  1419. /package/{esm → build/esm}/ModalIcon/index.js +0 -0
  1420. /package/{esm → build/esm}/ModalMain/ModalMain.js +0 -0
  1421. /package/{esm → build/esm}/ModalMain/index.js +0 -0
  1422. /package/{esm → build/esm}/ModalText/ModalText.js +0 -0
  1423. /package/{esm → build/esm}/ModalText/index.js +0 -0
  1424. /package/{esm → build/esm}/ModalTitle/ModalTitle.js +0 -0
  1425. /package/{esm → build/esm}/ModalTitle/index.js +0 -0
  1426. /package/{esm → build/esm}/MoreOptions/MoreOptions.js +0 -0
  1427. /package/{esm → build/esm}/MoreOptions/index.js +0 -0
  1428. /package/{esm → build/esm}/Move/Move.js +0 -0
  1429. /package/{esm → build/esm}/Move/index.js +0 -0
  1430. /package/{esm → build/esm}/NavigationBar/NavigationBar.js +0 -0
  1431. /package/{esm → build/esm}/NavigationBar/index.js +0 -0
  1432. /package/{esm → build/esm}/NavigationDrawer/NavigationDrawer.js +0 -0
  1433. /package/{esm → build/esm}/NavigationDrawer/index.js +0 -0
  1434. /package/{esm → build/esm}/NavigationItem/index.js +0 -0
  1435. /package/{esm → build/esm}/NavigationRail/NavigationRail.js +0 -0
  1436. /package/{esm → build/esm}/NavigationRail/index.js +0 -0
  1437. /package/{esm → build/esm}/NotFound/index.js +0 -0
  1438. /package/{esm → build/esm}/NumericTextField/NumericTextField.js +0 -0
  1439. /package/{esm → build/esm}/NumericTextField/index.js +0 -0
  1440. /package/{esm → build/esm}/Page/index.js +0 -0
  1441. /package/{esm → build/esm}/PageTransition/PageTransition.js +0 -0
  1442. /package/{esm → build/esm}/PageTransition/index.js +0 -0
  1443. /package/{esm → build/esm}/Pagination/Pagination.js +0 -0
  1444. /package/{esm → build/esm}/Pagination/index.js +0 -0
  1445. /package/{esm → build/esm}/PaginationItem/PaginationItem.js +0 -0
  1446. /package/{esm → build/esm}/PaginationItem/index.js +0 -0
  1447. /package/{esm → build/esm}/Parallax/Parallax.js +0 -0
  1448. /package/{esm → build/esm}/Parallax/index.js +0 -0
  1449. /package/{esm → build/esm}/Path/Path.js +0 -0
  1450. /package/{esm → build/esm}/Path/index.js +0 -0
  1451. /package/{esm → build/esm}/PieChart/index.js +0 -0
  1452. /package/{esm → build/esm}/Placeholder/Placeholder.js +0 -0
  1453. /package/{esm → build/esm}/Placeholder/index.js +0 -0
  1454. /package/{esm → build/esm}/Portal/Portal.js +0 -0
  1455. /package/{esm → build/esm}/Portal/index.js +0 -0
  1456. /package/{esm → build/esm}/Properties/Properties.js +0 -0
  1457. /package/{esm → build/esm}/Properties/index.js +0 -0
  1458. /package/{esm → build/esm}/Property/Property.js +0 -0
  1459. /package/{esm → build/esm}/Property/index.js +0 -0
  1460. /package/{esm → build/esm}/Radio/Radio.js +0 -0
  1461. /package/{esm → build/esm}/Radio/index.js +0 -0
  1462. /package/{esm → build/esm}/Radios/Radios.js +0 -0
  1463. /package/{esm → build/esm}/Radios/index.js +0 -0
  1464. /package/{esm → build/esm}/Rating/Rating.js +0 -0
  1465. /package/{esm → build/esm}/Rating/index.js +0 -0
  1466. /package/{esm → build/esm}/Reset/Reset.js +0 -0
  1467. /package/{esm → build/esm}/Reset/index.js +0 -0
  1468. /package/{esm → build/esm}/Reveal/Reveal.js +0 -0
  1469. /package/{esm → build/esm}/Reveal/index.js +0 -0
  1470. /package/{esm → build/esm}/RichTextEditor/index.js +0 -0
  1471. /package/{esm → build/esm}/RoundMeter/RoundMeter.js +0 -0
  1472. /package/{esm → build/esm}/RoundMeter/index.js +0 -0
  1473. /package/{esm → build/esm}/RoundProgress/RoundProgress.js +0 -0
  1474. /package/{esm → build/esm}/RoundProgress/index.js +0 -0
  1475. /package/{esm → build/esm}/ScatterChart/ScatterChart.js +0 -0
  1476. /package/{esm → build/esm}/ScatterChart/index.js +0 -0
  1477. /package/{esm → build/esm}/ScatterChartItem/ScatterChartItem.js +0 -0
  1478. /package/{esm → build/esm}/ScatterChartItem/index.js +0 -0
  1479. /package/{esm → build/esm}/ScreenCapture/index.js +0 -0
  1480. /package/{esm → build/esm}/Section/Section.js +0 -0
  1481. /package/{esm → build/esm}/Section/index.js +0 -0
  1482. /package/{esm → build/esm}/SectionAction/index.js +0 -0
  1483. /package/{esm → build/esm}/SectionBoxes/index.js +0 -0
  1484. /package/{esm → build/esm}/SectionCards/index.js +0 -0
  1485. /package/{esm → build/esm}/SectionCarousel/index.js +0 -0
  1486. /package/{esm → build/esm}/SectionContact/SectionContact.js +0 -0
  1487. /package/{esm → build/esm}/SectionContact/index.js +0 -0
  1488. /package/{esm → build/esm}/SectionImageGallery/SectionImageGallery.js +0 -0
  1489. /package/{esm → build/esm}/SectionImageGallery/index.js +0 -0
  1490. /package/{esm → build/esm}/SectionLogos/SectionLogos.js +0 -0
  1491. /package/{esm → build/esm}/SectionLogos/index.js +0 -0
  1492. /package/{esm → build/esm}/SectionMedia/index.js +0 -0
  1493. /package/{esm → build/esm}/SectionReviews/SectionReviews.js +0 -0
  1494. /package/{esm → build/esm}/SectionReviews/index.js +0 -0
  1495. /package/{esm → build/esm}/SectionTextMedia/index.js +0 -0
  1496. /package/{esm → build/esm}/SectionTimeline/SectionTimeline.js +0 -0
  1497. /package/{esm → build/esm}/SectionTimeline/index.js +0 -0
  1498. /package/{esm → build/esm}/SectionWatch/SectionWatch.js +0 -0
  1499. /package/{esm → build/esm}/SectionWatch/index.js +0 -0
  1500. /package/{esm → build/esm}/Select/index.js +0 -0
  1501. /package/{esm → build/esm}/Share/index.js +0 -0
  1502. /package/{esm → build/esm}/Slide/Slide.js +0 -0
  1503. /package/{esm → build/esm}/Slide/index.js +0 -0
  1504. /package/{esm → build/esm}/Slider/Slider.js +0 -0
  1505. /package/{esm → build/esm}/Slider/index.js +0 -0
  1506. /package/{esm → build/esm}/SmartTextField/index.js +0 -0
  1507. /package/{esm → build/esm}/Snackbar/Snackbar.js +0 -0
  1508. /package/{esm → build/esm}/Snackbar/index.js +0 -0
  1509. /package/{esm → build/esm}/Snackbars/Context.js +0 -0
  1510. /package/{esm → build/esm}/Snackbars/Snackbars.js +0 -0
  1511. /package/{esm → build/esm}/Snackbars/index.js +0 -0
  1512. /package/{esm → build/esm}/Snackbars/useSnackbars.js +0 -0
  1513. /package/{esm → build/esm}/Space/Space.js +0 -0
  1514. /package/{esm → build/esm}/Space/index.js +0 -0
  1515. /package/{esm → build/esm}/SpeechToText/index.js +0 -0
  1516. /package/{esm → build/esm}/SpeedDial/index.js +0 -0
  1517. /package/{esm → build/esm}/SpeedDialItem/index.js +0 -0
  1518. /package/{esm → build/esm}/SpyScroll/SpyScroll.js +0 -0
  1519. /package/{esm → build/esm}/SpyScroll/index.js +0 -0
  1520. /package/{esm → build/esm}/Step/Step.js +0 -0
  1521. /package/{esm → build/esm}/Step/index.js +0 -0
  1522. /package/{esm → build/esm}/Stepper/Stepper.js +0 -0
  1523. /package/{esm → build/esm}/Stepper/index.js +0 -0
  1524. /package/{esm → build/esm}/Surface/Surface.js +0 -0
  1525. /package/{esm → build/esm}/Surface/index.js +0 -0
  1526. /package/{esm → build/esm}/Switch/Switch.js +0 -0
  1527. /package/{esm → build/esm}/Switch/index.js +0 -0
  1528. /package/{esm → build/esm}/Tab/Tab.js +0 -0
  1529. /package/{esm → build/esm}/Tab/index.js +0 -0
  1530. /package/{esm → build/esm}/Table/Table.js +0 -0
  1531. /package/{esm → build/esm}/Table/index.js +0 -0
  1532. /package/{esm → build/esm}/TableBody/TableBody.js +0 -0
  1533. /package/{esm → build/esm}/TableBody/index.js +0 -0
  1534. /package/{esm → build/esm}/TableCell/index.js +0 -0
  1535. /package/{esm → build/esm}/TableFooter/TableFooter.js +0 -0
  1536. /package/{esm → build/esm}/TableFooter/index.js +0 -0
  1537. /package/{esm → build/esm}/TableHead/TableHead.js +0 -0
  1538. /package/{esm → build/esm}/TableHead/index.js +0 -0
  1539. /package/{esm → build/esm}/TableHeader/TableHeader.js +0 -0
  1540. /package/{esm → build/esm}/TableHeader/index.js +0 -0
  1541. /package/{esm → build/esm}/TablePagination/index.js +0 -0
  1542. /package/{esm → build/esm}/TableRow/TableRow.js +0 -0
  1543. /package/{esm → build/esm}/TableRow/index.js +0 -0
  1544. /package/{esm → build/esm}/Tabs/Tabs.js +0 -0
  1545. /package/{esm → build/esm}/Tabs/index.js +0 -0
  1546. /package/{esm → build/esm}/Text/Text.js +0 -0
  1547. /package/{esm → build/esm}/Text/index.js +0 -0
  1548. /package/{esm → build/esm}/TextField/TextField.js +0 -0
  1549. /package/{esm → build/esm}/TextField/index.js +0 -0
  1550. /package/{esm → build/esm}/TextToSpeech/index.js +0 -0
  1551. /package/{esm → build/esm}/TimePicker/index.js +0 -0
  1552. /package/{esm → build/esm}/TimeRangePicker/TimeRangePicker.js +0 -0
  1553. /package/{esm → build/esm}/TimeRangePicker/index.js +0 -0
  1554. /package/{esm → build/esm}/Timeline/Timeline.js +0 -0
  1555. /package/{esm → build/esm}/Timeline/index.js +0 -0
  1556. /package/{esm → build/esm}/TimelineItem/TimelineItem.js +0 -0
  1557. /package/{esm → build/esm}/TimelineItem/index.js +0 -0
  1558. /package/{esm → build/esm}/Timer/index.js +0 -0
  1559. /package/{esm → build/esm}/ToggleButton/ToggleButton.js +0 -0
  1560. /package/{esm → build/esm}/ToggleButton/index.js +0 -0
  1561. /package/{esm → build/esm}/ToggleButtons/ToggleButtons.js +0 -0
  1562. /package/{esm → build/esm}/ToggleButtons/index.js +0 -0
  1563. /package/{esm → build/esm}/Tooltip/Tooltip.js +0 -0
  1564. /package/{esm → build/esm}/Tooltip/index.js +0 -0
  1565. /package/{esm → build/esm}/TopAppBar/TopAppBar.js +0 -0
  1566. /package/{esm → build/esm}/TopAppBar/index.js +0 -0
  1567. /package/{esm → build/esm}/Transition/Context.js +0 -0
  1568. /package/{esm → build/esm}/Transition/Transition.js +0 -0
  1569. /package/{esm → build/esm}/Transition/index.js +0 -0
  1570. /package/{esm → build/esm}/Transition/useTransition.js +0 -0
  1571. /package/{esm → build/esm}/Transitions/Transitions.js +0 -0
  1572. /package/{esm → build/esm}/Transitions/index.js +0 -0
  1573. /package/{esm → build/esm}/Tree/Tree.js +0 -0
  1574. /package/{esm → build/esm}/Tree/index.js +0 -0
  1575. /package/{esm → build/esm}/Type/Type.js +0 -0
  1576. /package/{esm → build/esm}/Type/index.js +0 -0
  1577. /package/{esm → build/esm}/VideoPlayer/index.js +0 -0
  1578. /package/{esm → build/esm}/ViewSplit/ViewSplit.js +0 -0
  1579. /package/{esm → build/esm}/ViewSplit/index.js +0 -0
  1580. /package/{esm → build/esm}/Watch/Watch.js +0 -0
  1581. /package/{esm → build/esm}/Watch/index.js +0 -0
  1582. /package/{esm → build/esm}/Weather/Weather.js +0 -0
  1583. /package/{esm → build/esm}/Weather/index.js +0 -0
  1584. /package/{esm → build/esm}/Whiteboard/Whiteboard.js +0 -0
  1585. /package/{esm → build/esm}/Whiteboard/index.js +0 -0
  1586. /package/{esm → build/esm}/Widgets/Context.js +0 -0
  1587. /package/{esm → build/esm}/Widgets/index.js +0 -0
  1588. /package/{esm → build/esm}/Widgets/useWidgets.js +0 -0
  1589. /package/{esm → build/esm}/WindowSplit/WindowSplit.js +0 -0
  1590. /package/{esm → build/esm}/WindowSplit/index.js +0 -0
  1591. /package/{esm → build/esm}/Zoom/Zoom.js +0 -0
  1592. /package/{esm → build/esm}/Zoom/index.js +0 -0
  1593. /package/{esm → build/esm}/types.js +0 -0
  1594. /package/{esm → build/esm}/useForm/index.js +0 -0
  1595. /package/{esm → build/esm}/useForm/useForm.js +0 -0
  1596. /package/{esm → build/esm}/useForm/validate.js +0 -0
  1597. /package/{esm → build/esm}/useLocation/index.js +0 -0
  1598. /package/{esm → build/esm}/useLocation/useLocation.js +0 -0
  1599. /package/{esm → build/esm}/useMediaQuery/index.js +0 -0
  1600. /package/{esm → build/esm}/useMediaQuery/useMediaQuery.js +0 -0
  1601. /package/{esm → build/esm}/useQuery/index.js +0 -0
  1602. /package/{esm → build/esm}/useQuery/useQuery.js +0 -0
  1603. /package/{esm → build/esm}/useScroll/index.js +0 -0
  1604. /package/{esm → build/esm}/useScroll/useScroll.js +0 -0
  1605. /package/{esm → build/esm}/useSubscription/index.js +0 -0
  1606. /package/{esm → build/esm}/useSubscription/useSubscription.js +0 -0
  1607. /package/{esm → build/esm}/useSwipe/index.js +0 -0
  1608. /package/{esm → build/esm}/useSwipe/useSwipe.js +0 -0
  1609. /package/{esm → build/esm}/useVisible/index.js +0 -0
  1610. /package/{esm → build/esm}/useVisible/useVisible.js +0 -0
  1611. /package/{esm → build/esm}/utils.js +0 -0
  1612. /package/{index.d.ts → build/index.d.ts} +0 -0
  1613. /package/{index.js → build/index.js} +0 -0
  1614. /package/{types.d.ts → build/types.d.ts} +0 -0
  1615. /package/{types.js → build/types.js} +0 -0
  1616. /package/{useForm → build/useForm}/index.d.ts +0 -0
  1617. /package/{useForm → build/useForm}/index.js +0 -0
  1618. /package/{useForm → build/useForm}/package.json +0 -0
  1619. /package/{useForm → build/useForm}/useForm.d.ts +0 -0
  1620. /package/{useForm → build/useForm}/useForm.js +0 -0
  1621. /package/{useForm → build/useForm}/validate.d.ts +0 -0
  1622. /package/{useForm → build/useForm}/validate.js +0 -0
  1623. /package/{useLocation → build/useLocation}/index.d.ts +0 -0
  1624. /package/{useLocation → build/useLocation}/index.js +0 -0
  1625. /package/{useLocation → build/useLocation}/package.json +0 -0
  1626. /package/{useLocation → build/useLocation}/useLocation.d.ts +0 -0
  1627. /package/{useLocation → build/useLocation}/useLocation.js +0 -0
  1628. /package/{useMediaQuery → build/useMediaQuery}/index.d.ts +0 -0
  1629. /package/{useMediaQuery → build/useMediaQuery}/index.js +0 -0
  1630. /package/{useMediaQuery → build/useMediaQuery}/package.json +0 -0
  1631. /package/{useMediaQuery → build/useMediaQuery}/useMediaQuery.d.ts +0 -0
  1632. /package/{useMediaQuery → build/useMediaQuery}/useMediaQuery.js +0 -0
  1633. /package/{useQuery → build/useQuery}/index.d.ts +0 -0
  1634. /package/{useQuery → build/useQuery}/index.js +0 -0
  1635. /package/{useQuery → build/useQuery}/package.json +0 -0
  1636. /package/{useQuery → build/useQuery}/useQuery.d.ts +0 -0
  1637. /package/{useQuery → build/useQuery}/useQuery.js +0 -0
  1638. /package/{useScroll → build/useScroll}/index.d.ts +0 -0
  1639. /package/{useScroll → build/useScroll}/index.js +0 -0
  1640. /package/{useScroll → build/useScroll}/package.json +0 -0
  1641. /package/{useScroll → build/useScroll}/useScroll.d.ts +0 -0
  1642. /package/{useScroll → build/useScroll}/useScroll.js +0 -0
  1643. /package/{useSubscription → build/useSubscription}/index.d.ts +0 -0
  1644. /package/{useSubscription → build/useSubscription}/index.js +0 -0
  1645. /package/{useSubscription → build/useSubscription}/package.json +0 -0
  1646. /package/{useSubscription → build/useSubscription}/useSubscription.d.ts +0 -0
  1647. /package/{useSubscription → build/useSubscription}/useSubscription.js +0 -0
  1648. /package/{useSwipe → build/useSwipe}/index.d.ts +0 -0
  1649. /package/{useSwipe → build/useSwipe}/index.js +0 -0
  1650. /package/{useSwipe → build/useSwipe}/package.json +0 -0
  1651. /package/{useSwipe → build/useSwipe}/useSwipe.d.ts +0 -0
  1652. /package/{useSwipe → build/useSwipe}/useSwipe.js +0 -0
  1653. /package/{useVisible → build/useVisible}/index.d.ts +0 -0
  1654. /package/{useVisible → build/useVisible}/index.js +0 -0
  1655. /package/{useVisible → build/useVisible}/package.json +0 -0
  1656. /package/{useVisible → build/useVisible}/useVisible.d.ts +0 -0
  1657. /package/{useVisible → build/useVisible}/useVisible.js +0 -0
  1658. /package/{utils.d.ts → build/utils.d.ts} +0 -0
  1659. /package/{utils.js → build/utils.js} +0 -0
@@ -0,0 +1,1012 @@
1
+ "use strict";
2
+ var __rest = (this && this.__rest) || function (s, e) {
3
+ var t = {};
4
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
5
+ t[p] = s[p];
6
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
7
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
8
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
9
+ t[p[i]] = s[p[i]];
10
+ }
11
+ return t;
12
+ };
13
+ var __importDefault = (this && this.__importDefault) || function (mod) {
14
+ return (mod && mod.__esModule) ? mod : { "default": mod };
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ const jsx_runtime_1 = require("react/jsx-runtime");
18
+ const react_1 = __importDefault(require("react"));
19
+ const utils_1 = require("@onesy/utils");
20
+ const style_react_1 = require("@onesy/style-react");
21
+ const IconMaterialFormatItalicW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialFormatItalicW100"));
22
+ const IconMaterialFormatUnderlinedW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialFormatUnderlinedW100"));
23
+ const IconMaterialFormatBoldW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialFormatBoldW100"));
24
+ const IconMaterialContentCopyW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialContentCopyW100"));
25
+ const IconMaterialContentCutW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialContentCutW100"));
26
+ const IconMaterialContentPasteW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialContentPasteW100"));
27
+ const IconMaterialFormatAlignLeftW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialFormatAlignLeftW100"));
28
+ const IconMaterialFormatAlignCenterW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialFormatAlignCenterW100"));
29
+ const IconMaterialFormatAlignRightW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialFormatAlignRightW100"));
30
+ const IconMaterialFormatAlignJustifyW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialFormatAlignJustifyW100"));
31
+ const IconMaterialStrikethroughSW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialStrikethroughSW100"));
32
+ const IconMaterialUndoW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialUndoW100"));
33
+ const IconMaterialRedoW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialRedoW100"));
34
+ const IconMaterialFormatClearW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialFormatClearW100"));
35
+ const IconMaterialSuperscriptW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialSuperscriptW100"));
36
+ const IconMaterialSubscriptW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialSubscriptW100"));
37
+ const IconMaterialFormatIndentIncreaseW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialFormatIndentIncreaseW100"));
38
+ const IconMaterialFormatIndentDecreaseW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialFormatIndentDecreaseW100"));
39
+ const IconMaterialFormatListNumberedW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialFormatListNumberedW100"));
40
+ const IconMaterialFormatListBulletedW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialFormatListBulletedW100"));
41
+ const IconMaterialHorizontalRuleW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialHorizontalRuleW100"));
42
+ const IconMaterialFormatColorTextW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialFormatColorTextW100"));
43
+ const IconMaterialFormatColorFillW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialFormatColorFillW100"));
44
+ const IconMaterialAddLinkW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialAddLinkW100"));
45
+ const IconMaterialLinkOffW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialLinkOffW100"));
46
+ const IconMaterialImageW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialImageW100"));
47
+ const IconMaterialFormatQuoteW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialFormatQuoteW100"));
48
+ const IconMaterialVideocamW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialVideocamW100"));
49
+ const IconMaterialPlayArrowW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialPlayArrowW100"));
50
+ const IconMaterialCodeW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialCodeW100"));
51
+ const IconMaterialDeleteSweepW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialDeleteSweepW100"));
52
+ const IconMaterialSelectAllW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialSelectAllW100"));
53
+ const IconMaterialPrintW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialPrintW100"));
54
+ const IconMaterialDownloadW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialDownloadW100"));
55
+ const IconMaterialTableW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialTableW100"));
56
+ const IconMaterialDrawW100_1 = __importDefault(require("@onesy/icons-material-rounded-react/IconMaterialDrawW100"));
57
+ const Type_1 = __importDefault(require("../Type"));
58
+ const Tooltip_1 = __importDefault(require("../Tooltip"));
59
+ const Fade_1 = __importDefault(require("../Fade"));
60
+ const Append_1 = __importDefault(require("../Append"));
61
+ const Select_1 = __importDefault(require("../Select"));
62
+ const Switch_1 = __importDefault(require("../Switch"));
63
+ const Label_1 = __importDefault(require("../Label"));
64
+ const NumericTextField_1 = __importDefault(require("../NumericTextField"));
65
+ const ColorTextField_1 = __importDefault(require("../ColorTextField"));
66
+ const ToggleButtons_1 = __importDefault(require("../ToggleButtons"));
67
+ const ToggleButton_1 = __importDefault(require("../ToggleButton"));
68
+ const Drawing_1 = __importDefault(require("../Drawing"));
69
+ const Divider_1 = __importDefault(require("../Divider"));
70
+ const ClickListener_1 = __importDefault(require("../ClickListener"));
71
+ const TextField_1 = __importDefault(require("../TextField"));
72
+ const Button_1 = __importDefault(require("../Button"));
73
+ const Surface_1 = __importDefault(require("../Surface"));
74
+ const ListItem_1 = __importDefault(require("../ListItem"));
75
+ const Line_1 = __importDefault(require("../Line"));
76
+ const utils_2 = require("../utils");
77
+ const useStyle = (0, style_react_1.style)(theme => ({
78
+ root: {
79
+ width: '100%'
80
+ },
81
+ value: {
82
+ padding: theme.methods.space.value(2, 'px'),
83
+ whiteSpace: 'break-spaces',
84
+ '& p': Object.assign({}, theme.typography.values.b2),
85
+ '& h1': Object.assign({}, theme.typography.values.h1),
86
+ '& h2': Object.assign({}, theme.typography.values.h2),
87
+ '& h3': Object.assign({}, theme.typography.values.h3),
88
+ '& h4': Object.assign({}, theme.typography.values.t1),
89
+ '& h5': Object.assign({}, theme.typography.values.t2),
90
+ '& a': {
91
+ color: theme.palette.color.primary.main,
92
+ textDecoration: 'underline'
93
+ },
94
+ '& blockquote': {
95
+ margin: '16px 0',
96
+ marginInlineStart: '16px',
97
+ padding: `${theme.methods.space.value(2.5, 'px')} ${theme.methods.space.value(2, 'px')}`,
98
+ borderInlineStart: `4px solid ${theme.methods.palette.color.colorToRgb(theme.palette.text.default.primary, theme.palette.light ? 0.04 : 0.2)}`,
99
+ background: theme.methods.palette.color.colorToRgb(theme.palette.text.default.primary, theme.palette.light ? 0.02 : 0.14),
100
+ '& > *': {
101
+ margin: '0px'
102
+ },
103
+ '& > $blockquote': {
104
+ marginBlock: '16px'
105
+ }
106
+ },
107
+ '& iframe': {
108
+ display: 'block',
109
+ maxWidth: '100%',
110
+ margin: '16px auto'
111
+ },
112
+ '& video': {
113
+ display: 'block',
114
+ margin: '16px auto'
115
+ },
116
+ '& code': {
117
+ padding: `${theme.methods.space.value(0.25, 'px')} ${theme.methods.space.value(0.5, 'px')}`,
118
+ borderRadius: theme.methods.shape.radius.value(0.5, 'px'),
119
+ color: theme.palette.text.default.primary,
120
+ background: theme.methods.palette.color.colorToRgb(theme.palette.text.default.primary, theme.palette.light ? 0.04 : 0.1)
121
+ },
122
+ '& pre': {
123
+ margin: '16px 0',
124
+ padding: theme.methods.space.value(2, 'px'),
125
+ borderRadius: theme.methods.shape.radius.value(1, 'px'),
126
+ color: theme.palette.text.default.primary,
127
+ background: theme.methods.palette.color.colorToRgb(theme.palette.text.default.primary, theme.palette.light ? 0.04 : 0.1),
128
+ '& code': {
129
+ padding: '0px',
130
+ background: 'transparent'
131
+ }
132
+ },
133
+ '& table': {
134
+ margin: '16px auto',
135
+ borderCollapse: 'collapse',
136
+ border: `1px solid ${theme.palette.light ? theme.palette.color.neutral[80] : theme.palette.color.neutral[30]}`,
137
+ '& th, & td': Object.assign(Object.assign({}, theme.typography.values.b2), { height: '45px', padding: `${theme.methods.space.value(1.5, 'px')} ${theme.methods.space.value(2, 'px')}`, borderBottom: `1px solid ${theme.palette.light ? theme.palette.color.neutral[80] : theme.palette.color.neutral[30]}`, borderRight: `1px solid ${theme.palette.light ? theme.palette.color.neutral[80] : theme.palette.color.neutral[30]}` }),
138
+ '& th': {
139
+ fontWeight: 500,
140
+ borderBottom: `1px solid ${theme.palette.light ? theme.palette.color.neutral[50] : theme.palette.color.neutral[50]}`
141
+ }
142
+ },
143
+ '& .onesy-Drawing-svg': {
144
+ display: 'block',
145
+ margin: '16px auto',
146
+ background: theme.palette.color.neutral[100]
147
+ }
148
+ },
149
+ toolbars: {
150
+ width: '100%'
151
+ },
152
+ toolbar: {
153
+ width: '100%',
154
+ overflowX: 'auto',
155
+ padding: theme.methods.space.value(1, 'px')
156
+ },
157
+ divider: {
158
+ '&.onesy-Divider-root': {
159
+ margin: 0
160
+ }
161
+ },
162
+ divider_middle: {
163
+ '&.onesy-Divider-root': {
164
+ opacity: theme.palette.light ? 0.07 : 0.24
165
+ }
166
+ },
167
+ divider_end: {
168
+ '&.onesy-Divider-root': {
169
+ opacity: theme.palette.light ? 0.14 : 0.4
170
+ }
171
+ },
172
+ select: {
173
+ '& .onesy-TextField-input-wrapper': {
174
+ height: '40px',
175
+ paddingBlock: theme.methods.space.value(1.25, 'px')
176
+ },
177
+ '& .onesy-Select-input': {
178
+ '& > *': Object.assign(Object.assign({}, theme.typography.values.b2), { fontWeight: 400 })
179
+ }
180
+ },
181
+ miniMenu: {
182
+ padding: theme.methods.space.value(1.5, 'px'),
183
+ borderRadius: theme.methods.shape.radius.value(140, 'px'),
184
+ boxShadow: theme.shadows.values.default[2]
185
+ },
186
+ palette: {
187
+ padding: theme.methods.space.value(1.5, 'px'),
188
+ borderRadius: theme.methods.shape.radius.value(1, 'px'),
189
+ boxShadow: theme.shadows.values.default[2]
190
+ },
191
+ paletteItem: {
192
+ position: 'relative',
193
+ width: '17px',
194
+ height: '17px',
195
+ cursor: 'pointer',
196
+ borderRadius: theme.methods.shape.radius.value(40, 'px'),
197
+ boxShadow: theme.shadows.values.default[1],
198
+ transition: theme.methods.transitions.make('box-shadow'),
199
+ '&:hover': {
200
+ boxShadow: theme.shadows.values.default[2],
201
+ }
202
+ },
203
+ textFieldColor: {
204
+ flex: '1 1 auto'
205
+ },
206
+ inputColor: {
207
+ border: 'none',
208
+ borderRadius: theme.methods.shape.radius.value(40, 'px'),
209
+ overflow: 'hidden',
210
+ width: '17px',
211
+ height: '17px',
212
+ cursor: 'pointer',
213
+ boxShadow: theme.shadows.values.default[1],
214
+ '&::-webkit-color-swatch-wrapper': {
215
+ padding: '0px'
216
+ },
217
+ '&::-webkit-color-swatch': {
218
+ border: 'none'
219
+ }
220
+ }
221
+ }), { name: 'onesy-RichTextEditor' });
222
+ const RichTextEditor = react_1.default.forwardRef((props__, ref) => {
223
+ var _a;
224
+ const theme = (0, style_react_1.useOnesyTheme)();
225
+ const l = theme.l;
226
+ const props = react_1.default.useMemo(() => { var _a, _b, _c, _d, _e, _f, _g, _h; return (Object.assign(Object.assign(Object.assign({}, (_d = (_c = (_b = (_a = theme === null || theme === void 0 ? void 0 : theme.ui) === null || _a === void 0 ? void 0 : _a.elements) === null || _b === void 0 ? void 0 : _b.all) === null || _c === void 0 ? void 0 : _c.props) === null || _d === void 0 ? void 0 : _d.default), (_h = (_g = (_f = (_e = theme === null || theme === void 0 ? void 0 : theme.ui) === null || _e === void 0 ? void 0 : _e.elements) === null || _f === void 0 ? void 0 : _f.onesyRichTextEditor) === null || _g === void 0 ? void 0 : _g.props) === null || _h === void 0 ? void 0 : _h.default), props__)); }, [props__]);
227
+ const Line = react_1.default.useMemo(() => { var _a; return ((_a = theme === null || theme === void 0 ? void 0 : theme.elements) === null || _a === void 0 ? void 0 : _a.Line) || Line_1.default; }, [theme]);
228
+ const Type = react_1.default.useMemo(() => { var _a; return ((_a = theme === null || theme === void 0 ? void 0 : theme.elements) === null || _a === void 0 ? void 0 : _a.Type) || Type_1.default; }, [theme]);
229
+ const Tooltip = react_1.default.useMemo(() => { var _a; return ((_a = theme === null || theme === void 0 ? void 0 : theme.elements) === null || _a === void 0 ? void 0 : _a.Tooltip) || Tooltip_1.default; }, [theme]);
230
+ const Fade = react_1.default.useMemo(() => { var _a; return ((_a = theme === null || theme === void 0 ? void 0 : theme.elements) === null || _a === void 0 ? void 0 : _a.Fade) || Fade_1.default; }, [theme]);
231
+ const Append = react_1.default.useMemo(() => { var _a; return ((_a = theme === null || theme === void 0 ? void 0 : theme.elements) === null || _a === void 0 ? void 0 : _a.Append) || Append_1.default; }, [theme]);
232
+ const Select = react_1.default.useMemo(() => { var _a; return ((_a = theme === null || theme === void 0 ? void 0 : theme.elements) === null || _a === void 0 ? void 0 : _a.Select) || Select_1.default; }, [theme]);
233
+ const Switch = react_1.default.useMemo(() => { var _a; return ((_a = theme === null || theme === void 0 ? void 0 : theme.elements) === null || _a === void 0 ? void 0 : _a.Switch) || Switch_1.default; }, [theme]);
234
+ const Label = react_1.default.useMemo(() => { var _a; return ((_a = theme === null || theme === void 0 ? void 0 : theme.elements) === null || _a === void 0 ? void 0 : _a.Label) || Label_1.default; }, [theme]);
235
+ const NumericTextField = react_1.default.useMemo(() => { var _a; return ((_a = theme === null || theme === void 0 ? void 0 : theme.elements) === null || _a === void 0 ? void 0 : _a.NumericTextField) || NumericTextField_1.default; }, [theme]);
236
+ const ColorTextField = react_1.default.useMemo(() => { var _a; return ((_a = theme === null || theme === void 0 ? void 0 : theme.elements) === null || _a === void 0 ? void 0 : _a.ColorTextField) || ColorTextField_1.default; }, [theme]);
237
+ const ToggleButton = react_1.default.useMemo(() => { var _a; return ((_a = theme === null || theme === void 0 ? void 0 : theme.elements) === null || _a === void 0 ? void 0 : _a.ToggleButton) || ToggleButton_1.default; }, [theme]);
238
+ const ToggleButtons = react_1.default.useMemo(() => { var _a; return ((_a = theme === null || theme === void 0 ? void 0 : theme.elements) === null || _a === void 0 ? void 0 : _a.ToggleButtons) || ToggleButtons_1.default; }, [theme]);
239
+ const Drawing = react_1.default.useMemo(() => { var _a; return ((_a = theme === null || theme === void 0 ? void 0 : theme.elements) === null || _a === void 0 ? void 0 : _a.Drawing) || Drawing_1.default; }, [theme]);
240
+ const Divider = react_1.default.useMemo(() => { var _a; return ((_a = theme === null || theme === void 0 ? void 0 : theme.elements) === null || _a === void 0 ? void 0 : _a.Divider) || Divider_1.default; }, [theme]);
241
+ const ClickListener = react_1.default.useMemo(() => { var _a; return ((_a = theme === null || theme === void 0 ? void 0 : theme.elements) === null || _a === void 0 ? void 0 : _a.ClickListener) || ClickListener_1.default; }, [theme]);
242
+ const TextField = react_1.default.useMemo(() => { var _a; return ((_a = theme === null || theme === void 0 ? void 0 : theme.elements) === null || _a === void 0 ? void 0 : _a.TextField) || TextField_1.default; }, [theme]);
243
+ const Surface = react_1.default.useMemo(() => { var _a; return ((_a = theme === null || theme === void 0 ? void 0 : theme.elements) === null || _a === void 0 ? void 0 : _a.Surface) || Surface_1.default; }, [theme]);
244
+ const Button = react_1.default.useMemo(() => { var _a; return ((_a = theme === null || theme === void 0 ? void 0 : theme.elements) === null || _a === void 0 ? void 0 : _a.Button) || Button_1.default; }, [theme]);
245
+ const ListItem = react_1.default.useMemo(() => { var _a; return ((_a = theme === null || theme === void 0 ? void 0 : theme.elements) === null || _a === void 0 ? void 0 : _a.ListItem) || ListItem_1.default; }, [theme]);
246
+ const { tonal = true, color = 'default', version = 'filled', value, onChange, render, miniMenu = true, miniMenuInclude = [
247
+ 'italic',
248
+ 'underline',
249
+ 'bold',
250
+ 'strike-line',
251
+ 'font-color',
252
+ 'font-background',
253
+ 'align-left',
254
+ 'align-center',
255
+ 'align-right',
256
+ 'align-justify',
257
+ 'link-add',
258
+ 'link-remove',
259
+ 'clear'
260
+ ], exclude, updates = true, actions = true, fontFamilies = [
261
+ { label: 'Arial', value: `Arial, sans-serif` },
262
+ { label: 'Verdana', value: `Verdana, sans-serif` },
263
+ { label: 'Helvetica', value: `Helvetica, sans-serif` },
264
+ { label: 'Georgia', value: `Georgia, sans-serif` },
265
+ { label: 'Roboto', value: `Roboto, sans-serif` },
266
+ { label: 'DM Sans', value: `DM Sans, sans-serif` }
267
+ ], addFontFamilies = [],
268
+ // Update
269
+ IconItalic = IconMaterialFormatItalicW100_1.default, IconUnderline = IconMaterialFormatUnderlinedW100_1.default, IconBold = IconMaterialFormatBoldW100_1.default, IconStrikeLine = IconMaterialStrikethroughSW100_1.default, IconColor = IconMaterialFormatColorTextW100_1.default, IconBackground = IconMaterialFormatColorFillW100_1.default, IconAlignLeft = IconMaterialFormatAlignLeftW100_1.default, IconAlignCenter = IconMaterialFormatAlignCenterW100_1.default, IconAlignRight = IconMaterialFormatAlignRightW100_1.default, IconAlignJustify = IconMaterialFormatAlignJustifyW100_1.default, IconIndent = IconMaterialFormatIndentIncreaseW100_1.default, IconOutdent = IconMaterialFormatIndentDecreaseW100_1.default, IconSuperscript = IconMaterialSuperscriptW100_1.default, IconSubscript = IconMaterialSubscriptW100_1.default, IconListOrdered = IconMaterialFormatListNumberedW100_1.default, IconListUnordered = IconMaterialFormatListBulletedW100_1.default, IconHorizontalRule = IconMaterialHorizontalRuleW100_1.default, IconLinkAdd = IconMaterialAddLinkW100_1.default, IconLinkRemove = IconMaterialLinkOffW100_1.default, IconQuote = IconMaterialFormatQuoteW100_1.default, IconImage = IconMaterialImageW100_1.default, IconVideo = IconMaterialVideocamW100_1.default, IconVideoYoutube = IconMaterialPlayArrowW100_1.default, IconTable = IconMaterialTableW100_1.default, IconCode = IconMaterialCodeW100_1.default, IconDrawing = IconMaterialDrawW100_1.default,
270
+ // Action
271
+ IconCopy = IconMaterialContentCopyW100_1.default, IconCut = IconMaterialContentCutW100_1.default, IconPaste = IconMaterialContentPasteW100_1.default, IconDelete = IconMaterialDeleteSweepW100_1.default, IconClear = IconMaterialFormatClearW100_1.default, IconSelectAll = IconMaterialSelectAllW100_1.default, IconSave = IconMaterialDownloadW100_1.default, IconPrint = IconMaterialPrintW100_1.default, IconUndo = IconMaterialUndoW100_1.default, IconRedo = IconMaterialRedoW100_1.default, AppendProps: AppendProps_, ToolbarProps, ToolbarUpdatesProps, ToolbarActionsProps, ToggleButtonProps: ToggleButtonProps_, ToggleButtonsProps: ToggleButtonsProps_, DividerProps: DividerProps_, SelectProps: SelectProps_, ListItemProps: ListItemProps_, TooltipProps: TooltipProps_, MiniMenuProps: MiniMenuProps_, DrawingProps, IconProps: IconProps_, ColorTextFieldProps, Component = 'div', className, children } = props, other = __rest(props, ["tonal", "color", "version", "value", "onChange", "render", "miniMenu", "miniMenuInclude", "exclude", "updates", "actions", "fontFamilies", "addFontFamilies", "IconItalic", "IconUnderline", "IconBold", "IconStrikeLine", "IconColor", "IconBackground", "IconAlignLeft", "IconAlignCenter", "IconAlignRight", "IconAlignJustify", "IconIndent", "IconOutdent", "IconSuperscript", "IconSubscript", "IconListOrdered", "IconListUnordered", "IconHorizontalRule", "IconLinkAdd", "IconLinkRemove", "IconQuote", "IconImage", "IconVideo", "IconVideoYoutube", "IconTable", "IconCode", "IconDrawing", "IconCopy", "IconCut", "IconPaste", "IconDelete", "IconClear", "IconSelectAll", "IconSave", "IconPrint", "IconUndo", "IconRedo", "AppendProps", "ToolbarProps", "ToolbarUpdatesProps", "ToolbarActionsProps", "ToggleButtonProps", "ToggleButtonsProps", "DividerProps", "SelectProps", "ListItemProps", "TooltipProps", "MiniMenuProps", "DrawingProps", "IconProps", "ColorTextFieldProps", "Component", "className", "children"]);
272
+ const { classes } = useStyle();
273
+ const [inputValues, setInputValues] = react_1.default.useState({});
274
+ const [open, setOpen] = react_1.default.useState({});
275
+ const [selected, setSelected] = react_1.default.useState([]);
276
+ const [selection, setSelection] = react_1.default.useState();
277
+ const refs = {
278
+ root: react_1.default.useRef(null),
279
+ value: react_1.default.useRef(null),
280
+ range: react_1.default.useRef(null),
281
+ inputValues: react_1.default.useRef(null),
282
+ open: react_1.default.useRef(null),
283
+ props: react_1.default.useRef(null),
284
+ selected: react_1.default.useRef(null),
285
+ miniMenu: react_1.default.useRef(null),
286
+ miniMenuInclude: react_1.default.useRef(null),
287
+ miniMenuElements: {
288
+ color: react_1.default.useRef(null),
289
+ colorPalette: react_1.default.useRef(null),
290
+ background: react_1.default.useRef(null),
291
+ backgroundPalette: react_1.default.useRef(null),
292
+ linkAdd: react_1.default.useRef(null),
293
+ linkAddInput: react_1.default.useRef(null),
294
+ linkRemove: react_1.default.useRef(null),
295
+ },
296
+ elements: {
297
+ color: react_1.default.useRef(null),
298
+ background: react_1.default.useRef(null),
299
+ linkAdd: react_1.default.useRef(null),
300
+ linkRemove: react_1.default.useRef(null),
301
+ quote: react_1.default.useRef(null),
302
+ image: react_1.default.useRef(null),
303
+ video: react_1.default.useRef(null),
304
+ videoYoutube: react_1.default.useRef(null),
305
+ table: react_1.default.useRef(null),
306
+ drawing: react_1.default.useRef(null),
307
+ drawingSvg: react_1.default.useRef(null),
308
+ drawingSize: react_1.default.useRef(null),
309
+ drawingSelect: react_1.default.useRef(null),
310
+ drawingPalette: react_1.default.useRef(null),
311
+ code: react_1.default.useRef(null)
312
+ },
313
+ rootDocument: react_1.default.useRef(null),
314
+ rootWindow: react_1.default.useRef(null)
315
+ };
316
+ refs.inputValues.current = inputValues;
317
+ refs.open.current = open;
318
+ refs.props.current = props;
319
+ refs.selected.current = selected;
320
+ refs.miniMenuInclude.current = miniMenuInclude;
321
+ const rootDocument = (0, utils_1.isEnvironment)('browser') && (((_a = refs.root.current) === null || _a === void 0 ? void 0 : _a.ownerDocument) || window.document);
322
+ const rootWindow = rootDocument && (rootDocument.defaultView || window);
323
+ refs.rootDocument.current = rootDocument;
324
+ refs.rootWindow.current = rootWindow;
325
+ react_1.default.useEffect(() => {
326
+ // Add value as innerHTML
327
+ refs.value.current.innerHTML = value;
328
+ }, [value]);
329
+ react_1.default.useEffect(() => {
330
+ var _a, _b;
331
+ const selection_ = refs.rootWindow.current.getSelection();
332
+ if (selection_.anchorNode &&
333
+ !((_b = (_a = selection_.anchorNode) === null || _a === void 0 ? void 0 : _a.className) === null || _b === void 0 ? void 0 : _b.includes('TextField')))
334
+ refs.range.current = selection_.getRangeAt(0);
335
+ }, [open]);
336
+ react_1.default.useEffect(() => {
337
+ if (!selection) {
338
+ updateOpen('colorMiniMenu', false);
339
+ updateOpen('backgroundMiniMenu', false);
340
+ updateOpen('linkMiniMenu', false);
341
+ }
342
+ }, [selection]);
343
+ const query = (command) => {
344
+ return (0, utils_1.parse)(refs.rootDocument.current.queryCommandValue(command));
345
+ };
346
+ const includesMinMenu = (...args) => args.some(item => refs.miniMenuInclude.current.includes(item));
347
+ const clear = (element = refs.value.current) => {
348
+ const children_ = Array.from(element.children);
349
+ const toRemove = [];
350
+ const other_ = [];
351
+ children_.forEach((item, index) => {
352
+ ((item.tagName === 'SPAN' && !item.innerHTML) ||
353
+ (item.tagName === 'BR' && index > 0 && (children_[index - 1].tagName === 'SPAN' && !children_[index - 1].innerHTML))) ? toRemove.push(item) : other_.push(item);
354
+ });
355
+ toRemove.forEach((item) => item.remove());
356
+ other_.forEach(item => clear(item));
357
+ };
358
+ const onUpdate = (event) => {
359
+ // Clear from empty element values
360
+ clear();
361
+ if ((0, utils_1.is)('function', onChange))
362
+ onChange(event);
363
+ };
364
+ const updateInputValues = (property, itemValue) => {
365
+ setInputValues(values => (Object.assign(Object.assign({}, values), { [property]: itemValue })));
366
+ };
367
+ const updateOpen = (property, itemValue) => {
368
+ setOpen(values => (Object.assign(Object.assign({}, values), { [property]: itemValue })));
369
+ };
370
+ const paste = async () => {
371
+ const value_ = await navigator.clipboard.read();
372
+ if (value_) {
373
+ let values = '';
374
+ for (const item of Array.from(value_)) {
375
+ const valueItem = await item.getType('text/html');
376
+ values += await valueItem.text();
377
+ }
378
+ refs.rootDocument.current.execCommand('insertHTML', undefined, values);
379
+ }
380
+ };
381
+ const method = react_1.default.useCallback((command) => (argument) => {
382
+ switch (command) {
383
+ // updates
384
+ case 'italic':
385
+ refs.rootDocument.current.execCommand('italic');
386
+ if (query('italic'))
387
+ setSelected(values => [...values, 'italic']);
388
+ else
389
+ setSelected(values => values.filter(item => item !== 'italic'));
390
+ break;
391
+ case 'underline':
392
+ refs.rootDocument.current.execCommand('underline');
393
+ if (query('underline'))
394
+ setSelected(values => [...values, 'underline']);
395
+ else
396
+ setSelected(values => values.filter(item => item !== 'underline'));
397
+ break;
398
+ case 'bold':
399
+ refs.rootDocument.current.execCommand('bold');
400
+ if (query('bold'))
401
+ setSelected(values => [...values, 'bold']);
402
+ else
403
+ setSelected(values => values.filter(item => item !== 'bold'));
404
+ break;
405
+ case 'strike-line':
406
+ refs.rootDocument.current.execCommand('strikeThrough');
407
+ if (query('strikeThrough'))
408
+ setSelected(values => [...values, 'strike-line']);
409
+ else
410
+ setSelected(values => values.filter(item => item !== 'strike-line'));
411
+ break;
412
+ case 'align-left':
413
+ refs.rootDocument.current.execCommand('justifyLeft');
414
+ if (query('justifyLeft'))
415
+ setSelected(values => [...values.filter(item => !item.includes('align')), 'align-left']);
416
+ else
417
+ setSelected(values => values.filter(item => item !== 'align-left'));
418
+ break;
419
+ case 'align-center':
420
+ refs.rootDocument.current.execCommand('justifyCenter');
421
+ if (query('justifyCenter'))
422
+ setSelected(values => [...values.filter(item => !item.includes('align')), 'align-center']);
423
+ else
424
+ setSelected(values => values.filter(item => item !== 'align-center'));
425
+ break;
426
+ case 'align-right':
427
+ refs.rootDocument.current.execCommand('justifyRight');
428
+ if (query('justifyRight'))
429
+ setSelected(values => [...values.filter(item => !item.includes('align')), 'align-right']);
430
+ else
431
+ setSelected(values => values.filter(item => item !== 'align-right'));
432
+ break;
433
+ case 'align-justify':
434
+ refs.rootDocument.current.execCommand('justifyFull');
435
+ if (query('justifyFull'))
436
+ setSelected(values => [...values.filter(item => !item.includes('align')), 'align-justify']);
437
+ else
438
+ setSelected(values => values.filter(item => item !== 'align-justify'));
439
+ break;
440
+ case 'superscript':
441
+ refs.rootDocument.current.execCommand('superscript');
442
+ if (query('superscript'))
443
+ setSelected(values => [...values, 'superscript']);
444
+ else
445
+ setSelected(values => values.filter(item => item !== 'superscript'));
446
+ break;
447
+ case 'subscript':
448
+ refs.rootDocument.current.execCommand('subscript');
449
+ if (query('subscript'))
450
+ setSelected(values => [...values, 'subscript']);
451
+ else
452
+ setSelected(values => values.filter(item => item !== 'subscript'));
453
+ break;
454
+ case 'indent':
455
+ refs.rootDocument.current.execCommand('indent');
456
+ break;
457
+ case 'outdent':
458
+ refs.rootDocument.current.execCommand('outdent');
459
+ break;
460
+ case 'font-version':
461
+ refs.rootDocument.current.execCommand('formatBlock', undefined, argument);
462
+ break;
463
+ case 'font-family':
464
+ refs.rootDocument.current.execCommand('styleWithCSS', true);
465
+ refs.rootDocument.current.execCommand('fontName', undefined, argument);
466
+ refs.rootDocument.current.execCommand('styleWithCSS', false);
467
+ break;
468
+ case 'font-size':
469
+ refs.rootDocument.current.execCommand('styleWithCSS', true);
470
+ refs.rootDocument.current.execCommand('fontSize', undefined, argument);
471
+ refs.rootDocument.current.execCommand('styleWithCSS', false);
472
+ break;
473
+ case 'font-color':
474
+ refs.rootDocument.current.execCommand('styleWithCSS', true);
475
+ refs.rootDocument.current.execCommand('foreColor', undefined, argument);
476
+ refs.rootDocument.current.execCommand('styleWithCSS', false);
477
+ break;
478
+ case 'font-background':
479
+ refs.rootDocument.current.execCommand('styleWithCSS', true);
480
+ refs.rootDocument.current.execCommand('backColor', undefined, argument);
481
+ refs.rootDocument.current.execCommand('styleWithCSS', false);
482
+ break;
483
+ case 'list-ordered':
484
+ refs.rootDocument.current.execCommand('insertOrderedList');
485
+ if (query('insertOrderedList'))
486
+ setSelected(values => [...values.filter(item => !item.includes('list')), 'list-ordered']);
487
+ else
488
+ setSelected(values => values.filter(item => item !== 'list-ordered'));
489
+ break;
490
+ case 'list-unordered':
491
+ refs.rootDocument.current.execCommand('insertUnorderedList');
492
+ if (query('insertUnorderedList'))
493
+ setSelected(values => [...values.filter(item => !item.includes('list')), 'list-unordered']);
494
+ else
495
+ setSelected(values => values.filter(item => item !== 'list-unordered'));
496
+ break;
497
+ case 'horizontal-rule':
498
+ refs.rootDocument.current.execCommand('insertHorizontalRule');
499
+ break;
500
+ case 'link-add':
501
+ refs.rootDocument.current.execCommand('createLink', undefined, argument);
502
+ break;
503
+ case 'link-remove':
504
+ refs.rootDocument.current.execCommand('unlink');
505
+ break;
506
+ case 'image':
507
+ refs.rootDocument.current.execCommand('insertImage', undefined, argument);
508
+ break;
509
+ case 'html':
510
+ refs.rootDocument.current.execCommand('insertHTML', undefined, argument);
511
+ break;
512
+ // actions
513
+ case 'copy':
514
+ refs.rootDocument.current.execCommand('copy');
515
+ break;
516
+ case 'cut':
517
+ refs.rootDocument.current.execCommand('cut');
518
+ break;
519
+ case 'paste':
520
+ if (refs.rootDocument.current.queryCommandSupported('paste'))
521
+ refs.rootDocument.current.execCommand('paste');
522
+ else
523
+ paste();
524
+ break;
525
+ case 'delete':
526
+ refs.rootDocument.current.execCommand('delete');
527
+ break;
528
+ case 'clear':
529
+ refs.rootDocument.current.execCommand('removeFormat');
530
+ break;
531
+ case 'select-all':
532
+ refs.rootDocument.current.execCommand('selectAll');
533
+ break;
534
+ case 'undo':
535
+ refs.rootDocument.current.execCommand('undo');
536
+ break;
537
+ case 'redo':
538
+ refs.rootDocument.current.execCommand('redo');
539
+ break;
540
+ default:
541
+ break;
542
+ }
543
+ }, []);
544
+ const includes = (...args) => !(0, utils_1.is)('array', exclude) || args.some(item => !exclude.includes(item));
545
+ // italic, underline, bold
546
+ // updates toolbar
547
+ const updateOptions = ['font-family', 'font-version', 'font-size', 'font-color', 'font-background', 'italic', 'underline', 'bold', 'strike-line', 'align-left', 'align-center', 'align-right', 'align-justify', 'superscript', 'subscript', 'indent', 'outdent', 'list-ordered', 'list-unordered', 'horizontal-rule', 'link-add', 'link-remove', 'quote', 'image', 'video', 'video-youtube', 'table', 'drawing', 'code'];
548
+ const updates_ = updates && (!(0, utils_1.is)('array', exclude) || includes(...updateOptions));
549
+ // copy, paste, cut
550
+ // action toolbar
551
+ const actions_ = actions && (!(0, utils_1.is)('array', exclude) || includes('copy', 'paste', 'cut', 'clear', 'undo', 'redo', 'delete', 'select-all', 'save', 'print'));
552
+ const AppendProps = Object.assign({ padding: [14, 14] }, AppendProps_);
553
+ const DividerProps = Object.assign({ color: 'inherit' }, DividerProps_);
554
+ const TooltipProps = Object.assign({ position: 'bottom', interactive: false }, TooltipProps_);
555
+ const ToggleButtonsProps = Object.assign({ tonal,
556
+ color, version: 'text', border: false }, ToggleButtonsProps_);
557
+ const ToggleButtonProps = Object.assign({ size: 'small' }, ToggleButtonProps_);
558
+ const MiniMenuProps = Object.assign({ tonal, color: refs.props.current.color !== undefined ? refs.props.current.color : 'themed' }, MiniMenuProps_);
559
+ const SelectProps = Object.assign({ tonal, color: refs.props.current.color !== undefined ? refs.props.current.color : 'themed', version: 'outlined', size: 'small', ListProps: {
560
+ tonal,
561
+ color: refs.props.current.color !== undefined ? refs.props.current.color : 'themed'
562
+ }, MenuProps: {
563
+ portal: true
564
+ } }, SelectProps_);
565
+ const ListItemProps = Object.assign({ size: 'small', PrimaryProps: {
566
+ style: {
567
+ fontFamily: 'inherit'
568
+ }
569
+ } }, ListItemProps_);
570
+ const IconProps = Object.assign({ size: 'small' }, IconProps_);
571
+ const WrapperToggleButton = react_1.default.useCallback(react_1.default.forwardRef((props_, ref_) => {
572
+ const { open: open_, name, children: children_ } = props_, other_ = __rest(props_, ["open", "name", "children"]);
573
+ return ((0, jsx_runtime_1.jsx)(Tooltip, Object.assign({ open: open_ !== undefined ? open_ : undefined, name: name }, TooltipProps, { children: react_1.default.cloneElement(children_, Object.assign(Object.assign({}, other_), children_.props)) })));
574
+ }), []);
575
+ const WrapperAppend = react_1.default.useCallback((props_) => {
576
+ const { open: open_, element, anchorElement, onClose, children: children_ } = props_, other_ = __rest(props_, ["open", "element", "anchorElement", "onClose", "children"]);
577
+ return ((0, jsx_runtime_1.jsx)(Append, Object.assign({ open: open_, element: ((0, jsx_runtime_1.jsx)("div", { children: (0, jsx_runtime_1.jsx)(Fade, Object.assign({ in: open_, add: true }, { children: react_1.default.cloneElement(element) })) })), anchorElement: anchorElement, portal: true, alignment: 'center', position: 'bottom' }, AppendProps, { children: react_1.default.cloneElement(children_, Object.assign(Object.assign({}, other_), children_.props)) })));
578
+ }, []);
579
+ const onMouseDown = react_1.default.useCallback(() => {
580
+ var _a, _b;
581
+ const selection_ = refs.rootWindow.current.getSelection();
582
+ if (selection_.anchorNode &&
583
+ !((_b = (_a = selection_.anchorNode) === null || _a === void 0 ? void 0 : _a.className) === null || _b === void 0 ? void 0 : _b.includes('TextField')))
584
+ refs.range.current = selection_.getRangeAt(0);
585
+ }, []);
586
+ const onMouseUp = react_1.default.useCallback(() => {
587
+ if (refs.range.current) {
588
+ const selection_ = refs.rootWindow.current.getSelection();
589
+ selection_.removeAllRanges();
590
+ selection_.addRange(refs.range.current);
591
+ }
592
+ }, []);
593
+ const PaletteItem = react_1.default.useCallback((props_) => {
594
+ const { color: color_ } = props_, other_ = __rest(props_, ["color"]);
595
+ return ((0, jsx_runtime_1.jsx)("span", Object.assign({ className: (0, style_react_1.classNames)([
596
+ (0, utils_2.staticClassName)('RichTextEditor', theme) && [
597
+ 'onesy-RichTextEditor-palette-item'
598
+ ],
599
+ classes.paletteItem
600
+ ]), style: {
601
+ background: color_
602
+ } }, other_)));
603
+ }, []);
604
+ const Palette = react_1.default.useCallback(react_1.default.forwardRef((props_, ref_) => {
605
+ const { version: version_, onUpdate: onUpdate_, onClose } = props_, other_ = __rest(props_, ["version", "onUpdate", "onClose"]);
606
+ return ((0, jsx_runtime_1.jsxs)(Line, Object.assign({ ref: ref_, gap: 1, direction: 'column', tonal: tonal, color: refs.props.current.color !== undefined ? refs.props.current.color : 'themed', Component: Surface, className: (0, style_react_1.classNames)([
607
+ (0, utils_2.staticClassName)('RichTextEditor', theme) && [
608
+ 'onesy-RichTextEditor-palette'
609
+ ],
610
+ classes.palette
611
+ ]) }, other_, { children: [(0, jsx_runtime_1.jsxs)(Line, Object.assign({ gap: 0.5, onMouseUp: onMouseUp, onMouseDown: onMouseDown }, { children: [(0, jsx_runtime_1.jsxs)(Line, Object.assign({ gap: 0.5, direction: 'row', style: {
612
+ width: '100%'
613
+ } }, { children: [(0, jsx_runtime_1.jsx)(PaletteItem, { color: '#000000', onClick: () => {
614
+ onUpdate_('#000000');
615
+ onClose();
616
+ } }), (0, jsx_runtime_1.jsx)(PaletteItem, { color: '#ffffff', onClick: () => {
617
+ onUpdate_('#ffffff');
618
+ onClose();
619
+ } })] })), Object.keys(style_react_1.colors).filter(item => !['black', 'white'].includes(item)).map((item, index) => ((0, jsx_runtime_1.jsx)(Line, Object.assign({ gap: 0.5, direction: 'row', style: {
620
+ width: '100%'
621
+ } }, { children: Object.keys(style_react_1.colors[item]).map((item_, index_) => ((0, jsx_runtime_1.jsx)(PaletteItem, { color: style_react_1.colors[item][item_], onClick: () => {
622
+ if (refs.range.current) {
623
+ const selection_ = refs.rootWindow.current.getSelection();
624
+ selection_.removeAllRanges();
625
+ selection_.addRange(refs.range.current);
626
+ }
627
+ onUpdate_(style_react_1.colors[item][item_]);
628
+ onClose();
629
+ } }, index_))) }), index)))] })), (0, jsx_runtime_1.jsx)(Divider, {}), (0, jsx_runtime_1.jsxs)(Line, Object.assign({ gap: 0.5, direction: 'row', align: 'center', style: {
630
+ width: '100%'
631
+ } }, { children: [(0, jsx_runtime_1.jsx)(ColorTextField, Object.assign({ tonal: tonal, color: color, name: l('Custom color'), version: 'outlined', size: 'small', value: refs.inputValues.current[version_], onChange: valueNew => updateInputValues(version_, valueNew) }, ColorTextFieldProps, { className: (0, style_react_1.classNames)([
632
+ (0, utils_2.staticClassName)('RichTextEditor', theme) && [
633
+ 'onesy-RichTextEditor-text-field-color'
634
+ ],
635
+ ColorTextFieldProps === null || ColorTextFieldProps === void 0 ? void 0 : ColorTextFieldProps.className,
636
+ classes.textFieldColor
637
+ ]) })), (0, jsx_runtime_1.jsx)(Button, Object.assign({ tonal: tonal, color: 'inherit', version: 'text', size: 'small', onClick: () => {
638
+ if (refs.range.current) {
639
+ const selection_ = refs.rootWindow.current.getSelection();
640
+ selection_.removeAllRanges();
641
+ selection_.addRange(refs.range.current);
642
+ }
643
+ onUpdate_(refs.inputValues.current[version_]);
644
+ onClose();
645
+ } }, { children: "Apply" }))] }))] })));
646
+ }), []);
647
+ const Input = react_1.default.useCallback(react_1.default.forwardRef((props_, ref_) => {
648
+ const { label, labelButton, value: value__, onChange: onChange__, onClick, InputComponent = TextField, InputProps } = props_, other_ = __rest(props_, ["label", "labelButton", "value", "onChange", "onClick", "InputComponent", "InputProps"]);
649
+ return ((0, jsx_runtime_1.jsx)(Line, Object.assign({ ref: ref_, gap: 1, direction: 'column', tonal: tonal, color: refs.props.current.color !== undefined ? refs.props.current.color : 'themed', Component: Surface, className: (0, style_react_1.classNames)([
650
+ (0, utils_2.staticClassName)('RichTextEditor', theme) && [
651
+ 'onesy-RichTextEditor-palette'
652
+ ],
653
+ classes.palette
654
+ ]) }, other_, { children: (0, jsx_runtime_1.jsxs)(Line, Object.assign({ gap: 0.5, direction: 'row', align: 'center', style: {
655
+ width: '100%'
656
+ } }, { children: [(0, jsx_runtime_1.jsx)(InputComponent, Object.assign({ tonal: tonal, color: color, name: label, version: 'outlined', size: 'small', value: value__, onChange: onChange__, className: (0, style_react_1.classNames)([
657
+ (0, utils_2.staticClassName)('RichTextEditor', theme) && [
658
+ 'onesy-RichTextEditor-text-field-color'
659
+ ],
660
+ classes.textFieldColor
661
+ ]) }, InputProps)), (0, jsx_runtime_1.jsx)(Button, Object.assign({ tonal: tonal, color: 'inherit', version: 'text', size: 'small', onClick: onClick }, { children: labelButton }))] })) })));
662
+ }), []);
663
+ const font_families = [
664
+ ...fontFamilies,
665
+ ...addFontFamilies
666
+ ];
667
+ const font_sizes = [
668
+ { label: '11', value: 1 },
669
+ { label: '14', value: 2 },
670
+ { label: '16', value: 3 },
671
+ { label: '18', value: 4 },
672
+ { label: '24', value: 5 },
673
+ { label: '32', value: 6 },
674
+ { label: '48', value: 7 }
675
+ ];
676
+ const font_versions = [
677
+ { label: (0, jsx_runtime_1.jsx)(Type, Object.assign({ version: 'b2' }, { children: l('Normal text') })), value: 'p' },
678
+ { label: (0, jsx_runtime_1.jsx)(Type, Object.assign({ version: 'h1' }, { children: l('Heading 1') })), value: 'h1' },
679
+ { label: (0, jsx_runtime_1.jsx)(Type, Object.assign({ version: 'h2' }, { children: l('Heading 2') })), value: 'h2' },
680
+ { label: (0, jsx_runtime_1.jsx)(Type, Object.assign({ version: 'h3' }, { children: l('Heading 3') })), value: 'h3' },
681
+ { label: (0, jsx_runtime_1.jsx)(Type, Object.assign({ version: 't1' }, { children: l('Heading 4') })), value: 'h4' },
682
+ { label: (0, jsx_runtime_1.jsx)(Type, Object.assign({ version: 't2' }, { children: l('Heading 5') })), value: 'h5' }
683
+ ];
684
+ const queryValueUpdate = () => {
685
+ const selected_ = [];
686
+ const inputValues_ = Object.assign({}, inputValues);
687
+ const updateOptionValues = [
688
+ { name: 'italic', command: 'italic' },
689
+ { name: 'underline', command: 'underline' },
690
+ { name: 'bold', command: 'bold' },
691
+ { name: 'strike-line', command: 'strikeThrough' },
692
+ { name: 'align-left', command: 'justifyLeft' },
693
+ { name: 'align-center', command: 'justifyCenter' },
694
+ { name: 'align-right', command: 'justifyRight' },
695
+ { name: 'align-justify', command: 'justifyFull' },
696
+ { name: 'superscript', command: 'superscript' },
697
+ { name: 'subscript', command: 'subscript' },
698
+ { name: 'list-ordered', command: 'insertOrderedList' },
699
+ { name: 'list-unordered', command: 'insertUnorderedList' }
700
+ ];
701
+ updateOptionValues.forEach(item => {
702
+ if (query(item.command))
703
+ selected_.push(item.name);
704
+ });
705
+ // Font version
706
+ const fontVersion = query('formatBlock');
707
+ const fontVersionValue = font_versions.find(item_ => item_.value === fontVersion) || font_versions[0];
708
+ inputValues_['font-version'] = fontVersionValue === null || fontVersionValue === void 0 ? void 0 : fontVersionValue.value;
709
+ // Font family
710
+ const fontFamily = query('fontName');
711
+ const fontFamilyValue = font_families.find(item_ => fontFamily === null || fontFamily === void 0 ? void 0 : fontFamily.includes(item_.label)) || font_families.find(item_ => item_.label === 'DM Sans');
712
+ inputValues_['font-family'] = fontFamilyValue === null || fontFamilyValue === void 0 ? void 0 : fontFamilyValue.value;
713
+ // Font version
714
+ const fontSize = query('fontSize');
715
+ const fontSizeValue = font_sizes.find(item_ => item_.value === fontSize) || font_sizes.find(item_ => item_.label === '14');
716
+ inputValues_['font-size'] = fontSizeValue === null || fontSizeValue === void 0 ? void 0 : fontSizeValue.value;
717
+ setInputValues(inputValues_);
718
+ setSelected(selected_);
719
+ };
720
+ const onMouseUpValue = react_1.default.useCallback(() => {
721
+ queryValueUpdate();
722
+ setTimeout(() => {
723
+ const selection_ = refs.rootWindow.current.getSelection();
724
+ if (!selection_.anchorNode || !refs.value.current.contains(selection_.anchorNode))
725
+ return setSelection('');
726
+ const rect = selection_.getRangeAt(0).getBoundingClientRect();
727
+ setSelection(Math.round(rect.width) ? rect : '');
728
+ });
729
+ }, []);
730
+ const onMouseDownValue = react_1.default.useCallback(() => {
731
+ queryValueUpdate();
732
+ }, []);
733
+ const updateElements = {
734
+ 'font-version': ((0, jsx_runtime_1.jsx)(Select, Object.assign({ name: l('Font Version'), valueDefault: font_versions.find(item => item.value.includes('p')).value, value: inputValues['font-version'], onChange: (valueNew) => {
735
+ updateInputValues('font-version', valueNew);
736
+ method('font-version')(valueNew);
737
+ }, onMouseUp: onMouseUp, onMouseDown: onMouseDown }, SelectProps, { className: (0, style_react_1.classNames)([
738
+ (0, utils_2.staticClassName)('RichTextEditor', theme) && [
739
+ 'onesy-RichTextEditor-select'
740
+ ],
741
+ SelectProps === null || SelectProps === void 0 ? void 0 : SelectProps.className,
742
+ classes.select
743
+ ]), style: {
744
+ minWidth: '150px'
745
+ } }, { children: font_versions.map(item => ((0, jsx_runtime_1.jsx)(ListItem, Object.assign({ primary: item.label, value: item.value, button: true }, ListItemProps), item.value))) }))),
746
+ 'font-family': ((0, jsx_runtime_1.jsx)(Select, Object.assign({ name: l('Font Family'), valueDefault: font_families.find(item => item.label.includes('DM Sans')).value, value: inputValues['font-family'], onChange: (valueNew) => {
747
+ updateInputValues('font-family', valueNew);
748
+ method('font-family')(valueNew);
749
+ }, onMouseUp: onMouseUp, onMouseDown: onMouseDown }, SelectProps, { className: (0, style_react_1.classNames)([
750
+ (0, utils_2.staticClassName)('RichTextEditor', theme) && [
751
+ 'onesy-RichTextEditor-select'
752
+ ],
753
+ SelectProps === null || SelectProps === void 0 ? void 0 : SelectProps.className,
754
+ classes.select
755
+ ]), style: {
756
+ minWidth: '140px'
757
+ } }, { children: font_families.map(item => ((0, jsx_runtime_1.jsx)(ListItem, Object.assign({ primary: item.label, value: item.value, button: true, style: {
758
+ fontFamily: item.value
759
+ } }, ListItemProps), item.value))) }))),
760
+ 'font-size': ((0, jsx_runtime_1.jsx)(Select, Object.assign({ name: l('Font Size'), valueDefault: +font_sizes.find(item => item.label.includes('14')).value, value: inputValues['font-size'], onChange: (valueNew) => {
761
+ updateInputValues('font-size', +valueNew);
762
+ method('font-size')(+valueNew);
763
+ }, onMouseUp: onMouseUp, onMouseDown: onMouseDown }, SelectProps, { className: (0, style_react_1.classNames)([
764
+ (0, utils_2.staticClassName)('RichTextEditor', theme) && [
765
+ 'onesy-RichTextEditor-select'
766
+ ],
767
+ SelectProps === null || SelectProps === void 0 ? void 0 : SelectProps.className,
768
+ classes.select
769
+ ]) }, { children: font_sizes.map(item => ((0, jsx_runtime_1.jsx)(ListItem, Object.assign({ primary: item.label, value: item.value, button: true }, ListItemProps), item.value))) }))),
770
+ 'italic': ((0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Italic') }, { children: (0, utils_1.is)('function', render) ? render('italic', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({}, ToggleButtonProps, { selected: refs.selected.current.includes('italic'), onClick: method('italic') }, { children: (0, jsx_runtime_1.jsx)(IconItalic, Object.assign({}, IconProps)) }))) }))),
771
+ 'underline': ((0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Underline') }, { children: (0, utils_1.is)('function', render) ? render('underline', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({}, ToggleButtonProps, { selected: refs.selected.current.includes('underline'), onClick: method('underline') }, { children: (0, jsx_runtime_1.jsx)(IconUnderline, Object.assign({}, IconProps)) }))) }))),
772
+ 'bold': ((0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Bold'), onClick: method('bold') }, { children: (0, utils_1.is)('function', render) ? render('bold', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({}, ToggleButtonProps, { selected: refs.selected.current.includes('bold') }, { children: (0, jsx_runtime_1.jsx)(IconBold, Object.assign({}, IconProps)) }))) }))),
773
+ 'strike-line': ((0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Strike Line'), onClick: method('strike-line') }, { children: (0, utils_1.is)('function', render) ? render('strike-line', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({}, ToggleButtonProps, { selected: refs.selected.current.includes('strike-line') }, { children: (0, jsx_runtime_1.jsx)(IconStrikeLine, Object.assign({}, IconProps)) }))) }))),
774
+ 'font-color': ((0, jsx_runtime_1.jsx)(WrapperAppend, Object.assign({ open: refs.open.current.color, anchorElement: refs.elements.color.current, element: ((0, jsx_runtime_1.jsx)(ClickListener, Object.assign({ onClickOutside: () => updateOpen('color', false), include: [refs.elements.color.current] }, { children: (0, jsx_runtime_1.jsx)(Palette, { version: 'font-color', onClose: () => updateOpen('color', false), onUpdate: method('font-color') }) }))) }, { children: (0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Text Color'), open: refs.open.current.color ? false : undefined }, { children: (0, utils_1.is)('function', render) ? render('font-color', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({ ref: refs.elements.color }, ToggleButtonProps, { selected: refs.open.current.color, onClick: () => updateOpen('color', !refs.open.current.color) }, { children: (0, jsx_runtime_1.jsx)(IconColor, Object.assign({}, IconProps)) }))) })) }))),
775
+ 'font-color-mini-menu': ((0, jsx_runtime_1.jsx)(WrapperAppend, Object.assign({ open: refs.open.current.colorMiniMenu, anchorElement: refs.miniMenuElements.color, element: ((0, jsx_runtime_1.jsx)(ClickListener, Object.assign({ onClickOutside: () => updateOpen('colorMiniMenu', false), include: [refs.miniMenuElements.color] }, { children: (0, jsx_runtime_1.jsx)(Palette, { ref: refs.miniMenuElements.colorPalette, version: 'font-color', onClose: () => updateOpen('colorMiniMenu', false), onUpdate: method('font-color') }) }))) }, { children: (0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Text Color'), open: refs.open.current.colorMiniMenu ? false : undefined }, { children: (0, utils_1.is)('function', render) ? render('font-color', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({ ref: refs.miniMenuElements.color }, ToggleButtonProps, { selected: refs.open.current.colorMiniMenu, onClick: () => updateOpen('colorMiniMenu', !refs.open.current.colorMiniMenu) }, { children: (0, jsx_runtime_1.jsx)(IconColor, Object.assign({}, IconProps)) }))) })) }))),
776
+ 'font-background': ((0, jsx_runtime_1.jsx)(WrapperAppend, Object.assign({ open: refs.open.current.background, anchorElement: refs.elements.background.current, element: ((0, jsx_runtime_1.jsx)(ClickListener, Object.assign({ onClickOutside: () => updateOpen('background', false), include: [refs.elements.background.current] }, { children: (0, jsx_runtime_1.jsx)(Palette, { version: 'font-background', onClose: () => updateOpen('background', false), onUpdate: method('font-background') }) }))) }, { children: (0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Background Color'), open: refs.open.current.background ? false : undefined }, { children: (0, utils_1.is)('function', render) ? render('font-background', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({ ref: refs.elements.background }, ToggleButtonProps, { selected: refs.open.current.background, onClick: () => updateOpen('background', !refs.open.current.background) }, { children: (0, jsx_runtime_1.jsx)(IconBackground, Object.assign({}, IconProps)) }))) })) }))),
777
+ 'font-background-mini-menu': ((0, jsx_runtime_1.jsx)(WrapperAppend, Object.assign({ open: refs.open.current.backgroundMiniMenu, anchorElement: refs.miniMenuElements.background, element: ((0, jsx_runtime_1.jsx)(ClickListener, Object.assign({ onClickOutside: () => updateOpen('backgroundMiniMenu', false), include: [refs.miniMenuElements.background] }, { children: (0, jsx_runtime_1.jsx)(Palette, { ref: refs.miniMenuElements.backgroundPalette, version: 'font-background', onClose: () => updateOpen('backgroundMiniMenu', false), onUpdate: method('font-background') }) }))) }, { children: (0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Text Color'), open: refs.open.current.backgroundMiniMenu ? false : undefined }, { children: (0, utils_1.is)('function', render) ? render('font-background', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({ ref: refs.miniMenuElements.background }, ToggleButtonProps, { selected: refs.open.current.backgroundMiniMenu, onClick: () => updateOpen('backgroundMiniMenu', !refs.open.current.backgroundMiniMenu) }, { children: (0, jsx_runtime_1.jsx)(IconBackground, Object.assign({}, IconProps)) }))) })) }))),
778
+ 'align-left': ((0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Align Left') }, { children: (0, utils_1.is)('function', render) ? render('align-left', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({}, ToggleButtonProps, { selected: refs.selected.current.includes('align-left'), onClick: method('align-left') }, { children: (0, jsx_runtime_1.jsx)(IconAlignLeft, Object.assign({}, IconProps)) }))) }))),
779
+ 'align-center': ((0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Align Center') }, { children: (0, utils_1.is)('function', render) ? render('align-center', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({}, ToggleButtonProps, { selected: refs.selected.current.includes('align-center'), onClick: method('align-center') }, { children: (0, jsx_runtime_1.jsx)(IconAlignCenter, Object.assign({}, IconProps)) }))) }))),
780
+ 'align-right': ((0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Align Right') }, { children: (0, utils_1.is)('function', render) ? render('align-right', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({}, ToggleButtonProps, { selected: refs.selected.current.includes('align-right'), onClick: method('align-right') }, { children: (0, jsx_runtime_1.jsx)(IconAlignRight, Object.assign({}, IconProps)) }))) }))),
781
+ 'align-justify': ((0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Align Justify') }, { children: (0, utils_1.is)('function', render) ? render('align-justify', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({}, ToggleButtonProps, { selected: refs.selected.current.includes('align-justify'), onClick: method('align-justify') }, { children: (0, jsx_runtime_1.jsx)(IconAlignJustify, Object.assign({}, IconProps)) }))) }))),
782
+ 'indent': ((0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Indent') }, { children: (0, utils_1.is)('function', render) ? render('indent', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({}, ToggleButtonProps, { onClick: method('indent') }, { children: (0, jsx_runtime_1.jsx)(IconIndent, Object.assign({}, IconProps)) }))) }))),
783
+ 'outdent': ((0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Outdent') }, { children: (0, utils_1.is)('function', render) ? render('outdent', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({}, ToggleButtonProps, { onClick: method('outdent') }, { children: (0, jsx_runtime_1.jsx)(IconOutdent, Object.assign({}, IconProps)) }))) }))),
784
+ 'superscript': ((0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Superscript') }, { children: (0, utils_1.is)('function', render) ? render('superscript', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({}, ToggleButtonProps, { selected: refs.selected.current.includes('superscript'), onClick: method('superscript') }, { children: (0, jsx_runtime_1.jsx)(IconSuperscript, Object.assign({}, IconProps)) }))) }))),
785
+ 'subscript': ((0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Subscript') }, { children: (0, utils_1.is)('function', render) ? render('subscript', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({}, ToggleButtonProps, { selected: refs.selected.current.includes('subscript'), onClick: method('subscript') }, { children: (0, jsx_runtime_1.jsx)(IconSubscript, Object.assign({}, IconProps)) }))) }))),
786
+ 'list-ordered': ((0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('List Ordered') }, { children: (0, utils_1.is)('function', render) ? render('list-ordered', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({}, ToggleButtonProps, { selected: refs.selected.current.includes('list-ordered'), onClick: method('list-ordered') }, { children: (0, jsx_runtime_1.jsx)(IconListOrdered, Object.assign({}, IconProps)) }))) }))),
787
+ 'list-unordered': ((0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('List Unordered') }, { children: (0, utils_1.is)('function', render) ? render('list-unordered', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({}, ToggleButtonProps, { selected: refs.selected.current.includes('list-unordered'), onClick: method('list-unordered') }, { children: (0, jsx_runtime_1.jsx)(IconListUnordered, Object.assign({}, IconProps)) }))) }))),
788
+ 'horizontal-rule': ((0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Insert Horizontal Rule'), onClick: method('horizontal-rule') }, { children: (0, utils_1.is)('function', render) ? render('horizontal-rule', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({}, ToggleButtonProps, { children: (0, jsx_runtime_1.jsx)(IconHorizontalRule, Object.assign({}, IconProps)) }))) }))),
789
+ 'link-add': ((0, jsx_runtime_1.jsx)(WrapperAppend, Object.assign({ open: refs.open.current.link, anchorElement: refs.elements.linkAdd.current, element: ((0, jsx_runtime_1.jsx)(ClickListener, Object.assign({ onClickOutside: () => updateOpen('link', false), include: [refs.elements.linkAdd.current] }, { children: (0, jsx_runtime_1.jsx)(Input, { name: l('Link'), labelButton: l('Add'), value: refs.inputValues.current.link, onChange: valueNew => updateInputValues('link', valueNew), onClick: () => {
790
+ if (refs.range.current) {
791
+ const selection_ = refs.rootWindow.current.getSelection();
792
+ selection_.removeAllRanges();
793
+ selection_.addRange(refs.range.current);
794
+ }
795
+ method('link-add')(refs.inputValues.current.link);
796
+ updateOpen('link', false);
797
+ updateInputValues('link', '');
798
+ } }) }))) }, { children: (0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Insert Link'), open: refs.open.current.link ? false : undefined }, { children: (0, utils_1.is)('function', render) ? render('font-color', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({ ref: refs.elements.linkAdd }, ToggleButtonProps, { selected: refs.open.current.link, onClick: () => updateOpen('link', !refs.open.current.link) }, { children: (0, jsx_runtime_1.jsx)(IconLinkAdd, Object.assign({}, IconProps)) }))) })) }))),
799
+ 'link-add-mini-menu': ((0, jsx_runtime_1.jsx)(WrapperAppend, Object.assign({ open: refs.open.current.linkMiniMenu, anchorElement: refs.miniMenuElements.linkAdd, element: ((0, jsx_runtime_1.jsx)(ClickListener, Object.assign({ onClickOutside: () => updateOpen('linkMiniMenu', false), include: [refs.miniMenuElements.linkAdd] }, { children: (0, jsx_runtime_1.jsx)(Input, { ref: refs.miniMenuElements.linkAddInput, name: l('Link'), labelButton: l('Add'), value: refs.inputValues.current.link, onChange: valueNew => updateInputValues('link', valueNew), onClick: () => {
800
+ if (refs.range.current) {
801
+ const selection_ = refs.rootWindow.current.getSelection();
802
+ selection_.removeAllRanges();
803
+ selection_.addRange(refs.range.current);
804
+ }
805
+ method('link-add')(refs.inputValues.current.link);
806
+ updateOpen('linkMiniMenu', false);
807
+ updateInputValues('link', '');
808
+ } }) }))) }, { children: (0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Insert Link'), open: refs.open.current.linkMiniMenu ? false : undefined }, { children: (0, utils_1.is)('function', render) ? render('font-color', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({ ref: refs.miniMenuElements.linkAdd }, ToggleButtonProps, { selected: refs.open.current.linkMiniMenu, onClick: () => updateOpen('linkMiniMenu', !refs.open.current.linkMiniMenu) }, { children: (0, jsx_runtime_1.jsx)(IconLinkAdd, Object.assign({}, IconProps)) }))) })) }))),
809
+ 'link-remove': ((0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Remove Link') }, { children: (0, utils_1.is)('function', render) ? render('link-remove', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({}, ToggleButtonProps, { onClick: method('link-remove') }, { children: (0, jsx_runtime_1.jsx)(IconLinkRemove, Object.assign({}, IconProps)) }))) }))),
810
+ 'quote': ((0, jsx_runtime_1.jsx)(WrapperAppend, Object.assign({ open: refs.open.current.quote, anchorElement: refs.elements.quote.current, element: ((0, jsx_runtime_1.jsx)(ClickListener, Object.assign({ onClickOutside: () => updateOpen('quote', false), include: [refs.elements.quote.current] }, { children: (0, jsx_runtime_1.jsx)(Input, { name: l('Quote'), labelButton: l('Add'), value: refs.inputValues.current.quote, onChange: valueNew => updateInputValues('quote', valueNew), InputProps: {
811
+ multiline: true
812
+ }, onClick: () => {
813
+ if (refs.range.current) {
814
+ const selection_ = refs.rootWindow.current.getSelection();
815
+ selection_.removeAllRanges();
816
+ selection_.addRange(refs.range.current);
817
+ }
818
+ method('html')(`<blockquote>${refs.inputValues.current.quote}</blockquote>`);
819
+ updateOpen('quote', false);
820
+ updateInputValues('quote', '');
821
+ } }) }))) }, { children: (0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Insert Quote'), open: refs.open.current.quote ? false : undefined }, { children: (0, utils_1.is)('function', render) ? render('quote', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({ ref: refs.elements.quote }, ToggleButtonProps, { selected: refs.open.current.quote, onClick: () => updateOpen('quote', !refs.open.current.quote) }, { children: (0, jsx_runtime_1.jsx)(IconQuote, Object.assign({}, IconProps)) }))) })) }))),
822
+ 'table': ((0, jsx_runtime_1.jsx)(WrapperAppend, Object.assign({ open: refs.open.current.table, anchorElement: refs.elements.table.current, element: ((0, jsx_runtime_1.jsx)(ClickListener, Object.assign({ onClickOutside: () => updateOpen('table', false), include: [refs.elements.table.current] }, { children: (0, jsx_runtime_1.jsxs)(Line, Object.assign({ gap: 1, tonal: tonal, color: refs.props.current.color !== undefined ? refs.props.current.color : 'themed', Component: Surface, className: (0, style_react_1.classNames)([
823
+ (0, utils_2.staticClassName)('RichTextEditor', theme) && [
824
+ 'onesy-RichTextEditor-palette'
825
+ ],
826
+ classes.palette
827
+ ]) }, { children: [(0, jsx_runtime_1.jsxs)(Line, Object.assign({ gap: 1, direction: 'row', align: 'center', justify: 'center' }, { children: [(0, jsx_runtime_1.jsx)(NumericTextField, { name: l('Rows'), tonal: tonal, color: color, size: 'small', version: 'outlined', increment: false, decrement: false, value: refs.inputValues.current.tableRows, onChange: valueNew => updateInputValues('tableRows', valueNew) }), "\u00D7", (0, jsx_runtime_1.jsx)(NumericTextField, { name: l('Columns'), tonal: tonal, color: color, size: 'small', version: 'outlined', increment: false, decrement: false, value: refs.inputValues.current.tableColumns, onChange: valueNew => updateInputValues('tableColumns', valueNew) })] })), (0, jsx_runtime_1.jsxs)(Line, Object.assign({ gap: 1, direction: 'row', align: 'center', justify: 'space-between', style: {
828
+ width: '100%'
829
+ } }, { children: [(0, jsx_runtime_1.jsxs)(Label, Object.assign({ size: 'small' }, { children: [(0, jsx_runtime_1.jsx)(Switch, { tonal: tonal, color: props.color !== undefined ? props.color : 'default', checked: refs.inputValues.current.tableHeader, onChange: valueNew => updateInputValues('tableHeader', valueNew) }), l('Header')] })), (0, jsx_runtime_1.jsx)(Button, Object.assign({ tonal: tonal, color: 'inherit', version: 'text', size: 'small', onClick: () => {
830
+ if (refs.range.current) {
831
+ const selection_ = refs.rootWindow.current.getSelection();
832
+ selection_.removeAllRanges();
833
+ selection_.addRange(refs.range.current);
834
+ }
835
+ let table = `<table>`;
836
+ if (refs.inputValues.current.tableHeader && refs.inputValues.current.tableColumns > 0) {
837
+ table += `<thead><tr>${'<th></th>'.repeat(refs.inputValues.current.tableColumns)}</tr></thead>`;
838
+ }
839
+ if (refs.inputValues.current.tableRows > 0 && refs.inputValues.current.tableColumns > 0) {
840
+ table += `<tbody>`;
841
+ for (let i = 0; i < refs.inputValues.current.tableRows; i++) {
842
+ table += `<tr>${'<td></td>'.repeat(refs.inputValues.current.tableColumns)}</tr>`;
843
+ }
844
+ table += `</tbody>`;
845
+ }
846
+ table += `</table>`;
847
+ method('html')(table);
848
+ updateOpen('table', false);
849
+ updateInputValues('tableRows', '');
850
+ updateInputValues('tableColumns', '');
851
+ updateInputValues('tableHeader', '');
852
+ } }, { children: l('Add') }))] }))] })) }))) }, { children: (0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Insert Table'), open: refs.open.current.table ? false : undefined }, { children: (0, utils_1.is)('function', render) ? render('table', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({ ref: refs.elements.table }, ToggleButtonProps, { selected: refs.open.current.table, onClick: () => updateOpen('table', !refs.open.current.table) }, { children: (0, jsx_runtime_1.jsx)(IconTable, Object.assign({}, IconProps)) }))) })) }))),
853
+ 'image': ((0, jsx_runtime_1.jsx)(WrapperAppend, Object.assign({ open: refs.open.current.image, anchorElement: refs.elements.image.current, element: ((0, jsx_runtime_1.jsx)(ClickListener, Object.assign({ onClickOutside: () => updateOpen('image', false), include: [refs.elements.image.current] }, { children: (0, jsx_runtime_1.jsx)(Input, { name: l('Image'), labelButton: l('Add'), value: refs.inputValues.current.image, onChange: valueNew => updateInputValues('image', valueNew), onClick: () => {
854
+ if (refs.range.current) {
855
+ const selection_ = refs.rootWindow.current.getSelection();
856
+ selection_.removeAllRanges();
857
+ selection_.addRange(refs.range.current);
858
+ }
859
+ method('image')(refs.inputValues.current.image);
860
+ updateOpen('image', false);
861
+ updateInputValues('image', '');
862
+ } }) }))) }, { children: (0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Insert Image'), open: refs.open.current.image ? false : undefined }, { children: (0, utils_1.is)('function', render) ? render('image', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({ ref: refs.elements.image }, ToggleButtonProps, { selected: refs.open.current.image, onClick: () => updateOpen('image', !refs.open.current.image) }, { children: (0, jsx_runtime_1.jsx)(IconImage, Object.assign({}, IconProps)) }))) })) }))),
863
+ 'video': ((0, jsx_runtime_1.jsx)(WrapperAppend, Object.assign({ open: refs.open.current.video, anchorElement: refs.elements.video.current, element: ((0, jsx_runtime_1.jsx)(ClickListener, Object.assign({ onClickOutside: () => updateOpen('video', false), include: [refs.elements.video.current] }, { children: (0, jsx_runtime_1.jsx)(Input, { name: l('Video'), labelButton: l('Add'), value: refs.inputValues.current.video, onChange: valueNew => updateInputValues('video', valueNew), onClick: () => {
864
+ if (refs.range.current) {
865
+ const selection_ = refs.rootWindow.current.getSelection();
866
+ selection_.removeAllRanges();
867
+ selection_.addRange(refs.range.current);
868
+ }
869
+ method('html')(`<video controls><source src='${refs.inputValues.current.video}' /></video>`);
870
+ updateOpen('video', false);
871
+ updateInputValues('video', '');
872
+ } }) }))) }, { children: (0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Insert Video'), open: refs.open.current.video ? false : undefined }, { children: (0, utils_1.is)('function', render) ? render('video', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({ ref: refs.elements.video }, ToggleButtonProps, { selected: refs.open.current.video, onClick: () => updateOpen('video', !refs.open.current.video) }, { children: (0, jsx_runtime_1.jsx)(IconVideo, Object.assign({}, IconProps)) }))) })) }))),
873
+ 'video-youtube': ((0, jsx_runtime_1.jsx)(WrapperAppend, Object.assign({ open: refs.open.current.videoYoutube, anchorElement: refs.elements.videoYoutube.current, element: ((0, jsx_runtime_1.jsx)(ClickListener, Object.assign({ onClickOutside: () => updateOpen('videoYoutube', false), include: [refs.elements.videoYoutube.current] }, { children: (0, jsx_runtime_1.jsx)(Input, { name: l('Youtube Video ID'), labelButton: l('Add'), value: refs.inputValues.current.videoYoutube, onChange: valueNew => updateInputValues('videoYoutube', valueNew), onClick: () => {
874
+ if (refs.range.current) {
875
+ const selection_ = refs.rootWindow.current.getSelection();
876
+ selection_.removeAllRanges();
877
+ selection_.addRange(refs.range.current);
878
+ }
879
+ method('html')(`<iframe width="560" height="315" src="https://www.youtube.com/embed/${refs.inputValues.current.videoYoutube}" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>`);
880
+ updateOpen('videoYoutube', false);
881
+ updateInputValues('videoYoutube', '');
882
+ } }) }))) }, { children: (0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Insert Youtube Video'), open: refs.open.current.videoYoutube ? false : undefined }, { children: (0, utils_1.is)('function', render) ? render('videoYoutube', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({ ref: refs.elements.videoYoutube }, ToggleButtonProps, { selected: refs.open.current.videoYoutube, onClick: () => updateOpen('videoYoutube', !refs.open.current.videoYoutube) }, { children: (0, jsx_runtime_1.jsx)(IconVideoYoutube, Object.assign({}, IconProps)) }))) })) }))),
883
+ 'drawing': ((0, jsx_runtime_1.jsx)(WrapperAppend, Object.assign({ open: refs.open.current.drawing, anchorElement: refs.elements.drawing.current, element: ((0, jsx_runtime_1.jsx)(ClickListener, Object.assign({ onClickOutside: () => updateOpen('drawing', false), include: [refs.elements.drawing, refs.elements.drawingSelect, refs.elements.drawingSelect.current, refs.elements.drawingPalette, refs.elements.drawingPalette.current, refs.elements.drawingSize, refs.elements.drawingSize.current], includeParentQueries: ['.onesy-Drawing-palette', '.onesy-Drawing-modal'], includeQueries: ['a[download]', 'svg', 'path'] }, { children: (0, jsx_runtime_1.jsxs)(Line, Object.assign({ gap: 2, tonal: tonal, color: refs.props.current.color !== undefined ? refs.props.current.color : 'themed', Component: Surface, className: (0, style_react_1.classNames)([
884
+ (0, utils_2.staticClassName)('RichTextEditor', theme) && [
885
+ 'onesy-RichTextEditor-palette'
886
+ ],
887
+ classes.palette
888
+ ]) }, { children: [(0, jsx_runtime_1.jsx)(Drawing, Object.assign({ tonal: tonal, color: refs.props.current.color !== undefined ? refs.props.current.color : 'themed', version: version, svgRef: refs.elements.drawingSvg, SizeProps: {
889
+ ref: refs.elements.drawingSize
890
+ }, SelectProps: {
891
+ MenuProps: Object.assign({ ListProps: {
892
+ ref: refs.elements.drawingSelect
893
+ } }, SelectProps === null || SelectProps === void 0 ? void 0 : SelectProps.MenuProps)
894
+ }, PaletteProps: {
895
+ ref: refs.elements.drawingPalette
896
+ } }, DrawingProps)), (0, jsx_runtime_1.jsx)(Line, Object.assign({ gap: 1, direction: 'row', align: 'center', justify: 'flex-end', style: {
897
+ width: '100%'
898
+ } }, { children: (0, jsx_runtime_1.jsx)(Button, Object.assign({ tonal: tonal, color: 'inherit', version: 'text', size: 'small', onClick: () => {
899
+ if (refs.range.current) {
900
+ const selection_ = refs.rootWindow.current.getSelection();
901
+ selection_.removeAllRanges();
902
+ selection_.addRange(refs.range.current);
903
+ }
904
+ // Get svg html element
905
+ // clone it, remove circle
906
+ // and add it as outer html
907
+ // to the rich text editor
908
+ const svg = refs.elements.drawingSvg.current;
909
+ const svgClone = svg.cloneNode(true);
910
+ // Clean up
911
+ svgClone.style.width = refs.inputValues.current.drawingWidth;
912
+ svgClone.style.height = refs.inputValues.current.drawingHeight;
913
+ svgClone.style.boxShadow = 'none';
914
+ const pointers = Array.from(svgClone.querySelectorAll('.onesy-Drawing-pointer'));
915
+ pointers.forEach(pointer => pointer.remove());
916
+ const valueNew = svgClone.outerHTML;
917
+ method('html')(valueNew);
918
+ updateOpen('drawing', false);
919
+ } }, { children: l('Add') })) }))] })) }))) }, { children: (0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Insert Drawing'), open: refs.open.current.drawing ? false : undefined }, { children: (0, utils_1.is)('function', render) ? render('drawing', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({ ref: refs.elements.drawing }, ToggleButtonProps, { selected: refs.open.current.drawing, onClick: () => updateOpen('drawing', !refs.open.current.drawing) }, { children: (0, jsx_runtime_1.jsx)(IconDrawing, Object.assign({}, IconProps)) }))) })) }))),
920
+ 'code': ((0, jsx_runtime_1.jsx)(WrapperAppend, Object.assign({ open: refs.open.current.code, anchorElement: refs.elements.code.current, element: ((0, jsx_runtime_1.jsx)(ClickListener, Object.assign({ onClickOutside: () => updateOpen('code', false), include: [refs.elements.code.current] }, { children: (0, jsx_runtime_1.jsx)(Input, { name: l('Code'), labelButton: l('Add'), value: refs.inputValues.current.code, onChange: valueNew => updateInputValues('code', valueNew), InputProps: {
921
+ multiline: true
922
+ }, onClick: () => {
923
+ if (refs.range.current) {
924
+ const selection_ = refs.rootWindow.current.getSelection();
925
+ selection_.removeAllRanges();
926
+ selection_.addRange(refs.range.current);
927
+ }
928
+ method('html')(`<pre><code>${refs.inputValues.current.code}</code></pre>`);
929
+ updateOpen('code', false);
930
+ updateInputValues('code', '');
931
+ } }) }))) }, { children: (0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Insert Code'), open: refs.open.current.code ? false : undefined }, { children: (0, utils_1.is)('function', render) ? render('code', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({ ref: refs.elements.code }, ToggleButtonProps, { selected: refs.open.current.code, onClick: () => updateOpen('code', !refs.open.current.code) }, { children: (0, jsx_runtime_1.jsx)(IconCode, Object.assign({}, IconProps)) }))) })) })))
932
+ };
933
+ const actionElements = {
934
+ 'clear': ((0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Clear') }, { children: (0, utils_1.is)('function', render) ? render('clear', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({}, ToggleButtonProps, { onClick: method('clear') }, { children: (0, jsx_runtime_1.jsx)(IconClear, Object.assign({}, IconProps)) }))) })))
935
+ };
936
+ return ((0, jsx_runtime_1.jsxs)(Line, Object.assign({ ref: item => {
937
+ if (ref) {
938
+ if ((0, utils_1.is)('function', ref))
939
+ ref(item);
940
+ else
941
+ ref.current = item;
942
+ }
943
+ refs.root.current = item;
944
+ }, gap: 0, Component: Component, className: (0, style_react_1.classNames)([
945
+ (0, utils_2.staticClassName)('RichTextEditor', theme) && [
946
+ 'onesy-RichTextEditor-root'
947
+ ],
948
+ className,
949
+ classes.root
950
+ ]) }, other, { children: [(updates || actions_) && ((0, jsx_runtime_1.jsxs)(Line, Object.assign({ tonal: tonal, color: color, version: version, gap: 0, direction: 'column', align: 'unset', justify: 'unset', Component: Surface }, ToolbarProps, { className: (0, style_react_1.classNames)([
951
+ (0, utils_2.staticClassName)('RichTextEditor', theme) && [
952
+ 'onesy-RichTextEditor-toolbars'
953
+ ],
954
+ ToolbarProps === null || ToolbarProps === void 0 ? void 0 : ToolbarProps.className,
955
+ classes.toolbars
956
+ ]) }, { children: [updates_ && ((0, jsx_runtime_1.jsxs)(Line, Object.assign({ gap: 2, direction: 'row', align: 'center', justify: 'flex-start', role: 'toolbar', "aria-label": l('Updates') }, ToolbarUpdatesProps, { className: (0, style_react_1.classNames)([
957
+ (0, utils_2.staticClassName)('RichTextEditor', theme) && [
958
+ 'onesy-RichTextEditor-toolbar'
959
+ ],
960
+ ToolbarUpdatesProps === null || ToolbarUpdatesProps === void 0 ? void 0 : ToolbarUpdatesProps.className,
961
+ classes.toolbar,
962
+ classes.toolbar_updates
963
+ ]) }, { children: [includes('font-family', 'font-size', 'font-version') && ((0, jsx_runtime_1.jsxs)(Line, Object.assign({ gap: 1, direction: 'row', align: 'center', justify: 'flex-start' }, { children: [includes('font-version') && updateElements['font-version'], includes('font-family') && updateElements['font-family'], includes('font-size') && updateElements['font-size']] }))), includes('italic', 'underlined', 'bold', 'strike-line') && ((0, jsx_runtime_1.jsxs)(ToggleButtons, Object.assign({}, ToggleButtonsProps, { children: [includes('italic') && updateElements['italic'], includes('underline') && updateElements['underline'], includes('bold') && updateElements['bold'], includes('strike-line') && updateElements['strike-line']] }))), includes('font-color', 'font-background') && ((0, jsx_runtime_1.jsxs)(ToggleButtons, Object.assign({}, ToggleButtonsProps, { children: [includes('font-color') && updateElements['font-color'], includes('font-background') && updateElements['font-background']] }))), includes('align-left', 'align-center', 'align-right', 'align-justify') && ((0, jsx_runtime_1.jsxs)(ToggleButtons, Object.assign({}, ToggleButtonsProps, { children: [includes('align-left') && updateElements['align-left'], includes('align-center') && updateElements['align-center'], includes('align-right') && updateElements['align-right'], includes('align-justify') && updateElements['align-justify']] }))), includes('indent', 'outdent') && ((0, jsx_runtime_1.jsxs)(ToggleButtons, Object.assign({}, ToggleButtonsProps, { children: [includes('indent') && updateElements['indent'], includes('outdent') && updateElements['outdent']] }))), includes('superscript', 'subscript') && ((0, jsx_runtime_1.jsxs)(ToggleButtons, Object.assign({}, ToggleButtonsProps, { children: [includes('superscript') && updateElements['superscript'], includes('subscript') && updateElements['subscript']] }))), includes('list-ordered', 'list-unordered') && ((0, jsx_runtime_1.jsxs)(ToggleButtons, Object.assign({}, ToggleButtonsProps, { children: [includes('list-ordered') && updateElements['list-ordered'], includes('list-unordered') && updateElements['list-unordered']] }))), includes('horizontal-rule') && ((0, jsx_runtime_1.jsx)(ToggleButtons, Object.assign({}, ToggleButtonsProps, { children: includes('horizontal-rule') && updateElements['horizontal-rule'] }))), includes('link-add', 'link-remove') && ((0, jsx_runtime_1.jsxs)(ToggleButtons, Object.assign({}, ToggleButtonsProps, { children: [includes('link-add') && updateElements['link-add'], includes('link-remove') && updateElements['link-remove']] }))), includes('quote', 'image', 'video', 'video-youtube', 'table', 'drawing', 'code') && ((0, jsx_runtime_1.jsxs)(ToggleButtons, Object.assign({}, ToggleButtonsProps, { children: [includes('quote') && updateElements['quote'], includes('table') && updateElements['table'], includes('image') && updateElements['image'], includes('video') && updateElements['video'], includes('video-youtube') && updateElements['video-youtube'], includes('drawing') && updateElements['drawing'], includes('code') && updateElements['code']] })))] }))), (updates_ && actions_) && ((0, jsx_runtime_1.jsx)(Divider, Object.assign({}, DividerProps, { className: (0, style_react_1.classNames)([
964
+ (0, utils_2.staticClassName)('RichTextEditor', theme) && [
965
+ 'onesy-RichTextEditor-divider'
966
+ ],
967
+ DividerProps === null || DividerProps === void 0 ? void 0 : DividerProps.className,
968
+ classes.divider,
969
+ classes.divider_middle
970
+ ]) }))), actions_ && ((0, jsx_runtime_1.jsx)(Line, Object.assign({ gap: 2, direction: 'row', align: 'center', justify: 'flex-start', role: 'toolbar', "aria-label": l('Actions') }, ToolbarActionsProps, { className: (0, style_react_1.classNames)([
971
+ (0, utils_2.staticClassName)('RichTextEditor', theme) && [
972
+ 'onesy-RichTextEditor-toolbar'
973
+ ],
974
+ ToolbarActionsProps === null || ToolbarActionsProps === void 0 ? void 0 : ToolbarActionsProps.className,
975
+ classes.toolbar,
976
+ classes.toolbar_actions
977
+ ]) }, { children: (0, jsx_runtime_1.jsxs)(Line, Object.assign({ direction: 'row', align: 'center', justify: 'space-between', style: {
978
+ width: '100%'
979
+ } }, { children: [(0, jsx_runtime_1.jsx)(Line, Object.assign({ gap: 2, direction: 'row', align: 'center', justify: 'flex-start' }, { children: includes('copy', 'cut', 'paste', 'delete') && ((0, jsx_runtime_1.jsxs)(ToggleButtons, Object.assign({}, ToggleButtonsProps, { children: [includes('copy') && ((0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Copy') }, { children: (0, utils_1.is)('function', render) ? render('copy', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({}, ToggleButtonProps, { onClick: method('copy') }, { children: (0, jsx_runtime_1.jsx)(IconCopy, Object.assign({}, IconProps)) }))) }))), includes('cut') && ((0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Cut') }, { children: (0, utils_1.is)('function', render) ? render('cut', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({}, ToggleButtonProps, { onClick: method('cut') }, { children: (0, jsx_runtime_1.jsx)(IconCut, Object.assign({}, IconProps)) }))) }))), includes('paste') && ((0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Paste') }, { children: (0, utils_1.is)('function', render) ? render('paste', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({}, ToggleButtonProps, { onClick: method('paste') }, { children: (0, jsx_runtime_1.jsx)(IconPaste, Object.assign({}, IconProps)) }))) }))), includes('delete') && ((0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Delete') }, { children: (0, utils_1.is)('function', render) ? render('delete', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({}, ToggleButtonProps, { onClick: method('delete') }, { children: (0, jsx_runtime_1.jsx)(IconDelete, Object.assign({}, IconProps)) }))) })))] }))) })), (0, jsx_runtime_1.jsxs)(Line, Object.assign({ gap: 2, direction: 'row', align: 'center', justify: 'flex-start' }, { children: [includes('clear', 'select-all') && ((0, jsx_runtime_1.jsxs)(ToggleButtons, Object.assign({}, ToggleButtonsProps, { children: [includes('clear') && actionElements['clear'], includes('select-all') && ((0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Select All') }, { children: (0, utils_1.is)('function', render) ? render('select-all', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({}, ToggleButtonProps, { onClick: method('select-all') }, { children: (0, jsx_runtime_1.jsx)(IconSelectAll, Object.assign({}, IconProps)) }))) })))] }))), includes('undo', 'redo') && ((0, jsx_runtime_1.jsxs)(ToggleButtons, Object.assign({}, ToggleButtonsProps, { children: [includes('undo') && ((0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Undo') }, { children: (0, utils_1.is)('function', render) ? render('undo', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({}, ToggleButtonProps, { onClick: method('undo') }, { children: (0, jsx_runtime_1.jsx)(IconUndo, Object.assign({}, IconProps)) }))) }))), includes('redo') && ((0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Redo') }, { children: (0, utils_1.is)('function', render) ? render('redo', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({}, ToggleButtonProps, { onClick: method('redo') }, { children: (0, jsx_runtime_1.jsx)(IconRedo, Object.assign({}, IconProps)) }))) })))] }))), includes('save', 'print') && ((0, jsx_runtime_1.jsxs)(ToggleButtons, Object.assign({}, ToggleButtonsProps, { children: [includes('save') && ((0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Save') }, { children: (0, utils_1.is)('function', render) ? render('save', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({}, ToggleButtonProps, { onClick: () => (0, utils_2.save)(refs.value.current) }, { children: (0, jsx_runtime_1.jsx)(IconSave, Object.assign({}, IconProps)) }))) }))), includes('print') && ((0, jsx_runtime_1.jsx)(WrapperToggleButton, Object.assign({ name: l('Print') }, { children: (0, utils_1.is)('function', render) ? render('print', ToggleButtonProps, refs.value.current, method) : ((0, jsx_runtime_1.jsx)(ToggleButton, Object.assign({}, ToggleButtonProps, { onClick: () => (0, utils_2.print)(refs.value.current) }, { children: (0, jsx_runtime_1.jsx)(IconPrint, Object.assign({}, IconProps)) }))) })))] })))] }))] })) }))), (0, jsx_runtime_1.jsx)(Divider, Object.assign({}, DividerProps, { className: (0, style_react_1.classNames)([
980
+ (0, utils_2.staticClassName)('RichTextEditor', theme) && [
981
+ 'onesy-RichTextEditor-divider'
982
+ ],
983
+ DividerProps === null || DividerProps === void 0 ? void 0 : DividerProps.className,
984
+ classes.divider,
985
+ classes.divider_end
986
+ ]) }))] }))), miniMenu && !!refs.miniMenuInclude.current.length && ((0, jsx_runtime_1.jsx)(Append, Object.assign({ open: selection, element: ({ ref: ref_, values, style }) => ((0, jsx_runtime_1.jsx)("div", Object.assign({ ref: item => {
987
+ if (ref_) {
988
+ if ((0, utils_1.is)('function', ref_))
989
+ ref_(item);
990
+ else
991
+ ref_.current = item;
992
+ refs.miniMenu.current = item;
993
+ }
994
+ }, style: Object.assign(Object.assign({}, (((values === null || values === void 0 ? void 0 : values.x) === 0 && (values === null || values === void 0 ? void 0 : values.y) === 0) ? {
995
+ visibility: 'hidden'
996
+ } : undefined)), style) }, { children: (0, jsx_runtime_1.jsx)(Fade, Object.assign({ in: !!selection, add: true }, { children: (0, jsx_runtime_1.jsx)(ClickListener, Object.assign({ onClickOutside: () => {
997
+ setSelection('');
998
+ }, include: [refs.miniMenu, refs.miniMenu.current, refs.miniMenuElements.colorPalette, refs.miniMenuElements.colorPalette.current, refs.miniMenuElements.backgroundPalette, refs.miniMenuElements.backgroundPalette.current, refs.miniMenuElements.linkAddInput, refs.miniMenuElements.linkAddInput.current] }, { children: (0, jsx_runtime_1.jsxs)(Line, Object.assign({ gap: 2, direction: 'row', align: 'center', justify: 'flex-start', role: 'toolbar', "aria-label": l('Mini menu'), Component: Surface }, MiniMenuProps, { className: (0, style_react_1.classNames)([
999
+ (0, utils_2.staticClassName)('RichTextEditor', theme) && [
1000
+ 'onesy-RichTextEditor-mini-menu'
1001
+ ],
1002
+ MiniMenuProps === null || MiniMenuProps === void 0 ? void 0 : MiniMenuProps.className,
1003
+ classes.miniMenu
1004
+ ]) }, { children: [includesMinMenu('italic', 'underlined', 'bold', 'strike-line') && ((0, jsx_runtime_1.jsxs)(ToggleButtons, Object.assign({}, ToggleButtonsProps, { children: [includesMinMenu('italic') && updateElements['italic'], includesMinMenu('underline') && updateElements['underline'], includesMinMenu('bold') && updateElements['bold'], includesMinMenu('strike-line') && updateElements['strike-line']] }))), includesMinMenu('font-color', 'font-background') && ((0, jsx_runtime_1.jsxs)(ToggleButtons, Object.assign({}, ToggleButtonsProps, { children: [includesMinMenu('font-color') && updateElements['font-color-mini-menu'], includesMinMenu('font-background') && updateElements['font-background-mini-menu']] }))), includesMinMenu('align-left', 'align-center', 'align-right', 'align-justify') && ((0, jsx_runtime_1.jsxs)(ToggleButtons, Object.assign({}, ToggleButtonsProps, { children: [includesMinMenu('align-left') && updateElements['align-left'], includesMinMenu('align-center') && updateElements['align-center'], includesMinMenu('align-right') && updateElements['align-right'], includesMinMenu('align-justify') && updateElements['align-justify']] }))), includesMinMenu('link-add', 'link-remove') && ((0, jsx_runtime_1.jsxs)(ToggleButtons, Object.assign({}, ToggleButtonsProps, { children: [includesMinMenu('link-add') && updateElements['link-add-mini-menu'], includesMinMenu('link-remove') && updateElements['link-remove']] }))), includesMinMenu('clear') && ((0, jsx_runtime_1.jsx)(ToggleButtons, Object.assign({}, ToggleButtonsProps, { children: includesMinMenu('clear') && actionElements['clear'] })))] })) })) })) }))), anchor: selection, portal: true, alignment: 'center', position: 'bottom', clearOnClose: true }, AppendProps))), (0, jsx_runtime_1.jsx)(Surface, { ref: refs.value, color: 'default', onMouseUp: onMouseUpValue, onMouseDown: onMouseDownValue, onInput: onUpdate, contentEditable: true, className: (0, style_react_1.classNames)([
1005
+ (0, utils_2.staticClassName)('RichTextEditor', theme) && [
1006
+ 'onesy-RichTextEditor-value'
1007
+ ],
1008
+ classes.value
1009
+ ]) })] })));
1010
+ });
1011
+ RichTextEditor.displayName = 'onesy-RichTextEditor';
1012
+ exports.default = RichTextEditor;