pds-dev-kit-web-test 2.5.593 → 2.5.594

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 (579) hide show
  1. package/dist/index.d.ts +6 -6
  2. package/dist/index.js +12 -3
  3. package/dist/scripts/copy-tinymce.d.ts +1 -0
  4. package/dist/scripts/copy-tinymce.js +32 -0
  5. package/dist/src/common/assets/icons/fill/Translate.d.ts +4 -0
  6. package/dist/src/common/assets/icons/fill/Translate.js +30 -0
  7. package/dist/src/common/assets/icons/fill/index.d.ts +1 -0
  8. package/dist/src/common/assets/icons/fill/index.js +2 -0
  9. package/dist/src/common/assets/icons/line/Translate.d.ts +4 -0
  10. package/dist/src/common/assets/icons/line/Translate.js +30 -0
  11. package/dist/src/common/assets/icons/line/index.d.ts +1 -0
  12. package/dist/src/common/assets/icons/line/index.js +2 -0
  13. package/dist/src/common/hooks/useParentResizeObserver.d.ts +2 -0
  14. package/dist/src/common/hooks/useParentResizeObserver.js +20 -0
  15. package/dist/src/common/hooks/useResizeObserver.d.ts +3 -0
  16. package/dist/src/common/hooks/useResizeObserver.js +27 -0
  17. package/dist/src/common/hooks/useTooltip.js +1 -1
  18. package/dist/src/common/hooks/useWindowSize.d.ts +4 -0
  19. package/dist/src/common/hooks/useWindowSize.js +22 -0
  20. package/dist/src/common/index.d.ts +1 -1
  21. package/dist/src/common/services/i18n/resources/en.json +61 -1
  22. package/dist/src/common/services/i18n/resources/es.json +61 -1
  23. package/dist/src/common/services/i18n/resources/fil.json +61 -1
  24. package/dist/src/common/services/i18n/resources/index.d.ts +421 -0
  25. package/dist/src/common/services/i18n/resources/ja.json +61 -1
  26. package/dist/src/common/services/i18n/resources/ko.json +62 -1
  27. package/dist/src/common/services/i18n/resources/zh-cn.json +61 -1
  28. package/dist/src/common/services/i18n/resources/zh-tw.json +61 -1
  29. package/dist/src/common/styles/colorSet/PaletteColor_Dark.json +4 -1
  30. package/dist/src/common/styles/colorSet/PaletteColor_light.json +4 -1
  31. package/dist/src/common/styles/colorSet/UIColor.json +5 -1
  32. package/dist/src/common/styles/colorSet/index.d.ts +10 -0
  33. package/dist/src/common/styles/colorSet/ui-type.d.ts +4 -0
  34. package/dist/src/common/styles/editorContentStyle.d.ts +1 -0
  35. package/dist/src/common/styles/editorContentStyle.js +76 -0
  36. package/dist/src/common/types/components.d.ts +9 -0
  37. package/dist/src/common/types/components.js +8 -0
  38. package/dist/src/common/types/index.d.ts +1 -1
  39. package/dist/src/common/types/index.js +1 -1
  40. package/dist/src/common/types/multilingual.d.ts +16 -0
  41. package/dist/src/common/types/text.d.ts +2 -0
  42. package/dist/src/common/utils/SystemUIPositionGenerator/hoverTypeSystemUICssGenerator.js +1 -1
  43. package/dist/src/common/utils/dateHelper.d.ts +3 -0
  44. package/dist/src/common/utils/dateHelper.js +37 -0
  45. package/dist/src/core/pricing/formatter.d.ts +4 -0
  46. package/dist/src/core/pricing/formatter.js +18 -0
  47. package/dist/src/core/pricing/index.d.ts +2 -0
  48. package/dist/src/core/pricing/index.js +18 -0
  49. package/dist/src/core/pricing/policy.d.ts +26 -0
  50. package/dist/src/core/pricing/policy.js +98 -0
  51. package/dist/src/core/pricing/service.d.ts +62 -0
  52. package/dist/src/core/pricing/service.js +157 -0
  53. package/dist/src/core/pricing/translator.d.ts +27 -0
  54. package/dist/src/core/pricing/translator.js +54 -0
  55. package/dist/src/core/pricing/types.d.ts +19 -0
  56. package/dist/src/core/pricing/types.js +31 -0
  57. package/dist/src/core/pricing/validator.d.ts +29 -0
  58. package/dist/src/core/pricing/validator.js +105 -0
  59. package/dist/src/desktop/common/components/TextFieldBase/TextFieldBase.d.ts +4 -1
  60. package/dist/src/desktop/common/components/TextFieldBase/TextFieldBase.js +32 -23
  61. package/dist/src/desktop/components/AdminList/AdminList.js +15 -17
  62. package/dist/src/desktop/components/BasicButtonGroup/BasicButtonGroup.js +1 -1
  63. package/dist/src/desktop/components/BasicFormGroup/BasicFormGroup.d.ts +8 -2
  64. package/dist/src/desktop/components/BasicFormGroup/BasicFormGroup.js +67 -6
  65. package/dist/src/desktop/components/BodyTextGroup/BodyTextGroup.d.ts +6 -1
  66. package/dist/src/desktop/components/BodyTextGroup/BodyTextGroup.js +70 -2
  67. package/dist/src/desktop/components/BoxItem/BoxItem.d.ts +67 -0
  68. package/dist/src/desktop/components/BoxItem/BoxItem.js +107 -0
  69. package/dist/src/desktop/components/BoxItem/LeftBox/Checkbox.d.ts +7 -0
  70. package/dist/src/desktop/components/BoxItem/LeftBox/Checkbox.js +9 -0
  71. package/dist/src/desktop/components/BoxItem/LeftBox/Image.d.ts +11 -0
  72. package/dist/src/desktop/components/BoxItem/LeftBox/Image.js +9 -0
  73. package/dist/src/desktop/components/BoxItem/LeftBox/LeftBox.d.ts +11 -0
  74. package/dist/src/desktop/components/BoxItem/LeftBox/LeftBox.js +36 -0
  75. package/dist/src/desktop/components/BoxItem/LeftBox/index.d.ts +2 -0
  76. package/dist/src/{sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner → desktop/components/BoxItem/LeftBox}/index.js +3 -3
  77. package/dist/src/desktop/components/BoxItem/index.d.ts +1 -0
  78. package/dist/src/desktop/components/BoxItem/index.js +8 -0
  79. package/dist/src/desktop/components/Calendar/AllDaySchedulesSection.d.ts +12 -0
  80. package/dist/src/desktop/components/Calendar/AllDaySchedulesSection.js +134 -0
  81. package/dist/src/desktop/components/Calendar/Calendar.d.ts +4 -0
  82. package/dist/src/desktop/components/Calendar/Calendar.js +399 -0
  83. package/dist/src/desktop/components/Calendar/CalendarContext.d.ts +51 -0
  84. package/dist/src/desktop/components/Calendar/CalendarContext.js +76 -0
  85. package/dist/src/desktop/components/Calendar/CurrentTimeIndicator.d.ts +7 -0
  86. package/dist/src/desktop/components/Calendar/CurrentTimeIndicator.js +48 -0
  87. package/dist/src/desktop/components/Calendar/DailyView.d.ts +2 -0
  88. package/dist/src/desktop/components/Calendar/DailyView.js +91 -0
  89. package/dist/src/desktop/components/Calendar/MonthlyView.d.ts +28 -0
  90. package/dist/src/desktop/components/Calendar/MonthlyView.js +419 -0
  91. package/dist/src/desktop/components/Calendar/MultiWeekSchedulesLayer.d.ts +21 -0
  92. package/dist/src/desktop/components/Calendar/MultiWeekSchedulesLayer.js +186 -0
  93. package/dist/src/desktop/components/Calendar/ScheduleItem.d.ts +25 -0
  94. package/dist/src/desktop/components/Calendar/ScheduleItem.js +56 -0
  95. package/dist/src/desktop/components/Calendar/TimeBasedScheduleItem.d.ts +12 -0
  96. package/dist/src/desktop/components/Calendar/TimeBasedScheduleItem.js +184 -0
  97. package/dist/src/desktop/components/Calendar/WeeklyView.d.ts +6 -0
  98. package/dist/src/desktop/components/Calendar/WeeklyView.js +114 -0
  99. package/dist/src/desktop/components/Calendar/YearlyView.d.ts +13 -0
  100. package/dist/src/desktop/components/Calendar/YearlyView.js +76 -0
  101. package/dist/src/desktop/components/Calendar/calendarUtils.d.ts +24 -0
  102. package/dist/src/desktop/components/Calendar/calendarUtils.js +87 -0
  103. package/dist/src/desktop/components/Calendar/constants.d.ts +1 -0
  104. package/dist/src/desktop/components/Calendar/constants.js +31 -0
  105. package/dist/src/desktop/components/Calendar/index.d.ts +14 -0
  106. package/dist/src/desktop/components/Calendar/index.js +42 -0
  107. package/dist/src/desktop/components/Calendar/timeFormatUtils.d.ts +18 -0
  108. package/dist/src/desktop/components/Calendar/timeFormatUtils.js +59 -0
  109. package/dist/src/desktop/components/Calendar/types.d.ts +61 -0
  110. package/dist/src/desktop/components/ChatBubbleListItem/ChatBubbleListItem.d.ts +2 -3
  111. package/dist/src/desktop/components/ChatBubbleListItem/ChatBubbleListItem.js +3 -8
  112. package/dist/src/desktop/components/ChatList/Body.d.ts +1 -1
  113. package/dist/src/desktop/components/PriceTextField/PriceTextField.d.ts +43 -0
  114. package/dist/src/desktop/components/PriceTextField/PriceTextField.js +604 -0
  115. package/dist/src/desktop/components/PriceTextField/index.d.ts +1 -0
  116. package/dist/src/desktop/components/PriceTextField/index.js +8 -0
  117. package/dist/src/desktop/components/PriceTextLabel/PriceTextLabel.d.ts +14 -0
  118. package/dist/src/desktop/components/PriceTextLabel/PriceTextLabel.js +47 -0
  119. package/dist/src/desktop/components/PriceTextLabel/index.d.ts +1 -0
  120. package/dist/src/desktop/components/PriceTextLabel/index.js +8 -0
  121. package/dist/src/desktop/components/RichTextEditor/RichTextEditor.d.ts +34 -0
  122. package/dist/src/desktop/components/RichTextEditor/RichTextEditor.js +247 -0
  123. package/dist/src/desktop/components/RichTextEditor/index.d.ts +2 -0
  124. package/dist/src/desktop/components/RichTextEditor/index.js +8 -0
  125. package/dist/src/desktop/components/Snackbar/Snackbar.d.ts +17 -0
  126. package/dist/src/desktop/components/Snackbar/Snackbar.js +221 -0
  127. package/dist/src/desktop/components/Snackbar/index.d.ts +1 -0
  128. package/dist/src/desktop/components/Snackbar/index.js +8 -0
  129. package/dist/src/desktop/components/Snackbar/provider.d.ts +11 -0
  130. package/dist/src/desktop/components/Snackbar/provider.js +43 -0
  131. package/dist/src/desktop/components/TextButton/TextButton.d.ts +6 -3
  132. package/dist/src/desktop/components/TextButton/TextButton.js +67 -40
  133. package/dist/src/desktop/components/TextField/TextField.d.ts +2 -1
  134. package/dist/src/desktop/components/TextField/TextField.js +7 -7
  135. package/dist/src/desktop/components/TextLabel/TextLabel.d.ts +3 -3
  136. package/dist/src/desktop/components/UploadTextButton/UploadTextButton.d.ts +1 -1
  137. package/dist/src/desktop/components/UploadTextButton/UploadTextButton.js +56 -39
  138. package/dist/src/desktop/components/index.d.ts +7 -1
  139. package/dist/src/desktop/components/index.js +14 -1
  140. package/dist/src/desktop/index.d.ts +1 -1
  141. package/dist/src/desktop/index.js +8 -2
  142. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFA.js +1 -1
  143. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFB.js +1 -1
  144. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFE.js +1 -1
  145. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFL.js +8 -5
  146. package/dist/src/desktop/panels/DesktopHeadlessModal/DesktopHeadlessModal.d.ts +17 -2
  147. package/dist/src/desktop/panels/DesktopHeadlessModal/DesktopHeadlessModal.js +37 -6
  148. package/dist/src/desktop/panels/MultilingualModal/MultilingualModal.d.ts +13 -0
  149. package/dist/src/desktop/panels/MultilingualModal/MultilingualModal.js +213 -0
  150. package/dist/src/desktop/panels/MultilingualModal/index.d.ts +1 -0
  151. package/dist/src/{sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList → desktop/panels/MultilingualModal}/index.js +3 -3
  152. package/dist/src/desktop/panels/index.d.ts +2 -1
  153. package/dist/src/desktop/panels/index.js +6 -1
  154. package/dist/src/hybrid/components/Divider/Divider.d.ts +3 -1
  155. package/dist/src/hybrid/components/Divider/Divider.js +9 -7
  156. package/dist/src/mobile/common/components/TextFieldBase/TextFieldBase.d.ts +3 -1
  157. package/dist/src/mobile/common/components/TextFieldBase/TextFieldBase.js +26 -22
  158. package/dist/src/mobile/components/BoxItem/BoxItem.d.ts +67 -0
  159. package/dist/src/mobile/components/BoxItem/BoxItem.js +106 -0
  160. package/dist/src/mobile/components/BoxItem/LeftBox/Checkbox.d.ts +7 -0
  161. package/dist/src/mobile/components/BoxItem/LeftBox/Checkbox.js +9 -0
  162. package/dist/src/mobile/components/BoxItem/LeftBox/Image.d.ts +11 -0
  163. package/dist/src/mobile/components/BoxItem/LeftBox/Image.js +9 -0
  164. package/dist/src/mobile/components/BoxItem/LeftBox/LeftBox.d.ts +11 -0
  165. package/dist/src/mobile/components/BoxItem/LeftBox/LeftBox.js +36 -0
  166. package/dist/src/mobile/components/BoxItem/LeftBox/index.d.ts +2 -0
  167. package/dist/src/mobile/components/BoxItem/LeftBox/index.js +8 -0
  168. package/dist/src/mobile/components/BoxItem/index.d.ts +1 -0
  169. package/dist/src/mobile/components/BoxItem/index.js +8 -0
  170. package/dist/src/mobile/components/ChatBubbleListItem/ChatBubbleListItem.d.ts +2 -3
  171. package/dist/src/mobile/components/ChatBubbleListItem/ChatBubbleListItem.js +3 -8
  172. package/dist/src/mobile/components/ChatList/Body.d.ts +1 -1
  173. package/dist/src/mobile/components/PriceTextField/PriceTextField.d.ts +42 -0
  174. package/dist/src/mobile/components/PriceTextField/PriceTextField.js +591 -0
  175. package/dist/src/mobile/components/PriceTextField/index.d.ts +1 -0
  176. package/dist/src/mobile/components/PriceTextField/index.js +8 -0
  177. package/dist/src/mobile/components/PriceTextLabel/PriceTextLabel.d.ts +14 -0
  178. package/dist/src/mobile/components/PriceTextLabel/PriceTextLabel.js +47 -0
  179. package/dist/src/mobile/components/PriceTextLabel/index.d.ts +1 -0
  180. package/dist/src/mobile/components/PriceTextLabel/index.js +8 -0
  181. package/dist/src/mobile/components/RichTextEditor/RichTextEditor.d.ts +34 -0
  182. package/dist/src/mobile/components/RichTextEditor/RichTextEditor.js +253 -0
  183. package/dist/src/mobile/components/RichTextEditor/index.d.ts +2 -0
  184. package/dist/src/mobile/components/RichTextEditor/index.js +8 -0
  185. package/dist/src/mobile/components/Snackbar/Snackbar.d.ts +17 -0
  186. package/dist/src/mobile/components/Snackbar/Snackbar.js +221 -0
  187. package/dist/src/mobile/components/Snackbar/index.d.ts +1 -0
  188. package/dist/src/mobile/components/Snackbar/index.js +8 -0
  189. package/dist/src/mobile/components/Snackbar/provider.d.ts +11 -0
  190. package/dist/src/mobile/components/Snackbar/provider.js +43 -0
  191. package/dist/src/mobile/components/TextButton/TextButton.d.ts +6 -3
  192. package/dist/src/mobile/components/TextButton/TextButton.js +55 -31
  193. package/dist/src/mobile/components/TextField/TextField.d.ts +2 -1
  194. package/dist/src/mobile/components/TextField/TextField.js +7 -7
  195. package/dist/src/mobile/components/TextLabel/TextLabel.d.ts +3 -3
  196. package/dist/src/mobile/components/UploadTextButton/UploadTextButton.d.ts +1 -1
  197. package/dist/src/mobile/components/UploadTextButton/UploadTextButton.js +44 -30
  198. package/dist/src/mobile/components/index.d.ts +6 -1
  199. package/dist/src/mobile/components/index.js +11 -1
  200. package/dist/src/mobile/index.d.ts +1 -1
  201. package/dist/src/mobile/index.js +7 -2
  202. package/dist/src/sub/AdminList/AdminList/AdminList.js +18 -17
  203. package/dist/src/sub/DynamicLayout/CompositionRenderer/ComponentBlockMatcher.js +1 -4
  204. package/dist/src/sub/DynamicLayout/CompositionRenderer/Composition.d.ts +3 -5
  205. package/dist/src/sub/DynamicLayout/CompositionRenderer/Composition.js +54 -54
  206. package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionRenderer.d.ts +6 -0
  207. package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionRenderer.js +27 -0
  208. package/dist/src/sub/DynamicLayout/DynamicLayout.d.ts +1 -1
  209. package/dist/src/sub/DynamicLayout/DynamicLayout.js +2 -4
  210. package/dist/src/sub/DynamicLayout/components/Section/components/CustomSectionBackgroundMedia.js +2 -24
  211. package/dist/src/sub/DynamicLayout/components/Section/sectionContext.d.ts +2 -2
  212. package/dist/src/sub/DynamicLayout/components/Section/util/parseSectionBackgroundMediaData.js +1 -3
  213. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/index.d.ts +0 -40
  214. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/index.js +177 -36
  215. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/PaletteColor_Dark.json +4 -152
  216. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/PaletteColor_light.json +2 -150
  217. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/SemanticColor.json +1 -45
  218. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/UIColor.json +9 -262
  219. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/index.d.ts +0 -593
  220. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/ui-type.d.ts +0 -253
  221. package/dist/src/sub/DynamicLayout/components/pdsOriginal/desktop/IconButton/IconButton.d.ts +1 -3
  222. package/dist/src/sub/DynamicLayout/components/pdsOriginal/desktop/IconButton/IconButton.js +3 -5
  223. package/dist/src/sub/DynamicLayout/components/pdsOriginal/hybrid/Icon/Icon.d.ts +1 -2
  224. package/dist/src/sub/DynamicLayout/components/pdsOriginal/hybrid/Icon/Icon.js +2 -9
  225. package/dist/src/sub/DynamicLayout/mock_video_cb.d.ts +1 -0
  226. package/dist/src/sub/DynamicLayout/mock_video_cb.js +5 -4
  227. package/dist/src/sub/DynamicLayout/mocks.d.ts +961 -8
  228. package/dist/src/sub/DynamicLayout/mocks.js +4239 -55
  229. package/dist/src/sub/DynamicLayout/sectionActionTypes.d.ts +4 -4
  230. package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.d.ts +1 -1
  231. package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.js +7 -7
  232. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/ComponentBlockMatcher.js +3 -13
  233. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Button/Button.js +2 -18
  234. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarousel.d.ts +4 -10
  235. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarousel.js +3 -134
  236. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Image/Image.js +3 -39
  237. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/Text.js +8 -49
  238. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/VideoPlayer/VideoPlayer.js +28 -3
  239. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/VideoPlayer/helper.d.ts +1 -0
  240. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/VideoPlayer/helper.js +15 -5
  241. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/types.d.ts +3 -55
  242. package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/group.d.ts +1 -1
  243. package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/replaceUndefinedValues.js +1 -1
  244. package/dist/src/sub/DynamicLayout/sections/CustomSection/types.d.ts +10 -27
  245. package/dist/src/sub/DynamicLayout/sections/CustomSection/types.js +1 -3
  246. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/effectPropParsers/parseEffectPropEntAnim.d.ts +4 -4
  247. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/layoutPropParsers/parseLayoutPropPadding.d.ts +2 -2
  248. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseJsonProperties.d.ts +2 -2
  249. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parsePlacement.d.ts +2 -7
  250. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parsePlacement.js +5 -10
  251. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseProperties.d.ts +2 -2
  252. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropTextSpec.js +0 -2
  253. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/types.d.ts +3 -53
  254. package/dist/src/sub/DynamicLayout/sections/FlexGridCustomSection.d.ts +1 -1
  255. package/dist/src/sub/DynamicLayout/sections/FlexGridCustomSection.js +0 -1
  256. package/dist/src/sub/DynamicLayout/types.d.ts +17 -64
  257. package/dist/tinymce/CHANGELOG.md +3453 -0
  258. package/dist/tinymce/README.md +73 -0
  259. package/dist/tinymce/bower.json +27 -0
  260. package/dist/tinymce/composer.json +52 -0
  261. package/dist/tinymce/icons/default/icons.js +194 -0
  262. package/dist/tinymce/icons/default/icons.min.js +1 -0
  263. package/dist/tinymce/icons/default/index.js +7 -0
  264. package/dist/tinymce/license.txt +21 -0
  265. package/dist/tinymce/models/dom/index.js +7 -0
  266. package/dist/tinymce/models/dom/model.js +8040 -0
  267. package/dist/tinymce/models/dom/model.min.js +1 -0
  268. package/dist/tinymce/notices.txt +21 -0
  269. package/dist/tinymce/package.json +32 -0
  270. package/dist/tinymce/plugins/accordion/index.js +7 -0
  271. package/dist/tinymce/plugins/accordion/plugin.js +1054 -0
  272. package/dist/tinymce/plugins/accordion/plugin.min.js +5 -0
  273. package/dist/tinymce/plugins/advlist/index.js +7 -0
  274. package/dist/tinymce/plugins/advlist/plugin.js +259 -0
  275. package/dist/tinymce/plugins/advlist/plugin.min.js +5 -0
  276. package/dist/tinymce/plugins/anchor/index.js +7 -0
  277. package/dist/tinymce/plugins/anchor/plugin.js +214 -0
  278. package/dist/tinymce/plugins/anchor/plugin.min.js +5 -0
  279. package/dist/tinymce/plugins/autolink/index.js +7 -0
  280. package/dist/tinymce/plugins/autolink/plugin.js +228 -0
  281. package/dist/tinymce/plugins/autolink/plugin.min.js +5 -0
  282. package/dist/tinymce/plugins/autoresize/index.js +7 -0
  283. package/dist/tinymce/plugins/autoresize/plugin.js +192 -0
  284. package/dist/tinymce/plugins/autoresize/plugin.min.js +5 -0
  285. package/dist/tinymce/plugins/autosave/index.js +7 -0
  286. package/dist/tinymce/plugins/autosave/plugin.js +233 -0
  287. package/dist/tinymce/plugins/autosave/plugin.min.js +5 -0
  288. package/dist/tinymce/plugins/charmap/index.js +7 -0
  289. package/dist/tinymce/plugins/charmap/plugin.js +1658 -0
  290. package/dist/tinymce/plugins/charmap/plugin.min.js +5 -0
  291. package/dist/tinymce/plugins/code/index.js +7 -0
  292. package/dist/tinymce/plugins/code/plugin.js +85 -0
  293. package/dist/tinymce/plugins/code/plugin.min.js +5 -0
  294. package/dist/tinymce/plugins/codesample/index.js +7 -0
  295. package/dist/tinymce/plugins/codesample/plugin.js +2471 -0
  296. package/dist/tinymce/plugins/codesample/plugin.min.js +13 -0
  297. package/dist/tinymce/plugins/directionality/index.js +7 -0
  298. package/dist/tinymce/plugins/directionality/plugin.js +395 -0
  299. package/dist/tinymce/plugins/directionality/plugin.min.js +5 -0
  300. package/dist/tinymce/plugins/emoticons/index.js +7 -0
  301. package/dist/tinymce/plugins/emoticons/js/emojiimages.js +1 -0
  302. package/dist/tinymce/plugins/emoticons/js/emojiimages.min.js +1 -0
  303. package/dist/tinymce/plugins/emoticons/js/emojis.js +1 -0
  304. package/dist/tinymce/plugins/emoticons/js/emojis.min.js +1 -0
  305. package/dist/tinymce/plugins/emoticons/plugin.js +595 -0
  306. package/dist/tinymce/plugins/emoticons/plugin.min.js +5 -0
  307. package/dist/tinymce/plugins/fullscreen/index.js +7 -0
  308. package/dist/tinymce/plugins/fullscreen/plugin.js +1249 -0
  309. package/dist/tinymce/plugins/fullscreen/plugin.min.js +5 -0
  310. package/dist/tinymce/plugins/help/index.js +7 -0
  311. package/dist/tinymce/plugins/help/js/i18n/keynav/ar.js +90 -0
  312. package/dist/tinymce/plugins/help/js/i18n/keynav/bg_BG.js +90 -0
  313. package/dist/tinymce/plugins/help/js/i18n/keynav/ca.js +90 -0
  314. package/dist/tinymce/plugins/help/js/i18n/keynav/cs.js +90 -0
  315. package/dist/tinymce/plugins/help/js/i18n/keynav/da.js +90 -0
  316. package/dist/tinymce/plugins/help/js/i18n/keynav/de.js +90 -0
  317. package/dist/tinymce/plugins/help/js/i18n/keynav/el.js +90 -0
  318. package/dist/tinymce/plugins/help/js/i18n/keynav/en.js +90 -0
  319. package/dist/tinymce/plugins/help/js/i18n/keynav/es.js +90 -0
  320. package/dist/tinymce/plugins/help/js/i18n/keynav/eu.js +90 -0
  321. package/dist/tinymce/plugins/help/js/i18n/keynav/fa.js +90 -0
  322. package/dist/tinymce/plugins/help/js/i18n/keynav/fi.js +90 -0
  323. package/dist/tinymce/plugins/help/js/i18n/keynav/fr_FR.js +90 -0
  324. package/dist/tinymce/plugins/help/js/i18n/keynav/he_IL.js +90 -0
  325. package/dist/tinymce/plugins/help/js/i18n/keynav/hi.js +90 -0
  326. package/dist/tinymce/plugins/help/js/i18n/keynav/hr.js +90 -0
  327. package/dist/tinymce/plugins/help/js/i18n/keynav/hu_HU.js +90 -0
  328. package/dist/tinymce/plugins/help/js/i18n/keynav/id.js +90 -0
  329. package/dist/tinymce/plugins/help/js/i18n/keynav/it.js +90 -0
  330. package/dist/tinymce/plugins/help/js/i18n/keynav/ja.js +90 -0
  331. package/dist/tinymce/plugins/help/js/i18n/keynav/kk.js +90 -0
  332. package/dist/tinymce/plugins/help/js/i18n/keynav/ko_KR.js +90 -0
  333. package/dist/tinymce/plugins/help/js/i18n/keynav/ms.js +90 -0
  334. package/dist/tinymce/plugins/help/js/i18n/keynav/nb_NO.js +90 -0
  335. package/dist/tinymce/plugins/help/js/i18n/keynav/nl.js +90 -0
  336. package/dist/tinymce/plugins/help/js/i18n/keynav/pl.js +90 -0
  337. package/dist/tinymce/plugins/help/js/i18n/keynav/pt_BR.js +90 -0
  338. package/dist/tinymce/plugins/help/js/i18n/keynav/pt_PT.js +90 -0
  339. package/dist/tinymce/plugins/help/js/i18n/keynav/ro.js +90 -0
  340. package/dist/tinymce/plugins/help/js/i18n/keynav/ru.js +90 -0
  341. package/dist/tinymce/plugins/help/js/i18n/keynav/sk.js +90 -0
  342. package/dist/tinymce/plugins/help/js/i18n/keynav/sl_SI.js +90 -0
  343. package/dist/tinymce/plugins/help/js/i18n/keynav/sv_SE.js +90 -0
  344. package/dist/tinymce/plugins/help/js/i18n/keynav/th_TH.js +90 -0
  345. package/dist/tinymce/plugins/help/js/i18n/keynav/tr.js +90 -0
  346. package/dist/tinymce/plugins/help/js/i18n/keynav/uk.js +90 -0
  347. package/dist/tinymce/plugins/help/js/i18n/keynav/vi.js +90 -0
  348. package/dist/tinymce/plugins/help/js/i18n/keynav/zh_CN.js +84 -0
  349. package/dist/tinymce/plugins/help/js/i18n/keynav/zh_TW.js +90 -0
  350. package/dist/tinymce/plugins/help/plugin.js +898 -0
  351. package/dist/tinymce/plugins/help/plugin.min.js +5 -0
  352. package/dist/tinymce/plugins/image/index.js +7 -0
  353. package/dist/tinymce/plugins/image/plugin.js +1505 -0
  354. package/dist/tinymce/plugins/image/plugin.min.js +5 -0
  355. package/dist/tinymce/plugins/importcss/index.js +7 -0
  356. package/dist/tinymce/plugins/importcss/plugin.js +344 -0
  357. package/dist/tinymce/plugins/importcss/plugin.min.js +5 -0
  358. package/dist/tinymce/plugins/insertdatetime/index.js +7 -0
  359. package/dist/tinymce/plugins/insertdatetime/plugin.js +187 -0
  360. package/dist/tinymce/plugins/insertdatetime/plugin.min.js +5 -0
  361. package/dist/tinymce/plugins/link/index.js +7 -0
  362. package/dist/tinymce/plugins/link/plugin.js +1242 -0
  363. package/dist/tinymce/plugins/link/plugin.min.js +5 -0
  364. package/dist/tinymce/plugins/lists/index.js +7 -0
  365. package/dist/tinymce/plugins/lists/plugin.js +2172 -0
  366. package/dist/tinymce/plugins/lists/plugin.min.js +5 -0
  367. package/dist/tinymce/plugins/media/index.js +7 -0
  368. package/dist/tinymce/plugins/media/plugin.js +1217 -0
  369. package/dist/tinymce/plugins/media/plugin.min.js +5 -0
  370. package/dist/tinymce/plugins/nonbreaking/index.js +7 -0
  371. package/dist/tinymce/plugins/nonbreaking/plugin.js +123 -0
  372. package/dist/tinymce/plugins/nonbreaking/plugin.min.js +5 -0
  373. package/dist/tinymce/plugins/pagebreak/index.js +7 -0
  374. package/dist/tinymce/plugins/pagebreak/plugin.js +117 -0
  375. package/dist/tinymce/plugins/pagebreak/plugin.min.js +5 -0
  376. package/dist/tinymce/plugins/preview/index.js +7 -0
  377. package/dist/tinymce/plugins/preview/plugin.js +97 -0
  378. package/dist/tinymce/plugins/preview/plugin.min.js +5 -0
  379. package/dist/tinymce/plugins/quickbars/index.js +7 -0
  380. package/dist/tinymce/plugins/quickbars/plugin.js +447 -0
  381. package/dist/tinymce/plugins/quickbars/plugin.min.js +5 -0
  382. package/dist/tinymce/plugins/save/index.js +7 -0
  383. package/dist/tinymce/plugins/save/plugin.js +118 -0
  384. package/dist/tinymce/plugins/save/plugin.min.js +5 -0
  385. package/dist/tinymce/plugins/searchreplace/index.js +7 -0
  386. package/dist/tinymce/plugins/searchreplace/plugin.js +1093 -0
  387. package/dist/tinymce/plugins/searchreplace/plugin.min.js +5 -0
  388. package/dist/tinymce/plugins/table/index.js +7 -0
  389. package/dist/tinymce/plugins/table/plugin.js +3462 -0
  390. package/dist/tinymce/plugins/table/plugin.min.js +5 -0
  391. package/dist/tinymce/plugins/template/index.js +7 -0
  392. package/dist/tinymce/plugins/template/plugin.js +567 -0
  393. package/dist/tinymce/plugins/template/plugin.min.js +5 -0
  394. package/dist/tinymce/plugins/visualblocks/index.js +7 -0
  395. package/dist/tinymce/plugins/visualblocks/plugin.js +98 -0
  396. package/dist/tinymce/plugins/visualblocks/plugin.min.js +5 -0
  397. package/dist/tinymce/plugins/visualchars/index.js +7 -0
  398. package/dist/tinymce/plugins/visualchars/plugin.js +560 -0
  399. package/dist/tinymce/plugins/visualchars/plugin.min.js +5 -0
  400. package/dist/tinymce/plugins/wordcount/index.js +7 -0
  401. package/dist/tinymce/plugins/wordcount/plugin.js +405 -0
  402. package/dist/tinymce/plugins/wordcount/plugin.min.js +5 -0
  403. package/dist/tinymce/skins/content/dark/content.css +79 -0
  404. package/dist/tinymce/skins/content/dark/content.js +15 -0
  405. package/dist/tinymce/skins/content/dark/content.min.css +14 -0
  406. package/dist/tinymce/skins/content/default/content.css +74 -0
  407. package/dist/tinymce/skins/content/default/content.js +15 -0
  408. package/dist/tinymce/skins/content/default/content.min.css +14 -0
  409. package/dist/tinymce/skins/content/document/content.css +79 -0
  410. package/dist/tinymce/skins/content/document/content.js +15 -0
  411. package/dist/tinymce/skins/content/document/content.min.css +14 -0
  412. package/dist/tinymce/skins/content/tinymce-5/content.css +74 -0
  413. package/dist/tinymce/skins/content/tinymce-5/content.js +15 -0
  414. package/dist/tinymce/skins/content/tinymce-5/content.min.css +14 -0
  415. package/dist/tinymce/skins/content/tinymce-5-dark/content.css +79 -0
  416. package/dist/tinymce/skins/content/tinymce-5-dark/content.js +15 -0
  417. package/dist/tinymce/skins/content/tinymce-5-dark/content.min.css +14 -0
  418. package/dist/tinymce/skins/content/writer/content.css +75 -0
  419. package/dist/tinymce/skins/content/writer/content.js +15 -0
  420. package/dist/tinymce/skins/content/writer/content.min.css +14 -0
  421. package/dist/tinymce/skins/ui/oxide/content.css +798 -0
  422. package/dist/tinymce/skins/ui/oxide/content.inline.css +792 -0
  423. package/dist/tinymce/skins/ui/oxide/content.inline.js +15 -0
  424. package/dist/tinymce/skins/ui/oxide/content.inline.min.css +14 -0
  425. package/dist/tinymce/skins/ui/oxide/content.js +15 -0
  426. package/dist/tinymce/skins/ui/oxide/content.min.css +14 -0
  427. package/dist/tinymce/skins/ui/oxide/skin.css +3763 -0
  428. package/dist/tinymce/skins/ui/oxide/skin.js +2 -0
  429. package/dist/tinymce/skins/ui/oxide/skin.min.css +1 -0
  430. package/dist/tinymce/skins/ui/oxide/skin.shadowdom.css +30 -0
  431. package/dist/tinymce/skins/ui/oxide/skin.shadowdom.js +2 -0
  432. package/dist/tinymce/skins/ui/oxide/skin.shadowdom.min.css +1 -0
  433. package/dist/tinymce/skins/ui/oxide-dark/content.css +779 -0
  434. package/dist/tinymce/skins/ui/oxide-dark/content.inline.css +792 -0
  435. package/dist/tinymce/skins/ui/oxide-dark/content.inline.js +15 -0
  436. package/dist/tinymce/skins/ui/oxide-dark/content.inline.min.css +14 -0
  437. package/dist/tinymce/skins/ui/oxide-dark/content.js +15 -0
  438. package/dist/tinymce/skins/ui/oxide-dark/content.min.css +14 -0
  439. package/dist/tinymce/skins/ui/oxide-dark/skin.css +3766 -0
  440. package/dist/tinymce/skins/ui/oxide-dark/skin.js +2 -0
  441. package/dist/tinymce/skins/ui/oxide-dark/skin.min.css +1 -0
  442. package/dist/tinymce/skins/ui/oxide-dark/skin.shadowdom.css +30 -0
  443. package/dist/tinymce/skins/ui/oxide-dark/skin.shadowdom.js +2 -0
  444. package/dist/tinymce/skins/ui/oxide-dark/skin.shadowdom.min.css +1 -0
  445. package/dist/tinymce/skins/ui/tinymce-5/content.css +798 -0
  446. package/dist/tinymce/skins/ui/tinymce-5/content.inline.css +792 -0
  447. package/dist/tinymce/skins/ui/tinymce-5/content.inline.js +15 -0
  448. package/dist/tinymce/skins/ui/tinymce-5/content.inline.min.css +14 -0
  449. package/dist/tinymce/skins/ui/tinymce-5/content.js +15 -0
  450. package/dist/tinymce/skins/ui/tinymce-5/content.min.css +14 -0
  451. package/dist/tinymce/skins/ui/tinymce-5/skin.css +3857 -0
  452. package/dist/tinymce/skins/ui/tinymce-5/skin.js +2 -0
  453. package/dist/tinymce/skins/ui/tinymce-5/skin.min.css +1 -0
  454. package/dist/tinymce/skins/ui/tinymce-5/skin.shadowdom.css +30 -0
  455. package/dist/tinymce/skins/ui/tinymce-5/skin.shadowdom.js +2 -0
  456. package/dist/tinymce/skins/ui/tinymce-5/skin.shadowdom.min.css +1 -0
  457. package/dist/tinymce/skins/ui/tinymce-5-dark/content.css +779 -0
  458. package/dist/tinymce/skins/ui/tinymce-5-dark/content.inline.css +792 -0
  459. package/dist/tinymce/skins/ui/tinymce-5-dark/content.inline.js +15 -0
  460. package/dist/tinymce/skins/ui/tinymce-5-dark/content.inline.min.css +14 -0
  461. package/dist/tinymce/skins/ui/tinymce-5-dark/content.js +15 -0
  462. package/dist/tinymce/skins/ui/tinymce-5-dark/content.min.css +14 -0
  463. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.css +3857 -0
  464. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.js +2 -0
  465. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.min.css +1 -0
  466. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.css +30 -0
  467. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.js +2 -0
  468. package/dist/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.min.css +1 -0
  469. package/dist/tinymce/themes/silver/index.js +7 -0
  470. package/dist/tinymce/themes/silver/theme.js +30775 -0
  471. package/dist/tinymce/themes/silver/theme.min.js +1 -0
  472. package/dist/tinymce/tinymce.d.ts +3238 -0
  473. package/dist/tinymce/tinymce.js +31779 -0
  474. package/dist/tinymce/tinymce.min.js +11 -0
  475. package/package.json +8 -4
  476. package/release-note.md +2 -2
  477. package/scripts/copy-tinymce.js +37 -0
  478. package/dist/src/common/types/form.d.ts +0 -9
  479. package/dist/src/common/types/form.js +0 -10
  480. package/dist/src/sub/DynamicLayout/CompositionEditor/CompositionEditor.d.ts +0 -22
  481. package/dist/src/sub/DynamicLayout/CompositionEditor/CompositionEditor.js +0 -1133
  482. package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionBackground.d.ts +0 -11
  483. package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionBackground.js +0 -45
  484. package/dist/src/sub/DynamicLayout/CompositionRenderer/createCompositions.d.ts +0 -10
  485. package/dist/src/sub/DynamicLayout/CompositionRenderer/createCompositions.js +0 -79
  486. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/downIcons.d.ts +0 -12
  487. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/downIcons.js +0 -76
  488. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/index.d.ts +0 -4
  489. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/index.js +0 -47
  490. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/leftIcons.d.ts +0 -12
  491. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/leftIcons.js +0 -76
  492. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/rightIcons.d.ts +0 -12
  493. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/rightIcons.js +0 -76
  494. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/upIcons.d.ts +0 -12
  495. package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/upIcons.js +0 -76
  496. package/dist/src/sub/DynamicLayout/compositionActionTypes.d.ts +0 -139
  497. package/dist/src/sub/DynamicLayout/compositionQueryContext.d.ts +0 -8
  498. package/dist/src/sub/DynamicLayout/compositionQueryContext.js +0 -14
  499. package/dist/src/sub/DynamicLayout/mock_componentBlocks.d.ts +0 -911
  500. package/dist/src/sub/DynamicLayout/mock_componentBlocks.js +0 -4238
  501. package/dist/src/sub/DynamicLayout/mock_composition.d.ts +0 -3
  502. package/dist/src/sub/DynamicLayout/mock_composition.js +0 -1607
  503. package/dist/src/sub/DynamicLayout/mock_contentsCarousel.d.ts +0 -1
  504. package/dist/src/sub/DynamicLayout/mock_contentsCarousel.js +0 -1111
  505. package/dist/src/sub/DynamicLayout/mock_contentsList.d.ts +0 -1
  506. package/dist/src/sub/DynamicLayout/mock_contentsList.js +0 -1091
  507. package/dist/src/sub/DynamicLayout/mock_queryData.d.ts +0 -96
  508. package/dist/src/sub/DynamicLayout/mock_queryData.js +0 -2639
  509. package/dist/src/sub/DynamicLayout/mock_slideBanner.d.ts +0 -842
  510. package/dist/src/sub/DynamicLayout/mock_slideBanner.js +0 -854
  511. package/dist/src/sub/DynamicLayout/mock_video.d.ts +0 -368
  512. package/dist/src/sub/DynamicLayout/mock_video.js +0 -371
  513. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarouselCore.d.ts +0 -12
  514. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarouselCore.js +0 -61
  515. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationNextBtn.d.ts +0 -15
  516. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationNextBtn.js +0 -69
  517. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationPrevBtn.d.ts +0 -15
  518. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationPrevBtn.js +0 -69
  519. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomProgressbar.d.ts +0 -9
  520. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomProgressbar.js +0 -87
  521. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/navigationConfigs.d.ts +0 -4
  522. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/navigationConfigs.js +0 -849
  523. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/progressConfigs.d.ts +0 -43
  524. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/progressConfigs.js +0 -162
  525. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/contentsCarouselUtils.d.ts +0 -39
  526. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/contentsCarouselUtils.js +0 -182
  527. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useFlexGridLayout.d.ts +0 -18
  528. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useFlexGridLayout.js +0 -229
  529. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useSwiper.d.ts +0 -14
  530. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useSwiper.js +0 -46
  531. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/index.d.ts +0 -1
  532. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/index.js +0 -8
  533. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/types.d.ts +0 -139
  534. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsList.d.ts +0 -14
  535. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsList.js +0 -214
  536. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsListCore.d.ts +0 -17
  537. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsListCore.js +0 -39
  538. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/CustomPagination.d.ts +0 -10
  539. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/CustomPagination.js +0 -85
  540. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/paginationConfigs.d.ts +0 -25
  541. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/paginationConfigs.js +0 -183
  542. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/contentsListUtils.d.ts +0 -29
  543. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/contentsListUtils.js +0 -130
  544. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/hooks/useFlexGridLayout.d.ts +0 -18
  545. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/hooks/useFlexGridLayout.js +0 -229
  546. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/index.d.ts +0 -1
  547. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/types.d.ts +0 -67
  548. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/types.js +0 -2
  549. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBanner.d.ts +0 -14
  550. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBanner.js +0 -151
  551. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBannerCore.d.ts +0 -12
  552. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBannerCore.js +0 -39
  553. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationNextBtn.d.ts +0 -15
  554. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationNextBtn.js +0 -69
  555. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationPrevBtn.d.ts +0 -15
  556. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationPrevBtn.js +0 -69
  557. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomPagination.d.ts +0 -20
  558. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomPagination.js +0 -173
  559. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomProgressbar.d.ts +0 -9
  560. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomProgressbar.js +0 -87
  561. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/navigationConfigs.d.ts +0 -4
  562. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/navigationConfigs.js +0 -849
  563. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/progressConfigs.d.ts +0 -43
  564. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/progressConfigs.js +0 -162
  565. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useFlexGridLayout.d.ts +0 -18
  566. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useFlexGridLayout.js +0 -229
  567. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useSwiper.d.ts +0 -16
  568. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useSwiper.js +0 -63
  569. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/index.d.ts +0 -1
  570. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/slideBannerUtils.d.ts +0 -46
  571. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/slideBannerUtils.js +0 -186
  572. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/types.d.ts +0 -163
  573. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/types.js +0 -2
  574. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/textSpecFormatOptions.d.ts +0 -7
  575. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/textSpecFormatOptions.js +0 -211
  576. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseCompositionPlacement.d.ts +0 -14
  577. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseCompositionPlacement.js +0 -26
  578. /package/dist/src/{sub/DynamicLayout/compositionActionTypes.js → common/types/multilingual.js} +0 -0
  579. /package/dist/src/{sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel → desktop/components/Calendar}/types.js +0 -0
@@ -0,0 +1,405 @@
1
+ /**
2
+ * TinyMCE version 6.8.6 (TBD)
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,5 @@
1
+ /**
2
+ * TinyMCE version 6.8.6 (TBD)
3
+ */
4
+
5
+ !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,79 @@
1
+ /* This file is bundled with the code from the following third party libraries */
2
+
3
+ /**
4
+ * http://prismjs.com/
5
+ * @license MIT <https://opensource.org/licenses/MIT>
6
+ * @author Lea Verou <https://lea.verou.me>
7
+ * @see https://github.com/PrismJS/prism/blob/master/LICENSE
8
+ *
9
+ * Dracula Theme originally by Zeno Rocha [@zenorocha]
10
+ * https://draculatheme.com/
11
+ *
12
+ * Ported for PrismJS by Albert Vallverdu [@byverdu]
13
+ */
14
+ body {
15
+ background-color: #222f3e;
16
+ color: #fff;
17
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
18
+ line-height: 1.4;
19
+ margin: 1rem;
20
+ }
21
+ a {
22
+ color: #4099ff;
23
+ }
24
+ table {
25
+ border-collapse: collapse;
26
+ }
27
+ /* Apply a default padding if legacy cellpadding attribute is missing */
28
+ table:not([cellpadding]) th,
29
+ table:not([cellpadding]) td {
30
+ padding: 0.4rem;
31
+ }
32
+ /* Set default table styles if a table has a positive border attribute
33
+ and no inline css */
34
+ table[border]:not([border="0"]):not([style*="border-width"]) th,
35
+ table[border]:not([border="0"]):not([style*="border-width"]) td {
36
+ border-width: 1px;
37
+ }
38
+ /* Set default table styles if a table has a positive border attribute
39
+ and no inline css */
40
+ table[border]:not([border="0"]):not([style*="border-style"]) th,
41
+ table[border]:not([border="0"]):not([style*="border-style"]) td {
42
+ border-style: solid;
43
+ }
44
+ /* Set default table styles if a table has a positive border attribute
45
+ and no inline css */
46
+ table[border]:not([border="0"]):not([style*="border-color"]) th,
47
+ table[border]:not([border="0"]):not([style*="border-color"]) td {
48
+ border-color: #6d737b;
49
+ }
50
+ figure {
51
+ display: table;
52
+ margin: 1rem auto;
53
+ }
54
+ figure figcaption {
55
+ color: #8a8f97;
56
+ display: block;
57
+ margin-top: 0.25rem;
58
+ text-align: center;
59
+ }
60
+ hr {
61
+ border-color: #6d737b;
62
+ border-style: solid;
63
+ border-width: 1px 0 0 0;
64
+ }
65
+ code {
66
+ background-color: #6d737b;
67
+ border-radius: 3px;
68
+ padding: 0.1rem 0.2rem;
69
+ }
70
+ .mce-content-body:not([dir=rtl]) blockquote {
71
+ border-left: 2px solid #6d737b;
72
+ margin-left: 1.5rem;
73
+ padding-left: 1rem;
74
+ }
75
+ .mce-content-body[dir=rtl] blockquote {
76
+ border-right: 2px solid #6d737b;
77
+ margin-right: 1.5rem;
78
+ padding-right: 1rem;
79
+ }
@@ -0,0 +1,15 @@
1
+ /* This file is bundled with the code from the following third party libraries */
2
+
3
+ /**
4
+ * http://prismjs.com/
5
+ * @license MIT <https://opensource.org/licenses/MIT>
6
+ * @author Lea Verou <https://lea.verou.me>
7
+ * @see https://github.com/PrismJS/prism/blob/master/LICENSE
8
+ *
9
+ * Dracula Theme originally by Zeno Rocha [@zenorocha]
10
+ * https://draculatheme.com/
11
+ *
12
+ * Ported for PrismJS by Albert Vallverdu [@byverdu]
13
+ */
14
+ 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}")
15
+ //# sourceMappingURL=content.js.map
@@ -0,0 +1,14 @@
1
+ /* This file is bundled with the code from the following third party libraries */
2
+
3
+ /**
4
+ * http://prismjs.com/
5
+ * @license MIT <https://opensource.org/licenses/MIT>
6
+ * @author Lea Verou <https://lea.verou.me>
7
+ * @see https://github.com/PrismJS/prism/blob/master/LICENSE
8
+ *
9
+ * Dracula Theme originally by Zeno Rocha [@zenorocha]
10
+ * https://draculatheme.com/
11
+ *
12
+ * Ported for PrismJS by Albert Vallverdu [@byverdu]
13
+ */
14
+ 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,74 @@
1
+ /* This file is bundled with the code from the following third party libraries */
2
+
3
+ /**
4
+ * http://prismjs.com/
5
+ * @license MIT <https://opensource.org/licenses/MIT>
6
+ * @author Lea Verou <https://lea.verou.me>
7
+ * @see https://github.com/PrismJS/prism/blob/master/LICENSE
8
+ *
9
+ * Dracula Theme originally by Zeno Rocha [@zenorocha]
10
+ * https://draculatheme.com/
11
+ *
12
+ * Ported for PrismJS by Albert Vallverdu [@byverdu]
13
+ */
14
+ body {
15
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
16
+ line-height: 1.4;
17
+ margin: 1rem;
18
+ }
19
+ table {
20
+ border-collapse: collapse;
21
+ }
22
+ /* Apply a default padding if legacy cellpadding attribute is missing */
23
+ table:not([cellpadding]) th,
24
+ table:not([cellpadding]) td {
25
+ padding: 0.4rem;
26
+ }
27
+ /* Set default table styles if a table has a positive border attribute
28
+ and no inline css */
29
+ table[border]:not([border="0"]):not([style*="border-width"]) th,
30
+ table[border]:not([border="0"]):not([style*="border-width"]) td {
31
+ border-width: 1px;
32
+ }
33
+ /* Set default table styles if a table has a positive border attribute
34
+ and no inline css */
35
+ table[border]:not([border="0"]):not([style*="border-style"]) th,
36
+ table[border]:not([border="0"]):not([style*="border-style"]) td {
37
+ border-style: solid;
38
+ }
39
+ /* Set default table styles if a table has a positive border attribute
40
+ and no inline css */
41
+ table[border]:not([border="0"]):not([style*="border-color"]) th,
42
+ table[border]:not([border="0"]):not([style*="border-color"]) td {
43
+ border-color: #ccc;
44
+ }
45
+ figure {
46
+ display: table;
47
+ margin: 1rem auto;
48
+ }
49
+ figure figcaption {
50
+ color: #999;
51
+ display: block;
52
+ margin-top: 0.25rem;
53
+ text-align: center;
54
+ }
55
+ hr {
56
+ border-color: #ccc;
57
+ border-style: solid;
58
+ border-width: 1px 0 0 0;
59
+ }
60
+ code {
61
+ background-color: #e8e8e8;
62
+ border-radius: 3px;
63
+ padding: 0.1rem 0.2rem;
64
+ }
65
+ .mce-content-body:not([dir=rtl]) blockquote {
66
+ border-left: 2px solid #ccc;
67
+ margin-left: 1.5rem;
68
+ padding-left: 1rem;
69
+ }
70
+ .mce-content-body[dir=rtl] blockquote {
71
+ border-right: 2px solid #ccc;
72
+ margin-right: 1.5rem;
73
+ padding-right: 1rem;
74
+ }
@@ -0,0 +1,15 @@
1
+ /* This file is bundled with the code from the following third party libraries */
2
+
3
+ /**
4
+ * http://prismjs.com/
5
+ * @license MIT <https://opensource.org/licenses/MIT>
6
+ * @author Lea Verou <https://lea.verou.me>
7
+ * @see https://github.com/PrismJS/prism/blob/master/LICENSE
8
+ *
9
+ * Dracula Theme originally by Zeno Rocha [@zenorocha]
10
+ * https://draculatheme.com/
11
+ *
12
+ * Ported for PrismJS by Albert Vallverdu [@byverdu]
13
+ */
14
+ 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}")
15
+ //# sourceMappingURL=content.js.map
@@ -0,0 +1,14 @@
1
+ /* This file is bundled with the code from the following third party libraries */
2
+
3
+ /**
4
+ * http://prismjs.com/
5
+ * @license MIT <https://opensource.org/licenses/MIT>
6
+ * @author Lea Verou <https://lea.verou.me>
7
+ * @see https://github.com/PrismJS/prism/blob/master/LICENSE
8
+ *
9
+ * Dracula Theme originally by Zeno Rocha [@zenorocha]
10
+ * https://draculatheme.com/
11
+ *
12
+ * Ported for PrismJS by Albert Vallverdu [@byverdu]
13
+ */
14
+ 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}