@connectif/ui-components 0.0.1

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 (881) hide show
  1. package/dist/components/alert/Alert.d.ts +33 -0
  2. package/dist/components/alert/Alert.theme.d.ts +2 -0
  3. package/dist/components/alert/AlertTitle.theme.d.ts +2 -0
  4. package/dist/components/alert/index.d.ts +1 -0
  5. package/dist/components/avatar/Avatar.d.ts +91 -0
  6. package/dist/components/avatar/AvatarCard.d.ts +9 -0
  7. package/dist/components/avatar/AvatarMultiple.d.ts +35 -0
  8. package/dist/components/avatar/index.d.ts +3 -0
  9. package/dist/components/button/BadgeToggleButton.d.ts +42 -0
  10. package/dist/components/button/Button.d.ts +175 -0
  11. package/dist/components/button/Button.theme.d.ts +2 -0
  12. package/dist/components/button/ButtonGroup.d.ts +26 -0
  13. package/dist/components/button/ButtonWithActions.d.ts +68 -0
  14. package/dist/components/button/IconButton.d.ts +78 -0
  15. package/dist/components/button/IconButton.theme.d.ts +2 -0
  16. package/dist/components/button/IconToggleButton.d.ts +35 -0
  17. package/dist/components/button/MenuButton.d.ts +56 -0
  18. package/dist/components/button/MenuIconButton.d.ts +77 -0
  19. package/dist/components/button/MenuItem.theme.d.ts +2 -0
  20. package/dist/components/button/ToggleButton.d.ts +28 -0
  21. package/dist/components/button/ToggleButton.theme.d.ts +2 -0
  22. package/dist/components/button/ToggleButtonGroup.d.ts +40 -0
  23. package/dist/components/button/UploadButton.d.ts +25 -0
  24. package/dist/components/button/index.d.ts +11 -0
  25. package/dist/components/card/Card.d.ts +40 -0
  26. package/dist/components/card/CardActions.d.ts +17 -0
  27. package/dist/components/card/CardChips.d.ts +17 -0
  28. package/dist/components/card/CardDescription.d.ts +13 -0
  29. package/dist/components/card/CardImage.d.ts +22 -0
  30. package/dist/components/card/CardStatus.d.ts +23 -0
  31. package/dist/components/card/CardTable.d.ts +22 -0
  32. package/dist/components/card/CardTitle.d.ts +22 -0
  33. package/dist/components/card/CardTitleWithIcon.d.ts +29 -0
  34. package/dist/components/card/EnhancedCard.d.ts +97 -0
  35. package/dist/components/card/EnhancedCardImage.d.ts +43 -0
  36. package/dist/components/card/EnhancedCardRow.d.ts +11 -0
  37. package/dist/components/card/EnhancedCardSubtitle.d.ts +26 -0
  38. package/dist/components/card/EnhancedCardTitle.d.ts +38 -0
  39. package/dist/components/card/index.d.ts +14 -0
  40. package/dist/components/chart/BarChart.d.ts +84 -0
  41. package/dist/components/chart/CategorizedChartProps.d.ts +35 -0
  42. package/dist/components/chart/ChartUtils.d.ts +8 -0
  43. package/dist/components/chart/DonutChart.d.ts +79 -0
  44. package/dist/components/chart/DonutChartLegendItem.d.ts +9 -0
  45. package/dist/components/chart/EchartsConfig.d.ts +1 -0
  46. package/dist/components/chart/FunnelChart.d.ts +84 -0
  47. package/dist/components/chart/IncrementLabel.d.ts +18 -0
  48. package/dist/components/chart/LineChart.d.ts +98 -0
  49. package/dist/components/chart/MicroPieChart.d.ts +18 -0
  50. package/dist/components/chart/RankingChart.d.ts +33 -0
  51. package/dist/components/chart/RankingChartItem.d.ts +7 -0
  52. package/dist/components/chart/RankingChartTooltip.d.ts +15 -0
  53. package/dist/components/chart/WeekChart.d.ts +41 -0
  54. package/dist/components/chart/WeekChartItem.d.ts +5 -0
  55. package/dist/components/chart/WeekChartTooltip.d.ts +19 -0
  56. package/dist/components/chart/index.d.ts +8 -0
  57. package/dist/components/chat/Chat.d.ts +13 -0
  58. package/dist/components/chat/ChatMessage.d.ts +35 -0
  59. package/dist/components/chat/index.d.ts +2 -0
  60. package/dist/components/chip/Chip.d.ts +1002 -0
  61. package/dist/components/chip/ChipList.d.ts +14 -0
  62. package/dist/components/chip/MenuChip.d.ts +56 -0
  63. package/dist/components/chip/index.d.ts +3 -0
  64. package/dist/components/dialog/ConfirmationDialog.d.ts +54 -0
  65. package/dist/components/dialog/Dialog.d.ts +16 -0
  66. package/dist/components/dialog/index.d.ts +2 -0
  67. package/dist/components/divider/Divider.d.ts +18 -0
  68. package/dist/components/divider/index.d.ts +1 -0
  69. package/dist/components/drawer/Drawer.d.ts +9 -0
  70. package/dist/components/drawer/InputDrawer.d.ts +41 -0
  71. package/dist/components/drawer/index.d.ts +2 -0
  72. package/dist/components/formatter/CompactNumberFormatter.d.ts +13 -0
  73. package/dist/components/formatter/CurrencyFormatter.d.ts +21 -0
  74. package/dist/components/formatter/DateFormatter.d.ts +18 -0
  75. package/dist/components/formatter/NumberFormatter.d.ts +17 -0
  76. package/dist/components/formatter/PercentageFormatter.d.ts +17 -0
  77. package/dist/components/formatter/index.d.ts +5 -0
  78. package/dist/components/header/Header.d.ts +33 -0
  79. package/dist/components/header/HeaderSubtitle.d.ts +13 -0
  80. package/dist/components/header/HeaderTitle.d.ts +13 -0
  81. package/dist/components/header/index.d.ts +3 -0
  82. package/dist/components/icon/Icon.d.ts +47 -0
  83. package/dist/components/icon/StackedIcons.d.ts +13 -0
  84. package/dist/components/icon/SvgIcon.theme.d.ts +2 -0
  85. package/dist/components/icon/icons.d.ts +1953 -0
  86. package/dist/components/icon/index.d.ts +1 -0
  87. package/dist/components/image/ImageEditor.d.ts +12 -0
  88. package/dist/components/image/index.d.ts +1 -0
  89. package/dist/components/index.d.ts +35 -0
  90. package/dist/components/info/InfoBox.d.ts +10 -0
  91. package/dist/components/info/index.d.ts +1 -0
  92. package/dist/components/input/Autocomplete.d.ts +118 -0
  93. package/dist/components/input/CalendarDay.d.ts +17 -0
  94. package/dist/components/input/CalendarMonth.d.ts +19 -0
  95. package/dist/components/input/CalendarScrollPicker.d.ts +17 -0
  96. package/dist/components/input/CategorizedPicker.d.ts +22 -0
  97. package/dist/components/input/Checkbox.d.ts +39 -0
  98. package/dist/components/input/CodeEditor.d.ts +29 -0
  99. package/dist/components/input/CodeEditorPopup.d.ts +18 -0
  100. package/dist/components/input/ColorPicker.d.ts +62 -0
  101. package/dist/components/input/DateIntervalPicker.d.ts +84 -0
  102. package/dist/components/input/DateIntervalPickerInputs.d.ts +18 -0
  103. package/dist/components/input/DateIntervalPickerList.d.ts +35 -0
  104. package/dist/components/input/DateIntervalPickerPopover.d.ts +32 -0
  105. package/dist/components/input/DatePicker.d.ts +59 -0
  106. package/dist/components/input/DatePickerPopover.d.ts +10 -0
  107. package/dist/components/input/DatePickerStatic.d.ts +9 -0
  108. package/dist/components/input/DaysOfWeekPicker.d.ts +11 -0
  109. package/dist/components/input/DaysOfWeekRow.d.ts +3 -0
  110. package/dist/components/input/DebouncedTextField.d.ts +18 -0
  111. package/dist/components/input/InputHelperText.d.ts +29 -0
  112. package/dist/components/input/InputLabel.d.ts +47 -0
  113. package/dist/components/input/ItemSelector.d.ts +27 -0
  114. package/dist/components/input/NumberField.d.ts +106 -0
  115. package/dist/components/input/PageSelector.d.ts +30 -0
  116. package/dist/components/input/PhoneField.d.ts +43 -0
  117. package/dist/components/input/Radio.d.ts +49 -0
  118. package/dist/components/input/Select.d.ts +89 -0
  119. package/dist/components/input/SelectPopover.d.ts +107 -0
  120. package/dist/components/input/SelectPopoverItem.d.ts +17 -0
  121. package/dist/components/input/Switch.d.ts +22 -0
  122. package/dist/components/input/Switch.theme.d.ts +2 -0
  123. package/dist/components/input/TextEditor.d.ts +123 -0
  124. package/dist/components/input/TextField.d.ts +156 -0
  125. package/dist/components/input/TextFieldContainer.d.ts +95 -0
  126. package/dist/components/input/TimeField.d.ts +20 -0
  127. package/dist/components/input/TimezoneSelector.d.ts +7 -0
  128. package/dist/components/input/UploadClickableArea.d.ts +14 -0
  129. package/dist/components/input/index.d.ts +26 -0
  130. package/dist/components/layout/Box.d.ts +2 -0
  131. package/dist/components/layout/Collapse.d.ts +5 -0
  132. package/dist/components/layout/CollapsiblePanel.d.ts +48 -0
  133. package/dist/components/layout/CollapsiblePanelSwitcher.d.ts +87 -0
  134. package/dist/components/layout/Container.d.ts +5 -0
  135. package/dist/components/layout/Container.theme.d.ts +2 -0
  136. package/dist/components/layout/Grid.d.ts +8 -0
  137. package/dist/components/layout/LazyLoad.d.ts +5 -0
  138. package/dist/components/layout/PageScrollContext.d.ts +5 -0
  139. package/dist/components/layout/PageWithHeader.d.ts +13 -0
  140. package/dist/components/layout/PageWithNavbar.d.ts +13 -0
  141. package/dist/components/layout/PageWithSidePanel.d.ts +17 -0
  142. package/dist/components/layout/PageWithToolBox.d.ts +17 -0
  143. package/dist/components/layout/PageWithToolbar.d.ts +18 -0
  144. package/dist/components/layout/Paper.d.ts +13 -0
  145. package/dist/components/layout/SidePanel.d.ts +7 -0
  146. package/dist/components/layout/Stack.d.ts +2 -0
  147. package/dist/components/layout/Stepper.d.ts +23 -0
  148. package/dist/components/layout/SwipeableViews.d.ts +8 -0
  149. package/dist/components/layout/ToolBox.d.ts +12 -0
  150. package/dist/components/layout/index.d.ts +17 -0
  151. package/dist/components/list/BaseListItem.d.ts +70 -0
  152. package/dist/components/list/List.d.ts +5 -0
  153. package/dist/components/list/ListItem.d.ts +16 -0
  154. package/dist/components/list/ListItemButton.d.ts +42 -0
  155. package/dist/components/list/ListItemText.d.ts +17 -0
  156. package/dist/components/list/index.d.ts +3 -0
  157. package/dist/components/loader/Loader.d.ts +32 -0
  158. package/dist/components/loader/index.d.ts +1 -0
  159. package/dist/components/navbar/Navbar.d.ts +41 -0
  160. package/dist/components/navbar/NavbarButton.d.ts +39 -0
  161. package/dist/components/navbar/NavbarHeader.d.ts +12 -0
  162. package/dist/components/navbar/NavbarLogo.d.ts +16 -0
  163. package/dist/components/navbar/index.d.ts +4 -0
  164. package/dist/components/overlay/DonutFocusOverlay.d.ts +11 -0
  165. package/dist/components/overlay/index.d.ts +1 -0
  166. package/dist/components/pager/Pager.d.ts +31 -0
  167. package/dist/components/pager/index.d.ts +1 -0
  168. package/dist/components/popover/Popover.d.ts +26 -0
  169. package/dist/components/popover/Popover.theme.d.ts +2 -0
  170. package/dist/components/popover/PopoverActions.d.ts +21 -0
  171. package/dist/components/popover/index.d.ts +2 -0
  172. package/dist/components/progress/CircularProgress.d.ts +35 -0
  173. package/dist/components/progress/DonutProgress.d.ts +45 -0
  174. package/dist/components/progress/LinearProgress.d.ts +19 -0
  175. package/dist/components/progress/LinearProgress.theme.d.ts +2 -0
  176. package/dist/components/progress/index.d.ts +2 -0
  177. package/dist/components/scrollable/HorizontalScrollable.d.ts +18 -0
  178. package/dist/components/scrollable/index.d.ts +1 -0
  179. package/dist/components/skeleton/Skeleton.d.ts +8 -0
  180. package/dist/components/skeleton/index.d.ts +1 -0
  181. package/dist/components/snackbar/Snackbar.d.ts +52 -0
  182. package/dist/components/snackbar/SnackbarProvider.d.ts +10 -0
  183. package/dist/components/snackbar/enqueueSnackbar.d.ts +27 -0
  184. package/dist/components/snackbar/index.d.ts +3 -0
  185. package/dist/components/tab/TabButton.d.ts +30 -0
  186. package/dist/components/tab/TabContent.d.ts +7 -0
  187. package/dist/components/tab/Tabs.d.ts +52 -0
  188. package/dist/components/tab/Tabs.theme.d.ts +2 -0
  189. package/dist/components/tab/index.d.ts +3 -0
  190. package/dist/components/table/NestedTable.d.ts +29 -0
  191. package/dist/components/table/Table.d.ts +5 -0
  192. package/dist/components/table/Table.theme.d.ts +2 -0
  193. package/dist/components/table/TableBody.d.ts +4 -0
  194. package/dist/components/table/TableCell.d.ts +20 -0
  195. package/dist/components/table/TableCell.theme.d.ts +2 -0
  196. package/dist/components/table/TableCellCopy.d.ts +10 -0
  197. package/dist/components/table/TableDivider.d.ts +3 -0
  198. package/dist/components/table/TableHead.d.ts +4 -0
  199. package/dist/components/table/TableRow.d.ts +9 -0
  200. package/dist/components/table/TableSortLabel.d.ts +8 -0
  201. package/dist/components/table/index.d.ts +9 -0
  202. package/dist/components/toolbar/Toolbar.d.ts +24 -0
  203. package/dist/components/toolbar/ToolbarBreadcrumb.d.ts +15 -0
  204. package/dist/components/toolbar/ToolbarBreadcrumbButton.d.ts +11 -0
  205. package/dist/components/toolbar/ToolbarTitle.d.ts +27 -0
  206. package/dist/components/toolbar/index.d.ts +4 -0
  207. package/dist/components/tooltip/TextEllipsis.d.ts +18 -0
  208. package/dist/components/tooltip/TextEllipsisTooltip.d.ts +27 -0
  209. package/dist/components/tooltip/Tooltip.d.ts +59 -0
  210. package/dist/components/tooltip/Tooltip.theme.d.ts +2 -0
  211. package/dist/components/tooltip/TooltipMenu.d.ts +35 -0
  212. package/dist/components/tooltip/index.d.ts +4 -0
  213. package/dist/components/transition/Slide.d.ts +3 -0
  214. package/dist/components/transition/index.d.ts +1 -0
  215. package/dist/components/typography/TextMarker.d.ts +32 -0
  216. package/dist/components/typography/Typography.d.ts +39 -0
  217. package/dist/components/typography/index.d.ts +2 -0
  218. package/dist/components/widget/Widget.d.ts +7 -0
  219. package/dist/components/widget/WidgetActions.d.ts +8 -0
  220. package/dist/components/widget/WidgetLegendItem.d.ts +65 -0
  221. package/dist/components/widget/WidgetTitle.d.ts +23 -0
  222. package/dist/components/widget/index.d.ts +4 -0
  223. package/dist/components/window/MinimizableWindow.d.ts +98 -0
  224. package/dist/components/window/index.d.ts +1 -0
  225. package/dist/contexts/IntlContext.d.ts +7 -0
  226. package/dist/contexts/index.d.ts +1 -0
  227. package/dist/hooks/index.d.ts +3 -0
  228. package/dist/hooks/useDebouncedCallback.d.ts +1 -0
  229. package/dist/hooks/useFormatters.d.ts +8 -0
  230. package/dist/hooks/useResizeObserver.d.ts +7 -0
  231. package/dist/i18n/TranslationKey.d.ts +11 -0
  232. package/dist/i18n/en.d.ts +202 -0
  233. package/dist/i18n/es.d.ts +202 -0
  234. package/dist/i18n/fr.d.ts +202 -0
  235. package/dist/i18n/it.d.ts +202 -0
  236. package/dist/i18n/pt.d.ts +202 -0
  237. package/dist/i18n/translate.d.ts +4 -0
  238. package/dist/index.d.ts +6 -0
  239. package/dist/index.js +25410 -0
  240. package/dist/models/ComparisonInterval.d.ts +1 -0
  241. package/dist/models/DateInputFormat.d.ts +4 -0
  242. package/dist/models/DateInterval.d.ts +1 -0
  243. package/dist/models/SimpleDate.d.ts +8 -0
  244. package/dist/propTypes/IncrementLabel.d.ts +15 -0
  245. package/dist/propTypes/index.d.ts +1 -0
  246. package/dist/src/components/alert/Alert.d.ts +33 -0
  247. package/dist/src/components/alert/Alert.theme.d.ts +2 -0
  248. package/dist/src/components/alert/AlertTitle.theme.d.ts +2 -0
  249. package/dist/src/components/alert/index.d.ts +1 -0
  250. package/dist/src/components/avatar/Avatar.d.ts +91 -0
  251. package/dist/src/components/avatar/AvatarCard.d.ts +9 -0
  252. package/dist/src/components/avatar/AvatarMultiple.d.ts +35 -0
  253. package/dist/src/components/avatar/index.d.ts +3 -0
  254. package/dist/src/components/button/BadgeToggleButton.d.ts +42 -0
  255. package/dist/src/components/button/Button.d.ts +175 -0
  256. package/dist/src/components/button/Button.theme.d.ts +2 -0
  257. package/dist/src/components/button/ButtonGroup.d.ts +26 -0
  258. package/dist/src/components/button/ButtonWithActions.d.ts +68 -0
  259. package/dist/src/components/button/IconButton.d.ts +78 -0
  260. package/dist/src/components/button/IconButton.theme.d.ts +2 -0
  261. package/dist/src/components/button/IconToggleButton.d.ts +35 -0
  262. package/dist/src/components/button/MenuButton.d.ts +56 -0
  263. package/dist/src/components/button/MenuIconButton.d.ts +77 -0
  264. package/dist/src/components/button/MenuItem.theme.d.ts +2 -0
  265. package/dist/src/components/button/ToggleButton.d.ts +28 -0
  266. package/dist/src/components/button/ToggleButton.theme.d.ts +2 -0
  267. package/dist/src/components/button/ToggleButtonGroup.d.ts +40 -0
  268. package/dist/src/components/button/UploadButton.d.ts +25 -0
  269. package/dist/src/components/button/index.d.ts +11 -0
  270. package/dist/src/components/card/Card.d.ts +40 -0
  271. package/dist/src/components/card/CardActions.d.ts +17 -0
  272. package/dist/src/components/card/CardChips.d.ts +17 -0
  273. package/dist/src/components/card/CardDescription.d.ts +13 -0
  274. package/dist/src/components/card/CardImage.d.ts +22 -0
  275. package/dist/src/components/card/CardStatus.d.ts +23 -0
  276. package/dist/src/components/card/CardTable.d.ts +22 -0
  277. package/dist/src/components/card/CardTitle.d.ts +22 -0
  278. package/dist/src/components/card/CardTitleWithIcon.d.ts +29 -0
  279. package/dist/src/components/card/EnhancedCard.d.ts +97 -0
  280. package/dist/src/components/card/EnhancedCardImage.d.ts +43 -0
  281. package/dist/src/components/card/EnhancedCardRow.d.ts +11 -0
  282. package/dist/src/components/card/EnhancedCardSubtitle.d.ts +26 -0
  283. package/dist/src/components/card/EnhancedCardTitle.d.ts +38 -0
  284. package/dist/src/components/card/index.d.ts +14 -0
  285. package/dist/src/components/chart/BarChart.d.ts +84 -0
  286. package/dist/src/components/chart/CategorizedChartProps.d.ts +35 -0
  287. package/dist/src/components/chart/ChartUtils.d.ts +8 -0
  288. package/dist/src/components/chart/DonutChart.d.ts +79 -0
  289. package/dist/src/components/chart/DonutChartLegendItem.d.ts +9 -0
  290. package/dist/src/components/chart/EchartsConfig.d.ts +1 -0
  291. package/dist/src/components/chart/FunnelChart.d.ts +84 -0
  292. package/dist/src/components/chart/IncrementLabel.d.ts +18 -0
  293. package/dist/src/components/chart/LineChart.d.ts +98 -0
  294. package/dist/src/components/chart/MicroPieChart.d.ts +18 -0
  295. package/dist/src/components/chart/RankingChart.d.ts +33 -0
  296. package/dist/src/components/chart/RankingChartItem.d.ts +7 -0
  297. package/dist/src/components/chart/RankingChartTooltip.d.ts +15 -0
  298. package/dist/src/components/chart/WeekChart.d.ts +41 -0
  299. package/dist/src/components/chart/WeekChartItem.d.ts +5 -0
  300. package/dist/src/components/chart/WeekChartTooltip.d.ts +19 -0
  301. package/dist/src/components/chart/index.d.ts +8 -0
  302. package/dist/src/components/chat/Chat.d.ts +13 -0
  303. package/dist/src/components/chat/ChatMessage.d.ts +35 -0
  304. package/dist/src/components/chat/index.d.ts +2 -0
  305. package/dist/src/components/chip/Chip.d.ts +1002 -0
  306. package/dist/src/components/chip/ChipList.d.ts +14 -0
  307. package/dist/src/components/chip/MenuChip.d.ts +56 -0
  308. package/dist/src/components/chip/index.d.ts +3 -0
  309. package/dist/src/components/dialog/ConfirmationDialog.d.ts +54 -0
  310. package/dist/src/components/dialog/Dialog.d.ts +16 -0
  311. package/dist/src/components/dialog/index.d.ts +2 -0
  312. package/dist/src/components/divider/Divider.d.ts +18 -0
  313. package/dist/src/components/divider/index.d.ts +1 -0
  314. package/dist/src/components/drawer/Drawer.d.ts +9 -0
  315. package/dist/src/components/drawer/InputDrawer.d.ts +41 -0
  316. package/dist/src/components/drawer/index.d.ts +2 -0
  317. package/dist/src/components/formatter/CompactNumberFormatter.d.ts +13 -0
  318. package/dist/src/components/formatter/CurrencyFormatter.d.ts +21 -0
  319. package/dist/src/components/formatter/DateFormatter.d.ts +18 -0
  320. package/dist/src/components/formatter/NumberFormatter.d.ts +17 -0
  321. package/dist/src/components/formatter/PercentageFormatter.d.ts +17 -0
  322. package/dist/src/components/formatter/index.d.ts +5 -0
  323. package/dist/src/components/header/Header.d.ts +33 -0
  324. package/dist/src/components/header/HeaderSubtitle.d.ts +13 -0
  325. package/dist/src/components/header/HeaderTitle.d.ts +13 -0
  326. package/dist/src/components/header/index.d.ts +3 -0
  327. package/dist/src/components/icon/Icon.d.ts +47 -0
  328. package/dist/src/components/icon/StackedIcons.d.ts +13 -0
  329. package/dist/src/components/icon/SvgIcon.theme.d.ts +2 -0
  330. package/dist/src/components/icon/icons.d.ts +1953 -0
  331. package/dist/src/components/icon/index.d.ts +1 -0
  332. package/dist/src/components/image/ImageEditor.d.ts +12 -0
  333. package/dist/src/components/image/index.d.ts +1 -0
  334. package/dist/src/components/index.d.ts +35 -0
  335. package/dist/src/components/info/InfoBox.d.ts +10 -0
  336. package/dist/src/components/info/index.d.ts +1 -0
  337. package/dist/src/components/input/Autocomplete.d.ts +118 -0
  338. package/dist/src/components/input/CalendarDay.d.ts +17 -0
  339. package/dist/src/components/input/CalendarMonth.d.ts +19 -0
  340. package/dist/src/components/input/CalendarScrollPicker.d.ts +17 -0
  341. package/dist/src/components/input/CategorizedPicker.d.ts +22 -0
  342. package/dist/src/components/input/Checkbox.d.ts +39 -0
  343. package/dist/src/components/input/CodeEditor.d.ts +29 -0
  344. package/dist/src/components/input/CodeEditorPopup.d.ts +18 -0
  345. package/dist/src/components/input/ColorPicker.d.ts +62 -0
  346. package/dist/src/components/input/DateIntervalPicker.d.ts +84 -0
  347. package/dist/src/components/input/DateIntervalPickerInputs.d.ts +18 -0
  348. package/dist/src/components/input/DateIntervalPickerList.d.ts +35 -0
  349. package/dist/src/components/input/DateIntervalPickerPopover.d.ts +32 -0
  350. package/dist/src/components/input/DatePicker.d.ts +59 -0
  351. package/dist/src/components/input/DatePickerPopover.d.ts +10 -0
  352. package/dist/src/components/input/DatePickerStatic.d.ts +9 -0
  353. package/dist/src/components/input/DaysOfWeekPicker.d.ts +11 -0
  354. package/dist/src/components/input/DaysOfWeekRow.d.ts +3 -0
  355. package/dist/src/components/input/DebouncedTextField.d.ts +18 -0
  356. package/dist/src/components/input/InputHelperText.d.ts +29 -0
  357. package/dist/src/components/input/InputLabel.d.ts +47 -0
  358. package/dist/src/components/input/ItemSelector.d.ts +27 -0
  359. package/dist/src/components/input/NumberField.d.ts +106 -0
  360. package/dist/src/components/input/PageSelector.d.ts +30 -0
  361. package/dist/src/components/input/PhoneField.d.ts +43 -0
  362. package/dist/src/components/input/Radio.d.ts +49 -0
  363. package/dist/src/components/input/Select.d.ts +89 -0
  364. package/dist/src/components/input/SelectPopover.d.ts +107 -0
  365. package/dist/src/components/input/SelectPopoverItem.d.ts +17 -0
  366. package/dist/src/components/input/Switch.d.ts +22 -0
  367. package/dist/src/components/input/Switch.theme.d.ts +2 -0
  368. package/dist/src/components/input/TextEditor.d.ts +123 -0
  369. package/dist/src/components/input/TextField.d.ts +156 -0
  370. package/dist/src/components/input/TextFieldContainer.d.ts +95 -0
  371. package/dist/src/components/input/TimeField.d.ts +20 -0
  372. package/dist/src/components/input/TimezoneSelector.d.ts +7 -0
  373. package/dist/src/components/input/UploadClickableArea.d.ts +14 -0
  374. package/dist/src/components/input/index.d.ts +26 -0
  375. package/dist/src/components/layout/Box.d.ts +2 -0
  376. package/dist/src/components/layout/Collapse.d.ts +5 -0
  377. package/dist/src/components/layout/CollapsiblePanel.d.ts +48 -0
  378. package/dist/src/components/layout/CollapsiblePanelSwitcher.d.ts +87 -0
  379. package/dist/src/components/layout/Container.d.ts +5 -0
  380. package/dist/src/components/layout/Container.theme.d.ts +2 -0
  381. package/dist/src/components/layout/Grid.d.ts +8 -0
  382. package/dist/src/components/layout/LazyLoad.d.ts +5 -0
  383. package/dist/src/components/layout/PageScrollContext.d.ts +5 -0
  384. package/dist/src/components/layout/PageWithHeader.d.ts +13 -0
  385. package/dist/src/components/layout/PageWithNavbar.d.ts +13 -0
  386. package/dist/src/components/layout/PageWithSidePanel.d.ts +17 -0
  387. package/dist/src/components/layout/PageWithToolBox.d.ts +17 -0
  388. package/dist/src/components/layout/PageWithToolbar.d.ts +18 -0
  389. package/dist/src/components/layout/Paper.d.ts +13 -0
  390. package/dist/src/components/layout/SidePanel.d.ts +7 -0
  391. package/dist/src/components/layout/Stack.d.ts +2 -0
  392. package/dist/src/components/layout/Stepper.d.ts +23 -0
  393. package/dist/src/components/layout/ToolBox.d.ts +12 -0
  394. package/dist/src/components/layout/index.d.ts +17 -0
  395. package/dist/src/components/list/BaseListItem.d.ts +70 -0
  396. package/dist/src/components/list/List.d.ts +5 -0
  397. package/dist/src/components/list/ListItem.d.ts +16 -0
  398. package/dist/src/components/list/ListItemButton.d.ts +42 -0
  399. package/dist/src/components/list/ListItemText.d.ts +17 -0
  400. package/dist/src/components/list/index.d.ts +3 -0
  401. package/dist/src/components/loader/Loader.d.ts +32 -0
  402. package/dist/src/components/loader/index.d.ts +1 -0
  403. package/dist/src/components/navbar/Navbar.d.ts +41 -0
  404. package/dist/src/components/navbar/NavbarButton.d.ts +39 -0
  405. package/dist/src/components/navbar/NavbarHeader.d.ts +12 -0
  406. package/dist/src/components/navbar/NavbarLogo.d.ts +16 -0
  407. package/dist/src/components/navbar/index.d.ts +4 -0
  408. package/dist/src/components/overlay/DonutFocusOverlay.d.ts +11 -0
  409. package/dist/src/components/overlay/index.d.ts +1 -0
  410. package/dist/src/components/pager/Pager.d.ts +31 -0
  411. package/dist/src/components/pager/index.d.ts +1 -0
  412. package/dist/src/components/popover/Popover.d.ts +26 -0
  413. package/dist/src/components/popover/Popover.theme.d.ts +2 -0
  414. package/dist/src/components/popover/PopoverActions.d.ts +21 -0
  415. package/dist/src/components/popover/index.d.ts +2 -0
  416. package/dist/src/components/progress/CircularProgress.d.ts +35 -0
  417. package/dist/src/components/progress/LinearProgress.d.ts +19 -0
  418. package/dist/src/components/progress/LinearProgress.theme.d.ts +2 -0
  419. package/dist/src/components/progress/index.d.ts +2 -0
  420. package/dist/src/components/scrollable/HorizontalScrollable.d.ts +18 -0
  421. package/dist/src/components/scrollable/index.d.ts +1 -0
  422. package/dist/src/components/skeleton/Skeleton.d.ts +8 -0
  423. package/dist/src/components/skeleton/index.d.ts +1 -0
  424. package/dist/src/components/snackbar/Snackbar.d.ts +52 -0
  425. package/dist/src/components/snackbar/SnackbarProvider.d.ts +10 -0
  426. package/dist/src/components/snackbar/enqueueSnackbar.d.ts +27 -0
  427. package/dist/src/components/snackbar/index.d.ts +3 -0
  428. package/dist/src/components/tab/TabButton.d.ts +30 -0
  429. package/dist/src/components/tab/TabContent.d.ts +7 -0
  430. package/dist/src/components/tab/Tabs.d.ts +52 -0
  431. package/dist/src/components/tab/Tabs.theme.d.ts +2 -0
  432. package/dist/src/components/tab/index.d.ts +3 -0
  433. package/dist/src/components/table/NestedTable.d.ts +29 -0
  434. package/dist/src/components/table/Table.d.ts +5 -0
  435. package/dist/src/components/table/Table.theme.d.ts +2 -0
  436. package/dist/src/components/table/TableBody.d.ts +4 -0
  437. package/dist/src/components/table/TableCell.d.ts +20 -0
  438. package/dist/src/components/table/TableCell.theme.d.ts +2 -0
  439. package/dist/src/components/table/TableCellCopy.d.ts +10 -0
  440. package/dist/src/components/table/TableDivider.d.ts +3 -0
  441. package/dist/src/components/table/TableHead.d.ts +4 -0
  442. package/dist/src/components/table/TableRow.d.ts +9 -0
  443. package/dist/src/components/table/TableSortLabel.d.ts +8 -0
  444. package/dist/src/components/table/index.d.ts +9 -0
  445. package/dist/src/components/toolbar/Toolbar.d.ts +24 -0
  446. package/dist/src/components/toolbar/ToolbarBreadcrumb.d.ts +15 -0
  447. package/dist/src/components/toolbar/ToolbarBreadcrumbButton.d.ts +11 -0
  448. package/dist/src/components/toolbar/ToolbarTitle.d.ts +27 -0
  449. package/dist/src/components/toolbar/index.d.ts +4 -0
  450. package/dist/src/components/tooltip/TextEllipsis.d.ts +18 -0
  451. package/dist/src/components/tooltip/TextEllipsisTooltip.d.ts +27 -0
  452. package/dist/src/components/tooltip/Tooltip.d.ts +59 -0
  453. package/dist/src/components/tooltip/Tooltip.theme.d.ts +2 -0
  454. package/dist/src/components/tooltip/TooltipMenu.d.ts +35 -0
  455. package/dist/src/components/tooltip/index.d.ts +4 -0
  456. package/dist/src/components/transition/Slide.d.ts +3 -0
  457. package/dist/src/components/transition/index.d.ts +1 -0
  458. package/dist/src/components/typography/TextMarker.d.ts +32 -0
  459. package/dist/src/components/typography/Typography.d.ts +39 -0
  460. package/dist/src/components/typography/index.d.ts +2 -0
  461. package/dist/src/components/widget/Widget.d.ts +7 -0
  462. package/dist/src/components/widget/WidgetActions.d.ts +8 -0
  463. package/dist/src/components/widget/WidgetLegendItem.d.ts +65 -0
  464. package/dist/src/components/widget/WidgetTitle.d.ts +23 -0
  465. package/dist/src/components/widget/index.d.ts +4 -0
  466. package/dist/src/components/window/MinimizableWindow.d.ts +98 -0
  467. package/dist/src/components/window/index.d.ts +1 -0
  468. package/dist/src/contexts/IntlContext.d.ts +7 -0
  469. package/dist/src/contexts/index.d.ts +1 -0
  470. package/dist/src/hooks/index.d.ts +3 -0
  471. package/dist/src/hooks/useDebouncedCallback.d.ts +1 -0
  472. package/dist/src/hooks/useFormatters.d.ts +8 -0
  473. package/dist/src/hooks/useResizeObserver.d.ts +7 -0
  474. package/dist/src/i18n/TranslationKey.d.ts +11 -0
  475. package/dist/src/i18n/en.d.ts +202 -0
  476. package/dist/src/i18n/es.d.ts +202 -0
  477. package/dist/src/i18n/fr.d.ts +202 -0
  478. package/dist/src/i18n/it.d.ts +202 -0
  479. package/dist/src/i18n/pt.d.ts +202 -0
  480. package/dist/src/i18n/translate.d.ts +4 -0
  481. package/dist/src/index.d.ts +6 -0
  482. package/dist/src/models/ComparisonInterval.d.ts +1 -0
  483. package/dist/src/models/DateInputFormat.d.ts +4 -0
  484. package/dist/src/models/DateInterval.d.ts +1 -0
  485. package/dist/src/models/SimpleDate.d.ts +8 -0
  486. package/dist/src/propTypes/IncrementLabel.d.ts +15 -0
  487. package/dist/src/propTypes/index.d.ts +1 -0
  488. package/dist/src/stories/alert/Alert.stories.d.ts +6 -0
  489. package/dist/src/stories/avatar/Avatar.stories.d.ts +31 -0
  490. package/dist/src/stories/avatar/AvatarCard.stories.d.ts +8 -0
  491. package/dist/src/stories/avatar/AvatarMultiple.stories.d.ts +13 -0
  492. package/dist/src/stories/button/BadgeToggleButton.stories.d.ts +5 -0
  493. package/dist/src/stories/button/Button.stories.d.ts +33 -0
  494. package/dist/src/stories/button/ButtonGroup.stories.d.ts +6 -0
  495. package/dist/src/stories/button/ButtonWithActions.stories.d.ts +45 -0
  496. package/dist/src/stories/button/IconButton.stories.d.ts +17 -0
  497. package/dist/src/stories/button/IconToggleButton.stories.d.ts +15 -0
  498. package/dist/src/stories/button/MenuButton.stories.d.ts +13 -0
  499. package/dist/src/stories/button/MenuIconButton.stories.d.ts +23 -0
  500. package/dist/src/stories/button/ToggleButton.stories.d.ts +6 -0
  501. package/dist/src/stories/button/ToggleButtonGroup.stories.d.ts +6 -0
  502. package/dist/src/stories/button/UploadButton.stories.d.ts +11 -0
  503. package/dist/src/stories/card/Card.stories.d.ts +6 -0
  504. package/dist/src/stories/card/CardActions.stories.d.ts +6 -0
  505. package/dist/src/stories/card/CardChips.stories.d.ts +6 -0
  506. package/dist/src/stories/card/CardDescription.stories.d.ts +6 -0
  507. package/dist/src/stories/card/CardImage.stories.d.ts +6 -0
  508. package/dist/src/stories/card/CardStatus.stories.d.ts +6 -0
  509. package/dist/src/stories/card/CardTable.stories.d.ts +6 -0
  510. package/dist/src/stories/card/CardTitle.stories.d.ts +6 -0
  511. package/dist/src/stories/card/CardTitleWithIcon.stories.d.ts +6 -0
  512. package/dist/src/stories/card/EnhancedCard.stories.d.ts +6 -0
  513. package/dist/src/stories/chart/BarChart.stories.d.ts +9 -0
  514. package/dist/src/stories/chart/DonutChart.stories.d.ts +11 -0
  515. package/dist/src/stories/chart/FunnelChart.stories.d.ts +9 -0
  516. package/dist/src/stories/chart/IncrementLabel.stories.d.ts +7 -0
  517. package/dist/src/stories/chart/LineChart.stories.d.ts +10 -0
  518. package/dist/src/stories/chart/MicroPieChart.stories.d.ts +6 -0
  519. package/dist/src/stories/chart/RankingChart.stories.d.ts +8 -0
  520. package/dist/src/stories/chart/WeekChart.stories.d.ts +9 -0
  521. package/dist/src/stories/chat/Chat.stories.d.ts +7 -0
  522. package/dist/src/stories/chat/ChatMessage.stories.d.ts +8 -0
  523. package/dist/src/stories/chip/Chip.stories.d.ts +131 -0
  524. package/dist/src/stories/chip/ChipList.stories.d.ts +6 -0
  525. package/dist/src/stories/chip/MenuChip.stories.d.ts +13 -0
  526. package/dist/src/stories/dialog/ConformationDialog.stories.d.ts +7 -0
  527. package/dist/src/stories/dialog/Dialog.stories.d.ts +7 -0
  528. package/dist/src/stories/divider/Divider.stories.d.ts +6 -0
  529. package/dist/src/stories/drawer/Drawer.stories.d.ts +6 -0
  530. package/dist/src/stories/drawer/InputDrawer.stories.d.ts +6 -0
  531. package/dist/src/stories/formatter/CompactNumberFormatter.stories.d.ts +6 -0
  532. package/dist/src/stories/formatter/CurrencyFormatter.stories.d.ts +6 -0
  533. package/dist/src/stories/formatter/DateFormatter.stories.d.ts +6 -0
  534. package/dist/src/stories/formatter/NumberFormatter.stories.d.ts +6 -0
  535. package/dist/src/stories/formatter/PercentageFormatter.stories.d.ts +6 -0
  536. package/dist/src/stories/header/Header.stories.d.ts +6 -0
  537. package/dist/src/stories/header/HeaderSubtitle.stories.d.ts +6 -0
  538. package/dist/src/stories/header/HeaderTitle.stories.d.ts +6 -0
  539. package/dist/src/stories/icon/Icon.stories.d.ts +12 -0
  540. package/dist/src/stories/icon/StackedIcons.stories.d.ts +6 -0
  541. package/dist/src/stories/image/ImageEditor.stories.d.ts +6 -0
  542. package/dist/src/stories/info/InfoBox.stories.d.ts +6 -0
  543. package/dist/src/stories/input/Autocomplete.stories.d.ts +11 -0
  544. package/dist/src/stories/input/CategorizedPicker.stories.d.ts +9 -0
  545. package/dist/src/stories/input/Checkbox.stories.d.ts +6 -0
  546. package/dist/src/stories/input/CodeEditor.stories.d.ts +6 -0
  547. package/dist/src/stories/input/ColorPicker.stories.d.ts +6 -0
  548. package/dist/src/stories/input/DateIntervalPicker.stories.d.ts +6 -0
  549. package/dist/src/stories/input/DatePicker.stories.d.ts +13 -0
  550. package/dist/src/stories/input/DaysOfWeekPicker.stories.d.ts +6 -0
  551. package/dist/src/stories/input/DebouncedTextField.stories.d.ts +8 -0
  552. package/dist/src/stories/input/InputHelperText.stories.d.ts +11 -0
  553. package/dist/src/stories/input/InputLabel.stories.d.ts +13 -0
  554. package/dist/src/stories/input/ItemSelector.stories.d.ts +6 -0
  555. package/dist/src/stories/input/NumberField.stories.d.ts +18 -0
  556. package/dist/src/stories/input/PageSelector.stories.d.ts +6 -0
  557. package/dist/src/stories/input/PhoneField.stories.d.ts +11 -0
  558. package/dist/src/stories/input/Radio.stories.d.ts +6 -0
  559. package/dist/src/stories/input/Select.stories.d.ts +23 -0
  560. package/dist/src/stories/input/SelectPopover.stories.d.ts +9 -0
  561. package/dist/src/stories/input/Switch.stories.d.ts +6 -0
  562. package/dist/src/stories/input/TextEditor.stories.d.ts +6 -0
  563. package/dist/src/stories/input/TextField.stories.d.ts +10 -0
  564. package/dist/src/stories/input/TextFieldContainer.stories.d.ts +20 -0
  565. package/dist/src/stories/input/TimeField.stories.d.ts +6 -0
  566. package/dist/src/stories/input/TimezoneSelector.stories.d.ts +6 -0
  567. package/dist/src/stories/input/UploadClickableArea.stories.d.ts +5 -0
  568. package/dist/src/stories/layout/CollapsiblePanel.stories.d.ts +6 -0
  569. package/dist/src/stories/layout/CollapsiblePanelSwitcher.stories.d.ts +7 -0
  570. package/dist/src/stories/layout/Container.stories.d.ts +6 -0
  571. package/dist/src/stories/layout/Grid.stories.d.ts +6 -0
  572. package/dist/src/stories/layout/LazyLoad.stories.d.ts +6 -0
  573. package/dist/src/stories/layout/PageWIthNavbar.stories.d.ts +10 -0
  574. package/dist/src/stories/layout/PageWIthSidePanel.stories.d.ts +8 -0
  575. package/dist/src/stories/layout/PageWIthToolBox.stories.d.ts +8 -0
  576. package/dist/src/stories/layout/PageWithHeader.stories.d.ts +6 -0
  577. package/dist/src/stories/layout/PageWithToolbar.stories.d.ts +6 -0
  578. package/dist/src/stories/layout/Paper.stories.d.ts +6 -0
  579. package/dist/src/stories/layout/SidePanel.stories.d.ts +6 -0
  580. package/dist/src/stories/layout/Stepper.stories.d.ts +6 -0
  581. package/dist/src/stories/layout/ToolBox.stories.d.ts +6 -0
  582. package/dist/src/stories/list/List.stories.d.ts +6 -0
  583. package/dist/src/stories/list/ListItem.stories.d.ts +28 -0
  584. package/dist/src/stories/list/ListItemButton.stories.d.ts +57 -0
  585. package/dist/src/stories/loader/Loader.stories.d.ts +8 -0
  586. package/dist/src/stories/navbar/Navbar.stories.d.ts +6 -0
  587. package/dist/src/stories/overlay/DonutFocusOverlay.stories.d.ts +6 -0
  588. package/dist/src/stories/pager/Pager.stories.d.ts +6 -0
  589. package/dist/src/stories/popover/Popover.stories.d.ts +6 -0
  590. package/dist/src/stories/progress/CircularProgress.stories.d.ts +9 -0
  591. package/dist/src/stories/progress/LinearProgress.stories.d.ts +9 -0
  592. package/dist/src/stories/scrollable/HorizontalScrollable.stories.d.ts +6 -0
  593. package/dist/src/stories/skeleton/Skeleton.stories.d.ts +33 -0
  594. package/dist/src/stories/snackbar/Snackbar.stories.d.ts +10 -0
  595. package/dist/src/stories/tab/TabButton.stories.d.ts +5 -0
  596. package/dist/src/stories/tab/Tabs.stories.d.ts +5 -0
  597. package/dist/src/stories/table/NestedTable.stories.d.ts +6 -0
  598. package/dist/src/stories/table/Table.stories.d.ts +7 -0
  599. package/dist/src/stories/text-ellipsis/TextEllipsis.stories.d.ts +6 -0
  600. package/dist/src/stories/toolbar/Toolbar.stories.d.ts +9 -0
  601. package/dist/src/stories/toolbar/ToolbarBreadcrumb.stories.d.ts +6 -0
  602. package/dist/src/stories/toolbar/ToolbarTitle.stories.d.ts +6 -0
  603. package/dist/src/stories/tooltip/Tooltip.stories.d.ts +7 -0
  604. package/dist/src/stories/tooltip/TooltipMenu.stories.d.ts +6 -0
  605. package/dist/src/stories/typography/TextMarker.stories.d.ts +6 -0
  606. package/dist/src/stories/typography/Typography.stories.d.ts +11 -0
  607. package/dist/src/stories/utils/StoryUtilities.d.ts +2 -0
  608. package/dist/src/stories/widget/Widget.stories.d.ts +6 -0
  609. package/dist/src/stories/widget/WidgetActions.stories.d.ts +6 -0
  610. package/dist/src/stories/widget/WidgetLegendItem.stories.d.ts +7 -0
  611. package/dist/src/stories/widget/WidgetTitle.stories.d.ts +6 -0
  612. package/dist/src/stories/window/MinimizableWindow.stories.d.ts +25 -0
  613. package/dist/src/theme/Animations.d.ts +3 -0
  614. package/dist/src/theme/Breakpoints.d.ts +11 -0
  615. package/dist/src/theme/Colors.d.ts +90 -0
  616. package/dist/src/theme/GlobalStyles.d.ts +3 -0
  617. package/dist/src/theme/Palettes.d.ts +4 -0
  618. package/dist/src/theme/Shadows.d.ts +2 -0
  619. package/dist/src/theme/Theme.d.ts +1 -0
  620. package/dist/src/theme/Typography.d.ts +97 -0
  621. package/dist/src/theme/index.d.ts +7 -0
  622. package/dist/src/utils/ChartUtils.d.ts +23 -0
  623. package/dist/src/utils/CurrencyFormatter.d.ts +1 -0
  624. package/dist/src/utils/DateUtils.d.ts +45 -0
  625. package/dist/src/utils/NumberFormatter.d.ts +2 -0
  626. package/dist/src/utils/PercentageFormatter.d.ts +1 -0
  627. package/dist/src/utils/PhoneUtils.d.ts +11 -0
  628. package/dist/src/utils/RegExpUtils.d.ts +1 -0
  629. package/dist/src/utils/ResizeObserverUtils.d.ts +1 -0
  630. package/dist/src/utils/index.d.ts +5 -0
  631. package/dist/test/Setup.d.ts +1 -0
  632. package/dist/test/TestUtils.d.ts +3 -0
  633. package/dist/test/unit/components/button/Button.spec.d.ts +1 -0
  634. package/dist/test/unit/components/button/MenuButton.spec.d.ts +1 -0
  635. package/dist/test/unit/components/formatter/CurrencyFormatter.spec.d.ts +1 -0
  636. package/dist/test/unit/components/formatter/DateFormatter.spec.d.ts +1 -0
  637. package/dist/test/unit/components/formatter/NumberFormatter.spec.d.ts +1 -0
  638. package/dist/test/unit/components/formatter/PercentageFormatter.spec.d.ts +1 -0
  639. package/dist/test/unit/components/input/DateIntervalPicker.spec.d.ts +1 -0
  640. package/dist/test/unit/components/input/DatePicker.spec.d.ts +1 -0
  641. package/dist/test/unit/components/input/NumberField.spec.d.ts +1 -0
  642. package/dist/test/unit/components/input/PhoneField.spec.d.ts +1 -0
  643. package/dist/test/unit/components/input/TextField.spec.d.ts +1 -0
  644. package/dist/test/unit/components/input/__mocks__/react-virtualized-auto-sizer.d.ts +4 -0
  645. package/dist/test/unit/components/list/ListItemButton.spec.d.ts +1 -0
  646. package/dist/test/unit/components/tab/Tabs.spec.d.ts +1 -0
  647. package/dist/test/unit/components/tooltop/Tooltip.spec.d.ts +1 -0
  648. package/dist/test/unit/components/widget/WidgetLegendItem.spec.d.ts +1 -0
  649. package/dist/test/unit/i18n/translate.spec.d.ts +1 -0
  650. package/dist/test/unit/utils/DateUtils.spec.d.ts +1 -0
  651. package/dist/theme/Animations.d.ts +3 -0
  652. package/dist/theme/Breakpoints.d.ts +11 -0
  653. package/dist/theme/Colors.d.ts +90 -0
  654. package/dist/theme/GlobalStyles.d.ts +3 -0
  655. package/dist/theme/Palettes.d.ts +4 -0
  656. package/dist/theme/Shadows.d.ts +2 -0
  657. package/dist/theme/Theme.d.ts +1 -0
  658. package/dist/theme/Typography.d.ts +97 -0
  659. package/dist/theme/index.d.ts +7 -0
  660. package/dist/tinymce/icons/default/icons.js +194 -0
  661. package/dist/tinymce/icons/default/icons.min.js +1 -0
  662. package/dist/tinymce/icons/default/index.js +7 -0
  663. package/dist/tinymce/models/dom/index.js +7 -0
  664. package/dist/tinymce/models/dom/model.js +8040 -0
  665. package/dist/tinymce/models/dom/model.min.js +4 -0
  666. package/dist/tinymce/plugins/accordion/index.js +7 -0
  667. package/dist/tinymce/plugins/accordion/plugin.js +1054 -0
  668. package/dist/tinymce/plugins/accordion/plugin.min.js +4 -0
  669. package/dist/tinymce/plugins/advlist/index.js +7 -0
  670. package/dist/tinymce/plugins/advlist/plugin.js +259 -0
  671. package/dist/tinymce/plugins/advlist/plugin.min.js +4 -0
  672. package/dist/tinymce/plugins/anchor/index.js +7 -0
  673. package/dist/tinymce/plugins/anchor/plugin.js +214 -0
  674. package/dist/tinymce/plugins/anchor/plugin.min.js +4 -0
  675. package/dist/tinymce/plugins/autolink/index.js +7 -0
  676. package/dist/tinymce/plugins/autolink/plugin.js +228 -0
  677. package/dist/tinymce/plugins/autolink/plugin.min.js +4 -0
  678. package/dist/tinymce/plugins/autoresize/index.js +7 -0
  679. package/dist/tinymce/plugins/autoresize/plugin.js +192 -0
  680. package/dist/tinymce/plugins/autoresize/plugin.min.js +4 -0
  681. package/dist/tinymce/plugins/autosave/index.js +7 -0
  682. package/dist/tinymce/plugins/autosave/plugin.js +233 -0
  683. package/dist/tinymce/plugins/autosave/plugin.min.js +4 -0
  684. package/dist/tinymce/plugins/charmap/index.js +7 -0
  685. package/dist/tinymce/plugins/charmap/plugin.js +1658 -0
  686. package/dist/tinymce/plugins/charmap/plugin.min.js +4 -0
  687. package/dist/tinymce/plugins/code/index.js +7 -0
  688. package/dist/tinymce/plugins/code/plugin.js +85 -0
  689. package/dist/tinymce/plugins/code/plugin.min.js +4 -0
  690. package/dist/tinymce/plugins/codesample/index.js +7 -0
  691. package/dist/tinymce/plugins/codesample/plugin.js +2463 -0
  692. package/dist/tinymce/plugins/codesample/plugin.min.js +4 -0
  693. package/dist/tinymce/plugins/directionality/index.js +7 -0
  694. package/dist/tinymce/plugins/directionality/plugin.js +395 -0
  695. package/dist/tinymce/plugins/directionality/plugin.min.js +4 -0
  696. package/dist/tinymce/plugins/emoticons/index.js +7 -0
  697. package/dist/tinymce/plugins/emoticons/js/emojiimages.js +1 -0
  698. package/dist/tinymce/plugins/emoticons/js/emojiimages.min.js +3 -0
  699. package/dist/tinymce/plugins/emoticons/js/emojis.js +1 -0
  700. package/dist/tinymce/plugins/emoticons/js/emojis.min.js +2 -0
  701. package/dist/tinymce/plugins/emoticons/plugin.js +595 -0
  702. package/dist/tinymce/plugins/emoticons/plugin.min.js +4 -0
  703. package/dist/tinymce/plugins/fullscreen/index.js +7 -0
  704. package/dist/tinymce/plugins/fullscreen/plugin.js +1249 -0
  705. package/dist/tinymce/plugins/fullscreen/plugin.min.js +4 -0
  706. package/dist/tinymce/plugins/help/index.js +7 -0
  707. package/dist/tinymce/plugins/help/js/i18n/keynav/ar.js +90 -0
  708. package/dist/tinymce/plugins/help/js/i18n/keynav/bg_BG.js +90 -0
  709. package/dist/tinymce/plugins/help/js/i18n/keynav/ca.js +90 -0
  710. package/dist/tinymce/plugins/help/js/i18n/keynav/cs.js +90 -0
  711. package/dist/tinymce/plugins/help/js/i18n/keynav/da.js +90 -0
  712. package/dist/tinymce/plugins/help/js/i18n/keynav/de.js +90 -0
  713. package/dist/tinymce/plugins/help/js/i18n/keynav/el.js +90 -0
  714. package/dist/tinymce/plugins/help/js/i18n/keynav/en.js +90 -0
  715. package/dist/tinymce/plugins/help/js/i18n/keynav/es.js +90 -0
  716. package/dist/tinymce/plugins/help/js/i18n/keynav/eu.js +90 -0
  717. package/dist/tinymce/plugins/help/js/i18n/keynav/fa.js +90 -0
  718. package/dist/tinymce/plugins/help/js/i18n/keynav/fi.js +90 -0
  719. package/dist/tinymce/plugins/help/js/i18n/keynav/fr_FR.js +90 -0
  720. package/dist/tinymce/plugins/help/js/i18n/keynav/he_IL.js +90 -0
  721. package/dist/tinymce/plugins/help/js/i18n/keynav/hi.js +90 -0
  722. package/dist/tinymce/plugins/help/js/i18n/keynav/hr.js +90 -0
  723. package/dist/tinymce/plugins/help/js/i18n/keynav/hu_HU.js +90 -0
  724. package/dist/tinymce/plugins/help/js/i18n/keynav/id.js +90 -0
  725. package/dist/tinymce/plugins/help/js/i18n/keynav/it.js +90 -0
  726. package/dist/tinymce/plugins/help/js/i18n/keynav/ja.js +90 -0
  727. package/dist/tinymce/plugins/help/js/i18n/keynav/kk.js +90 -0
  728. package/dist/tinymce/plugins/help/js/i18n/keynav/ko_KR.js +90 -0
  729. package/dist/tinymce/plugins/help/js/i18n/keynav/ms.js +90 -0
  730. package/dist/tinymce/plugins/help/js/i18n/keynav/nb_NO.js +90 -0
  731. package/dist/tinymce/plugins/help/js/i18n/keynav/nl.js +90 -0
  732. package/dist/tinymce/plugins/help/js/i18n/keynav/pl.js +90 -0
  733. package/dist/tinymce/plugins/help/js/i18n/keynav/pt_BR.js +90 -0
  734. package/dist/tinymce/plugins/help/js/i18n/keynav/pt_PT.js +90 -0
  735. package/dist/tinymce/plugins/help/js/i18n/keynav/ro.js +90 -0
  736. package/dist/tinymce/plugins/help/js/i18n/keynav/ru.js +90 -0
  737. package/dist/tinymce/plugins/help/js/i18n/keynav/sk.js +90 -0
  738. package/dist/tinymce/plugins/help/js/i18n/keynav/sl_SI.js +90 -0
  739. package/dist/tinymce/plugins/help/js/i18n/keynav/sv_SE.js +90 -0
  740. package/dist/tinymce/plugins/help/js/i18n/keynav/th_TH.js +90 -0
  741. package/dist/tinymce/plugins/help/js/i18n/keynav/tr.js +90 -0
  742. package/dist/tinymce/plugins/help/js/i18n/keynav/uk.js +90 -0
  743. package/dist/tinymce/plugins/help/js/i18n/keynav/vi.js +90 -0
  744. package/dist/tinymce/plugins/help/js/i18n/keynav/zh_CN.js +84 -0
  745. package/dist/tinymce/plugins/help/js/i18n/keynav/zh_TW.js +90 -0
  746. package/dist/tinymce/plugins/help/plugin.js +898 -0
  747. package/dist/tinymce/plugins/help/plugin.min.js +4 -0
  748. package/dist/tinymce/plugins/image/index.js +7 -0
  749. package/dist/tinymce/plugins/image/plugin.js +1505 -0
  750. package/dist/tinymce/plugins/image/plugin.min.js +4 -0
  751. package/dist/tinymce/plugins/importcss/index.js +7 -0
  752. package/dist/tinymce/plugins/importcss/plugin.js +344 -0
  753. package/dist/tinymce/plugins/importcss/plugin.min.js +4 -0
  754. package/dist/tinymce/plugins/insertdatetime/index.js +7 -0
  755. package/dist/tinymce/plugins/insertdatetime/plugin.js +187 -0
  756. package/dist/tinymce/plugins/insertdatetime/plugin.min.js +4 -0
  757. package/dist/tinymce/plugins/link/index.js +7 -0
  758. package/dist/tinymce/plugins/link/plugin.js +1242 -0
  759. package/dist/tinymce/plugins/link/plugin.min.js +4 -0
  760. package/dist/tinymce/plugins/lists/index.js +7 -0
  761. package/dist/tinymce/plugins/lists/plugin.js +2172 -0
  762. package/dist/tinymce/plugins/lists/plugin.min.js +4 -0
  763. package/dist/tinymce/plugins/media/index.js +7 -0
  764. package/dist/tinymce/plugins/media/plugin.js +1217 -0
  765. package/dist/tinymce/plugins/media/plugin.min.js +4 -0
  766. package/dist/tinymce/plugins/nonbreaking/index.js +7 -0
  767. package/dist/tinymce/plugins/nonbreaking/plugin.js +123 -0
  768. package/dist/tinymce/plugins/nonbreaking/plugin.min.js +4 -0
  769. package/dist/tinymce/plugins/pagebreak/index.js +7 -0
  770. package/dist/tinymce/plugins/pagebreak/plugin.js +117 -0
  771. package/dist/tinymce/plugins/pagebreak/plugin.min.js +4 -0
  772. package/dist/tinymce/plugins/preview/index.js +7 -0
  773. package/dist/tinymce/plugins/preview/plugin.js +97 -0
  774. package/dist/tinymce/plugins/preview/plugin.min.js +4 -0
  775. package/dist/tinymce/plugins/quickbars/index.js +7 -0
  776. package/dist/tinymce/plugins/quickbars/plugin.js +447 -0
  777. package/dist/tinymce/plugins/quickbars/plugin.min.js +4 -0
  778. package/dist/tinymce/plugins/save/index.js +7 -0
  779. package/dist/tinymce/plugins/save/plugin.js +118 -0
  780. package/dist/tinymce/plugins/save/plugin.min.js +4 -0
  781. package/dist/tinymce/plugins/searchreplace/index.js +7 -0
  782. package/dist/tinymce/plugins/searchreplace/plugin.js +1093 -0
  783. package/dist/tinymce/plugins/searchreplace/plugin.min.js +4 -0
  784. package/dist/tinymce/plugins/table/index.js +7 -0
  785. package/dist/tinymce/plugins/table/plugin.js +3462 -0
  786. package/dist/tinymce/plugins/table/plugin.min.js +4 -0
  787. package/dist/tinymce/plugins/template/index.js +7 -0
  788. package/dist/tinymce/plugins/template/plugin.js +567 -0
  789. package/dist/tinymce/plugins/template/plugin.min.js +4 -0
  790. package/dist/tinymce/plugins/visualblocks/index.js +7 -0
  791. package/dist/tinymce/plugins/visualblocks/plugin.js +98 -0
  792. package/dist/tinymce/plugins/visualblocks/plugin.min.js +4 -0
  793. package/dist/tinymce/plugins/visualchars/index.js +7 -0
  794. package/dist/tinymce/plugins/visualchars/plugin.js +560 -0
  795. package/dist/tinymce/plugins/visualchars/plugin.min.js +4 -0
  796. package/dist/tinymce/plugins/wordcount/index.js +7 -0
  797. package/dist/tinymce/plugins/wordcount/plugin.js +405 -0
  798. package/dist/tinymce/plugins/wordcount/plugin.min.js +4 -0
  799. package/dist/tinymce/skins/content/dark/content.css +66 -0
  800. package/dist/tinymce/skins/content/dark/content.js +2 -0
  801. package/dist/tinymce/skins/content/dark/content.min.css +1 -0
  802. package/dist/tinymce/skins/content/default/content.css +61 -0
  803. package/dist/tinymce/skins/content/default/content.js +2 -0
  804. package/dist/tinymce/skins/content/default/content.min.css +1 -0
  805. package/dist/tinymce/skins/content/document/content.css +66 -0
  806. package/dist/tinymce/skins/content/document/content.js +2 -0
  807. package/dist/tinymce/skins/content/document/content.min.css +1 -0
  808. package/dist/tinymce/skins/content/tinymce-5/content.css +61 -0
  809. package/dist/tinymce/skins/content/tinymce-5/content.js +2 -0
  810. package/dist/tinymce/skins/content/tinymce-5/content.min.css +1 -0
  811. package/dist/tinymce/skins/content/tinymce-5-dark/content.css +66 -0
  812. package/dist/tinymce/skins/content/tinymce-5-dark/content.js +2 -0
  813. package/dist/tinymce/skins/content/tinymce-5-dark/content.min.css +1 -0
  814. package/dist/tinymce/skins/content/writer/content.css +62 -0
  815. package/dist/tinymce/skins/content/writer/content.js +2 -0
  816. package/dist/tinymce/skins/content/writer/content.min.css +1 -0
  817. package/dist/tinymce/skins/ui/oxide/content.css +785 -0
  818. package/dist/tinymce/skins/ui/oxide/content.inline.css +779 -0
  819. package/dist/tinymce/skins/ui/oxide/content.inline.js +2 -0
  820. package/dist/tinymce/skins/ui/oxide/content.inline.min.css +1 -0
  821. package/dist/tinymce/skins/ui/oxide/content.js +2 -0
  822. package/dist/tinymce/skins/ui/oxide/content.min.css +1 -0
  823. package/dist/tinymce/skins/ui/oxide/skin.css +3763 -0
  824. package/dist/tinymce/skins/ui/oxide/skin.js +2 -0
  825. package/dist/tinymce/skins/ui/oxide/skin.min.css +1 -0
  826. package/dist/tinymce/skins/ui/oxide/skin.shadowdom.css +30 -0
  827. package/dist/tinymce/skins/ui/oxide/skin.shadowdom.js +2 -0
  828. package/dist/tinymce/skins/ui/oxide/skin.shadowdom.min.css +1 -0
  829. package/dist/tinymce/skins/ui/oxide-dark/content.css +766 -0
  830. package/dist/tinymce/skins/ui/oxide-dark/content.inline.css +779 -0
  831. package/dist/tinymce/skins/ui/oxide-dark/content.inline.js +2 -0
  832. package/dist/tinymce/skins/ui/oxide-dark/content.inline.min.css +1 -0
  833. package/dist/tinymce/skins/ui/oxide-dark/content.js +2 -0
  834. package/dist/tinymce/skins/ui/oxide-dark/content.min.css +1 -0
  835. package/dist/tinymce/skins/ui/oxide-dark/skin.css +3766 -0
  836. package/dist/tinymce/skins/ui/oxide-dark/skin.js +2 -0
  837. package/dist/tinymce/skins/ui/oxide-dark/skin.min.css +1 -0
  838. package/dist/tinymce/skins/ui/oxide-dark/skin.shadowdom.css +30 -0
  839. package/dist/tinymce/skins/ui/oxide-dark/skin.shadowdom.js +2 -0
  840. package/dist/tinymce/skins/ui/oxide-dark/skin.shadowdom.min.css +1 -0
  841. package/dist/tinymce/skins/ui/tinymce-5/content.css +785 -0
  842. package/dist/tinymce/skins/ui/tinymce-5/content.inline.css +779 -0
  843. package/dist/tinymce/skins/ui/tinymce-5/content.inline.js +2 -0
  844. package/dist/tinymce/skins/ui/tinymce-5/content.inline.min.css +1 -0
  845. package/dist/tinymce/skins/ui/tinymce-5/content.js +2 -0
  846. package/dist/tinymce/skins/ui/tinymce-5/content.min.css +1 -0
  847. package/dist/tinymce/skins/ui/tinymce-5/skin.css +3857 -0
  848. package/dist/tinymce/skins/ui/tinymce-5/skin.js +2 -0
  849. package/dist/tinymce/skins/ui/tinymce-5/skin.min.css +1 -0
  850. package/dist/tinymce/skins/ui/tinymce-5/skin.shadowdom.css +30 -0
  851. package/dist/tinymce/skins/ui/tinymce-5/skin.shadowdom.js +2 -0
  852. package/dist/tinymce/skins/ui/tinymce-5/skin.shadowdom.min.css +1 -0
  853. package/dist/tinymce/skins/ui/tinymce-5-dark/content.css +766 -0
  854. package/dist/tinymce/skins/ui/tinymce-5-dark/content.inline.css +779 -0
  855. package/dist/tinymce/skins/ui/tinymce-5-dark/content.inline.js +2 -0
  856. package/dist/tinymce/skins/ui/tinymce-5-dark/content.inline.min.css +1 -0
  857. package/dist/tinymce/skins/ui/tinymce-5-dark/content.js +2 -0
  858. package/dist/tinymce/skins/ui/tinymce-5-dark/content.min.css +1 -0
  859. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.css +3857 -0
  860. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.js +2 -0
  861. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.min.css +1 -0
  862. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.css +30 -0
  863. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.js +2 -0
  864. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.min.css +1 -0
  865. package/dist/tinymce/themes/silver/index.js +7 -0
  866. package/dist/tinymce/themes/silver/theme.js +30754 -0
  867. package/dist/tinymce/themes/silver/theme.min.js +4 -0
  868. package/dist/tinymce/tinymce.js +31757 -0
  869. package/dist/tinymce/tinymce.min.js +4 -0
  870. package/dist/tsconfig.build.tsbuildinfo +1 -0
  871. package/dist/tsconfig.tsbuildinfo +1 -0
  872. package/dist/utils/ChartUtils.d.ts +23 -0
  873. package/dist/utils/CurrencyFormatter.d.ts +1 -0
  874. package/dist/utils/DateUtils.d.ts +45 -0
  875. package/dist/utils/NumberFormatter.d.ts +2 -0
  876. package/dist/utils/PercentageFormatter.d.ts +1 -0
  877. package/dist/utils/PhoneUtils.d.ts +11 -0
  878. package/dist/utils/RegExpUtils.d.ts +1 -0
  879. package/dist/utils/ResizeObserverUtils.d.ts +1 -0
  880. package/dist/utils/index.d.ts +5 -0
  881. package/package.json +110 -0
@@ -0,0 +1,405 @@
1
+ /**
2
+ * TinyMCE version 6.8.4 (2024-06-19)
3
+ */
4
+
5
+ (function () {
6
+ 'use strict';
7
+
8
+ var global$2 = tinymce.util.Tools.resolve('tinymce.PluginManager');
9
+
10
+ const eq = t => a => t === a;
11
+ const isNull = eq(null);
12
+
13
+ const identity = x => {
14
+ return x;
15
+ };
16
+
17
+ const map = (xs, f) => {
18
+ const len = xs.length;
19
+ const r = new Array(len);
20
+ for (let i = 0; i < len; i++) {
21
+ const x = xs[i];
22
+ r[i] = f(x, i);
23
+ }
24
+ return r;
25
+ };
26
+
27
+ const punctuationStr = `[~\u2116|!-*+-\\/:;?@\\[-\`{}\u00A1\u00AB\u00B7\u00BB\u00BF;\u00B7\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1361-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u3008\u3009\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30\u2E31\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]`;
28
+ const regExps = {
29
+ aletter: '[A-Za-z\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05d0-\u05ea\u05f0-\u05F3\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097f\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c33\u0c35-\u0c39\u0c3d\u0c58\u0c59\u0c60\u0c61\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d05-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d60\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u10a0-\u10c5\u10d0-\u10fa\u10fc\u1100-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f4\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f0\u1700-\u170c\u170e-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1820-\u1877\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191c\u1a00-\u1a16\u1b05-\u1b33\u1b45-\u1b4b\u1b83-\u1ba0\u1bae\u1baf\u1bc0-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1ce9-\u1cec\u1cee-\u1cf1\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2119-\u211d\u2124\u2126\u2128\u212a-\u212d\u212f-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u24B6-\u24E9\u2c00-\u2c2e\u2c30-\u2c5e\u2c60-\u2ce4\u2ceb-\u2cee\u2d00-\u2d25\u2d30-\u2d65\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u2e2f\u3005\u303b\u303c\u3105-\u312d\u3131-\u318e\u31a0-\u31ba\ua000-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua697\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua78e\ua790\ua791\ua7a0-\ua7a9\ua7fa-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uabc0-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uffa0-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc]',
30
+ midnumlet: `[-'\\.\u2018\u2019\u2024\uFE52\uFF07\uFF0E]`,
31
+ midletter: '[:\xB7\xB7\u05F4\u2027\uFE13\uFE55\uFF1A]',
32
+ midnum: '[\xB1+*/,;;\u0589\u060C\u060D\u066C\u07F8\u2044\uFE10\uFE14\uFE50\uFE54\uFF0C\uFF1B]',
33
+ numeric: '[0-9\u0660-\u0669\u066B\u06f0-\u06f9\u07c0-\u07c9\u0966-\u096f\u09e6-\u09ef\u0a66-\u0a6f\u0ae6-\u0aef\u0b66-\u0b6f\u0be6-\u0bef\u0c66-\u0c6f\u0ce6-\u0cef\u0d66-\u0d6f\u0e50-\u0e59\u0ed0-\u0ed9\u0f20-\u0f29\u1040-\u1049\u1090-\u1099\u17e0-\u17e9\u1810-\u1819\u1946-\u194f\u19d0-\u19d9\u1a80-\u1a89\u1a90-\u1a99\u1b50-\u1b59\u1bb0-\u1bb9\u1c40-\u1c49\u1c50-\u1c59\ua620-\ua629\ua8d0-\ua8d9\ua900-\ua909\ua9d0-\ua9d9\uaa50-\uaa59\uabf0-\uabf9]',
34
+ cr: '\\r',
35
+ lf: '\\n',
36
+ newline: '[\x0B\f\x85\u2028\u2029]',
37
+ extend: '[\u0300-\u036f\u0483-\u0489\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u065f\u0670\u06d6-\u06dc\u06df-\u06e4\u06e7\u06e8\u06ea-\u06ed\u0711\u0730-\u074a\u07a6-\u07b0\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0859-\u085b\u0900-\u0903\u093a-\u093c\u093e-\u094f\u0951-\u0957\u0962\u0963\u0981-\u0983\u09bc\u09be-\u09c4\u09c7\u09c8\u09cb-\u09cd\u09d7\u09e2\u09e3\u0a01-\u0a03\u0a3c\u0a3e-\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a70\u0a71\u0a75\u0a81-\u0a83\u0abc\u0abe-\u0ac5\u0ac7-\u0ac9\u0acb-\u0acd\u0ae2\u0ae3\u0b01-\u0b03\u0b3c\u0b3e-\u0b44\u0b47\u0b48\u0b4b-\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b82\u0bbe-\u0bc2\u0bc6-\u0bc8\u0bca-\u0bcd\u0bd7\u0c01-\u0c03\u0c3e-\u0c44\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0c82\u0c83\u0cbc\u0cbe-\u0cc4\u0cc6-\u0cc8\u0cca-\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0d02\u0d03\u0d3e-\u0d44\u0d46-\u0d48\u0d4a-\u0d4d\u0d57\u0d62\u0d63\u0d82\u0d83\u0dca\u0dcf-\u0dd4\u0dd6\u0dd8-\u0ddf\u0df2\u0df3\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0f18\u0f19\u0f35\u0f37\u0f39\u0f3e\u0f3f\u0f71-\u0f84\u0f86\u0f87\u0f8d-\u0f97\u0f99-\u0fbc\u0fc6\u102b-\u103e\u1056-\u1059\u105e-\u1060\u1062-\u1064\u1067-\u106d\u1071-\u1074\u1082-\u108d\u108f\u109a-\u109d\u135d-\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b6-\u17d3\u17dd\u180b-\u180d\u18a9\u1920-\u192b\u1930-\u193b\u19b0-\u19c0\u19c8\u19c9\u1a17-\u1a1b\u1a55-\u1a5e\u1a60-\u1a7c\u1a7f\u1b00-\u1b04\u1b34-\u1b44\u1b6b-\u1b73\u1b80-\u1b82\u1ba1-\u1baa\u1be6-\u1bf3\u1c24-\u1c37\u1cd0-\u1cd2\u1cd4-\u1ce8\u1ced\u1cf2\u1dc0-\u1de6\u1dfc-\u1dff\u200c\u200d\u20d0-\u20f0\u2cef-\u2cf1\u2d7f\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua66f-\uA672\ua67c\ua67d\ua6f0\ua6f1\ua802\ua806\ua80b\ua823-\ua827\ua880\ua881\ua8b4-\ua8c4\ua8e0-\ua8f1\ua926-\ua92d\ua947-\ua953\ua980-\ua983\ua9b3-\ua9c0\uaa29-\uaa36\uaa43\uaa4c\uaa4d\uaa7b\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uabe3-\uabea\uabec\uabed\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\uff9e\uff9f]',
38
+ format: '[\xAD\u0600-\u0603\u06DD\u070F\u17b4\u17b5\u200E\u200F\u202A-\u202E\u2060-\u2064\u206A-\u206F\uFEFF\uFFF9-\uFFFB]',
39
+ katakana: '[\u3031-\u3035\u309B\u309C\u30A0-\u30fa\u30fc-\u30ff\u31f0-\u31ff\u32D0-\u32FE\u3300-\u3357\uff66-\uff9d]',
40
+ extendnumlet: '[=_\u203f\u2040\u2054\ufe33\ufe34\ufe4d-\ufe4f\uff3f\u2200-\u22FF<>]',
41
+ punctuation: punctuationStr
42
+ };
43
+ const characterIndices = {
44
+ ALETTER: 0,
45
+ MIDNUMLET: 1,
46
+ MIDLETTER: 2,
47
+ MIDNUM: 3,
48
+ NUMERIC: 4,
49
+ CR: 5,
50
+ LF: 6,
51
+ NEWLINE: 7,
52
+ EXTEND: 8,
53
+ FORMAT: 9,
54
+ KATAKANA: 10,
55
+ EXTENDNUMLET: 11,
56
+ AT: 12,
57
+ OTHER: 13
58
+ };
59
+ const SETS$1 = [
60
+ new RegExp(regExps.aletter),
61
+ new RegExp(regExps.midnumlet),
62
+ new RegExp(regExps.midletter),
63
+ new RegExp(regExps.midnum),
64
+ new RegExp(regExps.numeric),
65
+ new RegExp(regExps.cr),
66
+ new RegExp(regExps.lf),
67
+ new RegExp(regExps.newline),
68
+ new RegExp(regExps.extend),
69
+ new RegExp(regExps.format),
70
+ new RegExp(regExps.katakana),
71
+ new RegExp(regExps.extendnumlet),
72
+ new RegExp('@')
73
+ ];
74
+ const EMPTY_STRING$1 = '';
75
+ const PUNCTUATION$1 = new RegExp('^' + regExps.punctuation + '$');
76
+ const WHITESPACE$1 = /^\s+$/;
77
+
78
+ const SETS = SETS$1;
79
+ const OTHER = characterIndices.OTHER;
80
+ const getType = char => {
81
+ let type = OTHER;
82
+ const setsLength = SETS.length;
83
+ for (let j = 0; j < setsLength; ++j) {
84
+ const set = SETS[j];
85
+ if (set && set.test(char)) {
86
+ type = j;
87
+ break;
88
+ }
89
+ }
90
+ return type;
91
+ };
92
+ const memoize = func => {
93
+ const cache = {};
94
+ return char => {
95
+ if (cache[char]) {
96
+ return cache[char];
97
+ } else {
98
+ const result = func(char);
99
+ cache[char] = result;
100
+ return result;
101
+ }
102
+ };
103
+ };
104
+ const classify = characters => {
105
+ const memoized = memoize(getType);
106
+ return map(characters, memoized);
107
+ };
108
+
109
+ const isWordBoundary = (map, index) => {
110
+ const type = map[index];
111
+ const nextType = map[index + 1];
112
+ if (index < 0 || index > map.length - 1 && index !== 0) {
113
+ return false;
114
+ }
115
+ if (type === characterIndices.ALETTER && nextType === characterIndices.ALETTER) {
116
+ return false;
117
+ }
118
+ const nextNextType = map[index + 2];
119
+ if (type === characterIndices.ALETTER && (nextType === characterIndices.MIDLETTER || nextType === characterIndices.MIDNUMLET || nextType === characterIndices.AT) && nextNextType === characterIndices.ALETTER) {
120
+ return false;
121
+ }
122
+ const prevType = map[index - 1];
123
+ if ((type === characterIndices.MIDLETTER || type === characterIndices.MIDNUMLET || nextType === characterIndices.AT) && nextType === characterIndices.ALETTER && prevType === characterIndices.ALETTER) {
124
+ return false;
125
+ }
126
+ if ((type === characterIndices.NUMERIC || type === characterIndices.ALETTER) && (nextType === characterIndices.NUMERIC || nextType === characterIndices.ALETTER)) {
127
+ return false;
128
+ }
129
+ if ((type === characterIndices.MIDNUM || type === characterIndices.MIDNUMLET) && nextType === characterIndices.NUMERIC && prevType === characterIndices.NUMERIC) {
130
+ return false;
131
+ }
132
+ if (type === characterIndices.NUMERIC && (nextType === characterIndices.MIDNUM || nextType === characterIndices.MIDNUMLET) && nextNextType === characterIndices.NUMERIC) {
133
+ return false;
134
+ }
135
+ if ((type === characterIndices.EXTEND || type === characterIndices.FORMAT) && (nextType === characterIndices.ALETTER || nextType === characterIndices.NUMERIC || nextType === characterIndices.KATAKANA || nextType === characterIndices.EXTEND || nextType === characterIndices.FORMAT) || (nextType === characterIndices.EXTEND || nextType === characterIndices.FORMAT && (nextNextType === characterIndices.ALETTER || nextNextType === characterIndices.NUMERIC || nextNextType === characterIndices.KATAKANA || nextNextType === characterIndices.EXTEND || nextNextType === characterIndices.FORMAT)) && (type === characterIndices.ALETTER || type === characterIndices.NUMERIC || type === characterIndices.KATAKANA || type === characterIndices.EXTEND || type === characterIndices.FORMAT)) {
136
+ return false;
137
+ }
138
+ if (type === characterIndices.CR && nextType === characterIndices.LF) {
139
+ return false;
140
+ }
141
+ if (type === characterIndices.NEWLINE || type === characterIndices.CR || type === characterIndices.LF) {
142
+ return true;
143
+ }
144
+ if (nextType === characterIndices.NEWLINE || nextType === characterIndices.CR || nextType === characterIndices.LF) {
145
+ return true;
146
+ }
147
+ if (type === characterIndices.KATAKANA && nextType === characterIndices.KATAKANA) {
148
+ return false;
149
+ }
150
+ if (nextType === characterIndices.EXTENDNUMLET && (type === characterIndices.ALETTER || type === characterIndices.NUMERIC || type === characterIndices.KATAKANA || type === characterIndices.EXTENDNUMLET)) {
151
+ return false;
152
+ }
153
+ if (type === characterIndices.EXTENDNUMLET && (nextType === characterIndices.ALETTER || nextType === characterIndices.NUMERIC || nextType === characterIndices.KATAKANA)) {
154
+ return false;
155
+ }
156
+ if (type === characterIndices.AT) {
157
+ return false;
158
+ }
159
+ return true;
160
+ };
161
+
162
+ const EMPTY_STRING = EMPTY_STRING$1;
163
+ const WHITESPACE = WHITESPACE$1;
164
+ const PUNCTUATION = PUNCTUATION$1;
165
+ const isProtocol = str => str === 'http' || str === 'https';
166
+ const findWordEnd = (characters, startIndex) => {
167
+ let i;
168
+ for (i = startIndex; i < characters.length; i++) {
169
+ if (WHITESPACE.test(characters[i])) {
170
+ break;
171
+ }
172
+ }
173
+ return i;
174
+ };
175
+ const findUrlEnd = (characters, startIndex) => {
176
+ const endIndex = findWordEnd(characters, startIndex + 1);
177
+ const peakedWord = characters.slice(startIndex + 1, endIndex).join(EMPTY_STRING);
178
+ return peakedWord.substr(0, 3) === '://' ? endIndex : startIndex;
179
+ };
180
+ const findWordsWithIndices = (chars, sChars, characterMap, options) => {
181
+ const words = [];
182
+ const indices = [];
183
+ let word = [];
184
+ for (let i = 0; i < characterMap.length; ++i) {
185
+ word.push(chars[i]);
186
+ if (isWordBoundary(characterMap, i)) {
187
+ const ch = sChars[i];
188
+ if ((options.includeWhitespace || !WHITESPACE.test(ch)) && (options.includePunctuation || !PUNCTUATION.test(ch))) {
189
+ const startOfWord = i - word.length + 1;
190
+ const endOfWord = i + 1;
191
+ const str = sChars.slice(startOfWord, endOfWord).join(EMPTY_STRING);
192
+ if (isProtocol(str)) {
193
+ const endOfUrl = findUrlEnd(sChars, i);
194
+ const url = chars.slice(endOfWord, endOfUrl);
195
+ Array.prototype.push.apply(word, url);
196
+ i = endOfUrl;
197
+ }
198
+ words.push(word);
199
+ indices.push({
200
+ start: startOfWord,
201
+ end: endOfWord
202
+ });
203
+ }
204
+ word = [];
205
+ }
206
+ }
207
+ return {
208
+ words,
209
+ indices
210
+ };
211
+ };
212
+ const getDefaultOptions = () => ({
213
+ includeWhitespace: false,
214
+ includePunctuation: false
215
+ });
216
+ const getWordsWithIndices = (chars, extract, options) => {
217
+ options = {
218
+ ...getDefaultOptions(),
219
+ ...options
220
+ };
221
+ const extractedChars = map(chars, extract);
222
+ const characterMap = classify(extractedChars);
223
+ return findWordsWithIndices(chars, extractedChars, characterMap, options);
224
+ };
225
+ const getWords$1 = (chars, extract, options) => getWordsWithIndices(chars, extract, options).words;
226
+
227
+ const getWords = getWords$1;
228
+
229
+ const removeZwsp$1 = s => s.replace(/\uFEFF/g, '');
230
+
231
+ var global$1 = tinymce.util.Tools.resolve('tinymce.dom.TreeWalker');
232
+
233
+ const getText = (node, schema) => {
234
+ const blockElements = schema.getBlockElements();
235
+ const voidElements = schema.getVoidElements();
236
+ const isNewline = node => blockElements[node.nodeName] || voidElements[node.nodeName];
237
+ const textBlocks = [];
238
+ let txt = '';
239
+ const treeWalker = new global$1(node, node);
240
+ let tempNode;
241
+ while (tempNode = treeWalker.next()) {
242
+ if (tempNode.nodeType === 3) {
243
+ txt += removeZwsp$1(tempNode.data);
244
+ } else if (isNewline(tempNode) && txt.length) {
245
+ textBlocks.push(txt);
246
+ txt = '';
247
+ }
248
+ }
249
+ if (txt.length) {
250
+ textBlocks.push(txt);
251
+ }
252
+ return textBlocks;
253
+ };
254
+
255
+ const removeZwsp = text => text.replace(/\u200B/g, '');
256
+ const strLen = str => str.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]/g, '_').length;
257
+ const countWords = (node, schema) => {
258
+ const text = removeZwsp(getText(node, schema).join('\n'));
259
+ return getWords(text.split(''), identity).length;
260
+ };
261
+ const countCharacters = (node, schema) => {
262
+ const text = getText(node, schema).join('');
263
+ return strLen(text);
264
+ };
265
+ const countCharactersWithoutSpaces = (node, schema) => {
266
+ const text = getText(node, schema).join('').replace(/\s/g, '');
267
+ return strLen(text);
268
+ };
269
+
270
+ const createBodyCounter = (editor, count) => () => count(editor.getBody(), editor.schema);
271
+ const createSelectionCounter = (editor, count) => () => count(editor.selection.getRng().cloneContents(), editor.schema);
272
+ const createBodyWordCounter = editor => createBodyCounter(editor, countWords);
273
+ const get = editor => ({
274
+ body: {
275
+ getWordCount: createBodyWordCounter(editor),
276
+ getCharacterCount: createBodyCounter(editor, countCharacters),
277
+ getCharacterCountWithoutSpaces: createBodyCounter(editor, countCharactersWithoutSpaces)
278
+ },
279
+ selection: {
280
+ getWordCount: createSelectionCounter(editor, countWords),
281
+ getCharacterCount: createSelectionCounter(editor, countCharacters),
282
+ getCharacterCountWithoutSpaces: createSelectionCounter(editor, countCharactersWithoutSpaces)
283
+ },
284
+ getCount: createBodyWordCounter(editor)
285
+ });
286
+
287
+ const open = (editor, api) => {
288
+ editor.windowManager.open({
289
+ title: 'Word Count',
290
+ body: {
291
+ type: 'panel',
292
+ items: [{
293
+ type: 'table',
294
+ header: [
295
+ 'Count',
296
+ 'Document',
297
+ 'Selection'
298
+ ],
299
+ cells: [
300
+ [
301
+ 'Words',
302
+ String(api.body.getWordCount()),
303
+ String(api.selection.getWordCount())
304
+ ],
305
+ [
306
+ 'Characters (no spaces)',
307
+ String(api.body.getCharacterCountWithoutSpaces()),
308
+ String(api.selection.getCharacterCountWithoutSpaces())
309
+ ],
310
+ [
311
+ 'Characters',
312
+ String(api.body.getCharacterCount()),
313
+ String(api.selection.getCharacterCount())
314
+ ]
315
+ ]
316
+ }]
317
+ },
318
+ buttons: [{
319
+ type: 'cancel',
320
+ name: 'close',
321
+ text: 'Close',
322
+ primary: true
323
+ }]
324
+ });
325
+ };
326
+
327
+ const register$1 = (editor, api) => {
328
+ editor.addCommand('mceWordCount', () => open(editor, api));
329
+ };
330
+
331
+ const first = (fn, rate) => {
332
+ let timer = null;
333
+ const cancel = () => {
334
+ if (!isNull(timer)) {
335
+ clearTimeout(timer);
336
+ timer = null;
337
+ }
338
+ };
339
+ const throttle = (...args) => {
340
+ if (isNull(timer)) {
341
+ timer = setTimeout(() => {
342
+ timer = null;
343
+ fn.apply(null, args);
344
+ }, rate);
345
+ }
346
+ };
347
+ return {
348
+ cancel,
349
+ throttle
350
+ };
351
+ };
352
+
353
+ var global = tinymce.util.Tools.resolve('tinymce.util.Delay');
354
+
355
+ const fireWordCountUpdate = (editor, api) => {
356
+ editor.dispatch('wordCountUpdate', {
357
+ wordCount: {
358
+ words: api.body.getWordCount(),
359
+ characters: api.body.getCharacterCount(),
360
+ charactersWithoutSpaces: api.body.getCharacterCountWithoutSpaces()
361
+ }
362
+ });
363
+ };
364
+
365
+ const updateCount = (editor, api) => {
366
+ fireWordCountUpdate(editor, api);
367
+ };
368
+ const setup = (editor, api, delay) => {
369
+ const debouncedUpdate = first(() => updateCount(editor, api), delay);
370
+ editor.on('init', () => {
371
+ updateCount(editor, api);
372
+ global.setEditorTimeout(editor, () => {
373
+ editor.on('SetContent BeforeAddUndo Undo Redo ViewUpdate keyup', debouncedUpdate.throttle);
374
+ }, 0);
375
+ editor.on('remove', debouncedUpdate.cancel);
376
+ });
377
+ };
378
+
379
+ const register = editor => {
380
+ const onAction = () => editor.execCommand('mceWordCount');
381
+ editor.ui.registry.addButton('wordcount', {
382
+ tooltip: 'Word count',
383
+ icon: 'character-count',
384
+ onAction
385
+ });
386
+ editor.ui.registry.addMenuItem('wordcount', {
387
+ text: 'Word count',
388
+ icon: 'character-count',
389
+ onAction
390
+ });
391
+ };
392
+
393
+ var Plugin = (delay = 300) => {
394
+ global$2.add('wordcount', editor => {
395
+ const api = get(editor);
396
+ register$1(editor, api);
397
+ register(editor);
398
+ setup(editor, api, delay);
399
+ return api;
400
+ });
401
+ };
402
+
403
+ Plugin();
404
+
405
+ })();
@@ -0,0 +1,4 @@
1
+ /**
2
+ * TinyMCE version 6.8.4 (2024-06-19)
3
+ */
4
+ !function(){"use strict";var t=tinymce.util.Tools.resolve("tinymce.PluginManager");const e=(null,t=>null===t);const n=t=>t,o=(t,e)=>{const n=t.length,o=new Array(n);for(let r=0;r<n;r++){const n=t[r];o[r]=e(n,r)}return o},r="[-'\\.\u2018\u2019\u2024\ufe52\uff07\uff0e]",c="[:\xb7\xb7\u05f4\u2027\ufe13\ufe55\uff1a]",u="[\xb1+*/,;;\u0589\u060c\u060d\u066c\u07f8\u2044\ufe10\ufe14\ufe50\ufe54\uff0c\uff1b]",s="[0-9\u0660-\u0669\u066b\u06f0-\u06f9\u07c0-\u07c9\u0966-\u096f\u09e6-\u09ef\u0a66-\u0a6f\u0ae6-\u0aef\u0b66-\u0b6f\u0be6-\u0bef\u0c66-\u0c6f\u0ce6-\u0cef\u0d66-\u0d6f\u0e50-\u0e59\u0ed0-\u0ed9\u0f20-\u0f29\u1040-\u1049\u1090-\u1099\u17e0-\u17e9\u1810-\u1819\u1946-\u194f\u19d0-\u19d9\u1a80-\u1a89\u1a90-\u1a99\u1b50-\u1b59\u1bb0-\u1bb9\u1c40-\u1c49\u1c50-\u1c59\ua620-\ua629\ua8d0-\ua8d9\ua900-\ua909\ua9d0-\ua9d9\uaa50-\uaa59\uabf0-\uabf9]",a="\\r",l="\\n",i="[\v\f\x85\u2028\u2029]",d="[\u0300-\u036f\u0483-\u0489\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u065f\u0670\u06d6-\u06dc\u06df-\u06e4\u06e7\u06e8\u06ea-\u06ed\u0711\u0730-\u074a\u07a6-\u07b0\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0859-\u085b\u0900-\u0903\u093a-\u093c\u093e-\u094f\u0951-\u0957\u0962\u0963\u0981-\u0983\u09bc\u09be-\u09c4\u09c7\u09c8\u09cb-\u09cd\u09d7\u09e2\u09e3\u0a01-\u0a03\u0a3c\u0a3e-\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a70\u0a71\u0a75\u0a81-\u0a83\u0abc\u0abe-\u0ac5\u0ac7-\u0ac9\u0acb-\u0acd\u0ae2\u0ae3\u0b01-\u0b03\u0b3c\u0b3e-\u0b44\u0b47\u0b48\u0b4b-\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b82\u0bbe-\u0bc2\u0bc6-\u0bc8\u0bca-\u0bcd\u0bd7\u0c01-\u0c03\u0c3e-\u0c44\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0c82\u0c83\u0cbc\u0cbe-\u0cc4\u0cc6-\u0cc8\u0cca-\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0d02\u0d03\u0d3e-\u0d44\u0d46-\u0d48\u0d4a-\u0d4d\u0d57\u0d62\u0d63\u0d82\u0d83\u0dca\u0dcf-\u0dd4\u0dd6\u0dd8-\u0ddf\u0df2\u0df3\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0f18\u0f19\u0f35\u0f37\u0f39\u0f3e\u0f3f\u0f71-\u0f84\u0f86\u0f87\u0f8d-\u0f97\u0f99-\u0fbc\u0fc6\u102b-\u103e\u1056-\u1059\u105e-\u1060\u1062-\u1064\u1067-\u106d\u1071-\u1074\u1082-\u108d\u108f\u109a-\u109d\u135d-\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b6-\u17d3\u17dd\u180b-\u180d\u18a9\u1920-\u192b\u1930-\u193b\u19b0-\u19c0\u19c8\u19c9\u1a17-\u1a1b\u1a55-\u1a5e\u1a60-\u1a7c\u1a7f\u1b00-\u1b04\u1b34-\u1b44\u1b6b-\u1b73\u1b80-\u1b82\u1ba1-\u1baa\u1be6-\u1bf3\u1c24-\u1c37\u1cd0-\u1cd2\u1cd4-\u1ce8\u1ced\u1cf2\u1dc0-\u1de6\u1dfc-\u1dff\u200c\u200d\u20d0-\u20f0\u2cef-\u2cf1\u2d7f\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua66f-\ua672\ua67c\ua67d\ua6f0\ua6f1\ua802\ua806\ua80b\ua823-\ua827\ua880\ua881\ua8b4-\ua8c4\ua8e0-\ua8f1\ua926-\ua92d\ua947-\ua953\ua980-\ua983\ua9b3-\ua9c0\uaa29-\uaa36\uaa43\uaa4c\uaa4d\uaa7b\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uabe3-\uabea\uabec\uabed\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\uff9e\uff9f]",g="[\xad\u0600-\u0603\u06dd\u070f\u17b4\u17b5\u200e\u200f\u202a-\u202e\u2060-\u2064\u206a-\u206f\ufeff\ufff9-\ufffb]",p="[\u3031-\u3035\u309b\u309c\u30a0-\u30fa\u30fc-\u30ff\u31f0-\u31ff\u32d0-\u32fe\u3300-\u3357\uff66-\uff9d]",h="[=_\u203f\u2040\u2054\ufe33\ufe34\ufe4d-\ufe4f\uff3f\u2200-\u22ff<>]",C="[~\u2116|!-*+-\\/:;?@\\[-`{}\xa1\xab\xb7\xbb\xbf;\xb7\u055a-\u055f\u0589\u058a\u05be\u05c0\u05c3\u05c6\u05f3\u05f4\u0609\u060a\u060c\u060d\u061b\u061e\u061f\u066a-\u066d\u06d4\u0700-\u070d\u07f7-\u07f9\u0830-\u083e\u085e\u0964\u0965\u0970\u0df4\u0e4f\u0e5a\u0e5b\u0f04-\u0f12\u0f3a-\u0f3d\u0f85\u0fd0-\u0fd4\u0fd9\u0fda\u104a-\u104f\u10fb\u1361-\u1368\u1400\u166d\u166e\u169b\u169c\u16eb-\u16ed\u1735\u1736\u17d4-\u17d6\u17d8-\u17da\u1800-\u180a\u1944\u1945\u1a1e\u1a1f\u1aa0-\u1aa6\u1aa8-\u1aad\u1b5a-\u1b60\u1bfc-\u1bff\u1c3b-\u1c3f\u1c7e\u1c7f\u1cd3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205e\u207d\u207e\u208d\u208e\u3008\u3009\u2768-\u2775\u27c5\u27c6\u27e6-\u27ef\u2983-\u2998\u29d8-\u29db\u29fc\u29fd\u2cf9-\u2cfc\u2cfe\u2cff\u2d70\u2e00-\u2e2e\u2e30\u2e31\u3001-\u3003\u3008-\u3011\u3014-\u301f\u3030\u303d\u30a0\u30fb\ua4fe\ua4ff\ua60d-\ua60f\ua673\ua67e\ua6f2-\ua6f7\ua874-\ua877\ua8ce\ua8cf\ua8f8-\ua8fa\ua92e\ua92f\ua95f\ua9c1-\ua9cd\ua9de\ua9df\uaa5c-\uaa5f\uaade\uaadf\uabeb\ufd3e\ufd3f\ufe10-\ufe19\ufe30-\ufe52\ufe54-\ufe61\ufe63\ufe68\ufe6a\ufe6b\uff01-\uff03\uff05-\uff0a\uff0c-\uff0f\uff1a\uff1b\uff1f\uff20\uff3b-\uff3d\uff3f\uff5b\uff5d\uff5f-\uff65]",y=10,m=[new RegExp("[A-Za-z\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05d0-\u05ea\u05f0-\u05f3\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097f\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c33\u0c35-\u0c39\u0c3d\u0c58\u0c59\u0c60\u0c61\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d05-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d60\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u10a0-\u10c5\u10d0-\u10fa\u10fc\u1100-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f4\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f0\u1700-\u170c\u170e-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1820-\u1877\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191c\u1a00-\u1a16\u1b05-\u1b33\u1b45-\u1b4b\u1b83-\u1ba0\u1bae\u1baf\u1bc0-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1ce9-\u1cec\u1cee-\u1cf1\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2119-\u211d\u2124\u2126\u2128\u212a-\u212d\u212f-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u24b6-\u24e9\u2c00-\u2c2e\u2c30-\u2c5e\u2c60-\u2ce4\u2ceb-\u2cee\u2d00-\u2d25\u2d30-\u2d65\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u2e2f\u3005\u303b\u303c\u3105-\u312d\u3131-\u318e\u31a0-\u31ba\ua000-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua697\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua78e\ua790\ua791\ua7a0-\ua7a9\ua7fa-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uabc0-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uffa0-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc]"),new RegExp(r),new RegExp(c),new RegExp(u),new RegExp(s),new RegExp(a),new RegExp(l),new RegExp(i),new RegExp(d),new RegExp(g),new RegExp(p),new RegExp(h),new RegExp("@")],w=new RegExp("^"+C+"$"),W=m,f=t=>{let e=13;const n=W.length;for(let o=0;o<n;++o){const n=W[o];if(n&&n.test(t)){e=o;break}}return e},x=(t,e)=>{const n=t[e],o=t[e+1];if(e<0||e>t.length-1&&0!==e)return!1;if(0===n&&0===o)return!1;const r=t[e+2];if(0===n&&(2===o||1===o||12===o)&&0===r)return!1;const c=t[e-1];return(2!==n&&1!==n&&12!==o||0!==o||0!==c)&&(4!==n&&0!==n||4!==o&&0!==o)&&(3!==n&&1!==n||4!==o||4!==c)&&(4!==n||3!==o&&1!==o||4!==r)&&(8!==n&&9!==n||0!==o&&4!==o&&o!==y&&8!==o&&9!==o)&&(8!==o&&(9!==o||0!==r&&4!==r&&r!==y&&8!==r&&9!==r)||0!==n&&4!==n&&n!==y&&8!==n&&9!==n)&&(5!==n||6!==o)&&(7===n||5===n||6===n||7===o||5===o||6===o||(n!==y||o!==y)&&(11!==o||0!==n&&4!==n&&n!==y&&11!==n)&&(11!==n||0!==o&&4!==o&&o!==y)&&12!==n)},E=/^\s+$/,R=w,S=t=>"http"===t||"https"===t,b=(t,e)=>{const n=((t,e)=>{let n;for(n=e;n<t.length&&!E.test(t[n]);n++);return n})(t,e+1);return"://"===t.slice(e+1,n).join("").substr(0,3)?n:e},v=(t,e,n)=>((t,e,n)=>{n={includeWhitespace:!1,includePunctuation:!1,...n};const r=o(t,e);return((t,e,n,o)=>{const r=[],c=[];let u=[];for(let s=0;s<n.length;++s)if(u.push(t[s]),x(n,s)){const n=e[s];if((o.includeWhitespace||!E.test(n))&&(o.includePunctuation||!R.test(n))){const n=s-u.length+1,o=s+1,a=e.slice(n,o).join("");if(S(a)){const n=b(e,s),r=t.slice(o,n);Array.prototype.push.apply(u,r),s=n}r.push(u),c.push({start:n,end:o})}u=[]}return{words:r,indices:c}})(t,r,(t=>{const e=(t=>{const e={};return n=>{if(e[n])return e[n];{const o=t(n);return e[n]=o,o}}})(f);return o(t,e)})(r),n)})(t,e,n).words;var F=tinymce.util.Tools.resolve("tinymce.dom.TreeWalker");const T=(t,e)=>{const n=e.getBlockElements(),o=e.getVoidElements(),r=t=>n[t.nodeName]||o[t.nodeName],c=[];let u="";const s=new F(t,t);let a;for(;a=s.next();)3===a.nodeType?u+=a.data.replace(/\uFEFF/g,""):r(a)&&u.length&&(c.push(u),u="");return u.length&&c.push(u),c},A=t=>t.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,"_").length,B=(t,e)=>{const o=(t=>t.replace(/\u200B/g,""))(T(t,e).join("\n"));return v(o.split(""),n).length},D=(t,e)=>{const n=T(t,e).join("");return A(n)},j=(t,e)=>{const n=T(t,e).join("").replace(/\s/g,"");return A(n)},k=(t,e)=>()=>e(t.getBody(),t.schema),U=(t,e)=>()=>e(t.selection.getRng().cloneContents(),t.schema),M=t=>k(t,B);var P=tinymce.util.Tools.resolve("tinymce.util.Delay");const N=(t,e)=>{((t,e)=>{t.dispatch("wordCountUpdate",{wordCount:{words:e.body.getWordCount(),characters:e.body.getCharacterCount(),charactersWithoutSpaces:e.body.getCharacterCountWithoutSpaces()}})})(t,e)},V=(t,n,o)=>{const r=((t,n)=>{let o=null;return{cancel:()=>{e(o)||(clearTimeout(o),o=null)},throttle:(...r)=>{e(o)&&(o=setTimeout((()=>{o=null,t.apply(null,r)}),n))}}})((()=>N(t,n)),o);t.on("init",(()=>{N(t,n),P.setEditorTimeout(t,(()=>{t.on("SetContent BeforeAddUndo Undo Redo ViewUpdate keyup",r.throttle)}),0),t.on("remove",r.cancel)}))};((e=300)=>{t.add("wordcount",(t=>{const n=(t=>({body:{getWordCount:M(t),getCharacterCount:k(t,D),getCharacterCountWithoutSpaces:k(t,j)},selection:{getWordCount:U(t,B),getCharacterCount:U(t,D),getCharacterCountWithoutSpaces:U(t,j)},getCount:M(t)}))(t);return((t,e)=>{t.addCommand("mceWordCount",(()=>((t,e)=>{t.windowManager.open({title:"Word Count",body:{type:"panel",items:[{type:"table",header:["Count","Document","Selection"],cells:[["Words",String(e.body.getWordCount()),String(e.selection.getWordCount())],["Characters (no spaces)",String(e.body.getCharacterCountWithoutSpaces()),String(e.selection.getCharacterCountWithoutSpaces())],["Characters",String(e.body.getCharacterCount()),String(e.selection.getCharacterCount())]]}]},buttons:[{type:"cancel",name:"close",text:"Close",primary:!0}]})})(t,e)))})(t,n),(t=>{const e=()=>t.execCommand("mceWordCount");t.ui.registry.addButton("wordcount",{tooltip:"Word count",icon:"character-count",onAction:e}),t.ui.registry.addMenuItem("wordcount",{text:"Word count",icon:"character-count",onAction:e})})(t),V(t,n,e),n}))})()}();
@@ -0,0 +1,66 @@
1
+ body {
2
+ background-color: #222f3e;
3
+ color: #fff;
4
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
5
+ line-height: 1.4;
6
+ margin: 1rem;
7
+ }
8
+ a {
9
+ color: #4099ff;
10
+ }
11
+ table {
12
+ border-collapse: collapse;
13
+ }
14
+ /* Apply a default padding if legacy cellpadding attribute is missing */
15
+ table:not([cellpadding]) th,
16
+ table:not([cellpadding]) td {
17
+ padding: 0.4rem;
18
+ }
19
+ /* Set default table styles if a table has a positive border attribute
20
+ and no inline css */
21
+ table[border]:not([border="0"]):not([style*="border-width"]) th,
22
+ table[border]:not([border="0"]):not([style*="border-width"]) td {
23
+ border-width: 1px;
24
+ }
25
+ /* Set default table styles if a table has a positive border attribute
26
+ and no inline css */
27
+ table[border]:not([border="0"]):not([style*="border-style"]) th,
28
+ table[border]:not([border="0"]):not([style*="border-style"]) td {
29
+ border-style: solid;
30
+ }
31
+ /* Set default table styles if a table has a positive border attribute
32
+ and no inline css */
33
+ table[border]:not([border="0"]):not([style*="border-color"]) th,
34
+ table[border]:not([border="0"]):not([style*="border-color"]) td {
35
+ border-color: #6d737b;
36
+ }
37
+ figure {
38
+ display: table;
39
+ margin: 1rem auto;
40
+ }
41
+ figure figcaption {
42
+ color: #8a8f97;
43
+ display: block;
44
+ margin-top: 0.25rem;
45
+ text-align: center;
46
+ }
47
+ hr {
48
+ border-color: #6d737b;
49
+ border-style: solid;
50
+ border-width: 1px 0 0 0;
51
+ }
52
+ code {
53
+ background-color: #6d737b;
54
+ border-radius: 3px;
55
+ padding: 0.1rem 0.2rem;
56
+ }
57
+ .mce-content-body:not([dir=rtl]) blockquote {
58
+ border-left: 2px solid #6d737b;
59
+ margin-left: 1.5rem;
60
+ padding-left: 1rem;
61
+ }
62
+ .mce-content-body[dir=rtl] blockquote {
63
+ border-right: 2px solid #6d737b;
64
+ margin-right: 1.5rem;
65
+ padding-right: 1rem;
66
+ }
@@ -0,0 +1,2 @@
1
+ tinymce.Resource.add('content/dark/content.css', "body{background-color:#222f3e;color:#fff;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}a{color:#4099ff}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border=\"0\"]):not([style*=border-width]) td,table[border]:not([border=\"0\"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border=\"0\"]):not([style*=border-style]) td,table[border]:not([border=\"0\"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border=\"0\"]):not([style*=border-color]) td,table[border]:not([border=\"0\"]):not([style*=border-color]) th{border-color:#6d737b}figure{display:table;margin:1rem auto}figure figcaption{color:#8a8f97;display:block;margin-top:.25rem;text-align:center}hr{border-color:#6d737b;border-style:solid;border-width:1px 0 0 0}code{background-color:#6d737b;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #6d737b;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #6d737b;margin-right:1.5rem;padding-right:1rem}")
2
+ //# sourceMappingURL=content.js.map
@@ -0,0 +1 @@
1
+ body{background-color:#222f3e;color:#fff;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}a{color:#4099ff}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border="0"]):not([style*=border-width]) td,table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border="0"]):not([style*=border-style]) td,table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border="0"]):not([style*=border-color]) td,table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#6d737b}figure{display:table;margin:1rem auto}figure figcaption{color:#8a8f97;display:block;margin-top:.25rem;text-align:center}hr{border-color:#6d737b;border-style:solid;border-width:1px 0 0 0}code{background-color:#6d737b;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #6d737b;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #6d737b;margin-right:1.5rem;padding-right:1rem}
@@ -0,0 +1,61 @@
1
+ body {
2
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
3
+ line-height: 1.4;
4
+ margin: 1rem;
5
+ }
6
+ table {
7
+ border-collapse: collapse;
8
+ }
9
+ /* Apply a default padding if legacy cellpadding attribute is missing */
10
+ table:not([cellpadding]) th,
11
+ table:not([cellpadding]) td {
12
+ padding: 0.4rem;
13
+ }
14
+ /* Set default table styles if a table has a positive border attribute
15
+ and no inline css */
16
+ table[border]:not([border="0"]):not([style*="border-width"]) th,
17
+ table[border]:not([border="0"]):not([style*="border-width"]) td {
18
+ border-width: 1px;
19
+ }
20
+ /* Set default table styles if a table has a positive border attribute
21
+ and no inline css */
22
+ table[border]:not([border="0"]):not([style*="border-style"]) th,
23
+ table[border]:not([border="0"]):not([style*="border-style"]) td {
24
+ border-style: solid;
25
+ }
26
+ /* Set default table styles if a table has a positive border attribute
27
+ and no inline css */
28
+ table[border]:not([border="0"]):not([style*="border-color"]) th,
29
+ table[border]:not([border="0"]):not([style*="border-color"]) td {
30
+ border-color: #ccc;
31
+ }
32
+ figure {
33
+ display: table;
34
+ margin: 1rem auto;
35
+ }
36
+ figure figcaption {
37
+ color: #999;
38
+ display: block;
39
+ margin-top: 0.25rem;
40
+ text-align: center;
41
+ }
42
+ hr {
43
+ border-color: #ccc;
44
+ border-style: solid;
45
+ border-width: 1px 0 0 0;
46
+ }
47
+ code {
48
+ background-color: #e8e8e8;
49
+ border-radius: 3px;
50
+ padding: 0.1rem 0.2rem;
51
+ }
52
+ .mce-content-body:not([dir=rtl]) blockquote {
53
+ border-left: 2px solid #ccc;
54
+ margin-left: 1.5rem;
55
+ padding-left: 1rem;
56
+ }
57
+ .mce-content-body[dir=rtl] blockquote {
58
+ border-right: 2px solid #ccc;
59
+ margin-right: 1.5rem;
60
+ padding-right: 1rem;
61
+ }
@@ -0,0 +1,2 @@
1
+ tinymce.Resource.add('content/default/content.css', "body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border=\"0\"]):not([style*=border-width]) td,table[border]:not([border=\"0\"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border=\"0\"]):not([style*=border-style]) td,table[border]:not([border=\"0\"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border=\"0\"]):not([style*=border-color]) td,table[border]:not([border=\"0\"]):not([style*=border-color]) th{border-color:#ccc}figure{display:table;margin:1rem auto}figure figcaption{color:#999;display:block;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}code{background-color:#e8e8e8;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem}")
2
+ //# sourceMappingURL=content.js.map
@@ -0,0 +1 @@
1
+ body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border="0"]):not([style*=border-width]) td,table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border="0"]):not([style*=border-style]) td,table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border="0"]):not([style*=border-color]) td,table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#ccc}figure{display:table;margin:1rem auto}figure figcaption{color:#999;display:block;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}code{background-color:#e8e8e8;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem}
@@ -0,0 +1,66 @@
1
+ @media screen {
2
+ html {
3
+ background: #f4f4f4;
4
+ min-height: 100%;
5
+ }
6
+ }
7
+ body {
8
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
9
+ }
10
+ @media screen {
11
+ body {
12
+ background-color: #fff;
13
+ box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
14
+ box-sizing: border-box;
15
+ margin: 1rem auto 0;
16
+ max-width: 820px;
17
+ min-height: calc(100vh - 1rem);
18
+ padding: 4rem 6rem 6rem 6rem;
19
+ }
20
+ }
21
+ table {
22
+ border-collapse: collapse;
23
+ }
24
+ /* Apply a default padding if legacy cellpadding attribute is missing */
25
+ table:not([cellpadding]) th,
26
+ table:not([cellpadding]) td {
27
+ padding: 0.4rem;
28
+ }
29
+ /* Set default table styles if a table has a positive border attribute
30
+ and no inline css */
31
+ table[border]:not([border="0"]):not([style*="border-width"]) th,
32
+ table[border]:not([border="0"]):not([style*="border-width"]) td {
33
+ border-width: 1px;
34
+ }
35
+ /* Set default table styles if a table has a positive border attribute
36
+ and no inline css */
37
+ table[border]:not([border="0"]):not([style*="border-style"]) th,
38
+ table[border]:not([border="0"]):not([style*="border-style"]) td {
39
+ border-style: solid;
40
+ }
41
+ /* Set default table styles if a table has a positive border attribute
42
+ and no inline css */
43
+ table[border]:not([border="0"]):not([style*="border-color"]) th,
44
+ table[border]:not([border="0"]):not([style*="border-color"]) td {
45
+ border-color: #ccc;
46
+ }
47
+ figure figcaption {
48
+ color: #999;
49
+ margin-top: 0.25rem;
50
+ text-align: center;
51
+ }
52
+ hr {
53
+ border-color: #ccc;
54
+ border-style: solid;
55
+ border-width: 1px 0 0 0;
56
+ }
57
+ .mce-content-body:not([dir=rtl]) blockquote {
58
+ border-left: 2px solid #ccc;
59
+ margin-left: 1.5rem;
60
+ padding-left: 1rem;
61
+ }
62
+ .mce-content-body[dir=rtl] blockquote {
63
+ border-right: 2px solid #ccc;
64
+ margin-right: 1.5rem;
65
+ padding-right: 1rem;
66
+ }
@@ -0,0 +1,2 @@
1
+ tinymce.Resource.add('content/document/content.css', "@media screen{html{background:#f4f4f4;min-height:100%}}body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif}@media screen{body{background-color:#fff;box-shadow:0 0 4px rgba(0,0,0,.15);box-sizing:border-box;margin:1rem auto 0;max-width:820px;min-height:calc(100vh - 1rem);padding:4rem 6rem 6rem 6rem}}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border=\"0\"]):not([style*=border-width]) td,table[border]:not([border=\"0\"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border=\"0\"]):not([style*=border-style]) td,table[border]:not([border=\"0\"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border=\"0\"]):not([style*=border-color]) td,table[border]:not([border=\"0\"]):not([style*=border-color]) th{border-color:#ccc}figure figcaption{color:#999;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem}")
2
+ //# sourceMappingURL=content.js.map
@@ -0,0 +1 @@
1
+ @media screen{html{background:#f4f4f4;min-height:100%}}body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif}@media screen{body{background-color:#fff;box-shadow:0 0 4px rgba(0,0,0,.15);box-sizing:border-box;margin:1rem auto 0;max-width:820px;min-height:calc(100vh - 1rem);padding:4rem 6rem 6rem 6rem}}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border="0"]):not([style*=border-width]) td,table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border="0"]):not([style*=border-style]) td,table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border="0"]):not([style*=border-color]) td,table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#ccc}figure figcaption{color:#999;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem}