@umbraco-cms/backoffice 1.0.0-next.fc4c0a95 → 14.0.0-00685bde

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 (4158) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +4 -6
  3. package/dist-cms/apps/app/app-context-config.interface.d.ts +19 -0
  4. package/dist-cms/apps/app/app-context-config.interface.js +1 -0
  5. package/dist-cms/apps/app/app-error.element.d.ts +31 -0
  6. package/dist-cms/apps/app/app-error.element.js +120 -0
  7. package/dist-cms/apps/app/app.element.d.ts +32 -0
  8. package/dist-cms/apps/app/app.element.js +238 -0
  9. package/dist-cms/apps/app/index.d.ts +3 -0
  10. package/dist-cms/apps/app/index.js +3 -0
  11. package/dist-cms/apps/backoffice/backoffice.context.d.ts +8 -0
  12. package/dist-cms/apps/backoffice/backoffice.context.js +15 -0
  13. package/dist-cms/apps/backoffice/backoffice.element.d.ts +14 -0
  14. package/dist-cms/apps/backoffice/backoffice.element.js +65 -0
  15. package/dist-cms/apps/backoffice/components/backoffice-header-apps.element.d.ts +10 -0
  16. package/dist-cms/apps/backoffice/components/backoffice-header-apps.element.js +24 -0
  17. package/dist-cms/apps/backoffice/components/backoffice-header-sections.element.d.ts +25 -0
  18. package/dist-cms/apps/backoffice/components/backoffice-header-sections.element.js +130 -0
  19. package/dist-cms/apps/backoffice/components/backoffice-header.element.d.ts +11 -0
  20. package/dist-cms/apps/backoffice/components/backoffice-header.element.js +56 -0
  21. package/dist-cms/apps/backoffice/components/backoffice-main.element.d.ts +20 -0
  22. package/dist-cms/apps/backoffice/components/backoffice-main.element.js +100 -0
  23. package/dist-cms/apps/backoffice/components/index.d.ts +4 -0
  24. package/dist-cms/apps/backoffice/components/index.js +4 -0
  25. package/dist-cms/apps/backoffice/extension.controller.d.ts +10 -0
  26. package/dist-cms/apps/backoffice/extension.controller.js +70 -0
  27. package/dist-cms/apps/backoffice/index.d.ts +3 -0
  28. package/dist-cms/apps/backoffice/index.js +3 -0
  29. package/dist-cms/apps/installer/consent/installer-consent.element.d.ts +23 -0
  30. package/dist-cms/apps/installer/consent/installer-consent.element.js +126 -0
  31. package/dist-cms/apps/installer/database/installer-database.element.d.ts +36 -0
  32. package/dist-cms/apps/installer/database/installer-database.element.js +394 -0
  33. package/dist-cms/apps/installer/error/installer-error.element.d.ts +19 -0
  34. package/dist-cms/apps/installer/error/installer-error.element.js +90 -0
  35. package/dist-cms/apps/installer/index.d.ts +7 -0
  36. package/dist-cms/apps/installer/index.js +7 -0
  37. package/dist-cms/apps/installer/installer.context.d.ts +79 -0
  38. package/dist-cms/apps/installer/installer.context.js +111 -0
  39. package/dist-cms/apps/installer/installer.element.d.ts +24 -0
  40. package/dist-cms/apps/installer/installer.element.js +62 -0
  41. package/dist-cms/apps/installer/installing/installer-installing.element.d.ts +10 -0
  42. package/dist-cms/apps/installer/installing/installer-installing.element.js +25 -0
  43. package/dist-cms/apps/installer/shared/layout/installer-layout.element.d.ts +10 -0
  44. package/dist-cms/apps/installer/shared/layout/installer-layout.element.js +130 -0
  45. package/dist-cms/apps/installer/shared/utils.story-helpers.d.ts +2 -0
  46. package/dist-cms/apps/installer/shared/utils.story-helpers.js +10 -0
  47. package/dist-cms/apps/installer/user/installer-user.element.d.ts +16 -0
  48. package/dist-cms/apps/installer/user/installer-user.element.js +157 -0
  49. package/dist-cms/apps/upgrader/index.d.ts +2 -0
  50. package/dist-cms/apps/upgrader/index.js +2 -0
  51. package/dist-cms/apps/upgrader/upgrader-view.element.d.ts +23 -0
  52. package/dist-cms/apps/upgrader/upgrader-view.element.js +106 -0
  53. package/dist-cms/apps/upgrader/upgrader.element.d.ts +22 -0
  54. package/dist-cms/apps/upgrader/upgrader.element.js +75 -0
  55. package/dist-cms/assets/favicon.svg +17 -0
  56. package/dist-cms/assets/fonts/lato/LatoLatin-Black.woff2 +0 -0
  57. package/dist-cms/assets/fonts/lato/LatoLatin-BlackItalic.woff2 +0 -0
  58. package/dist-cms/assets/fonts/lato/LatoLatin-Bold.woff2 +0 -0
  59. package/dist-cms/assets/fonts/lato/LatoLatin-BoldItalic.woff2 +0 -0
  60. package/dist-cms/assets/fonts/lato/LatoLatin-Italic.woff2 +0 -0
  61. package/dist-cms/assets/fonts/lato/LatoLatin-Light.woff2 +0 -0
  62. package/dist-cms/assets/fonts/lato/LatoLatin-LightItalic.woff2 +0 -0
  63. package/dist-cms/assets/fonts/lato/LatoLatin-Regular.woff2 +0 -0
  64. package/dist-cms/assets/installer-illustration.svg +722 -0
  65. package/dist-cms/assets/installer.jpg +0 -0
  66. package/dist-cms/assets/umbraco_background.jpg +0 -0
  67. package/dist-cms/assets/umbraco_logo_white.svg +1 -0
  68. package/dist-cms/assets/umbraco_logomark_white.svg +1 -0
  69. package/dist-cms/css/umb-css.css +8 -0
  70. package/dist-cms/css/uui-css.css +566 -0
  71. package/{custom-elements.json → dist-cms/custom-elements.json} +5214 -4260
  72. package/dist-cms/external/backend-api/index.js +1 -0
  73. package/dist-cms/external/lit/index.js +115 -0
  74. package/dist-cms/external/lodash/index.js +1 -0
  75. package/dist-cms/external/monaco-editor/abap-7ad4f8f0.js +6 -0
  76. package/dist-cms/external/monaco-editor/apex-30597c49.js +6 -0
  77. package/dist-cms/external/monaco-editor/assets/bundle-a4f90d1d.css +5669 -0
  78. package/dist-cms/external/monaco-editor/azcli-67c34a04.js +6 -0
  79. package/dist-cms/external/monaco-editor/bat-b8f4738b.js +6 -0
  80. package/dist-cms/external/monaco-editor/bicep-b104b38b.js +7 -0
  81. package/dist-cms/external/monaco-editor/cameligo-001d1ded.js +6 -0
  82. package/dist-cms/external/monaco-editor/clojure-fa9652a1.js +6 -0
  83. package/dist-cms/external/monaco-editor/coffee-b69a8315.js +6 -0
  84. package/dist-cms/external/monaco-editor/cpp-8053752f.js +6 -0
  85. package/dist-cms/external/monaco-editor/csharp-886041a3.js +6 -0
  86. package/dist-cms/external/monaco-editor/csp-e846bce6.js +6 -0
  87. package/dist-cms/external/monaco-editor/css-50032e5e.js +8 -0
  88. package/dist-cms/external/monaco-editor/cssMode-c0406684.js +9 -0
  89. package/dist-cms/external/monaco-editor/cypher-6f93a845.js +6 -0
  90. package/dist-cms/external/monaco-editor/dart-14284236.js +6 -0
  91. package/dist-cms/external/monaco-editor/dockerfile-e9935eb4.js +6 -0
  92. package/dist-cms/external/monaco-editor/ecl-9c89f204.js +6 -0
  93. package/dist-cms/external/monaco-editor/elixir-ca8bf661.js +6 -0
  94. package/dist-cms/external/monaco-editor/flow9-ac147227.js +6 -0
  95. package/dist-cms/external/monaco-editor/freemarker2-793b7402.js +8 -0
  96. package/dist-cms/external/monaco-editor/fsharp-8eaad024.js +6 -0
  97. package/dist-cms/external/monaco-editor/go-05529e2e.js +6 -0
  98. package/dist-cms/external/monaco-editor/graphql-8f5b3fdd.js +6 -0
  99. package/dist-cms/external/monaco-editor/handlebars-aaa2fd96.js +6 -0
  100. package/dist-cms/external/monaco-editor/hcl-9e201a51.js +6 -0
  101. package/dist-cms/external/monaco-editor/html-1194c0aa.js +6 -0
  102. package/dist-cms/external/monaco-editor/htmlMode-36df69c6.js +9 -0
  103. package/dist-cms/external/monaco-editor/index-7368f3e3.js +1167 -0
  104. package/dist-cms/external/monaco-editor/index.js +1 -0
  105. package/dist-cms/external/monaco-editor/ini-31a5619d.js +6 -0
  106. package/dist-cms/external/monaco-editor/java-8c6e1ae8.js +6 -0
  107. package/dist-cms/external/monaco-editor/javascript-86205709.js +6 -0
  108. package/dist-cms/external/monaco-editor/jsonMode-f663e935.js +11 -0
  109. package/dist-cms/external/monaco-editor/julia-fbb2af47.js +6 -0
  110. package/dist-cms/external/monaco-editor/kotlin-bfa96180.js +6 -0
  111. package/dist-cms/external/monaco-editor/less-0b6a8ff1.js +7 -0
  112. package/dist-cms/external/monaco-editor/lexon-585e5248.js +6 -0
  113. package/dist-cms/external/monaco-editor/liquid-37adc07a.js +6 -0
  114. package/dist-cms/external/monaco-editor/lua-f6c17885.js +6 -0
  115. package/dist-cms/external/monaco-editor/m3-1b6456c5.js +6 -0
  116. package/dist-cms/external/monaco-editor/markdown-7bc251f9.js +6 -0
  117. package/dist-cms/external/monaco-editor/mips-2df76781.js +6 -0
  118. package/dist-cms/external/monaco-editor/msdax-8c38e8b4.js +6 -0
  119. package/dist-cms/external/monaco-editor/mysql-abbb9ca3.js +6 -0
  120. package/dist-cms/external/monaco-editor/objective-c-efbfd08b.js +6 -0
  121. package/dist-cms/external/monaco-editor/pascal-08abee72.js +6 -0
  122. package/dist-cms/external/monaco-editor/pascaligo-200db0cf.js +6 -0
  123. package/dist-cms/external/monaco-editor/perl-079789ee.js +6 -0
  124. package/dist-cms/external/monaco-editor/pgsql-efd093d4.js +6 -0
  125. package/dist-cms/external/monaco-editor/php-75c530f2.js +6 -0
  126. package/dist-cms/external/monaco-editor/pla-a55a2765.js +6 -0
  127. package/dist-cms/external/monaco-editor/postiats-6098f37b.js +6 -0
  128. package/dist-cms/external/monaco-editor/powerquery-949bb7fe.js +6 -0
  129. package/dist-cms/external/monaco-editor/powershell-7e550b21.js +6 -0
  130. package/dist-cms/external/monaco-editor/protobuf-25a4d695.js +7 -0
  131. package/dist-cms/external/monaco-editor/pug-f8c9f493.js +6 -0
  132. package/dist-cms/external/monaco-editor/python-78a47148.js +6 -0
  133. package/dist-cms/external/monaco-editor/qsharp-c4b94317.js +6 -0
  134. package/dist-cms/external/monaco-editor/r-614353db.js +6 -0
  135. package/dist-cms/external/monaco-editor/razor-5de9ce12.js +6 -0
  136. package/dist-cms/external/monaco-editor/redis-fb089f4d.js +6 -0
  137. package/dist-cms/external/monaco-editor/redshift-a620fcb0.js +6 -0
  138. package/dist-cms/external/monaco-editor/restructuredtext-7ab09fcf.js +6 -0
  139. package/dist-cms/external/monaco-editor/ruby-922be722.js +6 -0
  140. package/dist-cms/external/monaco-editor/rust-23e08578.js +6 -0
  141. package/dist-cms/external/monaco-editor/sb-ccceec0f.js +6 -0
  142. package/dist-cms/external/monaco-editor/scala-0535664d.js +6 -0
  143. package/dist-cms/external/monaco-editor/scheme-dba621eb.js +6 -0
  144. package/dist-cms/external/monaco-editor/scss-28539a11.js +8 -0
  145. package/dist-cms/external/monaco-editor/shell-5b92a834.js +6 -0
  146. package/dist-cms/external/monaco-editor/solidity-f63d6049.js +6 -0
  147. package/dist-cms/external/monaco-editor/sophia-12e9ad90.js +6 -0
  148. package/dist-cms/external/monaco-editor/sparql-dedb74aa.js +6 -0
  149. package/dist-cms/external/monaco-editor/sql-975a69d7.js +6 -0
  150. package/dist-cms/external/monaco-editor/st-1904ae33.js +6 -0
  151. package/dist-cms/external/monaco-editor/swift-e180a143.js +8 -0
  152. package/dist-cms/external/monaco-editor/systemverilog-c5592fac.js +6 -0
  153. package/dist-cms/external/monaco-editor/tcl-996f4ac7.js +6 -0
  154. package/dist-cms/external/monaco-editor/tsMode-f4618e87.js +16 -0
  155. package/dist-cms/external/monaco-editor/twig-4859b551.js +6 -0
  156. package/dist-cms/external/monaco-editor/typescript-efea739f.js +6 -0
  157. package/dist-cms/external/monaco-editor/vb-ad68fa9a.js +6 -0
  158. package/dist-cms/external/monaco-editor/wgsl-5ee7b1ca.js +303 -0
  159. package/dist-cms/external/monaco-editor/xml-12b9ace3.js +6 -0
  160. package/dist-cms/external/monaco-editor/yaml-65e08cff.js +6 -0
  161. package/dist-cms/external/openid/index.js +2 -0
  162. package/dist-cms/external/router-slot/index.js +1 -0
  163. package/dist-cms/external/rxjs/index.js +3 -0
  164. package/dist-cms/external/tinymce/index.js +49 -0
  165. package/dist-cms/external/uui/index.js +5837 -0
  166. package/dist-cms/external/uuid/index.js +1 -0
  167. package/dist-cms/libs/class-api/class.interface.d.ts +12 -0
  168. package/dist-cms/libs/class-api/class.interface.js +1 -0
  169. package/dist-cms/libs/class-api/class.mixin.d.ts +27 -0
  170. package/dist-cms/libs/class-api/class.mixin.js +49 -0
  171. package/dist-cms/libs/class-api/index.d.ts +2 -0
  172. package/dist-cms/libs/class-api/index.js +2 -0
  173. package/dist-cms/libs/context-api/consume/context-consumer.controller.d.ts +10 -0
  174. package/dist-cms/libs/context-api/consume/context-consumer.controller.js +19 -0
  175. package/dist-cms/libs/context-api/consume/context-consumer.d.ts +29 -0
  176. package/dist-cms/libs/context-api/consume/context-consumer.js +73 -0
  177. package/dist-cms/libs/context-api/consume/context-request.event.d.ts +28 -0
  178. package/dist-cms/libs/context-api/consume/context-request.event.js +24 -0
  179. package/dist-cms/libs/context-api/debug/context-data.function.d.ts +59 -0
  180. package/dist-cms/libs/context-api/debug/context-data.function.js +88 -0
  181. package/dist-cms/libs/context-api/index.d.ts +9 -0
  182. package/dist-cms/libs/context-api/index.js +9 -0
  183. package/dist-cms/libs/context-api/provide/context-provide.event.d.ts +20 -0
  184. package/dist-cms/libs/context-api/provide/context-provide.event.js +16 -0
  185. package/dist-cms/libs/context-api/provide/context-provider.controller.d.ts +9 -0
  186. package/dist-cms/libs/context-api/provide/context-provider.controller.js +27 -0
  187. package/dist-cms/libs/context-api/provide/context-provider.d.ts +40 -0
  188. package/dist-cms/libs/context-api/provide/context-provider.element.d.ts +41 -0
  189. package/dist-cms/libs/context-api/provide/context-provider.element.js +41 -0
  190. package/dist-cms/libs/context-api/provide/context-provider.js +74 -0
  191. package/dist-cms/libs/context-api/token/context-token.d.ts +28 -0
  192. package/dist-cms/libs/context-api/token/context-token.js +31 -0
  193. package/dist-cms/libs/context-api/token/index.d.ts +1 -0
  194. package/dist-cms/libs/context-api/token/index.js +1 -0
  195. package/dist-cms/libs/controller-api/controller-alias.type.d.ts +1 -0
  196. package/dist-cms/libs/controller-api/controller-alias.type.js +1 -0
  197. package/dist-cms/libs/controller-api/controller-host-base.mixin.d.ts +22 -0
  198. package/dist-cms/libs/controller-api/controller-host-base.mixin.js +86 -0
  199. package/dist-cms/libs/controller-api/controller-host-element.mixin.d.ts +26 -0
  200. package/dist-cms/libs/controller-api/controller-host-element.mixin.js +24 -0
  201. package/dist-cms/libs/controller-api/controller-host-initializer.element.d.ts +20 -0
  202. package/dist-cms/libs/controller-api/controller-host-initializer.element.js +16 -0
  203. package/dist-cms/libs/controller-api/controller-host.interface.d.ts +9 -0
  204. package/dist-cms/libs/controller-api/controller-host.interface.js +1 -0
  205. package/dist-cms/libs/controller-api/controller.class.d.ts +47 -0
  206. package/dist-cms/libs/controller-api/controller.class.js +20 -0
  207. package/dist-cms/libs/controller-api/controller.interface.d.ts +7 -0
  208. package/dist-cms/libs/controller-api/controller.interface.js +1 -0
  209. package/dist-cms/libs/controller-api/index.d.ts +6 -0
  210. package/dist-cms/libs/controller-api/index.js +6 -0
  211. package/dist-cms/libs/element-api/element.mixin.d.ts +13 -0
  212. package/dist-cms/libs/element-api/element.mixin.js +38 -0
  213. package/dist-cms/libs/element-api/index.d.ts +1 -0
  214. package/dist-cms/libs/element-api/index.js +1 -0
  215. package/dist-cms/libs/extension-api/bundle-extension-initializer.d.ts +9 -0
  216. package/dist-cms/libs/extension-api/bundle-extension-initializer.js +52 -0
  217. package/dist-cms/libs/extension-api/create-extension-class.function.d.ts +2 -0
  218. package/dist-cms/libs/extension-api/create-extension-class.function.js +19 -0
  219. package/dist-cms/libs/extension-api/create-extension-element-or-fallback.function.d.ts +1 -0
  220. package/dist-cms/libs/extension-api/create-extension-element-or-fallback.function.js +8 -0
  221. package/dist-cms/libs/extension-api/create-extension-element.function.d.ts +2 -0
  222. package/dist-cms/libs/extension-api/create-extension-element.function.js +24 -0
  223. package/dist-cms/libs/extension-api/entry-point-extension-initializer.d.ts +8 -0
  224. package/dist-cms/libs/extension-api/entry-point-extension-initializer.js +27 -0
  225. package/dist-cms/libs/extension-api/entry-point.interface.d.ts +10 -0
  226. package/dist-cms/libs/extension-api/entry-point.interface.js +1 -0
  227. package/dist-cms/libs/extension-api/has-default-export.function.d.ts +3 -0
  228. package/dist-cms/libs/extension-api/has-default-export.function.js +3 -0
  229. package/dist-cms/libs/extension-api/has-init-export.function.d.ts +5 -0
  230. package/dist-cms/libs/extension-api/has-init-export.function.js +6 -0
  231. package/dist-cms/libs/extension-api/index.d.ts +12 -0
  232. package/dist-cms/libs/extension-api/index.js +12 -0
  233. package/dist-cms/libs/extension-api/load-extension.function.d.ts +2 -0
  234. package/dist-cms/libs/extension-api/load-extension.function.js +16 -0
  235. package/dist-cms/libs/extension-api/registry/extension.registry.d.ts +22 -0
  236. package/dist-cms/libs/extension-api/registry/extension.registry.js +167 -0
  237. package/dist-cms/libs/extension-api/type-guards/index.d.ts +6 -0
  238. package/dist-cms/libs/extension-api/type-guards/index.js +6 -0
  239. package/dist-cms/libs/extension-api/type-guards/is-manifest-class-instance-type.function.d.ts +2 -0
  240. package/dist-cms/libs/extension-api/type-guards/is-manifest-class-instance-type.function.js +3 -0
  241. package/dist-cms/libs/extension-api/type-guards/is-manifest-classable-type.function.d.ts +2 -0
  242. package/dist-cms/libs/extension-api/type-guards/is-manifest-classable-type.function.js +8 -0
  243. package/dist-cms/libs/extension-api/type-guards/is-manifest-element-name-type.function.d.ts +2 -0
  244. package/dist-cms/libs/extension-api/type-guards/is-manifest-element-name-type.function.js +3 -0
  245. package/dist-cms/libs/extension-api/type-guards/is-manifest-elementable-type.function.d.ts +2 -0
  246. package/dist-cms/libs/extension-api/type-guards/is-manifest-elementable-type.function.js +8 -0
  247. package/dist-cms/libs/extension-api/type-guards/is-manifest-js-type.function.d.ts +5 -0
  248. package/dist-cms/libs/extension-api/type-guards/is-manifest-js-type.function.js +3 -0
  249. package/dist-cms/libs/extension-api/type-guards/is-manifest-loader-type.function.d.ts +5 -0
  250. package/dist-cms/libs/extension-api/type-guards/is-manifest-loader-type.function.js +3 -0
  251. package/dist-cms/libs/extension-api/types.d.ts +147 -0
  252. package/dist-cms/libs/extension-api/types.js +1 -0
  253. package/dist-cms/libs/observable-api/append-to-frozen-array.function.d.ts +13 -0
  254. package/dist-cms/libs/observable-api/append-to-frozen-array.function.js +29 -0
  255. package/dist-cms/libs/observable-api/array-state.d.ts +124 -0
  256. package/dist-cms/libs/observable-api/array-state.js +195 -0
  257. package/dist-cms/libs/observable-api/basic-state.d.ts +11 -0
  258. package/dist-cms/libs/observable-api/basic-state.js +17 -0
  259. package/dist-cms/libs/observable-api/boolean-state.d.ts +10 -0
  260. package/dist-cms/libs/observable-api/boolean-state.js +12 -0
  261. package/dist-cms/libs/observable-api/class-state.d.ts +15 -0
  262. package/dist-cms/libs/observable-api/class-state.js +18 -0
  263. package/dist-cms/libs/observable-api/create-observable-part.function.d.ts +14 -0
  264. package/dist-cms/libs/observable-api/create-observable-part.function.js +15 -0
  265. package/dist-cms/libs/observable-api/deep-freeze.function.d.ts +1 -0
  266. package/dist-cms/libs/observable-api/deep-freeze.function.js +16 -0
  267. package/dist-cms/libs/observable-api/deep-state.d.ts +15 -0
  268. package/dist-cms/libs/observable-api/deep-state.js +26 -0
  269. package/dist-cms/libs/observable-api/default-memoization.d.ts +1 -0
  270. package/dist-cms/libs/observable-api/default-memoization.js +7 -0
  271. package/dist-cms/libs/observable-api/filter-frozen-array.function.d.ts +11 -0
  272. package/dist-cms/libs/observable-api/filter-frozen-array.function.js +13 -0
  273. package/dist-cms/libs/observable-api/index.d.ts +15 -0
  274. package/dist-cms/libs/observable-api/index.js +15 -0
  275. package/dist-cms/libs/observable-api/mapping-function.d.ts +1 -0
  276. package/dist-cms/libs/observable-api/mapping-function.js +1 -0
  277. package/dist-cms/libs/observable-api/memoization-function.d.ts +1 -0
  278. package/dist-cms/libs/observable-api/memoization-function.js +1 -0
  279. package/dist-cms/libs/observable-api/naive-object-comparison.d.ts +1 -0
  280. package/dist-cms/libs/observable-api/naive-object-comparison.js +3 -0
  281. package/dist-cms/libs/observable-api/number-state.d.ts +10 -0
  282. package/dist-cms/libs/observable-api/number-state.js +12 -0
  283. package/dist-cms/libs/observable-api/object-state.d.ts +23 -0
  284. package/dist-cms/libs/observable-api/object-state.js +26 -0
  285. package/dist-cms/libs/observable-api/observer.controller.d.ts +8 -0
  286. package/dist-cms/libs/observable-api/observer.controller.js +19 -0
  287. package/dist-cms/libs/observable-api/observer.d.ts +9 -0
  288. package/dist-cms/libs/observable-api/observer.js +25 -0
  289. package/dist-cms/libs/observable-api/partial-update-frozen-array.function.d.ts +13 -0
  290. package/dist-cms/libs/observable-api/partial-update-frozen-array.function.js +20 -0
  291. package/dist-cms/libs/observable-api/push-to-unique-array.function.d.ts +13 -0
  292. package/dist-cms/libs/observable-api/push-to-unique-array.function.js +23 -0
  293. package/dist-cms/libs/observable-api/string-state.d.ts +10 -0
  294. package/dist-cms/libs/observable-api/string-state.js +12 -0
  295. package/dist-cms/mocks/browser-handlers.d.ts +2 -0
  296. package/dist-cms/mocks/browser-handlers.js +85 -0
  297. package/dist-cms/mocks/data/culture.data.d.ts +7 -0
  298. package/dist-cms/mocks/data/culture.data.js +3792 -0
  299. package/dist-cms/mocks/data/data-type.data.d.ts +18 -0
  300. package/dist-cms/mocks/data/data-type.data.js +700 -0
  301. package/dist-cms/mocks/data/data.d.ts +5 -0
  302. package/dist-cms/mocks/data/data.js +10 -0
  303. package/dist-cms/mocks/data/dictionary.data.d.ts +11 -0
  304. package/dist-cms/mocks/data/dictionary.data.js +72 -0
  305. package/dist-cms/mocks/data/document-blueprint.data.d.ts +8 -0
  306. package/dist-cms/mocks/data/document-blueprint.data.js +31 -0
  307. package/dist-cms/mocks/data/document-type.data.d.ts +18 -0
  308. package/dist-cms/mocks/data/document-type.data.js +1158 -0
  309. package/dist-cms/mocks/data/document.data.d.ts +17 -0
  310. package/dist-cms/mocks/data/document.data.js +603 -0
  311. package/dist-cms/mocks/data/entity-tree.data.d.ts +8 -0
  312. package/dist-cms/mocks/data/entity-tree.data.js +42 -0
  313. package/dist-cms/mocks/data/entity.data.d.ts +13 -0
  314. package/dist-cms/mocks/data/entity.data.js +98 -0
  315. package/dist-cms/mocks/data/examine.data.d.ts +6 -0
  316. package/dist-cms/mocks/data/examine.data.js +135 -0
  317. package/dist-cms/mocks/data/health-check.data.d.ts +9 -0
  318. package/dist-cms/mocks/data/health-check.data.js +314 -0
  319. package/dist-cms/mocks/data/languages.data.d.ts +15 -0
  320. package/dist-cms/mocks/data/languages.data.js +98 -0
  321. package/dist-cms/mocks/data/log-viewer.data.d.ts +38 -0
  322. package/dist-cms/mocks/data/log-viewer.data.js +386 -0
  323. package/dist-cms/mocks/data/logs.data.d.ts +2 -0
  324. package/dist-cms/mocks/data/logs.data.js +7344 -0
  325. package/dist-cms/mocks/data/media-type.data.d.ts +12 -0
  326. package/dist-cms/mocks/data/media-type.data.js +52 -0
  327. package/dist-cms/mocks/data/media.data.d.ts +14 -0
  328. package/dist-cms/mocks/data/media.data.js +211 -0
  329. package/dist-cms/mocks/data/member-group.data.d.ts +12 -0
  330. package/dist-cms/mocks/data/member-group.data.js +38 -0
  331. package/dist-cms/mocks/data/member-type.data.d.ts +12 -0
  332. package/dist-cms/mocks/data/member-type.data.js +37 -0
  333. package/dist-cms/mocks/data/member.data.d.ts +12 -0
  334. package/dist-cms/mocks/data/member.data.js +38 -0
  335. package/dist-cms/mocks/data/partial-views.data.d.ts +11 -0
  336. package/dist-cms/mocks/data/partial-views.data.js +86 -0
  337. package/dist-cms/mocks/data/relation-type.data.d.ts +13 -0
  338. package/dist-cms/mocks/data/relation-type.data.js +132 -0
  339. package/dist-cms/mocks/data/stylesheet.data.d.ts +14 -0
  340. package/dist-cms/mocks/data/stylesheet.data.js +62 -0
  341. package/dist-cms/mocks/data/template.data.d.ts +28 -0
  342. package/dist-cms/mocks/data/template.data.js +212 -0
  343. package/dist-cms/mocks/data/user-groups.data.d.ts +9 -0
  344. package/dist-cms/mocks/data/user-groups.data.js +21 -0
  345. package/dist-cms/mocks/data/users.data.d.ts +16 -0
  346. package/dist-cms/mocks/data/users.data.js +154 -0
  347. package/dist-cms/mocks/data/utils.d.ts +11 -0
  348. package/dist-cms/mocks/data/utils.js +57 -0
  349. package/dist-cms/mocks/e2e-handlers.d.ts +1 -0
  350. package/dist-cms/mocks/e2e-handlers.js +37 -0
  351. package/dist-cms/mocks/handlers/config.handlers.d.ts +1 -0
  352. package/dist-cms/mocks/handlers/config.handlers.js +9 -0
  353. package/dist-cms/mocks/handlers/culture.handlers.d.ts +1 -0
  354. package/dist-cms/mocks/handlers/culture.handlers.js +9 -0
  355. package/dist-cms/mocks/handlers/data-type/copy.handlers.d.ts +1 -0
  356. package/dist-cms/mocks/handlers/data-type/copy.handlers.js +16 -0
  357. package/dist-cms/mocks/handlers/data-type/detail.handlers.d.ts +1 -0
  358. package/dist-cms/mocks/handlers/data-type/detail.handlers.js +37 -0
  359. package/dist-cms/mocks/handlers/data-type/folder.handlers.d.ts +1 -0
  360. package/dist-cms/mocks/handlers/data-type/folder.handlers.js +46 -0
  361. package/dist-cms/mocks/handlers/data-type/index.d.ts +1 -0
  362. package/dist-cms/mocks/handlers/data-type/index.js +14 -0
  363. package/dist-cms/mocks/handlers/data-type/item.handlers.d.ts +1 -0
  364. package/dist-cms/mocks/handlers/data-type/item.handlers.js +13 -0
  365. package/dist-cms/mocks/handlers/data-type/move.handlers.d.ts +1 -0
  366. package/dist-cms/mocks/handlers/data-type/move.handlers.js +16 -0
  367. package/dist-cms/mocks/handlers/data-type/slug.d.ts +1 -0
  368. package/dist-cms/mocks/handlers/data-type/slug.js +1 -0
  369. package/dist-cms/mocks/handlers/data-type/tree.handlers.d.ts +1 -0
  370. package/dist-cms/mocks/handlers/data-type/tree.handlers.js +25 -0
  371. package/dist-cms/mocks/handlers/dictionary.handlers.d.ts +1 -0
  372. package/dist-cms/mocks/handlers/dictionary.handlers.js +163 -0
  373. package/dist-cms/mocks/handlers/document-type.handlers.d.ts +1 -0
  374. package/dist-cms/mocks/handlers/document-type.handlers.js +80 -0
  375. package/dist-cms/mocks/handlers/document.handlers.d.ts +1 -0
  376. package/dist-cms/mocks/handlers/document.handlers.js +65 -0
  377. package/dist-cms/mocks/handlers/examine-management.handlers.d.ts +1 -0
  378. package/dist-cms/mocks/handlers/examine-management.handlers.js +57 -0
  379. package/dist-cms/mocks/handlers/health-check.handlers.d.ts +1 -0
  380. package/dist-cms/mocks/handlers/health-check.handlers.js +52 -0
  381. package/dist-cms/mocks/handlers/images.handlers.d.ts +1 -0
  382. package/dist-cms/mocks/handlers/images.handlers.js +7 -0
  383. package/dist-cms/mocks/handlers/install.handlers.d.ts +1 -0
  384. package/dist-cms/mocks/handlers/install.handlers.js +101 -0
  385. package/dist-cms/mocks/handlers/language.handlers.d.ts +1 -0
  386. package/dist-cms/mocks/handlers/language.handlers.js +64 -0
  387. package/dist-cms/mocks/handlers/log-viewer.handlers.d.ts +1 -0
  388. package/dist-cms/mocks/handlers/log-viewer.handlers.js +69 -0
  389. package/dist-cms/mocks/handlers/manifests.handlers.d.ts +2 -0
  390. package/dist-cms/mocks/handlers/manifests.handlers.js +68 -0
  391. package/dist-cms/mocks/handlers/media-type.handlers.d.ts +1 -0
  392. package/dist-cms/mocks/handlers/media-type.handlers.js +23 -0
  393. package/dist-cms/mocks/handlers/media.handlers.d.ts +1 -0
  394. package/dist-cms/mocks/handlers/media.handlers.js +50 -0
  395. package/dist-cms/mocks/handlers/member-group.handlers.d.ts +1 -0
  396. package/dist-cms/mocks/handlers/member-group.handlers.js +16 -0
  397. package/dist-cms/mocks/handlers/member-type.handlers.d.ts +1 -0
  398. package/dist-cms/mocks/handlers/member-type.handlers.js +16 -0
  399. package/dist-cms/mocks/handlers/member.handlers.d.ts +1 -0
  400. package/dist-cms/mocks/handlers/member.handlers.js +16 -0
  401. package/dist-cms/mocks/handlers/modelsbuilder.handlers.d.ts +1 -0
  402. package/dist-cms/mocks/handlers/modelsbuilder.handlers.js +51 -0
  403. package/dist-cms/mocks/handlers/package.handlers.d.ts +1 -0
  404. package/dist-cms/mocks/handlers/package.handlers.js +110 -0
  405. package/dist-cms/mocks/handlers/partial-views.handlers.d.ts +1 -0
  406. package/dist-cms/mocks/handlers/partial-views.handlers.js +23 -0
  407. package/dist-cms/mocks/handlers/performance-profiling.handlers.d.ts +1 -0
  408. package/dist-cms/mocks/handlers/performance-profiling.handlers.js +14 -0
  409. package/dist-cms/mocks/handlers/published-status.handlers.d.ts +1 -0
  410. package/dist-cms/mocks/handlers/published-status.handlers.js +26 -0
  411. package/dist-cms/mocks/handlers/redirect-management.handlers.d.ts +1 -0
  412. package/dist-cms/mocks/handlers/redirect-management.handlers.js +162 -0
  413. package/dist-cms/mocks/handlers/relation-type.handlers.d.ts +1 -0
  414. package/dist-cms/mocks/handlers/relation-type.handlers.js +66 -0
  415. package/dist-cms/mocks/handlers/rte-embed.handlers.d.ts +1 -0
  416. package/dist-cms/mocks/handlers/rte-embed.handlers.js +19 -0
  417. package/dist-cms/mocks/handlers/server.handlers.d.ts +4 -0
  418. package/dist-cms/mocks/handlers/server.handlers.js +31 -0
  419. package/dist-cms/mocks/handlers/stylesheet.handlers.d.ts +1 -0
  420. package/dist-cms/mocks/handlers/stylesheet.handlers.js +23 -0
  421. package/dist-cms/mocks/handlers/tag-handlers.d.ts +1 -0
  422. package/dist-cms/mocks/handlers/tag-handlers.js +186 -0
  423. package/dist-cms/mocks/handlers/telemetry.handlers.d.ts +1 -0
  424. package/dist-cms/mocks/handlers/telemetry.handlers.js +37 -0
  425. package/dist-cms/mocks/handlers/template.handlers.d.ts +1 -0
  426. package/dist-cms/mocks/handlers/template.handlers.js +77 -0
  427. package/dist-cms/mocks/handlers/tree-media.handlers.d.ts +1 -0
  428. package/dist-cms/mocks/handlers/tree-media.handlers.js +23 -0
  429. package/dist-cms/mocks/handlers/upgrade.handlers.d.ts +1 -0
  430. package/dist-cms/mocks/handlers/upgrade.handlers.js +21 -0
  431. package/dist-cms/mocks/handlers/user-group.handlers.d.ts +1 -0
  432. package/dist-cms/mocks/handlers/user-group.handlers.js +17 -0
  433. package/dist-cms/mocks/handlers/user.handlers.d.ts +1 -0
  434. package/dist-cms/mocks/handlers/user.handlers.js +43 -0
  435. package/dist-cms/mocks/index.d.ts +11 -0
  436. package/dist-cms/mocks/index.js +15 -0
  437. package/dist-cms/packages/core/action/action.interface.d.ts +6 -0
  438. package/dist-cms/packages/core/action/action.interface.js +1 -0
  439. package/dist-cms/packages/core/action/index.d.ts +2 -0
  440. package/dist-cms/packages/core/action/index.js +2 -0
  441. package/dist-cms/packages/core/action/repository-action.d.ts +6 -0
  442. package/dist-cms/packages/core/action/repository-action.js +20 -0
  443. package/dist-cms/packages/core/collection/collection-filter-model.interface.d.ts +5 -0
  444. package/dist-cms/packages/core/collection/collection-filter-model.interface.js +1 -0
  445. package/dist-cms/packages/core/collection/collection-selection-actions.element.d.ts +22 -0
  446. package/dist-cms/packages/core/collection/collection-selection-actions.element.js +123 -0
  447. package/dist-cms/packages/core/collection/collection-toolbar.element.d.ts +25 -0
  448. package/dist-cms/packages/core/collection/collection-toolbar.element.js +159 -0
  449. package/dist-cms/packages/core/collection/collection.context.d.ts +28 -0
  450. package/dist-cms/packages/core/collection/collection.context.js +113 -0
  451. package/dist-cms/packages/core/collection/collection.element.d.ts +23 -0
  452. package/dist-cms/packages/core/collection/collection.element.js +103 -0
  453. package/dist-cms/packages/core/collection/dashboards/dashboard-collection.element.d.ts +17 -0
  454. package/dist-cms/packages/core/collection/dashboards/dashboard-collection.element.js +44 -0
  455. package/dist-cms/packages/core/collection/index.d.ts +3 -0
  456. package/dist-cms/packages/core/collection/index.js +3 -0
  457. package/dist-cms/packages/core/components/backoffice-modal-container/backoffice-modal-container.element.d.ts +15 -0
  458. package/dist-cms/packages/core/components/backoffice-modal-container/backoffice-modal-container.element.js +48 -0
  459. package/dist-cms/packages/core/components/backoffice-notification-container/backoffice-notification-container.element.d.ts +15 -0
  460. package/dist-cms/packages/core/components/backoffice-notification-container/backoffice-notification-container.element.js +55 -0
  461. package/dist-cms/packages/core/components/body-layout/body-layout.element.d.ts +34 -0
  462. package/dist-cms/packages/core/components/body-layout/body-layout.element.js +220 -0
  463. package/dist-cms/packages/core/components/button-with-dropdown/button-with-dropdown.element.d.ts +22 -0
  464. package/dist-cms/packages/core/components/button-with-dropdown/button-with-dropdown.element.js +89 -0
  465. package/dist-cms/packages/core/components/code-block/code-block.element.d.ts +20 -0
  466. package/dist-cms/packages/core/components/code-block/code-block.element.js +132 -0
  467. package/dist-cms/packages/core/components/code-block/index.d.ts +1 -0
  468. package/dist-cms/packages/core/components/code-block/index.js +1 -0
  469. package/dist-cms/packages/core/components/data-type/data-type-property-collection.class.d.ts +28 -0
  470. package/dist-cms/packages/core/components/data-type/data-type-property-collection.class.js +48 -0
  471. package/dist-cms/packages/core/components/data-type/index.d.ts +1 -0
  472. package/dist-cms/packages/core/components/data-type/index.js +1 -0
  473. package/dist-cms/packages/core/components/dropdown/dropdown.element.d.ts +12 -0
  474. package/dist-cms/packages/core/components/dropdown/dropdown.element.js +58 -0
  475. package/dist-cms/packages/core/components/dropdown/index.d.ts +1 -0
  476. package/dist-cms/packages/core/components/dropdown/index.js +1 -0
  477. package/dist-cms/packages/core/components/empty-state/empty-state.element.d.ts +20 -0
  478. package/dist-cms/packages/core/components/empty-state/empty-state.element.js +64 -0
  479. package/dist-cms/packages/core/components/empty-state/index.d.ts +1 -0
  480. package/dist-cms/packages/core/components/empty-state/index.js +1 -0
  481. package/dist-cms/packages/core/components/entity-actions-bundle/entity-actions-bundle.element.d.ts +19 -0
  482. package/dist-cms/packages/core/components/entity-actions-bundle/entity-actions-bundle.element.js +76 -0
  483. package/dist-cms/packages/core/components/entity-actions-bundle/index.d.ts +1 -0
  484. package/dist-cms/packages/core/components/entity-actions-bundle/index.js +1 -0
  485. package/dist-cms/packages/core/components/extension-slot/extension-slot.element.d.ts +35 -0
  486. package/dist-cms/packages/core/components/extension-slot/extension-slot.element.js +127 -0
  487. package/dist-cms/packages/core/components/extension-slot/index.d.ts +1 -0
  488. package/dist-cms/packages/core/components/extension-slot/index.js +1 -0
  489. package/dist-cms/packages/core/components/footer-layout/footer-layout.element.d.ts +19 -0
  490. package/dist-cms/packages/core/components/footer-layout/footer-layout.element.js +50 -0
  491. package/dist-cms/packages/core/components/footer-layout/index.d.ts +1 -0
  492. package/dist-cms/packages/core/components/footer-layout/index.js +1 -0
  493. package/dist-cms/packages/core/components/header-app/header-app-button.element.d.ts +13 -0
  494. package/dist-cms/packages/core/components/header-app/header-app-button.element.js +47 -0
  495. package/dist-cms/packages/core/components/header-app/index.d.ts +1 -0
  496. package/dist-cms/packages/core/components/header-app/index.js +1 -0
  497. package/dist-cms/packages/core/components/history/history-item.element.d.ts +14 -0
  498. package/dist-cms/packages/core/components/history/history-item.element.js +95 -0
  499. package/dist-cms/packages/core/components/history/history-list.element.d.ts +11 -0
  500. package/dist-cms/packages/core/components/history/history-list.element.js +47 -0
  501. package/dist-cms/packages/core/components/history/index.d.ts +2 -0
  502. package/dist-cms/packages/core/components/history/index.js +2 -0
  503. package/dist-cms/packages/core/components/index.d.ts +32 -0
  504. package/dist-cms/packages/core/components/index.js +34 -0
  505. package/dist-cms/packages/core/components/input-checkbox-list/index.d.ts +1 -0
  506. package/dist-cms/packages/core/components/input-checkbox-list/index.js +1 -0
  507. package/dist-cms/packages/core/components/input-checkbox-list/input-checkbox-list.element.d.ts +31 -0
  508. package/dist-cms/packages/core/components/input-checkbox-list/input-checkbox-list.element.js +81 -0
  509. package/dist-cms/packages/core/components/input-color/index.d.ts +1 -0
  510. package/dist-cms/packages/core/components/input-color/index.js +1 -0
  511. package/dist-cms/packages/core/components/input-color/input-color.element.d.ts +19 -0
  512. package/dist-cms/packages/core/components/input-color/input-color.element.js +51 -0
  513. package/dist-cms/packages/core/components/input-date/index.d.ts +1 -0
  514. package/dist-cms/packages/core/components/input-date/index.js +1 -0
  515. package/dist-cms/packages/core/components/input-date/input-date.element.d.ts +30 -0
  516. package/dist-cms/packages/core/components/input-date/input-date.element.js +139 -0
  517. package/dist-cms/packages/core/components/input-eye-dropper/index.d.ts +1 -0
  518. package/dist-cms/packages/core/components/input-eye-dropper/index.js +1 -0
  519. package/dist-cms/packages/core/components/input-eye-dropper/input-eye-dropper.element.d.ts +16 -0
  520. package/dist-cms/packages/core/components/input-eye-dropper/input-eye-dropper.element.js +44 -0
  521. package/dist-cms/packages/core/components/input-list-base/index.d.ts +1 -0
  522. package/dist-cms/packages/core/components/input-list-base/index.js +1 -0
  523. package/dist-cms/packages/core/components/input-list-base/input-list-base.d.ts +19 -0
  524. package/dist-cms/packages/core/components/input-list-base/input-list-base.js +66 -0
  525. package/dist-cms/packages/core/components/input-multi-url/index.d.ts +1 -0
  526. package/dist-cms/packages/core/components/input-multi-url/index.js +1 -0
  527. package/dist-cms/packages/core/components/input-multi-url/input-multi-url.element.d.ts +79 -0
  528. package/dist-cms/packages/core/components/input-multi-url/input-multi-url.element.js +189 -0
  529. package/dist-cms/packages/core/components/input-number-range/index.d.ts +1 -0
  530. package/dist-cms/packages/core/components/input-number-range/index.js +1 -0
  531. package/dist-cms/packages/core/components/input-number-range/input-number-range.element.d.ts +26 -0
  532. package/dist-cms/packages/core/components/input-number-range/input-number-range.element.js +93 -0
  533. package/dist-cms/packages/core/components/input-radio-button-list/index.d.ts +1 -0
  534. package/dist-cms/packages/core/components/input-radio-button-list/index.js +1 -0
  535. package/dist-cms/packages/core/components/input-radio-button-list/input-radio-button-list.element.d.ts +31 -0
  536. package/dist-cms/packages/core/components/input-radio-button-list/input-radio-button-list.element.js +69 -0
  537. package/dist-cms/packages/core/components/input-section/index.d.ts +1 -0
  538. package/dist-cms/packages/core/components/input-section/index.js +1 -0
  539. package/dist-cms/packages/core/components/input-section/input-section.element.d.ts +14 -0
  540. package/dist-cms/packages/core/components/input-section/input-section.element.js +90 -0
  541. package/dist-cms/packages/core/components/input-slider/index.d.ts +1 -0
  542. package/dist-cms/packages/core/components/input-slider/index.js +1 -0
  543. package/dist-cms/packages/core/components/input-slider/input-slider.element.d.ts +20 -0
  544. package/dist-cms/packages/core/components/input-slider/input-slider.element.js +74 -0
  545. package/dist-cms/packages/core/components/input-tiny-mce/index.d.ts +6 -0
  546. package/dist-cms/packages/core/components/input-tiny-mce/index.js +6 -0
  547. package/dist-cms/packages/core/components/input-tiny-mce/input-tiny-mce.defaults.d.ts +5 -0
  548. package/dist-cms/packages/core/components/input-tiny-mce/input-tiny-mce.defaults.js +45 -0
  549. package/dist-cms/packages/core/components/input-tiny-mce/input-tiny-mce.element.d.ts +29 -0
  550. package/dist-cms/packages/core/components/input-tiny-mce/input-tiny-mce.element.js +276 -0
  551. package/dist-cms/packages/core/components/input-tiny-mce/input-tiny-mce.handlers.d.ts +3 -0
  552. package/dist-cms/packages/core/components/input-tiny-mce/input-tiny-mce.handlers.js +38 -0
  553. package/dist-cms/packages/core/components/input-tiny-mce/input-tiny-mce.languages.d.ts +1 -0
  554. package/dist-cms/packages/core/components/input-tiny-mce/input-tiny-mce.languages.js +78 -0
  555. package/dist-cms/packages/core/components/input-tiny-mce/input-tiny-mce.sanitizer.d.ts +6 -0
  556. package/dist-cms/packages/core/components/input-tiny-mce/input-tiny-mce.sanitizer.js +53 -0
  557. package/dist-cms/packages/core/components/input-tiny-mce/tiny-mce-plugin.d.ts +12 -0
  558. package/dist-cms/packages/core/components/input-tiny-mce/tiny-mce-plugin.js +7 -0
  559. package/dist-cms/packages/core/components/input-toggle/index.d.ts +1 -0
  560. package/dist-cms/packages/core/components/input-toggle/index.js +1 -0
  561. package/dist-cms/packages/core/components/input-toggle/input-toggle.element.d.ts +23 -0
  562. package/dist-cms/packages/core/components/input-toggle/input-toggle.element.js +72 -0
  563. package/dist-cms/packages/core/components/input-upload-field/index.d.ts +2 -0
  564. package/dist-cms/packages/core/components/input-upload-field/index.js +2 -0
  565. package/dist-cms/packages/core/components/input-upload-field/input-upload-field-file.element.d.ts +16 -0
  566. package/dist-cms/packages/core/components/input-upload-field/input-upload-field-file.element.js +56 -0
  567. package/dist-cms/packages/core/components/input-upload-field/input-upload-field.element.d.ts +40 -0
  568. package/dist-cms/packages/core/components/input-upload-field/input-upload-field.element.js +150 -0
  569. package/dist-cms/packages/core/components/property-editor-config/index.d.ts +1 -0
  570. package/dist-cms/packages/core/components/property-editor-config/index.js +1 -0
  571. package/dist-cms/packages/core/components/property-editor-config/property-editor-config.element.d.ts +49 -0
  572. package/dist-cms/packages/core/components/property-editor-config/property-editor-config.element.js +118 -0
  573. package/dist-cms/packages/core/components/property-type-based-property/index.d.ts +1 -0
  574. package/dist-cms/packages/core/components/property-type-based-property/index.js +1 -0
  575. package/dist-cms/packages/core/components/property-type-based-property/property-type-based-property.element.d.ts +35 -0
  576. package/dist-cms/packages/core/components/property-type-based-property/property-type-based-property.element.js +116 -0
  577. package/dist-cms/packages/core/components/ref-property-editor-ui/index.d.ts +1 -0
  578. package/dist-cms/packages/core/components/ref-property-editor-ui/index.js +1 -0
  579. package/dist-cms/packages/core/components/ref-property-editor-ui/ref-property-editor-ui.element.d.ts +30 -0
  580. package/dist-cms/packages/core/components/ref-property-editor-ui/ref-property-editor-ui.element.js +60 -0
  581. package/dist-cms/packages/core/components/table/index.d.ts +1 -0
  582. package/dist-cms/packages/core/components/table/index.js +1 -0
  583. package/dist-cms/packages/core/components/table/table.element.d.ts +91 -0
  584. package/dist-cms/packages/core/components/table/table.element.js +265 -0
  585. package/dist-cms/packages/core/components/tooltip-menu/index.d.ts +1 -0
  586. package/dist-cms/packages/core/components/tooltip-menu/index.js +1 -0
  587. package/dist-cms/packages/core/components/tooltip-menu/tooltip-menu.element.d.ts +20 -0
  588. package/dist-cms/packages/core/components/tooltip-menu/tooltip-menu.element.js +85 -0
  589. package/dist-cms/packages/core/components/variant-selector/index.d.ts +1 -0
  590. package/dist-cms/packages/core/components/variant-selector/index.js +1 -0
  591. package/dist-cms/packages/core/components/variant-selector/variant-selector.element.d.ts +38 -0
  592. package/dist-cms/packages/core/components/variant-selector/variant-selector.element.js +327 -0
  593. package/dist-cms/packages/core/content-type/content-type-container-structure-helper.class.d.ts +45 -0
  594. package/dist-cms/packages/core/content-type/content-type-container-structure-helper.class.js +178 -0
  595. package/dist-cms/packages/core/content-type/content-type-property-structure-helper.class.d.ts +25 -0
  596. package/dist-cms/packages/core/content-type/content-type-property-structure-helper.class.js +109 -0
  597. package/dist-cms/packages/core/content-type/content-type-structure-manager.class.d.ts +59 -0
  598. package/dist-cms/packages/core/content-type/content-type-structure-manager.class.js +304 -0
  599. package/dist-cms/packages/core/content-type/index.d.ts +3 -0
  600. package/dist-cms/packages/core/content-type/index.js +3 -0
  601. package/dist-cms/packages/core/debug/debug.element.d.ts +25 -0
  602. package/dist-cms/packages/core/debug/debug.element.js +196 -0
  603. package/dist-cms/packages/core/debug/index.d.ts +2 -0
  604. package/dist-cms/packages/core/debug/index.js +2 -0
  605. package/dist-cms/packages/core/debug/manifests.d.ts +2 -0
  606. package/dist-cms/packages/core/debug/manifests.js +9 -0
  607. package/dist-cms/packages/core/debug/modals/debug/debug-modal.element.d.ts +12 -0
  608. package/dist-cms/packages/core/debug/modals/debug/debug-modal.element.js +74 -0
  609. package/dist-cms/packages/core/entity-action/common/copy/copy.action.d.ts +8 -0
  610. package/dist-cms/packages/core/entity-action/common/copy/copy.action.js +10 -0
  611. package/dist-cms/packages/core/entity-action/common/delete/delete.action.d.ts +8 -0
  612. package/dist-cms/packages/core/entity-action/common/delete/delete.action.js +28 -0
  613. package/dist-cms/packages/core/entity-action/common/delete-folder/delete-folder.action.d.ts +8 -0
  614. package/dist-cms/packages/core/entity-action/common/delete-folder/delete-folder.action.js +28 -0
  615. package/dist-cms/packages/core/entity-action/common/folder-update/folder-update.action.d.ts +8 -0
  616. package/dist-cms/packages/core/entity-action/common/folder-update/folder-update.action.js +21 -0
  617. package/dist-cms/packages/core/entity-action/common/index.d.ts +7 -0
  618. package/dist-cms/packages/core/entity-action/common/index.js +7 -0
  619. package/dist-cms/packages/core/entity-action/common/move/move.action.d.ts +8 -0
  620. package/dist-cms/packages/core/entity-action/common/move/move.action.js +12 -0
  621. package/dist-cms/packages/core/entity-action/common/sort-children-of/sort-children-of.action.d.ts +8 -0
  622. package/dist-cms/packages/core/entity-action/common/sort-children-of/sort-children-of.action.js +10 -0
  623. package/dist-cms/packages/core/entity-action/common/trash/trash.action.d.ts +10 -0
  624. package/dist-cms/packages/core/entity-action/common/trash/trash.action.js +29 -0
  625. package/dist-cms/packages/core/entity-action/entity-action-list.element.d.ts +15 -0
  626. package/dist-cms/packages/core/entity-action/entity-action-list.element.js +52 -0
  627. package/dist-cms/packages/core/entity-action/entity-action.d.ts +10 -0
  628. package/dist-cms/packages/core/entity-action/entity-action.element.d.ts +18 -0
  629. package/dist-cms/packages/core/entity-action/entity-action.element.js +83 -0
  630. package/dist-cms/packages/core/entity-action/entity-action.js +8 -0
  631. package/dist-cms/packages/core/entity-action/index.d.ts +4 -0
  632. package/dist-cms/packages/core/entity-action/index.js +4 -0
  633. package/dist-cms/packages/core/entity-bulk-action/entity-bulk-action.d.ts +11 -0
  634. package/dist-cms/packages/core/entity-bulk-action/entity-bulk-action.element.d.ts +17 -0
  635. package/dist-cms/packages/core/entity-bulk-action/entity-bulk-action.element.js +68 -0
  636. package/dist-cms/packages/core/entity-bulk-action/entity-bulk-action.js +10 -0
  637. package/dist-cms/packages/core/entity-bulk-action/index.d.ts +2 -0
  638. package/dist-cms/packages/core/entity-bulk-action/index.js +2 -0
  639. package/dist-cms/packages/core/extension-registry/class-extensions-initializer.d.ts +14 -0
  640. package/dist-cms/packages/core/extension-registry/class-extensions-initializer.js +33 -0
  641. package/dist-cms/packages/core/extension-registry/extension-class-initializer.d.ts +9 -0
  642. package/dist-cms/packages/core/extension-registry/extension-class-initializer.js +42 -0
  643. package/dist-cms/packages/core/extension-registry/index.d.ts +5 -0
  644. package/dist-cms/packages/core/extension-registry/index.js +5 -0
  645. package/dist-cms/packages/core/extension-registry/interfaces/dashboard-extension-element.interface.d.ts +4 -0
  646. package/dist-cms/packages/core/extension-registry/interfaces/dashboard-extension-element.interface.js +1 -0
  647. package/dist-cms/packages/core/extension-registry/interfaces/external-login-provider-extension-element.interface.d.ts +4 -0
  648. package/dist-cms/packages/core/extension-registry/interfaces/external-login-provider-extension-element.interface.js +1 -0
  649. package/dist-cms/packages/core/extension-registry/interfaces/index.d.ts +10 -0
  650. package/dist-cms/packages/core/extension-registry/interfaces/index.js +10 -0
  651. package/dist-cms/packages/core/extension-registry/interfaces/menu-item-extension-element.interface.d.ts +4 -0
  652. package/dist-cms/packages/core/extension-registry/interfaces/menu-item-extension-element.interface.js +1 -0
  653. package/dist-cms/packages/core/extension-registry/interfaces/modal-extension-element.interface.d.ts +7 -0
  654. package/dist-cms/packages/core/extension-registry/interfaces/modal-extension-element.interface.js +1 -0
  655. package/dist-cms/packages/core/extension-registry/interfaces/property-editor-ui-extension-element.interface.d.ts +5 -0
  656. package/dist-cms/packages/core/extension-registry/interfaces/property-editor-ui-extension-element.interface.js +1 -0
  657. package/dist-cms/packages/core/extension-registry/interfaces/section-extension-element.interface.d.ts +4 -0
  658. package/dist-cms/packages/core/extension-registry/interfaces/section-extension-element.interface.js +1 -0
  659. package/dist-cms/packages/core/extension-registry/interfaces/section-sidebar-app-extension-element.interface.d.ts +4 -0
  660. package/dist-cms/packages/core/extension-registry/interfaces/section-sidebar-app-extension-element.interface.js +1 -0
  661. package/dist-cms/packages/core/extension-registry/interfaces/section-view-extension-element.interface.d.ts +4 -0
  662. package/dist-cms/packages/core/extension-registry/interfaces/section-view-extension-element.interface.js +1 -0
  663. package/dist-cms/packages/core/extension-registry/interfaces/tree-item-extension-element.interface.d.ts +4 -0
  664. package/dist-cms/packages/core/extension-registry/interfaces/tree-item-extension-element.interface.js +1 -0
  665. package/dist-cms/packages/core/extension-registry/interfaces/workspace-editor-view-extension-element.interface.d.ts +4 -0
  666. package/dist-cms/packages/core/extension-registry/interfaces/workspace-editor-view-extension-element.interface.js +1 -0
  667. package/dist-cms/packages/core/extension-registry/models/collection-view.model.d.ts +35 -0
  668. package/dist-cms/packages/core/extension-registry/models/collection-view.model.js +1 -0
  669. package/dist-cms/packages/core/extension-registry/models/dashboard-collection.model.d.ts +49 -0
  670. package/dist-cms/packages/core/extension-registry/models/dashboard-collection.model.js +1 -0
  671. package/dist-cms/packages/core/extension-registry/models/dashboard.model.d.ts +36 -0
  672. package/dist-cms/packages/core/extension-registry/models/dashboard.model.js +1 -0
  673. package/dist-cms/packages/core/extension-registry/models/entity-action.model.d.ts +64 -0
  674. package/dist-cms/packages/core/extension-registry/models/entity-action.model.js +1 -0
  675. package/dist-cms/packages/core/extension-registry/models/entity-bulk-action.model.d.ts +41 -0
  676. package/dist-cms/packages/core/extension-registry/models/entity-bulk-action.model.js +1 -0
  677. package/dist-cms/packages/core/extension-registry/models/external-login-provider.model.d.ts +10 -0
  678. package/dist-cms/packages/core/extension-registry/models/external-login-provider.model.js +1 -0
  679. package/dist-cms/packages/core/extension-registry/models/global-context.model.d.ts +4 -0
  680. package/dist-cms/packages/core/extension-registry/models/global-context.model.js +1 -0
  681. package/dist-cms/packages/core/extension-registry/models/header-app.model.d.ts +23 -0
  682. package/dist-cms/packages/core/extension-registry/models/header-app.model.js +1 -0
  683. package/dist-cms/packages/core/extension-registry/models/health-check.model.d.ts +14 -0
  684. package/dist-cms/packages/core/extension-registry/models/health-check.model.js +1 -0
  685. package/dist-cms/packages/core/extension-registry/models/index.d.ts +60 -0
  686. package/dist-cms/packages/core/extension-registry/models/index.js +29 -0
  687. package/dist-cms/packages/core/extension-registry/models/menu-item.model.d.ts +26 -0
  688. package/dist-cms/packages/core/extension-registry/models/menu-item.model.js +1 -0
  689. package/dist-cms/packages/core/extension-registry/models/menu.model.d.ts +4 -0
  690. package/dist-cms/packages/core/extension-registry/models/menu.model.js +1 -0
  691. package/dist-cms/packages/core/extension-registry/models/modal.model.d.ts +4 -0
  692. package/dist-cms/packages/core/extension-registry/models/modal.model.js +1 -0
  693. package/dist-cms/packages/core/extension-registry/models/package-view.model.d.ts +8 -0
  694. package/dist-cms/packages/core/extension-registry/models/package-view.model.js +1 -0
  695. package/dist-cms/packages/core/extension-registry/models/property-action.model.d.ts +7 -0
  696. package/dist-cms/packages/core/extension-registry/models/property-action.model.js +1 -0
  697. package/dist-cms/packages/core/extension-registry/models/property-editor.model.d.ts +38 -0
  698. package/dist-cms/packages/core/extension-registry/models/property-editor.model.js +1 -0
  699. package/dist-cms/packages/core/extension-registry/models/repository.model.d.ts +4 -0
  700. package/dist-cms/packages/core/extension-registry/models/repository.model.js +1 -0
  701. package/dist-cms/packages/core/extension-registry/models/section-sidebar-app.model.d.ts +29 -0
  702. package/dist-cms/packages/core/extension-registry/models/section-sidebar-app.model.js +1 -0
  703. package/dist-cms/packages/core/extension-registry/models/section-view.model.d.ts +33 -0
  704. package/dist-cms/packages/core/extension-registry/models/section-view.model.js +1 -0
  705. package/dist-cms/packages/core/extension-registry/models/section.model.d.ts +10 -0
  706. package/dist-cms/packages/core/extension-registry/models/section.model.js +1 -0
  707. package/dist-cms/packages/core/extension-registry/models/store.model.d.ts +11 -0
  708. package/dist-cms/packages/core/extension-registry/models/store.model.js +1 -0
  709. package/dist-cms/packages/core/extension-registry/models/theme.model.d.ts +13 -0
  710. package/dist-cms/packages/core/extension-registry/models/theme.model.js +1 -0
  711. package/dist-cms/packages/core/extension-registry/models/tinymce-plugin.model.d.ts +38 -0
  712. package/dist-cms/packages/core/extension-registry/models/tinymce-plugin.model.js +1 -0
  713. package/dist-cms/packages/core/extension-registry/models/tree-item.model.d.ts +9 -0
  714. package/dist-cms/packages/core/extension-registry/models/tree-item.model.js +1 -0
  715. package/dist-cms/packages/core/extension-registry/models/tree.model.d.ts +8 -0
  716. package/dist-cms/packages/core/extension-registry/models/tree.model.js +1 -0
  717. package/dist-cms/packages/core/extension-registry/models/user-profile-app.model.d.ts +9 -0
  718. package/dist-cms/packages/core/extension-registry/models/user-profile-app.model.js +1 -0
  719. package/dist-cms/packages/core/extension-registry/models/workspace-action.model.d.ts +17 -0
  720. package/dist-cms/packages/core/extension-registry/models/workspace-action.model.js +1 -0
  721. package/dist-cms/packages/core/extension-registry/models/workspace-editor-view.model.d.ts +9 -0
  722. package/dist-cms/packages/core/extension-registry/models/workspace-editor-view.model.js +1 -0
  723. package/dist-cms/packages/core/extension-registry/models/workspace-view-collection.model.d.ts +49 -0
  724. package/dist-cms/packages/core/extension-registry/models/workspace-view-collection.model.js +1 -0
  725. package/dist-cms/packages/core/extension-registry/models/workspace.model.d.ts +8 -0
  726. package/dist-cms/packages/core/extension-registry/models/workspace.model.js +1 -0
  727. package/dist-cms/packages/core/extension-registry/registry.d.ts +5 -0
  728. package/dist-cms/packages/core/extension-registry/registry.js +2 -0
  729. package/dist-cms/packages/core/extension-registry/umbraco-package.d.ts +30 -0
  730. package/dist-cms/packages/core/extension-registry/umbraco-package.js +1 -0
  731. package/dist-cms/packages/core/id/index.d.ts +4 -0
  732. package/dist-cms/packages/core/id/index.js +9 -0
  733. package/dist-cms/packages/core/index.d.ts +24 -0
  734. package/dist-cms/packages/core/index.js +53 -0
  735. package/dist-cms/packages/core/macro/index.d.ts +1 -0
  736. package/dist-cms/packages/core/macro/index.js +1 -0
  737. package/dist-cms/packages/core/macro/macro.service.d.ts +26 -0
  738. package/dist-cms/packages/core/macro/macro.service.js +116 -0
  739. package/dist-cms/packages/core/menu/index.d.ts +3 -0
  740. package/dist-cms/packages/core/menu/index.js +3 -0
  741. package/dist-cms/packages/core/menu/menu-item/index.d.ts +1 -0
  742. package/dist-cms/packages/core/menu/menu-item/index.js +1 -0
  743. package/dist-cms/packages/core/menu/menu-item/menu-item.element.d.ts +12 -0
  744. package/dist-cms/packages/core/menu/menu-item/menu-item.element.js +24 -0
  745. package/dist-cms/packages/core/menu/menu-item-base/index.d.ts +1 -0
  746. package/dist-cms/packages/core/menu/menu-item-base/index.js +1 -0
  747. package/dist-cms/packages/core/menu/menu-item-base/menu-item-base.element.d.ts +19 -0
  748. package/dist-cms/packages/core/menu/menu-item-base/menu-item-base.element.js +72 -0
  749. package/dist-cms/packages/core/menu/menu.element.d.ts +14 -0
  750. package/dist-cms/packages/core/menu/menu.element.js +26 -0
  751. package/dist-cms/packages/core/modal/common/code-editor/code-editor-modal.element.d.ts +17 -0
  752. package/dist-cms/packages/core/modal/common/code-editor/code-editor-modal.element.js +91 -0
  753. package/dist-cms/packages/core/modal/common/confirm/confirm-modal.element.d.ts +16 -0
  754. package/dist-cms/packages/core/modal/common/confirm/confirm-modal.element.js +44 -0
  755. package/dist-cms/packages/core/modal/common/embedded-media/embedded-media-modal.element.d.ts +15 -0
  756. package/dist-cms/packages/core/modal/common/embedded-media/embedded-media-modal.element.js +238 -0
  757. package/dist-cms/packages/core/modal/common/folder/folder-modal.element.d.ts +22 -0
  758. package/dist-cms/packages/core/modal/common/folder/folder-modal.element.js +170 -0
  759. package/dist-cms/packages/core/modal/common/icon-picker/icon-picker-modal.element.d.ts +25 -0
  760. package/dist-cms/packages/core/modal/common/icon-picker/icon-picker-modal.element.js +202 -0
  761. package/dist-cms/packages/core/modal/common/link-picker/link-picker-modal.element.d.ts +27 -0
  762. package/dist-cms/packages/core/modal/common/link-picker/link-picker-modal.element.js +203 -0
  763. package/dist-cms/packages/core/modal/common/manifests.d.ts +2 -0
  764. package/dist-cms/packages/core/modal/common/manifests.js +63 -0
  765. package/dist-cms/packages/core/modal/common/property-settings/property-settings-modal.element.d.ts +19 -0
  766. package/dist-cms/packages/core/modal/common/property-settings/property-settings-modal.element.js +432 -0
  767. package/dist-cms/packages/core/modal/common/section-picker/section-picker-modal.element.d.ts +15 -0
  768. package/dist-cms/packages/core/modal/common/section-picker/section-picker-modal.element.js +62 -0
  769. package/dist-cms/packages/core/modal/common/template/template-modal.element.d.ts +21 -0
  770. package/dist-cms/packages/core/modal/common/template/template-modal.element.js +149 -0
  771. package/dist-cms/packages/core/modal/common/tree-picker/tree-picker-modal.element.d.ts +17 -0
  772. package/dist-cms/packages/core/modal/common/tree-picker/tree-picker-modal.element.js +62 -0
  773. package/dist-cms/packages/core/modal/index.d.ts +6 -0
  774. package/dist-cms/packages/core/modal/index.js +6 -0
  775. package/dist-cms/packages/core/modal/modal-context.d.ts +52 -0
  776. package/dist-cms/packages/core/modal/modal-context.js +158 -0
  777. package/dist-cms/packages/core/modal/modal-manager.context.d.ts +37 -0
  778. package/dist-cms/packages/core/modal/modal-manager.context.js +56 -0
  779. package/dist-cms/packages/core/modal/modal-route-registration.controller.d.ts +71 -0
  780. package/dist-cms/packages/core/modal/modal-route-registration.controller.js +146 -0
  781. package/dist-cms/packages/core/modal/modal-route-registration.d.ts +35 -0
  782. package/dist-cms/packages/core/modal/modal-route-registration.js +96 -0
  783. package/dist-cms/packages/core/modal/modal.interfaces.d.ts +12 -0
  784. package/dist-cms/packages/core/modal/modal.interfaces.js +1 -0
  785. package/dist-cms/packages/core/modal/token/allowed-document-types-modal.token.d.ts +9 -0
  786. package/dist-cms/packages/core/modal/token/allowed-document-types-modal.token.js +5 -0
  787. package/dist-cms/packages/core/modal/token/change-password-modal.token.d.ts +5 -0
  788. package/dist-cms/packages/core/modal/token/change-password-modal.token.js +4 -0
  789. package/dist-cms/packages/core/modal/token/code-editor-modal.token.d.ts +12 -0
  790. package/dist-cms/packages/core/modal/token/code-editor-modal.token.js +5 -0
  791. package/dist-cms/packages/core/modal/token/confirm-modal.token.d.ts +10 -0
  792. package/dist-cms/packages/core/modal/token/confirm-modal.token.js +4 -0
  793. package/dist-cms/packages/core/modal/token/create-dictionary-modal.token.d.ts +11 -0
  794. package/dist-cms/packages/core/modal/token/create-dictionary-modal.token.js +5 -0
  795. package/dist-cms/packages/core/modal/token/create-user-modal.token.d.ts +2 -0
  796. package/dist-cms/packages/core/modal/token/create-user-modal.token.js +5 -0
  797. package/dist-cms/packages/core/modal/token/current-user-modal.token.d.ts +2 -0
  798. package/dist-cms/packages/core/modal/token/current-user-modal.token.js +5 -0
  799. package/dist-cms/packages/core/modal/token/data-type-picker-flow-data-type-picker-modal.token.d.ts +9 -0
  800. package/dist-cms/packages/core/modal/token/data-type-picker-flow-data-type-picker-modal.token.js +5 -0
  801. package/dist-cms/packages/core/modal/token/data-type-picker-flow-modal.token.d.ts +9 -0
  802. package/dist-cms/packages/core/modal/token/data-type-picker-flow-modal.token.js +5 -0
  803. package/dist-cms/packages/core/modal/token/data-type-picker-modal.token.d.ts +5 -0
  804. package/dist-cms/packages/core/modal/token/data-type-picker-modal.token.js +7 -0
  805. package/dist-cms/packages/core/modal/token/debug-modal.token.d.ts +6 -0
  806. package/dist-cms/packages/core/modal/token/debug-modal.token.js +5 -0
  807. package/dist-cms/packages/core/modal/token/dictionary-item-picker-modal.token.d.ts +5 -0
  808. package/dist-cms/packages/core/modal/token/dictionary-item-picker-modal.token.js +7 -0
  809. package/dist-cms/packages/core/modal/token/document-picker-modal.token.d.ts +5 -0
  810. package/dist-cms/packages/core/modal/token/document-picker-modal.token.js +7 -0
  811. package/dist-cms/packages/core/modal/token/document-type-picker-modal.token.d.ts +5 -0
  812. package/dist-cms/packages/core/modal/token/document-type-picker-modal.token.js +7 -0
  813. package/dist-cms/packages/core/modal/token/embedded-media-modal.token.d.ts +25 -0
  814. package/dist-cms/packages/core/modal/token/embedded-media-modal.token.js +11 -0
  815. package/dist-cms/packages/core/modal/token/examine-fields-settings-modal.token.d.ts +9 -0
  816. package/dist-cms/packages/core/modal/token/examine-fields-settings-modal.token.js +5 -0
  817. package/dist-cms/packages/core/modal/token/export-dictionary-modal.token.d.ts +8 -0
  818. package/dist-cms/packages/core/modal/token/export-dictionary-modal.token.js +5 -0
  819. package/dist-cms/packages/core/modal/token/folder-modal.token.d.ts +10 -0
  820. package/dist-cms/packages/core/modal/token/folder-modal.token.js +5 -0
  821. package/dist-cms/packages/core/modal/token/icon-picker-modal.token.d.ts +10 -0
  822. package/dist-cms/packages/core/modal/token/icon-picker-modal.token.js +5 -0
  823. package/dist-cms/packages/core/modal/token/import-dictionary-modal.token.d.ts +9 -0
  824. package/dist-cms/packages/core/modal/token/import-dictionary-modal.token.js +5 -0
  825. package/dist-cms/packages/core/modal/token/index.d.ts +35 -0
  826. package/dist-cms/packages/core/modal/token/index.js +35 -0
  827. package/dist-cms/packages/core/modal/token/invite-user-modal.token.d.ts +2 -0
  828. package/dist-cms/packages/core/modal/token/invite-user-modal.token.js +5 -0
  829. package/dist-cms/packages/core/modal/token/language-picker-modal.token.d.ts +11 -0
  830. package/dist-cms/packages/core/modal/token/language-picker-modal.token.js +5 -0
  831. package/dist-cms/packages/core/modal/token/link-picker-modal.token.d.ts +27 -0
  832. package/dist-cms/packages/core/modal/token/link-picker-modal.token.js +5 -0
  833. package/dist-cms/packages/core/modal/token/media-tree-picker-modal.token.d.ts +5 -0
  834. package/dist-cms/packages/core/modal/token/media-tree-picker-modal.token.js +7 -0
  835. package/dist-cms/packages/core/modal/token/modal-token.d.ts +41 -0
  836. package/dist-cms/packages/core/modal/token/modal-token.js +47 -0
  837. package/dist-cms/packages/core/modal/token/partial-view-picker-modal.token.d.ts +10 -0
  838. package/dist-cms/packages/core/modal/token/partial-view-picker-modal.token.js +6 -0
  839. package/dist-cms/packages/core/modal/token/property-editor-ui-picker-modal.token.d.ts +9 -0
  840. package/dist-cms/packages/core/modal/token/property-editor-ui-picker-modal.token.js +5 -0
  841. package/dist-cms/packages/core/modal/token/property-settings-modal.token.d.ts +5 -0
  842. package/dist-cms/packages/core/modal/token/property-settings-modal.token.js +5 -0
  843. package/dist-cms/packages/core/modal/token/search-modal.token.d.ts +2 -0
  844. package/dist-cms/packages/core/modal/token/search-modal.token.js +2 -0
  845. package/dist-cms/packages/core/modal/token/section-picker-modal.token.d.ts +9 -0
  846. package/dist-cms/packages/core/modal/token/section-picker-modal.token.js +5 -0
  847. package/dist-cms/packages/core/modal/token/template-modal.token.d.ts +9 -0
  848. package/dist-cms/packages/core/modal/token/template-modal.token.js +5 -0
  849. package/dist-cms/packages/core/modal/token/template-picker-modal.token.d.ts +5 -0
  850. package/dist-cms/packages/core/modal/token/template-picker-modal.token.js +7 -0
  851. package/dist-cms/packages/core/modal/token/user-group-picker-modal.token.d.ts +2 -0
  852. package/dist-cms/packages/core/modal/token/user-group-picker-modal.token.js +5 -0
  853. package/dist-cms/packages/core/modal/token/user-picker-modal.token.d.ts +7 -0
  854. package/dist-cms/packages/core/modal/token/user-picker-modal.token.js +5 -0
  855. package/dist-cms/packages/core/modal/token/workspace-modal.token.d.ts +10 -0
  856. package/dist-cms/packages/core/modal/token/workspace-modal.token.js +5 -0
  857. package/dist-cms/packages/core/notification/index.d.ts +3 -0
  858. package/dist-cms/packages/core/notification/index.js +3 -0
  859. package/dist-cms/packages/core/notification/layouts/default/index.d.ts +1 -0
  860. package/dist-cms/packages/core/notification/layouts/default/index.js +1 -0
  861. package/dist-cms/packages/core/notification/layouts/default/notification-layout-default.element.d.ts +14 -0
  862. package/dist-cms/packages/core/notification/layouts/default/notification-layout-default.element.js +27 -0
  863. package/dist-cms/packages/core/notification/notification-handler.d.ts +39 -0
  864. package/dist-cms/packages/core/notification/notification-handler.js +57 -0
  865. package/{notification.d.ts → dist-cms/packages/core/notification/notification.context.d.ts} +8 -50
  866. package/dist-cms/packages/core/notification/notification.context.js +60 -0
  867. package/dist-cms/packages/core/notification/stories/story-notification-default-example.element.d.ts +12 -0
  868. package/dist-cms/packages/core/notification/stories/story-notification-default-example.element.js +54 -0
  869. package/dist-cms/packages/core/picker-input/index.d.ts +1 -0
  870. package/dist-cms/packages/core/picker-input/index.js +1 -0
  871. package/dist-cms/packages/core/picker-input/picker-input.context.d.ts +21 -0
  872. package/dist-cms/packages/core/picker-input/picker-input.context.js +71 -0
  873. package/dist-cms/packages/core/property-action/common/clear/property-action-clear.element.d.ts +16 -0
  874. package/dist-cms/packages/core/property-action/common/clear/property-action-clear.element.js +48 -0
  875. package/dist-cms/packages/core/property-action/common/copy/property-action-copy.element.d.ts +15 -0
  876. package/dist-cms/packages/core/property-action/common/copy/property-action-copy.element.js +41 -0
  877. package/dist-cms/packages/core/property-action/index.d.ts +1 -0
  878. package/dist-cms/packages/core/property-action/index.js +1 -0
  879. package/dist-cms/packages/core/property-action/manifests.d.ts +2 -0
  880. package/dist-cms/packages/core/property-action/manifests.js +20 -0
  881. package/dist-cms/packages/core/property-action/shared/index.d.ts +2 -0
  882. package/dist-cms/packages/core/property-action/shared/index.js +2 -0
  883. package/dist-cms/packages/core/property-action/shared/property-action/property-action.element.d.ts +13 -0
  884. package/dist-cms/packages/core/property-action/shared/property-action/property-action.element.js +49 -0
  885. package/dist-cms/packages/core/property-action/shared/property-action/property-action.model.d.ts +3 -0
  886. package/dist-cms/packages/core/property-action/shared/property-action/property-action.model.js +1 -0
  887. package/dist-cms/packages/core/property-action/shared/property-action-menu/property-action-menu.context.d.ts +9 -0
  888. package/dist-cms/packages/core/property-action/shared/property-action-menu/property-action-menu.context.js +20 -0
  889. package/dist-cms/packages/core/property-action/shared/property-action-menu/property-action-menu.element.d.ts +17 -0
  890. package/dist-cms/packages/core/property-action/shared/property-action-menu/property-action-menu.element.js +115 -0
  891. package/dist-cms/packages/core/property-editor/events/index.d.ts +1 -0
  892. package/dist-cms/packages/core/property-editor/events/index.js +1 -0
  893. package/dist-cms/packages/core/property-editor/events/property-value-change.event.d.ts +3 -0
  894. package/dist-cms/packages/core/property-editor/events/property-value-change.event.js +6 -0
  895. package/dist-cms/packages/core/property-editor/index.d.ts +3 -0
  896. package/dist-cms/packages/core/property-editor/index.js +3 -0
  897. package/dist-cms/packages/core/property-editor/manifests.d.ts +1 -0
  898. package/dist-cms/packages/core/property-editor/manifests.js +3 -0
  899. package/dist-cms/packages/core/property-editor/schemas/Umbraco.BlockGrid.d.ts +2 -0
  900. package/dist-cms/packages/core/property-editor/schemas/Umbraco.BlockGrid.js +46 -0
  901. package/dist-cms/packages/core/property-editor/schemas/Umbraco.BlockList.d.ts +2 -0
  902. package/dist-cms/packages/core/property-editor/schemas/Umbraco.BlockList.js +24 -0
  903. package/dist-cms/packages/core/property-editor/schemas/Umbraco.CheckboxList.d.ts +2 -0
  904. package/dist-cms/packages/core/property-editor/schemas/Umbraco.CheckboxList.js +8 -0
  905. package/dist-cms/packages/core/property-editor/schemas/Umbraco.ColorPicker.EyeDropper.d.ts +2 -0
  906. package/dist-cms/packages/core/property-editor/schemas/Umbraco.ColorPicker.EyeDropper.js +8 -0
  907. package/dist-cms/packages/core/property-editor/schemas/Umbraco.ColorPicker.d.ts +2 -0
  908. package/dist-cms/packages/core/property-editor/schemas/Umbraco.ColorPicker.js +24 -0
  909. package/dist-cms/packages/core/property-editor/schemas/Umbraco.DateTime.d.ts +2 -0
  910. package/dist-cms/packages/core/property-editor/schemas/Umbraco.DateTime.js +33 -0
  911. package/dist-cms/packages/core/property-editor/schemas/Umbraco.Decimal.d.ts +2 -0
  912. package/dist-cms/packages/core/property-editor/schemas/Umbraco.Decimal.js +30 -0
  913. package/dist-cms/packages/core/property-editor/schemas/Umbraco.Dropdown.Flexible.d.ts +2 -0
  914. package/dist-cms/packages/core/property-editor/schemas/Umbraco.Dropdown.Flexible.js +9 -0
  915. package/dist-cms/packages/core/property-editor/schemas/Umbraco.EmailAddress.d.ts +2 -0
  916. package/dist-cms/packages/core/property-editor/schemas/Umbraco.EmailAddress.js +8 -0
  917. package/dist-cms/packages/core/property-editor/schemas/Umbraco.IconPicker.d.ts +2 -0
  918. package/dist-cms/packages/core/property-editor/schemas/Umbraco.IconPicker.js +8 -0
  919. package/dist-cms/packages/core/property-editor/schemas/Umbraco.ImageCropper.d.ts +2 -0
  920. package/dist-cms/packages/core/property-editor/schemas/Umbraco.ImageCropper.js +17 -0
  921. package/dist-cms/packages/core/property-editor/schemas/Umbraco.Integer.d.ts +2 -0
  922. package/dist-cms/packages/core/property-editor/schemas/Umbraco.Integer.js +30 -0
  923. package/dist-cms/packages/core/property-editor/schemas/Umbraco.JSON.d.ts +2 -0
  924. package/dist-cms/packages/core/property-editor/schemas/Umbraco.JSON.js +8 -0
  925. package/dist-cms/packages/core/property-editor/schemas/Umbraco.Label.d.ts +2 -0
  926. package/dist-cms/packages/core/property-editor/schemas/Umbraco.Label.js +18 -0
  927. package/dist-cms/packages/core/property-editor/schemas/Umbraco.ListView.d.ts +2 -0
  928. package/dist-cms/packages/core/property-editor/schemas/Umbraco.ListView.js +41 -0
  929. package/dist-cms/packages/core/property-editor/schemas/Umbraco.MarkdownEditor.d.ts +2 -0
  930. package/dist-cms/packages/core/property-editor/schemas/Umbraco.MarkdownEditor.js +8 -0
  931. package/dist-cms/packages/core/property-editor/schemas/Umbraco.MediaPicker3.d.ts +2 -0
  932. package/dist-cms/packages/core/property-editor/schemas/Umbraco.MediaPicker3.js +52 -0
  933. package/dist-cms/packages/core/property-editor/schemas/Umbraco.MemberGroupPicker.d.ts +2 -0
  934. package/dist-cms/packages/core/property-editor/schemas/Umbraco.MemberGroupPicker.js +8 -0
  935. package/dist-cms/packages/core/property-editor/schemas/Umbraco.MemberPicker.d.ts +2 -0
  936. package/dist-cms/packages/core/property-editor/schemas/Umbraco.MemberPicker.js +8 -0
  937. package/dist-cms/packages/core/property-editor/schemas/Umbraco.MultiNodeTreePicker.d.ts +2 -0
  938. package/dist-cms/packages/core/property-editor/schemas/Umbraco.MultiNodeTreePicker.js +40 -0
  939. package/dist-cms/packages/core/property-editor/schemas/Umbraco.MultiUrlPicker.d.ts +2 -0
  940. package/dist-cms/packages/core/property-editor/schemas/Umbraco.MultiUrlPicker.js +40 -0
  941. package/dist-cms/packages/core/property-editor/schemas/Umbraco.MultipleTextString.d.ts +2 -0
  942. package/dist-cms/packages/core/property-editor/schemas/Umbraco.MultipleTextString.js +34 -0
  943. package/dist-cms/packages/core/property-editor/schemas/Umbraco.RadioButtonList.d.ts +2 -0
  944. package/dist-cms/packages/core/property-editor/schemas/Umbraco.RadioButtonList.js +8 -0
  945. package/dist-cms/packages/core/property-editor/schemas/Umbraco.RichText.d.ts +2 -0
  946. package/dist-cms/packages/core/property-editor/schemas/Umbraco.RichText.js +23 -0
  947. package/dist-cms/packages/core/property-editor/schemas/Umbraco.Slider.d.ts +2 -0
  948. package/dist-cms/packages/core/property-editor/schemas/Umbraco.Slider.js +34 -0
  949. package/dist-cms/packages/core/property-editor/schemas/Umbraco.Tags.d.ts +2 -0
  950. package/dist-cms/packages/core/property-editor/schemas/Umbraco.Tags.js +34 -0
  951. package/dist-cms/packages/core/property-editor/schemas/Umbraco.TextArea.d.ts +2 -0
  952. package/dist-cms/packages/core/property-editor/schemas/Umbraco.TextArea.js +18 -0
  953. package/dist-cms/packages/core/property-editor/schemas/Umbraco.TextBox.d.ts +2 -0
  954. package/dist-cms/packages/core/property-editor/schemas/Umbraco.TextBox.js +24 -0
  955. package/dist-cms/packages/core/property-editor/schemas/Umbraco.TrueFalse.d.ts +2 -0
  956. package/dist-cms/packages/core/property-editor/schemas/Umbraco.TrueFalse.js +9 -0
  957. package/dist-cms/packages/core/property-editor/schemas/Umbraco.UploadField.d.ts +2 -0
  958. package/dist-cms/packages/core/property-editor/schemas/Umbraco.UploadField.js +18 -0
  959. package/dist-cms/packages/core/property-editor/schemas/Umbraco.UserPicker.d.ts +2 -0
  960. package/dist-cms/packages/core/property-editor/schemas/Umbraco.UserPicker.js +8 -0
  961. package/dist-cms/packages/core/property-editor/schemas/manifests.d.ts +2 -0
  962. package/dist-cms/packages/core/property-editor/schemas/manifests.js +64 -0
  963. package/dist-cms/packages/core/property-editor/types/data-type-config.type.d.ts +3 -0
  964. package/dist-cms/packages/core/property-editor/types/data-type-config.type.js +1 -0
  965. package/dist-cms/packages/core/property-editor/types/index.d.ts +1 -0
  966. package/dist-cms/packages/core/property-editor/types/index.js +1 -0
  967. package/dist-cms/packages/core/property-editor/uis/block-grid/config/block-configuration/manifests.d.ts +2 -0
  968. package/dist-cms/packages/core/property-editor/uis/block-grid/config/block-configuration/manifests.js +12 -0
  969. package/dist-cms/packages/core/property-editor/uis/block-grid/config/block-configuration/property-editor-ui-block-grid-block-configuration.element.d.ts +16 -0
  970. package/dist-cms/packages/core/property-editor/uis/block-grid/config/block-configuration/property-editor-ui-block-grid-block-configuration.element.js +33 -0
  971. package/dist-cms/packages/core/property-editor/uis/block-grid/config/group-configuration/manifests.d.ts +2 -0
  972. package/dist-cms/packages/core/property-editor/uis/block-grid/config/group-configuration/manifests.js +12 -0
  973. package/dist-cms/packages/core/property-editor/uis/block-grid/config/group-configuration/property-editor-ui-block-grid-group-configuration.element.d.ts +16 -0
  974. package/dist-cms/packages/core/property-editor/uis/block-grid/config/group-configuration/property-editor-ui-block-grid-group-configuration.element.js +33 -0
  975. package/dist-cms/packages/core/property-editor/uis/block-grid/config/stylesheet-picker/manifests.d.ts +2 -0
  976. package/dist-cms/packages/core/property-editor/uis/block-grid/config/stylesheet-picker/manifests.js +12 -0
  977. package/dist-cms/packages/core/property-editor/uis/block-grid/config/stylesheet-picker/property-editor-ui-block-grid-stylesheet-picker.element.d.ts +16 -0
  978. package/dist-cms/packages/core/property-editor/uis/block-grid/config/stylesheet-picker/property-editor-ui-block-grid-stylesheet-picker.element.js +33 -0
  979. package/dist-cms/packages/core/property-editor/uis/block-grid/manifests.d.ts +2 -0
  980. package/dist-cms/packages/core/property-editor/uis/block-grid/manifests.js +39 -0
  981. package/dist-cms/packages/core/property-editor/uis/block-grid/property-editor-ui-block-grid-inner-test.element.d.ts +18 -0
  982. package/dist-cms/packages/core/property-editor/uis/block-grid/property-editor-ui-block-grid-inner-test.element.js +85 -0
  983. package/dist-cms/packages/core/property-editor/uis/block-grid/property-editor-ui-block-grid.element.d.ts +25 -0
  984. package/dist-cms/packages/core/property-editor/uis/block-grid/property-editor-ui-block-grid.element.js +108 -0
  985. package/dist-cms/packages/core/property-editor/uis/block-list/config/block-configuration/manifests.d.ts +2 -0
  986. package/dist-cms/packages/core/property-editor/uis/block-list/config/block-configuration/manifests.js +12 -0
  987. package/dist-cms/packages/core/property-editor/uis/block-list/config/block-configuration/property-editor-ui-block-list-block-configuration.element.d.ts +16 -0
  988. package/dist-cms/packages/core/property-editor/uis/block-list/config/block-configuration/property-editor-ui-block-list-block-configuration.element.js +33 -0
  989. package/dist-cms/packages/core/property-editor/uis/block-list/manifests.d.ts +2 -0
  990. package/dist-cms/packages/core/property-editor/uis/block-list/manifests.js +43 -0
  991. package/dist-cms/packages/core/property-editor/uis/block-list/property-editor-ui-block-list.element.d.ts +18 -0
  992. package/dist-cms/packages/core/property-editor/uis/block-list/property-editor-ui-block-list.element.js +32 -0
  993. package/dist-cms/packages/core/property-editor/uis/checkbox-list/manifests.d.ts +2 -0
  994. package/dist-cms/packages/core/property-editor/uis/checkbox-list/manifests.js +22 -0
  995. package/dist-cms/packages/core/property-editor/uis/checkbox-list/property-editor-ui-checkbox-list.element.d.ts +21 -0
  996. package/dist-cms/packages/core/property-editor/uis/checkbox-list/property-editor-ui-checkbox-list.element.js +69 -0
  997. package/dist-cms/packages/core/property-editor/uis/collection-view/config/bulk-action-permissions/manifests.d.ts +2 -0
  998. package/dist-cms/packages/core/property-editor/uis/collection-view/config/bulk-action-permissions/manifests.js +12 -0
  999. package/dist-cms/packages/core/property-editor/uis/collection-view/config/bulk-action-permissions/property-editor-ui-collection-view-bulk-action-permissions.element.d.ts +16 -0
  1000. package/dist-cms/packages/core/property-editor/uis/collection-view/config/bulk-action-permissions/property-editor-ui-collection-view-bulk-action-permissions.element.js +33 -0
  1001. package/dist-cms/packages/core/property-editor/uis/collection-view/config/column-configuration/manifests.d.ts +2 -0
  1002. package/dist-cms/packages/core/property-editor/uis/collection-view/config/column-configuration/manifests.js +12 -0
  1003. package/dist-cms/packages/core/property-editor/uis/collection-view/config/column-configuration/property-editor-ui-collection-view-column-configuration.element.d.ts +16 -0
  1004. package/dist-cms/packages/core/property-editor/uis/collection-view/config/column-configuration/property-editor-ui-collection-view-column-configuration.element.js +33 -0
  1005. package/dist-cms/packages/core/property-editor/uis/collection-view/config/layout-configuration/manifests.d.ts +2 -0
  1006. package/dist-cms/packages/core/property-editor/uis/collection-view/config/layout-configuration/manifests.js +12 -0
  1007. package/dist-cms/packages/core/property-editor/uis/collection-view/config/layout-configuration/property-editor-ui-collection-view-layout-configuration.element.d.ts +16 -0
  1008. package/dist-cms/packages/core/property-editor/uis/collection-view/config/layout-configuration/property-editor-ui-collection-view-layout-configuration.element.js +33 -0
  1009. package/dist-cms/packages/core/property-editor/uis/collection-view/config/order-by/manifests.d.ts +2 -0
  1010. package/dist-cms/packages/core/property-editor/uis/collection-view/config/order-by/manifests.js +12 -0
  1011. package/dist-cms/packages/core/property-editor/uis/collection-view/config/order-by/property-editor-ui-collection-view-order-by.element.d.ts +16 -0
  1012. package/dist-cms/packages/core/property-editor/uis/collection-view/config/order-by/property-editor-ui-collection-view-order-by.element.js +33 -0
  1013. package/dist-cms/packages/core/property-editor/uis/collection-view/manifests.d.ts +2 -0
  1014. package/dist-cms/packages/core/property-editor/uis/collection-view/manifests.js +57 -0
  1015. package/dist-cms/packages/core/property-editor/uis/collection-view/property-editor-ui-collection-view.element.d.ts +16 -0
  1016. package/dist-cms/packages/core/property-editor/uis/collection-view/property-editor-ui-collection-view.element.js +33 -0
  1017. package/dist-cms/packages/core/property-editor/uis/color-picker/manifests.d.ts +2 -0
  1018. package/dist-cms/packages/core/property-editor/uis/color-picker/manifests.js +12 -0
  1019. package/dist-cms/packages/core/property-editor/uis/color-picker/property-editor-ui-color-picker.element.d.ts +22 -0
  1020. package/dist-cms/packages/core/property-editor/uis/color-picker/property-editor-ui-color-picker.element.js +53 -0
  1021. package/dist-cms/packages/core/property-editor/uis/date-picker/manifests.d.ts +2 -0
  1022. package/dist-cms/packages/core/property-editor/uis/date-picker/manifests.js +28 -0
  1023. package/dist-cms/packages/core/property-editor/uis/date-picker/property-editor-ui-date-picker.element.d.ts +28 -0
  1024. package/dist-cms/packages/core/property-editor/uis/date-picker/property-editor-ui-date-picker.element.js +97 -0
  1025. package/dist-cms/packages/core/property-editor/uis/dropdown/manifests.d.ts +2 -0
  1026. package/dist-cms/packages/core/property-editor/uis/dropdown/manifests.js +26 -0
  1027. package/dist-cms/packages/core/property-editor/uis/dropdown/property-editor-ui-dropdown.element.d.ts +18 -0
  1028. package/dist-cms/packages/core/property-editor/uis/dropdown/property-editor-ui-dropdown.element.js +32 -0
  1029. package/dist-cms/packages/core/property-editor/uis/eye-dropper/manifests.d.ts +2 -0
  1030. package/dist-cms/packages/core/property-editor/uis/eye-dropper/manifests.js +28 -0
  1031. package/dist-cms/packages/core/property-editor/uis/eye-dropper/property-editor-ui-eye-dropper.element.d.ts +22 -0
  1032. package/dist-cms/packages/core/property-editor/uis/eye-dropper/property-editor-ui-eye-dropper.element.js +56 -0
  1033. package/dist-cms/packages/core/property-editor/uis/icon-picker/manifests.d.ts +2 -0
  1034. package/dist-cms/packages/core/property-editor/uis/icon-picker/manifests.js +12 -0
  1035. package/dist-cms/packages/core/property-editor/uis/icon-picker/property-editor-ui-icon-picker.element.d.ts +21 -0
  1036. package/dist-cms/packages/core/property-editor/uis/icon-picker/property-editor-ui-icon-picker.element.js +49 -0
  1037. package/dist-cms/packages/core/property-editor/uis/image-cropper/manifests.d.ts +2 -0
  1038. package/dist-cms/packages/core/property-editor/uis/image-cropper/manifests.js +12 -0
  1039. package/dist-cms/packages/core/property-editor/uis/image-cropper/property-editor-ui-image-cropper.element.d.ts +18 -0
  1040. package/dist-cms/packages/core/property-editor/uis/image-cropper/property-editor-ui-image-cropper.element.js +32 -0
  1041. package/dist-cms/packages/core/property-editor/uis/image-crops-configuration/manifests.d.ts +2 -0
  1042. package/dist-cms/packages/core/property-editor/uis/image-crops-configuration/manifests.js +12 -0
  1043. package/dist-cms/packages/core/property-editor/uis/image-crops-configuration/property-editor-ui-image-crops-configuration.element.d.ts +18 -0
  1044. package/dist-cms/packages/core/property-editor/uis/image-crops-configuration/property-editor-ui-image-crops-configuration.element.js +32 -0
  1045. package/dist-cms/packages/core/property-editor/uis/label/manifests.d.ts +2 -0
  1046. package/dist-cms/packages/core/property-editor/uis/label/manifests.js +12 -0
  1047. package/dist-cms/packages/core/property-editor/uis/label/property-editor-ui-label.element.d.ts +19 -0
  1048. package/dist-cms/packages/core/property-editor/uis/label/property-editor-ui-label.element.js +36 -0
  1049. package/dist-cms/packages/core/property-editor/uis/manifests.d.ts +2 -0
  1050. package/dist-cms/packages/core/property-editor/uis/manifests.js +78 -0
  1051. package/dist-cms/packages/core/property-editor/uis/markdown-editor/manifests.d.ts +2 -0
  1052. package/dist-cms/packages/core/property-editor/uis/markdown-editor/manifests.js +34 -0
  1053. package/dist-cms/packages/core/property-editor/uis/markdown-editor/property-editor-ui-markdown-editor.element.d.ts +18 -0
  1054. package/dist-cms/packages/core/property-editor/uis/markdown-editor/property-editor-ui-markdown-editor.element.js +32 -0
  1055. package/dist-cms/packages/core/property-editor/uis/media-picker/manifests.d.ts +2 -0
  1056. package/dist-cms/packages/core/property-editor/uis/media-picker/manifests.js +12 -0
  1057. package/dist-cms/packages/core/property-editor/uis/media-picker/property-editor-ui-media-picker.element.d.ts +22 -0
  1058. package/dist-cms/packages/core/property-editor/uis/media-picker/property-editor-ui-media-picker.element.js +62 -0
  1059. package/dist-cms/packages/core/property-editor/uis/member-group-picker/manifests.d.ts +2 -0
  1060. package/dist-cms/packages/core/property-editor/uis/member-group-picker/manifests.js +12 -0
  1061. package/dist-cms/packages/core/property-editor/uis/member-group-picker/property-editor-ui-member-group-picker.element.d.ts +18 -0
  1062. package/dist-cms/packages/core/property-editor/uis/member-group-picker/property-editor-ui-member-group-picker.element.js +32 -0
  1063. package/dist-cms/packages/core/property-editor/uis/member-picker/manifests.d.ts +2 -0
  1064. package/dist-cms/packages/core/property-editor/uis/member-picker/manifests.js +12 -0
  1065. package/dist-cms/packages/core/property-editor/uis/member-picker/property-editor-ui-member-picker.element.d.ts +18 -0
  1066. package/dist-cms/packages/core/property-editor/uis/member-picker/property-editor-ui-member-picker.element.js +32 -0
  1067. package/dist-cms/packages/core/property-editor/uis/multi-url-picker/manifests.d.ts +2 -0
  1068. package/dist-cms/packages/core/property-editor/uis/multi-url-picker/manifests.js +28 -0
  1069. package/dist-cms/packages/core/property-editor/uis/multi-url-picker/property-editor-ui-multi-url-picker.element.d.ts +28 -0
  1070. package/dist-cms/packages/core/property-editor/uis/multi-url-picker/property-editor-ui-multi-url-picker.element.js +82 -0
  1071. package/dist-cms/packages/core/property-editor/uis/multiple-text-string/input-multiple-text-string/input-multiple-text-string.element.d.ts +67 -0
  1072. package/dist-cms/packages/core/property-editor/uis/multiple-text-string/input-multiple-text-string/input-multiple-text-string.element.js +171 -0
  1073. package/dist-cms/packages/core/property-editor/uis/multiple-text-string/input-multiple-text-string-item/input-multiple-text-string-item.element.d.ts +36 -0
  1074. package/dist-cms/packages/core/property-editor/uis/multiple-text-string/input-multiple-text-string-item/input-multiple-text-string-item.element.js +135 -0
  1075. package/dist-cms/packages/core/property-editor/uis/multiple-text-string/manifests.d.ts +2 -0
  1076. package/dist-cms/packages/core/property-editor/uis/multiple-text-string/manifests.js +13 -0
  1077. package/dist-cms/packages/core/property-editor/uis/multiple-text-string/property-editor-ui-multiple-text-string.element.d.ts +42 -0
  1078. package/dist-cms/packages/core/property-editor/uis/multiple-text-string/property-editor-ui-multiple-text-string.element.js +84 -0
  1079. package/dist-cms/packages/core/property-editor/uis/number/manifests.d.ts +2 -0
  1080. package/dist-cms/packages/core/property-editor/uis/number/manifests.js +50 -0
  1081. package/dist-cms/packages/core/property-editor/uis/number/property-editor-ui-number.element.d.ts +19 -0
  1082. package/dist-cms/packages/core/property-editor/uis/number/property-editor-ui-number.element.js +60 -0
  1083. package/dist-cms/packages/core/property-editor/uis/number-range/manifests.d.ts +2 -0
  1084. package/dist-cms/packages/core/property-editor/uis/number-range/manifests.js +12 -0
  1085. package/dist-cms/packages/core/property-editor/uis/number-range/property-editor-ui-number-range.element.d.ts +28 -0
  1086. package/dist-cms/packages/core/property-editor/uis/number-range/property-editor-ui-number-range.element.js +57 -0
  1087. package/dist-cms/packages/core/property-editor/uis/order-direction/manifests.d.ts +2 -0
  1088. package/dist-cms/packages/core/property-editor/uis/order-direction/manifests.js +12 -0
  1089. package/dist-cms/packages/core/property-editor/uis/order-direction/property-editor-ui-order-direction.element.d.ts +18 -0
  1090. package/dist-cms/packages/core/property-editor/uis/order-direction/property-editor-ui-order-direction.element.js +32 -0
  1091. package/dist-cms/packages/core/property-editor/uis/overlay-size/manifests.d.ts +2 -0
  1092. package/dist-cms/packages/core/property-editor/uis/overlay-size/manifests.js +12 -0
  1093. package/dist-cms/packages/core/property-editor/uis/overlay-size/property-editor-ui-overlay-size.element.d.ts +18 -0
  1094. package/dist-cms/packages/core/property-editor/uis/overlay-size/property-editor-ui-overlay-size.element.js +32 -0
  1095. package/dist-cms/packages/core/property-editor/uis/radio-button-list/manifests.d.ts +2 -0
  1096. package/dist-cms/packages/core/property-editor/uis/radio-button-list/manifests.js +22 -0
  1097. package/dist-cms/packages/core/property-editor/uis/radio-button-list/property-editor-ui-radio-button-list.element.d.ts +22 -0
  1098. package/dist-cms/packages/core/property-editor/uis/radio-button-list/property-editor-ui-radio-button-list.element.js +70 -0
  1099. package/dist-cms/packages/core/property-editor/uis/slider/manifests.d.ts +2 -0
  1100. package/dist-cms/packages/core/property-editor/uis/slider/manifests.js +54 -0
  1101. package/dist-cms/packages/core/property-editor/uis/slider/property-editor-ui-slider.element.d.ts +29 -0
  1102. package/dist-cms/packages/core/property-editor/uis/slider/property-editor-ui-slider.element.js +78 -0
  1103. package/dist-cms/packages/core/property-editor/uis/text-box/manifests.d.ts +2 -0
  1104. package/dist-cms/packages/core/property-editor/uis/text-box/manifests.js +51 -0
  1105. package/dist-cms/packages/core/property-editor/uis/text-box/property-editor-ui-text-box.element.d.ts +19 -0
  1106. package/dist-cms/packages/core/property-editor/uis/text-box/property-editor-ui-text-box.element.js +56 -0
  1107. package/dist-cms/packages/core/property-editor/uis/textarea/manifests.d.ts +2 -0
  1108. package/dist-cms/packages/core/property-editor/uis/textarea/manifests.js +40 -0
  1109. package/dist-cms/packages/core/property-editor/uis/textarea/property-editor-ui-textarea.element.d.ts +21 -0
  1110. package/dist-cms/packages/core/property-editor/uis/textarea/property-editor-ui-textarea.element.js +72 -0
  1111. package/dist-cms/packages/core/property-editor/uis/tiny-mce/config/dimensions/property-editor-ui-tiny-mce-dimensions-configuration.element.d.ts +18 -0
  1112. package/dist-cms/packages/core/property-editor/uis/tiny-mce/config/dimensions/property-editor-ui-tiny-mce-dimensions-configuration.element.js +30 -0
  1113. package/dist-cms/packages/core/property-editor/uis/tiny-mce/config/manifests.d.ts +2 -0
  1114. package/dist-cms/packages/core/property-editor/uis/tiny-mce/config/manifests.js +51 -0
  1115. package/dist-cms/packages/core/property-editor/uis/tiny-mce/config/max-image-size/property-editor-ui-tiny-mce-maximagesize-configuration.element.d.ts +15 -0
  1116. package/dist-cms/packages/core/property-editor/uis/tiny-mce/config/max-image-size/property-editor-ui-tiny-mce-maximagesize-configuration.element.js +25 -0
  1117. package/dist-cms/packages/core/property-editor/uis/tiny-mce/config/stylesheets/property-editor-ui-tiny-mce-stylesheets-configuration.element.d.ts +16 -0
  1118. package/dist-cms/packages/core/property-editor/uis/tiny-mce/config/stylesheets/property-editor-ui-tiny-mce-stylesheets-configuration.element.js +44 -0
  1119. package/dist-cms/packages/core/property-editor/uis/tiny-mce/config/toolbar/property-editor-ui-tiny-mce-toolbar-configuration.element.d.ts +25 -0
  1120. package/dist-cms/packages/core/property-editor/uis/tiny-mce/config/toolbar/property-editor-ui-tiny-mce-toolbar-configuration.element.js +122 -0
  1121. package/dist-cms/packages/core/property-editor/uis/tiny-mce/manifests.d.ts +2 -0
  1122. package/dist-cms/packages/core/property-editor/uis/tiny-mce/manifests.js +237 -0
  1123. package/dist-cms/packages/core/property-editor/uis/tiny-mce/plugins/manifests.d.ts +2 -0
  1124. package/dist-cms/packages/core/property-editor/uis/tiny-mce/plugins/manifests.js +83 -0
  1125. package/dist-cms/packages/core/property-editor/uis/tiny-mce/plugins/tiny-mce-code-editor.plugin.d.ts +5 -0
  1126. package/dist-cms/packages/core/property-editor/uis/tiny-mce/plugins/tiny-mce-code-editor.plugin.js +33 -0
  1127. package/dist-cms/packages/core/property-editor/uis/tiny-mce/plugins/tiny-mce-embeddedmedia.plugin.d.ts +5 -0
  1128. package/dist-cms/packages/core/property-editor/uis/tiny-mce/plugins/tiny-mce-embeddedmedia.plugin.js +68 -0
  1129. package/dist-cms/packages/core/property-editor/uis/tiny-mce/plugins/tiny-mce-linkpicker.plugin.d.ts +6 -0
  1130. package/dist-cms/packages/core/property-editor/uis/tiny-mce/plugins/tiny-mce-linkpicker.plugin.js +167 -0
  1131. package/dist-cms/packages/core/property-editor/uis/tiny-mce/plugins/tiny-mce-macropicker.plugin.d.ts +5 -0
  1132. package/dist-cms/packages/core/property-editor/uis/tiny-mce/plugins/tiny-mce-macropicker.plugin.js +165 -0
  1133. package/dist-cms/packages/core/property-editor/uis/tiny-mce/plugins/tiny-mce-mediapicker.plugin.d.ts +5 -0
  1134. package/dist-cms/packages/core/property-editor/uis/tiny-mce/plugins/tiny-mce-mediapicker.plugin.js +140 -0
  1135. package/dist-cms/packages/core/property-editor/uis/tiny-mce/property-editor-ui-tiny-mce.element.d.ts +19 -0
  1136. package/dist-cms/packages/core/property-editor/uis/tiny-mce/property-editor-ui-tiny-mce.element.js +43 -0
  1137. package/dist-cms/packages/core/property-editor/uis/toggle/manifests.d.ts +2 -0
  1138. package/dist-cms/packages/core/property-editor/uis/toggle/manifests.js +40 -0
  1139. package/dist-cms/packages/core/property-editor/uis/toggle/property-editor-ui-toggle.element.d.ts +22 -0
  1140. package/dist-cms/packages/core/property-editor/uis/toggle/property-editor-ui-toggle.element.js +56 -0
  1141. package/dist-cms/packages/core/property-editor/uis/tree-picker/config/start-node/manifests.d.ts +2 -0
  1142. package/dist-cms/packages/core/property-editor/uis/tree-picker/config/start-node/manifests.js +12 -0
  1143. package/dist-cms/packages/core/property-editor/uis/tree-picker/config/start-node/property-editor-ui-tree-picker-start-node.element.d.ts +16 -0
  1144. package/dist-cms/packages/core/property-editor/uis/tree-picker/config/start-node/property-editor-ui-tree-picker-start-node.element.js +33 -0
  1145. package/dist-cms/packages/core/property-editor/uis/tree-picker/manifests.d.ts +2 -0
  1146. package/dist-cms/packages/core/property-editor/uis/tree-picker/manifests.js +37 -0
  1147. package/dist-cms/packages/core/property-editor/uis/tree-picker/property-editor-ui-tree-picker.element.d.ts +18 -0
  1148. package/dist-cms/packages/core/property-editor/uis/tree-picker/property-editor-ui-tree-picker.element.js +32 -0
  1149. package/dist-cms/packages/core/property-editor/uis/upload-field/manifests.d.ts +2 -0
  1150. package/dist-cms/packages/core/property-editor/uis/upload-field/manifests.js +12 -0
  1151. package/dist-cms/packages/core/property-editor/uis/upload-field/property-editor-ui-upload-field.element.d.ts +21 -0
  1152. package/dist-cms/packages/core/property-editor/uis/upload-field/property-editor-ui-upload-field.element.js +49 -0
  1153. package/dist-cms/packages/core/property-editor/uis/user-picker/manifests.d.ts +2 -0
  1154. package/dist-cms/packages/core/property-editor/uis/user-picker/manifests.js +12 -0
  1155. package/dist-cms/packages/core/property-editor/uis/user-picker/property-editor-ui-user-picker.element.d.ts +18 -0
  1156. package/dist-cms/packages/core/property-editor/uis/user-picker/property-editor-ui-user-picker.element.js +33 -0
  1157. package/dist-cms/packages/core/property-editor/uis/value-type/manifests.d.ts +2 -0
  1158. package/dist-cms/packages/core/property-editor/uis/value-type/manifests.js +12 -0
  1159. package/dist-cms/packages/core/property-editor/uis/value-type/property-editor-ui-value-type.element.d.ts +22 -0
  1160. package/dist-cms/packages/core/property-editor/uis/value-type/property-editor-ui-value-type.element.js +63 -0
  1161. package/dist-cms/packages/core/repositories/config/config.repository.d.ts +7 -0
  1162. package/dist-cms/packages/core/repositories/config/config.repository.js +13 -0
  1163. package/dist-cms/packages/core/section/index.d.ts +8 -0
  1164. package/dist-cms/packages/core/section/index.js +8 -0
  1165. package/dist-cms/packages/core/section/section-default.element.d.ts +23 -0
  1166. package/dist-cms/packages/core/section/section-default.element.js +107 -0
  1167. package/dist-cms/packages/core/section/section-main/index.d.ts +1 -0
  1168. package/dist-cms/packages/core/section/section-main/index.js +1 -0
  1169. package/dist-cms/packages/core/section/section-main/section-main.element.d.ts +10 -0
  1170. package/dist-cms/packages/core/section/section-main/section-main.element.js +36 -0
  1171. package/dist-cms/packages/core/section/section-sidebar/index.d.ts +2 -0
  1172. package/dist-cms/packages/core/section/section-sidebar/index.js +2 -0
  1173. package/dist-cms/packages/core/section/section-sidebar/section-sidebar.context.d.ts +14 -0
  1174. package/dist-cms/packages/core/section/section-sidebar/section-sidebar.context.js +38 -0
  1175. package/dist-cms/packages/core/section/section-sidebar/section-sidebar.element.d.ts +12 -0
  1176. package/dist-cms/packages/core/section/section-sidebar/section-sidebar.element.js +49 -0
  1177. package/dist-cms/packages/core/section/section-sidebar-context-menu/index.d.ts +1 -0
  1178. package/dist-cms/packages/core/section/section-sidebar-context-menu/index.js +1 -0
  1179. package/dist-cms/packages/core/section/section-sidebar-context-menu/section-sidebar-context-menu.element.d.ts +16 -0
  1180. package/dist-cms/packages/core/section/section-sidebar-context-menu/section-sidebar-context-menu.element.js +122 -0
  1181. package/dist-cms/packages/core/section/section-sidebar-menu/index.d.ts +1 -0
  1182. package/dist-cms/packages/core/section/section-sidebar-menu/index.js +1 -0
  1183. package/dist-cms/packages/core/section/section-sidebar-menu/section-sidebar-menu.element.d.ts +14 -0
  1184. package/dist-cms/packages/core/section/section-sidebar-menu/section-sidebar-menu.element.js +50 -0
  1185. package/dist-cms/packages/core/section/section-sidebar-menu-with-entity-actions/index.d.ts +1 -0
  1186. package/dist-cms/packages/core/section/section-sidebar-menu-with-entity-actions/index.js +1 -0
  1187. package/dist-cms/packages/core/section/section-sidebar-menu-with-entity-actions/section-sidebar-menu-with-entity-actions.element.d.ts +13 -0
  1188. package/dist-cms/packages/core/section/section-sidebar-menu-with-entity-actions/section-sidebar-menu-with-entity-actions.element.js +51 -0
  1189. package/dist-cms/packages/core/section/section-views/index.d.ts +1 -0
  1190. package/dist-cms/packages/core/section/section-views/index.js +1 -0
  1191. package/dist-cms/packages/core/section/section-views/section-views.element.d.ts +26 -0
  1192. package/dist-cms/packages/core/section/section-views/section-views.element.js +185 -0
  1193. package/dist-cms/packages/core/section/section.context.d.ts +11 -0
  1194. package/dist-cms/packages/core/section/section.context.js +22 -0
  1195. package/dist-cms/packages/core/sorter/index.d.ts +1 -0
  1196. package/dist-cms/packages/core/sorter/index.js +1 -0
  1197. package/dist-cms/packages/core/sorter/sorter.controller.d.ts +101 -0
  1198. package/dist-cms/packages/core/sorter/sorter.controller.js +685 -0
  1199. package/dist-cms/packages/core/store/entity-tree-store.d.ts +32 -0
  1200. package/dist-cms/packages/core/store/entity-tree-store.js +36 -0
  1201. package/dist-cms/packages/core/store/file-system-tree.store.d.ts +32 -0
  1202. package/dist-cms/packages/core/store/file-system-tree.store.js +36 -0
  1203. package/dist-cms/packages/core/store/index.d.ts +7 -0
  1204. package/dist-cms/packages/core/store/index.js +7 -0
  1205. package/dist-cms/packages/core/store/item-store.interface.d.ts +6 -0
  1206. package/dist-cms/packages/core/store/item-store.interface.js +1 -0
  1207. package/dist-cms/packages/core/store/store-base.d.ts +28 -0
  1208. package/dist-cms/packages/core/store/store-base.js +35 -0
  1209. package/dist-cms/packages/core/store/store.d.ts +34 -0
  1210. package/dist-cms/packages/core/store/store.interface.d.ts +5 -0
  1211. package/dist-cms/packages/core/store/store.interface.js +1 -0
  1212. package/dist-cms/packages/core/store/store.js +1 -0
  1213. package/dist-cms/packages/core/store/tree-store.interface.d.ts +8 -0
  1214. package/dist-cms/packages/core/store/tree-store.interface.js +1 -0
  1215. package/dist-cms/packages/core/themes/index.d.ts +1 -0
  1216. package/dist-cms/packages/core/themes/index.js +1 -0
  1217. package/dist-cms/packages/core/themes/manifests.d.ts +3 -0
  1218. package/dist-cms/packages/core/themes/manifests.js +29 -0
  1219. package/dist-cms/packages/core/themes/theme.context.d.ts +10 -0
  1220. package/dist-cms/packages/core/themes/theme.context.js +63 -0
  1221. package/dist-cms/packages/core/tree/entity-tree-item/entity-tree-item.context.d.ts +6 -0
  1222. package/dist-cms/packages/core/tree/entity-tree-item/entity-tree-item.context.js +7 -0
  1223. package/dist-cms/packages/core/tree/entity-tree-item/entity-tree-item.element.d.ts +17 -0
  1224. package/dist-cms/packages/core/tree/entity-tree-item/entity-tree-item.element.js +45 -0
  1225. package/dist-cms/packages/core/tree/entity-tree-item/index.d.ts +2 -0
  1226. package/dist-cms/packages/core/tree/entity-tree-item/index.js +2 -0
  1227. package/dist-cms/packages/core/tree/file-system-tree-item/file-system-tree-item.context.d.ts +14 -0
  1228. package/dist-cms/packages/core/tree/file-system-tree-item/file-system-tree-item.context.js +16 -0
  1229. package/dist-cms/packages/core/tree/file-system-tree-item/file-system-tree-item.element.d.ts +25 -0
  1230. package/dist-cms/packages/core/tree/file-system-tree-item/file-system-tree-item.element.js +53 -0
  1231. package/dist-cms/packages/core/tree/file-system-tree-item/index.d.ts +2 -0
  1232. package/dist-cms/packages/core/tree/file-system-tree-item/index.js +2 -0
  1233. package/dist-cms/packages/core/tree/index.d.ts +19 -0
  1234. package/dist-cms/packages/core/tree/index.js +7 -0
  1235. package/dist-cms/packages/core/tree/tree-item/index.d.ts +2 -0
  1236. package/dist-cms/packages/core/tree/tree-item/index.js +2 -0
  1237. package/dist-cms/packages/core/tree/tree-item/tree-item.context.interface.d.ts +28 -0
  1238. package/dist-cms/packages/core/tree/tree-item/tree-item.context.interface.js +1 -0
  1239. package/dist-cms/packages/core/tree/tree-item/tree-item.element.d.ts +13 -0
  1240. package/dist-cms/packages/core/tree/tree-item/tree-item.element.js +35 -0
  1241. package/dist-cms/packages/core/tree/tree-item-base/index.d.ts +2 -0
  1242. package/dist-cms/packages/core/tree/tree-item-base/index.js +2 -0
  1243. package/dist-cms/packages/core/tree/tree-item-base/tree-item-base.context.d.ts +35 -0
  1244. package/dist-cms/packages/core/tree/tree-item-base/tree-item-base.context.js +152 -0
  1245. package/dist-cms/packages/core/tree/tree-item-base/tree-item-base.element.d.ts +26 -0
  1246. package/dist-cms/packages/core/tree/tree-item-base/tree-item-base.element.js +157 -0
  1247. package/dist-cms/packages/core/tree/tree-menu-item/index.d.ts +1 -0
  1248. package/dist-cms/packages/core/tree/tree-menu-item/index.js +1 -0
  1249. package/dist-cms/packages/core/tree/tree-menu-item/tree-menu-item.element.d.ts +13 -0
  1250. package/dist-cms/packages/core/tree/tree-menu-item/tree-menu-item.element.js +33 -0
  1251. package/dist-cms/packages/core/tree/tree.context.d.ts +56 -0
  1252. package/dist-cms/packages/core/tree/tree.context.js +119 -0
  1253. package/dist-cms/packages/core/tree/tree.element.d.ts +29 -0
  1254. package/dist-cms/packages/core/tree/tree.element.js +129 -0
  1255. package/dist-cms/packages/core/umbraco-package.d.ts +4 -0
  1256. package/dist-cms/packages/core/umbraco-package.js +10 -0
  1257. package/dist-cms/packages/core/variant/index.d.ts +1 -0
  1258. package/dist-cms/packages/core/variant/index.js +1 -0
  1259. package/dist-cms/packages/core/variant/variant-id.class.d.ts +15 -0
  1260. package/dist-cms/packages/core/variant/variant-id.class.js +33 -0
  1261. package/dist-cms/packages/core/workspace/index.d.ts +11 -0
  1262. package/dist-cms/packages/core/workspace/index.js +11 -0
  1263. package/dist-cms/packages/core/workspace/manifests.d.ts +1 -0
  1264. package/dist-cms/packages/core/workspace/manifests.js +2 -0
  1265. package/dist-cms/packages/core/workspace/types/index.d.ts +1 -0
  1266. package/dist-cms/packages/core/workspace/types/index.js +1 -0
  1267. package/dist-cms/packages/core/workspace/types/workspace-property-data.type.d.ts +8 -0
  1268. package/dist-cms/packages/core/workspace/types/workspace-property-data.type.js +1 -0
  1269. package/dist-cms/packages/core/workspace/workspace-action/common/index.d.ts +1 -0
  1270. package/dist-cms/packages/core/workspace/workspace-action/common/index.js +1 -0
  1271. package/dist-cms/packages/core/workspace/workspace-action/common/save/index.d.ts +1 -0
  1272. package/dist-cms/packages/core/workspace/workspace-action/common/save/index.js +1 -0
  1273. package/dist-cms/packages/core/workspace/workspace-action/common/save/save.action.d.ts +7 -0
  1274. package/dist-cms/packages/core/workspace/workspace-action/common/save/save.action.js +18 -0
  1275. package/dist-cms/packages/core/workspace/workspace-action/index.d.ts +3 -0
  1276. package/dist-cms/packages/core/workspace/workspace-action/index.js +3 -0
  1277. package/dist-cms/packages/core/workspace/workspace-action/workspace-action-base.d.ts +13 -0
  1278. package/dist-cms/packages/core/workspace/workspace-action/workspace-action-base.js +11 -0
  1279. package/dist-cms/packages/core/workspace/workspace-action/workspace-action.element.d.ts +18 -0
  1280. package/dist-cms/packages/core/workspace/workspace-action/workspace-action.element.js +58 -0
  1281. package/dist-cms/packages/core/workspace/workspace-action-menu/index.d.ts +1 -0
  1282. package/dist-cms/packages/core/workspace/workspace-action-menu/index.js +1 -0
  1283. package/dist-cms/packages/core/workspace/workspace-action-menu/workspace-action-menu.element.d.ts +17 -0
  1284. package/dist-cms/packages/core/workspace/workspace-action-menu/workspace-action-menu.element.js +88 -0
  1285. package/dist-cms/packages/core/workspace/workspace-content/views/collection/workspace-view-collection.element.d.ts +18 -0
  1286. package/dist-cms/packages/core/workspace/workspace-content/views/collection/workspace-view-collection.element.js +46 -0
  1287. package/dist-cms/packages/core/workspace/workspace-context/entity-manager-controller.d.ts +26 -0
  1288. package/dist-cms/packages/core/workspace/workspace-context/entity-manager-controller.js +87 -0
  1289. package/dist-cms/packages/core/workspace/workspace-context/entity-workspace-context.token.d.ts +4 -0
  1290. package/dist-cms/packages/core/workspace/workspace-context/entity-workspace-context.token.js +2 -0
  1291. package/dist-cms/packages/core/workspace/workspace-context/index.d.ts +7 -0
  1292. package/dist-cms/packages/core/workspace/workspace-context/index.js +7 -0
  1293. package/dist-cms/packages/core/workspace/workspace-context/workspace-context.d.ts +23 -0
  1294. package/dist-cms/packages/core/workspace/workspace-context/workspace-context.interface.d.ts +14 -0
  1295. package/dist-cms/packages/core/workspace/workspace-context/workspace-context.interface.js +1 -0
  1296. package/dist-cms/packages/core/workspace/workspace-context/workspace-context.js +40 -0
  1297. package/dist-cms/packages/core/workspace/workspace-context/workspace-entity-context.interface.d.ts +6 -0
  1298. package/dist-cms/packages/core/workspace/workspace-context/workspace-entity-context.interface.js +1 -0
  1299. package/dist-cms/packages/core/workspace/workspace-context/workspace-invariantable-entity-context.interface.d.ts +11 -0
  1300. package/dist-cms/packages/core/workspace/workspace-context/workspace-invariantable-entity-context.interface.js +1 -0
  1301. package/dist-cms/packages/core/workspace/workspace-context/workspace-variable-entity-context.interface.d.ts +16 -0
  1302. package/dist-cms/packages/core/workspace/workspace-context/workspace-variable-entity-context.interface.js +1 -0
  1303. package/dist-cms/packages/core/workspace/workspace-editor/index.d.ts +1 -0
  1304. package/dist-cms/packages/core/workspace/workspace-editor/index.js +1 -0
  1305. package/dist-cms/packages/core/workspace/workspace-editor/workspace-editor.element.d.ts +44 -0
  1306. package/dist-cms/packages/core/workspace/workspace-editor/workspace-editor.element.js +209 -0
  1307. package/dist-cms/packages/core/workspace/workspace-footer/index.d.ts +1 -0
  1308. package/dist-cms/packages/core/workspace/workspace-footer/index.js +1 -0
  1309. package/dist-cms/packages/core/workspace/workspace-footer/workspace-footer.element.d.ts +34 -0
  1310. package/dist-cms/packages/core/workspace/workspace-footer/workspace-footer.element.js +94 -0
  1311. package/dist-cms/packages/core/workspace/workspace-is-new-redirect-controller/index.d.ts +1 -0
  1312. package/dist-cms/packages/core/workspace/workspace-is-new-redirect-controller/index.js +1 -0
  1313. package/dist-cms/packages/core/workspace/workspace-is-new-redirect-controller/workspace-is-new-redirect-controller.d.ts +16 -0
  1314. package/dist-cms/packages/core/workspace/workspace-is-new-redirect-controller/workspace-is-new-redirect-controller.js +31 -0
  1315. package/dist-cms/packages/core/workspace/workspace-modal/index.d.ts +1 -0
  1316. package/dist-cms/packages/core/workspace/workspace-modal/index.js +1 -0
  1317. package/dist-cms/packages/core/workspace/workspace-modal/manifests.d.ts +2 -0
  1318. package/dist-cms/packages/core/workspace/workspace-modal/manifests.js +7 -0
  1319. package/dist-cms/packages/core/workspace/workspace-modal/workspace-modal.element.d.ts +18 -0
  1320. package/dist-cms/packages/core/workspace/workspace-modal/workspace-modal.element.js +34 -0
  1321. package/dist-cms/packages/core/workspace/workspace-property/index.d.ts +2 -0
  1322. package/dist-cms/packages/core/workspace/workspace-property/index.js +2 -0
  1323. package/dist-cms/packages/core/workspace/workspace-property/workspace-property.context.d.ts +38 -0
  1324. package/dist-cms/packages/core/workspace/workspace-property/workspace-property.context.js +96 -0
  1325. package/dist-cms/packages/core/workspace/workspace-property/workspace-property.element.d.ts +86 -0
  1326. package/dist-cms/packages/core/workspace/workspace-property/workspace-property.element.js +241 -0
  1327. package/dist-cms/packages/core/workspace/workspace-property-layout/workspace-property-layout.element.d.ts +46 -0
  1328. package/dist-cms/packages/core/workspace/workspace-property-layout/workspace-property-layout.element.js +131 -0
  1329. package/dist-cms/packages/core/workspace/workspace-split-view-manager.class.d.ts +27 -0
  1330. package/dist-cms/packages/core/workspace/workspace-split-view-manager.class.js +78 -0
  1331. package/dist-cms/packages/core/workspace/workspace-variant/index.d.ts +3 -0
  1332. package/dist-cms/packages/core/workspace/workspace-variant/index.js +3 -0
  1333. package/dist-cms/packages/core/workspace/workspace-variant/variantable-property/variantable-property.element.d.ts +20 -0
  1334. package/dist-cms/packages/core/workspace/workspace-variant/variantable-property/variantable-property.element.js +71 -0
  1335. package/dist-cms/packages/core/workspace/workspace-variant/workspace-variant.context.d.ts +26 -0
  1336. package/dist-cms/packages/core/workspace/workspace-variant/workspace-variant.context.js +89 -0
  1337. package/dist-cms/packages/core/workspace/workspace-variant/workspace-variant.element.d.ts +23 -0
  1338. package/dist-cms/packages/core/workspace/workspace-variant/workspace-variant.element.js +79 -0
  1339. package/dist-cms/packages/core/workspace/workspace.element.d.ts +13 -0
  1340. package/dist-cms/packages/core/workspace/workspace.element.js +30 -0
  1341. package/dist-cms/packages/documents/dashboards/manifests.d.ts +2 -0
  1342. package/dist-cms/packages/documents/dashboards/manifests.js +17 -0
  1343. package/dist-cms/packages/documents/dashboards/redirect-management/dashboard-redirect-management.element.d.ts +36 -0
  1344. package/dist-cms/packages/documents/dashboards/redirect-management/dashboard-redirect-management.element.js +331 -0
  1345. package/dist-cms/packages/documents/document-blueprints/document-blueprint.detail.store.d.ts +36 -0
  1346. package/dist-cms/packages/documents/document-blueprints/document-blueprint.detail.store.js +84 -0
  1347. package/dist-cms/packages/documents/document-blueprints/document-blueprint.tree.store.d.ts +13 -0
  1348. package/dist-cms/packages/documents/document-blueprints/document-blueprint.tree.store.js +14 -0
  1349. package/dist-cms/packages/documents/document-blueprints/manifests.d.ts +4 -0
  1350. package/dist-cms/packages/documents/document-blueprints/manifests.js +19 -0
  1351. package/dist-cms/packages/documents/document-blueprints/menu-item/manifests.d.ts +2 -0
  1352. package/dist-cms/packages/documents/document-blueprints/menu-item/manifests.js +15 -0
  1353. package/dist-cms/packages/documents/document-blueprints/types.d.ts +9 -0
  1354. package/dist-cms/packages/documents/document-blueprints/types.js +2 -0
  1355. package/dist-cms/packages/documents/document-blueprints/workspace/document-blueprint-root-workspace.element.d.ts +10 -0
  1356. package/dist-cms/packages/documents/document-blueprints/workspace/document-blueprint-root-workspace.element.js +16 -0
  1357. package/dist-cms/packages/documents/document-blueprints/workspace/manifests.d.ts +2 -0
  1358. package/dist-cms/packages/documents/document-blueprints/workspace/manifests.js +12 -0
  1359. package/dist-cms/packages/documents/document-types/components/index.d.ts +1 -0
  1360. package/dist-cms/packages/documents/document-types/components/index.js +1 -0
  1361. package/dist-cms/packages/documents/document-types/components/input-document-type/input-document-type.element.d.ts +27 -0
  1362. package/dist-cms/packages/documents/document-types/components/input-document-type/input-document-type.element.js +115 -0
  1363. package/dist-cms/packages/documents/document-types/entity-actions/create/create.action.d.ts +8 -0
  1364. package/dist-cms/packages/documents/document-types/entity-actions/create/create.action.js +22 -0
  1365. package/dist-cms/packages/documents/document-types/entity-actions/create/manifests.d.ts +2 -0
  1366. package/dist-cms/packages/documents/document-types/entity-actions/create/manifests.js +27 -0
  1367. package/dist-cms/packages/documents/document-types/entity-actions/create/modal/document-type-create-options-modal.element.d.ts +17 -0
  1368. package/dist-cms/packages/documents/document-types/entity-actions/create/modal/document-type-create-options-modal.element.js +64 -0
  1369. package/dist-cms/packages/documents/document-types/entity-actions/create/modal/index.d.ts +5 -0
  1370. package/dist-cms/packages/documents/document-types/entity-actions/create/modal/index.js +5 -0
  1371. package/dist-cms/packages/documents/document-types/entity-actions/manifests.d.ts +1 -0
  1372. package/dist-cms/packages/documents/document-types/entity-actions/manifests.js +67 -0
  1373. package/dist-cms/packages/documents/document-types/index.d.ts +4 -0
  1374. package/dist-cms/packages/documents/document-types/index.js +4 -0
  1375. package/dist-cms/packages/documents/document-types/manifests.d.ts +1 -0
  1376. package/dist-cms/packages/documents/document-types/manifests.js +14 -0
  1377. package/dist-cms/packages/documents/document-types/menu-item/manifests.d.ts +1 -0
  1378. package/dist-cms/packages/documents/document-types/menu-item/manifests.js +16 -0
  1379. package/dist-cms/packages/documents/document-types/modals/allowed-document-types/allowed-document-types-modal.element.d.ts +19 -0
  1380. package/dist-cms/packages/documents/document-types/modals/allowed-document-types/allowed-document-types-modal.element.js +88 -0
  1381. package/dist-cms/packages/documents/document-types/modals/manifests.d.ts +2 -0
  1382. package/dist-cms/packages/documents/document-types/modals/manifests.js +9 -0
  1383. package/dist-cms/packages/documents/document-types/repository/document-type.repository.d.ts +77 -0
  1384. package/dist-cms/packages/documents/document-types/repository/document-type.repository.js +195 -0
  1385. package/dist-cms/packages/documents/document-types/repository/document-type.store.d.ts +37 -0
  1386. package/dist-cms/packages/documents/document-types/repository/document-type.store.js +44 -0
  1387. package/dist-cms/packages/documents/document-types/repository/document-type.tree.store.d.ts +18 -0
  1388. package/dist-cms/packages/documents/document-types/repository/document-type.tree.store.js +20 -0
  1389. package/dist-cms/packages/documents/document-types/repository/manifests.d.ts +5 -0
  1390. package/dist-cms/packages/documents/document-types/repository/manifests.js +25 -0
  1391. package/dist-cms/packages/documents/document-types/repository/sources/document-type.server.data.d.ts +63 -0
  1392. package/dist-cms/packages/documents/document-types/repository/sources/document-type.server.data.js +135 -0
  1393. package/dist-cms/packages/documents/document-types/repository/sources/document-type.tree.server.data.d.ts +39 -0
  1394. package/dist-cms/packages/documents/document-types/repository/sources/document-type.tree.server.data.js +82 -0
  1395. package/dist-cms/packages/documents/document-types/tree/manifests.d.ts +3 -0
  1396. package/dist-cms/packages/documents/document-types/tree/manifests.js +20 -0
  1397. package/dist-cms/packages/documents/document-types/workspace/document-type-workspace-editor.element.d.ts +20 -0
  1398. package/dist-cms/packages/documents/document-types/workspace/document-type-workspace-editor.element.js +181 -0
  1399. package/dist-cms/packages/documents/document-types/workspace/document-type-workspace.context.d.ts +51 -0
  1400. package/dist-cms/packages/documents/document-types/workspace/document-type-workspace.context.js +107 -0
  1401. package/dist-cms/packages/documents/document-types/workspace/document-type-workspace.element.d.ts +14 -0
  1402. package/dist-cms/packages/documents/document-types/workspace/document-type-workspace.element.js +49 -0
  1403. package/dist-cms/packages/documents/document-types/workspace/manifests.d.ts +2 -0
  1404. package/dist-cms/packages/documents/document-types/workspace/manifests.js +89 -0
  1405. package/dist-cms/packages/documents/document-types/workspace/views/design/document-type-workspace-view-edit-properties.element.d.ts +25 -0
  1406. package/dist-cms/packages/documents/document-types/workspace/views/design/document-type-workspace-view-edit-properties.element.js +129 -0
  1407. package/dist-cms/packages/documents/document-types/workspace/views/design/document-type-workspace-view-edit-property.element.d.ts +41 -0
  1408. package/dist-cms/packages/documents/document-types/workspace/views/design/document-type-workspace-view-edit-property.element.js +251 -0
  1409. package/dist-cms/packages/documents/document-types/workspace/views/design/document-type-workspace-view-edit-tab.element.d.ts +28 -0
  1410. package/dist-cms/packages/documents/document-types/workspace/views/design/document-type-workspace-view-edit-tab.element.js +143 -0
  1411. package/dist-cms/packages/documents/document-types/workspace/views/design/document-type-workspace-view-edit.element.d.ts +26 -0
  1412. package/dist-cms/packages/documents/document-types/workspace/views/design/document-type-workspace-view-edit.element.js +237 -0
  1413. package/dist-cms/packages/documents/document-types/workspace/views/settings/document-type-workspace-view-settings.element.d.ts +18 -0
  1414. package/dist-cms/packages/documents/document-types/workspace/views/settings/document-type-workspace-view-settings.element.js +120 -0
  1415. package/dist-cms/packages/documents/document-types/workspace/views/structure/document-type-workspace-view-structure.element.d.ts +17 -0
  1416. package/dist-cms/packages/documents/document-types/workspace/views/structure/document-type-workspace-view-structure.element.js +106 -0
  1417. package/dist-cms/packages/documents/document-types/workspace/views/templates/document-type-workspace-view-templates.element.d.ts +18 -0
  1418. package/dist-cms/packages/documents/document-types/workspace/views/templates/document-type-workspace-view-templates.element.js +92 -0
  1419. package/dist-cms/packages/documents/documents/collection/manifests.d.ts +2 -0
  1420. package/dist-cms/packages/documents/documents/collection/manifests.js +17 -0
  1421. package/dist-cms/packages/documents/documents/collection/views/table/column-layouts/document-table-actions-column-layout.element.d.ts +17 -0
  1422. package/dist-cms/packages/documents/documents/collection/views/table/column-layouts/document-table-actions-column-layout.element.js +81 -0
  1423. package/dist-cms/packages/documents/documents/collection/views/table/document-table-collection-view.element.d.ts +24 -0
  1424. package/dist-cms/packages/documents/documents/collection/views/table/document-table-collection-view.element.js +138 -0
  1425. package/dist-cms/packages/documents/documents/components/index.d.ts +1 -0
  1426. package/dist-cms/packages/documents/documents/components/index.js +1 -0
  1427. package/dist-cms/packages/documents/documents/components/input-document/input-document.element.d.ts +55 -0
  1428. package/dist-cms/packages/documents/documents/components/input-document/input-document.element.js +139 -0
  1429. package/dist-cms/packages/documents/documents/entity-actions/create/create.action.d.ts +11 -0
  1430. package/dist-cms/packages/documents/documents/entity-actions/create/create.action.js +44 -0
  1431. package/dist-cms/packages/documents/documents/entity-actions/create-blueprint.action.d.ts +7 -0
  1432. package/dist-cms/packages/documents/documents/entity-actions/create-blueprint.action.js +10 -0
  1433. package/dist-cms/packages/documents/documents/entity-actions/culture-and-hostnames.action.d.ts +7 -0
  1434. package/dist-cms/packages/documents/documents/entity-actions/culture-and-hostnames.action.js +10 -0
  1435. package/dist-cms/packages/documents/documents/entity-actions/manifests.d.ts +2 -0
  1436. package/dist-cms/packages/documents/documents/entity-actions/manifests.js +197 -0
  1437. package/dist-cms/packages/documents/documents/entity-actions/permissions.action.d.ts +7 -0
  1438. package/dist-cms/packages/documents/documents/entity-actions/permissions.action.js +10 -0
  1439. package/dist-cms/packages/documents/documents/entity-actions/public-access.action.d.ts +7 -0
  1440. package/dist-cms/packages/documents/documents/entity-actions/public-access.action.js +10 -0
  1441. package/dist-cms/packages/documents/documents/entity-actions/publish.action.d.ts +7 -0
  1442. package/dist-cms/packages/documents/documents/entity-actions/publish.action.js +10 -0
  1443. package/dist-cms/packages/documents/documents/entity-actions/rollback.action.d.ts +7 -0
  1444. package/dist-cms/packages/documents/documents/entity-actions/rollback.action.js +10 -0
  1445. package/dist-cms/packages/documents/documents/entity-actions/unpublish.action.d.ts +7 -0
  1446. package/dist-cms/packages/documents/documents/entity-actions/unpublish.action.js +10 -0
  1447. package/dist-cms/packages/documents/documents/entity-bulk-actions/copy/copy.action.d.ts +7 -0
  1448. package/dist-cms/packages/documents/documents/entity-bulk-actions/copy/copy.action.js +10 -0
  1449. package/dist-cms/packages/documents/documents/entity-bulk-actions/manifests.d.ts +2 -0
  1450. package/dist-cms/packages/documents/documents/entity-bulk-actions/manifests.js +35 -0
  1451. package/dist-cms/packages/documents/documents/entity-bulk-actions/move/move.action.d.ts +7 -0
  1452. package/dist-cms/packages/documents/documents/entity-bulk-actions/move/move.action.js +10 -0
  1453. package/dist-cms/packages/documents/documents/index.d.ts +5 -0
  1454. package/dist-cms/packages/documents/documents/index.js +5 -0
  1455. package/dist-cms/packages/documents/documents/manifests.d.ts +1 -0
  1456. package/dist-cms/packages/documents/documents/manifests.js +18 -0
  1457. package/dist-cms/packages/documents/documents/menu-item/document-menu-item.element.d.ts +10 -0
  1458. package/dist-cms/packages/documents/documents/menu-item/document-menu-item.element.js +17 -0
  1459. package/dist-cms/packages/documents/documents/menu-item/manifests.d.ts +2 -0
  1460. package/dist-cms/packages/documents/documents/menu-item/manifests.js +15 -0
  1461. package/dist-cms/packages/documents/documents/property-editors/Umbraco.ContentPicker.d.ts +2 -0
  1462. package/dist-cms/packages/documents/documents/property-editors/Umbraco.ContentPicker.js +18 -0
  1463. package/dist-cms/packages/documents/documents/property-editors/document-picker/manifests.d.ts +2 -0
  1464. package/dist-cms/packages/documents/documents/property-editors/document-picker/manifests.js +34 -0
  1465. package/dist-cms/packages/documents/documents/property-editors/document-picker/property-editor-ui-document-picker.element.d.ts +19 -0
  1466. package/dist-cms/packages/documents/documents/property-editors/document-picker/property-editor-ui-document-picker.element.js +57 -0
  1467. package/dist-cms/packages/documents/documents/property-editors/manifests.d.ts +2 -0
  1468. package/dist-cms/packages/documents/documents/property-editors/manifests.js +3 -0
  1469. package/dist-cms/packages/documents/documents/repository/document.repository.d.ts +79 -0
  1470. package/dist-cms/packages/documents/documents/repository/document.repository.js +225 -0
  1471. package/dist-cms/packages/documents/documents/repository/document.store.d.ts +37 -0
  1472. package/dist-cms/packages/documents/documents/repository/document.store.js +44 -0
  1473. package/dist-cms/packages/documents/documents/repository/document.tree.store.d.ts +18 -0
  1474. package/dist-cms/packages/documents/documents/repository/document.tree.store.js +19 -0
  1475. package/dist-cms/packages/documents/documents/repository/index.d.ts +1 -0
  1476. package/dist-cms/packages/documents/documents/repository/index.js +1 -0
  1477. package/dist-cms/packages/documents/documents/repository/manifests.d.ts +5 -0
  1478. package/dist-cms/packages/documents/documents/repository/manifests.js +25 -0
  1479. package/dist-cms/packages/documents/documents/repository/sources/document.server.data.d.ts +78 -0
  1480. package/dist-cms/packages/documents/documents/repository/sources/document.server.data.js +159 -0
  1481. package/dist-cms/packages/documents/documents/repository/sources/document.tree.server.data.d.ts +39 -0
  1482. package/dist-cms/packages/documents/documents/repository/sources/document.tree.server.data.js +82 -0
  1483. package/dist-cms/packages/documents/documents/repository/sources/index.d.ts +6 -0
  1484. package/dist-cms/packages/documents/documents/repository/sources/index.js +1 -0
  1485. package/dist-cms/packages/documents/documents/tree/manifests.d.ts +3 -0
  1486. package/dist-cms/packages/documents/documents/tree/manifests.js +20 -0
  1487. package/dist-cms/packages/documents/documents/tree/tree-item/document-tree-item.context.d.ts +6 -0
  1488. package/dist-cms/packages/documents/documents/tree/tree-item/document-tree-item.context.js +7 -0
  1489. package/dist-cms/packages/documents/documents/tree/tree-item/document-tree-item.element.d.ts +18 -0
  1490. package/dist-cms/packages/documents/documents/tree/tree-item/document-tree-item.element.js +74 -0
  1491. package/dist-cms/packages/documents/documents/workspace/actions/save-and-preview.action.d.ts +7 -0
  1492. package/dist-cms/packages/documents/documents/workspace/actions/save-and-preview.action.js +16 -0
  1493. package/dist-cms/packages/documents/documents/workspace/actions/save-and-publish.action.d.ts +7 -0
  1494. package/dist-cms/packages/documents/documents/workspace/actions/save-and-publish.action.js +16 -0
  1495. package/dist-cms/packages/documents/documents/workspace/actions/save-and-schedule.action.d.ts +7 -0
  1496. package/dist-cms/packages/documents/documents/workspace/actions/save-and-schedule.action.js +16 -0
  1497. package/dist-cms/packages/documents/documents/workspace/document-workspace-editor.element.d.ts +23 -0
  1498. package/dist-cms/packages/documents/documents/workspace/document-workspace-editor.element.js +121 -0
  1499. package/dist-cms/packages/documents/documents/workspace/document-workspace-split-view.element.d.ts +18 -0
  1500. package/dist-cms/packages/documents/documents/workspace/document-workspace-split-view.element.js +75 -0
  1501. package/dist-cms/packages/documents/documents/workspace/document-workspace.context.d.ts +37 -0
  1502. package/dist-cms/packages/documents/documents/workspace/document-workspace.context.js +155 -0
  1503. package/dist-cms/packages/documents/documents/workspace/document-workspace.element.d.ts +15 -0
  1504. package/dist-cms/packages/documents/documents/workspace/document-workspace.element.js +52 -0
  1505. package/dist-cms/packages/documents/documents/workspace/index.d.ts +1 -0
  1506. package/dist-cms/packages/documents/documents/workspace/index.js +1 -0
  1507. package/dist-cms/packages/documents/documents/workspace/manifests.d.ts +2 -0
  1508. package/dist-cms/packages/documents/documents/workspace/manifests.js +124 -0
  1509. package/dist-cms/packages/documents/documents/workspace/views/edit/document-workspace-view-edit-properties.element.d.ts +20 -0
  1510. package/dist-cms/packages/documents/documents/workspace/views/edit/document-workspace-view-edit-properties.element.js +63 -0
  1511. package/dist-cms/packages/documents/documents/workspace/views/edit/document-workspace-view-edit-tab.element.d.ts +26 -0
  1512. package/dist-cms/packages/documents/documents/workspace/views/edit/document-workspace-view-edit-tab.element.js +105 -0
  1513. package/dist-cms/packages/documents/documents/workspace/views/edit/document-workspace-view-edit.element.d.ts +23 -0
  1514. package/dist-cms/packages/documents/documents/workspace/views/edit/document-workspace-view-edit.element.js +144 -0
  1515. package/dist-cms/packages/documents/documents/workspace/views/info/document-info-workspace-view.element.d.ts +22 -0
  1516. package/dist-cms/packages/documents/documents/workspace/views/info/document-info-workspace-view.element.js +322 -0
  1517. package/dist-cms/packages/documents/index.d.ts +3 -0
  1518. package/dist-cms/packages/documents/index.js +3 -0
  1519. package/dist-cms/packages/documents/manifests.d.ts +1 -0
  1520. package/dist-cms/packages/documents/manifests.js +14 -0
  1521. package/dist-cms/packages/documents/menu.manifests.d.ts +2 -0
  1522. package/dist-cms/packages/documents/menu.manifests.js +9 -0
  1523. package/dist-cms/packages/documents/section.manifests.d.ts +2 -0
  1524. package/dist-cms/packages/documents/section.manifests.js +28 -0
  1525. package/dist-cms/packages/documents/umbraco-package.d.ts +7 -0
  1526. package/dist-cms/packages/documents/umbraco-package.js +9 -0
  1527. package/dist-cms/packages/media/manifests.d.ts +1 -0
  1528. package/dist-cms/packages/media/manifests.js +5 -0
  1529. package/dist-cms/packages/media/media/collection-view/collection-view-media-test.element.d.ts +10 -0
  1530. package/dist-cms/packages/media/media/collection-view/collection-view-media-test.element.js +17 -0
  1531. package/dist-cms/packages/media/media/collection-view/manifests.d.ts +2 -0
  1532. package/dist-cms/packages/media/media/collection-view/manifests.js +48 -0
  1533. package/dist-cms/packages/media/media/collection-view/media-grid-collection-view.element.d.ts +25 -0
  1534. package/dist-cms/packages/media/media/collection-view/media-grid-collection-view.element.js +163 -0
  1535. package/dist-cms/packages/media/media/collection-view/media-table-collection-view.element.d.ts +23 -0
  1536. package/dist-cms/packages/media/media/collection-view/media-table-collection-view.element.js +122 -0
  1537. package/dist-cms/packages/media/media/components/index.d.ts +1 -0
  1538. package/dist-cms/packages/media/media/components/index.js +1 -0
  1539. package/dist-cms/packages/media/media/components/input-media/input-media.element.d.ts +57 -0
  1540. package/dist-cms/packages/media/media/components/input-media/input-media.element.js +167 -0
  1541. package/dist-cms/packages/media/media/entity-actions/manifests.d.ts +2 -0
  1542. package/dist-cms/packages/media/media/entity-actions/manifests.js +19 -0
  1543. package/dist-cms/packages/media/media/entity-bulk-actions/copy/copy.action.d.ts +7 -0
  1544. package/dist-cms/packages/media/media/entity-bulk-actions/copy/copy.action.js +10 -0
  1545. package/dist-cms/packages/media/media/entity-bulk-actions/manifests.d.ts +2 -0
  1546. package/dist-cms/packages/media/media/entity-bulk-actions/manifests.js +50 -0
  1547. package/dist-cms/packages/media/media/entity-bulk-actions/move/move.action.d.ts +8 -0
  1548. package/dist-cms/packages/media/media/entity-bulk-actions/move/move.action.js +24 -0
  1549. package/dist-cms/packages/media/media/entity-bulk-actions/trash/trash.action.d.ts +8 -0
  1550. package/dist-cms/packages/media/media/entity-bulk-actions/trash/trash.action.js +36 -0
  1551. package/dist-cms/packages/media/media/index.d.ts +18 -0
  1552. package/dist-cms/packages/media/media/index.js +1 -0
  1553. package/dist-cms/packages/media/media/manifests.d.ts +1 -0
  1554. package/dist-cms/packages/media/media/manifests.js +16 -0
  1555. package/dist-cms/packages/media/media/menu-item/manifests.d.ts +2 -0
  1556. package/dist-cms/packages/media/media/menu-item/manifests.js +15 -0
  1557. package/dist-cms/packages/media/media/menu-item/media-menu-item.element.d.ts +10 -0
  1558. package/dist-cms/packages/media/media/menu-item/media-menu-item.element.js +17 -0
  1559. package/dist-cms/packages/media/media/repository/manifests.d.ts +5 -0
  1560. package/dist-cms/packages/media/media/repository/manifests.js +25 -0
  1561. package/dist-cms/packages/media/media/repository/media.repository.d.ts +66 -0
  1562. package/dist-cms/packages/media/media/repository/media.repository.js +182 -0
  1563. package/dist-cms/packages/media/media/repository/media.store.d.ts +37 -0
  1564. package/dist-cms/packages/media/media/repository/media.store.js +44 -0
  1565. package/dist-cms/packages/media/media/repository/media.tree.store.d.ts +19 -0
  1566. package/dist-cms/packages/media/media/repository/media.tree.store.js +21 -0
  1567. package/dist-cms/packages/media/media/repository/sources/media.detail.server.data.d.ts +72 -0
  1568. package/dist-cms/packages/media/media/repository/sources/media.detail.server.data.js +136 -0
  1569. package/dist-cms/packages/media/media/repository/sources/media.tree.server.data.d.ts +39 -0
  1570. package/dist-cms/packages/media/media/repository/sources/media.tree.server.data.js +82 -0
  1571. package/dist-cms/packages/media/media/tree/manifests.d.ts +2 -0
  1572. package/dist-cms/packages/media/media/tree/manifests.js +20 -0
  1573. package/dist-cms/packages/media/media/workspace/manifests.d.ts +2 -0
  1574. package/dist-cms/packages/media/media/workspace/manifests.js +78 -0
  1575. package/dist-cms/packages/media/media/workspace/media-workspace-editor.element.d.ts +15 -0
  1576. package/dist-cms/packages/media/media/workspace/media-workspace-editor.element.js +62 -0
  1577. package/dist-cms/packages/media/media/workspace/media-workspace.context.d.ts +22 -0
  1578. package/dist-cms/packages/media/media/workspace/media-workspace.context.js +67 -0
  1579. package/dist-cms/packages/media/media/workspace/media-workspace.element.d.ts +14 -0
  1580. package/dist-cms/packages/media/media/workspace/media-workspace.element.js +50 -0
  1581. package/dist-cms/packages/media/media/workspace/views/edit/media-edit-workspace-view.element.d.ts +12 -0
  1582. package/dist-cms/packages/media/media/workspace/views/edit/media-edit-workspace-view.element.js +19 -0
  1583. package/dist-cms/packages/media/media/workspace/views/info/media-info-workspace-view.element.d.ts +12 -0
  1584. package/dist-cms/packages/media/media/workspace/views/info/media-info-workspace-view.element.js +19 -0
  1585. package/dist-cms/packages/media/media-types/entity-actions/create.action.d.ts +7 -0
  1586. package/dist-cms/packages/media/media-types/entity-actions/create.action.js +10 -0
  1587. package/dist-cms/packages/media/media-types/entity-actions/manifests.d.ts +2 -0
  1588. package/dist-cms/packages/media/media-types/entity-actions/manifests.js +84 -0
  1589. package/dist-cms/packages/media/media-types/entity-actions/reload.action.d.ts +8 -0
  1590. package/dist-cms/packages/media/media-types/entity-actions/reload.action.js +11 -0
  1591. package/dist-cms/packages/media/media-types/manifests.d.ts +1 -0
  1592. package/dist-cms/packages/media/media-types/manifests.js +12 -0
  1593. package/dist-cms/packages/media/media-types/menu-item/manifests.d.ts +1 -0
  1594. package/dist-cms/packages/media/media-types/menu-item/manifests.js +16 -0
  1595. package/dist-cms/packages/media/media-types/repository/manifests.d.ts +5 -0
  1596. package/dist-cms/packages/media/media-types/repository/manifests.js +25 -0
  1597. package/dist-cms/packages/media/media-types/repository/media-type.detail.store.d.ts +16 -0
  1598. package/dist-cms/packages/media/media-types/repository/media-type.detail.store.js +21 -0
  1599. package/dist-cms/packages/media/media-types/repository/media-type.repository.d.ts +52 -0
  1600. package/dist-cms/packages/media/media-types/repository/media-type.repository.js +142 -0
  1601. package/dist-cms/packages/media/media-types/repository/media-type.tree.store.d.ts +18 -0
  1602. package/dist-cms/packages/media/media-types/repository/media-type.tree.store.js +19 -0
  1603. package/dist-cms/packages/media/media-types/repository/sources/media-type.detail.server.data.d.ts +49 -0
  1604. package/dist-cms/packages/media/media-types/repository/sources/media-type.detail.server.data.js +89 -0
  1605. package/dist-cms/packages/media/media-types/repository/sources/media-type.details.server.data.interface.d.ts +9 -0
  1606. package/dist-cms/packages/media/media-types/repository/sources/media-type.details.server.data.interface.js +1 -0
  1607. package/dist-cms/packages/media/media-types/repository/sources/media-type.tree.server.data.d.ts +37 -0
  1608. package/dist-cms/packages/media/media-types/repository/sources/media-type.tree.server.data.js +61 -0
  1609. package/dist-cms/packages/media/media-types/tree/manifests.d.ts +2 -0
  1610. package/dist-cms/packages/media/media-types/tree/manifests.js +19 -0
  1611. package/dist-cms/packages/media/media-types/types.d.ts +6 -0
  1612. package/dist-cms/packages/media/media-types/types.js +1 -0
  1613. package/dist-cms/packages/media/media-types/workspace/manifests.d.ts +2 -0
  1614. package/dist-cms/packages/media/media-types/workspace/manifests.js +13 -0
  1615. package/dist-cms/packages/media/media-types/workspace/media-type-workspace-editor.element.d.ts +14 -0
  1616. package/dist-cms/packages/media/media-types/workspace/media-type-workspace-editor.element.js +63 -0
  1617. package/dist-cms/packages/media/media-types/workspace/media-type-workspace.context.d.ts +21 -0
  1618. package/dist-cms/packages/media/media-types/workspace/media-type-workspace.context.js +49 -0
  1619. package/dist-cms/packages/media/media-types/workspace/media-type-workspace.element.d.ts +14 -0
  1620. package/dist-cms/packages/media/media-types/workspace/media-type-workspace.element.js +54 -0
  1621. package/dist-cms/packages/media/menu.manifests.d.ts +2 -0
  1622. package/dist-cms/packages/media/menu.manifests.js +9 -0
  1623. package/dist-cms/packages/media/section.manifests.d.ts +2 -0
  1624. package/dist-cms/packages/media/section.manifests.js +44 -0
  1625. package/dist-cms/packages/media/umbraco-package.d.ts +7 -0
  1626. package/dist-cms/packages/media/umbraco-package.js +9 -0
  1627. package/dist-cms/packages/members/dashboards/welcome/dashboard-members-welcome.element.d.ts +11 -0
  1628. package/dist-cms/packages/members/dashboards/welcome/dashboard-members-welcome.element.js +34 -0
  1629. package/dist-cms/packages/members/manifests.d.ts +1 -0
  1630. package/dist-cms/packages/members/manifests.js +12 -0
  1631. package/dist-cms/packages/members/member-groups/entity-actions/manifests.d.ts +2 -0
  1632. package/dist-cms/packages/members/member-groups/entity-actions/manifests.js +19 -0
  1633. package/dist-cms/packages/members/member-groups/manifests.d.ts +1 -0
  1634. package/dist-cms/packages/members/member-groups/manifests.js +12 -0
  1635. package/dist-cms/packages/members/member-groups/menu-item/manifests.d.ts +1 -0
  1636. package/dist-cms/packages/members/member-groups/menu-item/manifests.js +16 -0
  1637. package/dist-cms/packages/members/member-groups/repository/manifests.d.ts +5 -0
  1638. package/dist-cms/packages/members/member-groups/repository/manifests.js +25 -0
  1639. package/dist-cms/packages/members/member-groups/repository/member-group.repository.d.ts +53 -0
  1640. package/dist-cms/packages/members/member-groups/repository/member-group.repository.js +142 -0
  1641. package/dist-cms/packages/members/member-groups/repository/member-group.store.d.ts +23 -0
  1642. package/dist-cms/packages/members/member-groups/repository/member-group.store.js +30 -0
  1643. package/dist-cms/packages/members/member-groups/repository/member-group.tree.store.d.ts +18 -0
  1644. package/dist-cms/packages/members/member-groups/repository/member-group.tree.store.js +19 -0
  1645. package/dist-cms/packages/members/member-groups/repository/sources/member-group.detail.server.data.d.ts +56 -0
  1646. package/dist-cms/packages/members/member-groups/repository/sources/member-group.detail.server.data.js +102 -0
  1647. package/dist-cms/packages/members/member-groups/repository/sources/member-group.tree.server.data.d.ts +37 -0
  1648. package/dist-cms/packages/members/member-groups/repository/sources/member-group.tree.server.data.js +51 -0
  1649. package/dist-cms/packages/members/member-groups/tree/manifests.d.ts +2 -0
  1650. package/dist-cms/packages/members/member-groups/tree/manifests.js +21 -0
  1651. package/dist-cms/packages/members/member-groups/types.d.ts +4 -0
  1652. package/dist-cms/packages/members/member-groups/types.js +1 -0
  1653. package/dist-cms/packages/members/member-groups/workspace/manifests.d.ts +2 -0
  1654. package/dist-cms/packages/members/member-groups/workspace/manifests.js +44 -0
  1655. package/dist-cms/packages/members/member-groups/workspace/member-group-workspace-editor.element.d.ts +18 -0
  1656. package/dist-cms/packages/members/member-groups/workspace/member-group-workspace-editor.element.js +73 -0
  1657. package/dist-cms/packages/members/member-groups/workspace/member-group-workspace.context.d.ts +21 -0
  1658. package/dist-cms/packages/members/member-groups/workspace/member-group-workspace.context.js +51 -0
  1659. package/dist-cms/packages/members/member-groups/workspace/member-group-workspace.element.d.ts +18 -0
  1660. package/dist-cms/packages/members/member-groups/workspace/member-group-workspace.element.js +54 -0
  1661. package/dist-cms/packages/members/member-groups/workspace/views/info/workspace-view-member-group-info.element.d.ts +16 -0
  1662. package/dist-cms/packages/members/member-groups/workspace/views/info/workspace-view-member-group-info.element.js +81 -0
  1663. package/dist-cms/packages/members/member-types/entity-actions/manifests.d.ts +2 -0
  1664. package/dist-cms/packages/members/member-types/entity-actions/manifests.js +22 -0
  1665. package/dist-cms/packages/members/member-types/manifests.d.ts +1 -0
  1666. package/dist-cms/packages/members/member-types/manifests.js +12 -0
  1667. package/dist-cms/packages/members/member-types/menu-item/manifests.d.ts +1 -0
  1668. package/dist-cms/packages/members/member-types/menu-item/manifests.js +16 -0
  1669. package/dist-cms/packages/members/member-types/repository/manifests.d.ts +5 -0
  1670. package/dist-cms/packages/members/member-types/repository/manifests.js +25 -0
  1671. package/dist-cms/packages/members/member-types/repository/member-type.repository.d.ts +56 -0
  1672. package/dist-cms/packages/members/member-types/repository/member-type.repository.js +155 -0
  1673. package/dist-cms/packages/members/member-types/repository/member-type.store.d.ts +22 -0
  1674. package/dist-cms/packages/members/member-types/repository/member-type.store.js +29 -0
  1675. package/dist-cms/packages/members/member-types/repository/member-type.tree.store.d.ts +13 -0
  1676. package/dist-cms/packages/members/member-types/repository/member-type.tree.store.js +14 -0
  1677. package/dist-cms/packages/members/member-types/repository/sources/member-type.detail.server.data.d.ts +56 -0
  1678. package/dist-cms/packages/members/member-types/repository/sources/member-type.detail.server.data.js +110 -0
  1679. package/dist-cms/packages/members/member-types/repository/sources/member-type.tree.server.data.d.ts +40 -0
  1680. package/dist-cms/packages/members/member-types/repository/sources/member-type.tree.server.data.js +52 -0
  1681. package/dist-cms/packages/members/member-types/tree/manifests.d.ts +2 -0
  1682. package/dist-cms/packages/members/member-types/tree/manifests.js +20 -0
  1683. package/dist-cms/packages/members/member-types/types.d.ts +6 -0
  1684. package/dist-cms/packages/members/member-types/types.js +1 -0
  1685. package/dist-cms/packages/members/member-types/workspace/manifests.d.ts +2 -0
  1686. package/dist-cms/packages/members/member-types/workspace/manifests.js +12 -0
  1687. package/dist-cms/packages/members/member-types/workspace/member-type-workspace-editor.element.d.ts +11 -0
  1688. package/dist-cms/packages/members/member-types/workspace/member-type-workspace-editor.element.js +36 -0
  1689. package/dist-cms/packages/members/member-types/workspace/member-type-workspace.context.d.ts +20 -0
  1690. package/dist-cms/packages/members/member-types/workspace/member-type-workspace.context.js +60 -0
  1691. package/dist-cms/packages/members/member-types/workspace/member-type-workspace.element.d.ts +14 -0
  1692. package/dist-cms/packages/members/member-types/workspace/member-type-workspace.element.js +50 -0
  1693. package/dist-cms/packages/members/members/entity-actions/manifests.d.ts +2 -0
  1694. package/dist-cms/packages/members/members/entity-actions/manifests.js +19 -0
  1695. package/dist-cms/packages/members/members/manifests.d.ts +1 -0
  1696. package/dist-cms/packages/members/members/manifests.js +12 -0
  1697. package/dist-cms/packages/members/members/member.detail.store.d.ts +25 -0
  1698. package/dist-cms/packages/members/members/member.detail.store.js +42 -0
  1699. package/dist-cms/packages/members/members/menu-item/manifests.d.ts +1 -0
  1700. package/dist-cms/packages/members/members/menu-item/manifests.js +17 -0
  1701. package/dist-cms/packages/members/members/repository/manifests.d.ts +5 -0
  1702. package/dist-cms/packages/members/members/repository/manifests.js +25 -0
  1703. package/dist-cms/packages/members/members/repository/member.repository.d.ts +34 -0
  1704. package/dist-cms/packages/members/members/repository/member.repository.js +63 -0
  1705. package/dist-cms/packages/members/members/repository/member.store.d.ts +16 -0
  1706. package/dist-cms/packages/members/members/repository/member.store.js +21 -0
  1707. package/dist-cms/packages/members/members/repository/member.tree.store.d.ts +18 -0
  1708. package/dist-cms/packages/members/members/repository/member.tree.store.js +19 -0
  1709. package/dist-cms/packages/members/members/repository/sources/index.d.ts +6 -0
  1710. package/dist-cms/packages/members/members/repository/sources/index.js +1 -0
  1711. package/dist-cms/packages/members/members/repository/sources/member.tree.server.data.d.ts +36 -0
  1712. package/dist-cms/packages/members/members/repository/sources/member.tree.server.data.js +49 -0
  1713. package/dist-cms/packages/members/members/tree/manifests.d.ts +2 -0
  1714. package/dist-cms/packages/members/members/tree/manifests.js +20 -0
  1715. package/dist-cms/packages/members/members/types.d.ts +4 -0
  1716. package/dist-cms/packages/members/members/types.js +1 -0
  1717. package/dist-cms/packages/members/members/workspace/manifests.d.ts +2 -0
  1718. package/dist-cms/packages/members/members/workspace/manifests.js +12 -0
  1719. package/dist-cms/packages/members/members/workspace/member-workspace-editor.element.d.ts +11 -0
  1720. package/dist-cms/packages/members/members/workspace/member-workspace-editor.element.js +27 -0
  1721. package/dist-cms/packages/members/members/workspace/member-workspace.context.d.ts +13 -0
  1722. package/dist-cms/packages/members/members/workspace/member-workspace.context.js +25 -0
  1723. package/dist-cms/packages/members/members/workspace/member-workspace.element.d.ts +14 -0
  1724. package/dist-cms/packages/members/members/workspace/member-workspace.element.js +50 -0
  1725. package/dist-cms/packages/members/menu.manifests.d.ts +2 -0
  1726. package/dist-cms/packages/members/menu.manifests.js +9 -0
  1727. package/dist-cms/packages/members/section.manifests.d.ts +2 -0
  1728. package/dist-cms/packages/members/section.manifests.js +42 -0
  1729. package/dist-cms/packages/members/umbraco-package.d.ts +7 -0
  1730. package/dist-cms/packages/members/umbraco-package.js +9 -0
  1731. package/dist-cms/packages/packages/manifests.d.ts +1 -0
  1732. package/dist-cms/packages/packages/manifests.js +10 -0
  1733. package/dist-cms/packages/packages/package/index.d.ts +1 -0
  1734. package/dist-cms/packages/packages/package/index.js +1 -0
  1735. package/dist-cms/packages/packages/package/repository/index.d.ts +1 -0
  1736. package/dist-cms/packages/packages/package/repository/index.js +1 -0
  1737. package/dist-cms/packages/packages/package/repository/manifests.d.ts +4 -0
  1738. package/dist-cms/packages/packages/package/repository/manifests.js +17 -0
  1739. package/dist-cms/packages/packages/package/repository/package.repository.d.ts +37 -0
  1740. package/dist-cms/packages/packages/package/repository/package.repository.js +99 -0
  1741. package/dist-cms/packages/packages/package/repository/package.store.d.ts +34 -0
  1742. package/dist-cms/packages/packages/package/repository/package.store.js +56 -0
  1743. package/dist-cms/packages/packages/package/repository/server-extension.controller.d.ts +8 -0
  1744. package/dist-cms/packages/packages/package/repository/server-extension.controller.js +39 -0
  1745. package/dist-cms/packages/packages/package/repository/sources/package.server.data.d.ts +19 -0
  1746. package/dist-cms/packages/packages/package/repository/sources/package.server.data.js +25 -0
  1747. package/dist-cms/packages/packages/package-builder/manifests.d.ts +2 -0
  1748. package/dist-cms/packages/packages/package-builder/manifests.js +13 -0
  1749. package/dist-cms/packages/packages/package-builder/workspace/workspace-package-builder.element.d.ts +18 -0
  1750. package/dist-cms/packages/packages/package-builder/workspace/workspace-package-builder.element.js +269 -0
  1751. package/dist-cms/packages/packages/package-repo/manifests.d.ts +2 -0
  1752. package/dist-cms/packages/packages/package-repo/manifests.js +13 -0
  1753. package/dist-cms/packages/packages/package-repo/workspace/workspace-package.element.d.ts +17 -0
  1754. package/dist-cms/packages/packages/package-repo/workspace/workspace-package.element.js +55 -0
  1755. package/dist-cms/packages/packages/package-section/manifests.d.ts +2 -0
  1756. package/dist-cms/packages/packages/package-section/manifests.js +59 -0
  1757. package/dist-cms/packages/packages/package-section/views/created/created-packages-section-view.element.d.ts +16 -0
  1758. package/dist-cms/packages/packages/package-section/views/created/created-packages-section-view.element.js +61 -0
  1759. package/dist-cms/packages/packages/package-section/views/created/packages-created-overview.element.d.ts +20 -0
  1760. package/dist-cms/packages/packages/package-section/views/created/packages-created-overview.element.js +144 -0
  1761. package/dist-cms/packages/packages/package-section/views/installed/installed-packages-section-view-item.element.d.ts +21 -0
  1762. package/dist-cms/packages/packages/package-section/views/installed/installed-packages-section-view-item.element.js +142 -0
  1763. package/dist-cms/packages/packages/package-section/views/installed/installed-packages-section-view.element.d.ts +24 -0
  1764. package/dist-cms/packages/packages/package-section/views/installed/installed-packages-section-view.element.js +128 -0
  1765. package/dist-cms/packages/packages/package-section/views/market-place/packages-market-place-section-view.element.d.ts +13 -0
  1766. package/dist-cms/packages/packages/package-section/views/market-place/packages-market-place-section-view.element.js +54 -0
  1767. package/dist-cms/packages/packages/types.d.ts +6 -0
  1768. package/dist-cms/packages/packages/types.js +1 -0
  1769. package/dist-cms/packages/packages/umbraco-package.d.ts +7 -0
  1770. package/dist-cms/packages/packages/umbraco-package.js +9 -0
  1771. package/dist-cms/packages/search/examine-management-dashboard/dashboard-examine-management.element.d.ts +15 -0
  1772. package/dist-cms/packages/search/examine-management-dashboard/dashboard-examine-management.element.js +94 -0
  1773. package/dist-cms/packages/search/examine-management-dashboard/views/modal-views/fields-settings.element.d.ts +15 -0
  1774. package/dist-cms/packages/search/examine-management-dashboard/views/modal-views/fields-settings.element.js +89 -0
  1775. package/dist-cms/packages/search/examine-management-dashboard/views/modal-views/fields-viewer.element.d.ts +15 -0
  1776. package/dist-cms/packages/search/examine-management-dashboard/views/modal-views/fields-viewer.element.js +74 -0
  1777. package/dist-cms/packages/search/examine-management-dashboard/views/section-view-examine-indexers.d.ts +24 -0
  1778. package/dist-cms/packages/search/examine-management-dashboard/views/section-view-examine-indexers.js +206 -0
  1779. package/dist-cms/packages/search/examine-management-dashboard/views/section-view-examine-overview.d.ts +20 -0
  1780. package/dist-cms/packages/search/examine-management-dashboard/views/section-view-examine-overview.js +164 -0
  1781. package/dist-cms/packages/search/examine-management-dashboard/views/section-view-examine-searchers.d.ts +30 -0
  1782. package/dist-cms/packages/search/examine-management-dashboard/views/section-view-examine-searchers.js +278 -0
  1783. package/dist-cms/packages/search/manifests.d.ts +2 -0
  1784. package/dist-cms/packages/search/manifests.js +53 -0
  1785. package/dist-cms/packages/search/search-modal/search-modal.element.d.ts +27 -0
  1786. package/dist-cms/packages/search/search-modal/search-modal.element.js +294 -0
  1787. package/dist-cms/packages/search/umb-search-header-app.element.d.ts +15 -0
  1788. package/dist-cms/packages/search/umb-search-header-app.element.js +41 -0
  1789. package/dist-cms/packages/search/umbraco-package.d.ts +7 -0
  1790. package/dist-cms/packages/search/umbraco-package.js +9 -0
  1791. package/dist-cms/packages/settings/cultures/components/index.d.ts +1 -0
  1792. package/dist-cms/packages/settings/cultures/components/index.js +1 -0
  1793. package/dist-cms/packages/settings/cultures/components/input-culture-select/input-culture-select.element.d.ts +32 -0
  1794. package/dist-cms/packages/settings/cultures/components/input-culture-select/input-culture-select.element.js +102 -0
  1795. package/dist-cms/packages/settings/cultures/manifests.d.ts +1 -0
  1796. package/dist-cms/packages/settings/cultures/manifests.js +2 -0
  1797. package/dist-cms/packages/settings/cultures/repository/culture.repository.d.ts +9 -0
  1798. package/dist-cms/packages/settings/cultures/repository/culture.repository.js +21 -0
  1799. package/dist-cms/packages/settings/cultures/repository/manifests.d.ts +3 -0
  1800. package/dist-cms/packages/settings/cultures/repository/manifests.js +9 -0
  1801. package/dist-cms/packages/settings/cultures/repository/sources/culture.server.data.d.ts +26 -0
  1802. package/dist-cms/packages/settings/cultures/repository/sources/culture.server.data.js +27 -0
  1803. package/dist-cms/packages/settings/cultures/repository/sources/index.d.ts +10 -0
  1804. package/dist-cms/packages/settings/cultures/repository/sources/index.js +1 -0
  1805. package/dist-cms/packages/settings/dashboards/health-check/dashboard-health-check.element.d.ts +15 -0
  1806. package/dist-cms/packages/settings/dashboards/health-check/dashboard-health-check.element.js +79 -0
  1807. package/dist-cms/packages/settings/dashboards/health-check/health-check-dashboard.context.d.ts +13 -0
  1808. package/dist-cms/packages/settings/dashboards/health-check/health-check-dashboard.context.js +29 -0
  1809. package/dist-cms/packages/settings/dashboards/health-check/health-check.context.d.ts +14 -0
  1810. package/dist-cms/packages/settings/dashboards/health-check/health-check.context.js +32 -0
  1811. package/dist-cms/packages/settings/dashboards/health-check/views/health-check-action.element.d.ts +16 -0
  1812. package/dist-cms/packages/settings/dashboards/health-check/views/health-check-action.element.js +135 -0
  1813. package/dist-cms/packages/settings/dashboards/health-check/views/health-check-group-box-overview.element.d.ts +21 -0
  1814. package/dist-cms/packages/settings/dashboards/health-check/views/health-check-group-box-overview.element.js +147 -0
  1815. package/dist-cms/packages/settings/dashboards/health-check/views/health-check-group.element.d.ts +27 -0
  1816. package/dist-cms/packages/settings/dashboards/health-check/views/health-check-group.element.js +190 -0
  1817. package/dist-cms/packages/settings/dashboards/health-check/views/health-check-overview.element.d.ts +16 -0
  1818. package/dist-cms/packages/settings/dashboards/health-check/views/health-check-overview.element.js +75 -0
  1819. package/dist-cms/packages/settings/dashboards/manifests.d.ts +2 -0
  1820. package/dist-cms/packages/settings/dashboards/manifests.js +93 -0
  1821. package/dist-cms/packages/settings/dashboards/models-builder/dashboard-models-builder.element.d.ts +20 -0
  1822. package/dist-cms/packages/settings/dashboards/models-builder/dashboard-models-builder.element.js +165 -0
  1823. package/dist-cms/packages/settings/dashboards/performance-profiling/dashboard-performance-profiling.element.d.ts +17 -0
  1824. package/dist-cms/packages/settings/dashboards/performance-profiling/dashboard-performance-profiling.element.js +114 -0
  1825. package/dist-cms/packages/settings/dashboards/published-status/dashboard-published-status.element.d.ts +27 -0
  1826. package/dist-cms/packages/settings/dashboards/published-status/dashboard-published-status.element.js +206 -0
  1827. package/dist-cms/packages/settings/dashboards/settings-welcome/dashboard-settings-welcome.element.d.ts +11 -0
  1828. package/dist-cms/packages/settings/dashboards/settings-welcome/dashboard-settings-welcome.element.js +119 -0
  1829. package/dist-cms/packages/settings/dashboards/telemetry/dashboard-telemetry.element.d.ts +23 -0
  1830. package/dist-cms/packages/settings/dashboards/telemetry/dashboard-telemetry.element.js +140 -0
  1831. package/dist-cms/packages/settings/data-types/components/data-type-flow-input/data-type-flow-input.element.d.ts +30 -0
  1832. package/dist-cms/packages/settings/data-types/components/data-type-flow-input/data-type-flow-input.element.js +108 -0
  1833. package/dist-cms/packages/settings/data-types/components/data-type-input/data-type-input.context.d.ts +6 -0
  1834. package/dist-cms/packages/settings/data-types/components/data-type-input/data-type-input.context.js +7 -0
  1835. package/dist-cms/packages/settings/data-types/components/data-type-input/data-type-input.element.d.ts +53 -0
  1836. package/dist-cms/packages/settings/data-types/components/data-type-input/data-type-input.element.js +134 -0
  1837. package/dist-cms/packages/settings/data-types/components/index.d.ts +3 -0
  1838. package/dist-cms/packages/settings/data-types/components/index.js +3 -0
  1839. package/dist-cms/packages/settings/data-types/components/ref-data-type/ref-data-type.element.d.ts +31 -0
  1840. package/dist-cms/packages/settings/data-types/components/ref-data-type/ref-data-type.element.js +91 -0
  1841. package/dist-cms/packages/settings/data-types/entities.d.ts +3 -0
  1842. package/dist-cms/packages/settings/data-types/entities.js +3 -0
  1843. package/dist-cms/packages/settings/data-types/entity-actions/copy/copy.action.d.ts +8 -0
  1844. package/dist-cms/packages/settings/data-types/entity-actions/copy/copy.action.js +22 -0
  1845. package/dist-cms/packages/settings/data-types/entity-actions/copy/manifests.d.ts +2 -0
  1846. package/dist-cms/packages/settings/data-types/entity-actions/copy/manifests.js +21 -0
  1847. package/dist-cms/packages/settings/data-types/entity-actions/create/create.action.d.ts +8 -0
  1848. package/dist-cms/packages/settings/data-types/entity-actions/create/create.action.js +22 -0
  1849. package/dist-cms/packages/settings/data-types/entity-actions/create/manifests.d.ts +2 -0
  1850. package/dist-cms/packages/settings/data-types/entity-actions/create/manifests.js +27 -0
  1851. package/dist-cms/packages/settings/data-types/entity-actions/create/modal/data-type-create-options-modal.element.d.ts +17 -0
  1852. package/dist-cms/packages/settings/data-types/entity-actions/create/modal/data-type-create-options-modal.element.js +64 -0
  1853. package/dist-cms/packages/settings/data-types/entity-actions/create/modal/index.d.ts +5 -0
  1854. package/dist-cms/packages/settings/data-types/entity-actions/create/modal/index.js +5 -0
  1855. package/dist-cms/packages/settings/data-types/entity-actions/manifests.d.ts +1 -0
  1856. package/dist-cms/packages/settings/data-types/entity-actions/manifests.js +54 -0
  1857. package/dist-cms/packages/settings/data-types/entity-actions/move/manifests.d.ts +2 -0
  1858. package/dist-cms/packages/settings/data-types/entity-actions/move/manifests.js +21 -0
  1859. package/dist-cms/packages/settings/data-types/entity-actions/move/move.action.d.ts +8 -0
  1860. package/dist-cms/packages/settings/data-types/entity-actions/move/move.action.js +22 -0
  1861. package/dist-cms/packages/settings/data-types/index.d.ts +4 -0
  1862. package/dist-cms/packages/settings/data-types/index.js +3 -0
  1863. package/dist-cms/packages/settings/data-types/manifests.d.ts +1 -0
  1864. package/dist-cms/packages/settings/data-types/manifests.js +14 -0
  1865. package/dist-cms/packages/settings/data-types/menu-item/manifests.d.ts +1 -0
  1866. package/dist-cms/packages/settings/data-types/menu-item/manifests.js +17 -0
  1867. package/dist-cms/packages/settings/data-types/modals/data-type-picker-flow/data-type-picker-flow-data-type-picker-modal.element.d.ts +23 -0
  1868. package/dist-cms/packages/settings/data-types/modals/data-type-picker-flow/data-type-picker-flow-data-type-picker-modal.element.js +205 -0
  1869. package/dist-cms/packages/settings/data-types/modals/data-type-picker-flow/data-type-picker-flow-modal.element.d.ts +38 -0
  1870. package/dist-cms/packages/settings/data-types/modals/data-type-picker-flow/data-type-picker-flow-modal.element.js +305 -0
  1871. package/dist-cms/packages/settings/data-types/modals/manifests.d.ts +2 -0
  1872. package/dist-cms/packages/settings/data-types/modals/manifests.js +21 -0
  1873. package/dist-cms/packages/settings/data-types/modals/property-editor-ui-picker/property-editor-ui-picker-modal.element.d.ts +28 -0
  1874. package/dist-cms/packages/settings/data-types/modals/property-editor-ui-picker/property-editor-ui-picker-modal.element.js +178 -0
  1875. package/dist-cms/packages/settings/data-types/models.d.ts +4 -0
  1876. package/dist-cms/packages/settings/data-types/models.js +1 -0
  1877. package/dist-cms/packages/settings/data-types/repository/data-type-item.store.d.ts +20 -0
  1878. package/dist-cms/packages/settings/data-types/repository/data-type-item.store.js +23 -0
  1879. package/dist-cms/packages/settings/data-types/repository/data-type.repository.d.ts +76 -0
  1880. package/dist-cms/packages/settings/data-types/repository/data-type.repository.js +300 -0
  1881. package/dist-cms/packages/settings/data-types/repository/data-type.store.d.ts +38 -0
  1882. package/dist-cms/packages/settings/data-types/repository/data-type.store.js +48 -0
  1883. package/dist-cms/packages/settings/data-types/repository/data-type.tree.store.d.ts +18 -0
  1884. package/dist-cms/packages/settings/data-types/repository/data-type.tree.store.js +20 -0
  1885. package/dist-cms/packages/settings/data-types/repository/index.d.ts +1 -0
  1886. package/dist-cms/packages/settings/data-types/repository/index.js +1 -0
  1887. package/dist-cms/packages/settings/data-types/repository/manifests.d.ts +6 -0
  1888. package/dist-cms/packages/settings/data-types/repository/manifests.js +33 -0
  1889. package/dist-cms/packages/settings/data-types/repository/sources/data-type-copy.server.data.d.ts +23 -0
  1890. package/dist-cms/packages/settings/data-types/repository/sources/data-type-copy.server.data.js +36 -0
  1891. package/dist-cms/packages/settings/data-types/repository/sources/data-type-folder.server.data.d.ts +55 -0
  1892. package/dist-cms/packages/settings/data-types/repository/sources/data-type-folder.server.data.js +89 -0
  1893. package/dist-cms/packages/settings/data-types/repository/sources/data-type-item.server.data.d.ts +25 -0
  1894. package/dist-cms/packages/settings/data-types/repository/sources/data-type-item.server.data.js +32 -0
  1895. package/dist-cms/packages/settings/data-types/repository/sources/data-type-move.server.data.d.ts +24 -0
  1896. package/dist-cms/packages/settings/data-types/repository/sources/data-type-move.server.data.js +37 -0
  1897. package/dist-cms/packages/settings/data-types/repository/sources/data-type.server.data.d.ts +55 -0
  1898. package/dist-cms/packages/settings/data-types/repository/sources/data-type.server.data.js +92 -0
  1899. package/dist-cms/packages/settings/data-types/repository/sources/data-type.tree.server.data.d.ts +37 -0
  1900. package/dist-cms/packages/settings/data-types/repository/sources/data-type.tree.server.data.js +60 -0
  1901. package/dist-cms/packages/settings/data-types/tree/manifests.d.ts +2 -0
  1902. package/dist-cms/packages/settings/data-types/tree/manifests.js +19 -0
  1903. package/dist-cms/packages/settings/data-types/workspace/data-type-workspace-editor.element.d.ts +20 -0
  1904. package/dist-cms/packages/settings/data-types/workspace/data-type-workspace-editor.element.js +89 -0
  1905. package/dist-cms/packages/settings/data-types/workspace/data-type-workspace.context.d.ts +25 -0
  1906. package/dist-cms/packages/settings/data-types/workspace/data-type-workspace.context.js +80 -0
  1907. package/dist-cms/packages/settings/data-types/workspace/data-type-workspace.element.d.ts +14 -0
  1908. package/dist-cms/packages/settings/data-types/workspace/data-type-workspace.element.js +48 -0
  1909. package/dist-cms/packages/settings/data-types/workspace/manifests.d.ts +2 -0
  1910. package/dist-cms/packages/settings/data-types/workspace/manifests.js +60 -0
  1911. package/dist-cms/packages/settings/data-types/workspace/views/details/data-type-details-workspace-view.element.d.ts +29 -0
  1912. package/dist-cms/packages/settings/data-types/workspace/views/details/data-type-details-workspace-view.element.js +182 -0
  1913. package/dist-cms/packages/settings/data-types/workspace/views/info/workspace-view-data-type-info.element.d.ts +19 -0
  1914. package/dist-cms/packages/settings/data-types/workspace/views/info/workspace-view-data-type-info.element.js +67 -0
  1915. package/dist-cms/packages/settings/extensions/manifests.d.ts +1 -0
  1916. package/dist-cms/packages/settings/extensions/manifests.js +3 -0
  1917. package/dist-cms/packages/settings/extensions/menu-item/manifests.d.ts +2 -0
  1918. package/dist-cms/packages/settings/extensions/menu-item/manifests.js +15 -0
  1919. package/dist-cms/packages/settings/extensions/workspace/extension-root-workspace.element.d.ts +16 -0
  1920. package/dist-cms/packages/settings/extensions/workspace/extension-root-workspace.element.js +98 -0
  1921. package/dist-cms/packages/settings/extensions/workspace/manifests.d.ts +2 -0
  1922. package/dist-cms/packages/settings/extensions/workspace/manifests.js +12 -0
  1923. package/dist-cms/packages/settings/languages/app-language-select/app-language-select.element.d.ts +16 -0
  1924. package/dist-cms/packages/settings/languages/app-language-select/app-language-select.element.js +131 -0
  1925. package/dist-cms/packages/settings/languages/app-language-select/app-language.context.d.ts +11 -0
  1926. package/dist-cms/packages/settings/languages/app-language-select/app-language.context.js +44 -0
  1927. package/dist-cms/packages/settings/languages/app-language-select/manifests.d.ts +2 -0
  1928. package/dist-cms/packages/settings/languages/app-language-select/manifests.js +19 -0
  1929. package/dist-cms/packages/settings/languages/components/index.d.ts +1 -0
  1930. package/dist-cms/packages/settings/languages/components/index.js +1 -0
  1931. package/dist-cms/packages/settings/languages/components/input-language-picker/input-language-picker.context.d.ts +6 -0
  1932. package/dist-cms/packages/settings/languages/components/input-language-picker/input-language-picker.context.js +7 -0
  1933. package/dist-cms/packages/settings/languages/components/input-language-picker/input-language-picker.element.d.ts +53 -0
  1934. package/dist-cms/packages/settings/languages/components/input-language-picker/input-language-picker.element.js +139 -0
  1935. package/dist-cms/packages/settings/languages/entity-actions/language-create-entity-action.d.ts +7 -0
  1936. package/dist-cms/packages/settings/languages/entity-actions/language-create-entity-action.js +11 -0
  1937. package/dist-cms/packages/settings/languages/entity-actions/manifests.d.ts +2 -0
  1938. package/dist-cms/packages/settings/languages/entity-actions/manifests.js +36 -0
  1939. package/dist-cms/packages/settings/languages/index.d.ts +4 -0
  1940. package/dist-cms/packages/settings/languages/index.js +4 -0
  1941. package/dist-cms/packages/settings/languages/manifests.d.ts +6 -0
  1942. package/dist-cms/packages/settings/languages/manifests.js +14 -0
  1943. package/dist-cms/packages/settings/languages/menu-item/manifests.d.ts +2 -0
  1944. package/dist-cms/packages/settings/languages/menu-item/manifests.js +15 -0
  1945. package/dist-cms/packages/settings/languages/modals/language-picker/language-picker-modal.element.d.ts +16 -0
  1946. package/dist-cms/packages/settings/languages/modals/language-picker/language-picker-modal.element.js +72 -0
  1947. package/dist-cms/packages/settings/languages/modals/manifests.d.ts +2 -0
  1948. package/dist-cms/packages/settings/languages/modals/manifests.js +9 -0
  1949. package/dist-cms/packages/settings/languages/repository/index.d.ts +1 -0
  1950. package/dist-cms/packages/settings/languages/repository/index.js +1 -0
  1951. package/dist-cms/packages/settings/languages/repository/language-item.store.d.ts +16 -0
  1952. package/dist-cms/packages/settings/languages/repository/language-item.store.js +18 -0
  1953. package/dist-cms/packages/settings/languages/repository/language.repository.d.ts +52 -0
  1954. package/dist-cms/packages/settings/languages/repository/language.repository.js +118 -0
  1955. package/dist-cms/packages/settings/languages/repository/language.store.d.ts +18 -0
  1956. package/dist-cms/packages/settings/languages/repository/language.store.js +26 -0
  1957. package/dist-cms/packages/settings/languages/repository/manifests.d.ts +11 -0
  1958. package/dist-cms/packages/settings/languages/repository/manifests.js +25 -0
  1959. package/dist-cms/packages/settings/languages/repository/sources/language-item.server.data.d.ts +20 -0
  1960. package/dist-cms/packages/settings/languages/repository/sources/language-item.server.data.js +27 -0
  1961. package/dist-cms/packages/settings/languages/repository/sources/language.server.data.d.ts +64 -0
  1962. package/dist-cms/packages/settings/languages/repository/sources/language.server.data.js +90 -0
  1963. package/dist-cms/packages/settings/languages/workspace/language/language-workspace-editor.element.d.ts +16 -0
  1964. package/dist-cms/packages/settings/languages/workspace/language/language-workspace-editor.element.js +95 -0
  1965. package/dist-cms/packages/settings/languages/workspace/language/language-workspace.context.d.ts +25 -0
  1966. package/dist-cms/packages/settings/languages/workspace/language/language-workspace.context.js +88 -0
  1967. package/dist-cms/packages/settings/languages/workspace/language/language-workspace.element.d.ts +15 -0
  1968. package/dist-cms/packages/settings/languages/workspace/language/language-workspace.element.js +60 -0
  1969. package/dist-cms/packages/settings/languages/workspace/language/manifests.d.ts +2 -0
  1970. package/dist-cms/packages/settings/languages/workspace/language/manifests.js +44 -0
  1971. package/dist-cms/packages/settings/languages/workspace/language/views/details/language-details-workspace-view.element.d.ts +21 -0
  1972. package/dist-cms/packages/settings/languages/workspace/language/views/details/language-details-workspace-view.element.js +200 -0
  1973. package/dist-cms/packages/settings/languages/workspace/language-root/components/language-root-table-delete-column-layout.element.d.ts +15 -0
  1974. package/dist-cms/packages/settings/languages/workspace/language-root/components/language-root-table-delete-column-layout.element.js +52 -0
  1975. package/dist-cms/packages/settings/languages/workspace/language-root/components/language-root-table-name-column-layout.element.d.ts +14 -0
  1976. package/dist-cms/packages/settings/languages/workspace/language-root/components/language-root-table-name-column-layout.element.js +22 -0
  1977. package/dist-cms/packages/settings/languages/workspace/language-root/language-root-workspace.element.d.ts +19 -0
  1978. package/dist-cms/packages/settings/languages/workspace/language-root/language-root-workspace.element.js +141 -0
  1979. package/dist-cms/packages/settings/languages/workspace/language-root/manifests.d.ts +2 -0
  1980. package/dist-cms/packages/settings/languages/workspace/language-root/manifests.js +12 -0
  1981. package/dist-cms/packages/settings/languages/workspace/manifests.d.ts +1 -0
  1982. package/dist-cms/packages/settings/languages/workspace/manifests.js +3 -0
  1983. package/dist-cms/packages/settings/logviewer/components/donut-chart/donut-chart.element.d.ts +70 -0
  1984. package/dist-cms/packages/settings/logviewer/components/donut-chart/donut-chart.element.js +326 -0
  1985. package/dist-cms/packages/settings/logviewer/components/donut-chart/donut-slice.element.d.ts +41 -0
  1986. package/dist-cms/packages/settings/logviewer/components/donut-chart/donut-slice.element.js +62 -0
  1987. package/dist-cms/packages/settings/logviewer/components/donut-chart/index.d.ts +2 -0
  1988. package/dist-cms/packages/settings/logviewer/components/donut-chart/index.js +2 -0
  1989. package/dist-cms/packages/settings/logviewer/components/index.d.ts +3 -0
  1990. package/dist-cms/packages/settings/logviewer/components/index.js +3 -0
  1991. package/dist-cms/packages/settings/logviewer/components/log-viewer-date-range-selector.element.d.ts +16 -0
  1992. package/dist-cms/packages/settings/logviewer/components/log-viewer-date-range-selector.element.js +132 -0
  1993. package/dist-cms/packages/settings/logviewer/components/log-viewer-too-many-logs-warning.element.d.ts +10 -0
  1994. package/dist-cms/packages/settings/logviewer/components/log-viewer-too-many-logs-warning.element.js +26 -0
  1995. package/dist-cms/packages/settings/logviewer/index.d.ts +1 -0
  1996. package/dist-cms/packages/settings/logviewer/index.js +1 -0
  1997. package/dist-cms/packages/settings/logviewer/manifests.d.ts +1 -0
  1998. package/dist-cms/packages/settings/logviewer/manifests.js +3 -0
  1999. package/dist-cms/packages/settings/logviewer/menu-item/manifests.d.ts +2 -0
  2000. package/dist-cms/packages/settings/logviewer/menu-item/manifests.js +15 -0
  2001. package/dist-cms/packages/settings/logviewer/repository/index.d.ts +2 -0
  2002. package/dist-cms/packages/settings/logviewer/repository/index.js +2 -0
  2003. package/dist-cms/packages/settings/logviewer/repository/log-viewer.repository.d.ts +41 -0
  2004. package/dist-cms/packages/settings/logviewer/repository/log-viewer.repository.js +62 -0
  2005. package/dist-cms/packages/settings/logviewer/repository/sources/index.d.ts +40 -0
  2006. package/dist-cms/packages/settings/logviewer/repository/sources/index.js +1 -0
  2007. package/dist-cms/packages/settings/logviewer/repository/sources/log-viewer.server.data.d.ts +154 -0
  2008. package/dist-cms/packages/settings/logviewer/repository/sources/log-viewer.server.data.js +165 -0
  2009. package/dist-cms/packages/settings/logviewer/workspace/logviewer-root/logviewer-root-workspace.element.d.ts +27 -0
  2010. package/dist-cms/packages/settings/logviewer/workspace/logviewer-root/logviewer-root-workspace.element.js +166 -0
  2011. package/dist-cms/packages/settings/logviewer/workspace/logviewer-root/manifests.d.ts +2 -0
  2012. package/dist-cms/packages/settings/logviewer/workspace/logviewer-root/manifests.js +52 -0
  2013. package/dist-cms/packages/settings/logviewer/workspace/logviewer.context.d.ts +52 -0
  2014. package/dist-cms/packages/settings/logviewer/workspace/logviewer.context.js +253 -0
  2015. package/dist-cms/packages/settings/logviewer/workspace/manifests.d.ts +1 -0
  2016. package/dist-cms/packages/settings/logviewer/workspace/manifests.js +2 -0
  2017. package/dist-cms/packages/settings/logviewer/workspace/views/overview/components/index.d.ts +4 -0
  2018. package/dist-cms/packages/settings/logviewer/workspace/views/overview/components/index.js +4 -0
  2019. package/dist-cms/packages/settings/logviewer/workspace/views/overview/components/log-viewer-log-level-overview.element.d.ts +18 -0
  2020. package/dist-cms/packages/settings/logviewer/workspace/views/overview/components/log-viewer-log-level-overview.element.js +49 -0
  2021. package/dist-cms/packages/settings/logviewer/workspace/views/overview/components/log-viewer-log-types-chart.element.d.ts +17 -0
  2022. package/dist-cms/packages/settings/logviewer/workspace/views/overview/components/log-viewer-log-types-chart.element.js +157 -0
  2023. package/dist-cms/packages/settings/logviewer/workspace/views/overview/components/log-viewer-message-templates-overview.element.d.ts +13 -0
  2024. package/dist-cms/packages/settings/logviewer/workspace/views/overview/components/log-viewer-message-templates-overview.element.js +112 -0
  2025. package/dist-cms/packages/settings/logviewer/workspace/views/overview/components/log-viewer-saved-searches-overview.element.d.ts +13 -0
  2026. package/dist-cms/packages/settings/logviewer/workspace/views/overview/components/log-viewer-saved-searches-overview.element.js +85 -0
  2027. package/dist-cms/packages/settings/logviewer/workspace/views/overview/index.d.ts +3 -0
  2028. package/dist-cms/packages/settings/logviewer/workspace/views/overview/index.js +3 -0
  2029. package/dist-cms/packages/settings/logviewer/workspace/views/overview/log-overview-view.element.d.ts +15 -0
  2030. package/dist-cms/packages/settings/logviewer/workspace/views/overview/log-overview-view.element.js +169 -0
  2031. package/dist-cms/packages/settings/logviewer/workspace/views/search/components/index.d.ts +6 -0
  2032. package/dist-cms/packages/settings/logviewer/workspace/views/search/components/index.js +6 -0
  2033. package/dist-cms/packages/settings/logviewer/workspace/views/search/components/log-viewer-level-tag.element.d.ts +20 -0
  2034. package/dist-cms/packages/settings/logviewer/workspace/views/search/components/log-viewer-level-tag.element.js +42 -0
  2035. package/dist-cms/packages/settings/logviewer/workspace/views/search/components/log-viewer-log-level-filter-menu.element.d.ts +16 -0
  2036. package/dist-cms/packages/settings/logviewer/workspace/views/search/components/log-viewer-log-level-filter-menu.element.js +116 -0
  2037. package/dist-cms/packages/settings/logviewer/workspace/views/search/components/log-viewer-message.element.d.ts +28 -0
  2038. package/dist-cms/packages/settings/logviewer/workspace/views/search/components/log-viewer-message.element.js +299 -0
  2039. package/dist-cms/packages/settings/logviewer/workspace/views/search/components/log-viewer-messages-list.element.d.ts +19 -0
  2040. package/dist-cms/packages/settings/logviewer/workspace/views/search/components/log-viewer-messages-list.element.js +172 -0
  2041. package/dist-cms/packages/settings/logviewer/workspace/views/search/components/log-viewer-polling-button.element.d.ts +15 -0
  2042. package/dist-cms/packages/settings/logviewer/workspace/views/search/components/log-viewer-polling-button.element.js +123 -0
  2043. package/dist-cms/packages/settings/logviewer/workspace/views/search/components/log-viewer-search-input-modal.element.d.ts +18 -0
  2044. package/dist-cms/packages/settings/logviewer/workspace/views/search/components/log-viewer-search-input-modal.element.js +69 -0
  2045. package/dist-cms/packages/settings/logviewer/workspace/views/search/components/log-viewer-search-input.element.d.ts +27 -0
  2046. package/dist-cms/packages/settings/logviewer/workspace/views/search/components/log-viewer-search-input.element.js +254 -0
  2047. package/dist-cms/packages/settings/logviewer/workspace/views/search/index.d.ts +3 -0
  2048. package/dist-cms/packages/settings/logviewer/workspace/views/search/index.js +3 -0
  2049. package/dist-cms/packages/settings/logviewer/workspace/views/search/log-search-view.element.d.ts +13 -0
  2050. package/dist-cms/packages/settings/logviewer/workspace/views/search/log-search-view.element.js +102 -0
  2051. package/dist-cms/packages/settings/manifests.d.ts +6 -0
  2052. package/dist-cms/packages/settings/manifests.js +20 -0
  2053. package/dist-cms/packages/settings/menu.manifests.d.ts +2 -0
  2054. package/dist-cms/packages/settings/menu.manifests.js +9 -0
  2055. package/dist-cms/packages/settings/relation-types/index.d.ts +1 -0
  2056. package/dist-cms/packages/settings/relation-types/index.js +1 -0
  2057. package/dist-cms/packages/settings/relation-types/manifests.d.ts +1 -0
  2058. package/dist-cms/packages/settings/relation-types/manifests.js +5 -0
  2059. package/dist-cms/packages/settings/relation-types/menu-item/manifests.d.ts +1 -0
  2060. package/dist-cms/packages/settings/relation-types/menu-item/manifests.js +16 -0
  2061. package/dist-cms/packages/settings/relation-types/repository/index.d.ts +1 -0
  2062. package/dist-cms/packages/settings/relation-types/repository/index.js +1 -0
  2063. package/dist-cms/packages/settings/relation-types/repository/manifests.d.ts +5 -0
  2064. package/dist-cms/packages/settings/relation-types/repository/manifests.js +25 -0
  2065. package/dist-cms/packages/settings/relation-types/repository/relation-type.repository.d.ts +53 -0
  2066. package/dist-cms/packages/settings/relation-types/repository/relation-type.repository.js +156 -0
  2067. package/dist-cms/packages/settings/relation-types/repository/relation-type.store.d.ts +37 -0
  2068. package/dist-cms/packages/settings/relation-types/repository/relation-type.store.js +44 -0
  2069. package/dist-cms/packages/settings/relation-types/repository/relation-type.tree.store.d.ts +18 -0
  2070. package/dist-cms/packages/settings/relation-types/repository/relation-type.tree.store.js +20 -0
  2071. package/dist-cms/packages/settings/relation-types/repository/sources/index.d.ts +6 -0
  2072. package/dist-cms/packages/settings/relation-types/repository/sources/index.js +1 -0
  2073. package/dist-cms/packages/settings/relation-types/repository/sources/relation-type.server.data.d.ts +55 -0
  2074. package/dist-cms/packages/settings/relation-types/repository/sources/relation-type.server.data.js +84 -0
  2075. package/dist-cms/packages/settings/relation-types/repository/sources/relation-type.tree.server.data.d.ts +35 -0
  2076. package/dist-cms/packages/settings/relation-types/repository/sources/relation-type.tree.server.data.js +67 -0
  2077. package/dist-cms/packages/settings/relation-types/tree/manifests.d.ts +2 -0
  2078. package/dist-cms/packages/settings/relation-types/tree/manifests.js +19 -0
  2079. package/dist-cms/packages/settings/relation-types/workspace/manifests.d.ts +2 -0
  2080. package/dist-cms/packages/settings/relation-types/workspace/manifests.js +59 -0
  2081. package/dist-cms/packages/settings/relation-types/workspace/relation-type-workspace-editor.element.d.ts +19 -0
  2082. package/dist-cms/packages/settings/relation-types/workspace/relation-type-workspace-editor.element.js +83 -0
  2083. package/dist-cms/packages/settings/relation-types/workspace/relation-type-workspace.context.d.ts +21 -0
  2084. package/dist-cms/packages/settings/relation-types/workspace/relation-type-workspace.context.js +62 -0
  2085. package/dist-cms/packages/settings/relation-types/workspace/relation-type-workspace.element.d.ts +19 -0
  2086. package/dist-cms/packages/settings/relation-types/workspace/relation-type-workspace.element.js +63 -0
  2087. package/dist-cms/packages/settings/relation-types/workspace/views/relation/workspace-view-relation-type-relation.element.d.ts +17 -0
  2088. package/dist-cms/packages/settings/relation-types/workspace/views/relation/workspace-view-relation-type-relation.element.js +150 -0
  2089. package/dist-cms/packages/settings/relation-types/workspace/views/relation-type/relation-type-workspace-view-relation-type.element.d.ts +16 -0
  2090. package/dist-cms/packages/settings/relation-types/workspace/views/relation-type/relation-type-workspace-view-relation-type.element.js +89 -0
  2091. package/dist-cms/packages/settings/section.manifests.d.ts +3 -0
  2092. package/dist-cms/packages/settings/section.manifests.js +26 -0
  2093. package/dist-cms/packages/settings/umbraco-package.d.ts +7 -0
  2094. package/dist-cms/packages/settings/umbraco-package.js +9 -0
  2095. package/dist-cms/packages/tags/components/index.d.ts +1 -0
  2096. package/dist-cms/packages/tags/components/index.js +1 -0
  2097. package/dist-cms/packages/tags/components/tags-input/tags-input.element.d.ts +28 -0
  2098. package/dist-cms/packages/tags/components/tags-input/tags-input.element.js +395 -0
  2099. package/dist-cms/packages/tags/index.d.ts +2 -0
  2100. package/dist-cms/packages/tags/index.js +2 -0
  2101. package/dist-cms/packages/tags/manifests.d.ts +1 -0
  2102. package/dist-cms/packages/tags/manifests.js +3 -0
  2103. package/dist-cms/packages/tags/property-editors/manifests.d.ts +2 -0
  2104. package/dist-cms/packages/tags/property-editors/manifests.js +2 -0
  2105. package/dist-cms/packages/tags/property-editors/tags/config/storage-type/manifests.d.ts +2 -0
  2106. package/dist-cms/packages/tags/property-editors/tags/config/storage-type/manifests.js +13 -0
  2107. package/dist-cms/packages/tags/property-editors/tags/config/storage-type/property-editor-ui-tags-storage-type.element.d.ts +16 -0
  2108. package/dist-cms/packages/tags/property-editors/tags/config/storage-type/property-editor-ui-tags-storage-type.element.js +33 -0
  2109. package/dist-cms/packages/tags/property-editors/tags/manifests.d.ts +2 -0
  2110. package/dist-cms/packages/tags/property-editors/tags/manifests.js +15 -0
  2111. package/dist-cms/packages/tags/property-editors/tags/property-editor-ui-tags.element.d.ts +24 -0
  2112. package/dist-cms/packages/tags/property-editors/tags/property-editor-ui-tags.element.js +65 -0
  2113. package/dist-cms/packages/tags/repository/index.d.ts +1 -0
  2114. package/dist-cms/packages/tags/repository/index.js +1 -0
  2115. package/dist-cms/packages/tags/repository/manifests.d.ts +4 -0
  2116. package/dist-cms/packages/tags/repository/manifests.js +17 -0
  2117. package/dist-cms/packages/tags/repository/sources/tag.server.data.d.ts +28 -0
  2118. package/dist-cms/packages/tags/repository/sources/tag.server.data.js +27 -0
  2119. package/dist-cms/packages/tags/repository/tag.repository.d.ts +22 -0
  2120. package/dist-cms/packages/tags/repository/tag.repository.js +42 -0
  2121. package/dist-cms/packages/tags/repository/tag.store.d.ts +40 -0
  2122. package/dist-cms/packages/tags/repository/tag.store.js +58 -0
  2123. package/dist-cms/packages/tags/umbraco-package.d.ts +8 -0
  2124. package/dist-cms/packages/tags/umbraco-package.js +10 -0
  2125. package/dist-cms/packages/templating/code-editor/code-editor.controller.d.ts +163 -0
  2126. package/dist-cms/packages/templating/code-editor/code-editor.controller.js +347 -0
  2127. package/dist-cms/packages/templating/code-editor/code-editor.element.d.ts +84 -0
  2128. package/dist-cms/packages/templating/code-editor/code-editor.element.js +174 -0
  2129. package/dist-cms/packages/templating/code-editor/code-editor.model.d.ts +222 -0
  2130. package/dist-cms/packages/templating/code-editor/code-editor.model.js +7 -0
  2131. package/dist-cms/packages/templating/code-editor/index.d.ts +3 -0
  2132. package/dist-cms/packages/templating/code-editor/index.js +3 -0
  2133. package/dist-cms/packages/templating/code-editor/themes/code-editor.dark.theme.d.ts +2 -0
  2134. package/dist-cms/packages/templating/code-editor/themes/code-editor.dark.theme.js +8 -0
  2135. package/dist-cms/packages/templating/code-editor/themes/code-editor.hc-dark.theme.d.ts +2 -0
  2136. package/dist-cms/packages/templating/code-editor/themes/code-editor.hc-dark.theme.js +6 -0
  2137. package/dist-cms/packages/templating/code-editor/themes/code-editor.hc-light.theme.d.ts +2 -0
  2138. package/dist-cms/packages/templating/code-editor/themes/code-editor.hc-light.theme.js +6 -0
  2139. package/dist-cms/packages/templating/code-editor/themes/code-editor.light.theme.d.ts +2 -0
  2140. package/dist-cms/packages/templating/code-editor/themes/code-editor.light.theme.js +6 -0
  2141. package/dist-cms/packages/templating/code-editor/themes/index.d.ts +12 -0
  2142. package/dist-cms/packages/templating/code-editor/themes/index.js +15 -0
  2143. package/dist-cms/packages/templating/components/index.d.ts +1 -0
  2144. package/dist-cms/packages/templating/components/index.js +1 -0
  2145. package/dist-cms/packages/templating/components/insert-menu/templating-insert-menu.element.d.ts +21 -0
  2146. package/dist-cms/packages/templating/components/insert-menu/templating-insert-menu.element.js +179 -0
  2147. package/dist-cms/packages/templating/index.d.ts +2 -0
  2148. package/dist-cms/packages/templating/index.js +2 -0
  2149. package/dist-cms/packages/templating/manifests.d.ts +1 -0
  2150. package/dist-cms/packages/templating/manifests.js +12 -0
  2151. package/dist-cms/packages/templating/menu.manifests.d.ts +2 -0
  2152. package/dist-cms/packages/templating/menu.manifests.js +23 -0
  2153. package/dist-cms/packages/templating/modals/insert-choose-type-sidebar.element.d.ts +27 -0
  2154. package/dist-cms/packages/templating/modals/insert-choose-type-sidebar.element.js +110 -0
  2155. package/dist-cms/packages/templating/modals/insert-section-modal/insert-section-input.element.d.ts +23 -0
  2156. package/dist-cms/packages/templating/modals/insert-section-modal/insert-section-input.element.js +145 -0
  2157. package/dist-cms/packages/templating/modals/insert-section-modal/insert-section-modal.element.d.ts +23 -0
  2158. package/dist-cms/packages/templating/modals/insert-section-modal/insert-section-modal.element.js +134 -0
  2159. package/dist-cms/packages/templating/modals/manifests.d.ts +4 -0
  2160. package/dist-cms/packages/templating/modals/manifests.js +24 -0
  2161. package/dist-cms/packages/templating/modals/modal-tokens.d.ts +0 -0
  2162. package/dist-cms/packages/templating/modals/modal-tokens.js +2 -0
  2163. package/dist-cms/packages/templating/modals/partial-view-picker-modal.element.d.ts +17 -0
  2164. package/dist-cms/packages/templating/modals/partial-view-picker-modal.element.js +86 -0
  2165. package/dist-cms/packages/templating/partial-views/config.d.ts +11 -0
  2166. package/dist-cms/packages/templating/partial-views/config.js +7 -0
  2167. package/dist-cms/packages/templating/partial-views/entity-actions/create/create-empty.action.d.ts +8 -0
  2168. package/dist-cms/packages/templating/partial-views/entity-actions/create/create-empty.action.js +9 -0
  2169. package/dist-cms/packages/templating/partial-views/entity-actions/create/create-from-snippet.action.d.ts +8 -0
  2170. package/dist-cms/packages/templating/partial-views/entity-actions/create/create-from-snippet.action.js +9 -0
  2171. package/dist-cms/packages/templating/partial-views/entity-actions/manifests.d.ts +2 -0
  2172. package/dist-cms/packages/templating/partial-views/entity-actions/manifests.js +55 -0
  2173. package/dist-cms/packages/templating/partial-views/index.d.ts +1 -0
  2174. package/dist-cms/packages/templating/partial-views/index.js +1 -0
  2175. package/dist-cms/packages/templating/partial-views/manifests.d.ts +1 -0
  2176. package/dist-cms/packages/templating/partial-views/manifests.js +12 -0
  2177. package/dist-cms/packages/templating/partial-views/menu-item/manifests.d.ts +1 -0
  2178. package/dist-cms/packages/templating/partial-views/menu-item/manifests.js +18 -0
  2179. package/dist-cms/packages/templating/partial-views/repository/index.d.ts +1 -0
  2180. package/dist-cms/packages/templating/partial-views/repository/index.js +1 -0
  2181. package/dist-cms/packages/templating/partial-views/repository/manifests.d.ts +4 -0
  2182. package/dist-cms/packages/templating/partial-views/repository/manifests.js +25 -0
  2183. package/dist-cms/packages/templating/partial-views/repository/partial-views.repository.d.ts +59 -0
  2184. package/dist-cms/packages/templating/partial-views/repository/partial-views.repository.js +109 -0
  2185. package/dist-cms/packages/templating/partial-views/repository/partial-views.store.d.ts +31 -0
  2186. package/dist-cms/packages/templating/partial-views/repository/partial-views.store.js +37 -0
  2187. package/dist-cms/packages/templating/partial-views/repository/partial-views.tree.store.d.ts +19 -0
  2188. package/dist-cms/packages/templating/partial-views/repository/partial-views.tree.store.js +21 -0
  2189. package/dist-cms/packages/templating/partial-views/repository/sources/index.d.ts +11 -0
  2190. package/dist-cms/packages/templating/partial-views/repository/sources/index.js +1 -0
  2191. package/dist-cms/packages/templating/partial-views/repository/sources/partial-views.detail.server.data.d.ts +26 -0
  2192. package/dist-cms/packages/templating/partial-views/repository/sources/partial-views.detail.server.data.js +36 -0
  2193. package/dist-cms/packages/templating/partial-views/repository/sources/partial-views.tree.server.data.d.ts +14 -0
  2194. package/dist-cms/packages/templating/partial-views/repository/sources/partial-views.tree.server.data.js +31 -0
  2195. package/dist-cms/packages/templating/partial-views/tree/manifests.d.ts +2 -0
  2196. package/dist-cms/packages/templating/partial-views/tree/manifests.js +20 -0
  2197. package/dist-cms/packages/templating/partial-views/workspace/manifests.d.ts +2 -0
  2198. package/dist-cms/packages/templating/partial-views/workspace/manifests.js +28 -0
  2199. package/dist-cms/packages/templating/partial-views/workspace/partial-views-workspace-edit.element.d.ts +16 -0
  2200. package/dist-cms/packages/templating/partial-views/workspace/partial-views-workspace-edit.element.js +102 -0
  2201. package/dist-cms/packages/templating/partial-views/workspace/partial-views-workspace.context.d.ts +20 -0
  2202. package/dist-cms/packages/templating/partial-views/workspace/partial-views-workspace.context.js +48 -0
  2203. package/dist-cms/packages/templating/partial-views/workspace/partial-views-workspace.element.d.ts +15 -0
  2204. package/dist-cms/packages/templating/partial-views/workspace/partial-views-workspace.element.js +51 -0
  2205. package/dist-cms/packages/templating/stylesheets/index.d.ts +6 -0
  2206. package/dist-cms/packages/templating/stylesheets/index.js +2 -0
  2207. package/dist-cms/packages/templating/stylesheets/manifests.d.ts +1 -0
  2208. package/dist-cms/packages/templating/stylesheets/manifests.js +5 -0
  2209. package/dist-cms/packages/templating/stylesheets/menu-item/manifests.d.ts +1 -0
  2210. package/dist-cms/packages/templating/stylesheets/menu-item/manifests.js +17 -0
  2211. package/dist-cms/packages/templating/stylesheets/repository/index.d.ts +1 -0
  2212. package/dist-cms/packages/templating/stylesheets/repository/index.js +1 -0
  2213. package/dist-cms/packages/templating/stylesheets/repository/manifests.d.ts +5 -0
  2214. package/dist-cms/packages/templating/stylesheets/repository/manifests.js +18 -0
  2215. package/dist-cms/packages/templating/stylesheets/repository/sources/stylesheet.server.data.d.ts +32 -0
  2216. package/dist-cms/packages/templating/stylesheets/repository/sources/stylesheet.server.data.js +41 -0
  2217. package/dist-cms/packages/templating/stylesheets/repository/sources/stylesheet.tree.server.data.d.ts +38 -0
  2218. package/dist-cms/packages/templating/stylesheets/repository/sources/stylesheet.tree.server.data.js +58 -0
  2219. package/dist-cms/packages/templating/stylesheets/repository/stylesheet.repository.d.ts +37 -0
  2220. package/dist-cms/packages/templating/stylesheets/repository/stylesheet.repository.js +81 -0
  2221. package/dist-cms/packages/templating/stylesheets/repository/stylesheet.tree.store.d.ts +18 -0
  2222. package/dist-cms/packages/templating/stylesheets/repository/stylesheet.tree.store.js +19 -0
  2223. package/dist-cms/packages/templating/stylesheets/tree/manifests.d.ts +3 -0
  2224. package/dist-cms/packages/templating/stylesheets/tree/manifests.js +22 -0
  2225. package/dist-cms/packages/templating/stylesheets/workspace/manifests.d.ts +2 -0
  2226. package/dist-cms/packages/templating/stylesheets/workspace/manifests.js +12 -0
  2227. package/dist-cms/packages/templating/stylesheets/workspace/stylesheet-workspace-edit.element.d.ts +11 -0
  2228. package/dist-cms/packages/templating/stylesheets/workspace/stylesheet-workspace-edit.element.js +27 -0
  2229. package/dist-cms/packages/templating/stylesheets/workspace/stylesheet-workspace.context.d.ts +15 -0
  2230. package/dist-cms/packages/templating/stylesheets/workspace/stylesheet-workspace.context.js +33 -0
  2231. package/dist-cms/packages/templating/stylesheets/workspace/stylesheet-workspace.element.d.ts +14 -0
  2232. package/dist-cms/packages/templating/stylesheets/workspace/stylesheet-workspace.element.js +54 -0
  2233. package/dist-cms/packages/templating/templates/components/alias-input/alias-input.d.ts +14 -0
  2234. package/dist-cms/packages/templating/templates/components/alias-input/alias-input.js +81 -0
  2235. package/dist-cms/packages/templating/templates/components/index.d.ts +3 -0
  2236. package/dist-cms/packages/templating/templates/components/index.js +3 -0
  2237. package/dist-cms/packages/templating/templates/components/input-template/input-template.element.d.ts +54 -0
  2238. package/dist-cms/packages/templating/templates/components/input-template/input-template.element.js +168 -0
  2239. package/dist-cms/packages/templating/templates/components/template-card/template-card.element.d.ts +25 -0
  2240. package/dist-cms/packages/templating/templates/components/template-card/template-card.element.js +162 -0
  2241. package/dist-cms/packages/templating/templates/entities.d.ts +3 -0
  2242. package/dist-cms/packages/templating/templates/entities.js +3 -0
  2243. package/dist-cms/packages/templating/templates/entity-actions/create/create.action.d.ts +8 -0
  2244. package/dist-cms/packages/templating/templates/entity-actions/create/create.action.js +13 -0
  2245. package/dist-cms/packages/templating/templates/entity-actions/manifests.d.ts +2 -0
  2246. package/dist-cms/packages/templating/templates/entity-actions/manifests.js +35 -0
  2247. package/dist-cms/packages/templating/templates/index.d.ts +5 -0
  2248. package/dist-cms/packages/templating/templates/index.js +5 -0
  2249. package/dist-cms/packages/templating/templates/manifests.d.ts +1 -0
  2250. package/dist-cms/packages/templating/templates/manifests.js +14 -0
  2251. package/dist-cms/packages/templating/templates/menu-item/manifests.d.ts +1 -0
  2252. package/dist-cms/packages/templating/templates/menu-item/manifests.js +17 -0
  2253. package/dist-cms/packages/templating/templates/modals/manifests.d.ts +3 -0
  2254. package/dist-cms/packages/templating/templates/modals/manifests.js +10 -0
  2255. package/dist-cms/packages/templating/templates/modals/modal-tokens.d.ts +3 -0
  2256. package/dist-cms/packages/templating/templates/modals/modal-tokens.js +6 -0
  2257. package/dist-cms/packages/templating/templates/modals/query-builder/query-builder-filter.element.d.ts +24 -0
  2258. package/dist-cms/packages/templating/templates/modals/query-builder/query-builder-filter.element.js +156 -0
  2259. package/dist-cms/packages/templating/templates/modals/query-builder/query-builder.element.d.ts +28 -0
  2260. package/dist-cms/packages/templating/templates/modals/query-builder/query-builder.element.js +277 -0
  2261. package/dist-cms/packages/templating/templates/repository/index.d.ts +1 -0
  2262. package/dist-cms/packages/templating/templates/repository/index.js +1 -0
  2263. package/dist-cms/packages/templating/templates/repository/manifests.d.ts +6 -0
  2264. package/dist-cms/packages/templating/templates/repository/manifests.js +33 -0
  2265. package/dist-cms/packages/templating/templates/repository/sources/index.d.ts +7 -0
  2266. package/dist-cms/packages/templating/templates/repository/sources/index.js +1 -0
  2267. package/dist-cms/packages/templating/templates/repository/sources/template.detail.server.data.d.ts +60 -0
  2268. package/dist-cms/packages/templating/templates/repository/sources/template.detail.server.data.js +85 -0
  2269. package/dist-cms/packages/templating/templates/repository/sources/template.item.server.data.d.ts +25 -0
  2270. package/dist-cms/packages/templating/templates/repository/sources/template.item.server.data.js +32 -0
  2271. package/dist-cms/packages/templating/templates/repository/sources/template.query-builder.server.data.d.ts +33 -0
  2272. package/dist-cms/packages/templating/templates/repository/sources/template.query-builder.server.data.js +37 -0
  2273. package/dist-cms/packages/templating/templates/repository/sources/template.tree.server.data.d.ts +37 -0
  2274. package/dist-cms/packages/templating/templates/repository/sources/template.tree.server.data.js +61 -0
  2275. package/dist-cms/packages/templating/templates/repository/template-item.store.d.ts +20 -0
  2276. package/dist-cms/packages/templating/templates/repository/template-item.store.js +23 -0
  2277. package/dist-cms/packages/templating/templates/repository/template.repository.d.ts +61 -0
  2278. package/dist-cms/packages/templating/templates/repository/template.repository.js +196 -0
  2279. package/dist-cms/packages/templating/templates/repository/template.store.d.ts +38 -0
  2280. package/dist-cms/packages/templating/templates/repository/template.store.js +47 -0
  2281. package/dist-cms/packages/templating/templates/repository/template.tree.store.d.ts +18 -0
  2282. package/dist-cms/packages/templating/templates/repository/template.tree.store.js +19 -0
  2283. package/dist-cms/packages/templating/templates/tree/manifests.d.ts +2 -0
  2284. package/dist-cms/packages/templating/templates/tree/manifests.js +20 -0
  2285. package/dist-cms/packages/templating/templates/workspace/manifests.d.ts +2 -0
  2286. package/dist-cms/packages/templating/templates/workspace/manifests.js +29 -0
  2287. package/dist-cms/packages/templating/templates/workspace/template-workspace-editor.element.d.ts +21 -0
  2288. package/dist-cms/packages/templating/templates/workspace/template-workspace-editor.element.js +266 -0
  2289. package/dist-cms/packages/templating/templates/workspace/template-workspace.context.d.ts +29 -0
  2290. package/dist-cms/packages/templating/templates/workspace/template-workspace.context.js +141 -0
  2291. package/dist-cms/packages/templating/templates/workspace/template-workspace.element.d.ts +16 -0
  2292. package/dist-cms/packages/templating/templates/workspace/template-workspace.element.js +53 -0
  2293. package/dist-cms/packages/templating/umbraco-package.d.ts +7 -0
  2294. package/dist-cms/packages/templating/umbraco-package.js +9 -0
  2295. package/dist-cms/packages/templating/utils.d.ts +9 -0
  2296. package/dist-cms/packages/templating/utils.js +44 -0
  2297. package/dist-cms/packages/translation/dashboards/dictionary/dashboard-translation-dictionary.element.d.ts +16 -0
  2298. package/dist-cms/packages/translation/dashboards/dictionary/dashboard-translation-dictionary.element.js +182 -0
  2299. package/dist-cms/packages/translation/dictionary/entity-actions/create/create-dictionary-modal.element.d.ts +15 -0
  2300. package/dist-cms/packages/translation/dictionary/entity-actions/create/create-dictionary-modal.element.js +67 -0
  2301. package/dist-cms/packages/translation/dictionary/entity-actions/create/create.action.d.ts +9 -0
  2302. package/dist-cms/packages/translation/dictionary/entity-actions/create/create.action.js +41 -0
  2303. package/dist-cms/packages/translation/dictionary/entity-actions/export/export-dictionary-modal.element.d.ts +14 -0
  2304. package/dist-cms/packages/translation/dictionary/entity-actions/export/export-dictionary-modal.element.js +47 -0
  2305. package/dist-cms/packages/translation/dictionary/entity-actions/export/export.action.d.ts +10 -0
  2306. package/dist-cms/packages/translation/dictionary/entity-actions/export/export.action.js +28 -0
  2307. package/dist-cms/packages/translation/dictionary/entity-actions/import/import-dictionary-modal.element.d.ts +19 -0
  2308. package/dist-cms/packages/translation/dictionary/entity-actions/import/import-dictionary-modal.element.js +163 -0
  2309. package/dist-cms/packages/translation/dictionary/entity-actions/import/import.action.d.ts +10 -0
  2310. package/dist-cms/packages/translation/dictionary/entity-actions/import/import.action.js +28 -0
  2311. package/dist-cms/packages/translation/dictionary/entity-actions/manifests.d.ts +2 -0
  2312. package/dist-cms/packages/translation/dictionary/entity-actions/manifests.js +121 -0
  2313. package/dist-cms/packages/translation/dictionary/entity-actions/reload.action.d.ts +8 -0
  2314. package/dist-cms/packages/translation/dictionary/entity-actions/reload.action.js +11 -0
  2315. package/dist-cms/packages/translation/dictionary/manifests.d.ts +1 -0
  2316. package/dist-cms/packages/translation/dictionary/manifests.js +14 -0
  2317. package/dist-cms/packages/translation/dictionary/menu-item/dictionary-menu-item.element.d.ts +10 -0
  2318. package/dist-cms/packages/translation/dictionary/menu-item/dictionary-menu-item.element.js +17 -0
  2319. package/dist-cms/packages/translation/dictionary/menu-item/manifests.d.ts +2 -0
  2320. package/dist-cms/packages/translation/dictionary/menu-item/manifests.js +16 -0
  2321. package/dist-cms/packages/translation/dictionary/menu.manifests.d.ts +2 -0
  2322. package/dist-cms/packages/translation/dictionary/menu.manifests.js +9 -0
  2323. package/dist-cms/packages/translation/dictionary/repository/dictionary.repository.d.ts +61 -0
  2324. package/dist-cms/packages/translation/dictionary/repository/dictionary.repository.js +185 -0
  2325. package/dist-cms/packages/translation/dictionary/repository/dictionary.store.d.ts +22 -0
  2326. package/dist-cms/packages/translation/dictionary/repository/dictionary.store.js +29 -0
  2327. package/dist-cms/packages/translation/dictionary/repository/dictionary.tree.store.d.ts +18 -0
  2328. package/dist-cms/packages/translation/dictionary/repository/dictionary.tree.store.js +19 -0
  2329. package/dist-cms/packages/translation/dictionary/repository/manifests.d.ts +5 -0
  2330. package/dist-cms/packages/translation/dictionary/repository/manifests.js +25 -0
  2331. package/dist-cms/packages/translation/dictionary/repository/sources/dictionary.detail.server.data.d.ts +86 -0
  2332. package/dist-cms/packages/translation/dictionary/repository/sources/dictionary.detail.server.data.js +122 -0
  2333. package/dist-cms/packages/translation/dictionary/repository/sources/dictionary.tree.server.data.d.ts +37 -0
  2334. package/dist-cms/packages/translation/dictionary/repository/sources/dictionary.tree.server.data.js +61 -0
  2335. package/dist-cms/packages/translation/dictionary/tree/manifests.d.ts +2 -0
  2336. package/dist-cms/packages/translation/dictionary/tree/manifests.js +19 -0
  2337. package/dist-cms/packages/translation/dictionary/workspace/dictionary-workspace-editor.element.d.ts +14 -0
  2338. package/dist-cms/packages/translation/dictionary/workspace/dictionary-workspace-editor.element.js +67 -0
  2339. package/dist-cms/packages/translation/dictionary/workspace/dictionary-workspace.context.d.ts +20 -0
  2340. package/dist-cms/packages/translation/dictionary/workspace/dictionary-workspace.context.js +69 -0
  2341. package/dist-cms/packages/translation/dictionary/workspace/dictionary-workspace.element.d.ts +14 -0
  2342. package/dist-cms/packages/translation/dictionary/workspace/dictionary-workspace.element.js +41 -0
  2343. package/dist-cms/packages/translation/dictionary/workspace/manifests.d.ts +2 -0
  2344. package/dist-cms/packages/translation/dictionary/workspace/manifests.js +46 -0
  2345. package/dist-cms/packages/translation/dictionary/workspace/views/editor/workspace-view-dictionary-editor.element.d.ts +15 -0
  2346. package/dist-cms/packages/translation/dictionary/workspace/views/editor/workspace-view-dictionary-editor.element.js +82 -0
  2347. package/dist-cms/packages/translation/manifests.d.ts +1 -0
  2348. package/dist-cms/packages/translation/manifests.js +3 -0
  2349. package/dist-cms/packages/translation/section.manifest.d.ts +2 -0
  2350. package/dist-cms/packages/translation/section.manifest.js +42 -0
  2351. package/dist-cms/packages/translation/umbraco-package.d.ts +7 -0
  2352. package/dist-cms/packages/translation/umbraco-package.js +9 -0
  2353. package/dist-cms/packages/umbraco-news/manifests.d.ts +2 -0
  2354. package/dist-cms/packages/umbraco-news/manifests.js +13 -0
  2355. package/dist-cms/packages/umbraco-news/umbraco-news-dashboard.element.d.ts +14 -0
  2356. package/dist-cms/packages/umbraco-news/umbraco-news-dashboard.element.js +60 -0
  2357. package/dist-cms/packages/umbraco-news/umbraco-package.d.ts +7 -0
  2358. package/dist-cms/packages/umbraco-news/umbraco-package.js +9 -0
  2359. package/dist-cms/packages/users/current-user/current-user-header-app.element.d.ts +18 -0
  2360. package/dist-cms/packages/users/current-user/current-user-header-app.element.js +56 -0
  2361. package/dist-cms/packages/users/current-user/current-user-history.store.d.ts +29 -0
  2362. package/dist-cms/packages/users/current-user/current-user-history.store.js +42 -0
  2363. package/dist-cms/packages/users/current-user/index.d.ts +1 -0
  2364. package/dist-cms/packages/users/current-user/index.js +2 -0
  2365. package/dist-cms/packages/users/current-user/manifests.d.ts +3 -0
  2366. package/dist-cms/packages/users/current-user/manifests.js +23 -0
  2367. package/dist-cms/packages/users/current-user/modals/change-password/change-password-modal.element.d.ts +18 -0
  2368. package/dist-cms/packages/users/current-user/modals/change-password/change-password-modal.element.js +102 -0
  2369. package/dist-cms/packages/users/current-user/modals/current-user/current-user-modal.element.d.ts +20 -0
  2370. package/dist-cms/packages/users/current-user/modals/current-user/current-user-modal.element.js +91 -0
  2371. package/dist-cms/packages/users/current-user/modals/manifests.d.ts +2 -0
  2372. package/dist-cms/packages/users/current-user/modals/manifests.js +9 -0
  2373. package/dist-cms/packages/users/current-user/user-profile-apps/manifests.d.ts +3 -0
  2374. package/dist-cms/packages/users/current-user/user-profile-apps/manifests.js +47 -0
  2375. package/dist-cms/packages/users/current-user/user-profile-apps/user-profile-app-external-login-providers.element.d.ts +11 -0
  2376. package/dist-cms/packages/users/current-user/user-profile-apps/user-profile-app-external-login-providers.element.js +24 -0
  2377. package/dist-cms/packages/users/current-user/user-profile-apps/user-profile-app-history.element.d.ts +14 -0
  2378. package/dist-cms/packages/users/current-user/user-profile-apps/user-profile-app-history.element.js +109 -0
  2379. package/dist-cms/packages/users/current-user/user-profile-apps/user-profile-app-profile.element.d.ts +18 -0
  2380. package/dist-cms/packages/users/current-user/user-profile-apps/user-profile-app-profile.element.js +62 -0
  2381. package/dist-cms/packages/users/current-user/user-profile-apps/user-profile-app-themes.element.d.ts +15 -0
  2382. package/dist-cms/packages/users/current-user/user-profile-apps/user-profile-app-themes.element.js +72 -0
  2383. package/dist-cms/packages/users/index.d.ts +2 -0
  2384. package/dist-cms/packages/users/index.js +2 -0
  2385. package/dist-cms/packages/users/manifests.d.ts +1 -0
  2386. package/dist-cms/packages/users/manifests.js +5 -0
  2387. package/dist-cms/packages/users/umbraco-package.d.ts +8 -0
  2388. package/dist-cms/packages/users/umbraco-package.js +10 -0
  2389. package/dist-cms/packages/users/user-groups/collection/user-group-collection-header.element.d.ts +13 -0
  2390. package/dist-cms/packages/users/user-groups/collection/user-group-collection-header.element.js +53 -0
  2391. package/dist-cms/packages/users/user-groups/collection/user-group-collection-view.element.d.ts +23 -0
  2392. package/dist-cms/packages/users/user-groups/collection/user-group-collection-view.element.js +130 -0
  2393. package/dist-cms/packages/users/user-groups/collection/user-group-collection.context.d.ts +7 -0
  2394. package/dist-cms/packages/users/user-groups/collection/user-group-collection.context.js +7 -0
  2395. package/dist-cms/packages/users/user-groups/collection/user-group-collection.element.d.ts +15 -0
  2396. package/dist-cms/packages/users/user-groups/collection/user-group-collection.element.js +34 -0
  2397. package/dist-cms/packages/users/user-groups/collection/user-group-table-name-column-layout.element.d.ts +13 -0
  2398. package/dist-cms/packages/users/user-groups/collection/user-group-table-name-column-layout.element.js +24 -0
  2399. package/dist-cms/packages/users/user-groups/collection/user-group-table-sections-column-layout.element.d.ts +16 -0
  2400. package/dist-cms/packages/users/user-groups/collection/user-group-table-sections-column-layout.element.js +41 -0
  2401. package/dist-cms/packages/users/user-groups/components/index.d.ts +1 -0
  2402. package/dist-cms/packages/users/user-groups/components/index.js +1 -0
  2403. package/dist-cms/packages/users/user-groups/components/input-user-group/user-group-input.context.d.ts +6 -0
  2404. package/dist-cms/packages/users/user-groups/components/input-user-group/user-group-input.context.js +7 -0
  2405. package/dist-cms/packages/users/user-groups/components/input-user-group/user-group-input.element.d.ts +50 -0
  2406. package/dist-cms/packages/users/user-groups/components/input-user-group/user-group-input.element.js +123 -0
  2407. package/dist-cms/packages/users/user-groups/entity-bulk-actions/delete/delete.action.d.ts +8 -0
  2408. package/dist-cms/packages/users/user-groups/entity-bulk-actions/delete/delete.action.js +30 -0
  2409. package/dist-cms/packages/users/user-groups/entity-bulk-actions/manifests.d.ts +2 -0
  2410. package/dist-cms/packages/users/user-groups/entity-bulk-actions/manifests.js +20 -0
  2411. package/dist-cms/packages/users/user-groups/index.d.ts +1 -0
  2412. package/dist-cms/packages/users/user-groups/index.js +1 -0
  2413. package/dist-cms/packages/users/user-groups/manifests.d.ts +1 -0
  2414. package/dist-cms/packages/users/user-groups/manifests.js +12 -0
  2415. package/dist-cms/packages/users/user-groups/modals/manifests.d.ts +2 -0
  2416. package/dist-cms/packages/users/user-groups/modals/manifests.js +9 -0
  2417. package/dist-cms/packages/users/user-groups/modals/user-group-picker/user-group-picker-modal.element.d.ts +14 -0
  2418. package/dist-cms/packages/users/user-groups/modals/user-group-picker/user-group-picker-modal.element.js +88 -0
  2419. package/dist-cms/packages/users/user-groups/repository/manifests.d.ts +3 -0
  2420. package/dist-cms/packages/users/user-groups/repository/manifests.js +23 -0
  2421. package/dist-cms/packages/users/user-groups/repository/sources/user-group-collection.server.data.d.ts +21 -0
  2422. package/dist-cms/packages/users/user-groups/repository/sources/user-group-collection.server.data.js +26 -0
  2423. package/dist-cms/packages/users/user-groups/repository/sources/user-group-item.server.data.d.ts +25 -0
  2424. package/dist-cms/packages/users/user-groups/repository/sources/user-group-item.server.data.js +32 -0
  2425. package/dist-cms/packages/users/user-groups/repository/sources/user-group.server.data.d.ts +26 -0
  2426. package/dist-cms/packages/users/user-groups/repository/sources/user-group.server.data.js +52 -0
  2427. package/dist-cms/packages/users/user-groups/repository/user-group-item.store.d.ts +20 -0
  2428. package/dist-cms/packages/users/user-groups/repository/user-group-item.store.js +23 -0
  2429. package/dist-cms/packages/users/user-groups/repository/user-group.repository.d.ts +28 -0
  2430. package/dist-cms/packages/users/user-groups/repository/user-group.repository.js +107 -0
  2431. package/dist-cms/packages/users/user-groups/repository/user-group.store.d.ts +20 -0
  2432. package/dist-cms/packages/users/user-groups/repository/user-group.store.js +76 -0
  2433. package/dist-cms/packages/users/user-groups/section-view/manifests.d.ts +2 -0
  2434. package/dist-cms/packages/users/user-groups/section-view/manifests.js +19 -0
  2435. package/dist-cms/packages/users/user-groups/section-view/user-groups-section-view.element.d.ts +12 -0
  2436. package/dist-cms/packages/users/user-groups/section-view/user-groups-section-view.element.js +44 -0
  2437. package/dist-cms/packages/users/user-groups/types.d.ts +18 -0
  2438. package/dist-cms/packages/users/user-groups/types.js +1 -0
  2439. package/dist-cms/packages/users/user-groups/workspace/actions/workspace-action-user-group-save.element.d.ts +15 -0
  2440. package/dist-cms/packages/users/user-groups/workspace/actions/workspace-action-user-group-save.element.js +47 -0
  2441. package/dist-cms/packages/users/user-groups/workspace/manifests.d.ts +2 -0
  2442. package/dist-cms/packages/users/user-groups/workspace/manifests.js +28 -0
  2443. package/dist-cms/packages/users/user-groups/workspace/user-group-workspace-editor.element.d.ts +16 -0
  2444. package/dist-cms/packages/users/user-groups/workspace/user-group-workspace-editor.element.js +185 -0
  2445. package/dist-cms/packages/users/user-groups/workspace/user-group-workspace.context.d.ts +22 -0
  2446. package/dist-cms/packages/users/user-groups/workspace/user-group-workspace.context.js +85 -0
  2447. package/dist-cms/packages/users/user-groups/workspace/user-group-workspace.element.d.ts +14 -0
  2448. package/dist-cms/packages/users/user-groups/workspace/user-group-workspace.element.js +50 -0
  2449. package/dist-cms/packages/users/user-section/manifests.d.ts +3 -0
  2450. package/dist-cms/packages/users/user-section/manifests.js +12 -0
  2451. package/dist-cms/packages/users/users/collection/user-collection-header.element.d.ts +21 -0
  2452. package/dist-cms/packages/users/users/collection/user-collection-header.element.js +180 -0
  2453. package/dist-cms/packages/users/users/collection/user-collection.context.d.ts +9 -0
  2454. package/dist-cms/packages/users/users/collection/user-collection.context.js +13 -0
  2455. package/dist-cms/packages/users/users/collection/user-collection.element.d.ts +16 -0
  2456. package/dist-cms/packages/users/users/collection/user-collection.element.js +64 -0
  2457. package/dist-cms/packages/users/users/collection/views/grid/user-collection-grid-view.element.d.ts +16 -0
  2458. package/dist-cms/packages/users/users/collection/views/grid/user-collection-grid-view.element.js +114 -0
  2459. package/dist-cms/packages/users/users/collection/views/table/column-layouts/name/user-table-name-column-layout.element.d.ts +14 -0
  2460. package/dist-cms/packages/users/users/collection/views/table/column-layouts/name/user-table-name-column-layout.element.js +28 -0
  2461. package/dist-cms/packages/users/users/collection/views/table/column-layouts/status/user-table-status-column-layout.element.d.ts +11 -0
  2462. package/dist-cms/packages/users/users/collection/views/table/column-layouts/status/user-table-status-column-layout.element.js +27 -0
  2463. package/dist-cms/packages/users/users/collection/views/table/user-collection-table-view.element.d.ts +28 -0
  2464. package/dist-cms/packages/users/users/collection/views/table/user-collection-table-view.element.js +166 -0
  2465. package/dist-cms/packages/users/users/components/index.d.ts +1 -0
  2466. package/dist-cms/packages/users/users/components/index.js +1 -0
  2467. package/dist-cms/packages/users/users/components/user-input/user-input.context.d.ts +6 -0
  2468. package/dist-cms/packages/users/users/components/user-input/user-input.context.js +7 -0
  2469. package/dist-cms/packages/users/users/components/user-input/user-input.element.d.ts +50 -0
  2470. package/dist-cms/packages/users/users/components/user-input/user-input.element.js +123 -0
  2471. package/dist-cms/packages/users/users/entity-bulk-actions/delete/delete.action.d.ts +8 -0
  2472. package/dist-cms/packages/users/users/entity-bulk-actions/delete/delete.action.js +30 -0
  2473. package/dist-cms/packages/users/users/entity-bulk-actions/disable/disable.action.d.ts +7 -0
  2474. package/dist-cms/packages/users/users/entity-bulk-actions/disable/disable.action.js +9 -0
  2475. package/dist-cms/packages/users/users/entity-bulk-actions/enable/enable.action.d.ts +7 -0
  2476. package/dist-cms/packages/users/users/entity-bulk-actions/enable/enable.action.js +9 -0
  2477. package/dist-cms/packages/users/users/entity-bulk-actions/manifests.d.ts +2 -0
  2478. package/dist-cms/packages/users/users/entity-bulk-actions/manifests.js +65 -0
  2479. package/dist-cms/packages/users/users/entity-bulk-actions/set-group/set-group.action.d.ts +8 -0
  2480. package/dist-cms/packages/users/users/entity-bulk-actions/set-group/set-group.action.js +17 -0
  2481. package/dist-cms/packages/users/users/entity-bulk-actions/unlock/unlock.action.d.ts +7 -0
  2482. package/dist-cms/packages/users/users/entity-bulk-actions/unlock/unlock.action.js +9 -0
  2483. package/dist-cms/packages/users/users/index.d.ts +1 -0
  2484. package/dist-cms/packages/users/users/index.js +1 -0
  2485. package/dist-cms/packages/users/users/manifests.d.ts +1 -0
  2486. package/dist-cms/packages/users/users/manifests.js +12 -0
  2487. package/dist-cms/packages/users/users/modals/create/user-create-modal.element.d.ts +23 -0
  2488. package/dist-cms/packages/users/users/modals/create/user-create-modal.element.js +200 -0
  2489. package/dist-cms/packages/users/users/modals/invite/user-invite-modal.element.d.ts +22 -0
  2490. package/dist-cms/packages/users/users/modals/invite/user-invite-modal.element.js +174 -0
  2491. package/dist-cms/packages/users/users/modals/manifests.d.ts +2 -0
  2492. package/dist-cms/packages/users/users/modals/manifests.js +21 -0
  2493. package/dist-cms/packages/users/users/modals/user-picker/user-picker-modal.element.d.ts +15 -0
  2494. package/dist-cms/packages/users/users/modals/user-picker/user-picker-modal.element.js +88 -0
  2495. package/dist-cms/packages/users/users/repository/manifests.d.ts +3 -0
  2496. package/dist-cms/packages/users/users/repository/manifests.js +23 -0
  2497. package/dist-cms/packages/users/users/repository/sources/user-collection.server.data.d.ts +35 -0
  2498. package/dist-cms/packages/users/users/repository/sources/user-collection.server.data.js +30 -0
  2499. package/dist-cms/packages/users/users/repository/sources/user-disable.server.data.d.ts +23 -0
  2500. package/dist-cms/packages/users/users/repository/sources/user-disable.server.data.js +33 -0
  2501. package/dist-cms/packages/users/users/repository/sources/user-enable.server.data.d.ts +23 -0
  2502. package/dist-cms/packages/users/users/repository/sources/user-enable.server.data.js +33 -0
  2503. package/dist-cms/packages/users/users/repository/sources/user-item.server.data.d.ts +25 -0
  2504. package/dist-cms/packages/users/users/repository/sources/user-item.server.data.js +32 -0
  2505. package/dist-cms/packages/users/users/repository/sources/user-set-group.server.data.d.ts +23 -0
  2506. package/dist-cms/packages/users/users/repository/sources/user-set-group.server.data.js +36 -0
  2507. package/dist-cms/packages/users/users/repository/sources/user-unlock.server.data.d.ts +23 -0
  2508. package/dist-cms/packages/users/users/repository/sources/user-unlock.server.data.js +33 -0
  2509. package/dist-cms/packages/users/users/repository/sources/user.server.data.d.ts +40 -0
  2510. package/dist-cms/packages/users/users/repository/sources/user.server.data.js +54 -0
  2511. package/dist-cms/packages/users/users/repository/user-item.store.d.ts +20 -0
  2512. package/dist-cms/packages/users/users/repository/user-item.store.js +23 -0
  2513. package/dist-cms/packages/users/users/repository/user.repository.d.ts +49 -0
  2514. package/dist-cms/packages/users/users/repository/user.repository.js +181 -0
  2515. package/dist-cms/packages/users/users/repository/user.store.d.ts +32 -0
  2516. package/dist-cms/packages/users/users/repository/user.store.js +40 -0
  2517. package/dist-cms/packages/users/users/section-view/manifests.d.ts +2 -0
  2518. package/dist-cms/packages/users/users/section-view/manifests.js +19 -0
  2519. package/dist-cms/packages/users/users/section-view/users-section-view.element.d.ts +14 -0
  2520. package/dist-cms/packages/users/users/section-view/users-section-view.element.js +46 -0
  2521. package/dist-cms/packages/users/users/types.d.ts +36 -0
  2522. package/dist-cms/packages/users/users/types.js +1 -0
  2523. package/dist-cms/packages/users/users/workspace/actions/user-workspace-action-save.element.d.ts +15 -0
  2524. package/dist-cms/packages/users/users/workspace/actions/user-workspace-action-save.element.js +47 -0
  2525. package/dist-cms/packages/users/users/workspace/manifests.d.ts +2 -0
  2526. package/dist-cms/packages/users/users/workspace/manifests.js +28 -0
  2527. package/dist-cms/packages/users/users/workspace/user-workspace-editor.element.d.ts +16 -0
  2528. package/dist-cms/packages/users/users/workspace/user-workspace-editor.element.js +322 -0
  2529. package/dist-cms/packages/users/users/workspace/user-workspace.context.d.ts +16 -0
  2530. package/dist-cms/packages/users/users/workspace/user-workspace.context.js +48 -0
  2531. package/dist-cms/packages/users/users/workspace/user-workspace.element.d.ts +14 -0
  2532. package/dist-cms/packages/users/users/workspace/user-workspace.element.js +41 -0
  2533. package/dist-cms/packages/users/utils.d.ts +6 -0
  2534. package/dist-cms/packages/users/utils.js +14 -0
  2535. package/dist-cms/shared/auth/auth-flow.d.ts +90 -0
  2536. package/dist-cms/shared/auth/auth-flow.js +257 -0
  2537. package/dist-cms/shared/auth/auth.context.d.ts +15 -0
  2538. package/dist-cms/shared/auth/auth.context.js +37 -0
  2539. package/dist-cms/shared/auth/auth.interface.d.ts +30 -0
  2540. package/dist-cms/shared/auth/auth.interface.js +1 -0
  2541. package/dist-cms/shared/auth/auth.token.d.ts +3 -0
  2542. package/dist-cms/shared/auth/auth.token.js +2 -0
  2543. package/dist-cms/shared/auth/index.d.ts +5 -0
  2544. package/dist-cms/shared/auth/index.js +4 -0
  2545. package/dist-cms/shared/auth/types.d.ts +1 -0
  2546. package/dist-cms/shared/auth/types.js +1 -0
  2547. package/dist-cms/shared/context/app.context.d.ts +9 -0
  2548. package/dist-cms/shared/context/app.context.js +16 -0
  2549. package/dist-cms/shared/context/index.d.ts +1 -0
  2550. package/dist-cms/shared/context/index.js +1 -0
  2551. package/dist-cms/shared/icon-registry/icon.registry.d.ts +15 -0
  2552. package/dist-cms/shared/icon-registry/icon.registry.js +30 -0
  2553. package/dist-cms/shared/icon-registry/icons/icon-activity.d.ts +2 -0
  2554. package/dist-cms/shared/icon-registry/icons/icon-activity.js +2 -0
  2555. package/dist-cms/shared/icon-registry/icons/icon-add.d.ts +2 -0
  2556. package/dist-cms/shared/icon-registry/icons/icon-add.js +2 -0
  2557. package/dist-cms/shared/icon-registry/icons/icon-addressbook.d.ts +2 -0
  2558. package/dist-cms/shared/icon-registry/icons/icon-addressbook.js +2 -0
  2559. package/dist-cms/shared/icon-registry/icons/icon-alarm-clock.d.ts +2 -0
  2560. package/dist-cms/shared/icon-registry/icons/icon-alarm-clock.js +2 -0
  2561. package/dist-cms/shared/icon-registry/icons/icon-alert-alt.d.ts +2 -0
  2562. package/dist-cms/shared/icon-registry/icons/icon-alert-alt.js +2 -0
  2563. package/dist-cms/shared/icon-registry/icons/icon-alert.d.ts +2 -0
  2564. package/dist-cms/shared/icon-registry/icons/icon-alert.js +2 -0
  2565. package/dist-cms/shared/icon-registry/icons/icon-alt.d.ts +2 -0
  2566. package/dist-cms/shared/icon-registry/icons/icon-alt.js +2 -0
  2567. package/dist-cms/shared/icon-registry/icons/icon-anchor.d.ts +2 -0
  2568. package/dist-cms/shared/icon-registry/icons/icon-anchor.js +2 -0
  2569. package/dist-cms/shared/icon-registry/icons/icon-app.d.ts +2 -0
  2570. package/dist-cms/shared/icon-registry/icons/icon-app.js +2 -0
  2571. package/dist-cms/shared/icon-registry/icons/icon-application-error.d.ts +2 -0
  2572. package/dist-cms/shared/icon-registry/icons/icon-application-error.js +2 -0
  2573. package/dist-cms/shared/icon-registry/icons/icon-application-window-alt.d.ts +2 -0
  2574. package/dist-cms/shared/icon-registry/icons/icon-application-window-alt.js +2 -0
  2575. package/dist-cms/shared/icon-registry/icons/icon-application-window.d.ts +2 -0
  2576. package/dist-cms/shared/icon-registry/icons/icon-application-window.js +2 -0
  2577. package/dist-cms/shared/icon-registry/icons/icon-arrivals.d.ts +2 -0
  2578. package/dist-cms/shared/icon-registry/icons/icon-arrivals.js +2 -0
  2579. package/dist-cms/shared/icon-registry/icons/icon-arrow-down.d.ts +2 -0
  2580. package/dist-cms/shared/icon-registry/icons/icon-arrow-down.js +2 -0
  2581. package/dist-cms/shared/icon-registry/icons/icon-arrow-left.d.ts +2 -0
  2582. package/dist-cms/shared/icon-registry/icons/icon-arrow-left.js +2 -0
  2583. package/dist-cms/shared/icon-registry/icons/icon-arrow-right.d.ts +2 -0
  2584. package/dist-cms/shared/icon-registry/icons/icon-arrow-right.js +1 -0
  2585. package/dist-cms/shared/icon-registry/icons/icon-arrow-up.d.ts +2 -0
  2586. package/dist-cms/shared/icon-registry/icons/icon-arrow-up.js +1 -0
  2587. package/dist-cms/shared/icon-registry/icons/icon-art-easel.d.ts +2 -0
  2588. package/dist-cms/shared/icon-registry/icons/icon-art-easel.js +1 -0
  2589. package/dist-cms/shared/icon-registry/icons/icon-article.d.ts +2 -0
  2590. package/dist-cms/shared/icon-registry/icons/icon-article.js +1 -0
  2591. package/dist-cms/shared/icon-registry/icons/icon-attachment.d.ts +2 -0
  2592. package/dist-cms/shared/icon-registry/icons/icon-attachment.js +1 -0
  2593. package/dist-cms/shared/icon-registry/icons/icon-auction-hammer.d.ts +2 -0
  2594. package/dist-cms/shared/icon-registry/icons/icon-auction-hammer.js +1 -0
  2595. package/dist-cms/shared/icon-registry/icons/icon-autofill.d.ts +2 -0
  2596. package/dist-cms/shared/icon-registry/icons/icon-autofill.js +1 -0
  2597. package/dist-cms/shared/icon-registry/icons/icon-award.d.ts +2 -0
  2598. package/dist-cms/shared/icon-registry/icons/icon-award.js +1 -0
  2599. package/dist-cms/shared/icon-registry/icons/icon-axis-rotation-2.d.ts +2 -0
  2600. package/dist-cms/shared/icon-registry/icons/icon-axis-rotation-2.js +1 -0
  2601. package/dist-cms/shared/icon-registry/icons/icon-axis-rotation-3.d.ts +2 -0
  2602. package/dist-cms/shared/icon-registry/icons/icon-axis-rotation-3.js +1 -0
  2603. package/dist-cms/shared/icon-registry/icons/icon-axis-rotation.d.ts +2 -0
  2604. package/dist-cms/shared/icon-registry/icons/icon-axis-rotation.js +1 -0
  2605. package/dist-cms/shared/icon-registry/icons/icon-baby-stroller.d.ts +2 -0
  2606. package/dist-cms/shared/icon-registry/icons/icon-baby-stroller.js +1 -0
  2607. package/dist-cms/shared/icon-registry/icons/icon-backspace.d.ts +2 -0
  2608. package/dist-cms/shared/icon-registry/icons/icon-backspace.js +1 -0
  2609. package/dist-cms/shared/icon-registry/icons/icon-badge-add.d.ts +2 -0
  2610. package/dist-cms/shared/icon-registry/icons/icon-badge-add.js +1 -0
  2611. package/dist-cms/shared/icon-registry/icons/icon-badge-count.d.ts +2 -0
  2612. package/dist-cms/shared/icon-registry/icons/icon-badge-count.js +1 -0
  2613. package/dist-cms/shared/icon-registry/icons/icon-badge-remove.d.ts +2 -0
  2614. package/dist-cms/shared/icon-registry/icons/icon-badge-remove.js +1 -0
  2615. package/dist-cms/shared/icon-registry/icons/icon-badge-restricted.d.ts +2 -0
  2616. package/dist-cms/shared/icon-registry/icons/icon-badge-restricted.js +1 -0
  2617. package/dist-cms/shared/icon-registry/icons/icon-ball.d.ts +2 -0
  2618. package/dist-cms/shared/icon-registry/icons/icon-ball.js +1 -0
  2619. package/dist-cms/shared/icon-registry/icons/icon-band-aid.d.ts +2 -0
  2620. package/dist-cms/shared/icon-registry/icons/icon-band-aid.js +1 -0
  2621. package/dist-cms/shared/icon-registry/icons/icon-bar-chart.d.ts +2 -0
  2622. package/dist-cms/shared/icon-registry/icons/icon-bar-chart.js +1 -0
  2623. package/dist-cms/shared/icon-registry/icons/icon-barcode.d.ts +2 -0
  2624. package/dist-cms/shared/icon-registry/icons/icon-barcode.js +1 -0
  2625. package/dist-cms/shared/icon-registry/icons/icon-bars.d.ts +2 -0
  2626. package/dist-cms/shared/icon-registry/icons/icon-bars.js +1 -0
  2627. package/dist-cms/shared/icon-registry/icons/icon-battery-full.d.ts +2 -0
  2628. package/dist-cms/shared/icon-registry/icons/icon-battery-full.js +1 -0
  2629. package/dist-cms/shared/icon-registry/icons/icon-battery-low.d.ts +2 -0
  2630. package/dist-cms/shared/icon-registry/icons/icon-battery-low.js +1 -0
  2631. package/dist-cms/shared/icon-registry/icons/icon-beer-glass.d.ts +2 -0
  2632. package/dist-cms/shared/icon-registry/icons/icon-beer-glass.js +1 -0
  2633. package/dist-cms/shared/icon-registry/icons/icon-bell-off.d.ts +2 -0
  2634. package/dist-cms/shared/icon-registry/icons/icon-bell-off.js +1 -0
  2635. package/dist-cms/shared/icon-registry/icons/icon-bell.d.ts +2 -0
  2636. package/dist-cms/shared/icon-registry/icons/icon-bell.js +1 -0
  2637. package/dist-cms/shared/icon-registry/icons/icon-bill-dollar.d.ts +2 -0
  2638. package/dist-cms/shared/icon-registry/icons/icon-bill-dollar.js +1 -0
  2639. package/dist-cms/shared/icon-registry/icons/icon-bill-euro.d.ts +2 -0
  2640. package/dist-cms/shared/icon-registry/icons/icon-bill-euro.js +1 -0
  2641. package/dist-cms/shared/icon-registry/icons/icon-bill-pound.d.ts +2 -0
  2642. package/dist-cms/shared/icon-registry/icons/icon-bill-pound.js +1 -0
  2643. package/dist-cms/shared/icon-registry/icons/icon-bill-yen.d.ts +2 -0
  2644. package/dist-cms/shared/icon-registry/icons/icon-bill-yen.js +1 -0
  2645. package/dist-cms/shared/icon-registry/icons/icon-bill.d.ts +2 -0
  2646. package/dist-cms/shared/icon-registry/icons/icon-bill.js +1 -0
  2647. package/dist-cms/shared/icon-registry/icons/icon-billboard.d.ts +2 -0
  2648. package/dist-cms/shared/icon-registry/icons/icon-billboard.js +1 -0
  2649. package/dist-cms/shared/icon-registry/icons/icon-bills-dollar.d.ts +2 -0
  2650. package/dist-cms/shared/icon-registry/icons/icon-bills-dollar.js +1 -0
  2651. package/dist-cms/shared/icon-registry/icons/icon-bills-euro.d.ts +2 -0
  2652. package/dist-cms/shared/icon-registry/icons/icon-bills-euro.js +1 -0
  2653. package/dist-cms/shared/icon-registry/icons/icon-bills-pound.d.ts +2 -0
  2654. package/dist-cms/shared/icon-registry/icons/icon-bills-pound.js +1 -0
  2655. package/dist-cms/shared/icon-registry/icons/icon-bills-yen.d.ts +2 -0
  2656. package/dist-cms/shared/icon-registry/icons/icon-bills-yen.js +1 -0
  2657. package/dist-cms/shared/icon-registry/icons/icon-bills.d.ts +2 -0
  2658. package/dist-cms/shared/icon-registry/icons/icon-bills.js +1 -0
  2659. package/dist-cms/shared/icon-registry/icons/icon-binarycode.d.ts +2 -0
  2660. package/dist-cms/shared/icon-registry/icons/icon-binarycode.js +1 -0
  2661. package/dist-cms/shared/icon-registry/icons/icon-binoculars.d.ts +2 -0
  2662. package/dist-cms/shared/icon-registry/icons/icon-binoculars.js +1 -0
  2663. package/dist-cms/shared/icon-registry/icons/icon-bird.d.ts +2 -0
  2664. package/dist-cms/shared/icon-registry/icons/icon-bird.js +1 -0
  2665. package/dist-cms/shared/icon-registry/icons/icon-birthday-cake.d.ts +2 -0
  2666. package/dist-cms/shared/icon-registry/icons/icon-birthday-cake.js +1 -0
  2667. package/dist-cms/shared/icon-registry/icons/icon-block.d.ts +2 -0
  2668. package/dist-cms/shared/icon-registry/icons/icon-block.js +1 -0
  2669. package/dist-cms/shared/icon-registry/icons/icon-blueprint.d.ts +2 -0
  2670. package/dist-cms/shared/icon-registry/icons/icon-blueprint.js +1 -0
  2671. package/dist-cms/shared/icon-registry/icons/icon-bluetooth.d.ts +2 -0
  2672. package/dist-cms/shared/icon-registry/icons/icon-bluetooth.js +1 -0
  2673. package/dist-cms/shared/icon-registry/icons/icon-boat-shipping.d.ts +2 -0
  2674. package/dist-cms/shared/icon-registry/icons/icon-boat-shipping.js +1 -0
  2675. package/dist-cms/shared/icon-registry/icons/icon-bomb.d.ts +2 -0
  2676. package/dist-cms/shared/icon-registry/icons/icon-bomb.js +1 -0
  2677. package/dist-cms/shared/icon-registry/icons/icon-bones.d.ts +2 -0
  2678. package/dist-cms/shared/icon-registry/icons/icon-bones.js +1 -0
  2679. package/dist-cms/shared/icon-registry/icons/icon-book-alt-2.d.ts +2 -0
  2680. package/dist-cms/shared/icon-registry/icons/icon-book-alt-2.js +1 -0
  2681. package/dist-cms/shared/icon-registry/icons/icon-book-alt.d.ts +2 -0
  2682. package/dist-cms/shared/icon-registry/icons/icon-book-alt.js +1 -0
  2683. package/dist-cms/shared/icon-registry/icons/icon-book.d.ts +2 -0
  2684. package/dist-cms/shared/icon-registry/icons/icon-book.js +1 -0
  2685. package/dist-cms/shared/icon-registry/icons/icon-bookmark.d.ts +2 -0
  2686. package/dist-cms/shared/icon-registry/icons/icon-bookmark.js +1 -0
  2687. package/dist-cms/shared/icon-registry/icons/icon-books.d.ts +2 -0
  2688. package/dist-cms/shared/icon-registry/icons/icon-books.js +1 -0
  2689. package/dist-cms/shared/icon-registry/icons/icon-box-alt.d.ts +2 -0
  2690. package/dist-cms/shared/icon-registry/icons/icon-box-alt.js +1 -0
  2691. package/dist-cms/shared/icon-registry/icons/icon-box-open.d.ts +2 -0
  2692. package/dist-cms/shared/icon-registry/icons/icon-box-open.js +1 -0
  2693. package/dist-cms/shared/icon-registry/icons/icon-box.d.ts +2 -0
  2694. package/dist-cms/shared/icon-registry/icons/icon-box.js +1 -0
  2695. package/dist-cms/shared/icon-registry/icons/icon-brackets.d.ts +2 -0
  2696. package/dist-cms/shared/icon-registry/icons/icon-brackets.js +1 -0
  2697. package/dist-cms/shared/icon-registry/icons/icon-brick.d.ts +2 -0
  2698. package/dist-cms/shared/icon-registry/icons/icon-brick.js +1 -0
  2699. package/dist-cms/shared/icon-registry/icons/icon-briefcase.d.ts +2 -0
  2700. package/dist-cms/shared/icon-registry/icons/icon-briefcase.js +1 -0
  2701. package/dist-cms/shared/icon-registry/icons/icon-browser-window.d.ts +2 -0
  2702. package/dist-cms/shared/icon-registry/icons/icon-browser-window.js +1 -0
  2703. package/dist-cms/shared/icon-registry/icons/icon-brush-alt-2.d.ts +2 -0
  2704. package/dist-cms/shared/icon-registry/icons/icon-brush-alt-2.js +1 -0
  2705. package/dist-cms/shared/icon-registry/icons/icon-brush-alt.d.ts +2 -0
  2706. package/dist-cms/shared/icon-registry/icons/icon-brush-alt.js +1 -0
  2707. package/dist-cms/shared/icon-registry/icons/icon-brush.d.ts +2 -0
  2708. package/dist-cms/shared/icon-registry/icons/icon-brush.js +1 -0
  2709. package/dist-cms/shared/icon-registry/icons/icon-bug.d.ts +2 -0
  2710. package/dist-cms/shared/icon-registry/icons/icon-bug.js +1 -0
  2711. package/dist-cms/shared/icon-registry/icons/icon-bulleted-list.d.ts +2 -0
  2712. package/dist-cms/shared/icon-registry/icons/icon-bulleted-list.js +1 -0
  2713. package/dist-cms/shared/icon-registry/icons/icon-burn.d.ts +2 -0
  2714. package/dist-cms/shared/icon-registry/icons/icon-burn.js +1 -0
  2715. package/dist-cms/shared/icon-registry/icons/icon-bus.d.ts +2 -0
  2716. package/dist-cms/shared/icon-registry/icons/icon-bus.js +1 -0
  2717. package/dist-cms/shared/icon-registry/icons/icon-calculator.d.ts +2 -0
  2718. package/dist-cms/shared/icon-registry/icons/icon-calculator.js +1 -0
  2719. package/dist-cms/shared/icon-registry/icons/icon-calendar-alt.d.ts +2 -0
  2720. package/dist-cms/shared/icon-registry/icons/icon-calendar-alt.js +1 -0
  2721. package/dist-cms/shared/icon-registry/icons/icon-calendar.d.ts +2 -0
  2722. package/dist-cms/shared/icon-registry/icons/icon-calendar.js +1 -0
  2723. package/dist-cms/shared/icon-registry/icons/icon-camcorder.d.ts +2 -0
  2724. package/dist-cms/shared/icon-registry/icons/icon-camcorder.js +1 -0
  2725. package/dist-cms/shared/icon-registry/icons/icon-camera-roll.d.ts +2 -0
  2726. package/dist-cms/shared/icon-registry/icons/icon-camera-roll.js +1 -0
  2727. package/dist-cms/shared/icon-registry/icons/icon-candy.d.ts +2 -0
  2728. package/dist-cms/shared/icon-registry/icons/icon-candy.js +1 -0
  2729. package/dist-cms/shared/icon-registry/icons/icon-caps-lock.d.ts +2 -0
  2730. package/dist-cms/shared/icon-registry/icons/icon-caps-lock.js +1 -0
  2731. package/dist-cms/shared/icon-registry/icons/icon-car.d.ts +2 -0
  2732. package/dist-cms/shared/icon-registry/icons/icon-car.js +1 -0
  2733. package/dist-cms/shared/icon-registry/icons/icon-cash-register.d.ts +2 -0
  2734. package/dist-cms/shared/icon-registry/icons/icon-cash-register.js +1 -0
  2735. package/dist-cms/shared/icon-registry/icons/icon-categories.d.ts +2 -0
  2736. package/dist-cms/shared/icon-registry/icons/icon-categories.js +1 -0
  2737. package/dist-cms/shared/icon-registry/icons/icon-certificate.d.ts +2 -0
  2738. package/dist-cms/shared/icon-registry/icons/icon-certificate.js +1 -0
  2739. package/dist-cms/shared/icon-registry/icons/icon-chart-curve.d.ts +2 -0
  2740. package/dist-cms/shared/icon-registry/icons/icon-chart-curve.js +1 -0
  2741. package/dist-cms/shared/icon-registry/icons/icon-chart.d.ts +2 -0
  2742. package/dist-cms/shared/icon-registry/icons/icon-chart.js +1 -0
  2743. package/dist-cms/shared/icon-registry/icons/icon-chat-active.d.ts +2 -0
  2744. package/dist-cms/shared/icon-registry/icons/icon-chat-active.js +1 -0
  2745. package/dist-cms/shared/icon-registry/icons/icon-chat.d.ts +2 -0
  2746. package/dist-cms/shared/icon-registry/icons/icon-chat.js +1 -0
  2747. package/dist-cms/shared/icon-registry/icons/icon-check.d.ts +2 -0
  2748. package/dist-cms/shared/icon-registry/icons/icon-check.js +1 -0
  2749. package/dist-cms/shared/icon-registry/icons/icon-checkbox-dotted-active.d.ts +2 -0
  2750. package/dist-cms/shared/icon-registry/icons/icon-checkbox-dotted-active.js +1 -0
  2751. package/dist-cms/shared/icon-registry/icons/icon-checkbox-dotted.d.ts +2 -0
  2752. package/dist-cms/shared/icon-registry/icons/icon-checkbox-dotted.js +1 -0
  2753. package/dist-cms/shared/icon-registry/icons/icon-checkbox-empty.d.ts +2 -0
  2754. package/dist-cms/shared/icon-registry/icons/icon-checkbox-empty.js +1 -0
  2755. package/dist-cms/shared/icon-registry/icons/icon-checkbox.d.ts +2 -0
  2756. package/dist-cms/shared/icon-registry/icons/icon-checkbox.js +1 -0
  2757. package/dist-cms/shared/icon-registry/icons/icon-chess.d.ts +2 -0
  2758. package/dist-cms/shared/icon-registry/icons/icon-chess.js +1 -0
  2759. package/dist-cms/shared/icon-registry/icons/icon-chip-alt.d.ts +2 -0
  2760. package/dist-cms/shared/icon-registry/icons/icon-chip-alt.js +1 -0
  2761. package/dist-cms/shared/icon-registry/icons/icon-chip.d.ts +2 -0
  2762. package/dist-cms/shared/icon-registry/icons/icon-chip.js +1 -0
  2763. package/dist-cms/shared/icon-registry/icons/icon-cinema.d.ts +2 -0
  2764. package/dist-cms/shared/icon-registry/icons/icon-cinema.js +1 -0
  2765. package/dist-cms/shared/icon-registry/icons/icon-circle-dotted-active.d.ts +2 -0
  2766. package/dist-cms/shared/icon-registry/icons/icon-circle-dotted-active.js +1 -0
  2767. package/dist-cms/shared/icon-registry/icons/icon-circle-dotted.d.ts +2 -0
  2768. package/dist-cms/shared/icon-registry/icons/icon-circle-dotted.js +1 -0
  2769. package/dist-cms/shared/icon-registry/icons/icon-circuits.d.ts +2 -0
  2770. package/dist-cms/shared/icon-registry/icons/icon-circuits.js +1 -0
  2771. package/dist-cms/shared/icon-registry/icons/icon-circus.d.ts +2 -0
  2772. package/dist-cms/shared/icon-registry/icons/icon-circus.js +1 -0
  2773. package/dist-cms/shared/icon-registry/icons/icon-client.d.ts +2 -0
  2774. package/dist-cms/shared/icon-registry/icons/icon-client.js +1 -0
  2775. package/dist-cms/shared/icon-registry/icons/icon-clothes-hanger.d.ts +2 -0
  2776. package/dist-cms/shared/icon-registry/icons/icon-clothes-hanger.js +1 -0
  2777. package/dist-cms/shared/icon-registry/icons/icon-cloud-drive.d.ts +2 -0
  2778. package/dist-cms/shared/icon-registry/icons/icon-cloud-drive.js +1 -0
  2779. package/dist-cms/shared/icon-registry/icons/icon-cloud-upload.d.ts +2 -0
  2780. package/dist-cms/shared/icon-registry/icons/icon-cloud-upload.js +1 -0
  2781. package/dist-cms/shared/icon-registry/icons/icon-cloud.d.ts +2 -0
  2782. package/dist-cms/shared/icon-registry/icons/icon-cloud.js +1 -0
  2783. package/dist-cms/shared/icon-registry/icons/icon-cloudy.d.ts +2 -0
  2784. package/dist-cms/shared/icon-registry/icons/icon-cloudy.js +1 -0
  2785. package/dist-cms/shared/icon-registry/icons/icon-clubs.d.ts +2 -0
  2786. package/dist-cms/shared/icon-registry/icons/icon-clubs.js +1 -0
  2787. package/dist-cms/shared/icon-registry/icons/icon-cocktail.d.ts +2 -0
  2788. package/dist-cms/shared/icon-registry/icons/icon-cocktail.js +1 -0
  2789. package/dist-cms/shared/icon-registry/icons/icon-code.d.ts +2 -0
  2790. package/dist-cms/shared/icon-registry/icons/icon-code.js +1 -0
  2791. package/dist-cms/shared/icon-registry/icons/icon-coffee.d.ts +2 -0
  2792. package/dist-cms/shared/icon-registry/icons/icon-coffee.js +1 -0
  2793. package/dist-cms/shared/icon-registry/icons/icon-coin-dollar.d.ts +2 -0
  2794. package/dist-cms/shared/icon-registry/icons/icon-coin-dollar.js +1 -0
  2795. package/dist-cms/shared/icon-registry/icons/icon-coin-euro.d.ts +2 -0
  2796. package/dist-cms/shared/icon-registry/icons/icon-coin-euro.js +1 -0
  2797. package/dist-cms/shared/icon-registry/icons/icon-coin-pound.d.ts +2 -0
  2798. package/dist-cms/shared/icon-registry/icons/icon-coin-pound.js +1 -0
  2799. package/dist-cms/shared/icon-registry/icons/icon-coin-yen.d.ts +2 -0
  2800. package/dist-cms/shared/icon-registry/icons/icon-coin-yen.js +1 -0
  2801. package/dist-cms/shared/icon-registry/icons/icon-coin.d.ts +2 -0
  2802. package/dist-cms/shared/icon-registry/icons/icon-coin.js +1 -0
  2803. package/dist-cms/shared/icon-registry/icons/icon-coins-alt.d.ts +2 -0
  2804. package/dist-cms/shared/icon-registry/icons/icon-coins-alt.js +1 -0
  2805. package/dist-cms/shared/icon-registry/icons/icon-coins-dollar-alt.d.ts +2 -0
  2806. package/dist-cms/shared/icon-registry/icons/icon-coins-dollar-alt.js +1 -0
  2807. package/dist-cms/shared/icon-registry/icons/icon-coins-dollar.d.ts +2 -0
  2808. package/dist-cms/shared/icon-registry/icons/icon-coins-dollar.js +1 -0
  2809. package/dist-cms/shared/icon-registry/icons/icon-coins-euro-alt.d.ts +2 -0
  2810. package/dist-cms/shared/icon-registry/icons/icon-coins-euro-alt.js +1 -0
  2811. package/dist-cms/shared/icon-registry/icons/icon-coins-euro.d.ts +2 -0
  2812. package/dist-cms/shared/icon-registry/icons/icon-coins-euro.js +1 -0
  2813. package/dist-cms/shared/icon-registry/icons/icon-coins-pound-alt.d.ts +2 -0
  2814. package/dist-cms/shared/icon-registry/icons/icon-coins-pound-alt.js +1 -0
  2815. package/dist-cms/shared/icon-registry/icons/icon-coins-pound.d.ts +2 -0
  2816. package/dist-cms/shared/icon-registry/icons/icon-coins-pound.js +1 -0
  2817. package/dist-cms/shared/icon-registry/icons/icon-coins-yen-alt.d.ts +2 -0
  2818. package/dist-cms/shared/icon-registry/icons/icon-coins-yen-alt.js +1 -0
  2819. package/dist-cms/shared/icon-registry/icons/icon-coins-yen.d.ts +2 -0
  2820. package/dist-cms/shared/icon-registry/icons/icon-coins-yen.js +1 -0
  2821. package/dist-cms/shared/icon-registry/icons/icon-coins.d.ts +2 -0
  2822. package/dist-cms/shared/icon-registry/icons/icon-coins.js +1 -0
  2823. package/dist-cms/shared/icon-registry/icons/icon-color-bucket.d.ts +2 -0
  2824. package/dist-cms/shared/icon-registry/icons/icon-color-bucket.js +1 -0
  2825. package/dist-cms/shared/icon-registry/icons/icon-colorpicker.d.ts +2 -0
  2826. package/dist-cms/shared/icon-registry/icons/icon-colorpicker.js +1 -0
  2827. package/dist-cms/shared/icon-registry/icons/icon-columns.d.ts +2 -0
  2828. package/dist-cms/shared/icon-registry/icons/icon-columns.js +1 -0
  2829. package/dist-cms/shared/icon-registry/icons/icon-comb.d.ts +2 -0
  2830. package/dist-cms/shared/icon-registry/icons/icon-comb.js +1 -0
  2831. package/dist-cms/shared/icon-registry/icons/icon-combination-lock-open.d.ts +2 -0
  2832. package/dist-cms/shared/icon-registry/icons/icon-combination-lock-open.js +1 -0
  2833. package/dist-cms/shared/icon-registry/icons/icon-combination-lock.d.ts +2 -0
  2834. package/dist-cms/shared/icon-registry/icons/icon-combination-lock.js +1 -0
  2835. package/dist-cms/shared/icon-registry/icons/icon-command.d.ts +2 -0
  2836. package/dist-cms/shared/icon-registry/icons/icon-command.js +1 -0
  2837. package/dist-cms/shared/icon-registry/icons/icon-company.d.ts +2 -0
  2838. package/dist-cms/shared/icon-registry/icons/icon-company.js +1 -0
  2839. package/dist-cms/shared/icon-registry/icons/icon-compress.d.ts +2 -0
  2840. package/dist-cms/shared/icon-registry/icons/icon-compress.js +1 -0
  2841. package/dist-cms/shared/icon-registry/icons/icon-connection.d.ts +2 -0
  2842. package/dist-cms/shared/icon-registry/icons/icon-connection.js +1 -0
  2843. package/dist-cms/shared/icon-registry/icons/icon-console.d.ts +2 -0
  2844. package/dist-cms/shared/icon-registry/icons/icon-console.js +1 -0
  2845. package/dist-cms/shared/icon-registry/icons/icon-contrast.d.ts +2 -0
  2846. package/dist-cms/shared/icon-registry/icons/icon-contrast.js +1 -0
  2847. package/dist-cms/shared/icon-registry/icons/icon-conversation-alt.d.ts +2 -0
  2848. package/dist-cms/shared/icon-registry/icons/icon-conversation-alt.js +1 -0
  2849. package/dist-cms/shared/icon-registry/icons/icon-conversation.d.ts +2 -0
  2850. package/dist-cms/shared/icon-registry/icons/icon-conversation.js +1 -0
  2851. package/dist-cms/shared/icon-registry/icons/icon-coverflow.d.ts +2 -0
  2852. package/dist-cms/shared/icon-registry/icons/icon-coverflow.js +1 -0
  2853. package/dist-cms/shared/icon-registry/icons/icon-credit-card-alt.d.ts +2 -0
  2854. package/dist-cms/shared/icon-registry/icons/icon-credit-card-alt.js +1 -0
  2855. package/dist-cms/shared/icon-registry/icons/icon-credit-card.d.ts +2 -0
  2856. package/dist-cms/shared/icon-registry/icons/icon-credit-card.js +1 -0
  2857. package/dist-cms/shared/icon-registry/icons/icon-crop.d.ts +2 -0
  2858. package/dist-cms/shared/icon-registry/icons/icon-crop.js +1 -0
  2859. package/dist-cms/shared/icon-registry/icons/icon-crosshair.d.ts +2 -0
  2860. package/dist-cms/shared/icon-registry/icons/icon-crosshair.js +1 -0
  2861. package/dist-cms/shared/icon-registry/icons/icon-crown-alt.d.ts +2 -0
  2862. package/dist-cms/shared/icon-registry/icons/icon-crown-alt.js +1 -0
  2863. package/dist-cms/shared/icon-registry/icons/icon-crown.d.ts +2 -0
  2864. package/dist-cms/shared/icon-registry/icons/icon-crown.js +1 -0
  2865. package/dist-cms/shared/icon-registry/icons/icon-cupcake.d.ts +2 -0
  2866. package/dist-cms/shared/icon-registry/icons/icon-cupcake.js +1 -0
  2867. package/dist-cms/shared/icon-registry/icons/icon-curve.d.ts +2 -0
  2868. package/dist-cms/shared/icon-registry/icons/icon-curve.js +1 -0
  2869. package/dist-cms/shared/icon-registry/icons/icon-cut.d.ts +2 -0
  2870. package/dist-cms/shared/icon-registry/icons/icon-cut.js +1 -0
  2871. package/dist-cms/shared/icon-registry/icons/icon-dashboard.d.ts +2 -0
  2872. package/dist-cms/shared/icon-registry/icons/icon-dashboard.js +1 -0
  2873. package/dist-cms/shared/icon-registry/icons/icon-defrag.d.ts +2 -0
  2874. package/dist-cms/shared/icon-registry/icons/icon-defrag.js +1 -0
  2875. package/dist-cms/shared/icon-registry/icons/icon-delete-key.d.ts +2 -0
  2876. package/dist-cms/shared/icon-registry/icons/icon-delete-key.js +1 -0
  2877. package/dist-cms/shared/icon-registry/icons/icon-delete.d.ts +2 -0
  2878. package/dist-cms/shared/icon-registry/icons/icon-delete.js +1 -0
  2879. package/dist-cms/shared/icon-registry/icons/icon-departure.d.ts +2 -0
  2880. package/dist-cms/shared/icon-registry/icons/icon-departure.js +1 -0
  2881. package/dist-cms/shared/icon-registry/icons/icon-desk.d.ts +2 -0
  2882. package/dist-cms/shared/icon-registry/icons/icon-desk.js +1 -0
  2883. package/dist-cms/shared/icon-registry/icons/icon-desktop.d.ts +2 -0
  2884. package/dist-cms/shared/icon-registry/icons/icon-desktop.js +1 -0
  2885. package/dist-cms/shared/icon-registry/icons/icon-diagnostics.d.ts +2 -0
  2886. package/dist-cms/shared/icon-registry/icons/icon-diagnostics.js +1 -0
  2887. package/dist-cms/shared/icon-registry/icons/icon-diagonal-arrow-alt.d.ts +2 -0
  2888. package/dist-cms/shared/icon-registry/icons/icon-diagonal-arrow-alt.js +1 -0
  2889. package/dist-cms/shared/icon-registry/icons/icon-diagonal-arrow.d.ts +2 -0
  2890. package/dist-cms/shared/icon-registry/icons/icon-diagonal-arrow.js +1 -0
  2891. package/dist-cms/shared/icon-registry/icons/icon-diamond.d.ts +2 -0
  2892. package/dist-cms/shared/icon-registry/icons/icon-diamond.js +1 -0
  2893. package/dist-cms/shared/icon-registry/icons/icon-diamonds.d.ts +2 -0
  2894. package/dist-cms/shared/icon-registry/icons/icon-diamonds.js +1 -0
  2895. package/dist-cms/shared/icon-registry/icons/icon-dice.d.ts +2 -0
  2896. package/dist-cms/shared/icon-registry/icons/icon-dice.js +1 -0
  2897. package/dist-cms/shared/icon-registry/icons/icon-diploma-alt.d.ts +2 -0
  2898. package/dist-cms/shared/icon-registry/icons/icon-diploma-alt.js +1 -0
  2899. package/dist-cms/shared/icon-registry/icons/icon-diploma.d.ts +2 -0
  2900. package/dist-cms/shared/icon-registry/icons/icon-diploma.js +1 -0
  2901. package/dist-cms/shared/icon-registry/icons/icon-directions-alt.d.ts +2 -0
  2902. package/dist-cms/shared/icon-registry/icons/icon-directions-alt.js +1 -0
  2903. package/dist-cms/shared/icon-registry/icons/icon-directions.d.ts +2 -0
  2904. package/dist-cms/shared/icon-registry/icons/icon-directions.js +1 -0
  2905. package/dist-cms/shared/icon-registry/icons/icon-disc.d.ts +2 -0
  2906. package/dist-cms/shared/icon-registry/icons/icon-disc.js +1 -0
  2907. package/dist-cms/shared/icon-registry/icons/icon-disk-image.d.ts +2 -0
  2908. package/dist-cms/shared/icon-registry/icons/icon-disk-image.js +1 -0
  2909. package/dist-cms/shared/icon-registry/icons/icon-display.d.ts +2 -0
  2910. package/dist-cms/shared/icon-registry/icons/icon-display.js +1 -0
  2911. package/dist-cms/shared/icon-registry/icons/icon-dna.d.ts +2 -0
  2912. package/dist-cms/shared/icon-registry/icons/icon-dna.js +1 -0
  2913. package/dist-cms/shared/icon-registry/icons/icon-dock-connector.d.ts +2 -0
  2914. package/dist-cms/shared/icon-registry/icons/icon-dock-connector.js +1 -0
  2915. package/dist-cms/shared/icon-registry/icons/icon-document-dashed-line.d.ts +2 -0
  2916. package/dist-cms/shared/icon-registry/icons/icon-document-dashed-line.js +1 -0
  2917. package/dist-cms/shared/icon-registry/icons/icon-document.d.ts +2 -0
  2918. package/dist-cms/shared/icon-registry/icons/icon-document.js +1 -0
  2919. package/dist-cms/shared/icon-registry/icons/icon-documents.d.ts +2 -0
  2920. package/dist-cms/shared/icon-registry/icons/icon-documents.js +1 -0
  2921. package/dist-cms/shared/icon-registry/icons/icon-dollar-bag.d.ts +2 -0
  2922. package/dist-cms/shared/icon-registry/icons/icon-dollar-bag.js +1 -0
  2923. package/dist-cms/shared/icon-registry/icons/icon-donate.d.ts +2 -0
  2924. package/dist-cms/shared/icon-registry/icons/icon-donate.js +1 -0
  2925. package/dist-cms/shared/icon-registry/icons/icon-door-open-alt.d.ts +2 -0
  2926. package/dist-cms/shared/icon-registry/icons/icon-door-open-alt.js +1 -0
  2927. package/dist-cms/shared/icon-registry/icons/icon-door-open.d.ts +2 -0
  2928. package/dist-cms/shared/icon-registry/icons/icon-door-open.js +1 -0
  2929. package/dist-cms/shared/icon-registry/icons/icon-download-alt.d.ts +2 -0
  2930. package/dist-cms/shared/icon-registry/icons/icon-download-alt.js +1 -0
  2931. package/dist-cms/shared/icon-registry/icons/icon-download.d.ts +2 -0
  2932. package/dist-cms/shared/icon-registry/icons/icon-download.js +1 -0
  2933. package/dist-cms/shared/icon-registry/icons/icon-drop.d.ts +2 -0
  2934. package/dist-cms/shared/icon-registry/icons/icon-drop.js +1 -0
  2935. package/dist-cms/shared/icon-registry/icons/icon-eco.d.ts +2 -0
  2936. package/dist-cms/shared/icon-registry/icons/icon-eco.js +1 -0
  2937. package/dist-cms/shared/icon-registry/icons/icon-economy.d.ts +2 -0
  2938. package/dist-cms/shared/icon-registry/icons/icon-economy.js +1 -0
  2939. package/dist-cms/shared/icon-registry/icons/icon-edit.d.ts +2 -0
  2940. package/dist-cms/shared/icon-registry/icons/icon-edit.js +1 -0
  2941. package/dist-cms/shared/icon-registry/icons/icon-eject.d.ts +2 -0
  2942. package/dist-cms/shared/icon-registry/icons/icon-eject.js +1 -0
  2943. package/dist-cms/shared/icon-registry/icons/icon-employee.d.ts +2 -0
  2944. package/dist-cms/shared/icon-registry/icons/icon-employee.js +1 -0
  2945. package/dist-cms/shared/icon-registry/icons/icon-energy-saving-bulb.d.ts +2 -0
  2946. package/dist-cms/shared/icon-registry/icons/icon-energy-saving-bulb.js +1 -0
  2947. package/dist-cms/shared/icon-registry/icons/icon-enter.d.ts +2 -0
  2948. package/dist-cms/shared/icon-registry/icons/icon-enter.js +1 -0
  2949. package/dist-cms/shared/icon-registry/icons/icon-equalizer.d.ts +2 -0
  2950. package/dist-cms/shared/icon-registry/icons/icon-equalizer.js +1 -0
  2951. package/dist-cms/shared/icon-registry/icons/icon-escape.d.ts +2 -0
  2952. package/dist-cms/shared/icon-registry/icons/icon-escape.js +1 -0
  2953. package/dist-cms/shared/icon-registry/icons/icon-ethernet.d.ts +2 -0
  2954. package/dist-cms/shared/icon-registry/icons/icon-ethernet.js +1 -0
  2955. package/dist-cms/shared/icon-registry/icons/icon-euro-bag.d.ts +2 -0
  2956. package/dist-cms/shared/icon-registry/icons/icon-euro-bag.js +1 -0
  2957. package/dist-cms/shared/icon-registry/icons/icon-exit-fullscreen.d.ts +2 -0
  2958. package/dist-cms/shared/icon-registry/icons/icon-exit-fullscreen.js +1 -0
  2959. package/dist-cms/shared/icon-registry/icons/icon-eye.d.ts +2 -0
  2960. package/dist-cms/shared/icon-registry/icons/icon-eye.js +1 -0
  2961. package/dist-cms/shared/icon-registry/icons/icon-facebook-like.d.ts +2 -0
  2962. package/dist-cms/shared/icon-registry/icons/icon-facebook-like.js +1 -0
  2963. package/dist-cms/shared/icon-registry/icons/icon-factory.d.ts +2 -0
  2964. package/dist-cms/shared/icon-registry/icons/icon-factory.js +1 -0
  2965. package/dist-cms/shared/icon-registry/icons/icon-favorite.d.ts +2 -0
  2966. package/dist-cms/shared/icon-registry/icons/icon-favorite.js +1 -0
  2967. package/dist-cms/shared/icon-registry/icons/icon-female-symbol.d.ts +2 -0
  2968. package/dist-cms/shared/icon-registry/icons/icon-female-symbol.js +1 -0
  2969. package/dist-cms/shared/icon-registry/icons/icon-file-cabinet.d.ts +2 -0
  2970. package/dist-cms/shared/icon-registry/icons/icon-file-cabinet.js +1 -0
  2971. package/dist-cms/shared/icon-registry/icons/icon-files.d.ts +2 -0
  2972. package/dist-cms/shared/icon-registry/icons/icon-files.js +1 -0
  2973. package/dist-cms/shared/icon-registry/icons/icon-filter-arrows.d.ts +2 -0
  2974. package/dist-cms/shared/icon-registry/icons/icon-filter-arrows.js +1 -0
  2975. package/dist-cms/shared/icon-registry/icons/icon-filter.d.ts +2 -0
  2976. package/dist-cms/shared/icon-registry/icons/icon-filter.js +1 -0
  2977. package/dist-cms/shared/icon-registry/icons/icon-fingerprint.d.ts +2 -0
  2978. package/dist-cms/shared/icon-registry/icons/icon-fingerprint.js +1 -0
  2979. package/dist-cms/shared/icon-registry/icons/icon-fire.d.ts +2 -0
  2980. package/dist-cms/shared/icon-registry/icons/icon-fire.js +1 -0
  2981. package/dist-cms/shared/icon-registry/icons/icon-firewall.d.ts +2 -0
  2982. package/dist-cms/shared/icon-registry/icons/icon-firewall.js +1 -0
  2983. package/dist-cms/shared/icon-registry/icons/icon-firewire.d.ts +2 -0
  2984. package/dist-cms/shared/icon-registry/icons/icon-firewire.js +1 -0
  2985. package/dist-cms/shared/icon-registry/icons/icon-flag-alt.d.ts +2 -0
  2986. package/dist-cms/shared/icon-registry/icons/icon-flag-alt.js +1 -0
  2987. package/dist-cms/shared/icon-registry/icons/icon-flag.d.ts +2 -0
  2988. package/dist-cms/shared/icon-registry/icons/icon-flag.js +1 -0
  2989. package/dist-cms/shared/icon-registry/icons/icon-flash.d.ts +2 -0
  2990. package/dist-cms/shared/icon-registry/icons/icon-flash.js +1 -0
  2991. package/dist-cms/shared/icon-registry/icons/icon-flashlight.d.ts +2 -0
  2992. package/dist-cms/shared/icon-registry/icons/icon-flashlight.js +1 -0
  2993. package/dist-cms/shared/icon-registry/icons/icon-flowerpot.d.ts +2 -0
  2994. package/dist-cms/shared/icon-registry/icons/icon-flowerpot.js +1 -0
  2995. package/dist-cms/shared/icon-registry/icons/icon-folder-open.d.ts +2 -0
  2996. package/dist-cms/shared/icon-registry/icons/icon-folder-open.js +1 -0
  2997. package/dist-cms/shared/icon-registry/icons/icon-folder-outline.d.ts +2 -0
  2998. package/dist-cms/shared/icon-registry/icons/icon-folder-outline.js +1 -0
  2999. package/dist-cms/shared/icon-registry/icons/icon-folder.d.ts +2 -0
  3000. package/dist-cms/shared/icon-registry/icons/icon-folder.js +1 -0
  3001. package/dist-cms/shared/icon-registry/icons/icon-folders.d.ts +2 -0
  3002. package/dist-cms/shared/icon-registry/icons/icon-folders.js +1 -0
  3003. package/dist-cms/shared/icon-registry/icons/icon-font.d.ts +2 -0
  3004. package/dist-cms/shared/icon-registry/icons/icon-font.js +1 -0
  3005. package/dist-cms/shared/icon-registry/icons/icon-food.d.ts +2 -0
  3006. package/dist-cms/shared/icon-registry/icons/icon-food.js +1 -0
  3007. package/dist-cms/shared/icon-registry/icons/icon-footprints.d.ts +2 -0
  3008. package/dist-cms/shared/icon-registry/icons/icon-footprints.js +1 -0
  3009. package/dist-cms/shared/icon-registry/icons/icon-forking.d.ts +2 -0
  3010. package/dist-cms/shared/icon-registry/icons/icon-forking.js +1 -0
  3011. package/dist-cms/shared/icon-registry/icons/icon-frame-alt.d.ts +2 -0
  3012. package/dist-cms/shared/icon-registry/icons/icon-frame-alt.js +1 -0
  3013. package/dist-cms/shared/icon-registry/icons/icon-frame.d.ts +2 -0
  3014. package/dist-cms/shared/icon-registry/icons/icon-frame.js +1 -0
  3015. package/dist-cms/shared/icon-registry/icons/icon-fullscreen-alt.d.ts +2 -0
  3016. package/dist-cms/shared/icon-registry/icons/icon-fullscreen-alt.js +1 -0
  3017. package/dist-cms/shared/icon-registry/icons/icon-fullscreen.d.ts +2 -0
  3018. package/dist-cms/shared/icon-registry/icons/icon-fullscreen.js +1 -0
  3019. package/dist-cms/shared/icon-registry/icons/icon-game.d.ts +2 -0
  3020. package/dist-cms/shared/icon-registry/icons/icon-game.js +1 -0
  3021. package/dist-cms/shared/icon-registry/icons/icon-geometry.d.ts +2 -0
  3022. package/dist-cms/shared/icon-registry/icons/icon-geometry.js +1 -0
  3023. package/dist-cms/shared/icon-registry/icons/icon-gift.d.ts +2 -0
  3024. package/dist-cms/shared/icon-registry/icons/icon-gift.js +1 -0
  3025. package/dist-cms/shared/icon-registry/icons/icon-glasses.d.ts +2 -0
  3026. package/dist-cms/shared/icon-registry/icons/icon-glasses.js +1 -0
  3027. package/dist-cms/shared/icon-registry/icons/icon-globe-alt.d.ts +2 -0
  3028. package/dist-cms/shared/icon-registry/icons/icon-globe-alt.js +1 -0
  3029. package/dist-cms/shared/icon-registry/icons/icon-globe-asia.d.ts +2 -0
  3030. package/dist-cms/shared/icon-registry/icons/icon-globe-asia.js +1 -0
  3031. package/dist-cms/shared/icon-registry/icons/icon-globe-europe-africa.d.ts +2 -0
  3032. package/dist-cms/shared/icon-registry/icons/icon-globe-europe-africa.js +1 -0
  3033. package/dist-cms/shared/icon-registry/icons/icon-globe-inverted-america.d.ts +2 -0
  3034. package/dist-cms/shared/icon-registry/icons/icon-globe-inverted-america.js +1 -0
  3035. package/dist-cms/shared/icon-registry/icons/icon-globe-inverted-asia.d.ts +2 -0
  3036. package/dist-cms/shared/icon-registry/icons/icon-globe-inverted-asia.js +1 -0
  3037. package/dist-cms/shared/icon-registry/icons/icon-globe-inverted-europe-africa.d.ts +2 -0
  3038. package/dist-cms/shared/icon-registry/icons/icon-globe-inverted-europe-africa.js +1 -0
  3039. package/dist-cms/shared/icon-registry/icons/icon-globe.d.ts +2 -0
  3040. package/dist-cms/shared/icon-registry/icons/icon-globe.js +1 -0
  3041. package/dist-cms/shared/icon-registry/icons/icon-gps.d.ts +2 -0
  3042. package/dist-cms/shared/icon-registry/icons/icon-gps.js +1 -0
  3043. package/dist-cms/shared/icon-registry/icons/icon-graduate.d.ts +2 -0
  3044. package/dist-cms/shared/icon-registry/icons/icon-graduate.js +1 -0
  3045. package/dist-cms/shared/icon-registry/icons/icon-grid.d.ts +2 -0
  3046. package/dist-cms/shared/icon-registry/icons/icon-grid.js +1 -0
  3047. package/dist-cms/shared/icon-registry/icons/icon-hammer.d.ts +2 -0
  3048. package/dist-cms/shared/icon-registry/icons/icon-hammer.js +1 -0
  3049. package/dist-cms/shared/icon-registry/icons/icon-hand-active-alt.d.ts +2 -0
  3050. package/dist-cms/shared/icon-registry/icons/icon-hand-active-alt.js +1 -0
  3051. package/dist-cms/shared/icon-registry/icons/icon-hand-active.d.ts +2 -0
  3052. package/dist-cms/shared/icon-registry/icons/icon-hand-active.js +1 -0
  3053. package/dist-cms/shared/icon-registry/icons/icon-hand-pointer-alt.d.ts +2 -0
  3054. package/dist-cms/shared/icon-registry/icons/icon-hand-pointer-alt.js +1 -0
  3055. package/dist-cms/shared/icon-registry/icons/icon-hand-pointer.d.ts +2 -0
  3056. package/dist-cms/shared/icon-registry/icons/icon-hand-pointer.js +1 -0
  3057. package/dist-cms/shared/icon-registry/icons/icon-handprint.d.ts +2 -0
  3058. package/dist-cms/shared/icon-registry/icons/icon-handprint.js +1 -0
  3059. package/dist-cms/shared/icon-registry/icons/icon-handshake.d.ts +2 -0
  3060. package/dist-cms/shared/icon-registry/icons/icon-handshake.js +1 -0
  3061. package/dist-cms/shared/icon-registry/icons/icon-handtool-alt.d.ts +2 -0
  3062. package/dist-cms/shared/icon-registry/icons/icon-handtool-alt.js +1 -0
  3063. package/dist-cms/shared/icon-registry/icons/icon-handtool.d.ts +2 -0
  3064. package/dist-cms/shared/icon-registry/icons/icon-handtool.js +1 -0
  3065. package/dist-cms/shared/icon-registry/icons/icon-hard-drive-alt.d.ts +2 -0
  3066. package/dist-cms/shared/icon-registry/icons/icon-hard-drive-alt.js +1 -0
  3067. package/dist-cms/shared/icon-registry/icons/icon-hard-drive.d.ts +2 -0
  3068. package/dist-cms/shared/icon-registry/icons/icon-hard-drive.js +1 -0
  3069. package/dist-cms/shared/icon-registry/icons/icon-hat.d.ts +2 -0
  3070. package/dist-cms/shared/icon-registry/icons/icon-hat.js +1 -0
  3071. package/dist-cms/shared/icon-registry/icons/icon-hd.d.ts +2 -0
  3072. package/dist-cms/shared/icon-registry/icons/icon-hd.js +1 -0
  3073. package/dist-cms/shared/icon-registry/icons/icon-headphones.d.ts +2 -0
  3074. package/dist-cms/shared/icon-registry/icons/icon-headphones.js +1 -0
  3075. package/dist-cms/shared/icon-registry/icons/icon-headset.d.ts +2 -0
  3076. package/dist-cms/shared/icon-registry/icons/icon-headset.js +1 -0
  3077. package/dist-cms/shared/icon-registry/icons/icon-hearts.d.ts +2 -0
  3078. package/dist-cms/shared/icon-registry/icons/icon-hearts.js +1 -0
  3079. package/dist-cms/shared/icon-registry/icons/icon-height.d.ts +2 -0
  3080. package/dist-cms/shared/icon-registry/icons/icon-height.js +1 -0
  3081. package/dist-cms/shared/icon-registry/icons/icon-help-alt.d.ts +2 -0
  3082. package/dist-cms/shared/icon-registry/icons/icon-help-alt.js +1 -0
  3083. package/dist-cms/shared/icon-registry/icons/icon-help.d.ts +2 -0
  3084. package/dist-cms/shared/icon-registry/icons/icon-help.js +1 -0
  3085. package/dist-cms/shared/icon-registry/icons/icon-home.d.ts +2 -0
  3086. package/dist-cms/shared/icon-registry/icons/icon-home.js +1 -0
  3087. package/dist-cms/shared/icon-registry/icons/icon-hourglass.d.ts +2 -0
  3088. package/dist-cms/shared/icon-registry/icons/icon-hourglass.js +1 -0
  3089. package/dist-cms/shared/icon-registry/icons/icon-imac.d.ts +2 -0
  3090. package/dist-cms/shared/icon-registry/icons/icon-imac.js +1 -0
  3091. package/dist-cms/shared/icon-registry/icons/icon-inactive-line.d.ts +2 -0
  3092. package/dist-cms/shared/icon-registry/icons/icon-inactive-line.js +1 -0
  3093. package/dist-cms/shared/icon-registry/icons/icon-inbox-full.d.ts +2 -0
  3094. package/dist-cms/shared/icon-registry/icons/icon-inbox-full.js +1 -0
  3095. package/dist-cms/shared/icon-registry/icons/icon-inbox.d.ts +2 -0
  3096. package/dist-cms/shared/icon-registry/icons/icon-inbox.js +1 -0
  3097. package/dist-cms/shared/icon-registry/icons/icon-indent.d.ts +2 -0
  3098. package/dist-cms/shared/icon-registry/icons/icon-indent.js +1 -0
  3099. package/dist-cms/shared/icon-registry/icons/icon-infinity.d.ts +2 -0
  3100. package/dist-cms/shared/icon-registry/icons/icon-infinity.js +1 -0
  3101. package/dist-cms/shared/icon-registry/icons/icon-info.d.ts +2 -0
  3102. package/dist-cms/shared/icon-registry/icons/icon-info.js +1 -0
  3103. package/dist-cms/shared/icon-registry/icons/icon-invoice.d.ts +2 -0
  3104. package/dist-cms/shared/icon-registry/icons/icon-invoice.js +1 -0
  3105. package/dist-cms/shared/icon-registry/icons/icon-ipad.d.ts +2 -0
  3106. package/dist-cms/shared/icon-registry/icons/icon-ipad.js +1 -0
  3107. package/dist-cms/shared/icon-registry/icons/icon-iphone.d.ts +2 -0
  3108. package/dist-cms/shared/icon-registry/icons/icon-iphone.js +1 -0
  3109. package/dist-cms/shared/icon-registry/icons/icon-item-arrangement.d.ts +2 -0
  3110. package/dist-cms/shared/icon-registry/icons/icon-item-arrangement.js +1 -0
  3111. package/dist-cms/shared/icon-registry/icons/icon-junk.d.ts +2 -0
  3112. package/dist-cms/shared/icon-registry/icons/icon-junk.js +1 -0
  3113. package/dist-cms/shared/icon-registry/icons/icon-key.d.ts +2 -0
  3114. package/dist-cms/shared/icon-registry/icons/icon-key.js +1 -0
  3115. package/dist-cms/shared/icon-registry/icons/icon-keyboard.d.ts +2 -0
  3116. package/dist-cms/shared/icon-registry/icons/icon-keyboard.js +1 -0
  3117. package/dist-cms/shared/icon-registry/icons/icon-keychain.d.ts +2 -0
  3118. package/dist-cms/shared/icon-registry/icons/icon-keychain.js +1 -0
  3119. package/dist-cms/shared/icon-registry/icons/icon-keyhole.d.ts +2 -0
  3120. package/dist-cms/shared/icon-registry/icons/icon-keyhole.js +1 -0
  3121. package/dist-cms/shared/icon-registry/icons/icon-lab.d.ts +2 -0
  3122. package/dist-cms/shared/icon-registry/icons/icon-lab.js +1 -0
  3123. package/dist-cms/shared/icon-registry/icons/icon-laptop.d.ts +2 -0
  3124. package/dist-cms/shared/icon-registry/icons/icon-laptop.js +1 -0
  3125. package/dist-cms/shared/icon-registry/icons/icon-layers-alt.d.ts +2 -0
  3126. package/dist-cms/shared/icon-registry/icons/icon-layers-alt.js +1 -0
  3127. package/dist-cms/shared/icon-registry/icons/icon-layers.d.ts +2 -0
  3128. package/dist-cms/shared/icon-registry/icons/icon-layers.js +1 -0
  3129. package/dist-cms/shared/icon-registry/icons/icon-layout.d.ts +2 -0
  3130. package/dist-cms/shared/icon-registry/icons/icon-layout.js +1 -0
  3131. package/dist-cms/shared/icon-registry/icons/icon-left-double-arrow.d.ts +2 -0
  3132. package/dist-cms/shared/icon-registry/icons/icon-left-double-arrow.js +1 -0
  3133. package/dist-cms/shared/icon-registry/icons/icon-legal.d.ts +2 -0
  3134. package/dist-cms/shared/icon-registry/icons/icon-legal.js +1 -0
  3135. package/dist-cms/shared/icon-registry/icons/icon-lense.d.ts +2 -0
  3136. package/dist-cms/shared/icon-registry/icons/icon-lense.js +1 -0
  3137. package/dist-cms/shared/icon-registry/icons/icon-library.d.ts +2 -0
  3138. package/dist-cms/shared/icon-registry/icons/icon-library.js +1 -0
  3139. package/dist-cms/shared/icon-registry/icons/icon-light-down.d.ts +2 -0
  3140. package/dist-cms/shared/icon-registry/icons/icon-light-down.js +1 -0
  3141. package/dist-cms/shared/icon-registry/icons/icon-light-up.d.ts +2 -0
  3142. package/dist-cms/shared/icon-registry/icons/icon-light-up.js +1 -0
  3143. package/dist-cms/shared/icon-registry/icons/icon-lightbulb-active.d.ts +2 -0
  3144. package/dist-cms/shared/icon-registry/icons/icon-lightbulb-active.js +1 -0
  3145. package/dist-cms/shared/icon-registry/icons/icon-lightbulb.d.ts +2 -0
  3146. package/dist-cms/shared/icon-registry/icons/icon-lightbulb.js +1 -0
  3147. package/dist-cms/shared/icon-registry/icons/icon-lightning.d.ts +2 -0
  3148. package/dist-cms/shared/icon-registry/icons/icon-lightning.js +1 -0
  3149. package/dist-cms/shared/icon-registry/icons/icon-link.d.ts +2 -0
  3150. package/dist-cms/shared/icon-registry/icons/icon-link.js +1 -0
  3151. package/dist-cms/shared/icon-registry/icons/icon-linux-tux.d.ts +2 -0
  3152. package/dist-cms/shared/icon-registry/icons/icon-linux-tux.js +1 -0
  3153. package/dist-cms/shared/icon-registry/icons/icon-list.d.ts +2 -0
  3154. package/dist-cms/shared/icon-registry/icons/icon-list.js +1 -0
  3155. package/dist-cms/shared/icon-registry/icons/icon-load.d.ts +2 -0
  3156. package/dist-cms/shared/icon-registry/icons/icon-load.js +1 -0
  3157. package/dist-cms/shared/icon-registry/icons/icon-loading.d.ts +2 -0
  3158. package/dist-cms/shared/icon-registry/icons/icon-loading.js +1 -0
  3159. package/dist-cms/shared/icon-registry/icons/icon-locate.d.ts +2 -0
  3160. package/dist-cms/shared/icon-registry/icons/icon-locate.js +1 -0
  3161. package/dist-cms/shared/icon-registry/icons/icon-location-near-me.d.ts +2 -0
  3162. package/dist-cms/shared/icon-registry/icons/icon-location-near-me.js +1 -0
  3163. package/dist-cms/shared/icon-registry/icons/icon-location-nearby.d.ts +2 -0
  3164. package/dist-cms/shared/icon-registry/icons/icon-location-nearby.js +1 -0
  3165. package/dist-cms/shared/icon-registry/icons/icon-lock.d.ts +2 -0
  3166. package/dist-cms/shared/icon-registry/icons/icon-lock.js +1 -0
  3167. package/dist-cms/shared/icon-registry/icons/icon-log-out.d.ts +2 -0
  3168. package/dist-cms/shared/icon-registry/icons/icon-log-out.js +1 -0
  3169. package/dist-cms/shared/icon-registry/icons/icon-logout.d.ts +2 -0
  3170. package/dist-cms/shared/icon-registry/icons/icon-logout.js +1 -0
  3171. package/dist-cms/shared/icon-registry/icons/icon-loupe.d.ts +2 -0
  3172. package/dist-cms/shared/icon-registry/icons/icon-loupe.js +1 -0
  3173. package/dist-cms/shared/icon-registry/icons/icon-magnet.d.ts +2 -0
  3174. package/dist-cms/shared/icon-registry/icons/icon-magnet.js +1 -0
  3175. package/dist-cms/shared/icon-registry/icons/icon-mailbox.d.ts +2 -0
  3176. package/dist-cms/shared/icon-registry/icons/icon-mailbox.js +1 -0
  3177. package/dist-cms/shared/icon-registry/icons/icon-male-and-female.d.ts +2 -0
  3178. package/dist-cms/shared/icon-registry/icons/icon-male-and-female.js +1 -0
  3179. package/dist-cms/shared/icon-registry/icons/icon-male-symbol.d.ts +2 -0
  3180. package/dist-cms/shared/icon-registry/icons/icon-male-symbol.js +1 -0
  3181. package/dist-cms/shared/icon-registry/icons/icon-map-alt.d.ts +2 -0
  3182. package/dist-cms/shared/icon-registry/icons/icon-map-alt.js +1 -0
  3183. package/dist-cms/shared/icon-registry/icons/icon-map-location.d.ts +2 -0
  3184. package/dist-cms/shared/icon-registry/icons/icon-map-location.js +1 -0
  3185. package/dist-cms/shared/icon-registry/icons/icon-map-marker.d.ts +2 -0
  3186. package/dist-cms/shared/icon-registry/icons/icon-map-marker.js +1 -0
  3187. package/dist-cms/shared/icon-registry/icons/icon-map.d.ts +2 -0
  3188. package/dist-cms/shared/icon-registry/icons/icon-map.js +1 -0
  3189. package/dist-cms/shared/icon-registry/icons/icon-medal.d.ts +2 -0
  3190. package/dist-cms/shared/icon-registry/icons/icon-medal.js +1 -0
  3191. package/dist-cms/shared/icon-registry/icons/icon-medical-emergency.d.ts +2 -0
  3192. package/dist-cms/shared/icon-registry/icons/icon-medical-emergency.js +1 -0
  3193. package/dist-cms/shared/icon-registry/icons/icon-medicine.d.ts +2 -0
  3194. package/dist-cms/shared/icon-registry/icons/icon-medicine.js +1 -0
  3195. package/dist-cms/shared/icon-registry/icons/icon-meeting.d.ts +2 -0
  3196. package/dist-cms/shared/icon-registry/icons/icon-meeting.js +1 -0
  3197. package/dist-cms/shared/icon-registry/icons/icon-megaphone.d.ts +2 -0
  3198. package/dist-cms/shared/icon-registry/icons/icon-megaphone.js +1 -0
  3199. package/dist-cms/shared/icon-registry/icons/icon-merge.d.ts +2 -0
  3200. package/dist-cms/shared/icon-registry/icons/icon-merge.js +1 -0
  3201. package/dist-cms/shared/icon-registry/icons/icon-message-open.d.ts +2 -0
  3202. package/dist-cms/shared/icon-registry/icons/icon-message-open.js +1 -0
  3203. package/dist-cms/shared/icon-registry/icons/icon-message-unopened.d.ts +2 -0
  3204. package/dist-cms/shared/icon-registry/icons/icon-message-unopened.js +1 -0
  3205. package/dist-cms/shared/icon-registry/icons/icon-message.d.ts +2 -0
  3206. package/dist-cms/shared/icon-registry/icons/icon-message.js +1 -0
  3207. package/dist-cms/shared/icon-registry/icons/icon-microscope.d.ts +2 -0
  3208. package/dist-cms/shared/icon-registry/icons/icon-microscope.js +1 -0
  3209. package/dist-cms/shared/icon-registry/icons/icon-mindmap.d.ts +2 -0
  3210. package/dist-cms/shared/icon-registry/icons/icon-mindmap.js +1 -0
  3211. package/dist-cms/shared/icon-registry/icons/icon-mobile.d.ts +2 -0
  3212. package/dist-cms/shared/icon-registry/icons/icon-mobile.js +1 -0
  3213. package/dist-cms/shared/icon-registry/icons/icon-molecular-network.d.ts +2 -0
  3214. package/dist-cms/shared/icon-registry/icons/icon-molecular-network.js +1 -0
  3215. package/dist-cms/shared/icon-registry/icons/icon-molecular.d.ts +2 -0
  3216. package/dist-cms/shared/icon-registry/icons/icon-molecular.js +1 -0
  3217. package/dist-cms/shared/icon-registry/icons/icon-mountain.d.ts +2 -0
  3218. package/dist-cms/shared/icon-registry/icons/icon-mountain.js +1 -0
  3219. package/dist-cms/shared/icon-registry/icons/icon-mouse-cursor.d.ts +2 -0
  3220. package/dist-cms/shared/icon-registry/icons/icon-mouse-cursor.js +1 -0
  3221. package/dist-cms/shared/icon-registry/icons/icon-mouse.d.ts +2 -0
  3222. package/dist-cms/shared/icon-registry/icons/icon-mouse.js +1 -0
  3223. package/dist-cms/shared/icon-registry/icons/icon-movie-alt.d.ts +2 -0
  3224. package/dist-cms/shared/icon-registry/icons/icon-movie-alt.js +1 -0
  3225. package/dist-cms/shared/icon-registry/icons/icon-movie.d.ts +2 -0
  3226. package/dist-cms/shared/icon-registry/icons/icon-movie.js +1 -0
  3227. package/dist-cms/shared/icon-registry/icons/icon-multiple-credit-cards.d.ts +2 -0
  3228. package/dist-cms/shared/icon-registry/icons/icon-multiple-credit-cards.js +1 -0
  3229. package/dist-cms/shared/icon-registry/icons/icon-multiple-windows.d.ts +2 -0
  3230. package/dist-cms/shared/icon-registry/icons/icon-multiple-windows.js +1 -0
  3231. package/dist-cms/shared/icon-registry/icons/icon-music.d.ts +2 -0
  3232. package/dist-cms/shared/icon-registry/icons/icon-music.js +1 -0
  3233. package/dist-cms/shared/icon-registry/icons/icon-name-badge.d.ts +2 -0
  3234. package/dist-cms/shared/icon-registry/icons/icon-name-badge.js +1 -0
  3235. package/dist-cms/shared/icon-registry/icons/icon-navigation-bottom.d.ts +2 -0
  3236. package/dist-cms/shared/icon-registry/icons/icon-navigation-bottom.js +1 -0
  3237. package/dist-cms/shared/icon-registry/icons/icon-navigation-down.d.ts +2 -0
  3238. package/dist-cms/shared/icon-registry/icons/icon-navigation-down.js +1 -0
  3239. package/dist-cms/shared/icon-registry/icons/icon-navigation-first.d.ts +2 -0
  3240. package/dist-cms/shared/icon-registry/icons/icon-navigation-first.js +1 -0
  3241. package/dist-cms/shared/icon-registry/icons/icon-navigation-horizontal.d.ts +2 -0
  3242. package/dist-cms/shared/icon-registry/icons/icon-navigation-horizontal.js +1 -0
  3243. package/dist-cms/shared/icon-registry/icons/icon-navigation-last.d.ts +2 -0
  3244. package/dist-cms/shared/icon-registry/icons/icon-navigation-last.js +1 -0
  3245. package/dist-cms/shared/icon-registry/icons/icon-navigation-left.d.ts +2 -0
  3246. package/dist-cms/shared/icon-registry/icons/icon-navigation-left.js +1 -0
  3247. package/dist-cms/shared/icon-registry/icons/icon-navigation-right.d.ts +2 -0
  3248. package/dist-cms/shared/icon-registry/icons/icon-navigation-right.js +1 -0
  3249. package/dist-cms/shared/icon-registry/icons/icon-navigation-road.d.ts +2 -0
  3250. package/dist-cms/shared/icon-registry/icons/icon-navigation-road.js +1 -0
  3251. package/dist-cms/shared/icon-registry/icons/icon-navigation-top.d.ts +2 -0
  3252. package/dist-cms/shared/icon-registry/icons/icon-navigation-top.js +1 -0
  3253. package/dist-cms/shared/icon-registry/icons/icon-navigation-up.d.ts +2 -0
  3254. package/dist-cms/shared/icon-registry/icons/icon-navigation-up.js +1 -0
  3255. package/dist-cms/shared/icon-registry/icons/icon-navigation-vertical.d.ts +2 -0
  3256. package/dist-cms/shared/icon-registry/icons/icon-navigation-vertical.js +1 -0
  3257. package/dist-cms/shared/icon-registry/icons/icon-navigation.d.ts +2 -0
  3258. package/dist-cms/shared/icon-registry/icons/icon-navigation.js +1 -0
  3259. package/dist-cms/shared/icon-registry/icons/icon-navigational-arrow.d.ts +2 -0
  3260. package/dist-cms/shared/icon-registry/icons/icon-navigational-arrow.js +1 -0
  3261. package/dist-cms/shared/icon-registry/icons/icon-network-alt.d.ts +2 -0
  3262. package/dist-cms/shared/icon-registry/icons/icon-network-alt.js +1 -0
  3263. package/dist-cms/shared/icon-registry/icons/icon-newspaper-alt.d.ts +2 -0
  3264. package/dist-cms/shared/icon-registry/icons/icon-newspaper-alt.js +1 -0
  3265. package/dist-cms/shared/icon-registry/icons/icon-newspaper.d.ts +2 -0
  3266. package/dist-cms/shared/icon-registry/icons/icon-newspaper.js +1 -0
  3267. package/dist-cms/shared/icon-registry/icons/icon-next-media.d.ts +2 -0
  3268. package/dist-cms/shared/icon-registry/icons/icon-next-media.js +1 -0
  3269. package/dist-cms/shared/icon-registry/icons/icon-next.d.ts +2 -0
  3270. package/dist-cms/shared/icon-registry/icons/icon-next.js +1 -0
  3271. package/dist-cms/shared/icon-registry/icons/icon-nodes.d.ts +2 -0
  3272. package/dist-cms/shared/icon-registry/icons/icon-nodes.js +1 -0
  3273. package/dist-cms/shared/icon-registry/icons/icon-notepad-alt.d.ts +2 -0
  3274. package/dist-cms/shared/icon-registry/icons/icon-notepad-alt.js +1 -0
  3275. package/dist-cms/shared/icon-registry/icons/icon-notepad.d.ts +2 -0
  3276. package/dist-cms/shared/icon-registry/icons/icon-notepad.js +1 -0
  3277. package/dist-cms/shared/icon-registry/icons/icon-old-key.d.ts +2 -0
  3278. package/dist-cms/shared/icon-registry/icons/icon-old-key.js +1 -0
  3279. package/dist-cms/shared/icon-registry/icons/icon-old-phone.d.ts +2 -0
  3280. package/dist-cms/shared/icon-registry/icons/icon-old-phone.js +1 -0
  3281. package/dist-cms/shared/icon-registry/icons/icon-operator.d.ts +2 -0
  3282. package/dist-cms/shared/icon-registry/icons/icon-operator.js +1 -0
  3283. package/dist-cms/shared/icon-registry/icons/icon-ordered-list.d.ts +2 -0
  3284. package/dist-cms/shared/icon-registry/icons/icon-ordered-list.js +1 -0
  3285. package/dist-cms/shared/icon-registry/icons/icon-os-x.d.ts +2 -0
  3286. package/dist-cms/shared/icon-registry/icons/icon-os-x.js +1 -0
  3287. package/dist-cms/shared/icon-registry/icons/icon-out.d.ts +2 -0
  3288. package/dist-cms/shared/icon-registry/icons/icon-out.js +1 -0
  3289. package/dist-cms/shared/icon-registry/icons/icon-outbox.d.ts +2 -0
  3290. package/dist-cms/shared/icon-registry/icons/icon-outbox.js +1 -0
  3291. package/dist-cms/shared/icon-registry/icons/icon-outdent.d.ts +2 -0
  3292. package/dist-cms/shared/icon-registry/icons/icon-outdent.js +1 -0
  3293. package/dist-cms/shared/icon-registry/icons/icon-page-add.d.ts +2 -0
  3294. package/dist-cms/shared/icon-registry/icons/icon-page-add.js +1 -0
  3295. package/dist-cms/shared/icon-registry/icons/icon-page-down.d.ts +2 -0
  3296. package/dist-cms/shared/icon-registry/icons/icon-page-down.js +1 -0
  3297. package/dist-cms/shared/icon-registry/icons/icon-page-remove.d.ts +2 -0
  3298. package/dist-cms/shared/icon-registry/icons/icon-page-remove.js +1 -0
  3299. package/dist-cms/shared/icon-registry/icons/icon-page-restricted.d.ts +2 -0
  3300. package/dist-cms/shared/icon-registry/icons/icon-page-restricted.js +1 -0
  3301. package/dist-cms/shared/icon-registry/icons/icon-page-up.d.ts +2 -0
  3302. package/dist-cms/shared/icon-registry/icons/icon-page-up.js +1 -0
  3303. package/dist-cms/shared/icon-registry/icons/icon-paint-roller.d.ts +2 -0
  3304. package/dist-cms/shared/icon-registry/icons/icon-paint-roller.js +1 -0
  3305. package/dist-cms/shared/icon-registry/icons/icon-palette.d.ts +2 -0
  3306. package/dist-cms/shared/icon-registry/icons/icon-palette.js +1 -0
  3307. package/dist-cms/shared/icon-registry/icons/icon-panel-show.d.ts +2 -0
  3308. package/dist-cms/shared/icon-registry/icons/icon-panel-show.js +1 -0
  3309. package/dist-cms/shared/icon-registry/icons/icon-pannel-close.d.ts +2 -0
  3310. package/dist-cms/shared/icon-registry/icons/icon-pannel-close.js +1 -0
  3311. package/dist-cms/shared/icon-registry/icons/icon-pants.d.ts +2 -0
  3312. package/dist-cms/shared/icon-registry/icons/icon-pants.js +1 -0
  3313. package/dist-cms/shared/icon-registry/icons/icon-paper-bag.d.ts +2 -0
  3314. package/dist-cms/shared/icon-registry/icons/icon-paper-bag.js +1 -0
  3315. package/dist-cms/shared/icon-registry/icons/icon-paper-plane-alt.d.ts +2 -0
  3316. package/dist-cms/shared/icon-registry/icons/icon-paper-plane-alt.js +1 -0
  3317. package/dist-cms/shared/icon-registry/icons/icon-paper-plane.d.ts +2 -0
  3318. package/dist-cms/shared/icon-registry/icons/icon-paper-plane.js +1 -0
  3319. package/dist-cms/shared/icon-registry/icons/icon-parachute-drop.d.ts +2 -0
  3320. package/dist-cms/shared/icon-registry/icons/icon-parachute-drop.js +1 -0
  3321. package/dist-cms/shared/icon-registry/icons/icon-parental-control.d.ts +2 -0
  3322. package/dist-cms/shared/icon-registry/icons/icon-parental-control.js +1 -0
  3323. package/dist-cms/shared/icon-registry/icons/icon-partly-cloudy.d.ts +2 -0
  3324. package/dist-cms/shared/icon-registry/icons/icon-partly-cloudy.js +1 -0
  3325. package/dist-cms/shared/icon-registry/icons/icon-paste-in.d.ts +2 -0
  3326. package/dist-cms/shared/icon-registry/icons/icon-paste-in.js +1 -0
  3327. package/dist-cms/shared/icon-registry/icons/icon-path.d.ts +2 -0
  3328. package/dist-cms/shared/icon-registry/icons/icon-path.js +1 -0
  3329. package/dist-cms/shared/icon-registry/icons/icon-pause.d.ts +2 -0
  3330. package/dist-cms/shared/icon-registry/icons/icon-pause.js +1 -0
  3331. package/dist-cms/shared/icon-registry/icons/icon-pc.d.ts +2 -0
  3332. package/dist-cms/shared/icon-registry/icons/icon-pc.js +1 -0
  3333. package/dist-cms/shared/icon-registry/icons/icon-people-alt-2.d.ts +2 -0
  3334. package/dist-cms/shared/icon-registry/icons/icon-people-alt-2.js +1 -0
  3335. package/dist-cms/shared/icon-registry/icons/icon-people-alt.d.ts +2 -0
  3336. package/dist-cms/shared/icon-registry/icons/icon-people-alt.js +1 -0
  3337. package/dist-cms/shared/icon-registry/icons/icon-people-female.d.ts +2 -0
  3338. package/dist-cms/shared/icon-registry/icons/icon-people-female.js +1 -0
  3339. package/dist-cms/shared/icon-registry/icons/icon-people.d.ts +2 -0
  3340. package/dist-cms/shared/icon-registry/icons/icon-people.js +1 -0
  3341. package/dist-cms/shared/icon-registry/icons/icon-phone-ring.d.ts +2 -0
  3342. package/dist-cms/shared/icon-registry/icons/icon-phone-ring.js +1 -0
  3343. package/dist-cms/shared/icon-registry/icons/icon-phone.d.ts +2 -0
  3344. package/dist-cms/shared/icon-registry/icons/icon-phone.js +1 -0
  3345. package/dist-cms/shared/icon-registry/icons/icon-photo-album.d.ts +2 -0
  3346. package/dist-cms/shared/icon-registry/icons/icon-photo-album.js +1 -0
  3347. package/dist-cms/shared/icon-registry/icons/icon-picture.d.ts +2 -0
  3348. package/dist-cms/shared/icon-registry/icons/icon-picture.js +1 -0
  3349. package/dist-cms/shared/icon-registry/icons/icon-pictures-alt-2.d.ts +2 -0
  3350. package/dist-cms/shared/icon-registry/icons/icon-pictures-alt-2.js +1 -0
  3351. package/dist-cms/shared/icon-registry/icons/icon-pictures-alt.d.ts +2 -0
  3352. package/dist-cms/shared/icon-registry/icons/icon-pictures-alt.js +1 -0
  3353. package/dist-cms/shared/icon-registry/icons/icon-pictures.d.ts +2 -0
  3354. package/dist-cms/shared/icon-registry/icons/icon-pictures.js +1 -0
  3355. package/dist-cms/shared/icon-registry/icons/icon-pie-chart.d.ts +2 -0
  3356. package/dist-cms/shared/icon-registry/icons/icon-pie-chart.js +1 -0
  3357. package/dist-cms/shared/icon-registry/icons/icon-piggy-bank.d.ts +2 -0
  3358. package/dist-cms/shared/icon-registry/icons/icon-piggy-bank.js +1 -0
  3359. package/dist-cms/shared/icon-registry/icons/icon-pin-location.d.ts +2 -0
  3360. package/dist-cms/shared/icon-registry/icons/icon-pin-location.js +1 -0
  3361. package/dist-cms/shared/icon-registry/icons/icon-piracy.d.ts +2 -0
  3362. package/dist-cms/shared/icon-registry/icons/icon-piracy.js +1 -0
  3363. package/dist-cms/shared/icon-registry/icons/icon-plane.d.ts +2 -0
  3364. package/dist-cms/shared/icon-registry/icons/icon-plane.js +1 -0
  3365. package/dist-cms/shared/icon-registry/icons/icon-planet.d.ts +2 -0
  3366. package/dist-cms/shared/icon-registry/icons/icon-planet.js +1 -0
  3367. package/dist-cms/shared/icon-registry/icons/icon-play.d.ts +2 -0
  3368. package/dist-cms/shared/icon-registry/icons/icon-play.js +1 -0
  3369. package/dist-cms/shared/icon-registry/icons/icon-playing-cards.d.ts +2 -0
  3370. package/dist-cms/shared/icon-registry/icons/icon-playing-cards.js +1 -0
  3371. package/dist-cms/shared/icon-registry/icons/icon-playlist.d.ts +2 -0
  3372. package/dist-cms/shared/icon-registry/icons/icon-playlist.js +1 -0
  3373. package/dist-cms/shared/icon-registry/icons/icon-plugin.d.ts +2 -0
  3374. package/dist-cms/shared/icon-registry/icons/icon-plugin.js +1 -0
  3375. package/dist-cms/shared/icon-registry/icons/icon-podcast.d.ts +2 -0
  3376. package/dist-cms/shared/icon-registry/icons/icon-podcast.js +1 -0
  3377. package/dist-cms/shared/icon-registry/icons/icon-poker-chip.d.ts +2 -0
  3378. package/dist-cms/shared/icon-registry/icons/icon-poker-chip.js +1 -0
  3379. package/dist-cms/shared/icon-registry/icons/icon-poll.d.ts +2 -0
  3380. package/dist-cms/shared/icon-registry/icons/icon-poll.js +1 -0
  3381. package/dist-cms/shared/icon-registry/icons/icon-post-it.d.ts +2 -0
  3382. package/dist-cms/shared/icon-registry/icons/icon-post-it.js +1 -0
  3383. package/dist-cms/shared/icon-registry/icons/icon-pound-bag.d.ts +2 -0
  3384. package/dist-cms/shared/icon-registry/icons/icon-pound-bag.js +1 -0
  3385. package/dist-cms/shared/icon-registry/icons/icon-power-outlet.d.ts +2 -0
  3386. package/dist-cms/shared/icon-registry/icons/icon-power-outlet.js +1 -0
  3387. package/dist-cms/shared/icon-registry/icons/icon-power.d.ts +2 -0
  3388. package/dist-cms/shared/icon-registry/icons/icon-power.js +1 -0
  3389. package/dist-cms/shared/icon-registry/icons/icon-presentation.d.ts +2 -0
  3390. package/dist-cms/shared/icon-registry/icons/icon-presentation.js +1 -0
  3391. package/dist-cms/shared/icon-registry/icons/icon-previous-media.d.ts +2 -0
  3392. package/dist-cms/shared/icon-registry/icons/icon-previous-media.js +1 -0
  3393. package/dist-cms/shared/icon-registry/icons/icon-previous.d.ts +2 -0
  3394. package/dist-cms/shared/icon-registry/icons/icon-previous.js +1 -0
  3395. package/dist-cms/shared/icon-registry/icons/icon-price-dollar.d.ts +2 -0
  3396. package/dist-cms/shared/icon-registry/icons/icon-price-dollar.js +1 -0
  3397. package/dist-cms/shared/icon-registry/icons/icon-price-euro.d.ts +2 -0
  3398. package/dist-cms/shared/icon-registry/icons/icon-price-euro.js +1 -0
  3399. package/dist-cms/shared/icon-registry/icons/icon-price-pound.d.ts +2 -0
  3400. package/dist-cms/shared/icon-registry/icons/icon-price-pound.js +1 -0
  3401. package/dist-cms/shared/icon-registry/icons/icon-price-yen.d.ts +2 -0
  3402. package/dist-cms/shared/icon-registry/icons/icon-price-yen.js +1 -0
  3403. package/dist-cms/shared/icon-registry/icons/icon-print.d.ts +2 -0
  3404. package/dist-cms/shared/icon-registry/icons/icon-print.js +1 -0
  3405. package/dist-cms/shared/icon-registry/icons/icon-printer-alt.d.ts +2 -0
  3406. package/dist-cms/shared/icon-registry/icons/icon-printer-alt.js +1 -0
  3407. package/dist-cms/shared/icon-registry/icons/icon-projector.d.ts +2 -0
  3408. package/dist-cms/shared/icon-registry/icons/icon-projector.js +1 -0
  3409. package/dist-cms/shared/icon-registry/icons/icon-pulse.d.ts +2 -0
  3410. package/dist-cms/shared/icon-registry/icons/icon-pulse.js +1 -0
  3411. package/dist-cms/shared/icon-registry/icons/icon-pushpin.d.ts +2 -0
  3412. package/dist-cms/shared/icon-registry/icons/icon-pushpin.js +1 -0
  3413. package/dist-cms/shared/icon-registry/icons/icon-qr-code.d.ts +2 -0
  3414. package/dist-cms/shared/icon-registry/icons/icon-qr-code.js +1 -0
  3415. package/dist-cms/shared/icon-registry/icons/icon-quote.d.ts +2 -0
  3416. package/dist-cms/shared/icon-registry/icons/icon-quote.js +1 -0
  3417. package/dist-cms/shared/icon-registry/icons/icon-radio-alt.d.ts +2 -0
  3418. package/dist-cms/shared/icon-registry/icons/icon-radio-alt.js +1 -0
  3419. package/dist-cms/shared/icon-registry/icons/icon-radio-receiver.d.ts +2 -0
  3420. package/dist-cms/shared/icon-registry/icons/icon-radio-receiver.js +1 -0
  3421. package/dist-cms/shared/icon-registry/icons/icon-radio.d.ts +2 -0
  3422. package/dist-cms/shared/icon-registry/icons/icon-radio.js +1 -0
  3423. package/dist-cms/shared/icon-registry/icons/icon-rain.d.ts +2 -0
  3424. package/dist-cms/shared/icon-registry/icons/icon-rain.js +1 -0
  3425. package/dist-cms/shared/icon-registry/icons/icon-rate.d.ts +2 -0
  3426. package/dist-cms/shared/icon-registry/icons/icon-rate.js +1 -0
  3427. package/dist-cms/shared/icon-registry/icons/icon-re-post.d.ts +2 -0
  3428. package/dist-cms/shared/icon-registry/icons/icon-re-post.js +1 -0
  3429. package/dist-cms/shared/icon-registry/icons/icon-readonly.d.ts +2 -0
  3430. package/dist-cms/shared/icon-registry/icons/icon-readonly.js +1 -0
  3431. package/dist-cms/shared/icon-registry/icons/icon-receipt-alt.d.ts +2 -0
  3432. package/dist-cms/shared/icon-registry/icons/icon-receipt-alt.js +1 -0
  3433. package/dist-cms/shared/icon-registry/icons/icon-receipt-dollar.d.ts +2 -0
  3434. package/dist-cms/shared/icon-registry/icons/icon-receipt-dollar.js +1 -0
  3435. package/dist-cms/shared/icon-registry/icons/icon-receipt-euro.d.ts +2 -0
  3436. package/dist-cms/shared/icon-registry/icons/icon-receipt-euro.js +1 -0
  3437. package/dist-cms/shared/icon-registry/icons/icon-receipt-pound.d.ts +2 -0
  3438. package/dist-cms/shared/icon-registry/icons/icon-receipt-pound.js +1 -0
  3439. package/dist-cms/shared/icon-registry/icons/icon-receipt-yen.d.ts +2 -0
  3440. package/dist-cms/shared/icon-registry/icons/icon-receipt-yen.js +1 -0
  3441. package/dist-cms/shared/icon-registry/icons/icon-reception.d.ts +2 -0
  3442. package/dist-cms/shared/icon-registry/icons/icon-reception.js +1 -0
  3443. package/dist-cms/shared/icon-registry/icons/icon-record.d.ts +2 -0
  3444. package/dist-cms/shared/icon-registry/icons/icon-record.js +1 -0
  3445. package/dist-cms/shared/icon-registry/icons/icon-redo.d.ts +2 -0
  3446. package/dist-cms/shared/icon-registry/icons/icon-redo.js +1 -0
  3447. package/dist-cms/shared/icon-registry/icons/icon-refresh.d.ts +2 -0
  3448. package/dist-cms/shared/icon-registry/icons/icon-refresh.js +1 -0
  3449. package/dist-cms/shared/icon-registry/icons/icon-remote.d.ts +2 -0
  3450. package/dist-cms/shared/icon-registry/icons/icon-remote.js +1 -0
  3451. package/dist-cms/shared/icon-registry/icons/icon-remove.d.ts +2 -0
  3452. package/dist-cms/shared/icon-registry/icons/icon-remove.js +1 -0
  3453. package/dist-cms/shared/icon-registry/icons/icon-repeat-one.d.ts +2 -0
  3454. package/dist-cms/shared/icon-registry/icons/icon-repeat-one.js +1 -0
  3455. package/dist-cms/shared/icon-registry/icons/icon-repeat.d.ts +2 -0
  3456. package/dist-cms/shared/icon-registry/icons/icon-repeat.js +1 -0
  3457. package/dist-cms/shared/icon-registry/icons/icon-reply-arrow.d.ts +2 -0
  3458. package/dist-cms/shared/icon-registry/icons/icon-reply-arrow.js +1 -0
  3459. package/dist-cms/shared/icon-registry/icons/icon-resize.d.ts +2 -0
  3460. package/dist-cms/shared/icon-registry/icons/icon-resize.js +1 -0
  3461. package/dist-cms/shared/icon-registry/icons/icon-return-to-top.d.ts +2 -0
  3462. package/dist-cms/shared/icon-registry/icons/icon-return-to-top.js +1 -0
  3463. package/dist-cms/shared/icon-registry/icons/icon-right-double-arrow.d.ts +2 -0
  3464. package/dist-cms/shared/icon-registry/icons/icon-right-double-arrow.js +1 -0
  3465. package/dist-cms/shared/icon-registry/icons/icon-road.d.ts +2 -0
  3466. package/dist-cms/shared/icon-registry/icons/icon-road.js +1 -0
  3467. package/dist-cms/shared/icon-registry/icons/icon-roadsign.d.ts +2 -0
  3468. package/dist-cms/shared/icon-registry/icons/icon-roadsign.js +1 -0
  3469. package/dist-cms/shared/icon-registry/icons/icon-rocket.d.ts +2 -0
  3470. package/dist-cms/shared/icon-registry/icons/icon-rocket.js +1 -0
  3471. package/dist-cms/shared/icon-registry/icons/icon-rss.d.ts +2 -0
  3472. package/dist-cms/shared/icon-registry/icons/icon-rss.js +1 -0
  3473. package/dist-cms/shared/icon-registry/icons/icon-ruler-alt.d.ts +2 -0
  3474. package/dist-cms/shared/icon-registry/icons/icon-ruler-alt.js +1 -0
  3475. package/dist-cms/shared/icon-registry/icons/icon-ruler.d.ts +2 -0
  3476. package/dist-cms/shared/icon-registry/icons/icon-ruler.js +1 -0
  3477. package/dist-cms/shared/icon-registry/icons/icon-safe.d.ts +2 -0
  3478. package/dist-cms/shared/icon-registry/icons/icon-safe.js +1 -0
  3479. package/dist-cms/shared/icon-registry/icons/icon-safedial.d.ts +2 -0
  3480. package/dist-cms/shared/icon-registry/icons/icon-safedial.js +1 -0
  3481. package/dist-cms/shared/icon-registry/icons/icon-sandbox-toys.d.ts +2 -0
  3482. package/dist-cms/shared/icon-registry/icons/icon-sandbox-toys.js +1 -0
  3483. package/dist-cms/shared/icon-registry/icons/icon-satellite-dish.d.ts +2 -0
  3484. package/dist-cms/shared/icon-registry/icons/icon-satellite-dish.js +1 -0
  3485. package/dist-cms/shared/icon-registry/icons/icon-save.d.ts +2 -0
  3486. package/dist-cms/shared/icon-registry/icons/icon-save.js +1 -0
  3487. package/dist-cms/shared/icon-registry/icons/icon-scan.d.ts +2 -0
  3488. package/dist-cms/shared/icon-registry/icons/icon-scan.js +1 -0
  3489. package/dist-cms/shared/icon-registry/icons/icon-school.d.ts +2 -0
  3490. package/dist-cms/shared/icon-registry/icons/icon-school.js +1 -0
  3491. package/dist-cms/shared/icon-registry/icons/icon-screensharing.d.ts +2 -0
  3492. package/dist-cms/shared/icon-registry/icons/icon-screensharing.js +1 -0
  3493. package/dist-cms/shared/icon-registry/icons/icon-script-alt.d.ts +2 -0
  3494. package/dist-cms/shared/icon-registry/icons/icon-script-alt.js +1 -0
  3495. package/dist-cms/shared/icon-registry/icons/icon-script.d.ts +2 -0
  3496. package/dist-cms/shared/icon-registry/icons/icon-script.js +1 -0
  3497. package/dist-cms/shared/icon-registry/icons/icon-scull.d.ts +2 -0
  3498. package/dist-cms/shared/icon-registry/icons/icon-scull.js +1 -0
  3499. package/dist-cms/shared/icon-registry/icons/icon-search.d.ts +2 -0
  3500. package/dist-cms/shared/icon-registry/icons/icon-search.js +1 -0
  3501. package/dist-cms/shared/icon-registry/icons/icon-security-camera.d.ts +2 -0
  3502. package/dist-cms/shared/icon-registry/icons/icon-security-camera.js +1 -0
  3503. package/dist-cms/shared/icon-registry/icons/icon-sensor.d.ts +2 -0
  3504. package/dist-cms/shared/icon-registry/icons/icon-sensor.js +1 -0
  3505. package/dist-cms/shared/icon-registry/icons/icon-server-alt.d.ts +2 -0
  3506. package/dist-cms/shared/icon-registry/icons/icon-server-alt.js +1 -0
  3507. package/dist-cms/shared/icon-registry/icons/icon-server.d.ts +2 -0
  3508. package/dist-cms/shared/icon-registry/icons/icon-server.js +1 -0
  3509. package/dist-cms/shared/icon-registry/icons/icon-settings-alt-2.d.ts +2 -0
  3510. package/dist-cms/shared/icon-registry/icons/icon-settings-alt-2.js +1 -0
  3511. package/dist-cms/shared/icon-registry/icons/icon-settings-alt.d.ts +2 -0
  3512. package/dist-cms/shared/icon-registry/icons/icon-settings-alt.js +1 -0
  3513. package/dist-cms/shared/icon-registry/icons/icon-settings.d.ts +2 -0
  3514. package/dist-cms/shared/icon-registry/icons/icon-settings.js +1 -0
  3515. package/dist-cms/shared/icon-registry/icons/icon-share-alt-2.d.ts +2 -0
  3516. package/dist-cms/shared/icon-registry/icons/icon-share-alt-2.js +1 -0
  3517. package/dist-cms/shared/icon-registry/icons/icon-share-alt.d.ts +2 -0
  3518. package/dist-cms/shared/icon-registry/icons/icon-share-alt.js +1 -0
  3519. package/dist-cms/shared/icon-registry/icons/icon-share.d.ts +2 -0
  3520. package/dist-cms/shared/icon-registry/icons/icon-share.js +1 -0
  3521. package/dist-cms/shared/icon-registry/icons/icon-sharing-iphone.d.ts +2 -0
  3522. package/dist-cms/shared/icon-registry/icons/icon-sharing-iphone.js +1 -0
  3523. package/dist-cms/shared/icon-registry/icons/icon-shield.d.ts +2 -0
  3524. package/dist-cms/shared/icon-registry/icons/icon-shield.js +1 -0
  3525. package/dist-cms/shared/icon-registry/icons/icon-shift.d.ts +2 -0
  3526. package/dist-cms/shared/icon-registry/icons/icon-shift.js +1 -0
  3527. package/dist-cms/shared/icon-registry/icons/icon-shipping-box.d.ts +2 -0
  3528. package/dist-cms/shared/icon-registry/icons/icon-shipping-box.js +1 -0
  3529. package/dist-cms/shared/icon-registry/icons/icon-shipping.d.ts +2 -0
  3530. package/dist-cms/shared/icon-registry/icons/icon-shipping.js +1 -0
  3531. package/dist-cms/shared/icon-registry/icons/icon-shoe.d.ts +2 -0
  3532. package/dist-cms/shared/icon-registry/icons/icon-shoe.js +1 -0
  3533. package/dist-cms/shared/icon-registry/icons/icon-shopping-basket-alt-2.d.ts +2 -0
  3534. package/dist-cms/shared/icon-registry/icons/icon-shopping-basket-alt-2.js +1 -0
  3535. package/dist-cms/shared/icon-registry/icons/icon-shopping-basket-alt.d.ts +2 -0
  3536. package/dist-cms/shared/icon-registry/icons/icon-shopping-basket-alt.js +1 -0
  3537. package/dist-cms/shared/icon-registry/icons/icon-shopping-basket.d.ts +2 -0
  3538. package/dist-cms/shared/icon-registry/icons/icon-shopping-basket.js +1 -0
  3539. package/dist-cms/shared/icon-registry/icons/icon-shorts.d.ts +2 -0
  3540. package/dist-cms/shared/icon-registry/icons/icon-shorts.js +1 -0
  3541. package/dist-cms/shared/icon-registry/icons/icon-shuffle.d.ts +2 -0
  3542. package/dist-cms/shared/icon-registry/icons/icon-shuffle.js +1 -0
  3543. package/dist-cms/shared/icon-registry/icons/icon-sience.d.ts +2 -0
  3544. package/dist-cms/shared/icon-registry/icons/icon-sience.js +1 -0
  3545. package/dist-cms/shared/icon-registry/icons/icon-simcard.d.ts +2 -0
  3546. package/dist-cms/shared/icon-registry/icons/icon-simcard.js +1 -0
  3547. package/dist-cms/shared/icon-registry/icons/icon-single-note.d.ts +2 -0
  3548. package/dist-cms/shared/icon-registry/icons/icon-single-note.js +1 -0
  3549. package/dist-cms/shared/icon-registry/icons/icon-sitemap.d.ts +2 -0
  3550. package/dist-cms/shared/icon-registry/icons/icon-sitemap.js +1 -0
  3551. package/dist-cms/shared/icon-registry/icons/icon-sleep.d.ts +2 -0
  3552. package/dist-cms/shared/icon-registry/icons/icon-sleep.js +1 -0
  3553. package/dist-cms/shared/icon-registry/icons/icon-slideshow.d.ts +2 -0
  3554. package/dist-cms/shared/icon-registry/icons/icon-slideshow.js +1 -0
  3555. package/dist-cms/shared/icon-registry/icons/icon-smiley-inverted.d.ts +2 -0
  3556. package/dist-cms/shared/icon-registry/icons/icon-smiley-inverted.js +1 -0
  3557. package/dist-cms/shared/icon-registry/icons/icon-smiley.d.ts +2 -0
  3558. package/dist-cms/shared/icon-registry/icons/icon-smiley.js +1 -0
  3559. package/dist-cms/shared/icon-registry/icons/icon-snow.d.ts +2 -0
  3560. package/dist-cms/shared/icon-registry/icons/icon-snow.js +1 -0
  3561. package/dist-cms/shared/icon-registry/icons/icon-sound-low.d.ts +2 -0
  3562. package/dist-cms/shared/icon-registry/icons/icon-sound-low.js +1 -0
  3563. package/dist-cms/shared/icon-registry/icons/icon-sound-medium.d.ts +2 -0
  3564. package/dist-cms/shared/icon-registry/icons/icon-sound-medium.js +1 -0
  3565. package/dist-cms/shared/icon-registry/icons/icon-sound-off.d.ts +2 -0
  3566. package/dist-cms/shared/icon-registry/icons/icon-sound-off.js +1 -0
  3567. package/dist-cms/shared/icon-registry/icons/icon-sound-waves.d.ts +2 -0
  3568. package/dist-cms/shared/icon-registry/icons/icon-sound-waves.js +1 -0
  3569. package/dist-cms/shared/icon-registry/icons/icon-sound.d.ts +2 -0
  3570. package/dist-cms/shared/icon-registry/icons/icon-sound.js +1 -0
  3571. package/dist-cms/shared/icon-registry/icons/icon-spades.d.ts +2 -0
  3572. package/dist-cms/shared/icon-registry/icons/icon-spades.js +1 -0
  3573. package/dist-cms/shared/icon-registry/icons/icon-speaker.d.ts +2 -0
  3574. package/dist-cms/shared/icon-registry/icons/icon-speaker.js +1 -0
  3575. package/dist-cms/shared/icon-registry/icons/icon-speed-gauge.d.ts +2 -0
  3576. package/dist-cms/shared/icon-registry/icons/icon-speed-gauge.js +1 -0
  3577. package/dist-cms/shared/icon-registry/icons/icon-split-alt.d.ts +2 -0
  3578. package/dist-cms/shared/icon-registry/icons/icon-split-alt.js +1 -0
  3579. package/dist-cms/shared/icon-registry/icons/icon-split.d.ts +2 -0
  3580. package/dist-cms/shared/icon-registry/icons/icon-split.js +1 -0
  3581. package/dist-cms/shared/icon-registry/icons/icon-sprout.d.ts +2 -0
  3582. package/dist-cms/shared/icon-registry/icons/icon-sprout.js +1 -0
  3583. package/dist-cms/shared/icon-registry/icons/icon-squiggly-line.d.ts +2 -0
  3584. package/dist-cms/shared/icon-registry/icons/icon-squiggly-line.js +1 -0
  3585. package/dist-cms/shared/icon-registry/icons/icon-ssd.d.ts +2 -0
  3586. package/dist-cms/shared/icon-registry/icons/icon-ssd.js +1 -0
  3587. package/dist-cms/shared/icon-registry/icons/icon-stacked-disks.d.ts +2 -0
  3588. package/dist-cms/shared/icon-registry/icons/icon-stacked-disks.js +1 -0
  3589. package/dist-cms/shared/icon-registry/icons/icon-stamp.d.ts +2 -0
  3590. package/dist-cms/shared/icon-registry/icons/icon-stamp.js +1 -0
  3591. package/dist-cms/shared/icon-registry/icons/icon-stop-alt.d.ts +2 -0
  3592. package/dist-cms/shared/icon-registry/icons/icon-stop-alt.js +1 -0
  3593. package/dist-cms/shared/icon-registry/icons/icon-stop-hand.d.ts +2 -0
  3594. package/dist-cms/shared/icon-registry/icons/icon-stop-hand.js +1 -0
  3595. package/dist-cms/shared/icon-registry/icons/icon-stop.d.ts +2 -0
  3596. package/dist-cms/shared/icon-registry/icons/icon-stop.js +1 -0
  3597. package/dist-cms/shared/icon-registry/icons/icon-store.d.ts +2 -0
  3598. package/dist-cms/shared/icon-registry/icons/icon-store.js +1 -0
  3599. package/dist-cms/shared/icon-registry/icons/icon-stream.d.ts +2 -0
  3600. package/dist-cms/shared/icon-registry/icons/icon-stream.js +1 -0
  3601. package/dist-cms/shared/icon-registry/icons/icon-sunny.d.ts +2 -0
  3602. package/dist-cms/shared/icon-registry/icons/icon-sunny.js +1 -0
  3603. package/dist-cms/shared/icon-registry/icons/icon-sweatshirt.d.ts +2 -0
  3604. package/dist-cms/shared/icon-registry/icons/icon-sweatshirt.js +1 -0
  3605. package/dist-cms/shared/icon-registry/icons/icon-sync.d.ts +2 -0
  3606. package/dist-cms/shared/icon-registry/icons/icon-sync.js +1 -0
  3607. package/dist-cms/shared/icon-registry/icons/icon-t-shirt.d.ts +2 -0
  3608. package/dist-cms/shared/icon-registry/icons/icon-t-shirt.js +1 -0
  3609. package/dist-cms/shared/icon-registry/icons/icon-tab-key.d.ts +2 -0
  3610. package/dist-cms/shared/icon-registry/icons/icon-tab-key.js +1 -0
  3611. package/dist-cms/shared/icon-registry/icons/icon-tab.d.ts +2 -0
  3612. package/dist-cms/shared/icon-registry/icons/icon-tab.js +1 -0
  3613. package/dist-cms/shared/icon-registry/icons/icon-tactics.d.ts +2 -0
  3614. package/dist-cms/shared/icon-registry/icons/icon-tactics.js +1 -0
  3615. package/dist-cms/shared/icon-registry/icons/icon-tag.d.ts +2 -0
  3616. package/dist-cms/shared/icon-registry/icons/icon-tag.js +1 -0
  3617. package/dist-cms/shared/icon-registry/icons/icon-tags.d.ts +2 -0
  3618. package/dist-cms/shared/icon-registry/icons/icon-tags.js +1 -0
  3619. package/dist-cms/shared/icon-registry/icons/icon-takeaway-cup.d.ts +2 -0
  3620. package/dist-cms/shared/icon-registry/icons/icon-takeaway-cup.js +1 -0
  3621. package/dist-cms/shared/icon-registry/icons/icon-target.d.ts +2 -0
  3622. package/dist-cms/shared/icon-registry/icons/icon-target.js +1 -0
  3623. package/dist-cms/shared/icon-registry/icons/icon-temperatrure-alt.d.ts +2 -0
  3624. package/dist-cms/shared/icon-registry/icons/icon-temperatrure-alt.js +1 -0
  3625. package/dist-cms/shared/icon-registry/icons/icon-temperature.d.ts +2 -0
  3626. package/dist-cms/shared/icon-registry/icons/icon-temperature.js +1 -0
  3627. package/dist-cms/shared/icon-registry/icons/icon-terminal.d.ts +2 -0
  3628. package/dist-cms/shared/icon-registry/icons/icon-terminal.js +1 -0
  3629. package/dist-cms/shared/icon-registry/icons/icon-theater.d.ts +2 -0
  3630. package/dist-cms/shared/icon-registry/icons/icon-theater.js +1 -0
  3631. package/dist-cms/shared/icon-registry/icons/icon-theif.d.ts +2 -0
  3632. package/dist-cms/shared/icon-registry/icons/icon-theif.js +1 -0
  3633. package/dist-cms/shared/icon-registry/icons/icon-thought-bubble.d.ts +2 -0
  3634. package/dist-cms/shared/icon-registry/icons/icon-thought-bubble.js +1 -0
  3635. package/dist-cms/shared/icon-registry/icons/icon-thumb-down.d.ts +2 -0
  3636. package/dist-cms/shared/icon-registry/icons/icon-thumb-down.js +1 -0
  3637. package/dist-cms/shared/icon-registry/icons/icon-thumb-up.d.ts +2 -0
  3638. package/dist-cms/shared/icon-registry/icons/icon-thumb-up.js +1 -0
  3639. package/dist-cms/shared/icon-registry/icons/icon-thumbnail-list.d.ts +2 -0
  3640. package/dist-cms/shared/icon-registry/icons/icon-thumbnail-list.js +1 -0
  3641. package/dist-cms/shared/icon-registry/icons/icon-thumbnails-small.d.ts +2 -0
  3642. package/dist-cms/shared/icon-registry/icons/icon-thumbnails-small.js +1 -0
  3643. package/dist-cms/shared/icon-registry/icons/icon-thumbnails.d.ts +2 -0
  3644. package/dist-cms/shared/icon-registry/icons/icon-thumbnails.js +1 -0
  3645. package/dist-cms/shared/icon-registry/icons/icon-ticket.d.ts +2 -0
  3646. package/dist-cms/shared/icon-registry/icons/icon-ticket.js +1 -0
  3647. package/dist-cms/shared/icon-registry/icons/icon-time.d.ts +2 -0
  3648. package/dist-cms/shared/icon-registry/icons/icon-time.js +1 -0
  3649. package/dist-cms/shared/icon-registry/icons/icon-timer.d.ts +2 -0
  3650. package/dist-cms/shared/icon-registry/icons/icon-timer.js +1 -0
  3651. package/dist-cms/shared/icon-registry/icons/icon-tools.d.ts +2 -0
  3652. package/dist-cms/shared/icon-registry/icons/icon-tools.js +1 -0
  3653. package/dist-cms/shared/icon-registry/icons/icon-top.d.ts +2 -0
  3654. package/dist-cms/shared/icon-registry/icons/icon-top.js +1 -0
  3655. package/dist-cms/shared/icon-registry/icons/icon-traffic-alt.d.ts +2 -0
  3656. package/dist-cms/shared/icon-registry/icons/icon-traffic-alt.js +1 -0
  3657. package/dist-cms/shared/icon-registry/icons/icon-trafic.d.ts +2 -0
  3658. package/dist-cms/shared/icon-registry/icons/icon-trafic.js +1 -0
  3659. package/dist-cms/shared/icon-registry/icons/icon-train.d.ts +2 -0
  3660. package/dist-cms/shared/icon-registry/icons/icon-train.js +1 -0
  3661. package/dist-cms/shared/icon-registry/icons/icon-trash-alt-2.d.ts +2 -0
  3662. package/dist-cms/shared/icon-registry/icons/icon-trash-alt-2.js +1 -0
  3663. package/dist-cms/shared/icon-registry/icons/icon-trash-alt.d.ts +2 -0
  3664. package/dist-cms/shared/icon-registry/icons/icon-trash-alt.js +1 -0
  3665. package/dist-cms/shared/icon-registry/icons/icon-trash.d.ts +2 -0
  3666. package/dist-cms/shared/icon-registry/icons/icon-trash.js +1 -0
  3667. package/dist-cms/shared/icon-registry/icons/icon-tree.d.ts +2 -0
  3668. package/dist-cms/shared/icon-registry/icons/icon-tree.js +1 -0
  3669. package/dist-cms/shared/icon-registry/icons/icon-trophy.d.ts +2 -0
  3670. package/dist-cms/shared/icon-registry/icons/icon-trophy.js +1 -0
  3671. package/dist-cms/shared/icon-registry/icons/icon-truck.d.ts +2 -0
  3672. package/dist-cms/shared/icon-registry/icons/icon-truck.js +1 -0
  3673. package/dist-cms/shared/icon-registry/icons/icon-tv-old.d.ts +2 -0
  3674. package/dist-cms/shared/icon-registry/icons/icon-tv-old.js +1 -0
  3675. package/dist-cms/shared/icon-registry/icons/icon-tv.d.ts +2 -0
  3676. package/dist-cms/shared/icon-registry/icons/icon-tv.js +1 -0
  3677. package/dist-cms/shared/icon-registry/icons/icon-umb-content.d.ts +2 -0
  3678. package/dist-cms/shared/icon-registry/icons/icon-umb-content.js +1 -0
  3679. package/dist-cms/shared/icon-registry/icons/icon-umb-contour.d.ts +2 -0
  3680. package/dist-cms/shared/icon-registry/icons/icon-umb-contour.js +1 -0
  3681. package/dist-cms/shared/icon-registry/icons/icon-umb-deploy.d.ts +2 -0
  3682. package/dist-cms/shared/icon-registry/icons/icon-umb-deploy.js +1 -0
  3683. package/dist-cms/shared/icon-registry/icons/icon-umb-developer.d.ts +2 -0
  3684. package/dist-cms/shared/icon-registry/icons/icon-umb-developer.js +1 -0
  3685. package/dist-cms/shared/icon-registry/icons/icon-umb-media.d.ts +2 -0
  3686. package/dist-cms/shared/icon-registry/icons/icon-umb-media.js +1 -0
  3687. package/dist-cms/shared/icon-registry/icons/icon-umb-members.d.ts +2 -0
  3688. package/dist-cms/shared/icon-registry/icons/icon-umb-members.js +1 -0
  3689. package/dist-cms/shared/icon-registry/icons/icon-umb-settings.d.ts +2 -0
  3690. package/dist-cms/shared/icon-registry/icons/icon-umb-settings.js +1 -0
  3691. package/dist-cms/shared/icon-registry/icons/icon-umb-users.d.ts +2 -0
  3692. package/dist-cms/shared/icon-registry/icons/icon-umb-users.js +1 -0
  3693. package/dist-cms/shared/icon-registry/icons/icon-umbraco.d.ts +2 -0
  3694. package/dist-cms/shared/icon-registry/icons/icon-umbraco.js +3 -0
  3695. package/dist-cms/shared/icon-registry/icons/icon-umbrella.d.ts +2 -0
  3696. package/dist-cms/shared/icon-registry/icons/icon-umbrella.js +1 -0
  3697. package/dist-cms/shared/icon-registry/icons/icon-undo.d.ts +2 -0
  3698. package/dist-cms/shared/icon-registry/icons/icon-undo.js +1 -0
  3699. package/dist-cms/shared/icon-registry/icons/icon-universal.d.ts +2 -0
  3700. package/dist-cms/shared/icon-registry/icons/icon-universal.js +1 -0
  3701. package/dist-cms/shared/icon-registry/icons/icon-unlocked.d.ts +2 -0
  3702. package/dist-cms/shared/icon-registry/icons/icon-unlocked.js +1 -0
  3703. package/dist-cms/shared/icon-registry/icons/icon-untitled.d.ts +2 -0
  3704. package/dist-cms/shared/icon-registry/icons/icon-untitled.js +1 -0
  3705. package/dist-cms/shared/icon-registry/icons/icon-usb-connector.d.ts +2 -0
  3706. package/dist-cms/shared/icon-registry/icons/icon-usb-connector.js +1 -0
  3707. package/dist-cms/shared/icon-registry/icons/icon-usb.d.ts +2 -0
  3708. package/dist-cms/shared/icon-registry/icons/icon-usb.js +1 -0
  3709. package/dist-cms/shared/icon-registry/icons/icon-user-female.d.ts +2 -0
  3710. package/dist-cms/shared/icon-registry/icons/icon-user-female.js +1 -0
  3711. package/dist-cms/shared/icon-registry/icons/icon-user-females-alt.d.ts +2 -0
  3712. package/dist-cms/shared/icon-registry/icons/icon-user-females-alt.js +1 -0
  3713. package/dist-cms/shared/icon-registry/icons/icon-user-females.d.ts +2 -0
  3714. package/dist-cms/shared/icon-registry/icons/icon-user-females.js +1 -0
  3715. package/dist-cms/shared/icon-registry/icons/icon-user-glasses.d.ts +2 -0
  3716. package/dist-cms/shared/icon-registry/icons/icon-user-glasses.js +1 -0
  3717. package/dist-cms/shared/icon-registry/icons/icon-user.d.ts +2 -0
  3718. package/dist-cms/shared/icon-registry/icons/icon-user.js +1 -0
  3719. package/dist-cms/shared/icon-registry/icons/icon-users-alt.d.ts +2 -0
  3720. package/dist-cms/shared/icon-registry/icons/icon-users-alt.js +1 -0
  3721. package/dist-cms/shared/icon-registry/icons/icon-users.d.ts +2 -0
  3722. package/dist-cms/shared/icon-registry/icons/icon-users.js +1 -0
  3723. package/dist-cms/shared/icon-registry/icons/icon-utilities.d.ts +2 -0
  3724. package/dist-cms/shared/icon-registry/icons/icon-utilities.js +1 -0
  3725. package/dist-cms/shared/icon-registry/icons/icon-vcard.d.ts +2 -0
  3726. package/dist-cms/shared/icon-registry/icons/icon-vcard.js +1 -0
  3727. package/dist-cms/shared/icon-registry/icons/icon-video.d.ts +2 -0
  3728. package/dist-cms/shared/icon-registry/icons/icon-video.js +1 -0
  3729. package/dist-cms/shared/icon-registry/icons/icon-voice.d.ts +2 -0
  3730. package/dist-cms/shared/icon-registry/icons/icon-voice.js +1 -0
  3731. package/dist-cms/shared/icon-registry/icons/icon-wall-plug.d.ts +2 -0
  3732. package/dist-cms/shared/icon-registry/icons/icon-wall-plug.js +1 -0
  3733. package/dist-cms/shared/icon-registry/icons/icon-wallet.d.ts +2 -0
  3734. package/dist-cms/shared/icon-registry/icons/icon-wallet.js +1 -0
  3735. package/dist-cms/shared/icon-registry/icons/icon-wand.d.ts +2 -0
  3736. package/dist-cms/shared/icon-registry/icons/icon-wand.js +1 -0
  3737. package/dist-cms/shared/icon-registry/icons/icon-war.d.ts +2 -0
  3738. package/dist-cms/shared/icon-registry/icons/icon-war.js +1 -0
  3739. package/dist-cms/shared/icon-registry/icons/icon-weight.d.ts +2 -0
  3740. package/dist-cms/shared/icon-registry/icons/icon-weight.js +1 -0
  3741. package/dist-cms/shared/icon-registry/icons/icon-width.d.ts +2 -0
  3742. package/dist-cms/shared/icon-registry/icons/icon-width.js +1 -0
  3743. package/dist-cms/shared/icon-registry/icons/icon-wifi.d.ts +2 -0
  3744. package/dist-cms/shared/icon-registry/icons/icon-wifi.js +1 -0
  3745. package/dist-cms/shared/icon-registry/icons/icon-window-popin.d.ts +2 -0
  3746. package/dist-cms/shared/icon-registry/icons/icon-window-popin.js +1 -0
  3747. package/dist-cms/shared/icon-registry/icons/icon-window-sizes.d.ts +2 -0
  3748. package/dist-cms/shared/icon-registry/icons/icon-window-sizes.js +1 -0
  3749. package/dist-cms/shared/icon-registry/icons/icon-windows.d.ts +2 -0
  3750. package/dist-cms/shared/icon-registry/icons/icon-windows.js +1 -0
  3751. package/dist-cms/shared/icon-registry/icons/icon-wine-glass.d.ts +2 -0
  3752. package/dist-cms/shared/icon-registry/icons/icon-wine-glass.js +1 -0
  3753. package/dist-cms/shared/icon-registry/icons/icon-wrench.d.ts +2 -0
  3754. package/dist-cms/shared/icon-registry/icons/icon-wrench.js +1 -0
  3755. package/dist-cms/shared/icon-registry/icons/icon-wrong.d.ts +2 -0
  3756. package/dist-cms/shared/icon-registry/icons/icon-wrong.js +1 -0
  3757. package/dist-cms/shared/icon-registry/icons/icon-yen-bag.d.ts +2 -0
  3758. package/dist-cms/shared/icon-registry/icons/icon-yen-bag.js +1 -0
  3759. package/dist-cms/shared/icon-registry/icons/icon-zip.d.ts +2 -0
  3760. package/dist-cms/shared/icon-registry/icons/icon-zip.js +1 -0
  3761. package/dist-cms/shared/icon-registry/icons/icon-zom-out.d.ts +2 -0
  3762. package/dist-cms/shared/icon-registry/icons/icon-zom-out.js +1 -0
  3763. package/dist-cms/shared/icon-registry/icons/icon-zoom-in.d.ts +2 -0
  3764. package/dist-cms/shared/icon-registry/icons/icon-zoom-in.js +1 -0
  3765. package/dist-cms/shared/icon-registry/icons/icons.json +1 -0
  3766. package/dist-cms/shared/icon-registry/index.d.ts +1 -0
  3767. package/dist-cms/shared/icon-registry/index.js +1 -0
  3768. package/dist-cms/shared/lit-element/index.d.ts +1 -0
  3769. package/dist-cms/shared/lit-element/index.js +1 -0
  3770. package/dist-cms/shared/lit-element/lit-element.element.d.ts +5 -0
  3771. package/dist-cms/shared/lit-element/lit-element.element.js +4 -0
  3772. package/dist-cms/shared/modal/index.d.ts +1 -0
  3773. package/dist-cms/shared/modal/index.js +1 -0
  3774. package/dist-cms/shared/modal/modal-element.element.d.ts +8 -0
  3775. package/dist-cms/shared/modal/modal-element.element.js +19 -0
  3776. package/dist-cms/shared/modal/stories/story-modal-service-example.element.d.ts +9 -0
  3777. package/dist-cms/shared/modal/stories/story-modal-service-example.element.js +57 -0
  3778. package/dist-cms/shared/models/index.d.ts +15 -0
  3779. package/dist-cms/shared/models/index.js +1 -0
  3780. package/dist-cms/shared/repository/collection-repository.interface.d.ts +3 -0
  3781. package/dist-cms/shared/repository/collection-repository.interface.js +1 -0
  3782. package/dist-cms/shared/repository/copy-repository.interface.d.ts +4 -0
  3783. package/dist-cms/shared/repository/copy-repository.interface.js +1 -0
  3784. package/dist-cms/shared/repository/data-source/collection-data-source.interface.d.ts +6 -0
  3785. package/dist-cms/shared/repository/data-source/collection-data-source.interface.js +1 -0
  3786. package/dist-cms/shared/repository/data-source/copy-data-source.interface.d.ts +4 -0
  3787. package/dist-cms/shared/repository/data-source/copy-data-source.interface.js +1 -0
  3788. package/dist-cms/shared/repository/data-source/data-source-response.interface.d.ts +7 -0
  3789. package/dist-cms/shared/repository/data-source/data-source-response.interface.js +1 -0
  3790. package/dist-cms/shared/repository/data-source/data-source.interface.d.ts +8 -0
  3791. package/dist-cms/shared/repository/data-source/data-source.interface.js +1 -0
  3792. package/dist-cms/shared/repository/data-source/extend-data-source-paged-response-data.function.d.ts +20 -0
  3793. package/dist-cms/shared/repository/data-source/extend-data-source-paged-response-data.function.js +30 -0
  3794. package/dist-cms/shared/repository/data-source/extend-data-source-response-data.function.d.ts +20 -0
  3795. package/dist-cms/shared/repository/data-source/extend-data-source-response-data.function.js +22 -0
  3796. package/dist-cms/shared/repository/data-source/folder-data-source.interface.d.ts +9 -0
  3797. package/dist-cms/shared/repository/data-source/folder-data-source.interface.js +1 -0
  3798. package/dist-cms/shared/repository/data-source/index.d.ts +10 -0
  3799. package/dist-cms/shared/repository/data-source/index.js +10 -0
  3800. package/dist-cms/shared/repository/data-source/item-data-source.interface.d.ts +4 -0
  3801. package/dist-cms/shared/repository/data-source/item-data-source.interface.js +1 -0
  3802. package/dist-cms/shared/repository/data-source/move-data-source.interface.d.ts +4 -0
  3803. package/dist-cms/shared/repository/data-source/move-data-source.interface.js +1 -0
  3804. package/dist-cms/shared/repository/data-source/tree-data-source.interface.d.ts +7 -0
  3805. package/dist-cms/shared/repository/data-source/tree-data-source.interface.js +1 -0
  3806. package/dist-cms/shared/repository/detail-repository.interface.d.ts +10 -0
  3807. package/dist-cms/shared/repository/detail-repository.interface.js +1 -0
  3808. package/dist-cms/shared/repository/folder-repository.interface.d.ts +22 -0
  3809. package/dist-cms/shared/repository/folder-repository.interface.js +1 -0
  3810. package/dist-cms/shared/repository/index.d.ts +9 -0
  3811. package/dist-cms/shared/repository/index.js +9 -0
  3812. package/dist-cms/shared/repository/item-repository.interface.d.ts +10 -0
  3813. package/dist-cms/shared/repository/item-repository.interface.js +1 -0
  3814. package/dist-cms/shared/repository/move-repository.interface.d.ts +4 -0
  3815. package/dist-cms/shared/repository/move-repository.interface.js +1 -0
  3816. package/dist-cms/shared/repository/repository-items.manager.d.ts +17 -0
  3817. package/dist-cms/shared/repository/repository-items.manager.js +50 -0
  3818. package/dist-cms/shared/repository/tree-repository.interface.d.ts +31 -0
  3819. package/dist-cms/shared/repository/tree-repository.interface.js +1 -0
  3820. package/dist-cms/shared/resources/index.d.ts +3 -0
  3821. package/dist-cms/shared/resources/index.js +3 -0
  3822. package/dist-cms/shared/resources/resource.controller.d.ts +31 -0
  3823. package/dist-cms/shared/resources/resource.controller.js +119 -0
  3824. package/dist-cms/shared/resources/tryExecute.function.d.ts +1 -0
  3825. package/dist-cms/shared/resources/tryExecute.function.js +4 -0
  3826. package/dist-cms/shared/resources/tryExecuteAndNotify.function.d.ts +3 -0
  3827. package/dist-cms/shared/resources/tryExecuteAndNotify.function.js +5 -0
  3828. package/dist-cms/shared/router/encode-folder-name.function.d.ts +1 -0
  3829. package/dist-cms/shared/router/encode-folder-name.function.js +9 -0
  3830. package/dist-cms/shared/router/generate-route-path-builder.function.d.ts +3 -0
  3831. package/dist-cms/shared/router/generate-route-path-builder.function.js +14 -0
  3832. package/dist-cms/shared/router/index.d.ts +9 -0
  3833. package/dist-cms/shared/router/index.js +9 -0
  3834. package/dist-cms/shared/router/route.context.d.ts +14 -0
  3835. package/dist-cms/shared/router/route.context.js +126 -0
  3836. package/dist-cms/shared/router/route.interface.d.ts +1 -0
  3837. package/dist-cms/shared/router/route.interface.js +1 -0
  3838. package/dist-cms/shared/router/router-slot-change.event.d.ts +6 -0
  3839. package/dist-cms/shared/router/router-slot-change.event.js +7 -0
  3840. package/dist-cms/shared/router/router-slot-init.event.d.ts +6 -0
  3841. package/dist-cms/shared/router/router-slot-init.event.js +7 -0
  3842. package/dist-cms/shared/router/router-slot.element.d.ts +37 -0
  3843. package/dist-cms/shared/router/router-slot.element.js +134 -0
  3844. package/dist-cms/shared/router/variant-router-slot.element.d.ts +25 -0
  3845. package/dist-cms/shared/router/variant-router-slot.element.js +75 -0
  3846. package/dist-cms/shared/umb-events/change.event.d.ts +3 -0
  3847. package/dist-cms/shared/umb-events/change.event.js +6 -0
  3848. package/dist-cms/shared/umb-events/delete.event.d.ts +3 -0
  3849. package/dist-cms/shared/umb-events/delete.event.js +5 -0
  3850. package/dist-cms/shared/umb-events/executed.event.d.ts +3 -0
  3851. package/dist-cms/shared/umb-events/executed.event.js +5 -0
  3852. package/dist-cms/shared/umb-events/index.d.ts +4 -0
  3853. package/dist-cms/shared/umb-events/index.js +4 -0
  3854. package/dist-cms/shared/umb-events/input.event.d.ts +3 -0
  3855. package/dist-cms/shared/umb-events/input.event.js +6 -0
  3856. package/dist-cms/shared/utils/diff.type.d.ts +5 -0
  3857. package/dist-cms/shared/utils/diff.type.js +1 -0
  3858. package/dist-cms/shared/utils/ensure-path-ends-with-slash.function.d.ts +1 -0
  3859. package/dist-cms/shared/utils/ensure-path-ends-with-slash.function.js +3 -0
  3860. package/dist-cms/shared/utils/generate-umbraco-alias.function.d.ts +1 -0
  3861. package/dist-cms/shared/utils/generate-umbraco-alias.function.js +8 -0
  3862. package/dist-cms/shared/utils/increment-string.function.d.ts +1 -0
  3863. package/dist-cms/shared/utils/increment-string.function.js +3 -0
  3864. package/dist-cms/shared/utils/index.d.ts +14 -0
  3865. package/dist-cms/shared/utils/index.js +9 -0
  3866. package/dist-cms/shared/utils/media-helper.service.d.ts +44 -0
  3867. package/dist-cms/shared/utils/media-helper.service.js +151 -0
  3868. package/dist-cms/shared/utils/path-folder-name.function.d.ts +2 -0
  3869. package/dist-cms/shared/utils/path-folder-name.function.js +2 -0
  3870. package/dist-cms/shared/utils/selection-manager.d.ts +26 -0
  3871. package/dist-cms/shared/utils/selection-manager.js +39 -0
  3872. package/dist-cms/shared/utils/udi-service.d.ts +2 -0
  3873. package/dist-cms/shared/utils/udi-service.js +17 -0
  3874. package/dist-cms/shared/utils/umbraco-path.function.d.ts +1 -0
  3875. package/dist-cms/shared/utils/umbraco-path.function.js +3 -0
  3876. package/dist-cms/tinymce/CHANGELOG.md +3275 -0
  3877. package/dist-cms/tinymce/README.md +71 -0
  3878. package/dist-cms/tinymce/bower.json +27 -0
  3879. package/dist-cms/tinymce/composer.json +52 -0
  3880. package/dist-cms/tinymce/icons/default/icons.js +194 -0
  3881. package/dist-cms/tinymce/icons/default/icons.min.js +1 -0
  3882. package/dist-cms/tinymce/icons/default/index.js +7 -0
  3883. package/dist-cms/tinymce/langs/ar.js +407 -0
  3884. package/dist-cms/tinymce/langs/az.js +406 -0
  3885. package/dist-cms/tinymce/langs/be.js +406 -0
  3886. package/dist-cms/tinymce/langs/bg_BG.js +406 -0
  3887. package/dist-cms/tinymce/langs/bn_BD.js +406 -0
  3888. package/dist-cms/tinymce/langs/ca.js +406 -0
  3889. package/dist-cms/tinymce/langs/cs.js +406 -0
  3890. package/dist-cms/tinymce/langs/cy.js +406 -0
  3891. package/dist-cms/tinymce/langs/da.js +406 -0
  3892. package/dist-cms/tinymce/langs/de.js +406 -0
  3893. package/dist-cms/tinymce/langs/dv.js +406 -0
  3894. package/dist-cms/tinymce/langs/el.js +406 -0
  3895. package/dist-cms/tinymce/langs/eo.js +406 -0
  3896. package/dist-cms/tinymce/langs/es.js +406 -0
  3897. package/dist-cms/tinymce/langs/es_MX.js +406 -0
  3898. package/dist-cms/tinymce/langs/et.js +406 -0
  3899. package/dist-cms/tinymce/langs/eu.js +406 -0
  3900. package/dist-cms/tinymce/langs/fa.js +407 -0
  3901. package/dist-cms/tinymce/langs/fi.js +406 -0
  3902. package/dist-cms/tinymce/langs/fr_FR.js +406 -0
  3903. package/dist-cms/tinymce/langs/ga.js +406 -0
  3904. package/dist-cms/tinymce/langs/gl.js +406 -0
  3905. package/dist-cms/tinymce/langs/he_IL.js +407 -0
  3906. package/dist-cms/tinymce/langs/hi.js +406 -0
  3907. package/dist-cms/tinymce/langs/hr.js +406 -0
  3908. package/dist-cms/tinymce/langs/hu_HU.js +406 -0
  3909. package/dist-cms/tinymce/langs/hy.js +406 -0
  3910. package/dist-cms/tinymce/langs/id.js +406 -0
  3911. package/dist-cms/tinymce/langs/is_IS.js +406 -0
  3912. package/dist-cms/tinymce/langs/it.js +406 -0
  3913. package/dist-cms/tinymce/langs/ja.js +406 -0
  3914. package/dist-cms/tinymce/langs/ka_GE.js +406 -0
  3915. package/dist-cms/tinymce/langs/kab.js +406 -0
  3916. package/dist-cms/tinymce/langs/kk.js +406 -0
  3917. package/dist-cms/tinymce/langs/ko_KR.js +406 -0
  3918. package/dist-cms/tinymce/langs/ku.js +407 -0
  3919. package/dist-cms/tinymce/langs/lt.js +406 -0
  3920. package/dist-cms/tinymce/langs/lv.js +406 -0
  3921. package/dist-cms/tinymce/langs/nb_NO.js +406 -0
  3922. package/dist-cms/tinymce/langs/ne.js +406 -0
  3923. package/dist-cms/tinymce/langs/nl.js +406 -0
  3924. package/dist-cms/tinymce/langs/nl_BE.js +406 -0
  3925. package/dist-cms/tinymce/langs/oc.js +406 -0
  3926. package/dist-cms/tinymce/langs/pl.js +406 -0
  3927. package/dist-cms/tinymce/langs/pt_BR.js +406 -0
  3928. package/dist-cms/tinymce/langs/ro.js +406 -0
  3929. package/dist-cms/tinymce/langs/ru.js +406 -0
  3930. package/dist-cms/tinymce/langs/sk.js +406 -0
  3931. package/dist-cms/tinymce/langs/sl_SI.js +406 -0
  3932. package/dist-cms/tinymce/langs/sq.js +406 -0
  3933. package/dist-cms/tinymce/langs/sr.js +406 -0
  3934. package/dist-cms/tinymce/langs/sv_SE.js +406 -0
  3935. package/dist-cms/tinymce/langs/ta.js +406 -0
  3936. package/dist-cms/tinymce/langs/tg.js +406 -0
  3937. package/dist-cms/tinymce/langs/th_TH.js +406 -0
  3938. package/dist-cms/tinymce/langs/tr.js +406 -0
  3939. package/dist-cms/tinymce/langs/ug.js +406 -0
  3940. package/dist-cms/tinymce/langs/uk.js +406 -0
  3941. package/dist-cms/tinymce/langs/uz.js +406 -0
  3942. package/dist-cms/tinymce/langs/vi.js +406 -0
  3943. package/dist-cms/tinymce/langs/zh-Hans.js +406 -0
  3944. package/dist-cms/tinymce/langs/zh-Hant.js +406 -0
  3945. package/dist-cms/tinymce/langs/zh_HK.js +406 -0
  3946. package/dist-cms/tinymce/langs/zh_MO.js +406 -0
  3947. package/dist-cms/tinymce/langs/zh_SG.js +406 -0
  3948. package/dist-cms/tinymce/license.txt +21 -0
  3949. package/dist-cms/tinymce/models/dom/index.js +7 -0
  3950. package/dist-cms/tinymce/models/dom/model.js +8040 -0
  3951. package/dist-cms/tinymce/models/dom/model.min.js +4 -0
  3952. package/dist-cms/tinymce/package.json +32 -0
  3953. package/dist-cms/tinymce/plugins/accordion/index.js +7 -0
  3954. package/dist-cms/tinymce/plugins/accordion/plugin.js +1033 -0
  3955. package/dist-cms/tinymce/plugins/accordion/plugin.min.js +4 -0
  3956. package/dist-cms/tinymce/plugins/advlist/index.js +7 -0
  3957. package/dist-cms/tinymce/plugins/advlist/plugin.js +259 -0
  3958. package/dist-cms/tinymce/plugins/advlist/plugin.min.js +4 -0
  3959. package/dist-cms/tinymce/plugins/anchor/index.js +7 -0
  3960. package/dist-cms/tinymce/plugins/anchor/plugin.js +214 -0
  3961. package/dist-cms/tinymce/plugins/anchor/plugin.min.js +4 -0
  3962. package/dist-cms/tinymce/plugins/autolink/index.js +7 -0
  3963. package/dist-cms/tinymce/plugins/autolink/plugin.js +228 -0
  3964. package/dist-cms/tinymce/plugins/autolink/plugin.min.js +4 -0
  3965. package/dist-cms/tinymce/plugins/autoresize/index.js +7 -0
  3966. package/dist-cms/tinymce/plugins/autoresize/plugin.js +192 -0
  3967. package/dist-cms/tinymce/plugins/autoresize/plugin.min.js +4 -0
  3968. package/dist-cms/tinymce/plugins/autosave/index.js +7 -0
  3969. package/dist-cms/tinymce/plugins/autosave/plugin.js +233 -0
  3970. package/dist-cms/tinymce/plugins/autosave/plugin.min.js +4 -0
  3971. package/dist-cms/tinymce/plugins/charmap/index.js +7 -0
  3972. package/dist-cms/tinymce/plugins/charmap/plugin.js +1658 -0
  3973. package/dist-cms/tinymce/plugins/charmap/plugin.min.js +4 -0
  3974. package/dist-cms/tinymce/plugins/code/index.js +7 -0
  3975. package/dist-cms/tinymce/plugins/code/plugin.js +85 -0
  3976. package/dist-cms/tinymce/plugins/code/plugin.min.js +4 -0
  3977. package/dist-cms/tinymce/plugins/codesample/index.js +7 -0
  3978. package/dist-cms/tinymce/plugins/codesample/plugin.js +2463 -0
  3979. package/dist-cms/tinymce/plugins/codesample/plugin.min.js +4 -0
  3980. package/dist-cms/tinymce/plugins/directionality/index.js +7 -0
  3981. package/dist-cms/tinymce/plugins/directionality/plugin.js +395 -0
  3982. package/dist-cms/tinymce/plugins/directionality/plugin.min.js +4 -0
  3983. package/dist-cms/tinymce/plugins/emoticons/index.js +7 -0
  3984. package/dist-cms/tinymce/plugins/emoticons/js/emojiimages.js +1 -0
  3985. package/dist-cms/tinymce/plugins/emoticons/js/emojiimages.min.js +3 -0
  3986. package/dist-cms/tinymce/plugins/emoticons/js/emojis.js +1 -0
  3987. package/dist-cms/tinymce/plugins/emoticons/js/emojis.min.js +2 -0
  3988. package/dist-cms/tinymce/plugins/emoticons/plugin.js +595 -0
  3989. package/dist-cms/tinymce/plugins/emoticons/plugin.min.js +4 -0
  3990. package/dist-cms/tinymce/plugins/fullscreen/index.js +7 -0
  3991. package/dist-cms/tinymce/plugins/fullscreen/plugin.js +1196 -0
  3992. package/dist-cms/tinymce/plugins/fullscreen/plugin.min.js +4 -0
  3993. package/dist-cms/tinymce/plugins/help/index.js +7 -0
  3994. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/ar.js +90 -0
  3995. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/bg_BG.js +90 -0
  3996. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/ca.js +90 -0
  3997. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/cs.js +90 -0
  3998. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/da.js +90 -0
  3999. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/de.js +90 -0
  4000. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/el.js +90 -0
  4001. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/en.js +90 -0
  4002. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/es.js +90 -0
  4003. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/eu.js +90 -0
  4004. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/fa.js +90 -0
  4005. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/fi.js +90 -0
  4006. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/fr_FR.js +90 -0
  4007. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/he_IL.js +90 -0
  4008. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/hi.js +90 -0
  4009. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/hr.js +90 -0
  4010. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/hu_HU.js +90 -0
  4011. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/id.js +90 -0
  4012. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/it.js +90 -0
  4013. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/ja.js +90 -0
  4014. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/kk.js +90 -0
  4015. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/ko_KR.js +90 -0
  4016. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/ms.js +90 -0
  4017. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/nb_NO.js +90 -0
  4018. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/nl.js +90 -0
  4019. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/pl.js +90 -0
  4020. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/pt_BR.js +90 -0
  4021. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/pt_PT.js +90 -0
  4022. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/ro.js +90 -0
  4023. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/ru.js +90 -0
  4024. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/sk.js +90 -0
  4025. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/sl_SI.js +90 -0
  4026. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/sv_SE.js +90 -0
  4027. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/th_TH.js +90 -0
  4028. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/tr.js +90 -0
  4029. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/uk.js +90 -0
  4030. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/vi.js +90 -0
  4031. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/zh_CN.js +84 -0
  4032. package/dist-cms/tinymce/plugins/help/js/i18n/keynav/zh_TW.js +90 -0
  4033. package/dist-cms/tinymce/plugins/help/plugin.js +898 -0
  4034. package/dist-cms/tinymce/plugins/help/plugin.min.js +4 -0
  4035. package/dist-cms/tinymce/plugins/image/index.js +7 -0
  4036. package/dist-cms/tinymce/plugins/image/plugin.js +1504 -0
  4037. package/dist-cms/tinymce/plugins/image/plugin.min.js +4 -0
  4038. package/dist-cms/tinymce/plugins/importcss/index.js +7 -0
  4039. package/dist-cms/tinymce/plugins/importcss/plugin.js +344 -0
  4040. package/dist-cms/tinymce/plugins/importcss/plugin.min.js +4 -0
  4041. package/dist-cms/tinymce/plugins/insertdatetime/index.js +7 -0
  4042. package/dist-cms/tinymce/plugins/insertdatetime/plugin.js +187 -0
  4043. package/dist-cms/tinymce/plugins/insertdatetime/plugin.min.js +4 -0
  4044. package/dist-cms/tinymce/plugins/link/index.js +7 -0
  4045. package/dist-cms/tinymce/plugins/link/plugin.js +1241 -0
  4046. package/dist-cms/tinymce/plugins/link/plugin.min.js +4 -0
  4047. package/dist-cms/tinymce/plugins/lists/index.js +7 -0
  4048. package/dist-cms/tinymce/plugins/lists/plugin.js +1948 -0
  4049. package/dist-cms/tinymce/plugins/lists/plugin.min.js +4 -0
  4050. package/dist-cms/tinymce/plugins/media/index.js +7 -0
  4051. package/dist-cms/tinymce/plugins/media/plugin.js +1235 -0
  4052. package/dist-cms/tinymce/plugins/media/plugin.min.js +4 -0
  4053. package/dist-cms/tinymce/plugins/nonbreaking/index.js +7 -0
  4054. package/dist-cms/tinymce/plugins/nonbreaking/plugin.js +123 -0
  4055. package/dist-cms/tinymce/plugins/nonbreaking/plugin.min.js +4 -0
  4056. package/dist-cms/tinymce/plugins/pagebreak/index.js +7 -0
  4057. package/dist-cms/tinymce/plugins/pagebreak/plugin.js +117 -0
  4058. package/dist-cms/tinymce/plugins/pagebreak/plugin.min.js +4 -0
  4059. package/dist-cms/tinymce/plugins/preview/index.js +7 -0
  4060. package/dist-cms/tinymce/plugins/preview/plugin.js +97 -0
  4061. package/dist-cms/tinymce/plugins/preview/plugin.min.js +4 -0
  4062. package/dist-cms/tinymce/plugins/quickbars/index.js +7 -0
  4063. package/dist-cms/tinymce/plugins/quickbars/plugin.js +438 -0
  4064. package/dist-cms/tinymce/plugins/quickbars/plugin.min.js +4 -0
  4065. package/dist-cms/tinymce/plugins/save/index.js +7 -0
  4066. package/dist-cms/tinymce/plugins/save/plugin.js +118 -0
  4067. package/dist-cms/tinymce/plugins/save/plugin.min.js +4 -0
  4068. package/dist-cms/tinymce/plugins/searchreplace/index.js +7 -0
  4069. package/dist-cms/tinymce/plugins/searchreplace/plugin.js +1093 -0
  4070. package/dist-cms/tinymce/plugins/searchreplace/plugin.min.js +4 -0
  4071. package/dist-cms/tinymce/plugins/table/index.js +7 -0
  4072. package/dist-cms/tinymce/plugins/table/plugin.js +3462 -0
  4073. package/dist-cms/tinymce/plugins/table/plugin.min.js +4 -0
  4074. package/dist-cms/tinymce/plugins/template/index.js +7 -0
  4075. package/dist-cms/tinymce/plugins/template/plugin.js +567 -0
  4076. package/dist-cms/tinymce/plugins/template/plugin.min.js +4 -0
  4077. package/dist-cms/tinymce/plugins/visualblocks/index.js +7 -0
  4078. package/dist-cms/tinymce/plugins/visualblocks/plugin.js +98 -0
  4079. package/dist-cms/tinymce/plugins/visualblocks/plugin.min.js +4 -0
  4080. package/dist-cms/tinymce/plugins/visualchars/index.js +7 -0
  4081. package/dist-cms/tinymce/plugins/visualchars/plugin.js +560 -0
  4082. package/dist-cms/tinymce/plugins/visualchars/plugin.min.js +4 -0
  4083. package/dist-cms/tinymce/plugins/wordcount/index.js +7 -0
  4084. package/dist-cms/tinymce/plugins/wordcount/plugin.js +405 -0
  4085. package/dist-cms/tinymce/plugins/wordcount/plugin.min.js +4 -0
  4086. package/dist-cms/tinymce/skins/content/dark/content.css +66 -0
  4087. package/dist-cms/tinymce/skins/content/dark/content.min.css +1 -0
  4088. package/dist-cms/tinymce/skins/content/default/content.css +61 -0
  4089. package/dist-cms/tinymce/skins/content/default/content.min.css +1 -0
  4090. package/dist-cms/tinymce/skins/content/document/content.css +66 -0
  4091. package/dist-cms/tinymce/skins/content/document/content.min.css +1 -0
  4092. package/dist-cms/tinymce/skins/content/tinymce-5/content.css +61 -0
  4093. package/dist-cms/tinymce/skins/content/tinymce-5/content.min.css +1 -0
  4094. package/dist-cms/tinymce/skins/content/tinymce-5-dark/content.css +66 -0
  4095. package/dist-cms/tinymce/skins/content/tinymce-5-dark/content.min.css +1 -0
  4096. package/dist-cms/tinymce/skins/content/writer/content.css +62 -0
  4097. package/dist-cms/tinymce/skins/content/writer/content.min.css +1 -0
  4098. package/dist-cms/tinymce/skins/ui/oxide/content.css +785 -0
  4099. package/dist-cms/tinymce/skins/ui/oxide/content.inline.css +779 -0
  4100. package/dist-cms/tinymce/skins/ui/oxide/content.inline.min.css +1 -0
  4101. package/dist-cms/tinymce/skins/ui/oxide/content.min.css +1 -0
  4102. package/dist-cms/tinymce/skins/ui/oxide/skin.css +3706 -0
  4103. package/dist-cms/tinymce/skins/ui/oxide/skin.min.css +1 -0
  4104. package/dist-cms/tinymce/skins/ui/oxide/skin.shadowdom.css +30 -0
  4105. package/dist-cms/tinymce/skins/ui/oxide/skin.shadowdom.min.css +1 -0
  4106. package/dist-cms/tinymce/skins/ui/oxide-dark/content.css +766 -0
  4107. package/dist-cms/tinymce/skins/ui/oxide-dark/content.inline.css +779 -0
  4108. package/dist-cms/tinymce/skins/ui/oxide-dark/content.inline.min.css +1 -0
  4109. package/dist-cms/tinymce/skins/ui/oxide-dark/content.min.css +1 -0
  4110. package/dist-cms/tinymce/skins/ui/oxide-dark/skin.css +3709 -0
  4111. package/dist-cms/tinymce/skins/ui/oxide-dark/skin.min.css +1 -0
  4112. package/dist-cms/tinymce/skins/ui/oxide-dark/skin.shadowdom.css +30 -0
  4113. package/dist-cms/tinymce/skins/ui/oxide-dark/skin.shadowdom.min.css +1 -0
  4114. package/dist-cms/tinymce/skins/ui/tinymce-5/content.css +785 -0
  4115. package/dist-cms/tinymce/skins/ui/tinymce-5/content.inline.css +779 -0
  4116. package/dist-cms/tinymce/skins/ui/tinymce-5/content.inline.min.css +1 -0
  4117. package/dist-cms/tinymce/skins/ui/tinymce-5/content.min.css +1 -0
  4118. package/dist-cms/tinymce/skins/ui/tinymce-5/skin.css +3800 -0
  4119. package/dist-cms/tinymce/skins/ui/tinymce-5/skin.min.css +1 -0
  4120. package/dist-cms/tinymce/skins/ui/tinymce-5/skin.shadowdom.css +30 -0
  4121. package/dist-cms/tinymce/skins/ui/tinymce-5/skin.shadowdom.min.css +1 -0
  4122. package/dist-cms/tinymce/skins/ui/tinymce-5-dark/content.css +766 -0
  4123. package/dist-cms/tinymce/skins/ui/tinymce-5-dark/content.inline.css +779 -0
  4124. package/dist-cms/tinymce/skins/ui/tinymce-5-dark/content.inline.min.css +1 -0
  4125. package/dist-cms/tinymce/skins/ui/tinymce-5-dark/content.min.css +1 -0
  4126. package/dist-cms/tinymce/skins/ui/tinymce-5-dark/skin.css +3800 -0
  4127. package/dist-cms/tinymce/skins/ui/tinymce-5-dark/skin.min.css +1 -0
  4128. package/dist-cms/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.css +30 -0
  4129. package/dist-cms/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.min.css +1 -0
  4130. package/dist-cms/tinymce/themes/silver/index.js +7 -0
  4131. package/dist-cms/tinymce/themes/silver/theme.js +30361 -0
  4132. package/dist-cms/tinymce/themes/silver/theme.min.js +4 -0
  4133. package/dist-cms/tinymce/tinymce.d.ts +3211 -0
  4134. package/dist-cms/tinymce/tinymce.js +31297 -0
  4135. package/dist-cms/tinymce/tinymce.min.js +4 -0
  4136. package/dist-cms/tsconfig.tsbuildinfo +1 -0
  4137. package/dist-cms/umbraco-package-schema.json +2643 -0
  4138. package/dist-cms/vscode-html-custom-data.json +3570 -0
  4139. package/package.json +139 -32
  4140. package/router-slot-2.3.0.tgz +0 -0
  4141. package/backend-api.d.ts +0 -2518
  4142. package/context-api.d.ts +0 -165
  4143. package/controller.d.ts +0 -41
  4144. package/element.d.ts +0 -18
  4145. package/entity-action.d.ts +0 -72
  4146. package/extensions-api.d.ts +0 -66
  4147. package/extensions-registry.d.ts +0 -397
  4148. package/modal.d.ts +0 -134
  4149. package/models.d.ts +0 -75
  4150. package/observable-api.d.ts +0 -249
  4151. package/property-editor.d.ts +0 -8
  4152. package/repository.d.ts +0 -69
  4153. package/resources.d.ts +0 -50
  4154. package/store.d.ts +0 -159
  4155. package/umb-events.d.ts +0 -17
  4156. package/utils.d.ts +0 -14
  4157. package/vscode-html-custom-data.json +0 -3009
  4158. package/workspace.d.ts +0 -33
@@ -0,0 +1,3275 @@
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
+
7
+ ## Unreleased
8
+
9
+ ## 6.6.0 - 2023-07-12
10
+
11
+ ### Added
12
+ - Added a new property value — `bottom` — for inline dialog configurations that anchors the dialog to the bottom of the editor. #TINY-9888
13
+ - Added a new property — `persistent` — for inline dialog configurations that will stop the dialog closing when clicking away from it. #TINY-9991
14
+ - New `ai`, `ai-prompt` and `send` icons. #TINY-9942
15
+ - Added a new property — `streamContent` — for the `iframe` dialog component. This causes `setData()` to update content without reloading the frame, and end scroll positions will be maintained as new content streams in. #TINY-10032
16
+ - AI Assistant plugin toolbar items added to the default toolbar and AI Assistant plugin menu items added to the default menu bar. #TINY-9939
17
+ - Added a new property — `border` — for the `iframe` dialog component that allows a border to be added. #TINY-10049
18
+ - Added a new property — `align` — for the label dialog component that controls text alignment. #TINY-10058
19
+
20
+ ### Improved
21
+ - When defining a modal or inline dialog, if the buttons property is an empty array, or is not defined at all, the footer will now no longer be rendered. #TINY-9996
22
+ - The `iframe` dialog component now has a minimum height of 200px. #TINY-10059
23
+
24
+ ### Changed
25
+ - The icon in an `alertbanner` dialog component is no longer clickable if the _URL_ field is not specified. #TINY-10013
26
+
27
+ ### Fixed
28
+ - Fixed an issue that caused the inline dialog `size` setting to have no effect. #TINY-10015
29
+ - Fixed an issue that prevented the close button from being clicked when the dialog was blocked. #TINY-10056
30
+
31
+ ## 6.5.1 - 2023-06-19
32
+
33
+ ### Fixed
34
+ - Fixed a regression where pasting an image url would result in the url being inserted as plain text instead of the image being inserted. #TINY-9997
35
+ - It was not possible to press space to insert a space character inside a summary element on Firefox. #TINY-9964
36
+
37
+ ## 6.5.0 - 2023-06-12
38
+
39
+ ### Added
40
+ - Support for the `h` hash parameter in Vimeo video URLs in the Media plugin. #TINY-9830
41
+ - New `table_merge_content_on_paste` option which disables the merging behaviour when pasting a table inside an existing table. #TINY-9808
42
+ - New optional `defaultExpandedIds` and `onToggleExpand` options to the `tree` component config. #TINY-9653
43
+ - New optional `defaultSelectedId` option to the `tree` component config. #TINY-9715
44
+ - New `accordion` plugin with the `InsertAccordion` command. #TINY-9730
45
+ - New `accordion` and `accordion-toggle` icons. #TINY-9789
46
+ - New `details_initial_state` and `details_serialized_state` options. #TINY-9732
47
+ - New `init_content_sync` option that initializes the editor iframe using `document.write` instead of `srcdoc`. #TINY-9818
48
+ - New `newdocument_content` option that sets the content presented in the editor on choosing *File -> New document* or pressing the *New document* toolbar button. #TINY-9839
49
+ - New `editable_root` option that can be set to `false` to prevent editing of the editor’s root element. #TINY-9839
50
+ - New `editor.setEditableRoot` API that sets the editable state of the editor root element. #TINY-9839
51
+ - New `editor.hasEditableRoot` API that returns `true` or `false` depending on the editable state of the editor root element. #TINY-9839
52
+ - New `EditableRootStateChange` event that gets dispatched when the state of the editable root is changed. #TINY-9839
53
+ - Added Oxide styles for `dl`, `dt`, `dd`, `ol`, and `strong` elements in dialog body content. #TINY-9919
54
+
55
+ ### Improved
56
+ - Screen readers can now announce highlighted items listed in the Link dialog’s link combobox. #TINY-9280
57
+ - The `icon` field for a dialog’s footer `togglebutton` is no longer mandatory. #TINY-9757
58
+ - Toolbar buttons and menu items now present as disabled when they cannot be used because a selected element has a `contenteditable="false"` attribute. #TINY-9669
59
+ - Help text displayed at *Help -> Help -> Keyboard Navigation* re-written. #DOC-1936
60
+ - Translations added for Help text displayed at *Help > Help > Keyboard Navigation*. #TINY-9633
61
+ - For word count purposes these characters are now considered punctuation marks: *$*, *~*, *+*, *|*, *№*, and *`*. They no longer increase a document’s word count. #TINY-8122
62
+ - Updated the `codesample` plugin dialog and the `template` plugin dialog to use the `listbox` component to match other dialogs. #TINY-9630
63
+ - If the selection contains more than one table cell, Quickbar toolbars are now positioned in the middle of the selection horizontally. #TINY-8297
64
+ - Exposed `dataTransfer` property of drag and drop events for elements with a `contenteditable="false"` attribute. #TINY-9601
65
+ - Screen readers now announce instructions for resizing the editor using arrow keys, when the resize handle is focused. #TINY-9793
66
+ - Dialog `tabpanel` tab labels are now allowed to word wrap for better readability with long labels. #TINY-9947
67
+ - Added newlines before and after `details` elements in the output HTML. #TINY-9959
68
+ - Added padding for empty `summary` elements so that they can be properly edited. #TINY-9959
69
+
70
+ ### Changed
71
+ - The `caption`, `address` and `dt` elements no longer incorrectly allow non-inline child elements when the editor schema is set to _HTML 4_. #TINY-9768
72
+ - SVG icons for back and foreground colors now use `class` instead of `id` to identify SVG elements that should change color. #TINY-9844
73
+ - Anchor tag elements — `<a>` — no longer incorrectly allow non-inline child elements when the editor schema is set to _HTML 4_. #TINY-9805
74
+ - Help dialog was restored to `medium` width for better readability. #TINY-9947
75
+
76
+ ### Fixed
77
+ - Right-clicking on a merge tag instance presented different highlighting depending on the host browser. #TINY-9848
78
+ - When macOS was the host operating system, pressing *Command+backspace* did not add an undo level. #TINY-8910
79
+ - *Ctrl+backspace* and *Ctrl+delete* did not restore the correct insertion point position after a redo operation. #TINY-8910
80
+ - In the `tree` component, a selected item in a directory would not stay selected after collapsing the directory. #TINY-9715
81
+ - Enabling or Disabling checkboxes would not set the correct classes and attributes. #TINY-4189
82
+ - Entering a newline would, in some setups, place the insertion point in the wrong paragraph. #TINY-9822
83
+ - Redial would, in some situations, cause select elements not to have an initial value selected when they should have. #TINY-9679
84
+ - The Table toolbar was visible even if the table was within a host element with a `contenteditable="false"` attribute set. #TINY-9664
85
+ - Quickbar toolbars were incorrectly shown for elements with a `contenteditable="false"` attribute set in a root with a `contenteditable="false"` attribute set. #TINY-9460
86
+ - When Chrome was the host browser, adding a newline when the insertion point was placed after a table could, in some specific situations, not generate the expected newline. #TINY-9813
87
+ - Show the calculated height and width of Media Embed elements in the `media` plugin dialog. #TINY-8714
88
+ - Removing an image that failed to upload from an empty paragraph left the paragraph without a padding `<br>` tag. #TINY-9696
89
+ - Allow a Media Embed element to be correctly resized when using the `media` plugin dialog by converting the Media Embed element to a standalone iframe. #TINY-8714
90
+ - In some circumstances, an inline alert in the _Search and Replace_ dialog persisted when it was not necessary. #TINY-9704
91
+ - Context toolbars displayed the incorrect status for the `advlist` plugin buttons. #TINY-9680
92
+ - In Safari running on iOS, Korean characters merged onto the previous line upon typing after inserting a newline by pressing Enter. #TINY-9746
93
+ - Initiating the editor with a table as the first element resulted in resize handles being displayed around the table even when the editor did not have focus. #TINY-9748
94
+ - If the insertion point was between two images, pressing the Backspace key would, in some situations, delete the image after the insertion point instead of the image before the insertion point. #TINY-9807
95
+ - Directionality commands could set the `dir` attribute on elements with a `contenteditable="false"` attribute set when these elements were within a root with a `contenteditable="false"` attribute set. #TINY-9662
96
+ - The content of the dialog body could not be scrolled. #TINY-9668
97
+ - Some toolbar items, when in a not-enabled state, did not render the `not-allowed` mouse pointer. #TINY-9758
98
+ - Formats were incorrectly applied to the closest editable element if the selection was in a `contenteditable="false"` context. #TINY-9678
99
+ - Formats were incorrectly removed from the closest editable element if the selection was in a `contenteditable="false"` context. #TINY-9678
100
+ - Formatter API, `canApply`, was not returning `false` when the selection was in a `contenteditable="false"` context. #TINY-9678
101
+ - When dragging image elements and dropping the image in the editor the `dragend` event would sometimes not fire when Firefox was the host browser. #TINY-9694
102
+ - It was possible to remove links in noneditable contents with the `unlink` editor command. #TINY-9739
103
+ - Direction was not visually changing when using the Directionality plugin on an element which had the `direction` CSS property set. #TINY-9314
104
+ - Whitespace between transparent elements was incorrectly converted into empty paragraphs. #TINY-9761
105
+ - Popups were not constrained within the scrollable container when in a shadow root. #TINY-9743
106
+ - Pressing arrow keys inside RTL elements would move the insertion point in an incorrect direction when moving over elements with the `contenteditable` attribute set to `false`. #TINY-9565
107
+ - Inserting two tables consecutively without focus in the editor resulted in the second table being inserted at the wrong position. #TINY-3909
108
+ - Pasting content into the editor did not fire `beforeinput` and `input` events. #TINY-9829
109
+ - In some cases, exiting a `blockquote` element could fail when the insertion point was positioned at the end of the `blockquote`. #TINY-9794
110
+ - Templates containing an `<html>` tag were not parsed before being rendered for preview. #TINY-9867
111
+ - Typing after deleting formatted content could remove a space at the start of the typing. #TINY-9310
112
+ - Invalid markup in Notification and Dialog close buttons. #TINY-9849
113
+ - In dialogs, an incorrect `aria-describedby` attribute caused the dialog body to be announced when using a screen reader. #TINY-9816
114
+ - The sticky toolbar did not render correctly when transitioning from the custom editor view to the main view. #TINY-9814
115
+ - Saving the Table Properties dialog after changing properties unrelated to cells would overwrite cell properties set by the Cell Properties dialog. #TINY-9837
116
+ - Fixed the constrained bounds calculation for dismissal of the toolbar when using `toolbar_location: 'bottom'`. #TINY-9718
117
+ - Pressing the Backspace or Delete key when the insertion point was within a `details` element resulted in broken markup. #TINY-9884
118
+ - Making the selection into a list did not work if the selection included a block element with a `contenteditable="false"` attribute. #TINY-9823
119
+ - Inserting elements in the middle of the summary caused two summaries to appear within `details` elements. #TINY-9885
120
+
121
+ ## 6.4.2 - 2023-04-26
122
+
123
+ ### Fixed
124
+ - The editor displayed a notification error when it failed to retrieve a blob image uri. #TINY-9604
125
+ - Tab navigation no longer incorrectly stops at menu buttons within toolbar groups. #TINY-9723
126
+ - The `urlinput` dialog component would not open the type-ahead dropdown when the input value was reset to an empty string. #TINY-9717
127
+ - Redial would, in some circumstances, cause elements to not have an initial value selected when they should have. #TINY-9679
128
+ - When hovering over tree dialog components the mouse pointer rendered incorrectly. #TINY-9692
129
+ - The `tox-button` and `tox-button-secondary` buttons now support the `hover`, `active`, `focus`, and `disabled` states. #TINY-9713
130
+ - Setting an invalid unit in the `fontsizeinput` changed it to the default value instead of reverting it to the previous, and valid, value. #TINY-9754
131
+ - Selection was not correctly scrolled horizontally into view when using the `selection.scrollIntoView` API. #TINY-9747
132
+ - The contextual toolbar displayed the status of Advanced List Premium plugin icons incorrectly. #TINY-9680
133
+ - The `quickimage` toolbar button failed to insert images selected from the local computer when running on Google Chrome for macOS. #TINY-9769
134
+
135
+ ## 6.4.1 - 2023-03-29
136
+
137
+ ### Fixed
138
+ - The `fontsizeinput` increase and decrease size buttons now work on TinyMCE mobile. #TINY-9725
139
+ - The TinyMCE editor toolbar is now accessible for all screen widths; it no longer collapses into an inaccessible vertical line when the screen is scrolled horizontally. #TINY-9646
140
+ - Reverted the changes made, in TinyMCE 6.4.0, to UI button colors in focus, active, and enabled states. #TINY-9176
141
+
142
+ ## 6.4.0 - 2023-03-15
143
+
144
+ ### Added
145
+ - New `tree` component that can be used in dialog body panel. #TINY-9532
146
+ - `renderUI` property in the `Theme` type can now return a `Promise<RenderResult>` instead of `RenderResult`. #TINY-9556
147
+ - New `isEditable` API to `editor.selection` that returns true or false if the current selection is editable. #TINY-9462
148
+ - New `isEditable` API to `editor.dom` that returns true or false if the specified node is editable. #TINY-9462
149
+ - New `setText` and `setIcon` methods added to menu button and toolbar button API. #TINY-9268
150
+ - New `highlight_on_focus` option which enables highlighting the content area on focus. #TINY-9277
151
+ - New `fontsizeinput` toolbar item which allows the user to set the size via input and also increase and decrease it with `+` and `-` buttons. #TINY-9429
152
+ - Added `skipFocus` option to the `ToggleToolbarDrawer` command to preserve focus. #TINY-9337
153
+ - New `font_size_input_default_unit` option allows entry of numbers without a unit in `fontsizeinput`. They are then parsed as the set unit. If `font_size_input_default_unit` is not set the default is `pt`. #TINY-9585
154
+ - New `group` and `togglebutton` in view. #TINY-9523
155
+ - New `togglebutton` in dialog footer buttons. #TINY-9523
156
+ - Added `toggleFullscreen` to dialog API. #TINY-9528
157
+ - New `text-size-increase` and `text-size-decrease` icons. #TINY-9530
158
+ - New `xss_sanitization` option to allow disabling of XSS sanitization. #TINY-9600
159
+ - Added the top right close button of modal dialogs to the tabbing order. The 'x' button in these dialogs can now be accessed using keyboard navigation. #TINY-9520
160
+ - New `ui_mode` option for editor in scrollable containers support. #TINY-9414
161
+ - The sidebar element now has the accessibility role `region` when visible and the accessibility role `presentation` when hidden. #TINY-9517
162
+ - The `tox-custom-editor` class now has a border highlight when it is selected. #TINY-9673
163
+ - An element could be dropped onto the decendants of an element with a `contenteditable="false"` attribute. #TINY-9364
164
+ - Checkmark did not show in menu color swatches. #TINY-9395
165
+ - Add support for navigating inside the tree component using arrow keys and shift key. #TINY-9614
166
+
167
+ ### Improved
168
+ - Direct invalid child text nodes of list elements are now wrapped in list item elements. #TINY-4818
169
+ - Templates are now be parsed before preview and insertion to make preview consistent with inserted template content and prevent XSS. #TINY-9244
170
+ - Pressing backspace on an empty line now preserves formatting on the previous empty line. #TINY-9454
171
+ - Pressing enter inside the `inputfontsize` input field now moves focus back into the editor content. #TINY-9598
172
+ - Drag and drop events for elements with a `contenteditable="false"` attribute now includes target element details. #TINY-9599
173
+ - Updated focus, active, and enabled colors of UI buttons for improved contrast against the UI color. #TINY-9176
174
+
175
+ ### Changed
176
+ - The `link` plugins context menu items no longer appears for links that include elements with a `contenteditable="false"` attribute. #TINY-9491
177
+ - The formatting of elements with a `contenteditable="false"` attribute are no longer cloned to new cells when new table rows are created. #TINY-9449
178
+ - Changed the color of `@dialog-table-border-color`, and added right padding to the first cell of dialog table. #TINY-9380
179
+
180
+ ### Fixed
181
+ - Sometimes the editor would finish initializing before the silver theme would have finished loading. #TINY-9556
182
+ - The `searchreplace` modal closed incorrectly when clicking outside of the alert that pops up when no match is found. #TINY-9443
183
+ - The text color or background color picker toolbar buttons did not update when the text color or background color was changed using the equivalent commands in the Format menu. #TINY-9439
184
+ - The `onSetup` api function would not run when defining custom group toolbar button. #TINY-9496
185
+ - The foreground and background menu icons would not properly update to display the last used color. #TINY-9497
186
+ - Added new `setIconFill` function to `NestedMenuItemInstanceApi`. #TINY-9497
187
+ - Pasting links to text would sometimes not generate the correct undo stack in Safari. #TINY-9489
188
+ - Toolbar split buttons in `advlist` plugin now show the correct state when the cursor is in a checklist. #TINY-5167
189
+ - Dragging transparent elements into transparent block elements could produce invalid nesting of transparents. #TINY-9231
190
+ - The `editor.insertContent` API would insert contents inside elements with a `contenteditable="false"` attribute if the selection was inside the element. #TINY-9462
191
+ - Closing a dialog would scroll down the document in Safari. #TINY-9148
192
+ - Inline headers would not work in some situations when the editor was moved too far right horizontally. #TINY-8977
193
+ - Quick toolbars were incorrectly rendered during the dragging of elements with a `contenteditable="false"` attribute. #TINY-9305
194
+ - Selection of images, horizontal rules, tables or elements with a `contenteditable="false"` attribute was possible if they were within an element with a `contenteditable="false"` attribute. #TINY-9473
195
+ - Ranged deletion of formatted text using selection or a keyboard shortcut would sometimes cause Blink- and Webkit-based browsers to insert interpreted tags upon typing. This could result in inconsistent tags. #TINY-9302
196
+ - Visual characters were rendered inside elements with a `contenteditable="false"` attribute. #TINY-9474
197
+ - Lists with an element with a `contenteditable="false"` attribute as their root were incorrectly editable using list API commands, toolbar buttons and menu items. #TINY-9458
198
+ - Color picker dialog would not update the preview color if the hex input value was prefixed with the `#` character. #TINY-9457
199
+ - Table cell selection was possible even if the element being selected was within an element with a `contenteditable="false"` attribute. #TINY-9459
200
+ - Table commands were modifying tables that were within an element with a `contenteditable="false"` attribute. #TINY-9459
201
+ - Fake carets were rendered for elements with a `contenteditable="false"` attribute and for tables within an element with a `contenteditable="false"` attribute. #TINY-9459
202
+ - Textareas with scrollbars in dialogs would not render rounded corners correctly on some browsers. #TINY-9331
203
+ - It was possible to open links inside the editor if the editor root was an element with a `contenteditable="false"` attribute. #TINY-9470
204
+ - Inline boundary was rendered for boundary elements that had a `contenteditable="false"` attribute. #TINY-9471
205
+ - Clicking on a disabled split button will no longer call the `onAction` callback. #TINY-9504
206
+ - The *Edit Link* dialog incorrectly retrieved the URL value when opened immediately after the link insertion. #TINY-7993
207
+ - The `ForwardDelete` and `Delete` editor commands were deleting content within elements with a `contenteditable="false"` attribute. #TINY-9477
208
+ - The Backspace and Forward Delete keys were deleting content within elements with a `contenteditable="false"` attribute. #TINY-9477
209
+ - Inserting newlines inside an editable element that was inside an element with a `contenteditable="false"` attribute root would sometimes try to split the editable element. #TINY-9461
210
+ - Creating a list in a table cell when the caret is in front of an anchor element would not properly include the anchor in the list. #TINY-6853
211
+ - Dragging and dropping elements with a `contenteditable="false"` attribute on table borders would remove the element on drop. #TINY-9021
212
+ - Elements with a `contenteditable="false"` attribute would be removed when dragged and dropped within a root element with a `contenteditable="false"` attribute. #TINY-9558
213
+ - Formatting could be applied or removed to list items with a `contenteditable="false"` attribute that were inside an element with a `contenteditable="false"` attribute. #TINY-9563
214
+ - Annotation were not removed if the annotation was deleted immediately after being created. #TINY-9399
215
+ - Inserting a link for a selection from quickbars did not preserve formatting. #TINY-9593
216
+ - Inline dialog position was not correct when the editor was not inline and was contained in a `fixed` or `absolute` positioned element. #TINY-9554
217
+ - Sticky toolbars did not fade transition when undocking in classic iframe mode. #TINY-9408
218
+ - Inserting elements that were not valid within the closest editing host would incorrectly split the editing host. #TINY-9595
219
+ - The `color_cols` option was not respected in the `forecolor` or `backcolor` color swatches. #TINY-9560
220
+ - Drag and dropping the last element with a `contenteditable="false"` attribute out of its parent block would not properly pad the parent block element. #TINY-9606
221
+ - Applying heading formats from `text_patterns` produced an invisible space before a word. #TINY-9603
222
+ - Opening color swatches caused the browser tab to crash when `color_cols` or other column option was set to 0. #TINY-9649
223
+ - Opening a menu button in the footer of a dialog after a redial threw an error. #TINY-9686
224
+ - After closing a view, the `more...` toolbar button disappeared if the editor had `toolbar_mode: 'sliding'` and the toolbar was opened. #TINY-9419
225
+ - Inline dialogs would open partially off screen when the toolbar had a small width. #TINY-9588
226
+ - The `autoresize` plugin would cause infinite resizing when `content_css` was set to `document`. #TINY-8872
227
+
228
+ ## 6.3.2 - 2023-02-22
229
+
230
+ ### Fixed
231
+ - Removed a workaround for ensuring stylesheets are loaded in an outdated version of webkit. #TINY-9433
232
+
233
+ ## 6.3.1 - 2022-12-06
234
+
235
+ ### Fixed
236
+ - HTML in messages for the `WindowManager.alert` and `WindowManager.confirm` APIs were not properly sanitized. #TINY-3548
237
+
238
+ ## 6.3.0 - 2022-11-23
239
+
240
+ ### Added
241
+ - New `expand` function added to `tinymce.selection` which expands the selection around the nearest word. #TINY-9001
242
+ - New `expand` function added to `tinymce.dom.RangeUtils` to return a new range expanded around the nearest word. #TINY-9001
243
+ - New `color_map_background` and `color_map_foreground` options which set the base colors used in the `backcolor` and `forecolor` toolbar buttons and menu items. #TINY-9184
244
+ - Added optional `storageKey` property to `colorinput` component and `colorswatch` fancy menu item. #TINY-9184
245
+ - New `addView` function added to `editor.ui.registry` which makes it possible to register custom editor views. #TINY-9210
246
+ - New `ToggleView` command which makes it possible to hide or show registered custom views. #TINY-9210
247
+ - New `color_default_foreground` and `color_default_background` options to set the initial default color for the `forecolor` and `backcolor` toolbar buttons and menu items. #TINY-9183
248
+ - New `getTransparentElements` function added to `tinymce.html.Schema` to return a map object of transparent HTML elements. #TINY-9172
249
+ - Added `ToggleToolbarDrawer` event to subscribe to toolbar’s opening and closing. #TINY-9271
250
+
251
+ ### Changed
252
+ - Transparent elements, like anchors, are now allowed in the root of the editor body if they contain blocks. #TINY-9172
253
+ - Colorswatch keyboard navigation now starts on currently selected color if present in the colorswatch. #TINY-9283
254
+ - `setContent` is now allowed to accept any custom keys and values as a second options argument. #TINY-9143
255
+
256
+ ### Improved
257
+ - Transparent elements, like anchors, can now contain block elements. #TINY-9172
258
+ - Colorswatch now displays a checkmark for selected color. #TINY-9283
259
+ - Color picker dialog now starts on the appropriate color for the cursor position. #TINY-9213
260
+
261
+ ### Fixed
262
+ - Parsing media content would cause a memory leak, which for example occurred when using the `getContent` API. #TINY-9186
263
+ - Dragging a noneditable element toward the bottom edge would cause the page to scroll up. #TINY-9025
264
+ - Range expanding capabilities would behave inconsistently depending on where the cursor was placed. #TINY-9029
265
+ - Compilation errors were thrown when using TypeScript 4.8. #TINY-9161
266
+ - Line separator scrolling in floating toolbars. #TINY-8948
267
+ - A double bottom border appeared on inline mode editor for the `tinymce-5` skin. #TINY-9108
268
+ - The editor header showed up even with no menubar and toolbar configured. #TINY-8819
269
+ - Inline text pattern no longer triggers if it matches only the end but not the start. #TINY-8947
270
+ - Matches of inline text patterns that are similar are now managed correctly. #TINY-8949
271
+ - Using `editor.selection.getContent({ format: 'text' })` or `editor.getContent({ format: 'text' })` would sometimes deselect selected radio buttons. #TINY-9213
272
+ - The context toolbar prevented the user from placing the cursor at the edges of the editor. #TINY-8890
273
+ - The Quick Insert context toolbar provided by the `quickbars` plugin showed when the cursor was in a fake block caret. #TINY-9190
274
+ - The `editor.selection.getRng()` API was not returning a proper range on hidden editors in Firefox. #TINY-9259
275
+ - The `editor.selection.getBookmark()` API was not returning a proper bookmark on hidden editors in Firefox. #TINY-9259
276
+ - Dragging a noneditable element before or after another noneditable element now works correctly. #TINY-9253
277
+ - The restored selection after a redo or undo action was not scrolled into view. #TINY-9222
278
+ - A newline could not be inserted when the selection was restored from a bookmark after an inline element with a `contenteditable="false"` attribute. #TINY-9194
279
+ - The global `tinymce.dom.styleSheetLoader` was not affected by the `content_css_cors` option. #TINY-6037
280
+ - The caret was moved to the previous line when a text pattern executed a `mceInsertContent` command on Enter key when running on Firefox. #TINY-9193
281
+
282
+ ## 6.2.0 - 2022-09-08
283
+
284
+ ### Added
285
+ - New `text_patterns_lookup` option to provide additional text patterns dynamically. #TINY-8778
286
+ - New promotion element has been added to the default UI. It can be disabled using the new `promotion` option. #TINY-8840
287
+ - New `format_noneditable_selector` option to specify the `contenteditable="false"` elements that can be wrapped in a format. #TINY-8905
288
+ - Added `allow` as a valid attribute for the `iframe` element in the editor schema. #TINY-8939
289
+ - New `search` field in the `MenuButton` that shows a search field at the top of the menu, and refetches items when the search field updates. #TINY-8952
290
+
291
+ ### Improved
292
+ - The formatter can now apply a format to a `contenteditable="false"` element by wrapping it. Configurable using the `format_noneditable_selector` option. #TINY-8905
293
+ - The autocompleter now supports a multiple character trigger using the new `trigger` configuration. #TINY-8887
294
+ - The formatter now applies some inline formats, such as color and font size, to list item elements when the entire item content is selected. #TINY-8961
295
+ - The installed and available plugin lists in the Help dialog are now sorted alphabetically. #TINY-9019
296
+ - Alignment can now be applied to more types of embedded media elements. #TINY-8687
297
+
298
+ ### Changed
299
+ - The `@menubar-row-separator-color` oxide variable no longer affects the divider between the Menubar and Toolbar. It only controls the color of the separator lines drawn in multiline Menubars. #TINY-8632
300
+ - The `@toolbar-separator-color` oxide variable now affects the color of the separator between the Menubar and Toolbar only. #TINY-8632
301
+ - Available Premium plugins, which are listed by name in the Help dialog, are no longer translated. #TINY-9019
302
+
303
+ ### Fixed
304
+ - The Autolink plugin did not work when text nodes in the content were fragmented. #TINY-3723
305
+ - Fixed multiple incorrect types on public APIs found while enabling TypeScript strict mode. #TINY-8806
306
+ - The number of blank lines returned from `editor.getContent({format: 'text'})` differed between browsers. #TINY-8579
307
+ - The editor focused via the `auto_focus` option was not scrolled into the viewport. #TINY-8785
308
+ - Adding spaces immediately after a `contenteditable="false"` block did not work properly in some circumstances. #TINY-8814
309
+ - Elements with only `data-*` custom attributes were sometimes removed when they should not be removed. #TINY-8755
310
+ - Selecting a figure with `class="image"` incorrectly highlighted the link toolbar button. #TINY-8832
311
+ - Specifying a single, non-default list style for the `advlist_bullet_styles` and `advlist_number_styles` options was not respected. #TINY-8721
312
+ - Fixed multiple issues that occurred when formatting `contenteditable` elements. #TINY-8905
313
+ - Spaces could be incorrectly added to `urlinput` dialog components (commonly but not exclusively presented in the *Insert/Edit Link* dialog) in certain cases. #TINY-8775
314
+ - The text patterns logic threw an error when there were fragmented text nodes in a paragraph. #TINY-8779
315
+ - Dragging a `contentEditable=false` element towards a document’s edge did not cause scrolling. #TINY-8874
316
+ - Parsing large documents no longer throws a `Maximum call stack size exceeded` exception. #TINY-6945
317
+ - DomParser filter matching was not checked between filters, which could lead to an exception in the parser. #TINY-8888
318
+ - `contenteditable="false"` lists can no longer be toggled; and `contenteditable="true"` list elements within these lists can no longer be indented, split into another list element, or appended to the previous list element by deletion. #TINY-8920
319
+ - Removed extra bottom padding in the context toolbar of the `tinymce-5` skin. #TINY-8980
320
+ - Fixed a regression where pressing **Enter** added or deleted content outside the selection. #TINY-9101
321
+ - Fixed a bug where pressing **Enter** deleted selected `contenteditable="false"` `<pre>` elements. #TINY-9101
322
+ - The `editor.insertContent()` API did not respect the `no_events` argument. #TINY-9140
323
+
324
+ ### Deprecated
325
+ - The autocompleter configuration property, `ch`, has been deprecated. It will be removed in the next major release. Use the `trigger` property instead. #TINY-8887
326
+
327
+ ## 6.1.2 - 2022-07-29
328
+
329
+ ### Fixed
330
+ - Reverted the undo level fix in the `autolink` plugin as it caused duplicated content in some edge cases. #TINY-8936
331
+
332
+ ## 6.1.1 - 2022-07-27
333
+
334
+ ### Fixed
335
+ - Invalid special elements were not cleaned up correctly during sanitization. #TINY-8780
336
+ - An exception was thrown when deleting all content if the start or end of the document had a `contenteditable="false"` element. #TINY-8877
337
+ - When a sidebar was opened using the `sidebar_show` option, its associated toolbar button was not highlighted. #TINY-8873
338
+ - When converting a URL to a link, the `autolink` plugin did not fire an `ExecCommand` event, nor did it create an undo level. #TINY-8896
339
+ - Worked around a Firefox bug which resulted in cookies not being available inside the editor content. #TINY-8916
340
+ - `<pre>` content pasted into a `<pre>` block that had inline styles or was `noneditable` now merges correctly with the surrounding content. #TINY-8860
341
+ - After a `codesample` was pasted, the insertion point was placed incorrectly. #TINY-8861
342
+
343
+ ## 6.1.0 - 2022-06-29
344
+
345
+ ### Added
346
+ - New `sidebar_show` option to show the specified sidebar on initialization. #TINY-8710
347
+ - New `newline_behavior` option controls what happens when the Return or Enter key is pressed or the `mceInsertNewLine` command is used. #TINY-8458
348
+ - New `iframe_template_callback` option in the Media plugin. Patch provided by Namstel. #TINY-8684
349
+ - New `transparent` property for `iframe` dialog component. #TINY-8534
350
+ - New `removeAttributeFilter` and `removeNodeFilter` functions added to the DomParser and DOM Serializer APIs. #TINY-7847
351
+ - New `dispatchChange` function added to the UndoManager API to fire the change with current editor status as level and current undoManager layer as lastLevel. #TINY-8641
352
+
353
+ ### Improved
354
+ - Clearer focus states for buttons while navigating with a keyboard. #TINY-8557
355
+ - Support annotating certain block elements directly when using the editor's Annotation API. #TINY-8698
356
+ - The `mceLink` command can now take the value `{ dialog: true }` to always open the link dialog. #TINY-8057
357
+ - All help dialog links to `https://www.tiny.cloud` now include `rel="noopener"` to avoid potential security issues. #TINY-8834
358
+
359
+ ### Changed
360
+ - The `end_container_on_empty_block` option can now take a string of blocks, allowing the exiting of a blockquote element by pressing Enter or Return twice. #TINY-6559
361
+ - The default value for `end_container_on_empty_block` option has been changed to `'blockquote'`. #TINY-6559
362
+ - Link menu and toolbar buttons now always execute the `mceLink` command. #TINY-8057
363
+ - Toggling fullscreen mode when using the Fullscreen plugin now also fires the `ResizeEditor` event. #TINY-8701
364
+ - Getting the editor's text content now returns newlines instead of an empty string if more than one empty paragraph exists. #TINY-8578
365
+ - Custom elements are now treated as non-empty elements by the schema. #TINY-4784
366
+ - The autocompleter's menu HTML element is now positioned instead of the wrapper. #TINY-6476
367
+ - Choice menu items will now use the `'menuitemradio'` aria role to better reflect that only a single item can be active. #TINY-8602
368
+
369
+ ### Fixed
370
+ - Some Template plugin option values were not escaped properly when doing replacement lookups with Regular Expressions. #TINY-7433
371
+ - Copy events were not dispatched in readonly mode. #TINY-6800
372
+ - `<pre>` tags were not preserved when copying and pasting. #TINY-7719
373
+ - The URL detection used for autolink and smart paste did not work if a path segment contained valid characters such as `!` and `:`. #TINY-8069
374
+ - In some cases pressing the Backspace or Delete key would incorrectly step into tables rather than remain outside. #TINY-8592
375
+ - Links opened when Alt+Enter or Option+Return was typed even when `preventDefault()` was called on the keydown event. #TINY-8661
376
+ - Inconsistent visual behavior between choosing Edit -> Select All and typing Ctrl+A or Cmd+A when a document contained an image. #TINY-4550
377
+ - Ctrl+Shift+Home/End or Cmd+Shift+Up-arrow/Down-arrow did not expand the selection to a `contenteditable="false"` element if the element was at the beginning or end of a document. #TINY-7795
378
+ - Triple-clicking did not select a paragraph in Google Chrome in some circumstances. #TINY-8215
379
+ - Images were not showing as selected when selected along with other content. #TINY-5947
380
+ - Selection direction was not stored or restored when getting or setting selection bookmarks. #TINY-8599
381
+ - When text within an inline boundary element was selected and the right-arrow key was pressed, the insertion point incorrectly moved to the left. #TINY-8601
382
+ - In some versions of Safari, the `editor.selection.isForward()` API could throw an exception due to an invalid selection. #TINY-8686
383
+ - The selection is no longer incorrectly moved inside a comment by the `editor.selection.normalize()` API. #TINY-7817
384
+ - The `InsertParagraph` or `mceInsertNewLine` commands did not delete the current selection like the native command does. #TINY-8606
385
+ - The `InsertLineBreak` command did not replace selected content. #TINY-8458
386
+ - If selected content straddled a parent and nested list, cutting the selection did not always set the list style to `'none'` on the parent list. #TINY-8078
387
+ - Delete operations could behave incorrectly if the selection contains a `contenteditable="false"` element located at the edge of content. #TINY-8729
388
+ - Spaces were not added correctly on some browsers when the insertion point was immediately before or after a `contenteditable="false"` block element. #TINY-8588
389
+ - Images that used a Data URI were corrupted when the data wasn't base64 encoded. #TINY-8337
390
+ - `uploadImages` no longer triggers two change events if there is a removal of images on upload. #TINY-8641
391
+ - Preview and Insert Template dialogs now display the correct content background color when using dark skins. #TINY-8534
392
+ - Dialogs no longer exceed window height on smaller screens. #TINY-8146
393
+ - UI components, such as dialogs, would in some cases cause the Esc keyup event to incorrectly trigger inside the editor. #TINY-7005
394
+ - Fixed incorrect word breaks in menus when the menu presented with a scrollbar. #TINY-8572
395
+ - Notifications did not properly reposition when toggling fullscreen mode. #TINY-8701
396
+ - Text alignments, such as flush left and centered, could not be applied to `<pre>` elements. #TINY-7715
397
+ - Indenting or outdenting list items inside a block element that was inside another list item did not work. #TINY-7209
398
+ - Changing the list type of a list within another block element altered the parent element that contained that list. #TINY-8068
399
+ - Pasting columns in tables could, in some circumstances, result in an invalid table. #TINY-8040
400
+ - Copying columns in tables could sometimes result in an invalid copy. #TINY-8040
401
+ - Changing table properties with the `table_style_by_css` option set to `false` would sometimes reset the table width. #TINY-8758
402
+ - Custom elements added to otherwise blank lines were removed during serialization. #TINY-4784
403
+ - The editor's autocompleter was not triggered at the start of nested list items. #TINY-8759
404
+ - Some function types in the TreeWalker API missed that it could return `undefined`. #TINY-8592
405
+ - Nuget packages for .NET and .NET Core are now configured to copy TinyMCE into `/wwwroot/lib/` when TinyMCE is installed into a project. #TINY-8611
406
+
407
+ ## 6.0.3 - 2022-05-25
408
+
409
+ ### Fixed
410
+ - Could not remove values when multiple cells were selected with the cell properties dialog. #TINY-8625
411
+ - Could not remove values when multiple rows were selected with the row properties dialog. #TINY-8625
412
+ - Empty lines that were formatted in a ranged selection using the `format_empty_lines` option were not kept in the serialized content. #TINY-8639
413
+ - The `s` element was missing from the default schema text inline elements. #TINY-8639
414
+ - Some text inline elements specified via the schema were not removed when empty by default. #TINY-8639
415
+
416
+ ## 6.0.2 - 2022-04-27
417
+
418
+ ### Fixed
419
+ - Some media elements wouldn't update when changing the source URL. #TINY-8660
420
+ - Inline toolbars flickered when switching between editors. #TINY-8594
421
+ - Multiple inline toolbars were shown if focused too quickly. #TINY-8503
422
+ - Added background and additional spacing for the text labeled buttons in the toolbar to improve visual clarity. #TINY-8617
423
+ - Toolbar split buttons with text used an incorrect width on touch devices. #TINY-8647
424
+
425
+ ## 6.0.1 - 2022-03-23
426
+
427
+ ### Fixed
428
+ - Fixed the dev ZIP missing the required `bin` scripts to build from the source. #TINY-8542
429
+ - Fixed a regression whereby text patterns couldn't be updated at runtime. #TINY-8540
430
+ - Fixed an issue where tables with colgroups could be copied incorrectly in some cases. #TINY-8568
431
+ - Naked buttons better adapt to various background colors, improved text contrast in notifications. #TINY-8533
432
+ - The autocompleter would not fire the `AutocompleterStart` event nor close the menu in some cases. #TINY-8552
433
+ - It wasn't possible to select text right after an inline noneditable element. #TINY-8567
434
+ - Fixed a double border showing for the `tinymce-5` skin when using `toolbar_location: 'bottom'`. #TINY-8564
435
+ - Clipboard content was not generated correctly when cutting and copying `contenteditable="false"` elements. #TINY-8563
436
+ - Fixed the box-shadow getting clipped in autocompletor popups. #TINY-8573
437
+ - The `buttonType` property did not work for dialog footer buttons. #TINY-8582
438
+ - Fix contrast ratio for error messages. #TINY-8586
439
+
440
+ ## 6.0.0 - 2022-03-03
441
+
442
+ ### Added
443
+ - New `editor.options` API to replace the old `editor.settings` and `editor.getParam` APIs. #TINY-8206
444
+ - New `editor.annotator.removeAll` API to remove all annotations by name. #TINY-8195
445
+ - New `Resource.unload` API to make it possible to unload resources. #TINY-8431
446
+ - New `FakeClipboard` API on the `tinymce` global. #TINY-8353
447
+ - New `dispatch()` function to replace the now deprecated `fire()` function in various APIs. #TINY-8102
448
+ - New `AutocompleterStart`, `AutocompleterUpdate` and `AutocompleterEnd` events. #TINY-8279
449
+ - New `mceAutocompleterClose`, `mceAutocompleterReload` commands. #TINY-8279
450
+ - New `mceInsertTableDialog` command to open the insert table dialog. #TINY-8273
451
+ - New `slider` dialog component. #TINY-8304
452
+ - New `imagepreview` dialog component, allowing preview and zoom of any image URL. #TINY-8333
453
+ - New `buttonType` property on dialog button components, supporting `toolbar` style in addition to `primary` and `secondary`. #TINY-8304
454
+ - The `tabindex` attribute is now copied from the target element to the iframe. #TINY-8315
455
+
456
+ ### Improved
457
+ - New default theme styling for TinyMCE 6 facelift with old skin available as `tinymce-5` and `tinymce-5-dark`. #TINY-8373
458
+ - The default height of editor has been increased from `200px` to `400px` to improve the usability of the editor. #TINY-6860
459
+ - The upload results returned from the `editor.uploadImages()` API now includes a `removed` flag, reflecting if the image was removed after a failed upload. #TINY-7735
460
+ - The `ScriptLoader`, `StyleSheetLoader`, `AddOnManager`, `PluginManager` and `ThemeManager` APIs will now return a `Promise` when loading resources instead of using callbacks. #TINY-8325
461
+ - A `ThemeLoadError` event is now fired if the theme fails to load. #TINY-8325
462
+ - The `BeforeSetContent` event will now include the actual serialized content when passing in an `AstNode` to the `editor.setContent` API. #TINY-7996
463
+ - Improved support for placing the caret before or after noneditable elements within the editor. #TINY-8169
464
+ - Calls to `editor.selection.setRng` now update the caret position bookmark used when focus is returned to the editor. #TINY-8450
465
+ - The `emoticon` plugin dialog, toolbar and menu item has been updated to use the more accurate `Emojis` term. #TINY-7631
466
+ - The dialog `redial` API will now only rerender the changed components instead of the whole dialog. #TINY-8334
467
+ - The dialog API `setData` method now uses a deep merge algorithm to support partial nested objects. #TINY-8333
468
+ - The dialog spec `initialData` type is now `Partial<T>` to match the underlying implementation details. #TINY-8334
469
+ - Notifications no longer require a timeout to disable the close button. #TINY-6679
470
+ - The editor theme is now fetched in parallel with the icons, language pack and plugins. #TINY-8453
471
+
472
+ ### Changed
473
+ - TinyMCE is now MIT licensed. #TINY-2316
474
+ - Moved the `paste` plugin's functionality to TinyMCE core. #TINY-8310
475
+ - The `paste_data_images` option now defaults to `true`. #TINY-8310
476
+ - Moved the `noneditable` plugin to TinyMCE core. #TINY-8311
477
+ - Renamed the `noneditable_noneditable_class` option to `noneditable_class`. #TINY-8311
478
+ - Renamed the `noneditable_editable_class` option to `editable_class`. #TINY-8311
479
+ - Moved the `textpattern` plugin to TinyMCE core. #TINY-8312
480
+ - Renamed the `textpattern_patterns` option to `text_patterns`. #TINY-8312
481
+ - Moved the `hr` plugin's functionality to TinyMCE core. #TINY-8313
482
+ - Moved the `print` plugin's functionality to TinyMCE core. #TINY-8314
483
+ - Moved non-UI table functionality to core. #TINY-8273
484
+ - The `DomParser` API no longer uses a custom parser internally and instead uses the native `DOMParser` API. #TINY-4627
485
+ - The `editor.getContent()` API can provide custom content by preventing and overriding `content` in the `BeforeGetContent` event. This makes it consistent with the `editor.selection.getContent()` API. #TINY-8018
486
+ - The `editor.setContent()` API can now be prevented using the `BeforeSetContent` event. This makes it consistent with the `editor.selection.setContent()` API. #TINY-8018
487
+ - Add-ons such as plugins and themes are no longer constructed using the `new` operator. #TINY-8256
488
+ - A number of APIs that were not proper classes, are no longer constructed using the `new` operator. #TINY-8322
489
+ - The Editor commands APIs will no longer fallback to executing the browsers native command functionality. #TINY-7829
490
+ - The Editor query command APIs will now return `false` or an empty string on removed editors. #TINY-7829
491
+ - The `mceAddEditor` and `mceToggleEditor` commands now take an object as their value to specify the id and editor options. #TINY-8138
492
+ - The `mceInsertTable` command can no longer open the insert table dialog. Use the `mceInsertTableDialog` command instead. #TINY-8273
493
+ - The `plugins` option now returns a `string` array instead of a space separated string. #TINY-8455
494
+ - The `media` plugin no longer treats `iframe`, `video`, `audio` or `object` elements as "special" and will validate the contents against the schema. #TINY-8382
495
+ - The `images_upload_handler` option is no longer passed a `success` or `failure` callback and instead requires a `Promise` to be returned with the upload result. #TINY-8325
496
+ - The `tinymce.settings` global property is no longer set upon initialization. #TINY-7359
497
+ - The `change` event is no longer fired on first modification. #TINY-6920
498
+ - The `GetContent` event will now always pass a `string` for the `content` property. #TINY-7996
499
+ - Changed the default tag for the strikethrough format to the `s` tag when using a html 5 schema. #TINY-8262
500
+ - The `strike` tag is automatically converted to the `s` tag when using a html 5 schema. #TINY-8262
501
+ - Aligning a table to the left or right will now use margin styling instead of float styling. #TINY-6558
502
+ - The `:` control character has been changed to `~` for the schema `valid_elements` and `extended_valid_elements` options. #TINY-6726
503
+ - The `primary` property on dialog buttons has been deprecated. Use the new `buttonType` property instead. #TINY-8304
504
+ - Changed the default statusbar element path delimiter from `»` to `›`. #TINY-8372
505
+ - Replaced the `Powered by Tiny` branding text with the Tiny logo. #TINY-8371
506
+ - The default minimum height of editor has been changed to 100px to prevent the UI disappearing while resizing. #TINY-6860
507
+ - RGB colors are no longer converted to hex values when parsing or serializing content. #TINY-8163
508
+ - Replaced the `isDisabled()` function with an `isEnabled()` function for various APIs. #TINY-8101
509
+ - Replaced the `enable()` and `disable()` functions with a `setEnabled(state)` function in various APIs. #TINY-8101
510
+ - Replaced the `disabled` property with an `enabled` property in various APIs. #TINY-8101
511
+ - Replaced the `disable(name)` and `enable(name)` functions with a `setEnabled(name, state)` function in the Dialog APIs. #TINY-8101
512
+ - Renamed the `tinymce.Env.os.isOSX` API to `tinymce.Env.os.isMacOS`. #TINY-8175
513
+ - Renamed the `tinymce.Env.browser.isChrome` API to `tinymce.Env.browser.isChromium` to better reflect its functionality. #TINY-8300
514
+ - Renamed the `getShortEndedElements` Schema API to `getVoidElements`. #TINY-8344
515
+ - Renamed the `font_formats` option to `font_family_formats`. #TINY-8328
516
+ - Renamed the `fontselect` toolbar button and `fontformats` menu item to `fontfamily`. #TINY-8328
517
+ - Renamed the `fontsize_formats` option to `font_size_formats`. #TINY-8328
518
+ - Renamed the `fontsizeselect` toolbar button and `fontsizes` menu item to `fontsize`. #TINY-8328
519
+ - Renamed the `formatselect` toolbar button and `blockformats` menu item to `blocks`. #TINY-8328
520
+ - Renamed the `styleselect` toolbar button and `formats` menu item to `styles`. #TINY-8328
521
+ - Renamed the `lineheight_formats` option to `line_height_formats`. #TINY-8328
522
+ - Renamed the `getWhiteSpaceElements()` function to `getWhitespaceElements()` in the `Schema` API. #TINY-8102
523
+ - Renamed the `mceInsertClipboardContent` command `content` property to `html` to better reflect what data is passed. #TINY-8310
524
+ - Renamed the `default_link_target` option to `link_default_target` for both `link` and `autolink` plugins. #TINY-4603
525
+ - Renamed the `rel_list` option to `link_rel_list` for the `link` plugin. #TINY-4603
526
+ - Renamed the `target_list` option to `link_target_list` for the `link` plugin. #TINY-4603
527
+ - The default value for the `link_default_protocol` option has been changed to `https` instead of `http`. #TINY-7824
528
+ - The default value for the `element_format` option has been changed to `html`. #TINY-8263
529
+ - The default value for the `schema` option has been changed to `html5`. #TINY-8261
530
+ - The default value for the `table_style_by_css` option has been changed to `true`. #TINY-8259
531
+ - The default value for the `table_use_colgroups` option has been changed to `true`. #TINY-8259
532
+
533
+ ### Fixed
534
+ - The object returned from the `editor.fire()` API was incorrect if the editor had been removed. #TINY-8018
535
+ - The `editor.selection.getContent()` API did not respect the `no_events` argument. #TINY-8018
536
+ - The `editor.annotator.remove` API did not keep selection when removing the annotation. #TINY-8195
537
+ - The `GetContent` event was not fired when getting `tree` or `text` formats using the `editor.selection.getContent()` API. #TINY-8018
538
+ - The `beforeinput` and `input` events would sometimes not fire as expected when deleting content. #TINY-8168 #TINY-8329
539
+ - The `table` plugin would sometimes not correctly handle headers in the `tfoot` section. #TINY-8104
540
+ - The `silver` theme UI was incorrectly rendered before plugins had initialized. #TINY-8288
541
+ - The aria labels for the color picker dialog were not translated. #TINY-8381
542
+ - Fixed sub-menu items not read by screen readers. Patch contributed by westonkd. #TINY-8417
543
+ - Dialog labels and other text-based UI properties did not escape HTML markup. #TINY-7524
544
+ - Anchor elements would render incorrectly when using the `allow_html_in_named_anchor` option. #TINY-3799
545
+ - The `AstNode` HTML serializer did not serialize `pre` or `textarea` elements correctly when they contained newlines. #TINY-8446
546
+ - Fixed sub-menu items not read by screen readers. Patch contributed by westonkd. #TINY-8417
547
+ - The Home or End keys would move out of a editable element contained within a noneditable element. #TINY-8201
548
+ - Dialogs could not be opened in inline mode before the editor had been rendered. #TINY-8397
549
+ - Clicking on menu items could cause an unexpected console warning if the `onAction` function caused the menu to close. #TINY-8513
550
+ - Fixed various color and contrast issues for the dark skins. #TINY-8527
551
+
552
+ ### Removed
553
+ - Removed support for Microsoft Internet Explorer 11. #TINY-8194 #TINY-8241
554
+ - Removed support for Microsoft Word from the opensource paste functionality. #TINY-7493
555
+ - Removed support for the `plugins` option allowing a mixture of a string array and of space separated strings. #TINY-8399
556
+ - Removed support for the deprecated `false` value for the `forced_root_block` option. #TINY-8260
557
+ - Removed the jQuery integration. #TINY-4519
558
+ - Removed the `imagetools` plugin, which is now classified as a Premium plugin. #TINY-8209
559
+ - Removed the `imagetools` dialog component. #TINY-8333
560
+ - Removed the `toc` plugin, which is now classified as a Premium plugin. #TINY-8250
561
+ - Removed the `tabfocus` plugin. #TINY-8315
562
+ - Removed the `textpattern` plugin's API as part of moving it to core. #TINY-8312
563
+ - Removed the `table` plugin's API. #TINY-8273
564
+ - Removed the callback for the `EditorUpload` API. #TINY-8325
565
+ - Removed the legacy browser detection properties from the `Env` API. #TINY-8162
566
+ - Removed the `filterNode` method from the `DomParser` API. #TINY-8249
567
+ - Removed the `SaxParser` API. #TINY-8218
568
+ - Removed the `tinymce.utils.Promise` API. #TINY-8241
569
+ - Removed the `toHex` function for the `DOMUtils` and `Styles` APIs. #TINY-8163
570
+ - Removed the `execCommand` handler function from the plugin and theme interfaces. #TINY-7829
571
+ - Removed the `editor.settings` property as it has been replaced by the new Options API. #TINY-8236
572
+ - Removed the `shortEnded` and `fixed` properties on `tinymce.html.Node` class. #TINY-8205
573
+ - Removed the `mceInsertRawHTML` command. #TINY-8214
574
+ - Removed the style field from the `image` plugin dialog advanced tab. #TINY-3422
575
+ - Removed the `paste_filter_drop` option as native drag and drop handling is no longer supported. #TINY-8511
576
+ - Removed the legacy `mobile` theme. #TINY-7832
577
+ - Removed the deprecated `$`, `Class`, `DomQuery` and `Sizzle` APIs. #TINY-4520 #TINY-8326
578
+ - Removed the deprecated `Color`, `JSON`, `JSONP` and `JSONRequest`. #TINY-8162
579
+ - Removed the deprecated `XHR` API. #TINY-8164
580
+ - Removed the deprecated `setIconStroke` Split Toolbar Button API. #TINY-8162
581
+ - Removed the deprecated `editors` property from `EditorManager`. #TINY-8162
582
+ - Removed the deprecated `execCallback` and `setMode` APIs from `Editor`. #TINY-8162
583
+ - Removed the deprecated `addComponents` and `dependencies` APIs from `AddOnManager`. #TINY-8162
584
+ - Removed the deprecated `clearInterval`, `clearTimeout`, `debounce`, `requestAnimationFrame`, `setInterval`, `setTimeout` and `throttle` APIs from `Delay`. #TINY-8162
585
+ - Removed the deprecated `Schema` options. #TINY-7821
586
+ - Removed the deprecated `file_browser_callback_types`, `force_hex_style_colors` and `images_dataimg_filter` options. #TINY-7823
587
+ - Removed the deprecated `filepicker_validator_handler`, `force_p_newlines`, `gecko_spellcheck`, `tab_focus`, `table_responsive_width` and `toolbar_drawer` options. #TINY-7820
588
+ - Removed the deprecated `media_scripts` option in the `media` plugin. #TINY-8421
589
+ - Removed the deprecated `editor_deselector`, `editor_selector`, `elements`, `mode` and `types` legacy TinyMCE init options. #TINY-7822
590
+ - Removed the deprecated `content_editable_state` and `padd_empty_with_br` options. #TINY-8400
591
+ - Removed the deprecated `autoresize_on_init` option from the `autoresize` plugin. #TINY-8400
592
+ - Removed the deprecated `fullpage`, `spellchecker`, `bbcode`, `legacyoutput`, `colorpicker`, `contextmenu` and `textcolor` plugins. #TINY-8192
593
+ - Removed the undocumented `editor.editorCommands.hasCustomCommand` API. #TINY-7829
594
+ - Removed the undocumented `mceResetDesignMode`, `mceRepaint` and `mceBeginUndoLevel` commands. #TINY-7829
595
+
596
+ ### Deprecated
597
+ - The dialog button component's `primary` property has been deprecated and will be removed in the next major release. Use the new `buttonType` property instead. #TINY-8304
598
+ - The `fire()` function of `tinymce.Editor`, `tinymce.dom.EventUtils`, `tinymce.dom.DOMUtils`, `tinymce.util.Observable` and `tinymce.util.EventDispatcher` has been deprecated and will be removed in the next major release. Use the `dispatch()` function instead. #TINY-8102
599
+ - The `content` property on the `SetContent` event has been deprecated and will be removed in the next major release. #TINY-8457
600
+ - The return value of the `editor.setContent` API has been deprecated and will be removed in the next major release. #TINY-8457
601
+
602
+ ## 5.10.3 - 2022-02-09
603
+
604
+ ### Fixed
605
+ - Alignment would sometimes be removed on parent elements when changing alignment on certain inline nodes, such as images. #TINY-8308
606
+ - The `fullscreen` plugin would reset the scroll position when exiting fullscreen mode. #TINY-8418
607
+
608
+ ## 5.10.2 - 2021-11-17
609
+
610
+ ### Fixed
611
+ - Internal selectors were appearing in the style list when using the `importcss` plugin. #TINY-8238
612
+
613
+ ## 5.10.1 - 2021-11-03
614
+
615
+ ### Fixed
616
+ - The iframe aria help text was not read by some screen readers. #TINY-8171
617
+ - Clicking the `forecolor` or `backcolor` toolbar buttons would do nothing until selecting a color. #TINY-7836
618
+ - Crop functionality did not work in the `imagetools` plugin when the editor was rendered in a shadow root. #TINY-6387
619
+ - Fixed an exception thrown on Safari when closing the `searchreplace` plugin dialog. #TINY-8166
620
+ - The `autolink` plugin did not convert URLs to links when starting with a bracket. #TINY-8091
621
+ - The `autolink` plugin incorrectly created nested links in some cases. #TINY-8091
622
+ - Tables could have an incorrect height set on rows when rendered outside of the editor. #TINY-7699
623
+ - In certain circumstances, the table of contents plugin would incorrectly add an extra empty list item. #TINY-4636
624
+ - The insert table grid menu displayed an incorrect size when re-opening the grid. #TINY-6532
625
+ - The word count plugin was treating the zero width space character (`&#8203;`) as a word. #TINY-7484
626
+
627
+ ## 5.10.0 - 2021-10-11
628
+
629
+ ### Added
630
+ - Added a new `URI.isDomSafe(uri)` API to check if a URI is considered safe to be inserted into the DOM. #TINY-7998
631
+ - Added the `ESC` key code constant to the `VK` API. #TINY-7917
632
+ - Added a new `deprecation_warnings` setting for turning off deprecation console warning messages. #TINY-8049
633
+
634
+ ### Improved
635
+ - The `element` argument of the `editor.selection.scrollIntoView()` API is now optional, and if it is not provided the current selection will be scrolled into view. #TINY-7291
636
+
637
+ ### Changed
638
+ - The deprecated `scope` attribute is no longer added to `td` cells when converting a row to a header row. #TINY-7731
639
+ - The number of `col` elements is normalized to match the number of columns in a table after a table action. #TINY-8011
640
+
641
+ ### Fixed
642
+ - Fixed a regression that caused block wrapper formats to apply and remove incorrectly when using a collapsed selection with multiple words. #TINY-8036
643
+ - Resizing table columns in some scenarios would resize the column to an incorrect position. #TINY-7731
644
+ - Inserting a table where the parent element had padding would cause the table width to be incorrect. #TINY-7991
645
+ - The resize backdrop element did not have the `data-mce-bogus="all"` attribute set to prevent it being included in output. #TINY-7854
646
+ - Resize handles appeared on top of dialogs and menus when using an inline editor. #TINY-3263
647
+ - Fixed the `autoresize` plugin incorrectly scrolling to the top of the editor content in some cases when changing content. #TINY-7291
648
+ - Fixed the `editor.selection.scrollIntoView()` type signature, as it incorrectly required an `Element` instead of `HTMLElement`. #TINY-7291
649
+ - Table cells that were both row and column headers did not retain the correct state when converting back to a regular row or column. #TINY-7709
650
+ - Clicking beside a non-editable element could cause the editor to incorrectly scroll to the top of the content. #TINY-7062
651
+ - Clicking in a table cell, with a non-editable element in an adjacent cell, incorrectly caused the non-editable element to be selected. #TINY-7736
652
+ - Split toolbar buttons incorrectly had nested `tabindex="-1"` attributes. #TINY-7879
653
+ - Fixed notifications rendering in the wrong place initially and when the page was scrolled. #TINY-7894
654
+ - Fixed an exception getting thrown when the number of `col` elements didn't match the number of columns in a table. #TINY-7041 #TINY-8011
655
+ - The table selection state could become incorrect after selecting a noneditable table cell. #TINY-8053
656
+ - As of Mozilla Firefox 91, toggling fullscreen mode with `toolbar_sticky` enabled would cause the toolbar to disappear. #TINY-7873
657
+ - Fixed URLs not cleaned correctly in some cases in the `link` and `image` plugins. #TINY-7998
658
+ - Fixed the `image` and `media` toolbar buttons incorrectly appearing to be in an inactive state in some cases. #TINY-3463
659
+ - Fixed the `editor.selection.selectorChanged` API not firing if the selector matched the current selection when registered in some cases. #TINY-3463
660
+ - Inserting content into a `contenteditable="true"` element that was contained within a `contenteditable="false"` element would move the selection to an incorrect location. #TINY-7842
661
+ - Dragging and dropping `contenteditable="false"` elements could result in the element being placed in an unexpected location. #TINY-7917
662
+ - Pressing the Escape key would not cancel a drag action that started on a `contenteditable="false"` element within the editor. #TINY-7917
663
+ - `video` and `audio` elements were unable to be played when the `media` plugin live embeds were enabled in some cases. #TINY-7674
664
+ - Pasting images would throw an exception if the clipboard `items` were not files (for example, screenshots taken from gnome-software). Patch contributed by cedric-anne. #TINY-8079
665
+
666
+ ### Deprecated
667
+ - Several APIs have been deprecated. See the release notes section for information. #TINY-8023 #TINY-8063
668
+ - Several Editor settings have been deprecated. See the release notes section for information. #TINY-8086
669
+ - The Table of Contents and Image Tools plugins will be classified as Premium plugins in the next major release. #TINY-8087
670
+ - Word support in the `paste` plugin has been deprecated and will be removed in the next major release. #TINY-8087
671
+
672
+ ## 5.9.2 - 2021-09-08
673
+
674
+ ### Fixed
675
+ - Fixed an exception getting thrown when disabling events and setting content. #TINY-7956
676
+ - Delete operations could behave incorrectly if the selection crossed a table boundary. #TINY-7596
677
+
678
+ ## 5.9.1 - 2021-08-27
679
+
680
+ ### Fixed
681
+ - Published TinyMCE types failed to compile in strict mode. #TINY-7915
682
+ - The `TableModified` event sometimes didn't fire when performing certain table actions. #TINY-7916
683
+
684
+ ## 5.9.0 - 2021-08-26
685
+
686
+ ### Added
687
+ - Added a new `mceFocus` command that focuses the editor. Equivalent to using `editor.focus()`. #TINY-7373
688
+ - Added a new `mceTableToggleClass` command which toggles the provided class on the currently selected table. #TINY-7476
689
+ - Added a new `mceTableCellToggleClass` command which toggles the provided class on the currently selected table cells. #TINY-7476
690
+ - Added a new `tablecellvalign` toolbar button and menu item for vertical table cell alignment. #TINY-7477
691
+ - Added a new `tablecellborderwidth` toolbar button and menu item to change table cell border width. #TINY-7478
692
+ - Added a new `tablecellborderstyle` toolbar button and menu item to change table cell border style. #TINY-7478
693
+ - Added a new `tablecaption` toolbar button and menu item to toggle captions on tables. #TINY-7479
694
+ - Added a new `mceTableToggleCaption` command that toggles captions on a selected table. #TINY-7479
695
+ - Added a new `tablerowheader` toolbar button and menu item to toggle the header state of row cells. #TINY-7478
696
+ - Added a new `tablecolheader` toolbar button and menu item to toggle the header state of column cells. #TINY-7482
697
+ - Added a new `tablecellbordercolor` toolbar button and menu item to select table cell border colors, with an accompanying setting `table_border_color_map` to customize the available values. #TINY-7480
698
+ - Added a new `tablecellbackgroundcolor` toolbar button and menu item to select table cell background colors, with an accompanying setting `table_background_color_map` to customize the available values. #TINY-7480
699
+ - Added a new `language` menu item and toolbar button to add `lang` attributes to content, with an accompanying `content_langs` setting to specify the languages available. #TINY-6149
700
+ - A new `lang` format is now available that can be used with `editor.formatter`, or applied with the `Lang` editor command. #TINY-6149
701
+ - Added a new `language` icon for the `language` toolbar button. #TINY-7670
702
+ - Added a new `table-row-numbering` icon. #TINY-7327
703
+ - Added new plugin commands: `mceEmoticons` (Emoticons), `mceWordCount` (Word Count), and `mceTemplate` (Template). #TINY-7619
704
+ - Added a new `iframe_aria_text` setting to set the iframe title attribute. #TINY-1264
705
+ - Added a new DomParser `Node.children()` API to return all the children of a `Node`. #TINY-7756
706
+
707
+ ### Improved
708
+ - Sticky toolbars can now be offset from the top of the page using the new `toolbar_sticky_offset` setting. #TINY-7337
709
+ - Fancy menu items now accept an `initData` property to allow custom initialization data. #TINY-7480
710
+ - Improved the load time of the `fullpage` plugin by using the existing editor schema rather than creating a new one. #TINY-6504
711
+ - Improved the performance when UI components are rendered. #TINY-7572
712
+ - The context toolbar no longer unnecessarily repositions to the top of large elements when scrolling. #TINY-7545
713
+ - The context toolbar will now move out of the way when it overlaps with the selection, such as in table cells. #TINY-7192
714
+ - The context toolbar now uses a short animation when transitioning between different locations. #TINY-7740
715
+ - `Env.browser` now uses the User-Agent Client Hints API where it is available. #TINY-7785
716
+ - Icons with a `-rtl` suffix in their name will now automatically be used when the UI is rendered in right-to-left mode. #TINY-7782
717
+ - The `formatter.match` API now accepts an optional `similar` parameter to check if the format partially matches. #TINY-7712
718
+ - The `formatter.formatChanged` API now supports providing format variables when listening for changes. #TINY-7713
719
+ - The formatter will now fire `FormatApply` and `FormatRemove` events for the relevant actions. #TINY-7713
720
+ - The `autolink` plugin link detection now permits custom protocols. #TINY-7714
721
+ - The `autolink` plugin valid link detection has been improved. #TINY-7714
722
+
723
+ ### Changed
724
+ - Changed the load order so content CSS is loaded before the editor is populated with content. #TINY-7249
725
+ - Changed the `emoticons`, `wordcount`, `code`, `codesample`, and `template` plugins to open dialogs using commands. #TINY-7619
726
+ - The context toolbar will no longer show an arrow when it overlaps the content, such as in table cells. #TINY-7665
727
+ - The context toolbar will no longer overlap the statusbar for toolbars using `node` or `selection` positions. #TINY-7666
728
+
729
+ ### Fixed
730
+ - The `editor.fire` API was incorrectly mutating the original `args` provided. #TINY-3254
731
+ - Unbinding an event handler did not take effect immediately while the event was firing. #TINY-7436
732
+ - Binding an event handler incorrectly took effect immediately while the event was firing. #TINY-7436
733
+ - Unbinding a native event handler inside the `remove` event caused an exception that blocked editor removal. #TINY-7730
734
+ - The `SetContent` event contained the incorrect `content` when using the `editor.selection.setContent()` API. #TINY-3254
735
+ - The editor content could be edited after calling `setProgressState(true)` in iframe mode. #TINY-7373
736
+ - Tabbing out of the editor after calling `setProgressState(true)` behaved inconsistently in iframe mode. #TINY-7373
737
+ - Flash of unstyled content while loading the editor because the content CSS was loaded after the editor content was rendered. #TINY-7249
738
+ - Partially transparent RGBA values provided in the `color_map` setting were given the wrong hex value. #TINY-7163
739
+ - HTML comments with mismatched quotes were parsed incorrectly under certain circumstances. #TINY-7589
740
+ - The editor could crash when inserting certain HTML content. #TINY-7756
741
+ - Inserting certain HTML content into the editor could result in invalid HTML once parsed. #TINY-7756
742
+ - Links in notification text did not show the correct mouse pointer. #TINY-7661
743
+ - Using the Tab key to navigate into the editor on Microsoft Internet Explorer 11 would incorrectly focus the toolbar. #TINY-3707
744
+ - The editor selection could be placed in an incorrect location when undoing or redoing changes in a document containing `contenteditable="false"` elements. #TINY-7663
745
+ - Menus and context menus were not closed when clicking into a different editor. #TINY-7399
746
+ - Context menus on Android were not displayed when more than one HTML element was selected. #TINY-7688
747
+ - Disabled nested menu items could still be opened. #TINY-7700
748
+ - The nested menu item chevron icon was not fading when the menu item was disabled. #TINY-7700
749
+ - `imagetools` buttons were incorrectly enabled for remote images without `imagetools_proxy` set. #TINY-7772
750
+ - Only table content would be deleted when partially selecting a table and content outside the table. #TINY-6044
751
+ - The table cell selection handling was incorrect in some cases when dealing with nested tables. #TINY-6298
752
+ - Removing a table row or column could result in the cursor getting placed in an invalid location. #TINY-7695
753
+ - Pressing the Tab key to navigate through table cells did not skip noneditable cells. #TINY-7705
754
+ - Clicking on a noneditable table cell did not show a visual selection like other noneditable elements. #TINY-7724
755
+ - Some table operations would incorrectly cause table row attributes and styles to be lost. #TINY-6666
756
+ - The selection was incorrectly lost when using the `mceTableCellType` and `mceTableRowType` commands. #TINY-6666
757
+ - The `mceTableRowType` was reversing the order of the rows when converting multiple header rows back to body rows. #TINY-6666
758
+ - The table dialog did not always respect the `table_style_with_css` option. #TINY-4926
759
+ - Pasting into a table with multiple cells selected could cause the content to be pasted in the wrong location. #TINY-7485
760
+ - The `TableModified` event was not fired when pasting cells into a table. #TINY-6939
761
+ - The table paste column before and after icons were not flipped in RTL mode. #TINY-7851
762
+ - Fixed table corruption when deleting a `contenteditable="false"` cell. #TINY-7891
763
+ - The `dir` attribute was being incorrectly applied to list items. #TINY-4589
764
+ - Applying selector formats would sometimes not apply the format correctly to elements in a list. #TINY-7393
765
+ - For formats that specify an attribute or style that should be removed, the formatter `match` API incorrectly returned `false`. #TINY-6149
766
+ - The type signature on the `formatter.matchNode` API had the wrong return type (was `boolean` but should have been `Formatter | undefined`). #TINY-6149
767
+ - The `formatter.formatChanged` API would ignore the `similar` parameter if another callback had already been registered for the same format. #TINY-7713
768
+ - The `formatter.formatChanged` API would sometimes not run the callback the first time the format was removed. #TINY-7713
769
+ - Base64 encoded images with spaces or line breaks in the data URI were not displayed correctly. Patch contributed by RoboBurned.
770
+
771
+ ### Deprecated
772
+ - The `bbcode`, `fullpage`, `legacyoutput`, and `spellchecker` plugins have been deprecated and marked for removal in the next major release. #TINY-7260
773
+
774
+ ## 5.8.2 - 2021-06-23
775
+
776
+ ### Fixed
777
+ - Fixed an issue when pasting cells from tables containing `colgroup`s into tables without `colgroup`s. #TINY-6675
778
+ - Fixed an issue that could cause an invalid toolbar button state when multiple inline editors were on a single page. #TINY-6297
779
+
780
+ ## 5.8.1 - 2021-05-20
781
+
782
+ ### Fixed
783
+ - An unexpected exception was thrown when switching to readonly mode and adjusting the editor width. #TINY-6383
784
+ - Content could be lost when the `pagebreak_split_block` setting was enabled. #TINY-3388
785
+ - The `list-style-type: none;` style on nested list items was incorrectly removed when clearing formatting. #TINY-6264
786
+ - URLs were not always detected when pasting over a selection. Patch contributed by jwcooper. #TINY-6997
787
+ - Properties on the `OpenNotification` event were incorrectly namespaced. #TINY-7486
788
+
789
+ ## 5.8.0 - 2021-05-06
790
+
791
+ ### Added
792
+ - Added the `PAGE_UP` and `PAGE_DOWN` key code constants to the `VK` API. #TINY-4612
793
+ - The editor resize handle can now be controlled using the keyboard. #TINY-4823
794
+ - Added a new `fixed_toolbar_container_target` setting which renders the toolbar in the specified `HTMLElement`. Patch contributed by pvrobays.
795
+
796
+ ### Improved
797
+ - The `inline_boundaries` feature now supports the `home`, `end`, `pageup`, and `pagedown` keys. #TINY-4612
798
+ - Updated the `formatter.matchFormat` API to support matching formats with variables in the `classes` property. #TINY-7227
799
+ - Added HTML5 `audio` and `video` elements to the default alignment formats. #TINY-6633
800
+ - Added support for alpha list numbering to the list properties dialog. #TINY-6891
801
+
802
+ ### Changed
803
+ - Updated the `image` dialog to display the class list dropdown as full-width if the caption checkbox is not present. #TINY-6400
804
+ - Renamed the "H Align" and "V Align" input labels in the Table Cell Properties dialog to "Horizontal align" and "Vertical align" respectively. #TINY-7285
805
+
806
+ ### Deprecated
807
+ - The undocumented `setIconStroke` Split Toolbar Button API has been deprecated and will be removed in a future release. #TINY-3551
808
+
809
+ ### Fixed
810
+ - Fixed a bug where it wasn't possible to align nested list items. #TINY-6567
811
+ - The RGB fields in the color picker dialog were not staying in sync with the color palette and hue slider. #TINY-6952
812
+ - The color preview box in the color picker dialog was not correctly displaying the saturation and value of the chosen color. #TINY-6952
813
+ - The color picker dialog will now show an alert if it is submitted with an invalid hex color code. #TINY-2814
814
+ - Fixed a bug where the `TableModified` event was not fired when adding a table row with the Tab key. #TINY-7006
815
+ - Added missing `images_file_types` setting to the exported TypeScript types. #GH-6607
816
+ - Fixed a bug where lists pasted from Word with Roman numeral markers were not displayed correctly. Patch contributed by aautio. #GH-6620
817
+ - The `editor.insertContent` API was incorrectly handling nested `span` elements with matching styles. #TINY-6263
818
+ - The HTML5 `small` element could not be removed when clearing text formatting. #TINY-6633
819
+ - The Oxide button text transform variable was incorrectly using `capitalize` instead of `none`. Patch contributed by dakur. #GH-6341
820
+ - Fix dialog button text that was using title-style capitalization. #TINY-6816
821
+ - Table plugin could perform operations on tables containing the inline editor. #TINY-6625
822
+ - Fixed Tab key navigation inside table cells with a ranged selection. #TINY-6638
823
+ - The foreground and background toolbar button color indicator is no longer blurry. #TINY-3551
824
+ - Fixed a regression in the `tinymce.create()` API that caused issues when multiple objects were created. #TINY-7358
825
+ - Fixed the `LineHeight` command causing the `change` event to be fired inconsistently. #TINY-7048
826
+
827
+ ## 5.7.1 - 2021-03-17
828
+
829
+ ### Fixed
830
+ - Fixed the `help` dialog incorrectly linking to the changelog of TinyMCE 4 instead of TinyMCE 5. #TINY-7031
831
+ - Fixed a bug where error messages were displayed incorrectly in the image dialog. #TINY-7099
832
+ - Fixed an issue where URLs were not correctly filtered in some cases. #TINY-7025
833
+ - Fixed a bug where context menu items with names that contained uppercase characters were not displayed. #TINY-7072
834
+ - Fixed context menu items lacking support for the `disabled` and `shortcut` properties. #TINY-7073
835
+ - Fixed a regression where the width and height were incorrectly set when embedding content using the `media` dialog. #TINY-7074
836
+
837
+ ## 5.7.0 - 2021-02-10
838
+
839
+ ### Added
840
+ - Added IPv6 address support to the URI API. Patch contributed by dev7355608. #GH-4409
841
+ - Added new `structure` and `style` properties to the `TableModified` event to indicate what kinds of modifications were made. #TINY-6643
842
+ - Added `video` and `audio` live embed support for the `media` plugin. #TINY-6229
843
+ - Added the ability to resize `video` and `iframe` media elements. #TINY-6229
844
+ - Added a new `font_css` setting for adding fonts to both the editor and the parent document. #TINY-6199
845
+ - Added a new `ImageUploader` API to simplify uploading image data to the configured `images_upload_url` or `images_upload_handler`. #TINY-4601
846
+ - Added an Oxide variable to define the container background color in fullscreen mode. #TINY-6903
847
+ - Added Oxide variables for setting the toolbar background colors for inline and sticky toolbars. #TINY-6009
848
+ - Added a new `AfterProgressState` event that is fired after `editor.setProgressState` calls complete. #TINY-6686
849
+ - Added support for `table_column_resizing` when inserting or deleting columns. #TINY-6711
850
+
851
+ ### Changed
852
+ - Changed table and table column copy behavior to retain an appropriate width when pasted. #TINY-6664
853
+ - Changed the `lists` plugin to apply list styles to all text blocks within a selection. #TINY-3755
854
+ - Changed the `advlist` plugin to log a console error message when the `list` plugin isn't enabled. #TINY-6585
855
+ - Changed the z-index of the `setProgressState(true)` throbber so it does not hide notifications. #TINY-6686
856
+ - Changed the type signature for `editor.selection.getRng()` incorrectly returning `null`. #TINY-6843
857
+ - Changed some `SaxParser` regular expressions to improve performance. #TINY-6823
858
+ - Changed `editor.setProgressState(true)` to close any open popups. #TINY-6686
859
+
860
+ ### Fixed
861
+ - Fixed `codesample` highlighting performance issues for some languages. #TINY-6996
862
+ - Fixed an issue where cell widths were lost when merging table cells. #TINY-6901
863
+ - Fixed `col` elements incorrectly transformed to `th` elements when converting columns to header columns. #TINY-6715
864
+ - Fixed a number of table operations not working when selecting 2 table cells on Mozilla Firefox. #TINY-3897
865
+ - Fixed a memory leak by backporting an upstream Sizzle fix. #TINY-6859
866
+ - Fixed table `width` style was removed when copying. #TINY-6664
867
+ - Fixed focus lost while typing in the `charmap` or `emoticons` dialogs when the editor is rendered in a shadow root. #TINY-6904
868
+ - Fixed corruption of base64 URLs used in style attributes when parsing HTML. #TINY-6828
869
+ - Fixed the order of CSS precedence of `content_style` and `content_css` in the `preview` and `template` plugins. `content_style` now has precedence. #TINY-6529
870
+ - Fixed an issue where the image dialog tried to calculate image dimensions for an empty image URL. #TINY-6611
871
+ - Fixed an issue where `scope` attributes on table cells would not change as expected when merging or unmerging cells. #TINY-6486
872
+ - Fixed the plugin documentation links in the `help` plugin. #DOC-703
873
+ - Fixed events bound using `DOMUtils` not returning the correct result for `isDefaultPrevented` in some cases. #TINY-6834
874
+ - Fixed the "Dropped file type is not supported" notification incorrectly showing when using an inline editor. #TINY-6834
875
+ - Fixed an issue with external styles bleeding into TinyMCE. #TINY-6735
876
+ - Fixed an issue where parsing malformed comments could cause an infinite loop. #TINY-6864
877
+ - Fixed incorrect return types on `editor.selection.moveToBookmark`. #TINY-6504
878
+ - Fixed the type signature for `editor.selection.setCursorLocation()` incorrectly allowing a node with no `offset`. #TINY-6843
879
+ - Fixed incorrect behavior when editor is destroyed while loading stylesheets. #INT-2282
880
+ - Fixed figure elements incorrectly splitting from a valid parent element when editing the image within. #TINY-6592
881
+ - Fixed inserting multiple rows or columns in a table cloning from the incorrect source row or column. #TINY-6906
882
+ - Fixed an issue where new lines were not scrolled into view when pressing Shift+Enter or Shift+Return. #TINY-6964
883
+ - Fixed an issue where list elements would not be removed when outdenting using the Enter or Return key. #TINY-5974
884
+ - Fixed an issue where file extensions with uppercase characters were treated as invalid. #TINY-6940
885
+ - Fixed dialog block messages were not passed through TinyMCE's translation system. #TINY-6971
886
+
887
+ ## 5.6.2 - 2020-12-08
888
+
889
+ ### Fixed
890
+ - Fixed a UI rendering regression when the document body is using `display: flex`. #TINY-6783
891
+
892
+ ## 5.6.1 - 2020-11-25
893
+
894
+ ### Fixed
895
+ - Fixed the `mceTableRowType` and `mceTableCellType` commands were not firing the `newCell` event. #TINY-6692
896
+ - Fixed the HTML5 `s` element was not recognized when editing or clearing text formatting. #TINY-6681
897
+ - Fixed an issue where copying and pasting table columns resulted in invalid HTML when using colgroups. #TINY-6684
898
+ - Fixed an issue where the toolbar would render with the wrong width for inline editors in some situations. #TINY-6683
899
+
900
+ ## 5.6.0 - 2020-11-18
901
+
902
+ ### Added
903
+ - Added new `BeforeOpenNotification` and `OpenNotification` events which allow internal notifications to be captured and modified before display. #TINY-6528
904
+ - Added support for `block` and `unblock` methods on inline dialogs. #TINY-6487
905
+ - Added new `TableModified` event which is fired whenever changes are made to a table. #TINY-6629
906
+ - Added new `images_file_types` setting to determine which image file formats will be automatically processed into `img` tags on paste when using the `paste` plugin. #TINY-6306
907
+ - Added support for `images_file_types` setting in the image file uploader to determine which image file extensions are valid for upload. #TINY-6224
908
+ - Added new `format_empty_lines` setting to control if empty lines are formatted in a ranged selection. #TINY-6483
909
+ - Added template support to the `autocompleter` for customizing the autocompleter items. #TINY-6505
910
+ - Added new user interface `enable`, `disable`, and `isDisabled` methods. #TINY-6397
911
+ - Added new `closest` formatter API to get the closest matching selection format from a set of formats. #TINY-6479
912
+ - Added new `emojiimages` emoticons database that uses the twemoji CDN by default. #TINY-6021
913
+ - Added new `emoticons_database` setting to configure which emoji database to use. #TINY-6021
914
+ - Added new `name` field to the `style_formats` setting object to enable specifying a name for the format. #TINY-4239
915
+
916
+ ### Changed
917
+ - Changed `readonly` mode to allow hyperlinks to be clickable. #TINY-6248
918
+
919
+ ### Fixed
920
+ - Fixed the `change` event not firing after a successful image upload. #TINY-6586
921
+ - Fixed the type signature for the `entity_encoding` setting not accepting delimited lists. #TINY-6648
922
+ - Fixed layout issues when empty `tr` elements were incorrectly removed from tables. #TINY-4679
923
+ - Fixed image file extensions lost when uploading an image with an alternative extension, such as `.jfif`. #TINY-6622
924
+ - Fixed a security issue where URLs in attributes weren't correctly sanitized. #TINY-6518
925
+ - Fixed `DOMUtils.getParents` incorrectly including the shadow root in the array of elements returned. #TINY-6540
926
+ - Fixed an issue where the root document could be scrolled while an editor dialog was open inside a shadow root. #TINY-6363
927
+ - Fixed `getContent` with text format returning a new line when the editor is empty. #TINY-6281
928
+ - Fixed table column and row resizers not respecting the `data-mce-resize` attribute. #TINY-6600
929
+ - Fixed inserting a table via the `mceInsertTable` command incorrectly creating 2 undo levels. #TINY-6656
930
+ - Fixed nested tables with `colgroup` elements incorrectly always resizing the inner table. #TINY-6623
931
+ - Fixed the `visualchars` plugin causing the editor to steal focus when initialized. #TINY-6282
932
+ - Fixed `fullpage` plugin altering text content in `editor.getContent()`. #TINY-6541
933
+ - Fixed `fullscreen` plugin not working correctly with multiple editors and shadow DOM. #TINY-6280
934
+ - Fixed font size keywords such as `medium` not displaying correctly in font size menus. #TINY-6291
935
+ - Fixed an issue where some attributes in table cells were not copied over to new rows or columns. #TINY-6485
936
+ - Fixed incorrectly removing formatting on adjacent spaces when removing formatting on a ranged selection. #TINY-6268
937
+ - Fixed the `Cut` menu item not working in the latest version of Mozilla Firefox. #TINY-6615
938
+ - Fixed some incorrect types in the new TypeScript declaration file. #TINY-6413
939
+ - Fixed a regression where a fake offscreen selection element was incorrectly created for the editor root node. #TINY-6555
940
+ - Fixed an issue where menus would incorrectly collapse in small containers. #TINY-3321
941
+ - Fixed an issue where only one table column at a time could be converted to a header. #TINY-6326
942
+ - Fixed some minor memory leaks that prevented garbage collection for editor instances. #TINY-6570
943
+ - Fixed resizing a `responsive` table not working when using the column resize handles. #TINY-6601
944
+ - Fixed incorrectly calculating table `col` widths when resizing responsive tables. #TINY-6646
945
+ - Fixed an issue where spaces were not preserved in pre-blocks when getting text content. #TINY-6448
946
+ - Fixed a regression that caused the selection to be difficult to see in tables with backgrounds. #TINY-6495
947
+ - Fixed content pasted multiple times in the editor when using Microsoft Internet Explorer 11. Patch contributed by mattford. #GH-4905
948
+
949
+ ## 5.5.1 - 2020-10-01
950
+
951
+ ### Fixed
952
+ - Fixed pressing the down key near the end of a document incorrectly raising an exception. #TINY-6471
953
+ - Fixed incorrect Typescript types for the `Tools` API. #TINY-6475
954
+
955
+ ## 5.5.0 - 2020-09-29
956
+
957
+ ### Added
958
+ - Added a TypeScript declaration file to the bundle output for TinyMCE core. #TINY-3785
959
+ - Added new `table_column_resizing` setting to control how table columns are resized when using the resize bars. #TINY-6001
960
+ - Added the ability to remove images on a failed upload using the `images_upload_handler` failure callback. #TINY-6011
961
+ - Added `hasPlugin` function to the editor API to determine if a plugin exists or not. #TINY-766
962
+ - Added new `ToggleToolbarDrawer` command and query state handler to allow the toolbar drawer to be programmatically toggled and the toggle state to be checked. #TINY-6032
963
+ - Added the ability to use `colgroup` elements in tables. #TINY-6050
964
+ - Added a new setting `table_use_colgroups` for toggling whether colgroups are used in new tables. #TINY-6050
965
+ - Added the ability to delete and navigate HTML media elements without the `media` plugin. #TINY-4211
966
+ - Added `fullscreen_native` setting to the `fullscreen` plugin to enable use of the entire monitor. #TINY-6284
967
+ - Added table related oxide variables to the Style API for more granular control over table cell selection appearance. #TINY-6311
968
+ - Added new `toolbar_persist` setting to control the visibility of the inline toolbar. #TINY-4847
969
+ - Added new APIs to allow for programmatic control of the inline toolbar visibility. #TINY-4847
970
+ - Added the `origin` property to the `ObjectResized` and `ObjectResizeStart` events, to specify which handle the resize was performed on. #TINY-6242
971
+ - Added new StyleSheetLoader `unload` and `unloadAll` APIs to allow loaded stylesheets to be removed. #TINY-3926
972
+ - Added the `LineHeight` query command and action to the editor. #TINY-4843
973
+ - Added the `lineheight` toolbar and menu items, and added `lineheight` to the default format menu. #TINY-4843
974
+ - Added a new `contextmenu_avoid_overlap` setting to allow context menus to avoid overlapping matched nodes. #TINY-6036
975
+ - Added new listbox dialog UI component for rendering a dropdown that allows nested options. #TINY-2236
976
+ - Added back the ability to use nested items in the `image_class_list`, `link_class_list`, `link_list`, `table_class_list`, `table_cell_class_list`, and `table_row_class_list` settings. #TINY-2236
977
+
978
+ ### Changed
979
+ - Changed how CSS manipulates table cells when selecting multiple cells to achieve a semi-transparent selection. #TINY-6311
980
+ - Changed the `target` property on fired events to use the native event target. The original target for an open shadow root can be obtained using `event.getComposedPath()`. #TINY-6128
981
+ - Changed the editor to clean-up loaded CSS stylesheets when all editors using the stylesheet have been removed. #TINY-3926
982
+ - Changed `imagetools` context menu icon for accessing the `image` dialog to use the `image` icon. #TINY-4141
983
+ - Changed the `editor.insertContent()` and `editor.selection.setContent()` APIs to retain leading and trailing whitespace. #TINY-5966
984
+ - Changed the `table` plugin `Column` menu to include the cut, copy and paste column menu items. #TINY-6374
985
+ - Changed the default table styles in the content CSS files to better support the styling options available in the `table` dialog. #TINY-6179
986
+
987
+ ### Deprecated
988
+ - Deprecated the `Env.experimentalShadowDom` flag. #TINY-6128
989
+
990
+ ### Fixed
991
+ - Fixed tables with no borders displaying with the default border styles in the `preview` dialog. #TINY-6179
992
+ - Fixed loss of whitespace when inserting content after a non-breaking space. #TINY-5966
993
+ - Fixed the `event.getComposedPath()` function throwing an exception for events fired from the editor. #TINY-6128
994
+ - Fixed notifications not appearing when the editor is within a ShadowRoot. #TINY-6354
995
+ - Fixed focus issues with inline dialogs when the editor is within a ShadowRoot. #TINY-6360
996
+ - Fixed the `template` plugin previews missing some content styles. #TINY-6115
997
+ - Fixed the `media` plugin not saving the alternative source url in some situations. #TINY-4113
998
+ - Fixed an issue where column resizing using the resize bars was inconsistent between fixed and relative table widths. #TINY-6001
999
+ - Fixed an issue where dragging and dropping within a table would select table cells. #TINY-5950
1000
+ - Fixed up and down keyboard navigation not working for inline `contenteditable="false"` elements. #TINY-6226
1001
+ - Fixed dialog not retrieving `close` icon from icon pack. #TINY-6445
1002
+ - Fixed the `unlink` toolbar button not working when selecting multiple links. #TINY-4867
1003
+ - Fixed the `link` dialog not showing the "Text to display" field in some valid cases. #TINY-5205
1004
+ - Fixed the `DOMUtils.split()` API incorrectly removing some content. #TINY-6294
1005
+ - Fixed pressing the escape key not focusing the editor when using multiple toolbars. #TINY-6230
1006
+ - Fixed the `dirty` flag not being correctly set during an `AddUndo` event. #TINY-4707
1007
+ - Fixed `editor.selection.setCursorLocation` incorrectly placing the cursor outside `pre` elements in some circumstances. #TINY-4058
1008
+ - Fixed an exception being thrown when pressing the enter key inside pre elements while `br_in_pre` setting is false. #TINY-4058
1009
+
1010
+ ## 5.4.2 - 2020-08-17
1011
+
1012
+ ### Fixed
1013
+ - Fixed the editor not resizing when resizing the browser window in fullscreen mode. #TINY-3511
1014
+ - Fixed clicking on notifications causing inline editors to hide. #TINY-6058
1015
+ - Fixed an issue where link URLs could not be deleted or edited in the link dialog in some cases. #TINY-4706
1016
+ - Fixed a regression where setting the `anchor_top` or `anchor_bottom` options to `false` was not working. #TINY-6256
1017
+ - Fixed the `anchor` plugin not supporting the `allow_html_in_named_anchor` option. #TINY-6236
1018
+ - Fixed an exception thrown when removing inline formats that contained additional styles or classes. #TINY-6288
1019
+ - Fixed an exception thrown when positioning the context toolbar on Internet Explorer 11 in some edge cases. #TINY-6271
1020
+ - Fixed inline formats not removed when more than one `removeformat` format rule existed. #TINY-6216
1021
+ - Fixed an issue where spaces were sometimes removed when removing formating on nearby text. #TINY-6251
1022
+ - Fixed the list toolbar buttons not showing as active when a list is selected. #TINY-6286
1023
+ - Fixed an issue where the UI would sometimes not be shown or hidden when calling the show or hide API methods on the editor. #TINY-6048
1024
+ - Fixed the list type style not retained when copying list items. #TINY-6289
1025
+ - Fixed the Paste plugin converting tabs in plain text to a single space character. A `paste_tab_spaces` option has been included for setting the number of spaces used to replace a tab character. #TINY-6237
1026
+
1027
+ ## 5.4.1 - 2020-07-08
1028
+
1029
+ ### Fixed
1030
+ - Fixed the Search and Replace plugin incorrectly including zero-width caret characters in search results. #TINY-4599
1031
+ - Fixed dragging and dropping unsupported files navigating the browser away from the editor. #TINY-6027
1032
+ - Fixed undo levels not created on browser handled drop or paste events. #TINY-6027
1033
+ - Fixed content in an iframe element parsing as DOM elements instead of text content. #TINY-5943
1034
+ - Fixed Oxide checklist styles not showing when printing. #TINY-5139
1035
+ - Fixed bug with `scope` attribute not being added to the cells of header rows. #TINY-6206
1036
+
1037
+ ## 5.4.0 - 2020-06-30
1038
+
1039
+ ### Added
1040
+ - Added keyboard navigation support to menus and toolbars when the editor is in a ShadowRoot. #TINY-6152
1041
+ - Added the ability for menus to be clicked when the editor is in an open shadow root. #TINY-6091
1042
+ - Added the `Editor.ui.styleSheetLoader` API for loading stylesheets within the Document or ShadowRoot containing the editor UI. #TINY-6089
1043
+ - Added the `StyleSheetLoader` module to the public API. #TINY-6100
1044
+ - Added Oxide variables for styling the `select` element and headings in dialog content. #TINY-6070
1045
+ - Added icons for `table` column and row cut, copy, and paste toolbar buttons. #TINY-6062
1046
+ - Added all `table` menu items to the UI registry, so they can be used by name in other menus. #TINY-4866
1047
+ - Added new `mceTableApplyCellStyle` command to the `table` plugin. #TINY-6004
1048
+ - Added new `table` cut, copy, and paste column editor commands and menu items. #TINY-6006
1049
+ - Added font related Oxide variables for secondary buttons, allowing for custom styling. #TINY-6061
1050
+ - Added new `table_header_type` setting to control how table header rows are structured. #TINY-6007
1051
+ - Added new `table_sizing_mode` setting to replace the `table_responsive_width` setting, which has now been deprecated. #TINY-6051
1052
+ - Added new `mceTableSizingMode` command for changing the sizing mode of a table. #TINY-6000
1053
+ - Added new `mceTableRowType`, `mceTableColType`, and `mceTableCellType` commands and value queries. #TINY-6150
1054
+
1055
+ ### Changed
1056
+ - Changed `advlist` toolbar buttons to only show a dropdown list if there is more than one option. #TINY-3194
1057
+ - Changed `mceInsertTable` command and `insertTable` API method to take optional header rows and columns arguments. #TINY-6012
1058
+ - Changed stylesheet loading, so that UI skin stylesheets can load in a ShadowRoot if required. #TINY-6089
1059
+ - Changed the DOM location of menus so that they display correctly when the editor is in a ShadowRoot. #TINY-6093
1060
+ - Changed the table plugin to correctly detect all valid header row structures. #TINY-6007
1061
+
1062
+ ### Fixed
1063
+ - Fixed tables with no defined width being converted to a `fixed` width table when modifying the table. #TINY-6051
1064
+ - Fixed the `autosave` `isEmpty` API incorrectly detecting non-empty content as empty. #TINY-5953
1065
+ - Fixed table `Paste row after` and `Paste row before` menu items not disabled when nothing was available to paste. #TINY-6006
1066
+ - Fixed a selection performance issue with large tables on Microsoft Internet Explorer and Edge. #TINY-6057
1067
+ - Fixed filters for screening commands from the undo stack to be case-insensitive. #TINY-5946
1068
+ - Fixed `fullscreen` plugin now removes all classes when the editor is closed. #TINY-4048
1069
+ - Fixed handling of mixed-case icon identifiers (names) for UI elements. #TINY-3854
1070
+ - Fixed leading and trailing spaces lost when using `editor.selection.getContent({ format: 'text' })`. #TINY-5986
1071
+ - Fixed an issue where changing the URL with the quicklink toolbar caused unexpected undo behavior. #TINY-5952
1072
+ - Fixed an issue where removing formatting within a table cell would cause Internet Explorer 11 to scroll to the end of the table. #TINY-6049
1073
+ - Fixed an issue where the `allow_html_data_urls` setting was not correctly applied. #TINY-5951
1074
+ - Fixed the `autolink` feature so that it no longer treats a string with multiple "@" characters as an email address. #TINY-4773
1075
+ - Fixed an issue where removing the editor would leave unexpected attributes on the target element. #TINY-4001
1076
+ - Fixed the `link` plugin now suggest `mailto:` when the text contains an '@' and no slashes (`/`). #TINY-5941
1077
+ - Fixed the `valid_children` check of custom elements now allows a wider range of characters in names. #TINY-5971
1078
+
1079
+ ## 5.3.2 - 2020-06-10
1080
+
1081
+ ### Fixed
1082
+ - Fixed a regression introduced in 5.3.0, where `images_dataimg_filter` was no-longer called. #TINY-6086
1083
+
1084
+ ## 5.3.1 - 2020-05-27
1085
+
1086
+ ### Fixed
1087
+ - Fixed the image upload error alert also incorrectly closing the image dialog. #TINY-6020
1088
+ - Fixed editor content scrolling incorrectly on focus in Firefox by reverting default content CSS html and body heights added in 5.3.0. #TINY-6019
1089
+
1090
+ ## 5.3.0 - 2020-05-21
1091
+
1092
+ ### Added
1093
+ - Added html and body height styles to the default oxide content CSS. #TINY-5978
1094
+ - Added `uploadUri` and `blobInfo` to the data returned by `editor.uploadImages()`. #TINY-4579
1095
+ - Added a new function to the `BlobCache` API to lookup a blob based on the base64 data and mime type. #TINY-5988
1096
+ - Added the ability to search and replace within a selection. #TINY-4549
1097
+ - Added the ability to set the list start position for ordered lists and added new `lists` context menu item. #TINY-3915
1098
+ - Added `icon` as an optional config option to the toggle menu item API. #TINY-3345
1099
+ - Added `auto` mode for `toolbar_location` which positions the toolbar and menu bar at the bottom if there is no space at the top. #TINY-3161
1100
+
1101
+ ### Changed
1102
+ - Changed the default `toolbar_location` to `auto`. #TINY-3161
1103
+ - Changed toggle menu items and choice menu items to have a dedicated icon with the checkmark displayed on the far right side of the menu item. #TINY-3345
1104
+ - Changed the `link`, `image`, and `paste` plugins to use Promises to reduce the bundle size. #TINY-4710
1105
+ - Changed the default icons to be lazy loaded during initialization. #TINY-4729
1106
+ - Changed the parsing of content so base64 encoded urls are converted to blob urls. #TINY-4727
1107
+ - Changed context toolbars so they concatenate when more than one is suitable for the current selection. #TINY-4495
1108
+ - Changed inline style element formats (strong, b, em, i, u, strike) to convert to a span on format removal if a `style` or `class` attribute is present. #TINY-4741
1109
+
1110
+ ### Fixed
1111
+ - Fixed the `selection.setContent()` API not running parser filters. #TINY-4002
1112
+ - Fixed formats incorrectly applied or removed when table cells were selected. #TINY-4709
1113
+ - Fixed the `quickimage` button not restricting the file types to images. #TINY-4715
1114
+ - Fixed search and replace ignoring text in nested contenteditable elements. #TINY-5967
1115
+ - Fixed resize handlers displaying in the wrong location sometimes for remote images. #TINY-4732
1116
+ - Fixed table picker breaking in Firefox on low zoom levels. #TINY-4728
1117
+ - Fixed issue with loading or pasting contents with large base64 encoded images on Safari. #TINY-4715
1118
+ - Fixed supplementary special characters being truncated when inserted into the editor. Patch contributed by mlitwin. #TINY-4791
1119
+ - Fixed toolbar buttons not set to disabled when the editor is in readonly mode. #TINY-4592
1120
+ - Fixed the editor selection incorrectly changing when removing caret format containers. #TINY-3438
1121
+ - Fixed bug where title, width, and height would be set to empty string values when updating an image and removing those attributes using the image dialog. #TINY-4786
1122
+ - Fixed `ObjectResized` event firing when an object wasn't resized. #TINY-4161
1123
+ - Fixed `ObjectResized` and `ObjectResizeStart` events incorrectly fired when adding or removing table rows and columns. #TINY-4829
1124
+ - Fixed the placeholder not hiding when pasting content into the editor. #TINY-4828
1125
+ - Fixed an issue where the editor would fail to load if local storage was disabled. #TINY-5935
1126
+ - Fixed an issue where an uploaded image would reuse a cached image with a different mime type. #TINY-5988
1127
+ - Fixed bug where toolbars and dialogs would not show if the body element was replaced (e.g. with Turbolinks). Patch contributed by spohlenz. #GH-5653
1128
+ - Fixed an issue where multiple formats would be removed when removing a single format at the end of lines or on empty lines. #TINY-1170
1129
+ - Fixed zero-width spaces incorrectly included in the `wordcount` plugin character count. #TINY-5991
1130
+ - Fixed a regression introduced in 5.2.0 whereby the desktop `toolbar_mode` setting would incorrectly override the mobile default setting. #TINY-5998
1131
+ - Fixed an issue where deleting all content in a single cell table would delete the entire table. #TINY-1044
1132
+
1133
+ ## 5.2.2 - 2020-04-23
1134
+
1135
+ ### Fixed
1136
+ - Fixed an issue where anchors could not be inserted on empty lines. #TINY-2788
1137
+ - Fixed text decorations (underline, strikethrough) not consistently inheriting the text color. #TINY-4757
1138
+ - Fixed `format` menu alignment buttons inconsistently applying to images. #TINY-4057
1139
+ - Fixed the floating toolbar drawer height collapsing when the editor is rendered in modal dialogs or floating containers. #TINY-4837
1140
+ - Fixed `media` embed content not processing safely in some cases. #TINY-4857
1141
+
1142
+ ## 5.2.1 - 2020-03-25
1143
+
1144
+ ### Fixed
1145
+ - Fixed the "is decorative" checkbox in the image dialog clearing after certain dialog events. #FOAM-11
1146
+ - Fixed possible uncaught exception when a `style` attribute is removed using a content filter on `setContent`. #TINY-4742
1147
+ - Fixed the table selection not functioning correctly in Microsoft Edge 44 or higher. #TINY-3862
1148
+ - Fixed the table resize handles not functioning correctly in Microsoft Edge 44 or higher. #TINY-4160
1149
+ - Fixed the floating toolbar drawer disconnecting from the toolbar when adding content in inline mode. #TINY-4725 #TINY-4765
1150
+ - Fixed `readonly` mode not returning the appropriate boolean value. #TINY-3948
1151
+ - Fixed the `forced_root_block_attrs` setting not applying attributes to new blocks consistently. #TINY-4564
1152
+ - Fixed the editor incorrectly stealing focus during initialization in Microsoft Internet Explorer. #TINY-4697
1153
+ - Fixed dialogs stealing focus when opening an alert or confirm dialog using an `onAction` callback. #TINY-4014
1154
+ - Fixed inline dialogs incorrectly closing when clicking on an opened alert or confirm dialog. #TINY-4012
1155
+ - Fixed the context toolbar overlapping the menu bar and toolbar. #TINY-4586
1156
+ - Fixed notification and inline dialog positioning issues when using `toolbar_location: 'bottom'`. #TINY-4586
1157
+ - Fixed the `colorinput` popup appearing offscreen on mobile devices. #TINY-4711
1158
+ - Fixed special characters not being found when searching by "whole words only". #TINY-4522
1159
+ - Fixed an issue where dragging images could cause them to be duplicated. #TINY-4195
1160
+ - Fixed context toolbars activating without the editor having focus. #TINY-4754
1161
+ - Fixed an issue where removing the background color of text did not always work. #TINY-4770
1162
+ - Fixed an issue where new rows and columns in a table did not retain the style of the previous row or column. #TINY-4788
1163
+
1164
+ ## 5.2.0 - 2020-02-13
1165
+
1166
+ ### Added
1167
+ - Added the ability to apply formats to spaces. #TINY-4200
1168
+ - Added new `toolbar_location` setting to allow for positioning the menu and toolbar at the bottom of the editor. #TINY-4210
1169
+ - Added new `toolbar_groups` setting to allow a custom floating toolbar group to be added to the toolbar when using `floating` toolbar mode. #TINY-4229
1170
+ - Added new `link_default_protocol` setting to `link` and `autolink` plugin to allow a protocol to be used by default. #TINY-3328
1171
+ - Added new `placeholder` setting to allow a placeholder to be shown when the editor is empty. #TINY-3917
1172
+ - Added new `tinymce.dom.TextSeeker` API to allow searching text across different DOM nodes. #TINY-4200
1173
+ - Added a drop shadow below the toolbar while in sticky mode and introduced Oxide variables to customize it when creating a custom skin. #TINY-4343
1174
+ - Added `quickbars_image_toolbar` setting to allow for the image quickbar to be turned off. #TINY-4398
1175
+ - Added iframe and img `loading` attribute to the default schema. Patch contributed by ataylor32. #GH-5112
1176
+ - Added new `getNodeFilters`/`getAttributeFilters` functions to the `editor.serializer` instance. #TINY-4344
1177
+ - Added new `a11y_advanced_options` setting to allow additional accessibility options to be added. #FOAM-11
1178
+ - Added new accessibility options and behaviours to the image dialog using `a11y_advanced_options`. #FOAM-11
1179
+ - Added the ability to use the window `PrismJS` instance for the `codesample` plugin instead of the bundled version to allow for styling custom languages. #TINY-4504
1180
+ - Added error message events that fire when a resource loading error occurs. #TINY-4509
1181
+
1182
+ ### Changed
1183
+ - Changed the default schema to disallow `onchange` for select elements. #TINY-4614
1184
+ - Changed default `toolbar_mode` value from false to `wrap`. The value false has been deprecated. #TINY-4617
1185
+ - Changed `toolbar_drawer` setting to `toolbar_mode`. `toolbar_drawer` has been deprecated. #TINY-4416
1186
+ - Changed iframe mode to set selection on content init if selection doesn't exist. #TINY-4139
1187
+ - Changed table related icons to align them with the visual style of the other icons. #TINY-4341
1188
+ - Changed and improved the visual appearance of the color input field. #TINY-2917
1189
+ - Changed fake caret container to use `forced_root_block` when possible. #TINY-4190
1190
+ - Changed the `requireLangPack` API to wait until the plugin has been loaded before loading the language pack. #TINY-3716
1191
+ - Changed the formatter so `style_formats` are registered before the initial content is loaded into the editor. #TINY-4238
1192
+ - Changed media plugin to use https protocol for media urls by default. #TINY-4577
1193
+ - Changed the parser to treat CDATA nodes as bogus HTML comments to match the HTML parsing spec. A new `preserve_cdata` setting has been added to preserve CDATA nodes if required. #TINY-4625
1194
+
1195
+ ### Fixed
1196
+ - Fixed incorrect parsing of malformed/bogus HTML comments. #TINY-4625
1197
+ - Fixed `quickbars` selection toolbar appearing on non-editable elements. #TINY-4359
1198
+ - Fixed bug with alignment toolbar buttons sometimes not changing state correctly. #TINY-4139
1199
+ - Fixed the `codesample` toolbar button not toggling when selecting code samples other than HTML. #TINY-4504
1200
+ - Fixed content incorrectly scrolling to the top or bottom when pressing enter if when the content was already in view. #TINY-4162
1201
+ - Fixed `scrollIntoView` potentially hiding elements behind the toolbar. #TINY-4162
1202
+ - Fixed editor not respecting the `resize_img_proportional` setting due to legacy code. #TINY-4236
1203
+ - Fixed flickering floating toolbar drawer in inline mode. #TINY-4210
1204
+ - Fixed an issue where the template plugin dialog would be indefinitely blocked on a failed template load. #TINY-2766
1205
+ - Fixed the `mscontrolselect` event not being unbound on IE/Edge. #TINY-4196
1206
+ - Fixed Confirm dialog footer buttons so only the "Yes" button is highlighted. #TINY-4310
1207
+ - Fixed `file_picker_callback` functionality for Image, Link and Media plugins. #TINY-4163
1208
+ - Fixed issue where floating toolbar drawer sometimes would break if the editor is resized while the drawer is open. #TINY-4439
1209
+ - Fixed incorrect `external_plugins` loading error message. #TINY-4503
1210
+ - Fixed resize handler was not hidden for ARIA purposes. Patch contributed by Parent5446. #GH-5195
1211
+ - Fixed an issue where content could be lost if a misspelled word was selected and spellchecking was disabled. #TINY-3899
1212
+ - Fixed validation errors in the CSS where certain properties had the wrong default value. #TINY-4491
1213
+ - Fixed an issue where forced root block attributes were not applied when removing a list. #TINY-4272
1214
+ - Fixed an issue where the element path isn't being cleared when there are no parents. #TINY-4412
1215
+ - Fixed an issue where width and height in svg icons containing `rect` elements were overridden by the CSS reset. #TINY-4408
1216
+ - Fixed an issue where uploading images with `images_reuse_filename` enabled and that included a query parameter would generate an invalid URL. #TINY-4638
1217
+ - Fixed the `closeButton` property not working when opening notifications. #TINY-4674
1218
+ - Fixed keyboard flicker when opening a context menu on mobile. #TINY-4540
1219
+ - Fixed issue where plus icon svg contained strokes. #TINY-4681
1220
+
1221
+ ## 5.1.6 - 2020-01-28
1222
+
1223
+ ### Fixed
1224
+ - Fixed `readonly` mode not blocking all clicked links. #TINY-4572
1225
+ - Fixed legacy font sizes being calculated inconsistently for the `FontSize` query command value. #TINY-4555
1226
+ - Fixed changing a tables row from `Header` to `Body` incorrectly moving the row to the bottom of the table. #TINY-4593
1227
+ - Fixed the context menu not showing in certain cases with hybrid devices. #TINY-4569
1228
+ - Fixed the context menu opening in the wrong location when the target is the editor body. #TINY-4568
1229
+ - Fixed the `image` plugin not respecting the `automatic_uploads` setting when uploading local images. #TINY-4287
1230
+ - Fixed security issue related to parsing HTML comments and CDATA. #TINY-4544
1231
+
1232
+ ## 5.1.5 - 2019-12-19
1233
+
1234
+ ### Fixed
1235
+ - Fixed the UI not working with hybrid devices that accept both touch and mouse events. #TNY-4521
1236
+ - Fixed the `charmap` dialog initially focusing the first tab of the dialog instead of the search input field. #TINY-4342
1237
+ - Fixed an exception being raised when inserting content if the caret was directly before or after a `contenteditable="false"` element. #TINY-4528
1238
+ - Fixed a bug with pasting image URLs when paste as text is enabled. #TINY-4523
1239
+
1240
+ ## 5.1.4 - 2019-12-11
1241
+
1242
+ ### Fixed
1243
+ - Fixed dialog contents disappearing when clicking a checkbox for right-to-left languages. #TINY-4518
1244
+ - Fixed the `legacyoutput` plugin registering legacy formats after editor initialization, causing legacy content to be stripped on the initial load. #TINY-4447
1245
+ - Fixed search and replace not cycling through results when searching using special characters. #TINY-4506
1246
+ - Fixed the `visualchars` plugin converting HTML-like text to DOM elements in certain cases. #TINY-4507
1247
+ - Fixed an issue with the `paste` plugin not sanitizing content in some cases. #TINY-4510
1248
+ - Fixed HTML comments incorrectly being parsed in certain cases. #TINY-4511
1249
+
1250
+ ## 5.1.3 - 2019-12-04
1251
+
1252
+ ### Fixed
1253
+ - Fixed sticky toolbar not undocking when fullscreen mode is activated. #TINY-4390
1254
+ - Fixed the "Current Window" target not applying when updating links using the link dialog. #TINY-4063
1255
+ - Fixed disabled menu items not highlighting when focused. #TINY-4339
1256
+ - Fixed touch events passing through dialog collection items to the content underneath on Android devices. #TINY-4431
1257
+ - Fixed keyboard navigation of the Help dialog's Keyboard Navigation tab. #TINY-4391
1258
+ - Fixed search and replace dialog disappearing when finding offscreen matches on iOS devices. #TINY-4350
1259
+ - Fixed performance issues where sticky toolbar was jumping while scrolling on slower browsers. #TINY-4475
1260
+
1261
+ ## 5.1.2 - 2019-11-19
1262
+
1263
+ ### Fixed
1264
+ - Fixed desktop touch devices using `mobile` configuration overrides. #TINY-4345
1265
+ - Fixed unable to disable the new scrolling toolbar feature. #TINY-4345
1266
+ - Fixed touch events passing through any pop-up items to the content underneath on Android devices. #TINY-4367
1267
+ - Fixed the table selector handles throwing JavaScript exceptions for non-table selections. #TINY-4338
1268
+ - Fixed `cut` operations not removing selected content on Android devices when the `paste` plugin is enabled. #TINY-4362
1269
+ - Fixed inline toolbar not constrained to the window width by default. #TINY-4314
1270
+ - Fixed context toolbar split button chevrons pointing right when they should be pointing down. #TINY-4257
1271
+ - Fixed unable to access the dialog footer in tabbed dialogs on small screens. #TINY-4360
1272
+ - Fixed mobile table selectors were hard to select with touch by increasing the size. #TINY-4366
1273
+ - Fixed mobile table selectors moving when moving outside the editor. #TINY-4366
1274
+ - Fixed inline toolbars collapsing when using sliding toolbars. #TINY-4389
1275
+ - Fixed block textpatterns not treating NBSPs as spaces. #TINY-4378
1276
+ - Fixed backspace not merging blocks when the last element in the preceding block was a `contenteditable="false"` element. #TINY-4235
1277
+ - Fixed toolbar buttons that only contain text labels overlapping on mobile devices. #TINY-4395
1278
+ - Fixed quickbars quickimage picker not working on mobile. #TINY-4377
1279
+ - Fixed fullscreen not resizing in an iOS WKWebView component. #TINY-4413
1280
+
1281
+ ## 5.1.1 - 2019-10-28
1282
+
1283
+ ### Fixed
1284
+ - Fixed font formats containing spaces being wrapped in `&quot;` entities instead of single quotes. #TINY-4275
1285
+ - Fixed alert and confirm dialogs losing focus when clicked. #TINY-4248
1286
+ - Fixed clicking outside a modal dialog focusing on the document body. #TINY-4249
1287
+ - Fixed the context toolbar not hiding when scrolled out of view. #TINY-4265
1288
+
1289
+ ## 5.1.0 - 2019-10-17
1290
+
1291
+ ### Added
1292
+ - Added touch selector handles for table selections on touch devices. #TINY-4097
1293
+ - Added border width field to Table Cell dialog. #TINY-4028
1294
+ - Added touch event listener to media plugin to make embeds playable. #TINY-4093
1295
+ - Added oxide styling options to notifications and tweaked the default variables. #TINY-4153
1296
+ - Added additional padding to split button chevrons on touch devices, to make them easier to interact with. #TINY-4223
1297
+ - Added new platform detection functions to `Env` and deprecated older detection properties. #TINY-4184
1298
+ - Added `inputMode` config field to specify inputmode attribute of `input` dialog components. #TINY-4062
1299
+ - Added new `inputMode` property to relevant plugins/dialogs. #TINY-4102
1300
+ - Added new `toolbar_sticky` setting to allow the iframe menubar/toolbar to stick to the top of the window when scrolling. #TINY-3982
1301
+
1302
+ ### Changed
1303
+ - Changed default setting for `toolbar_drawer` to `floating`. #TINY-3634
1304
+ - Changed mobile phones to use the `silver` theme by default. #TINY-3634
1305
+ - Changed some editor settings to default to `false` on touch devices:
1306
+ - `menubar`(phones only). #TINY-4077
1307
+ - `table_grid`. #TINY-4075
1308
+ - `resize`. #TINY-4157
1309
+ - `object_resizing`. #TINY-4157
1310
+ - Changed toolbars and context toolbars to sidescroll on mobile. #TINY-3894 #TINY-4107
1311
+ - Changed context menus to render as horizontal menus on touch devices. #TINY-4107
1312
+ - Changed the editor to use the `VisualViewport` API of the browser where possible. #TINY-4078
1313
+ - Changed visualblocks toolbar button icon and renamed `paragraph` icon to `visualchars`. #TINY-4074
1314
+ - Changed Oxide default for `@toolbar-button-chevron-color` to follow toolbar button icon color. #TINY-4153
1315
+ - Changed the `urlinput` dialog component to use the `url` type attribute. #TINY-4102
1316
+
1317
+ ### Fixed
1318
+ - Fixed Safari desktop visual viewport fires resize on fullscreen breaking the restore function. #TINY-3976
1319
+ - Fixed scroll issues on mobile devices. #TINY-3976
1320
+ - Fixed context toolbar unable to refresh position on iOS12. #TINY-4107
1321
+ - Fixed ctrl+left click not opening links on readonly mode and the preview dialog. #TINY-4138
1322
+ - Fixed Slider UI component not firing `onChange` event on touch devices. #TINY-4092
1323
+ - Fixed notifications overlapping instead of stacking. #TINY-3478
1324
+ - Fixed inline dialogs positioning incorrectly when the page is scrolled. #TINY-4018
1325
+ - Fixed inline dialogs and menus not repositioning when resizing. #TINY-3227
1326
+ - Fixed inline toolbar incorrectly stretching to the full width when a width value was provided. #TINY-4066
1327
+ - Fixed menu chevrons color to follow the menu text color. #TINY-4153
1328
+ - Fixed table menu selection grid from staying black when using dark skins, now follows border color. #TINY-4153
1329
+ - Fixed Oxide using the wrong text color variable for menubar button focused state. #TINY-4146
1330
+ - Fixed the autoresize plugin not keeping the selection in view when resizing. #TINY-4094
1331
+ - Fixed textpattern plugin throwing exceptions when using `forced_root_block: false`. #TINY-4172
1332
+ - Fixed missing CSS fill styles for toolbar button icon active state. #TINY-4147
1333
+ - Fixed an issue where the editor selection could end up inside a short ended element (such as `br`). #TINY-3999
1334
+ - Fixed browser selection being lost in inline mode when opening split dropdowns. #TINY-4197
1335
+ - Fixed backspace throwing an exception when using `forced_root_block: false`. #TINY-4099
1336
+ - Fixed floating toolbar drawer expanding outside the bounds of the editor. #TINY-3941
1337
+ - Fixed the autocompleter not activating immediately after a `br` or `contenteditable=false` element. #TINY-4194
1338
+ - Fixed an issue where the autocompleter would incorrectly close on IE 11 in certain edge cases. #TINY-4205
1339
+
1340
+ ## 5.0.16 - 2019-09-24
1341
+
1342
+ ### Added
1343
+ - Added new `referrer_policy` setting to add the `referrerpolicy` attribute when loading scripts or stylesheets. #TINY-3978
1344
+ - Added a slight background color to dialog tab links when focused to aid keyboard navigation. #TINY-3877
1345
+
1346
+ ### Fixed
1347
+ - Fixed media poster value not updating on change. #TINY-4013
1348
+ - Fixed openlink was not registered as a toolbar button. #TINY-4024
1349
+ - Fixed failing to initialize if a script tag was used inside a SVG. #TINY-4087
1350
+ - Fixed double top border showing on toolbar without menubar when toolbar_drawer is enabled. #TINY-4118
1351
+ - Fixed unable to drag inline dialogs to the bottom of the screen when scrolled. #TINY-4154
1352
+ - Fixed notifications appearing on top of the toolbar when scrolled in inline mode. #TINY-4159
1353
+ - Fixed notifications displaying incorrectly on IE 11. #TINY-4169
1354
+
1355
+ ## 5.0.15 - 2019-09-02
1356
+
1357
+ ### Added
1358
+ - Added a dark `content_css` skin to go with the dark UI skin. #TINY-3743
1359
+
1360
+ ### Changed
1361
+ - Changed the enabled state on toolbar buttons so they don't get the hover effect. #TINY-3974
1362
+
1363
+ ### Fixed
1364
+ - Fixed missing CSS active state on toolbar buttons. #TINY-3966
1365
+ - Fixed `onChange` callback not firing for the colorinput dialog component. #TINY-3968
1366
+ - Fixed context toolbars not showing in fullscreen mode. #TINY-4023
1367
+
1368
+ ## 5.0.14 - 2019-08-19
1369
+
1370
+ ### Added
1371
+ - Added an API to reload the autocompleter menu with additional fetch metadata #MENTIONS-17
1372
+
1373
+ ### Fixed
1374
+ - Fixed missing toolbar button border styling options. #TINY-3965
1375
+ - Fixed image upload progress notification closing before the upload is complete. #TINY-3963
1376
+ - Fixed inline dialogs not closing on escape when no dialog component is in focus. #TINY-3936
1377
+ - Fixed plugins not being filtered when defaulting to mobile on phones. #TINY-3537
1378
+ - Fixed toolbar more drawer showing the content behind it when transitioning between opened and closed states. #TINY-3878
1379
+ - Fixed focus not returning to the dialog after pressing the "Replace all" button in the search and replace dialog. #TINY-3961
1380
+
1381
+ ### Removed
1382
+ - Removed Oxide variable `@menubar-select-disabled-border-color` and replaced it with `@menubar-select-disabled-border`. #TINY-3965
1383
+
1384
+ ## 5.0.13 - 2019-08-06
1385
+
1386
+ ### Changed
1387
+ - Changed modal dialogs to prevent dragging by default and added new `draggable_modal` setting to restore dragging. #TINY-3873
1388
+ - Changed the nonbreaking plugin to insert nbsp characters wrapped in spans to aid in filtering. This can be disabled using the `nonbreaking_wrap` setting. #TINY-3647
1389
+ - Changed backspace behaviour in lists to outdent nested list items when the cursor is at the start of the list item. #TINY-3651
1390
+
1391
+ ### Fixed
1392
+ - Fixed sidebar growing beyond editor bounds in IE 11. #TINY-3937
1393
+ - Fixed issue with being unable to keyboard navigate disabled toolbar buttons. #TINY-3350
1394
+ - Fixed issues with backspace and delete in nested contenteditable true and false elements. #TINY-3868
1395
+ - Fixed issue with losing keyboard navigation in dialogs due to disabled buttons. #TINY-3914
1396
+ - Fixed `MouseEvent.mozPressure is deprecated` warning in Firefox. #TINY-3919
1397
+ - Fixed `default_link_target` not being respected when `target_list` is disabled. #TINY-3757
1398
+ - Fixed mobile plugin filter to only apply to the mobile theme, rather than all mobile platforms. #TINY-3405
1399
+ - Fixed focus switching to another editor during mode changes. #TINY-3852
1400
+ - Fixed an exception being thrown when clicking on an uninitialized inline editor. #TINY-3925
1401
+ - Fixed unable to keyboard navigate to dialog menu buttons. #TINY-3933
1402
+ - Fixed dialogs being able to be dragged outside the window viewport. #TINY-3787
1403
+ - Fixed inline dialogs appearing above modal dialogs. #TINY-3932
1404
+
1405
+ ## 5.0.12 - 2019-07-18
1406
+
1407
+ ### Added
1408
+ - Added ability to utilize UI dialog panels inside other panels. #TINY-3305
1409
+ - Added help dialog tab explaining keyboard navigation of the editor. #TINY-3603
1410
+
1411
+ ### Changed
1412
+ - Changed the "Find and Replace" design to an inline dialog. #TINY-3054
1413
+
1414
+ ### Fixed
1415
+ - Fixed issue where autolink spacebar event was not being fired on Edge. #TINY-3891
1416
+ - Fixed table selection missing the background color. #TINY-3892
1417
+ - Fixed removing shortcuts not working for function keys. #TINY-3871
1418
+ - Fixed non-descriptive UI component type names. #TINY-3349
1419
+ - Fixed UI registry components rendering as the wrong type when manually specifying a different type. #TINY-3385
1420
+ - Fixed an issue where dialog checkbox, input, selectbox, textarea and urlinput components couldn't be disabled. #TINY-3708
1421
+ - Fixed the context toolbar not using viable screen space in inline/distraction free mode. #TINY-3717
1422
+ - Fixed the context toolbar overlapping the toolbar in various conditions. #TINY-3205
1423
+ - Fixed IE11 edge case where items were being inserted into the wrong location. #TINY-3884
1424
+
1425
+ ## 5.0.11 - 2019-07-04
1426
+
1427
+ ### Fixed
1428
+ - Fixed packaging errors caused by a rollup treeshaking bug (https://github.com/rollup/rollup/issues/2970). #TINY-3866
1429
+ - Fixed the customeditor component not able to get data from the dialog api. #TINY-3866
1430
+ - Fixed collection component tooltips not being translated. #TINY-3855
1431
+
1432
+ ## 5.0.10 - 2019-07-02
1433
+
1434
+ ### Added
1435
+ - Added support for all HTML color formats in `color_map` setting. #TINY-3837
1436
+
1437
+ ### Changed
1438
+ - Changed backspace key handling to outdent content in appropriate circumstances. #TINY-3685
1439
+ - Changed default palette for forecolor and backcolor to include some lighter colors suitable for highlights. #TINY-2865
1440
+ - Changed the search and replace plugin to cycle through results. #TINY-3800
1441
+
1442
+ ### Fixed
1443
+ - Fixed inconsistent types causing some properties to be unable to be used in dialog components. #TINY-3778
1444
+ - Fixed an issue in the Oxide skin where dialog content like outlines and shadows were clipped because of overflow hidden. #TINY-3566
1445
+ - Fixed the search and replace plugin not resetting state when changing the search query. #TINY-3800
1446
+ - Fixed backspace in lists not creating an undo level. #TINY-3814
1447
+ - Fixed the editor to cancel loading in quirks mode where the UI is not supported. #TINY-3391
1448
+ - Fixed applying fonts not working when the name contained spaces and numbers. #TINY-3801
1449
+ - Fixed so that initial content is retained when initializing on list items. #TINY-3796
1450
+ - Fixed inefficient font name and font size current value lookup during rendering. #TINY-3813
1451
+ - Fixed mobile font copied into the wrong folder for the oxide-dark skin. #TINY-3816
1452
+ - Fixed an issue where resizing the width of tables would produce inaccurate results. #TINY-3827
1453
+ - Fixed a memory leak in the Silver theme. #TINY-3797
1454
+ - Fixed alert and confirm dialogs using incorrect markup causing inconsistent padding. #TINY-3835
1455
+ - Fixed an issue in the Table plugin with `table_responsive_width` not enforcing units when resizing. #TINY-3790
1456
+ - Fixed leading, trailing and sequential spaces being lost when pasting plain text. #TINY-3726
1457
+ - Fixed exception being thrown when creating relative URIs. #TINY-3851
1458
+ - Fixed focus is no longer set to the editor content during mode changes unless the editor already had focus. #TINY-3852
1459
+
1460
+ ## 5.0.9 - 2019-06-26
1461
+
1462
+ ### Fixed
1463
+ - Fixed print plugin not working in Firefox. #TINY-3834
1464
+
1465
+ ## 5.0.8 - 2019-06-18
1466
+
1467
+ ### Added
1468
+ - Added back support for multiple toolbars. #TINY-2195
1469
+ - Added support for .m4a files to the media plugin. #TINY-3750
1470
+ - Added new base_url and suffix editor init options. #TINY-3681
1471
+
1472
+ ### Fixed
1473
+ - Fixed incorrect padding for select boxes with visible values. #TINY-3780
1474
+ - Fixed selection incorrectly changing when programmatically setting selection on contenteditable false elements. #TINY-3766
1475
+ - Fixed sidebar background being transparent. #TINY-3727
1476
+ - Fixed the build to remove duplicate iife wrappers. #TINY-3689
1477
+ - Fixed bogus autocompleter span appearing in content when the autocompleter menu is shown. #TINY-3752
1478
+ - Fixed toolbar font size select not working with legacyoutput plugin. #TINY-2921
1479
+ - Fixed the legacyoutput plugin incorrectly aligning images. #TINY-3660
1480
+ - Fixed remove color not working when using the legacyoutput plugin. #TINY-3756
1481
+ - Fixed the font size menu applying incorrect sizes when using the legacyoutput plugin. #TINY-3773
1482
+ - Fixed scrollIntoView not working when the parent window was out of view. #TINY-3663
1483
+ - Fixed the print plugin printing from the wrong window in IE11. #TINY-3762
1484
+ - Fixed content CSS loaded over CORS not loading in the preview plugin with content_css_cors enabled. #TINY-3769
1485
+ - Fixed the link plugin missing the default "None" option for link list. #TINY-3738
1486
+ - Fixed small dot visible with menubar and toolbar disabled in inline mode. #TINY-3623
1487
+ - Fixed space key properly inserts a nbsp before/after block elements. #TINY-3745
1488
+ - Fixed native context menu not showing with images in IE11. #TINY-3392
1489
+ - Fixed inconsistent browser context menu image selection. #TINY-3789
1490
+
1491
+ ## 5.0.7 - 2019-06-05
1492
+
1493
+ ### Added
1494
+ - Added new toolbar button and menu item for inserting tables via dialog. #TINY-3636
1495
+ - Added new API for adding/removing/changing tabs in the Help dialog. #TINY-3535
1496
+ - Added highlighting of matched text in autocompleter items. #TINY-3687
1497
+ - Added the ability for autocompleters to work with matches that include spaces. #TINY-3704
1498
+ - Added new `imagetools_fetch_image` callback to allow custom implementations for cors loading of images. #TINY-3658
1499
+ - Added `'http'` and `https` options to `link_assume_external_targets` to prepend `http://` or `https://` prefixes when URL does not contain a protocol prefix. Patch contributed by francoisfreitag. #GH-4335
1500
+
1501
+ ### Changed
1502
+ - Changed annotations navigation to work the same as inline boundaries. #TINY-3396
1503
+ - Changed tabpanel API by adding a `name` field and changing relevant methods to use it. #TINY-3535
1504
+
1505
+ ### Fixed
1506
+ - Fixed text color not updating all color buttons when choosing a color. #TINY-3602
1507
+ - Fixed the autocompleter not working with fragmented text. #TINY-3459
1508
+ - Fixed the autosave plugin no longer overwrites window.onbeforeunload. #TINY-3688
1509
+ - Fixed infinite loop in the paste plugin when IE11 takes a long time to process paste events. Patch contributed by lRawd. #GH-4987
1510
+ - Fixed image handle locations when using `fixed_toolbar_container`. Patch contributed by t00. #GH-4966
1511
+ - Fixed the autoresize plugin not firing `ResizeEditor` events. #TINY-3587
1512
+ - Fixed editor in fullscreen mode not extending to the bottom of the screen. #TINY-3701
1513
+ - Fixed list removal when pressing backspace after the start of the list item. #TINY-3697
1514
+ - Fixed autocomplete not triggering from compositionend events. #TINY-3711
1515
+ - Fixed `file_picker_callback` could not set the caption field on the insert image dialog. #TINY-3172
1516
+ - Fixed the autocompleter menu showing up after a selection had been made. #TINY-3718
1517
+ - Fixed an exception being thrown when a file or number input has focus during initialization. Patch contributed by t00. #GH-2194
1518
+
1519
+ ## 5.0.6 - 2019-05-22
1520
+
1521
+ ### Added
1522
+ - Added `icons_url` editor settings to enable icon packs to be loaded from a custom url. #TINY-3585
1523
+ - Added `image_uploadtab` editor setting to control the visibility of the upload tab in the image dialog. #TINY-3606
1524
+ - Added new api endpoints to the wordcount plugin and improved character count logic. #TINY-3578
1525
+
1526
+ ### Changed
1527
+ - Changed plugin, language and icon loading errors to log in the console instead of a notification. #TINY-3585
1528
+
1529
+ ### Fixed
1530
+ - Fixed the textpattern plugin not working with fragmented text. #TINY-3089
1531
+ - Fixed various toolbar drawer accessibility issues and added an animation. #TINY-3554
1532
+ - Fixed issues with selection and ui components when toggling readonly mode. #TINY-3592
1533
+ - Fixed so readonly mode works with inline editors. #TINY-3592
1534
+ - Fixed docked inline toolbar positioning when scrolled. #TINY-3621
1535
+ - Fixed initial value not being set on bespoke select in quickbars and toolbar drawer. #TINY-3591
1536
+ - Fixed so that nbsp entities aren't trimmed in white-space: pre-line elements. #TINY-3642
1537
+ - Fixed `mceInsertLink` command inserting spaces instead of url encoded characters. #GH-4990
1538
+ - Fixed text content floating on top of dialogs in IE11. #TINY-3640
1539
+
1540
+ ## 5.0.5 - 2019-05-09
1541
+
1542
+ ### Added
1543
+ - Added menu items to match the forecolor/backcolor toolbar buttons. #TINY-2878
1544
+ - Added default directionality based on the configured language. #TINY-2621
1545
+ - Added styles, icons and tests for rtl mode. #TINY-2621
1546
+
1547
+ ### Fixed
1548
+ - Fixed autoresize not working with floating elements or when media elements finished loading. #TINY-3545
1549
+ - Fixed incorrect vertical caret positioning in IE 11. #TINY-3188
1550
+ - Fixed submenu anchoring hiding overflowed content. #TINY-3564
1551
+
1552
+ ### Removed
1553
+ - Removed unused and hidden validation icons to avoid displaying phantom tooltips. #TINY-2329
1554
+
1555
+ ## 5.0.4 - 2019-04-23
1556
+
1557
+ ### Added
1558
+ - Added back URL dialog functionality, which is now available via `editor.windowManager.openUrl()`. #TINY-3382
1559
+ - Added the missing throbber functionality when calling `editor.setProgressState(true)`. #TINY-3453
1560
+ - Added function to reset the editor content and undo/dirty state via `editor.resetContent()`. #TINY-3435
1561
+ - Added the ability to set menu buttons as active. #TINY-3274
1562
+ - Added `editor.mode` API, featuring a custom editor mode API. #TINY-3406
1563
+ - Added better styling to floating toolbar drawer. #TINY-3479
1564
+ - Added the new premium plugins to the Help dialog plugins tab. #TINY-3496
1565
+ - Added the linkchecker context menu items to the default configuration. #TINY-3543
1566
+
1567
+ ### Fixed
1568
+ - Fixed image context menu items showing on placeholder images. #TINY-3280
1569
+ - Fixed dialog labels and text color contrast within notifications/alert banners to satisfy WCAG 4.5:1 contrast ratio for accessibility. #TINY-3351
1570
+ - Fixed selectbox and colorpicker items not being translated. #TINY-3546
1571
+ - Fixed toolbar drawer sliding mode to correctly focus the editor when tabbing via keyboard navigation. #TINY-3533
1572
+ - Fixed positioning of the styleselect menu in iOS while using the mobile theme. #TINY-3505
1573
+ - Fixed the menubutton `onSetup` callback to be correctly executed when rendering the menu buttons. #TINY-3547
1574
+ - Fixed `default_link_target` setting to be correctly utilized when creating a link. #TINY-3508
1575
+ - Fixed colorpicker floating marginally outside its container. #TINY-3026
1576
+ - Fixed disabled menu items displaying as active when hovered. #TINY-3027
1577
+
1578
+ ### Removed
1579
+ - Removed redundant mobile wrapper. #TINY-3480
1580
+
1581
+ ## 5.0.3 - 2019-03-19
1582
+
1583
+ ### Changed
1584
+ - Changed empty nested-menu items within the style formats menu to be disabled or hidden if the value of `style_formats_autohide` is `true`. #TINY-3310
1585
+ - Changed the entire phrase 'Powered by Tiny' in the status bar to be a link instead of just the word 'Tiny'. #TINY-3366
1586
+ - Changed `formatselect`, `styleselect` and `align` menus to use the `mceToggleFormat` command internally. #TINY-3428
1587
+
1588
+ ### Fixed
1589
+ - Fixed toolbar keyboard navigation to work as expected when `toolbar_drawer` is configured. #TINY-3432
1590
+ - Fixed text direction buttons to display the correct pressed state in selections that have no explicit `dir` property. #TINY-3138
1591
+ - Fixed the mobile editor to clean up properly when removed. #TINY-3445
1592
+ - Fixed quickbar toolbars to add an empty box to the screen when it is set to `false`. #TINY-3439
1593
+ - Fixed an issue where pressing the **Delete/Backspace** key at the edge of tables was creating incorrect selections. #TINY-3371
1594
+ - Fixed an issue where dialog collection items (emoticon and special character dialogs) couldn't be selected with touch devices. #TINY-3444
1595
+ - Fixed a type error introduced in TinyMCE version 5.0.2 when calling `editor.getContent()` with nested bookmarks. #TINY-3400
1596
+ - Fixed an issue that prevented default icons from being overridden. #TINY-3449
1597
+ - Fixed an issue where **Home/End** keys wouldn't move the caret correctly before or after `contenteditable=false` inline elements. #TINY-2995
1598
+ - Fixed styles to be preserved in IE 11 when editing via the `fullpage` plugin. #TINY-3464
1599
+ - Fixed the `link` plugin context toolbar missing the open link button. #TINY-3461
1600
+ - Fixed inconsistent dialog component spacing. #TINY-3436
1601
+
1602
+ ## 5.0.2 - 2019-03-05
1603
+
1604
+ ### Added
1605
+ - Added presentation and document presets to `htmlpanel` dialog component. #TINY-2694
1606
+ - Added missing fixed_toolbar_container setting has been reimplemented in the Silver theme. #TINY-2712
1607
+ - Added a new toolbar setting `toolbar_drawer` that moves toolbar groups which overflow the editor width into either a `sliding` or `floating` toolbar section. #TINY-2874
1608
+
1609
+ ### Changed
1610
+ - Updated the build process to include package lock files in the dev distribution archive. #TINY-2870
1611
+
1612
+ ### Fixed
1613
+ - Fixed inline dialogs did not have aria attributes. #TINY-2694
1614
+ - Fixed default icons are now available in the UI registry, allowing use outside of toolbar buttons. #TINY-3307
1615
+ - Fixed a memory leak related to select toolbar items. #TINY-2874
1616
+ - Fixed a memory leak due to format changed listeners that were never unbound. #TINY-3191
1617
+ - Fixed an issue where content may have been lost when using permanent bookmarks. #TINY-3400
1618
+ - Fixed the quicklink toolbar button not rendering in the quickbars plugin. #TINY-3125
1619
+ - Fixed an issue where menus were generating invalid HTML in some cases. #TINY-3323
1620
+ - Fixed an issue that could cause the mobile theme to show a blank white screen when the editor was inside an `overflow:hidden` element. #TINY-3407
1621
+ - Fixed mobile theme using a transparent background and not taking up the full width on iOS. #TINY-3414
1622
+ - Fixed the template plugin dialog missing the description field. #TINY-3337
1623
+ - Fixed input dialog components using an invalid default type attribute. #TINY-3424
1624
+ - Fixed an issue where backspace/delete keys after/before pagebreak elements wouldn't move the caret. #TINY-3097
1625
+ - Fixed an issue in the table plugin where menu items and toolbar buttons weren't showing correctly based on the selection. #TINY-3423
1626
+ - Fixed inconsistent button focus styles in Firefox. #TINY-3377
1627
+ - Fixed the resize icon floating left when all status bar elements were disabled. #TINY-3340
1628
+ - Fixed the resize handle to not show in fullscreen mode. #TINY-3404
1629
+
1630
+ ## 5.0.1 - 2019-02-21
1631
+
1632
+ ### Added
1633
+ - Added H1-H6 toggle button registration to the silver theme. #TINY-3070
1634
+ - Added code sample toolbar button will now toggle on when the cursor is in a code section. #TINY-3040
1635
+ - Added new settings to the emoticons plugin to allow additional emoticons to be added. #TINY-3088
1636
+
1637
+ ### Fixed
1638
+ - Fixed an issue where adding links to images would replace the image with text. #TINY-3356
1639
+ - Fixed an issue where the inline editor could use fractional pixels for positioning. #TINY-3202
1640
+ - Fixed an issue where uploading non-image files in the Image Plugin upload tab threw an error. #TINY-3244
1641
+ - Fixed an issue in the media plugin that was causing the source url and height/width to be lost in certain circumstances. #TINY-2858
1642
+ - Fixed an issue with the Context Toolbar not being removed when clicking outside of the editor. #TINY-2804
1643
+ - Fixed an issue where clicking 'Remove link' wouldn't remove the link in certain circumstances. #TINY-3199
1644
+ - Fixed an issue where the media plugin would fail when parsing dialog data. #TINY-3218
1645
+ - Fixed an issue where retrieving the selected content as text didn't create newlines. #TINY-3197
1646
+ - Fixed incorrect keyboard shortcuts in the Help dialog for Windows. #TINY-3292
1647
+ - Fixed an issue where JSON serialization could produce invalid JSON. #TINY-3281
1648
+ - Fixed production CSS including references to source maps. #TINY-3920
1649
+ - Fixed development CSS was not included in the development zip. #TINY-3920
1650
+ - Fixed the autocompleter matches predicate not matching on the start of words by default. #TINY-3306
1651
+ - Fixed an issue where the page could be scrolled with modal dialogs open. #TINY-2252
1652
+ - Fixed an issue where autocomplete menus would show an icon margin when no items had icons. #TINY-3329
1653
+ - Fixed an issue in the quickbars plugin where images incorrectly showed the text selection toolbar. #TINY-3338
1654
+ - Fixed an issue that caused the inline editor to fail to render when the target element already had focus. #TINY-3353
1655
+
1656
+ ### Removed
1657
+ - Removed paste as text notification banner and paste_plaintext_inform setting. #POW-102
1658
+
1659
+ ## 5.0.0 - 2019-02-04
1660
+
1661
+ Full documentation for the version 5 features and changes is available at https://www.tiny.cloud/docs/tinymce/5/release-notes/release-notes50/
1662
+
1663
+ ### Added
1664
+ - Added links and registered names with * to denote premium plugins in Plugins tab of Help dialog. #TINY-3223
1665
+
1666
+ ### Changed
1667
+ - Changed Tiny 5 mobile skin to look more uniform with desktop. #TINY-2650
1668
+ - Blacklisted table, th and td as inline editor target. #TINY-717
1669
+
1670
+ ### Fixed
1671
+ - Fixed an issue where tab panel heights weren't sizing properly on smaller screens and weren't updating on resize. #TINY-3242
1672
+ - Fixed image tools not having any padding between the label and slider. #TINY-3220
1673
+ - Fixed context toolbar toggle buttons not showing the correct state. #TINY-3022
1674
+ - Fixed missing separators in the spellchecker context menu between the suggestions and actions. #TINY-3217
1675
+ - Fixed notification icon positioning in alert banners. #TINY-2196
1676
+ - Fixed a typo in the word count plugin name. #TINY-3062
1677
+ - Fixed charmap and emoticons dialogs not having a primary button. #TINY-3233
1678
+ - Fixed an issue where resizing wouldn't work correctly depending on the box-sizing model. #TINY-3278
1679
+
1680
+ ## 5.0.0-rc-2 - 2019-01-22
1681
+
1682
+ ### Added
1683
+ - Added screen reader accessibility for sidebar and statusbar. #TINY-2699
1684
+
1685
+ ### Changed
1686
+ - Changed formatting menus so they are registered and made the align toolbar button use an icon instead of text. #TINY-2880
1687
+ - Changed checkboxes to use a boolean for its state, instead of a string. #TINY-2848
1688
+ - Updated the textpattern plugin to properly support nested patterns and to allow running a command with a value for a pattern with a start and an end. #TINY-2991
1689
+ - Updated Emoticons and Charmap dialogs to be screen reader accessible. #TINY-2693
1690
+
1691
+ ### Fixed
1692
+ - Fixed the link dialog such that it will now retain class attributes when updating links. #TINY-2825
1693
+ - Fixed "Find and replace" not showing in the "Edit" menu by default. #TINY-3061
1694
+ - Fixed dropdown buttons missing the 'type' attribute, which could cause forms to be incorrectly submitted. #TINY-2826
1695
+ - Fixed emoticon and charmap search not returning expected results in certain cases. #TINY-3084
1696
+ - Fixed blank rel_list values throwing an exception in the link plugin. #TINY-3149
1697
+
1698
+ ### Removed
1699
+ - Removed unnecessary 'flex' and unused 'colspan' properties from the new dialog APIs. #TINY-2973
1700
+
1701
+ ## 5.0.0-rc-1 - 2019-01-08
1702
+
1703
+ ### Added
1704
+ - Added editor settings functionality to specify title attributes for toolbar groups. #TINY-2690
1705
+ - Added icons instead of button text to improve Search and Replace dialog footer appearance. #TINY-2654
1706
+ - Added `tox-dialog__table` instead of `mce-table-striped` class to enhance Help dialog appearance. #TINY-2360
1707
+ - Added title attribute to iframes so, screen readers can announce iframe labels. #TINY-2692
1708
+ - Added a wordcount menu item, that defaults to appearing in the tools menu. #TINY-2877
1709
+
1710
+ ### Changed
1711
+ - Updated the font select dropdown logic to try to detect the system font stack and show "System Font" as the font name. #TINY-2710
1712
+ - Updated the autocompleter to only show when it has matched items. #TINY-2350
1713
+ - Updated SizeInput labels to "Height" and "Width" instead of Dimensions. #TINY-2833
1714
+ - Updated the build process to minify and generate ASCII only output for the emoticons database. #TINY-2744
1715
+
1716
+ ### Fixed
1717
+ - Fixed readonly mode not fully disabling editing content. #TINY-2287
1718
+ - Fixed accessibility issues with the font select, font size, style select and format select toolbar dropdowns. #TINY-2713
1719
+ - Fixed accessibility issues with split dropdowns. #TINY-2697
1720
+ - Fixed the legacyoutput plugin to be compatible with TinyMCE 5.0. #TINY-2301
1721
+ - Fixed icons not showing correctly in the autocompleter popup. #TINY-3029
1722
+ - Fixed an issue where preview wouldn't show anything in Edge under certain circumstances. #TINY-3035
1723
+ - Fixed the height being incorrectly calculated for the autoresize plugin. #TINY-2807
1724
+
1725
+ ## 5.0.0-beta-1 - 2018-11-30
1726
+
1727
+ ### Added
1728
+ - Added a new `addNestedMenuItem()` UI registry function and changed all nested menu items to use the new registry functions. #TINY-2230
1729
+ - Added title attribute to color swatch colors. #TINY-2669
1730
+ - Added anchorbar component to anchor inline toolbar dialogs to instead of the toolbar. #TINY-2040
1731
+ - Added support for toolbar<n> and toolbar array config options to be squashed into a single toolbar and not create multiple toolbars. #TINY-2195
1732
+ - Added error handling for when forced_root_block config option is set to true. #TINY-2261
1733
+ - Added functionality for the removed_menuitems config option. #TINY-2184
1734
+ - Added the ability to use a string to reference menu items in menu buttons and submenu items. #TINY-2253
1735
+
1736
+ ### Changed
1737
+ - Changed the name of the "inlite" plugin to "quickbars". #TINY-2831
1738
+ - Changed the background color icon to highlight background icon. #TINY-2258
1739
+ - Changed Help dialog to be accessible to screen readers. #TINY-2687
1740
+ - Changed the color swatch to save selected custom colors to local storage for use across sessions. #TINY-2722
1741
+ - Changed `WindowManager` API - methods `getParams`, `setParams` and `getWindows`, and the legacy `windows` property, have been removed. `alert` and `confirm` dialogs are no longer tracked in the window list. #TINY-2603
1742
+
1743
+ ### Fixed
1744
+ - Fixed an inline mode issue where the save plugin upon saving can cause content loss. #TINY-2659
1745
+ - Fixed an issue in IE 11 where calling selection.getContent() would return an empty string when the editor didn't have focus. #TINY-2325
1746
+
1747
+ ### Removed
1748
+ - Removed compat3x plugin. #TINY-2815
1749
+
1750
+ ## 5.0.0-preview-4 - 2018-11-12
1751
+
1752
+ ### Added
1753
+ - Added width and height placeholder text to image and media dialog dimensions input. #AP-296
1754
+ - Added the ability to keyboard navigate through menus, toolbars, sidebar and the status bar sequentially. #AP-381
1755
+ - Added translation capability back to the editor's UI. #AP-282
1756
+ - Added `label` component type for dialogs to group components under a label.
1757
+
1758
+ ### Changed
1759
+ - Changed the editor resize handle so that it should be disabled when the autoresize plugin is turned on. #AP-424
1760
+ - Changed UI text for microcopy improvements. #TINY-2281
1761
+
1762
+ ### Fixed
1763
+ - Fixed distraction free plugin. #AP-470
1764
+ - Fixed contents of the input field being selected on focus instead of just recieving an outline highlight. #AP-464
1765
+ - Fixed styling issues with dialogs and menus in IE 11. #AP-456
1766
+ - Fixed custom style format control not honoring custom formats. #AP-393
1767
+ - Fixed context menu not appearing when clicking an image with a caption. #AP-382
1768
+ - Fixed directionality of UI when using an RTL language. #AP-423
1769
+ - Fixed page responsiveness with multiple inline editors. #AP-430
1770
+ - Fixed empty toolbar groups appearing through invalid configuration of the `toolbar` property. #AP-450
1771
+ - Fixed text not being retained when updating links through the link dialog. #AP-293
1772
+ - Fixed edit image context menu, context toolbar and toolbar items being incorrectly enabled when selecting invalid images. #AP-323
1773
+ - Fixed emoji type ahead being shown when typing URLs. #AP-366
1774
+ - Fixed toolbar configuration properties incorrectly expecting string arrays instead of strings. #AP-342
1775
+ - Fixed the block formatting toolbar item not showing a "Formatting" title when there is no selection. #AP-321
1776
+ - Fixed clicking disabled toolbar buttons hiding the toolbar in inline mode. #AP-380
1777
+ - Fixed `EditorResize` event not being fired upon editor resize. #AP-327
1778
+ - Fixed tables losing styles when updating through the dialog. #AP-368
1779
+ - Fixed context toolbar positioning to be more consistent near the edges of the editor. #AP-318
1780
+ - Fixed table of contents plugin now works with v5 toolbar APIs correctly. #AP-347
1781
+ - Fixed the `link_context_toolbar` configuration not disabling the context toolbar. #AP-458
1782
+ - Fixed the link context toolbar showing incorrect relative links. #AP-435
1783
+ - Fixed the alignment of the icon in alert banner dialog components. #TINY-2220
1784
+ - Fixed the visual blocks and visual char menu options not displaying their toggled state. #TINY-2238
1785
+ - Fixed the editor not displaying as fullscreen when toggled. #TINY-2237
1786
+
1787
+ ### Removed
1788
+ - Removed the tox-custom-editor class that was added to the wrapping element of codemirror. #TINY-2211
1789
+
1790
+ ## 5.0.0-preview-3 - 2018-10-18
1791
+
1792
+ ### Changed
1793
+ - Changed editor layout to use modern CSS properties over manually calculating dimensions. #AP-324
1794
+ - Changed `autoresize_min_height` and `autoresize_max_height` configurations to `min_height` and `max_height`. #AP-324
1795
+ - Changed `Whole word` label in Search and Replace dialog to `Find whole words only`. #AP-387
1796
+
1797
+ ### Fixed
1798
+ - Fixed bugs with editor width jumping when resizing and the iframe not resizing to smaller than 150px in height. #AP-324
1799
+ - Fixed mobile theme bug that prevented the editor from loading. #AP-404
1800
+ - Fixed long toolbar groups extending outside of the editor instead of wrapping.
1801
+ - Fixed dialog titles so they are now proper case. #AP-384
1802
+ - Fixed color picker default to be #000000 instead of #ff00ff. #AP-216
1803
+ - Fixed "match case" option on the Find and Replace dialog is no longer selected by default. #AP-298
1804
+ - Fixed vertical alignment of toolbar icons. #DES-134
1805
+ - Fixed toolbar icons not appearing on IE11. #DES-133
1806
+
1807
+ ## 5.0.0-preview-2 - 2018-10-10
1808
+
1809
+ ### Added
1810
+ - Added swatch is now shown for colorinput fields, instead of the colorpicker directly. #AP-328
1811
+ - Added fontformats and fontsizes menu items. #AP-390
1812
+
1813
+ ### Changed
1814
+ - Changed configuration of color options has been simplified to `color_map`, `color_cols`, and `custom_colors`. #AP-328
1815
+ - Changed `height` configuration to apply to the editor frame (including menubar, toolbar, status bar) instead of the content area. #AP-324
1816
+
1817
+ ### Fixed
1818
+ - Fixed styleselect not updating the displayed item as the cursor moved. #AP-388
1819
+ - Fixed preview iframe not expanding to the dialog size. #AP-252
1820
+ - Fixed 'meta' shortcuts not translated into platform-specific text. #AP-270
1821
+ - Fixed tabbed dialogs (Charmap and Emoticons) shrinking when no search results returned.
1822
+ - Fixed a bug where alert banner icons were not retrieved from icon pack. #AP-330
1823
+ - Fixed component styles to flex so they fill large dialogs. #AP-252
1824
+ - Fixed editor flashing unstyled during load (still in progress). #AP-349
1825
+
1826
+ ### Removed
1827
+ - Removed `colorpicker` plugin, it is now in the theme. #AP-328
1828
+ - Removed `textcolor` plugin, it is now in the theme. #AP-328
1829
+
1830
+ ## 5.0.0-preview-1 - 2018-10-01
1831
+
1832
+ Developer preview 1.
1833
+
1834
+ Initial list of features and changes is available at https://www.tiny.cloud/docs/tinymce/5/release-notes/release-notes50/.
1835
+
1836
+ ## 4.9.11 - 2020-07-13
1837
+
1838
+ ### Fixed
1839
+ - Fixed the `selection.setContent()` API not running parser filters. #TINY-4002
1840
+ - Fixed content in an iframe element parsing as DOM elements instead of text content. #TINY-5943
1841
+ - Fixed up and down keyboard navigation not working for inline `contenteditable="false"` elements. #TINY-6226
1842
+
1843
+ ## 4.9.10 - 2020-04-23
1844
+
1845
+ ### Fixed
1846
+ - Fixed an issue where the editor selection could end up inside a short ended element (eg br). #TINY-3999
1847
+ - Fixed a security issue related to CDATA sanitization during parsing. #TINY-4669
1848
+ - Fixed `media` embed content not processing safely in some cases. #TINY-4857
1849
+
1850
+ ## 4.9.9 - 2020-03-25
1851
+
1852
+ ### Fixed
1853
+ - Fixed the table selection not functioning correctly in Microsoft Edge 44 or higher. #TINY-3862
1854
+ - Fixed the table resize handles not functioning correctly in Microsoft Edge 44 or higher. #TINY-4160
1855
+ - Fixed the `forced_root_block_attrs` setting not applying attributes to new blocks consistently. #TINY-4564
1856
+ - Fixed the editor failing to initialize if a script tag was used inside an SVG. #TINY-4087
1857
+
1858
+ ## 4.9.8 - 2020-01-28
1859
+
1860
+ ### Fixed
1861
+ - Fixed the `mobile` theme failing to load due to a bundling issue. #TINY-4613
1862
+ - Fixed security issue related to parsing HTML comments and CDATA. #TINY-4544
1863
+
1864
+ ## 4.9.7 - 2019-12-19
1865
+
1866
+ ### Fixed
1867
+ - Fixed the `visualchars` plugin converting HTML-like text to DOM elements in certain cases. #TINY-4507
1868
+ - Fixed an issue with the `paste` plugin not sanitizing content in some cases. #TINY-4510
1869
+ - Fixed HTML comments incorrectly being parsed in certain cases. #TINY-4511
1870
+
1871
+ ## 4.9.6 - 2019-09-02
1872
+
1873
+ ### Fixed
1874
+ - Fixed image browse button sometimes displaying the browse window twice. #TINY-3959
1875
+
1876
+ ## 4.9.5 - 2019-07-02
1877
+
1878
+ ### Changed
1879
+ - Changed annotations navigation to work the same as inline boundaries. #TINY-3396
1880
+
1881
+ ### Fixed
1882
+ - Fixed the print plugin printing from the wrong window in IE11. #TINY-3762
1883
+ - Fixed an exception being thrown when a file or number input has focus during initialization. Patch contributed by t00. #GH-2194
1884
+ - Fixed positioning of the styleselect menu in iOS while using the mobile theme. #TINY-3505
1885
+ - Fixed native context menu not showing with images in IE11. #TINY-3392
1886
+ - Fixed selection incorrectly changing when programmatically setting selection on contenteditable false elements. #TINY-3766
1887
+ - Fixed image browse button not working on touch devices. #TINY-3751
1888
+ - Fixed so that nbsp entities aren't trimmed in white-space: pre-line elements. #TINY-3642
1889
+ - Fixed space key properly inserts a nbsp before/after block elements. #TINY-3745
1890
+ - Fixed infinite loop in the paste plugin when IE11 takes a long time to process paste events. Patch contributed by lRawd. #GH-4987
1891
+
1892
+ ## 4.9.4 - 2019-03-20
1893
+
1894
+ ### Fixed
1895
+ - Fixed an issue where **Home/End** keys wouldn't move the caret correctly before or after `contenteditable=false` inline elements. #TINY-2995
1896
+ - Fixed an issue where content may have been lost when using permanent bookmarks. #TINY-3400
1897
+ - Fixed the mobile editor to clean up properly when removed. #TINY-3445
1898
+ - Fixed an issue where retrieving the selected content as text didn't create newlines. #TINY-3197
1899
+ - Fixed an issue where typing space between images would cause issues with nbsp not being inserted. #TINY-3346
1900
+
1901
+ ## 4.9.3 - 2019-01-31
1902
+
1903
+ ### Added
1904
+ - Added a visualchars_default_state setting to the Visualchars Plugin. Patch contributed by mat3e.
1905
+
1906
+ ### Fixed
1907
+ - Fixed a bug where scrolling on a page with more than one editor would cause a ResizeWindow event to fire. #TINY-3247
1908
+ - Fixed a bug where if a plugin threw an error during initialisation the whole editor would fail to load. #TINY-3243
1909
+ - Fixed a bug where getContent would include bogus elements when valid_elements setting was set up in a specific way. #TINY-3213
1910
+ - Fixed a bug where only a few function key names could be used when creating keyboard shortcuts. #TINY-3146
1911
+ - Fixed a bug where it wasn't possible to enter spaces into an editor after pressing shift+enter. #TINY-3099
1912
+ - Fixed a bug where no caret would be rendered after backspacing to a contenteditable false element. #TINY-2998
1913
+ - Fixed a bug where deletion to/from indented lists would leave list fragments in the editor. #TINY-2981
1914
+
1915
+ ## 4.9.2 - 2018-12-17
1916
+
1917
+ ### Fixed
1918
+ - Fixed a bug with pressing the space key on IE 11 would result in nbsp characters being inserted between words at the end of a block. #TINY-2996
1919
+ - Fixed a bug where character composition using quote and space on US International keyboards would produce a space instead of a quote. #TINY-2999
1920
+ - Fixed a bug where remove format wouldn't remove the inner most inline element in some situations. #TINY-2982
1921
+ - Fixed a bug where outdenting an list item would affect attributes on other list items within the same list. #TINY-2971
1922
+ - Fixed a bug where the DomParser filters wouldn't be applied for elements created when parsing invalid html. #TINY-2978
1923
+ - Fixed a bug where setProgressState wouldn't automatically close floating ui elements like menus. #TINY-2896
1924
+ - Fixed a bug where it wasn't possible to navigate out of a figcaption element using the arrow keys. #TINY-2894
1925
+ - Fixed a bug where enter key before an image inside a link would remove the image. #TINY-2780
1926
+
1927
+ ## 4.9.1 - 2018-12-04
1928
+
1929
+ ### Added
1930
+ - Added functionality to insert html to the replacement feature of the Textpattern Plugin. #TINY-2839
1931
+
1932
+ ### Fixed
1933
+ - Fixed a bug where `editor.selection.getContent({format: 'text'})` didn't work as expected in IE11 on an unfocused editor. #TINY-2862
1934
+ - Fixed a bug in the Textpattern Plugin where the editor would get an incorrect selection after inserting a text pattern on Safari. #TINY-2838
1935
+ - Fixed a bug where the space bar didn't work correctly in editors with the forced_root_block setting set to false. #TINY-2816
1936
+
1937
+ ## 4.9.0 - 2018-11-27
1938
+
1939
+ ### Added
1940
+ - Added a replace feature to the Textpattern Plugin. #TINY-1908
1941
+ - Added functionality to the Lists Plugin that improves the indentation logic. #TINY-1790
1942
+
1943
+ ### Fixed
1944
+ - Fixed a bug where it wasn't possible to delete/backspace when the caret was between a contentEditable=false element and a BR. #TINY-2372
1945
+ - Fixed a bug where copying table cells without a text selection would fail to copy anything. #TINY-1789
1946
+ - Implemented missing `autosave_restore_when_empty` functionality in the Autosave Plugin. Patch contributed by gzzo. #GH-4447
1947
+ - Reduced insertion of unnecessary nonbreaking spaces in the editor. #TINY-1879
1948
+
1949
+ ## 4.8.5 - 2018-10-30
1950
+
1951
+ ### Added
1952
+ - Added a content_css_cors setting to the editor that adds the crossorigin="anonymous" attribute to link tags added by the StyleSheetLoader. #TINY-1909
1953
+
1954
+ ### Fixed
1955
+ - Fixed a bug where trying to remove formatting with a collapsed selection range would throw an exception. #GH-4636
1956
+ - Fixed a bug in the image plugin that caused updating figures to split contenteditable elements. #GH-4563
1957
+ - Fixed a bug that was causing incorrect viewport calculations for fixed position UI elements. #TINY-1897
1958
+ - Fixed a bug where inline formatting would cause the delete key to do nothing. #TINY-1900
1959
+
1960
+ ## 4.8.4 - 2018-10-23
1961
+
1962
+ ### Added
1963
+ - Added support for the HTML5 `main` element. #TINY-1877
1964
+
1965
+ ### Changed
1966
+ - Changed the keyboard shortcut to move focus to contextual toolbars to Ctrl+F9. #TINY-1812
1967
+
1968
+ ### Fixed
1969
+ - Fixed a bug where content css could not be loaded from another domain. #TINY-1891
1970
+ - Fixed a bug on FireFox where the cursor would get stuck between two contenteditable false inline elements located inside of the same block element divided by a BR. #TINY-1878
1971
+ - Fixed a bug with the insertContent method where nonbreaking spaces would be inserted incorrectly. #TINY-1868
1972
+ - Fixed a bug where the toolbar of the inline editor would not be visible in some scenarios. #TINY-1862
1973
+ - Fixed a bug where removing the editor while more than one notification was open would throw an error. #TINY-1845
1974
+ - Fixed a bug where the menubutton would be rendered on top of the menu if the viewport didn't have enough height. #TINY-1678
1975
+ - Fixed a bug with the annotations api where annotating collapsed selections caused problems. #TBS-2449
1976
+ - Fixed a bug where wbr elements were being transformed into whitespace when using the Paste Plugin's paste as text setting. #GH-4638
1977
+ - Fixed a bug where the Search and Replace didn't replace spaces correctly. #GH-4632
1978
+ - Fixed a bug with sublist items not persisting selection. #GH-4628
1979
+ - Fixed a bug with mceInsertRawHTML command not working as expected. #GH-4625
1980
+
1981
+ ## 4.8.3 - 2018-09-13
1982
+
1983
+ ### Fixed
1984
+ - Fixed a bug where the Wordcount Plugin didn't correctly count words within tables on IE11. #TINY-1770
1985
+ - Fixed a bug where it wasn't possible to move the caret out of a table on IE11 and Firefox. #TINY-1682
1986
+ - Fixed a bug where merging empty blocks didn't work as expected, sometimes causing content to be deleted. #TINY-1781
1987
+ - Fixed a bug where the Textcolor Plugin didn't show the correct current color. #TINY-1810
1988
+ - Fixed a bug where clear formatting with a collapsed selection would sometimes clear formatting from more content than expected. #TINY-1813 #TINY-1821
1989
+ - Fixed a bug with the Table Plugin where it wasn't possible to keyboard navigate to the caption. #TINY-1818
1990
+
1991
+ ## 4.8.2 - 2018-08-09
1992
+
1993
+ ### Changed
1994
+ - Moved annotator from "experimental" to "annotator" object on editor. #TBS-2398
1995
+ - Improved the multiclick normalization across browsers. #TINY-1788
1996
+
1997
+ ### Fixed
1998
+ - Fixed a bug where running getSelectedBlocks with a collapsed selection between block elements would produce incorrect results. #TINY-1787
1999
+ - Fixed a bug where the ScriptLoaders loadScript method would not work as expected in FireFox when loaded on the same page as a ShadowDOM polyfill. #TINY-1786
2000
+ - Removed reference to ShadowDOM event.path as Blink based browsers now support event.composedPath. #TINY-1785
2001
+ - Fixed a bug where a reference to localStorage would throw an "access denied" error in IE11 with strict security settings. #TINY-1782
2002
+ - Fixed a bug where pasting using the toolbar button on an inline editor in IE11 would cause a looping behaviour. #TINY-1768
2003
+
2004
+ ## 4.8.1 - 2018-07-26
2005
+
2006
+ ### Fixed
2007
+ - Fixed a bug where the content of inline editors was being cleaned on every call of `editor.save()`. #TINY-1783
2008
+ - Fixed a bug where the arrow of the Inlite Theme toolbar was being rendered incorrectly in RTL mode. #TINY-1776
2009
+ - Fixed a bug with the Paste Plugin where pasting after inline contenteditable false elements moved the caret to the end of the line. #TINY-1758
2010
+
2011
+ ## 4.8.0 - 2018-06-27
2012
+
2013
+ ### Added
2014
+ - Added new "experimental" object in editor, with initial Annotator API. #TBS-2374
2015
+
2016
+ ### Fixed
2017
+ - Fixed a bug where deleting paragraphs inside of table cells would delete the whole table cell. #TINY-1759
2018
+ - Fixed a bug in the Table Plugin where removing row height set on the row properties dialog did not update the table. #TINY-1730
2019
+ - Fixed a bug with the font select toolbar item didn't update correctly. #TINY-1683
2020
+ - Fixed a bug where all bogus elements would not be deleted when removing an inline editor. #TINY-1669
2021
+
2022
+ ## 4.7.13 - 2018-05-16
2023
+
2024
+ ### Added
2025
+ - Added missing code menu item from the default menu config. #TINY-1648
2026
+ - Added new align button for combining the separate align buttons into a menu button. #TINY-1652
2027
+
2028
+ ### Fixed
2029
+ - Fixed a bug where Edge 17 wouldn't be able to select images or tables. #TINY-1679
2030
+ - Fixed issue where whitespace wasn't preserved when the editor was initialized on pre elements. #TINY-1649
2031
+ - Fixed a bug with the fontselect dropdowns throwing an error if the editor was hidden in Firefox. #TINY-1664
2032
+ - Fixed a bug where it wasn't possible to merge table cells on IE 11. #TINY-1671
2033
+ - Fixed a bug where textcolor wasn't applying properly on IE 11 in some situations. #TINY-1663
2034
+ - Fixed a bug where the justifyfull command state wasn't working correctly. #TINY-1677
2035
+ - Fixed a bug where the styles wasn't updated correctly when resizing some tables. #TINY-1668
2036
+
2037
+ ## 4.7.12 - 2018-05-03
2038
+
2039
+ ### Added
2040
+ - Added an option to filter out image svg data urls.
2041
+ - Added support for html5 details and summary elements.
2042
+
2043
+ ### Changed
2044
+ - Changed so the mce-abs-layout-item css rule targets html instead of body. Patch contributed by nazar-pc.
2045
+
2046
+ ### Fixed
2047
+ - Fixed a bug where the "read" step on the mobile theme was still present on android mobile browsers.
2048
+ - Fixed a bug where all images in the editor document would reload on any editor change.
2049
+ - Fixed a bug with the Table Plugin where ObjectResized event wasn't being triggered on column resize.
2050
+ - Fixed so the selection is set to the first suitable caret position after editor.setContent called.
2051
+ - Fixed so links with xlink:href attributes are filtered correctly to prevent XSS.
2052
+ - Fixed a bug on IE11 where pasting content into an inline editor initialized on a heading element would create new editable elements.
2053
+ - Fixed a bug where readonly mode would not work as expected when the editor contained contentEditable=true elements.
2054
+ - Fixed a bug where the Link Plugin would throw an error when used together with the webcomponents polyfill. Patch contributed by 4esnog.
2055
+ - Fixed a bug where the "Powered by TinyMCE" branding link would break on XHTML pages. Patch contributed by tistre.
2056
+ - Fixed a bug where the same id would be used in the blobcache for all pasted images. Patch contributed by thorn0.
2057
+
2058
+ ## 4.7.11 - 2018-04-11
2059
+
2060
+ ### Added
2061
+ - Added a new imagetools_credentials_hosts option to the Imagetools Plugin.
2062
+
2063
+ ### Fixed
2064
+ - Fixed a bug where toggling a list containing empty LIs would throw an error. Patch contributed by bradleyke.
2065
+ - Fixed a bug where applying block styles to a text with the caret at the end of the paragraph would select all text in the paragraph.
2066
+ - Fixed a bug where toggling on the Spellchecker Plugin would trigger isDirty on the editor.
2067
+ - Fixed a bug where it was possible to enter content into selection bookmark spans.
2068
+ - Fixed a bug where if a non paragraph block was configured in forced_root_block the editor.getContent method would return incorrect values with an empty editor.
2069
+ - Fixed a bug where dropdown menu panels stayed open and fixed in position when dragging dialog windows.
2070
+ - Fixed a bug where it wasn't possible to extend table cells with the space button in Safari.
2071
+ - Fixed a bug where the setupeditor event would thrown an error when using the Compat3x Plugin.
2072
+ - Fixed a bug where an error was thrown in FontInfo when called on a detached element.
2073
+
2074
+ ## 4.7.10 - 2018-04-03
2075
+
2076
+ ### Added
2077
+ - Added normalization of triple clicks across browsers in the editor.
2078
+ - Added a `hasFocus` method to the editor that checks if the editor has focus.
2079
+ - Added correct icon to the Nonbreaking Plugin menu item.
2080
+
2081
+ ### Fixed
2082
+ - Fixed so the `getContent`/`setContent` methods work even if the editor is not initialized.
2083
+ - Fixed a bug with the Media Plugin where query strings were being stripped from youtube links.
2084
+ - Fixed a bug where image styles were changed/removed when opening and closing the Image Plugin dialog.
2085
+ - Fixed a bug in the Table Plugin where some table cell styles were not correctly added to the content html.
2086
+ - Fixed a bug in the Spellchecker Plugin where it wasn't possible to change the spellchecker language.
2087
+ - Fixed so the the unlink action in the Link Plugin has a menu item and can be added to the contextmenu.
2088
+ - Fixed a bug where it wasn't possible to keyboard navigate to the start of an inline element on a new line within the same block element.
2089
+ - Fixed a bug with the Text Color Plugin where if used with an inline editor located at the bottom of the screen the colorpicker could appear off screen.
2090
+ - Fixed a bug with the UndoManager where undo levels were being added for nbzwsp characters.
2091
+ - Fixed a bug with the Table Plugin where the caret would sometimes be lost when keyboard navigating up through a table.
2092
+ - Fixed a bug where FontInfo.getFontFamily would throw an error when called on a removed editor.
2093
+ - Fixed a bug in Firefox where undo levels were not being added correctly for some specific operations.
2094
+ - Fixed a bug where initializing an inline editor inside of a table would make the whole table resizeable.
2095
+ - Fixed a bug where the fake cursor that appears next to tables on Firefox was positioned incorrectly when switching to fullscreen.
2096
+ - Fixed a bug where zwsp's weren't trimmed from the output from `editor.getContent({ format: 'text' })`.
2097
+ - Fixed a bug where the fontsizeselect/fontselect toolbar items showed the body info rather than the first possible caret position info on init.
2098
+ - Fixed a bug where it wasn't possible to select all content if the editor only contained an inline boundary element.
2099
+ - Fixed a bug where `content_css` urls with query strings wasn't working.
2100
+ - Fixed a bug in the Table Plugin where some table row styles were removed when changing other styles in the row properties dialog.
2101
+
2102
+ ### Removed
2103
+ - Removed the "read" step from the mobile theme.
2104
+
2105
+ ## 4.7.9 - 2018-02-27
2106
+
2107
+ ### Fixed
2108
+ - Fixed a bug where the editor target element didn't get the correct style when removing the editor.
2109
+
2110
+ ## 4.7.8 - 2018-02-26
2111
+
2112
+ ### Fixed
2113
+ - Fixed an issue with the Help Plugin where the menuitem name wasn't lowercase.
2114
+ - Fixed an issue on MacOS where text and bold text did not have the same line-height in the autocomplete dropdown in the Link Plugin dialog.
2115
+ - Fixed a bug where the "paste as text" option in the Paste Plugin didn't work.
2116
+ - Fixed a bug where dialog list boxes didn't get positioned correctly in documents with scroll.
2117
+ - Fixed a bug where the Inlite Theme didn't use the Table Plugin api to insert correct tables.
2118
+ - Fixed a bug where the Inlite Theme panel didn't hide on blur in a correct way.
2119
+ - Fixed a bug where placing the cursor before a table in Firefox would scroll to the bottom of the table.
2120
+ - Fixed a bug where selecting partial text in table cells with rowspans and deleting would produce faulty tables.
2121
+ - Fixed a bug where the Preview Plugin didn't work on Safari due to sandbox security.
2122
+ - Fixed a bug where table cell selection using the keyboard threw an error.
2123
+ - Fixed so the font size and font family doesn't toggle the text but only sets the selected format on the selected text.
2124
+ - Fixed so the built-in spellchecking on Chrome and Safari creates an undo level when replacing words.
2125
+
2126
+ ## 4.7.7 - 2018-02-19
2127
+
2128
+ ### Added
2129
+ - Added a border style selector to the advanced tab of the Image Plugin.
2130
+ - Added better controls for default table inserted by the Table Plugin.
2131
+ - Added new `table_responsive_width` option to the Table Plugin that controls whether to use pixel or percentage widths.
2132
+
2133
+ ### Fixed
2134
+ - Fixed a bug where the Link Plugin text didn't update when a URL was pasted using the context menu.
2135
+ - Fixed a bug with the Spellchecker Plugin where using "Add to dictionary" in the context menu threw an error.
2136
+ - Fixed a bug in the Media Plugin where the preview node for iframes got default width and height attributes that interfered with width/height styles.
2137
+ - Fixed a bug where backslashes were being added to some font family names in Firefox in the fontselect toolbar item.
2138
+ - Fixed a bug where errors would be thrown when trying to remove an editor that had not yet been fully initialized.
2139
+ - Fixed a bug where the Imagetools Plugin didn't update the images atomically.
2140
+ - Fixed a bug where the Fullscreen Plugin was throwing errors when being used on an inline editor.
2141
+ - Fixed a bug where drop down menus weren't positioned correctly in inline editors on scroll.
2142
+ - Fixed a bug with a semicolon missing at the end of the bundled javascript files.
2143
+ - Fixed a bug in the Table Plugin with cursor navigation inside of tables where the cursor would sometimes jump into an incorrect table cells.
2144
+ - Fixed a bug where indenting a table that is a list item using the "Increase indent" button would create a nested table.
2145
+ - Fixed a bug where text nodes containing only whitespace were being wrapped by paragraph elements.
2146
+ - Fixed a bug where whitespace was being inserted after br tags inside of paragraph tags.
2147
+ - Fixed a bug where converting an indented paragraph to a list item would cause the list item to have extra padding.
2148
+ - Fixed a bug where Copy/Paste in an editor with a lot of content would cause the editor to scroll to the top of the content in IE11.
2149
+ - Fixed a bug with a memory leak in the DragHelper. Path contributed by ben-mckernan.
2150
+ - Fixed a bug where the advanced tab in the Media Plugin was being shown even if it didn't contain anything. Patch contributed by gabrieeel.
2151
+ - Fixed an outdated eventname in the EventUtils. Patch contributed by nazar-pc.
2152
+ - Fixed an issue where the Json.parse function would throw an error when being used on a page with strict CSP settings.
2153
+ - Fixed so you can place the curser before and after table elements within the editor in Firefox and Edge/IE.
2154
+
2155
+ ## 4.7.6 - 2018-01-29
2156
+
2157
+ ### Fixed
2158
+ - Fixed a bug in the jquery integration where it threw an error saying that "global is not defined".
2159
+ - Fixed a bug where deleting a table cell whose previous sibling was set to contenteditable false would create a corrupted table.
2160
+ - Fixed a bug where highlighting text in an unfocused editor did not work correctly in IE11/Edge.
2161
+ - Fixed a bug where the table resize handles were not being repositioned when activating the Fullscreen Plugin.
2162
+ - Fixed a bug where the Imagetools Plugin dialog didn't honor editor RTL settings.
2163
+ - Fixed a bug where block elements weren't being merged correctly if you deleted from after a contenteditable false element to the beginning of another block element.
2164
+ - Fixed a bug where TinyMCE didn't work with module loaders like webpack.
2165
+
2166
+ ## 4.7.5 - 2018-01-22
2167
+
2168
+ ### Fixed
2169
+ - Fixed bug with the Codesample Plugin where it wasn't possible to edit codesamples when the editor was in inline mode.
2170
+ - Fixed bug where focusing on the status bar broke the keyboard navigation functionality.
2171
+ - Fixed bug where an error would be thrown on Edge by the Table Plugin when pasting using the PowerPaste Plugin.
2172
+ - Fixed bug in the Table Plugin where selecting row border style from the dropdown menu in advanced row properties would throw an error.
2173
+ - Fixed bug with icons being rendered incorrectly on Chrome on Mac OS.
2174
+ - Fixed bug in the Textcolor Plugin where the font color and background color buttons wouldn't trigger an ExecCommand event.
2175
+ - Fixed bug in the Link Plugin where the url field wasn't forced LTR.
2176
+ - Fixed bug where the Nonbreaking Plugin incorrectly inserted spaces into tables.
2177
+ - Fixed bug with the inline theme where the toolbar wasn't repositioned on window resize.
2178
+
2179
+ ## 4.7.4 - 2017-12-05
2180
+
2181
+ ### Fixed
2182
+ - Fixed bug in the Nonbreaking Plugin where the nonbreaking_force_tab setting was being ignored.
2183
+ - Fixed bug in the Table Plugin where changing row height incorrectly converted column widths to pixels.
2184
+ - Fixed bug in the Table Plugin on Edge and IE11 where resizing the last column after resizing the table would cause invalid column heights.
2185
+ - Fixed bug in the Table Plugin where keyboard navigation was not normalized between browsers.
2186
+ - Fixed bug in the Table Plugin where the colorpicker button would show even without defining the colorpicker_callback.
2187
+ - Fixed bug in the Table Plugin where it wasn't possible to set the cell background color.
2188
+ - Fixed bug where Firefox would throw an error when intialising an editor on an element that is hidden or not yet added to the DOM.
2189
+ - Fixed bug where Firefox would throw an error when intialising an editor inside of a hidden iframe.
2190
+
2191
+ ## 4.7.3 - 2017-11-23
2192
+
2193
+ ### Added
2194
+ - Added functionality to open the Codesample Plugin dialog when double clicking on a codesample. Patch contributed by dakuzen.
2195
+
2196
+ ### Fixed
2197
+ - Fixed bug where undo/redo didn't work correctly with some formats and caret positions.
2198
+ - Fixed bug where the color picker didn't show up in Table Plugin dialogs.
2199
+ - Fixed bug where it wasn't possible to change the width of a table through the Table Plugin dialog.
2200
+ - Fixed bug where the Charmap Plugin couldn't insert some special characters.
2201
+ - Fixed bug where editing a newly inserted link would not actually edit the link but insert a new link next to it.
2202
+ - Fixed bug where deleting all content in a table cell made it impossible to place the caret into it.
2203
+ - Fixed bug where the vertical alignment field in the Table Plugin cell properties dialog didn't do anything.
2204
+ - Fixed bug where an image with a caption showed two sets of resize handles in IE11.
2205
+ - Fixed bug where pressing the enter button inside of an h1 with contenteditable set to true would sometimes produce a p tag.
2206
+ - Fixed bug with backspace not working as expected before a noneditable element.
2207
+ - Fixed bug where operating on tables with invalid rowspans would cause an error to be thrown.
2208
+ - Fixed so a real base64 representation of the image is available on the blobInfo that the images_upload_handler gets called with.
2209
+ - Fixed so the image upload tab is available when the images_upload_handler is defined (and not only when the images_upload_url is defined).
2210
+
2211
+ ## 4.7.2 - 2017-11-07
2212
+
2213
+ ### Added
2214
+ - Added newly rewritten Table Plugin.
2215
+ - Added support for attributes with colon in valid_elements and addValidElements.
2216
+ - Added support for dailymotion short url in the Media Plugin. Patch contributed by maat8.
2217
+ - Added support for converting to half pt when converting font size from px to pt. Patch contributed by danny6514.
2218
+ - Added support for location hash to the Autosave plugin to make it work better with SPAs using hash routing.
2219
+ - Added support for merging table cells when pasting a table into another table.
2220
+
2221
+ ### Changed
2222
+ - Changed so the language packs are only loaded once. Patch contributed by 0xor1.
2223
+ - Simplified the css for inline boundaries selection by switching to an attribute selector.
2224
+
2225
+ ### Fixed
2226
+ - Fixed bug where an error would be thrown on editor initialization if the window.getSelection() returned null.
2227
+ - Fixed bug where holding down control or alt keys made the keyboard navigation inside an inline boundary not work as expected.
2228
+ - Fixed bug where applying formats in IE11 produced extra, empty paragraphs in the editor.
2229
+ - Fixed bug where the Word Count Plugin didn't count some mathematical operators correctly.
2230
+ - Fixed bug where removing an inline editor removed the element that the editor had been initialized on.
2231
+ - Fixed bug where setting the selection to the end of an editable container caused some formatting problems.
2232
+ - Fixed bug where an error would be thrown sometimes when an editor was removed because of the selection bookmark was being stored asynchronously.
2233
+ - Fixed a bug where an editor initialized on an empty list did not contain any valid cursor positions.
2234
+ - Fixed a bug with the Context Menu Plugin and webkit browsers on Mac where right-clicking inside a table would produce an incorrect selection.
2235
+ - Fixed bug where the Image Plugin constrain proportions setting wasn't working as expected.
2236
+ - Fixed bug where deleting the last character in a span with decorations produced an incorrect element when typing.
2237
+ - Fixed bug where focusing on inline editors made the toolbar flicker when moving between elements quickly.
2238
+ - Fixed bug where the selection would be stored incorrectly in inline editors when the mouseup event was fired outside the editor body.
2239
+ - Fixed bug where toggling bold at the end of an inline boundary would toggle off the whole word.
2240
+ - Fixed bug where setting the skin to false would not stop the loading of some skin css files.
2241
+ - Fixed bug in mobile theme where pinch-to-zoom would break after exiting the editor.
2242
+ - Fixed bug where sublists of a fully selected list would not be switched correctly when changing list style.
2243
+ - Fixed bug where inserting media by source would break the UndoManager.
2244
+ - Fixed bug where inserting some content into the editor with a specific selection would replace some content incorrectly.
2245
+ - Fixed bug where selecting all content with ctrl+a in IE11 caused problems with untoggling some formatting.
2246
+ - Fixed bug where the Search and Replace Plugin left some marker spans in the editor when undoing and redoing after replacing some content.
2247
+ - Fixed bug where the editor would not get a scrollbar when using the Fullscreen and Autoresize plugins together.
2248
+ - Fixed bug where the font selector would stop working correctly after selecting fonts three times.
2249
+ - Fixed so pressing the enter key inside of an inline boundary inserts a br after the inline boundary element.
2250
+ - Fixed a bug where it wasn't possible to use tab navigation inside of a table that was inside of a list.
2251
+ - Fixed bug where end_container_on_empty_block would incorrectly remove elements.
2252
+ - Fixed bug where content_styles weren't added to the Preview Plugin iframe.
2253
+ - Fixed so the beforeSetContent/beforeGetContent events are preventable.
2254
+ - Fixed bug where changing height value in Table Plugin advanced tab didn't do anything.
2255
+ - Fixed bug where it wasn't possible to remove formatting from content in beginning of table cell.
2256
+
2257
+ ## 4.7.1 - 2017-10-09
2258
+
2259
+ ### Fixed
2260
+ - Fixed bug where theme set to false on an inline editor produced an extra div element after the target element.
2261
+ - Fixed bug where the editor drag icon was misaligned with the branding set to false.
2262
+ - Fixed bug where doubled menu items were not being removed as expected with the removed_menuitems setting.
2263
+ - Fixed bug where the Table of contents plugin threw an error when initialized.
2264
+ - Fixed bug where it wasn't possible to add inline formats to text selected right to left.
2265
+ - Fixed bug where the paste from plain text mode did not work as expected.
2266
+ - Fixed so the style previews do not set color and background color when selected.
2267
+ - Fixed bug where the Autolink plugin didn't work as expected with some formats applied on an empty editor.
2268
+ - Fixed bug where the Textpattern plugin were throwing errors on some patterns.
2269
+ - Fixed bug where the Save plugin saved all editors instead of only the active editor. Patch contributed by dannoe.
2270
+
2271
+ ## 4.7.0 - 2017-10-03
2272
+
2273
+ ### Added
2274
+ - Added new mobile ui that is specifically designed for mobile devices.
2275
+
2276
+ ### Changed
2277
+ - Updated the default skin to be more modern and white since white is preferred by most implementations.
2278
+ - Restructured the default menus to be more similar to common office suites like Google Docs.
2279
+
2280
+ ### Fixed
2281
+ - Fixed so theme can be set to false on both inline and iframe editor modes.
2282
+ - Fixed bug where inline editor would add/remove the visualblocks css multiple times.
2283
+ - Fixed bug where selection wouldn't be properly restored when editor lost focus and commands where invoked.
2284
+ - Fixed bug where toc plugin would generate id:s for headers even though a toc wasn't inserted into the content.
2285
+ - Fixed bug where is wasn't possible to drag/drop contents within the editor if paste_data_images where set to true.
2286
+ - Fixed bug where getParam and close in WindowManager would get the first opened window instead of the last opened window.
2287
+ - Fixed bug where delete would delete between cells inside a table in Firefox.
2288
+
2289
+ ## 4.6.7 - 2017-09-18
2290
+
2291
+ ### Added
2292
+ - Added some missing translations to Image, Link and Help plugins.
2293
+
2294
+ ### Fixed
2295
+ - Fixed bug where paste wasn't working in IOS.
2296
+ - Fixed bug where the Word Count Plugin didn't count some mathematical operators correctly.
2297
+ - Fixed bug where inserting a list in a table caused the cell to expand in height.
2298
+ - Fixed bug where pressing enter in a list located inside of a table deleted list items instead of inserting new list item.
2299
+ - Fixed bug where copy and pasting table cells produced inconsistent results.
2300
+ - Fixed bug where initializing an editor with an ID of 'length' would throw an exception.
2301
+ - Fixed bug where it was possible to split a non merged table cell.
2302
+ - Fixed bug where copy and pasting a list with a very specific selection into another list would produce a nested list.
2303
+ - Fixed bug where copy and pasting ordered lists sometimes produced unordered lists.
2304
+ - Fixed bug where padded elements inside other elements would be treated as empty.
2305
+ - Fixed so you can resize images inside a figure element.
2306
+ - Fixed bug where an inline TinyMCE editor initialized on a table did not set selection on load in Chrome.
2307
+ - Fixed the positioning of the inlite toolbar when the target element wasn't big enough to fit the toolbar.
2308
+
2309
+ ## 4.6.6 - 2017-08-30
2310
+
2311
+ ### Fixed
2312
+ - Fixed so that notifications wrap long text content instead of bleeding outside the notification element.
2313
+ - Fixed so the content_style css is added after the skin and custom stylesheets.
2314
+ - Fixed bug where it wasn't possible to remove a table with the Cut button.
2315
+ - Fixed bug where the center format wasn't getting the same font size as the other formats in the format preview.
2316
+ - Fixed bug where the wordcount plugin wasn't counting hyphenated words correctly.
2317
+ - Fixed bug where all content pasted into the editor was added to the end of the editor.
2318
+ - Fixed bug where enter keydown on list item selection only deleted content and didn't create a new line.
2319
+ - Fixed bug where destroying the editor while the content css was still loading caused error notifications on Firefox.
2320
+ - Fixed bug where undoing cut operation in IE11 left some unwanted html in the editor content.
2321
+ - Fixed bug where enter keydown would throw an error in IE11.
2322
+ - Fixed bug where duplicate instances of an editor were added to the editors array when using the createEditor API.
2323
+ - Fixed bug where the formatter applied formats on the wrong content when spellchecker was activated.
2324
+ - Fixed bug where switching formats would reset font size on child nodes.
2325
+ - Fixed bug where the table caption element weren't always the first descendant to the table tag.
2326
+ - Fixed bug where pasting some content into the editor on chrome some newlines were removed.
2327
+ - Fixed bug where it wasn't possible to remove a list if a list item was a table element.
2328
+ - Fixed bug where copy/pasting partial selections of tables wouldn't produce a proper table.
2329
+ - Fixed bug where the searchreplace plugin could not find consecutive spaces.
2330
+ - Fixed bug where background color wasn't applied correctly on some partially selected contents.
2331
+
2332
+ ## 4.6.5 - 2017-08-02
2333
+
2334
+ ### Added
2335
+ - Added new inline_boundaries_selector that allows you to specify the elements that should have boundaries.
2336
+ - Added new local upload feature this allows the user to upload images directly from the image dialog.
2337
+ - Added a new api for providing meta data for plugins. It will show up in the help dialog if it's provided.
2338
+
2339
+ ### Fixed
2340
+ - Fixed so that the notifications created by the notification manager are more screen reader accessible.
2341
+ - Fixed bug where changing the list format on multiple selected lists didn't change all of the lists.
2342
+ - Fixed bug where the nonbreaking plugin would insert multiple undo levels when pressing the tab key.
2343
+ - Fixed bug where delete/backspace wouldn't render a caret when all editor contents where deleted.
2344
+ - Fixed bug where delete/backspace wouldn't render a caret if the deleted element was a single contentEditable false element.
2345
+ - Fixed bug where the wordcount plugin wouldn't count words correctly if word where typed after applying a style format.
2346
+ - Fixed bug where the wordcount plugin would count mathematical formulas as multiple words for example 1+1=2.
2347
+ - Fixed bug where formatting of triple clicked blocks on Chrome/Safari would result in styles being added outside the visual selection.
2348
+ - Fixed bug where paste would add the contents to the end of the editor area when inline mode was used.
2349
+ - Fixed bug where toggling off bold formatting on text entered in a new paragraph would add an extra line break.
2350
+ - Fixed bug where autolink plugin would only produce a link on every other consecutive link on Firefox.
2351
+ - Fixed bug where it wasn't possible to select all contents if the content only had one pre element.
2352
+ - Fixed bug where sizzle would produce lagging behavior on some sites due to repaints caused by feature detection.
2353
+ - Fixed bug where toggling off inline formats wouldn't include the space on selected contents with leading or trailing spaces.
2354
+ - Fixed bug where the cut operation in UI wouldn't work in Chrome.
2355
+ - Fixed bug where some legacy editor initialization logic would throw exceptions about editor settings not being defined.
2356
+ - Fixed bug where it wasn't possible to apply text color to links if they where part of a non collapsed selection.
2357
+ - Fixed bug where an exception would be thrown if the user selected a video element and then moved the focus outside the editor.
2358
+ - Fixed bug where list operations didn't work if there where block elements inside the list items.
2359
+ - Fixed bug where applying block formats to lists wrapped in block elements would apply to all elements in that wrapped block.
2360
+
2361
+ ## 4.6.4 - 2017-06-13
2362
+
2363
+ ### Fixed
2364
+ - Fixed bug where the editor would move the caret when clicking on the scrollbar next to a content editable false block.
2365
+ - Fixed bug where the text color select dropdowns wasn't placed correctly when they didn't fit the width of the screen.
2366
+ - Fixed bug where the default editor line height wasn't working for mixed font size contents.
2367
+ - Fixed bug where the content css files for inline editors were loaded multiple times for multiple editor instances.
2368
+ - Fixed bug where the initial value of the font size/font family dropdowns wasn't displayed.
2369
+ - Fixed bug where the I18n api was not supporting arrays as the translation replacement values.
2370
+ - Fixed bug where chrome would display "The given range isn't in document." errors for invalid ranges passed to setRng.
2371
+ - Fixed bug where the compat3x plugin wasn't working since the global tinymce references wasn't resolved correctly.
2372
+ - Fixed bug where the preview plugin wasn't encoding the base url passed into the iframe contents producing a xss bug.
2373
+ - Fixed bug where the dom parser/serializer wasn't handling some special elements like noframes, title and xmp.
2374
+ - Fixed bug where the dom parser/serializer wasn't handling cdata sections with comments inside.
2375
+ - Fixed bug where the editor would scroll to the top of the editable area if a dialog was closed in inline mode.
2376
+ - Fixed bug where the link dialog would not display the right rel value if rel_list was configured.
2377
+ - Fixed bug where the context menu would select images on some platforms but not others.
2378
+ - Fixed bug where the filenames of images were not retained on dragged and drop into the editor from the desktop.
2379
+ - Fixed bug where the paste plugin would misrepresent newlines when pasting plain text and having forced_root_block configured.
2380
+ - Fixed so that the error messages for the imagetools plugin is more human readable.
2381
+ - Fixed so the internal validate setting for the parser/serializer can't be set from editor initialization settings.
2382
+
2383
+ ## 4.6.3 - 2017-05-30
2384
+
2385
+ ### Fixed
2386
+ - Fixed bug where the arrow keys didn't work correctly when navigating on nested inline boundary elements.
2387
+ - Fixed bug where delete/backspace didn't work correctly on nested inline boundary elements.
2388
+ - Fixed bug where image editing didn't work on subsequent edits of the same image.
2389
+ - Fixed bug where charmap descriptions wouldn't properly wrap if they exceeded the width of the box.
2390
+ - Fixed bug where the default image upload handler only accepted 200 as a valid http status code.
2391
+ - Fixed so rel on target=_blank links gets forced with only noopener instead of both noopener and noreferrer.
2392
+
2393
+ ## 4.6.2 - 2017-05-23
2394
+
2395
+ ### Fixed
2396
+ - Fixed bug where the SaxParser would run out of memory on very large documents.
2397
+ - Fixed bug with formatting like font size wasn't applied to del elements.
2398
+ - Fixed bug where various api calls would be throwing exceptions if they where invoked on a removed editor instance.
2399
+ - Fixed bug where the branding position would be incorrect if the editor was inside a hidden tab and then later showed.
2400
+ - Fixed bug where the color levels feature in the imagetools dialog wasn't working properly.
2401
+ - Fixed bug where imagetools dialog wouldn't pre-load images from CORS domains, before trying to prepare them for editing.
2402
+ - Fixed bug where the tab key would move the caret to the next table cell if being pressed inside a list inside a table.
2403
+ - Fixed bug where the cut/copy operations would loose parent context like the current format etc.
2404
+ - Fixed bug with format preview not working on invalid elements excluded by valid_elements.
2405
+ - Fixed bug where blocks would be merged in incorrect order on backspace/delete.
2406
+ - Fixed bug where zero length text nodes would cause issues with the undo logic if there where iframes present.
2407
+ - Fixed bug where the font size/family select lists would throw errors if the first node was a comment.
2408
+ - Fixed bug with csp having to allow local script evaluation since it was used to detect global scope.
2409
+ - Fixed bug where CSP required a relaxed option for javascript: URLs in unsupported legacy browsers.
2410
+ - Fixed bug where a fake caret would be rendered for td with the contenteditable=false.
2411
+ - Fixed bug where typing would be blocked on IE 11 when within a nested contenteditable=true/false structure.
2412
+
2413
+ ## 4.6.1 - 2017-05-10
2414
+
2415
+ ### Added
2416
+ - Added configuration option to list plugin to disable tab indentation.
2417
+
2418
+ ### Fixed
2419
+ - Fixed bug where format change on very specific content could cause the selection to change.
2420
+ - Fixed bug where TinyMCE could not be lazyloaded through jquery integration.
2421
+ - Fixed bug where entities in style attributes weren't decoded correctly on paste in webkit.
2422
+ - Fixed bug where fontsize_formats option had been renamed incorrectly.
2423
+ - Fixed bug with broken backspace/delete behaviour between contenteditable=false blocks.
2424
+ - Fixed bug where it wasn't possible to backspace to the previous line with the inline boundaries functionality turned on.
2425
+ - Fixed bug where is wasn't possible to move caret left and right around a linked image with the inline boundaries functionality turned on.
2426
+ - Fixed bug where pressing enter after/before hr element threw exception. Patch contributed bradleyke.
2427
+ - Fixed so the CSS in the visualblocks plugin doesn't overwrite background color. Patch contributed by Christian Rank.
2428
+ - Fixed bug where multibyte characters weren't encoded correctly. Patch contributed by James Tarkenton.
2429
+ - Fixed bug where shift-click to select within contenteditable=true fields wasn't working.
2430
+
2431
+ ## 4.6.0 - 2017-05-04
2432
+
2433
+ ### Added
2434
+ - Added an inline boundary caret position feature that makes it easier to type at the beginning/end of links/code elements.
2435
+ - Added a help plugin that adds a button and a dialog showing the editor shortcuts and loaded plugins.
2436
+ - Added an inline_boundaries option that allows you to disable the inline boundary feature if it's not desired.
2437
+ - Added a new ScrollIntoView event that allows you to override the default scroll to element behavior.
2438
+ - Added role and aria- attributes as valid elements in the default valid elements config.
2439
+ - Added new internal flag for PastePreProcess/PastePostProcess this is useful to know if the paste was coming from an external source.
2440
+ - Added new ignore function to UndoManager this works similar to transact except that it doesn't add an undo level by default.
2441
+
2442
+ ### Fixed
2443
+ - Fixed so that urls gets retained for images when being edited. This url is then passed on to the upload handler.
2444
+ - Fixed so that the editors would be initialized on readyState interactive instead of complete.
2445
+ - Fixed so that the init event of the editor gets fired once all contentCSS files have been properly loaded.
2446
+ - Fixed so that width/height of the editor gets taken from the textarea element if it's explicitly specified in styles.
2447
+ - Fixed so that keep_styles set to false no longer clones class/style from the previous paragraph on enter.
2448
+ - Fixed so that the default line-height is 1.2em to avoid zwnbsp characters from producing text rendering glitches on Windows.
2449
+ - Fixed so that loading errors of content css gets presented by a notification message.
2450
+ - Fixed so figure image elements can be linked when selected this wraps the figure image in a anchor element.
2451
+ - Fixed bug where it wasn't possible to copy/paste rows with colspans by using the table copy/paste feature.
2452
+ - Fixed bug where the protect setting wasn't properly applied to header/footer parts when using the fullpage plugin.
2453
+ - Fixed bug where custom formats that specified upper case element names where not applied correctly.
2454
+ - Fixed bug where some screen readers weren't reading buttons due to an aria specific fix for IE 8.
2455
+ - Fixed bug where cut wasn't working correctly on iOS due to it's clipboard API not working correctly.
2456
+ - Fixed bug where Edge would paste div elements instead of paragraphs when pasting plain text.
2457
+ - Fixed bug where the textpattern plugin wasn't dealing with trailing punctuations correctly.
2458
+ - Fixed bug where image editing would some times change the image format from jpg to png.
2459
+ - Fixed bug where some UI elements could be inserted into the toolbar even if they where not registered.
2460
+ - Fixed bug where it was possible to click the TD instead of the character in the character map and that caused an exception.
2461
+ - Fixed bug where the font size/font family dropdowns would sometimes show an incorrect value due to css not being loaded in time.
2462
+ - Fixed bug with the media plugin inserting undefined instead of retaining size when media_dimensions was set to false.
2463
+ - Fixed bug with deleting images when forced_root_blocks where set to false.
2464
+ - Fixed bug where input focus wasn't properly handled on nested content editable elements.
2465
+ - Fixed bug where Chrome/Firefox would throw an exception when selecting images due to recent change of setBaseAndExtent support.
2466
+ - Fixed bug where malformed blobs would throw exceptions now they are simply ignored.
2467
+ - Fixed bug where backspace/delete wouldn't work properly in some cases where all contents was selected in WebKit.
2468
+ - Fixed bug with Angular producing errors since it was expecting events objects to be patched with their custom properties.
2469
+ - Fixed bug where the formatter would apply formatting to spellchecker errors now all bogus elements are excluded.
2470
+ - Fixed bug with backspace/delete inside table caption elements wouldn't behave properly on IE 11.
2471
+ - Fixed bug where typing after a contenteditable false inline element could move the caret to the end of that element.
2472
+ - Fixed bug where backspace before/after contenteditable false blocks wouldn't properly remove the right element.
2473
+ - Fixed bug where backspace before/after contenteditable false inline elements wouldn't properly empty the current block element.
2474
+ - Fixed bug where vertical caret navigation with a custom line-height would sometimes match incorrect positions.
2475
+ - Fixed bug with paste on Edge where character encoding wasn't handled properly due to a browser bug.
2476
+ - Fixed bug with paste on Edge where extra fragment data was inserted into the contents when pasting.
2477
+ - Fixed bug with pasting contents when having a whole block element selected on WebKit could cause WebKit spans to appear.
2478
+ - Fixed bug where the visualchars plugin wasn't working correctly showing invisible nbsp characters.
2479
+ - Fixed bug where browsers would hang if you tried to load some malformed html contents.
2480
+ - Fixed bug where the init call promise wouldn't resolve if the specified selector didn't find any matching elements.
2481
+ - Fixed bug where the Schema isValidChild function was case sensitive.
2482
+
2483
+ ### Removed
2484
+ - Dropped support for IE 8-10 due to market share and lack of support from Microsoft. See tinymce docs for details.
2485
+
2486
+ ## 4.5.3 - 2017-02-01
2487
+
2488
+ ### Added
2489
+ - Added keyboard navigation for menu buttons when the menu is in focus.
2490
+ - Added api to the list plugin for setting custom classes/attributes on lists.
2491
+ - Added validation for the anchor plugin input field according to W3C id naming specifications.
2492
+
2493
+ ### Fixed
2494
+ - Fixed bug where media placeholders were removed after resize with the forced_root_block setting set to false.
2495
+ - Fixed bug where deleting selections with similar sibling nodes sometimes deleted the whole document.
2496
+ - Fixed bug with inlite theme where several toolbars would appear scrolling when more than one instance of the editor was in use.
2497
+ - Fixed bug where the editor would throw error with the fontselect plugin on hidden editor instances in Firefox.
2498
+ - Fixed bug where the background color would not stretch to the font size.
2499
+ - Fixed bug where font size would be removed when changing background color.
2500
+ - Fixed bug where the undomanager trimmed away whitespace between nodes on undo/redo.
2501
+ - Fixed bug where media_dimensions=false in media plugin caused the editor to throw an error.
2502
+ - Fixed bug where IE was producing font/u elements within links on paste.
2503
+ - Fixed bug where some button tooltips were broken when compat3x was in use.
2504
+ - Fixed bug where backspace/delete/typeover would remove the caption element.
2505
+ - Fixed bug where powerspell failed to function when compat3x was enabled.
2506
+ - Fixed bug where it wasn't possible to apply sub/sup on text with large font size.
2507
+ - Fixed bug where pre tags with spaces weren't treated as content.
2508
+ - Fixed bug where Meta+A would select the entire document instead of all contents in nested ce=true elements.
2509
+
2510
+ ## 4.5.2 - 2017-01-04
2511
+
2512
+ ### Fixed
2513
+ - Added missing keyboard shortcut description for the underline menu item in the format menu.
2514
+ - Fixed bug where external blob urls wasn't properly handled by editor upload logic. Patch contributed by David Oviedo.
2515
+ - Fixed bug where urls wasn't treated as a single word by the wordcount plugin.
2516
+ - Fixed bug where nbsp characters wasn't treated as word delimiters by the wordcount plugin.
2517
+ - Fixed bug where editor instance wasn't properly passed to the format preview logic. Patch contributed by NullQuery.
2518
+ - Fixed bug where the fake caret wasn't hidden when you moved selection to a cE=false element.
2519
+ - Fixed bug where it wasn't possible to edit existing code sample blocks.
2520
+ - Fixed bug where it wasn't possible to delete editor contents if the selection included an empty block.
2521
+ - Fixed bug where the formatter wasn't expanding words on some international characters. Patch contributed by Martin Larochelle.
2522
+ - Fixed bug where the open link feature wasn't working correctly on IE 11.
2523
+ - Fixed bug where enter before/after a cE=false block wouldn't properly padd the paragraph with an br element.
2524
+ - Fixed so font size and font family select boxes always displays a value by using the runtime style as a fallback.
2525
+ - Fixed so missing plugins will be logged to console as warnings rather than halting the initialization of the editor.
2526
+ - Fixed so splitbuttons become normal buttons in advlist plugin if styles are empty. Patch contributed by René Schleusner.
2527
+ - Fixed so you can multi insert rows/cols by selecting table cells and using insert rows/columns.
2528
+
2529
+ ## 4.5.1 - 2016-12-07
2530
+
2531
+ ### Fixed
2532
+ - Fixed bug where the lists plugin wouldn't initialize without the advlist plugins if served from cdn.
2533
+ - Fixed bug where selectors with "*" would cause the style format preview to throw an error.
2534
+ - Fixed bug with toggling lists off on lists with empty list items would throw an error.
2535
+ - Fixed bug where editing images would produce non existing blob uris.
2536
+ - Fixed bug where the offscreen toc selection would be treated as the real toc element.
2537
+ - Fixed bug where the aria level attribute for element path would have an incorrect start index.
2538
+ - Fixed bug where the offscreen selection of cE=false that where very wide would be shown onscreen. Patch contributed by Steven Bufton.
2539
+ - Fixed so the default_link_target gets applied to links created by the autolink plugin.
2540
+ - Fixed so that the name attribute gets removed by the anchor plugin if editing anchors.
2541
+
2542
+ ## 4.5.0 - 2016-11-23
2543
+
2544
+ ### Added
2545
+ - Added new toc plugin allows you to insert table of contents based on editor headings.
2546
+ - Added new auto complete menu to all url fields. Adds history, link to anchors etc.
2547
+ - Added new sidebar api that allows you to add custom sidebar panels and buttons to toggle these.
2548
+ - Added new insert menu button that allows you to have multiple insert functions under the same menu button.
2549
+ - Added new open link feature to ctrl+click, alt+enter and context menu.
2550
+ - Added new media_embed_handler option to allow the media plugin to be populated with custom embeds.
2551
+ - Added new support for editing transparent images using the image tools dialog.
2552
+ - Added new images_reuse_filename option to allow filenames of images to be retained for upload.
2553
+ - Added new security feature where links with target="_blank" will by default get rel="noopener noreferrer".
2554
+ - Added new allow_unsafe_link_target to allow you to opt-out of the target="_blank" security feature.
2555
+ - Added new style_formats_autohide option to automatically hide styles based on context.
2556
+ - Added new codesample_content_css option to specify where the code sample prism css is loaded from.
2557
+ - Added new support for Japanese/Chinese word count following the unicode standards on this.
2558
+ - Added new fragmented undo levels this dramatically reduces flicker on contents with iframes.
2559
+ - Added new live previews for complex elements like table or lists.
2560
+
2561
+ ### Fixed
2562
+ - Fixed bug where it wasn't possible to properly tab between controls in a dialog with a disabled form item control.
2563
+ - Fixed bug where firefox would generate a rectangle on elements produced after/before a cE=false elements.
2564
+ - Fixed bug with advlist plugin not switching list element format properly in some edge cases.
2565
+ - Fixed bug where col/rowspans wasn't correctly computed by the table plugin in some cases.
2566
+ - Fixed bug where the table plugin would thrown an error if object_resizing was disabled.
2567
+ - Fixed bug where some invalid markup would cause issues when running in XHTML mode. Patch contributed by Charles Bourasseau.
2568
+ - Fixed bug where the fullscreen class wouldn't be removed properly when closing dialogs.
2569
+ - Fixed bug where the PastePlainTextToggle event wasn't fired by the paste plugin when the state changed.
2570
+ - Fixed bug where table the row type wasn't properly updated in table row dialog. Patch contributed by Matthias Balmer.
2571
+ - Fixed bug where select all and cut wouldn't place caret focus back to the editor in WebKit. Patch contributed by Daniel Jalkut.
2572
+ - Fixed bug where applying cell/row properties to multiple cells/rows would reset other unchanged properties.
2573
+ - Fixed bug where some elements in the schema would have redundant/incorrect children.
2574
+ - Fixed bug where selector and target options would cause issues if used together.
2575
+ - Fixed bug where drag/drop of images from desktop on chrome would thrown an error.
2576
+ - Fixed bug where cut on WebKit/Blink wouldn't add an undo level.
2577
+ - Fixed bug where IE 11 would scroll to the cE=false elements when they where selected.
2578
+ - Fixed bug where keys like F5 wouldn't work when a cE=false element was selected.
2579
+ - Fixed bug where the undo manager wouldn't stop the typing state when commands where executed.
2580
+ - Fixed bug where unlink on wrapped links wouldn't work properly.
2581
+ - Fixed bug with drag/drop of images on WebKit where the image would be deleted form the source editor.
2582
+ - Fixed bug where the visual characters mode would be disabled when contents was extracted from the editor.
2583
+ - Fixed bug where some browsers would toggle of formats applied to the caret when clicking in the editor toolbar.
2584
+ - Fixed bug where the custom theme function wasn't working correctly.
2585
+ - Fixed bug where image option for custom buttons required you to have icon specified as well.
2586
+ - Fixed bug where the context menu and contextual toolbars would be visible at the same time and sometimes overlapping.
2587
+ - Fixed bug where the noneditable plugin would double wrap elements when using the noneditable_regexp option.
2588
+ - Fixed bug where tables would get padding instead of margin when you used the indent button.
2589
+ - Fixed bug where the charmap plugin wouldn't properly insert non breaking spaces.
2590
+ - Fixed bug where the color previews in color input boxes wasn't properly updated.
2591
+ - Fixed bug where the list items of previous lists wasn't merged in the right order.
2592
+ - Fixed bug where it wasn't possible to drag/drop inline-block cE=false elements on IE 11.
2593
+ - Fixed bug where some table cell merges would produce incorrect rowspan/colspan.
2594
+ - Fixed so the font size of the editor defaults to 14px instead of 11px this can be overridden by custom css.
2595
+ - Fixed so wordcount is debounced to reduce cpu hogging on larger texts.
2596
+ - Fixed so tinymce global gets properly exported as a module when used with some module bundlers.
2597
+ - Fixed so it's possible to specify what css properties you want to preview on specific formats.
2598
+ - Fixed so anchors are contentEditable=false while within the editor.
2599
+ - Fixed so selected contents gets wrapped in a inline code element by the codesample plugin.
2600
+ - Fixed so conditional comments gets properly stripped independent of case. Patch contributed by Georgii Dolzhykov.
2601
+ - Fixed so some escaped css sequences gets properly handled. Patch contributed by Georgii Dolzhykov.
2602
+ - Fixed so notifications with the same message doesn't get displayed at the same time.
2603
+ - Fixed so F10 can be used as an alternative key to focus to the toolbar.
2604
+ - Fixed various api documentation issues and typos.
2605
+
2606
+ ### Removed
2607
+ - Removed layer plugin since it wasn't really ported from 3.x and there doesn't seem to be much use for it.
2608
+ - Removed moxieplayer.swf from the media plugin since it wasn't used by the media plugin.
2609
+ - Removed format state from the advlist plugin to be more consistent with common word processors.
2610
+
2611
+ ## 4.4.3 - 2016-09-01
2612
+
2613
+ ### Fixed
2614
+ - Fixed bug where copy would produce an exception on Chrome.
2615
+ - Fixed bug where deleting lists on IE 11 would merge in correct text nodes.
2616
+ - Fixed bug where deleting partial lists with indentation wouldn't cause proper normalization.
2617
+
2618
+ ## 4.4.2 - 2016-08-25
2619
+
2620
+ ### Added
2621
+ - Added new importcss_exclusive option to disable unique selectors per group.
2622
+ - Added new group specific selector_converter option to importcss plugin.
2623
+ - Added new codesample_languages option to apply custom languages to codesample plugin.
2624
+ - Added new codesample_dialog_width/codesample_dialog_height options.
2625
+
2626
+ ### Fixed
2627
+ - Fixed bug where fullscreen button had an incorrect keyboard shortcut.
2628
+ - Fixed bug where backspace/delete wouldn't work correctly from a block to a cE=false element.
2629
+ - Fixed bug where smartpaste wasn't detecting links with special characters in them like tilde.
2630
+ - Fixed bug where the editor wouldn't get proper focus if you clicked on a cE=false element.
2631
+ - Fixed bug where it wasn't possible to copy/paste table rows that had merged cells.
2632
+ - Fixed bug where merging cells could some times produce invalid col/rowspan attibute values.
2633
+ - Fixed bug where getBody would sometimes thrown an exception now it just returns null if the iframe is clobbered.
2634
+ - Fixed bug where drag/drop of cE=false element wasn't properly constrained to viewport.
2635
+ - Fixed bug where contextmenu on Mac would collapse any selection to a caret.
2636
+ - Fixed bug where rtl mode wasn't rendered properly when loading a language pack with the rtl flag.
2637
+ - Fixed bug where Kamer word bounderies would be stripped from contents.
2638
+ - Fixed bug where lists would sometimes render two dots or numbers on the same line.
2639
+ - Fixed bug where the skin_url wasn't used by the inlite theme.
2640
+ - Fixed so data attributes are ignored when comparing formats in the formatter.
2641
+ - Fixed so it's possible to disable inline toolbars in the inlite theme.
2642
+ - Fixed so template dialog gets resized if it doesn't fit the window viewport.
2643
+
2644
+ ## 4.4.1 - 2016-07-26
2645
+
2646
+ ### Added
2647
+ - Added smart_paste option to paste plugin to allow disabling the paste behavior if needed.
2648
+
2649
+ ### Fixed
2650
+ - Fixed bug where png urls wasn't properly detected by the smart paste logic.
2651
+ - Fixed bug where the element path wasn't working properly when multiple editor instances where used.
2652
+ - Fixed bug with creating lists out of multiple paragraphs would just create one list item instead of multiple.
2653
+ - Fixed bug where scroll position wasn't properly handled by the inlite theme to place the toolbar properly.
2654
+ - Fixed bug where multiple instances of the editor using the inlite theme didn't render the toolbar properly.
2655
+ - Fixed bug where the shortcut label for fullscreen mode didn't match the actual shortcut key.
2656
+ - Fixed bug where it wasn't possible to select cE=false blocks using touch devices on for example iOS.
2657
+ - Fixed bug where it was possible to select the child image within a cE=false on IE 11.
2658
+ - Fixed so inserts of html containing lists doesn't merge with any existing lists unless it's a paste operation.
2659
+
2660
+ ## 4.4.0 - 2016-06-30
2661
+
2662
+ ### Added
2663
+ - Added new inlite theme this is a more lightweight inline UI.
2664
+ - Added smarter paste logic that auto detects urls in the clipboard and inserts images/links based on that.
2665
+ - Added a better image resize algorithm for better image quality in the imagetools plugin.
2666
+
2667
+ ### Fixed
2668
+ - Fixed bug where it wasn't possible to drag/dropping cE=false elements on FF.
2669
+ - Fixed bug where backspace/delete before/after a cE=false block would produce a new paragraph.
2670
+ - Fixed bug where list style type css property wasn't preserved when indenting lists.
2671
+ - Fixed bug where merging of lists where done even if the list style type was different.
2672
+ - Fixed bug where the image_dataimg_filter function wasn't used when pasting images.
2673
+ - Fixed bug where nested editable within a non editable element would cause scroll on focus in Chrome.
2674
+ - Fixed so invalid targets for inline mode is blocked on initialization. We only support elements that can have children.
2675
+
2676
+ ## 4.3.13 - 2016-06-08
2677
+
2678
+ ### Added
2679
+ - Added characters with a diacritical mark to charmap plugin. Patch contributed by Dominik Schilling.
2680
+ - Added better error handling if the image proxy service would produce errors.
2681
+
2682
+ ### Fixed
2683
+ - Fixed issue with pasting list items into list items would produce nested list rather than a merged list.
2684
+ - Fixed bug where table selection could get stuck in selection mode for inline editors.
2685
+ - Fixed bug where it was possible to place the caret inside the resize grid elements.
2686
+ - Fixed bug where it wasn't possible to place in elements horizontally adjacent cE=false blocks.
2687
+ - Fixed bug where multiple notifications wouldn't be properly placed on screen.
2688
+ - Fixed bug where multiple editor instance of the same id could be produces in some specific integrations.
2689
+
2690
+ ## 4.3.12 - 2016-05-10
2691
+
2692
+ ### Fixed
2693
+ - Fixed bug where focus calls couldn't be made inside the editors PostRender event handler.
2694
+ - Fixed bug where some translations wouldn't work as expected due to a bug in editor.translate.
2695
+ - Fixed bug where the node change event could fire with a node out side the root of the editor.
2696
+ - Fixed bug where Chrome wouldn't properly present the keyboard paste clipboard details when paste was clicked.
2697
+ - Fixed bug where merged cells in tables couldn't be selected from right to left.
2698
+ - Fixed bug where insert row wouldn't properly update a merged cells rowspan property.
2699
+ - Fixed bug where the color input boxes preview field wasn't properly set on initialization.
2700
+ - Fixed bug where IME composition inside table cells wouldn't work as expected on IE 11.
2701
+ - Fixed so all shadow dom support is under and experimental flag due to flaky browser support.
2702
+
2703
+ ## 4.3.11 - 2016-04-25
2704
+
2705
+ ### Fixed
2706
+ - Fixed bug where it wasn't possible to insert empty blocks though the API unless they where padded.
2707
+ - Fixed bug where you couldn't type the Euro character on Windows.
2708
+ - Fixed bug where backspace/delete from a cE=false element to a text block didn't work properly.
2709
+ - Fixed bug where the text color default grid would render incorrectly.
2710
+ - Fixed bug where the codesample plugin wouldn't load the css in the editor for multiple editors.
2711
+ - Fixed so the codesample plugin textarea gets focused by default.
2712
+
2713
+ ## 4.3.10 - 2016-04-12
2714
+
2715
+ ### Fixed
2716
+ - Fixed bug where the key "y" on WebKit couldn't be entered due to conflict with keycode for F10 on keypress.
2717
+
2718
+ ## 4.3.9 - 2016-04-12
2719
+
2720
+ ### Added
2721
+ - Added support for focusing the contextual toolbars using keyboard.
2722
+ - Added keyboard support for slider UI controls. You can no increase/decrease using arrow keys.
2723
+ - Added url pattern matching for Dailymotion to media plugin. Patch contributed by Bertrand Darbon.
2724
+ - Added body_class to template plugin preview. Patch contributed by Milen Petrinski.
2725
+ - Added options to better override textcolor pickers with custom colors. Patch contributed by Xavier Boubert.
2726
+ - Added visual arrows to inline contextual toolbars so that they point to the element being active.
2727
+
2728
+ ### Changed
2729
+ - Changed the Meta+Shift+F shortcut to Ctrl+Shift+F since Czech, Slovak, Polish languages used the first one for input.
2730
+
2731
+ ### Fixed
2732
+ - Fixed so toolbars for tables or other larger elements get better positioned below the scrollable viewport.
2733
+ - Fixed bug where it was possible to click links inside cE=false blocks.
2734
+ - Fixed bug where event targets wasn't properly handled in Safari Technical Preview.
2735
+ - Fixed bug where drag/drop text in FF 45 would make the editor caret invisible.
2736
+ - Fixed bug where the remove state wasn't properly set on editor instances when detected as clobbered.
2737
+ - Fixed bug where offscreen selection of some cE=false elements would render onscreen. Patch contributed by Steven Bufton
2738
+ - Fixed bug where enter would clone styles out side the root on editors inside a span. Patch contributed by ChristophKaser.
2739
+ - Fixed bug where drag/drop of images into the editor didn't work correctly in FF.
2740
+ - Fixed so the first item in panels for the imagetools dialog gets proper keyboard focus.
2741
+
2742
+ ## 4.3.8 - 2016-03-15
2743
+
2744
+ ### Fixed
2745
+ - Fixed bug where inserting HR at the end of a block element would produce an extra empty block.
2746
+ - Fixed bug where links would be clickable when readonly mode was enabled.
2747
+ - Fixed bug where the formatter would normalize to the wrong node on very specific content.
2748
+ - Fixed bug where some nested list items couldn't be indented properly.
2749
+ - Fixed bug where links where clickable in the preview dialog.
2750
+ - Fixed so the alt attribute doesn't get padded with an empty value by default.
2751
+ - Fixed so nested alignment works more correctly. You will now alter the alignment to the closest block parent.
2752
+
2753
+ ## 4.3.7 - 2016-03-02
2754
+
2755
+ ### Fixed
2756
+ - Fixed bug where incorrect icons would be rendered for imagetools edit and color levels.
2757
+ - Fixed bug where navigation using arrow keys inside a SelectBox didn't move up/down.
2758
+ - Fixed bug where the visualblocks plugin would render borders round internal UI elements.
2759
+
2760
+ ## 4.3.6 - 2016-03-01
2761
+
2762
+ ### Added
2763
+ - Added new paste_remember_plaintext_info option to allow a global disable of the plain text mode notification.
2764
+ - Added new PastePlainTextToggle event that fires when plain text mode toggles on/off.
2765
+
2766
+ ### Fixed
2767
+ - Fixed bug where it wasn't possible to select media elements since the drag logic would snap it to mouse cursor.
2768
+ - Fixed bug where it was hard to place the caret inside nested cE=true elements when the outer cE=false element was focused.
2769
+ - Fixed bug where editors wouldn't properly initialize if both selector and mode where used.
2770
+ - Fixed bug where IME input inside table cells would switch the IME off.
2771
+ - Fixed bug where selection inside the first table cell would cause the whole table cell to get selected.
2772
+ - Fixed bug where error handling of images being uploaded wouldn't properly handle faulty statuses.
2773
+ - Fixed bug where inserting contents before a HR would cause an exception to be thrown.
2774
+ - Fixed bug where copy/paste of Excel data would be inserted as an image.
2775
+ - Fixed caret position issues with copy/paste of inline block cE=false elements.
2776
+ - Fixed issues with various menu item focus bugs in Chrome. Where the focused menu bar item wasn't properly blurred.
2777
+ - Fixed so the notifications have a solid background since it would be hard to read if there where text under it.
2778
+ - Fixed so notifications gets animated similar to the ones used by dialogs.
2779
+ - Fixed so larger images that gets pasted is handled better.
2780
+ - Fixed so the window close button is more uniform on various platform and also increased it's hit area.
2781
+
2782
+ ## 4.3.5 - 2016-02-11
2783
+
2784
+ Npm version bump due to package not being fully updated.
2785
+
2786
+ ## 4.3.4 - 2016-02-11
2787
+
2788
+ ### Added
2789
+ - Added new OpenWindow/CloseWindow events that gets fired when windows open/close.
2790
+ - Added new NewCell/NewRow events that gets fired when table cells/rows are created.
2791
+ - Added new Promise return value to tinymce.init makes it easier to handle initialization.
2792
+
2793
+ ### Fixed
2794
+ - Fixed various bugs with drag/drop of contentEditable:false elements.
2795
+ - Fixed bug where deleting of very specific nested list items would result in an odd list.
2796
+ - Fixed bug where lists would get merged with adjacent lists outside the editable inline root.
2797
+ - Fixed bug where MS Edge would crash when closing a dialog then clicking a menu item.
2798
+ - Fixed bug where table cell selection would add undo levels.
2799
+ - Fixed bug where table cell selection wasn't removed when inline editor where removed.
2800
+ - Fixed bug where table cell selection wouldn't work properly on nested tables.
2801
+ - Fixed bug where table merge menu would be available when merging between thead and tbody.
2802
+ - Fixed bug where table row/column resize wouldn't get properly removed when the editor was removed.
2803
+ - Fixed bug where Chrome would scroll to the editor if there where a empty hash value in document url.
2804
+ - Fixed bug where the cache suffix wouldn't work correctly with the importcss plugin.
2805
+ - Fixed bug where selection wouldn't work properly on MS Edge on Windows Phone 10.
2806
+ - Fixed so adjacent pre blocks gets joined into one pre block since that seems like the user intent.
2807
+ - Fixed so events gets properly dispatched in shadow dom. Patch provided by Nazar Mokrynskyi.
2808
+
2809
+ ### Removed
2810
+ - Removed the jQuery version the jQuery plugin is now moved into the main package.
2811
+ - Removed jscs from build process since eslint can now handle code style checking.
2812
+
2813
+ ## 4.3.3 - 2016-01-14
2814
+
2815
+ ### Added
2816
+ - Added new table_resize_bars configuration setting. This setting allows you to disable the table resize bars.
2817
+ - Added new beforeInitialize event to tinymce.util.XHR lets you modify XHR properties before open. Patch contributed by Brent Clintel.
2818
+ - Added new autolink_pattern setting to autolink plugin. Enables you to override the default autolink formats. Patch contributed by Ben Tiedt.
2819
+ - Added new charmap option that lets you override the default charmap of the charmap plugin.
2820
+ - Added new charmap_append option that lets you add new characters to the default charmap of the charmap plugin.
2821
+ - Added new insertCustomChar event that gets fired when a character is inserted by the charmap plugin.
2822
+
2823
+ ### Fixed
2824
+ - Fixed bug where table cells started with a superfluous &nbsp; in IE10+.
2825
+ - Fixed bug where table plugin would retain all BR tags when cells were merged.
2826
+ - Fixed bug where media plugin would strip underscores from youtube urls.
2827
+ - Fixed bug where IME input would fail on IE 11 if you typed within a table.
2828
+ - Fixed bug where double click selection of a word would remove the space before the word on insert contents.
2829
+ - Fixed bug where table plugin would produce exceptions when hovering tables with invalid structure.
2830
+ - Fixed bug where fullscreen wouldn't scroll back to it's original position when untoggled.
2831
+ - Fixed so the template plugins templates setting can be a function that gets a callback that can provide templates.
2832
+
2833
+ ## 4.3.2 - 2015-12-14
2834
+
2835
+ ### Fixed
2836
+ - Fixed bug where the resize bars for table cells were not affected by the object_resizing property.
2837
+ - Fixed bug where the contextual table toolbar would appear incorrectly if TinyMCE was initialized inline inside a table.
2838
+ - Fixed bug where resizing table cells did not fire a node change event or add an undo level.
2839
+ - Fixed bug where double click selection of text on IE 11 wouldn't work properly.
2840
+ - Fixed bug where codesample plugin would incorrectly produce br elements inside code elements.
2841
+ - Fixed bug where media plugin would strip dashes from youtube urls.
2842
+ - Fixed bug where it was possible to move the caret into the table resize bars.
2843
+ - Fixed bug where drag/drop into a cE=false element was possible on IE.
2844
+
2845
+ ## 4.3.1 - 2015-11-30
2846
+
2847
+ ### Fixed
2848
+ - Fixed so it's possible to disable the table inline toolbar by setting it to false or an empty string.
2849
+ - Fixed bug where it wasn't possible to resize some tables using the drag handles.
2850
+ - Fixed bug where unique id:s would clash for multiple editor instances and cE=false selections.
2851
+ - Fixed bug where the same plugin could be initialized multiple times.
2852
+ - Fixed bug where the table inline toolbars would be displayed at the same time as the image toolbars.
2853
+ - Fixed bug where the table selection rect wouldn't be removed when selecting another control element.
2854
+
2855
+ ## 4.3.0 - 2015-11-23
2856
+
2857
+ ### Added
2858
+ - Added new table column/row resize support. Makes it a lot more easy to resize the columns/rows in a table.
2859
+ - Added new table inline toolbar. Makes it easier to for example add new rows or columns to a table.
2860
+ - Added new notification API. Lets you display floating notifications to the end user.
2861
+ - Added new codesample plugin that lets you insert syntax highlighted pre elements into the editor.
2862
+ - Added new image_caption to images. Lets you create images with captions using a HTML5 figure/figcaption elements.
2863
+ - Added new live previews of embeded videos. Lets you play the video right inside the editor.
2864
+ - Added new setDirty method and "dirty" event to the editor. Makes it easier to track the dirty state change.
2865
+ - Added new setMode method to Editor instances that lets you dynamically switch between design/readonly.
2866
+ - Added new core support for contentEditable=false elements within the editor overrides the browsers broken behavior.
2867
+
2868
+ ### Changed
2869
+ - Rewrote the noneditable plugin to use the new contentEditable false core logic.
2870
+
2871
+ ### Fixed
2872
+ - Fixed so the dirty state doesn't set to false automatically when the undo index is set to 0.
2873
+ - Fixed the Selection.placeCaretAt so it works better on IE when the coordinate is between paragraphs.
2874
+ - Fixed bug where data-mce-bogus="all" element contents where counted by the word count plugin.
2875
+ - Fixed bug where contentEditable=false elements would be indented by the indent buttons.
2876
+ - Fixed bug where images within contentEditable=false would be selected in WebKit on mouse click.
2877
+ - Fixed bug in DOMUntils split method where the replacement parameter wouldn't work on specific cases.
2878
+ - Fixed bug where the importcss plugin would import classes from the skin content css file.
2879
+ - Fixed so all button variants have a wrapping span for it's text to make it easier to skin.
2880
+ - Fixed so it's easier to exit pre block using the arrow keys.
2881
+ - Fixed bug where listboxes with fix widths didn't render correctly.
2882
+
2883
+ ## 4.2.8 - 2015-11-13
2884
+
2885
+ ### Fixed
2886
+ - Fixed bug where it was possible to delete tables as the inline root element if all columns where selected.
2887
+ - Fixed bug where the UI buttons active state wasn't properly updated due to recent refactoring of that logic.
2888
+
2889
+ ## 4.2.7 - 2015-10-27
2890
+
2891
+ ### Fixed
2892
+ - Fixed bug where backspace/delete would remove all formats on the last paragraph character in WebKit/Blink.
2893
+ - Fixed bug where backspace within a inline format element with a bogus caret container would move the caret.
2894
+ - Fixed bug where backspace/delete on selected table cells wouldn't add an undo level.
2895
+ - Fixed bug where script tags embedded within the editor could sometimes get a mce- prefix prepended to them
2896
+ - Fixed bug where validate: false option could produce an error to be thrown from the Serialization step.
2897
+ - Fixed bug where inline editing of a table as the root element could let the user delete that table.
2898
+ - Fixed bug where inline editing of a table as the root element wouldn't properly handle enter key.
2899
+ - Fixed bug where inline editing of a table as the root element would normalize the selection incorrectly.
2900
+ - Fixed bug where inline editing of a list as the root element could let the user delete that list.
2901
+ - Fixed bug where inline editing of a list as the root element could let the user split that list.
2902
+ - Fixed bug where resize handles would be rendered on editable root elements such as table.
2903
+
2904
+ ## 4.2.6 - 2015-09-28
2905
+
2906
+ ### Added
2907
+ - Added capability to set request headers when using XHRs.
2908
+ - Added capability to upload local images automatically default delay is set to 30 seconds after editing images.
2909
+ - Added commands ids mceEditImage, mceAchor and mceMedia to be avaiable from execCommand.
2910
+ - Added Edge browser to saucelabs grunt task. Patch contributed by John-David Dalton.
2911
+
2912
+ ### Fixed
2913
+ - Fixed bug where blob uris not produced by tinymce would produce HTML invalid markup.
2914
+ - Fixed bug where selection of contents of a nearly empty editor in Edge would sometimes fail.
2915
+ - Fixed bug where color styles woudln't be retained on copy/paste in Blink/Webkit.
2916
+ - Fixed bug where the table plugin would throw an error when inserting rows after a child table.
2917
+ - Fixed bug where the template plugin wouldn't handle functions as variable replacements.
2918
+ - Fixed bug where undo/redo sometimes wouldn't work properly when applying formatting collapsed ranges.
2919
+ - Fixed bug where shift+delete wouldn't do a cut operation on Blink/WebKit.
2920
+ - Fixed bug where cut action wouldn't properly store the before selection bookmark for the undo level.
2921
+ - Fixed bug where backspace in side an empty list element on IE would loose editor focus.
2922
+ - Fixed bug where the save plugin wouldn't enable the buttons when a change occurred.
2923
+ - Fixed bug where Edge wouldn't initialize the editor if a document.domain was specified.
2924
+ - Fixed bug where enter key before nested images would sometimes not properly expand the previous block.
2925
+ - Fixed bug where the inline toolbars wouldn't get properly hidden when blurring the editor instance.
2926
+ - Fixed bug where Edge would paste Chinese characters on some Windows 10 installations.
2927
+ - Fixed bug where IME would loose focus on IE 11 due to the double trailing br bug fix.
2928
+ - Fixed bug where the proxy url in imagetools was incorrect. Patch contributed by Wong Ho Wang.
2929
+
2930
+ ## 4.2.5 - 2015-08-31
2931
+
2932
+ ### Added
2933
+ - Added fullscreen capability to embedded youtube and vimeo videos.
2934
+
2935
+ ### Fixed
2936
+ - Fixed bug where the uploadImages call didn't work on IE 10.
2937
+ - Fixed bug where image place holders would be uploaded by uploadImages call.
2938
+ - Fixed bug where images marked with bogus would be uploaded by the uploadImages call.
2939
+ - Fixed bug where multiple calls to uploadImages would result in decreased performance.
2940
+ - Fixed bug where pagebreaks were editable to imagetools patch contributed by Rasmus Wallin.
2941
+ - Fixed bug where the element path could cause too much recursion exception.
2942
+ - Fixed bug for domains containing ".min". Patch contributed by Loïc Février.
2943
+ - Fixed so validation of external links to accept a number after www. Patch contributed by Victor Carvalho.
2944
+ - Fixed so the charmap is exposed though execCommand. Patch contributed by Matthew Will.
2945
+ - Fixed so that the image uploads are concurrent for improved performance.
2946
+ - Fixed various grammar problems in inline documentation. Patches provided by nikolas.
2947
+
2948
+ ## 4.2.4 - 2015-08-17
2949
+
2950
+ ### Added
2951
+ - Added picture as a valid element to the HTML 5 schema. Patch contributed by Adam Taylor.
2952
+
2953
+ ### Fixed
2954
+ - Fixed bug where contents would be duplicated on drag/drop within the same editor.
2955
+ - Fixed bug where floating/alignment of images on Edge wouldn't work properly.
2956
+ - Fixed bug where it wasn't possible to drag images on IE 11.
2957
+ - Fixed bug where image selection on Edge would sometimes fail.
2958
+ - Fixed bug where contextual toolbars icons wasn't rendered properly when using the toolbar_items_size.
2959
+ - Fixed bug where searchreplace dialog doesn't get prefilled with the selected text.
2960
+ - Fixed bug where fragmented matches wouldn't get properly replaced by the searchreplace plugin.
2961
+ - Fixed bug where enter key wouldn't place the caret if was after a trailing space within an inline element.
2962
+ - Fixed bug where the autolink plugin could produce multiple links for the same text on Gecko.
2963
+ - Fixed bug where EditorUpload could sometimes throw an exception if the blob wasn't found.
2964
+ - Fixed xss issues with media plugin not properly filtering out some script attributes.
2965
+
2966
+ ## 4.2.3 - 2015-07-30
2967
+
2968
+ ### Fixed
2969
+ - Fixed bug where image selection wasn't possible on Edge due to incompatible setBaseAndExtend API.
2970
+ - Fixed bug where image blobs urls where not properly destroyed by the imagetools plugin.
2971
+ - Fixed bug where keyboard shortcuts wasn't working correctly on IE 8.
2972
+ - Fixed skin issue where the borders of panels where not visible on IE 8.
2973
+
2974
+ ## 4.2.2 - 2015-07-22
2975
+
2976
+ ### Fixed
2977
+ - Fixed bug where float panels were not being hidden on inline editor blur when fixed_toolbar_container config option was in use.
2978
+ - Fixed bug where combobox states wasn't properly updated if contents where updated without keyboard.
2979
+ - Fixed bug where pasting into textbox or combobox would move the caret to the end of text.
2980
+ - Fixed bug where removal of bogus span elements before block elements would remove whitespace between nodes.
2981
+ - Fixed bug where repositioning of inline toolbars where async and producing errors if the editor was removed from DOM to early. Patch by iseulde.
2982
+ - Fixed bug where element path wasn't working correctly. Patch contributed by iseulde.
2983
+ - Fixed bug where menus wasn't rendered correctly when custom images where added to a menu. Patch contributed by Naim Hammadi.
2984
+
2985
+ ## 4.2.1 - 2015-06-29
2986
+
2987
+ ### Fixed
2988
+ - Fixed bug where back/forward buttons in the browser would render blob images as broken images.
2989
+ - Fixed bug where Firefox would throw regexp to big error when replacing huge base64 chunks.
2990
+ - Fixed bug rendering issues with resize and context toolbars not being placed properly until next animation frame.
2991
+ - Fixed bug where the rendering of the image while cropping would some times not be centered correctly.
2992
+ - Fixed bug where listbox items with submenus would me selected as active.
2993
+ - Fixed bug where context menu where throwing an error when rendering.
2994
+ - Fixed bug where resize both option wasn't working due to resent addClass API change. Patch contributed by Jogai.
2995
+ - Fixed bug where a hideAll call for container rendered inline toolbars would throw an error.
2996
+ - Fixed bug where onclick event handler on combobox could cause issues if element.id was a function by some polluting libraries.
2997
+ - Fixed bug where listboxes wouldn't get proper selected sub menu item when using link_list or image_list.
2998
+ - Fixed so the UI controls are as wide as 4.1.x to avoid wrapping controls in toolbars.
2999
+ - Fixed so the imagetools dialog is adaptive for smaller screen sizes.
3000
+
3001
+ ## 4.2.0 - 2015-06-25
3002
+
3003
+ ### Added
3004
+ - Added new flat default skin to make the UI more modern.
3005
+ - Added new imagetools plugin, lets you crop/resize and apply filters to images.
3006
+ - Added new contextual toolbars support to the API lets you add floating toolbars for specific CSS selectors.
3007
+ - Added new promise feature fill as tinymce.util.Promise.
3008
+ - Added new built in image upload feature lets you upload any base64 encoded image within the editor as files.
3009
+
3010
+ ### Fixed
3011
+ - Fixed bug where resize handles would appear in the right position in the wrong editor when switching between resizable content in different inline editors.
3012
+ - Fixed bug where tables would not be inserted in inline mode due to previous float panel fix.
3013
+ - Fixed bug where floating panels would remain open when focus was lost on inline editors.
3014
+ - Fixed bug where cut command on Chrome would thrown a browser security exception.
3015
+ - Fixed bug where IE 11 sometimes would report an incorrect size for images in the image dialog.
3016
+ - Fixed bug where it wasn't possible to remove inline formatting at the end of block elements.
3017
+ - Fixed bug where it wasn't possible to delete table cell contents when cell selection was vertical.
3018
+ - Fixed bug where table cell wasn't emptied from block elements if delete/backspace where pressed in empty cell.
3019
+ - Fixed bug where cmd+shift+arrow didn't work correctly on Firefox mac when selecting to start/end of line.
3020
+ - Fixed bug where removal of bogus elements would sometimes remove whitespace between nodes.
3021
+ - Fixed bug where the resize handles wasn't updated when the main window was resized.
3022
+ - Fixed so script elements gets removed by default to prevent possible XSS issues in default config implementations.
3023
+ - Fixed so the UI doesn't need manual reflows when using non native layout managers.
3024
+ - Fixed so base64 encoded images doesn't slow down the editor on modern browsers while editing.
3025
+ - Fixed so all UI elements uses touch events to improve mobile device support.
3026
+ - Removed the touch click quirks patch for iOS since it did more harm than good.
3027
+ - Removed the non proportional resize handles since. Unproportional resize can still be done by holding the shift key.
3028
+
3029
+ ## 4.1.10 - 2015-05-05
3030
+
3031
+ ### Fixed
3032
+ - Fixed bug where plugins loaded with compat3x would sometimes throw errors when loading using the jQuery version.
3033
+ - Fixed bug where extra empty paragraphs would get deleted in WebKit/Blink due to recent Quriks fix.
3034
+ - Fixed bug where the editor wouldn't work properly on IE 12 due to some required browser sniffing.
3035
+ - Fixed bug where formatting shortcut keys where interfering with Mac OS X screenshot keys.
3036
+ - Fixed bug where the caret wouldn't move to the next/previous line boundary on Cmd+Left/Right on Gecko.
3037
+ - Fixed bug where it wasn't possible to remove formats from very specific nested contents.
3038
+ - Fixed bug where undo levels wasn't produced when typing letters using the shift or alt+ctrl modifiers.
3039
+ - Fixed bug where the dirty state wasn't properly updated when typing using the shift or alt+ctrl modifiers.
3040
+ - Fixed bug where an error would be thrown if an autofocused editor was destroyed quickly after its initialization. Patch provided by thorn0.
3041
+ - Fixed issue with dirty state not being properly updated on redo operation.
3042
+ - Fixed issue with entity decoder not handling incorrectly written numeric entities.
3043
+ - Fixed issue where some PI element values wouldn't be properly encoded.
3044
+
3045
+ ## 4.1.9 - 2015-03-10
3046
+
3047
+ ### Fixed
3048
+ - Fixed bug where indentation wouldn't work properly for non list elements.
3049
+ - Fixed bug with image plugin not pulling the image dimensions out correctly if a custom document_base_url was used.
3050
+ - Fixed bug where ctrl+alt+[1-9] would conflict with the AltGr+[1-9] on Windows. New shortcuts is ctrl+shift+[1-9].
3051
+ - Fixed bug with removing formatting on nodes in inline mode would sometimes include nodes outside the editor body.
3052
+ - Fixed bug where extra nbsp:s would be inserted when you replaced a word surrounded by spaces using insertContent.
3053
+ - Fixed bug with pasting from Google Docs would produce extra strong elements and line feeds.
3054
+
3055
+ ## 4.1.8 - 2015-03-05
3056
+
3057
+ ### Added
3058
+ - Added new html5 sizes attribute to img elements used together with srcset.
3059
+ - Added new elementpath option that makes it possible to disable the element path but keep the statusbar.
3060
+ - Added new option table_style_by_css for the table plugin to set table styling with css rather than table attributes.
3061
+ - Added new link_assume_external_targets option to prompt the user to prepend http:// prefix if the supplied link does not contain a protocol prefix.
3062
+ - Added new image_prepend_url option to allow a custom base path/url to be added to images.
3063
+ - Added new table_appearance_options option to make it possible to disable some options.
3064
+ - Added new image_title option to make it possible to alter the title of the image, disabled by default.
3065
+
3066
+ ### Fixed
3067
+ - Fixed bug where selection starting from out side of the body wouldn't produce a proper selection range on IE 11.
3068
+ - Fixed bug where pressing enter twice before a table moves the cursor in the table and causes a javascript error.
3069
+ - Fixed bug where advanced image styles were not respected.
3070
+ - Fixed bug where the less common Shift+Delete didn't produce a proper cut operation on WebKit browsers.
3071
+ - Fixed bug where image/media size constrain logic would produce NaN when handling non number values.
3072
+ - Fixed bug where internal classes where removed by the removeformat command.
3073
+ - Fixed bug with creating links table cell contents with a specific selection would throw a exceptions on WebKit/Blink.
3074
+ - Fixed bug where valid_classes option didn't work as expected according to docs. Patch provided by thorn0.
3075
+ - Fixed bug where jQuery plugin would patch the internal methods multiple times. Patch provided by Drew Martin.
3076
+ - Fixed bug where backspace key wouldn't delete the current selection of newly formatted content.
3077
+ - Fixed bug where type over of inline formatting elements wouldn't properly keep the format on WebKit/Blink.
3078
+ - Fixed bug where selection needed to be properly normalized on modern IE versions.
3079
+ - Fixed bug where Command+Backspace didn't properly delete the whole line of text but the previous word.
3080
+ - Fixed bug where UI active states wheren't properly updated on IE if you placed caret within the current range.
3081
+ - Fixed bug where delete/backspace on WebKit/Blink would remove span elements created by the user.
3082
+ - Fixed bug where delete/backspace would produce incorrect results when deleting between two text blocks with br elements.
3083
+ - Fixed bug where captions where removed when pasting from MS Office.
3084
+ - Fixed bug where lists plugin wouldn't properly remove fully selected nested lists.
3085
+ - Fixed bug where the ttf font used for icons would throw an warning message on Gecko on Mac OS X.
3086
+ - Fixed a bug where applying a color to text did not update the undo/redo history.
3087
+ - Fixed so shy entities gets displayed when using the visualchars plugin.
3088
+ - Fixed so removeformat removes ins/del by default since these might be used for strikethough.
3089
+ - Fixed so multiple language packs can be loaded and added to the global I18n data structure.
3090
+ - Fixed so transparent color selection gets treated as a normal color selection. Patch contributed by Alexander Hofbauer.
3091
+ - Fixed so it's possible to disable autoresize_overflow_padding, autoresize_bottom_margin options by setting them to false.
3092
+ - Fixed so the charmap plugin shows the description of the character in the dialog. Patch contributed by Jelle Hissink.
3093
+ - Removed address from the default list of block formats since it tends to be missused.
3094
+ - Fixed so the pre block format is called preformatted to make it more verbose.
3095
+ - Fixed so it's possible to context scope translation strings this isn't needed most of the time.
3096
+ - Fixed so the max length of the width/height input fields of the media dialog is 5 instead of 3.
3097
+ - Fixed so drag/dropped contents gets properly processed by paste plugin since it's basically a paste. Patch contributed by Greg Fairbanks.
3098
+ - Fixed so shortcut keys for headers is ctrl+alt+[1-9] instead of ctrl+[1-9] since these are for switching tabs in the browsers.
3099
+ - Fixed so "u" doesn't get converted into a span element by the legacy input filter. Since this is now a valid HTML5 element.
3100
+ - Fixed font families in order to provide appropriate web-safe fonts.
3101
+
3102
+ ## 4.1.7 - 2014-11-27
3103
+
3104
+ ### Added
3105
+ - Added HTML5 schema support for srcset, source and picture. Patch contributed by mattheu.
3106
+ - Added new cache_suffix setting to enable cache busting by producing unique urls.
3107
+ - Added new paste_convert_word_fake_lists option to enable users to disable the fake lists convert logic.
3108
+
3109
+ ### Fixed
3110
+ - Fixed so advlist style changes adds undo levels for each change.
3111
+ - Fixed bug where WebKit would sometimes produce an exception when the autolink plugin where looking for URLs.
3112
+ - Fixed bug where IE 7 wouldn't be rendered properly due to aggressive css compression.
3113
+ - Fixed bug where DomQuery wouldn't accept window as constructor element.
3114
+ - Fixed bug where the color picker in 3.x dialogs wouldn't work properly. Patch contributed by Callidior.
3115
+ - Fixed bug where the image plugin wouldn't respect the document_base_url.
3116
+ - Fixed bug where the jQuery plugin would fail to append to elements named array prototype names.
3117
+
3118
+ ## 4.1.6 - 2014-10-08
3119
+
3120
+ ### Changed
3121
+ - Replaced jake with grunt since it is more mainstream and has better plugin support.
3122
+
3123
+ ### Fixed
3124
+ - Fixed bug with clicking on the scrollbar of the iframe would cause a JS error to be thrown.
3125
+ - Fixed bug where null would produce an exception if you passed it to selection.setRng.
3126
+ - Fixed bug where Ctrl/Cmd+Tab would indent the current list item if you switched tabs in the browser.
3127
+ - Fixed bug where pasting empty cells from Excel would result in a broken table.
3128
+ - Fixed bug where it wasn't possible to switch back to default list style type.
3129
+ - Fixed issue where the select all quirk fix would fire for other modifiers than Ctrl/Cmd combinations.
3130
+
3131
+
3132
+ ## 4.1.5 - 2014-09-09
3133
+
3134
+ ### Fixed
3135
+ - Fixed bug where sometimes the resize rectangles wouldn't properly render on images on WebKit/Blink.
3136
+ - Fixed bug in list plugin where delete/backspace would merge empty LI elements in lists incorrectly.
3137
+ - Fixed bug where empty list elements would result in empty LI elements without it's parent container.
3138
+ - Fixed bug where backspace in empty caret formatted element could produce an type error exception of Gecko.
3139
+ - Fixed bug where lists pasted from word with a custom start index above 9 wouldn't be properly handled.
3140
+ - Fixed bug where tabfocus plugin would tab out of the editor instance even if the default action was prevented.
3141
+ - Fixed bug where tabfocus wouldn't tab properly to other adjacent editor instances.
3142
+ - Fixed bug where the DOMUtils setStyles wouldn't properly removed or update the data-mce-style attribute.
3143
+ - Fixed bug where dialog select boxes would be placed incorrectly if document.body wasn't statically positioned.
3144
+ - Fixed bug where pasting would sometimes scroll to the top of page if the user was using the autoresize plugin.
3145
+ - Fixed bug where caret wouldn't be properly rendered by Chrome when clicking on the iframes documentElement.
3146
+ - Fixed so custom images for menubutton/splitbutton can be provided. Patch contributed by Naim Hammadi.
3147
+ - Fixed so the default action of windows closing can be prevented by blocking the default action of the close event.
3148
+ - Fixed so nodeChange and focus of the editor isn't automatically performed when opening sub dialogs.
3149
+
3150
+ ## 4.1.4 - 2014-08-21
3151
+
3152
+ ### Added
3153
+ - Added new media_filter_html option to media plugin that blocks any conditional comments, scripts etc within a video element.
3154
+ - Added new content_security_policy option allows you to set custom policy for iframe contents. Patch contributed by Francois Chagnon.
3155
+
3156
+ ### Fixed
3157
+ - Fixed bug where activate/deactivate events wasn't firing properly when switching between editors.
3158
+ - Fixed bug where placing the caret on iOS was difficult due to a WebKit bug with touch events.
3159
+ - Fixed bug where the resize helper wouldn't render properly on older IE versions.
3160
+ - Fixed bug where resizing images inside tables on older IE versions would sometimes fail depending mouse position.
3161
+ - Fixed bug where editor.insertContent would produce an exception when inserting select/option elements.
3162
+ - Fixed bug where extra empty paragraphs would be produced if block elements where inserted inside span elements.
3163
+ - Fixed bug where the spellchecker menu item wouldn't be properly checked if spell checking was started before it was rendered.
3164
+ - Fixed bug where the DomQuery filter function wouldn't remove non elements from collection.
3165
+ - Fixed bug where document with custom document.domain wouldn't properly render the editor.
3166
+ - Fixed bug where IE 8 would throw exception when trying to enter invalid color values into colorboxes.
3167
+ - Fixed bug where undo manager could incorrectly add an extra undo level when custom resize handles was removed.
3168
+ - Fixed bug where it wouldn't be possible to alter cell properties properly on table cells on IE 8.
3169
+ - Fixed so the color picker button in table dialog isn't shown unless you include the colorpicker plugin or add your own custom color picker.
3170
+ - Fixed so activate/deactivate events fire when windowManager opens a window since.
3171
+ - Fixed so the table advtab options isn't separated by an underscore to normalize naming with image_advtab option.
3172
+ - Fixed so the table cell dialog has proper padding when the advanced tab in disabled.
3173
+
3174
+ ## 4.1.3 - 2014-07-29
3175
+
3176
+ ### Added
3177
+ - Added event binding logic to tinymce.util.XHR making it possible to override headers and settings before any request is made.
3178
+
3179
+ ### Fixed
3180
+ - Fixed bug where drag events wasn't fireing properly on older IE versions since the event handlers where bound to document.
3181
+ - Fixed bug where drag/dropping contents within the editor on IE would force the contents into plain text mode even if it was internal content.
3182
+ - Fixed bug where IE 7 wouldn't open menus properly due to a resize bug in the browser auto closing them immediately.
3183
+ - Fixed bug where the DOMUtils getPos logic wouldn't produce a valid coordinate inside the body if the body was positioned non static.
3184
+ - Fixed bug where the element path and format state wasn't properly updated if you had the wordcount plugin enabled.
3185
+ - Fixed bug where a comment at the beginning of source would produce an exception in the formatter logic.
3186
+ - Fixed bug where setAttrib/getAttrib on null would throw exception together with any hooked attributes like style.
3187
+ - Fixed bug where table sizes wasn't properly retained when copy/pasting on WebKit/Blink.
3188
+ - Fixed bug where WebKit/Blink would produce colors in RGB format instead of the forced HEX format when deleting contents.
3189
+ - Fixed bug where the width attribute wasn't updated on tables if you changed the size inside the table dialog.
3190
+ - Fixed bug where control selection wasn't properly handled when the caret was placed directly after an image.
3191
+ - Fixed bug where selecting the contents of table cells using the selection.select method wouldn't place the caret properly.
3192
+ - Fixed bug where the selection state for images wasn't removed when placing the caret right after an image on WebKit/Blink.
3193
+ - Fixed bug where all events wasn't properly unbound when and editor instance was removed or destroyed by some external innerHTML call.
3194
+ - Fixed bug where it wasn't possible or very hard to select images on iOS when the onscreen keyboard was visible.
3195
+ - Fixed so auto_focus can take a boolean argument this will auto focus the last initialized editor might be useful for single inits.
3196
+ - Fixed so word auto detect lists logic works better for faked lists that doesn't have specific markup.
3197
+ - Fixed so nodeChange gets fired on mouseup as it used to before 4.1.1 we optimized that event to fire less often.
3198
+
3199
+ ### Removed
3200
+ - Removed the finish menu item from spellchecker menu since it's redundant you can stop spellchecking by toggling menu item or button.
3201
+
3202
+ ## 4.1.2 - 2014-07-15
3203
+
3204
+ ### Added
3205
+ - Added offset/grep to DomQuery class works basically the same as it's jQuery equivalent.
3206
+
3207
+ ### Fixed
3208
+ - Fixed bug where backspace/delete or setContent with an empty string would remove header data when using the fullpage plugin.
3209
+ - Fixed bug where tinymce.remove with a selector not matching any editors would remove all editors.
3210
+ - Fixed bug where resizing of the editor didn't work since the theme was calling setStyles instead of setStyle.
3211
+ - Fixed bug where IE 7 would fail to append html fragments to iframe document when using DomQuery.
3212
+ - Fixed bug where the getStyle DOMUtils method would produce an exception if it was called with null as it's element.
3213
+ - Fixed bug where the paste plugin would remove the element if the none of the paste_webkit_styles rules matched the current style.
3214
+ - Fixed bug where contextmenu table items wouldn't work properly on IE since it would some times fire an incorrect selection change.
3215
+ - Fixed bug where the padding/border values wasn't used in the size calculation for the body size when using autoresize. Patch contributed by Matt Whelan.
3216
+ - Fixed bug where conditional word comments wouldn't be properly removed when pasting plain text.
3217
+ - Fixed bug where resizing would sometime fail on IE 11 when the mouseup occurred inside the resizable element.
3218
+ - Fixed so the iframe gets initialized without any inline event handlers for better CSP support. Patch contributed by Matt Whelan.
3219
+ - Fixed so the tinymce.dom.Sizzle is the latest version of sizzle this resolves the document context bug.
3220
+
3221
+ ## 4.1.1 - 2014-07-08
3222
+
3223
+ ### Fixed
3224
+ - Fixed bug where pasting plain text on some WebKit versions would result in an empty line.
3225
+ - Fixed bug where resizing images inside tables on IE 11 wouldn't work properly.
3226
+ - Fixed bug where IE 11 would sometimes throw "Invalid argument" exception when editor contents was set to an empty string.
3227
+ - Fixed bug where document.activeElement would throw exceptions on IE 9 when that element was hidden or removed from dom.
3228
+ - Fixed bug where WebKit/Blink sometimes produced br elements with the Apple-interchange-newline class.
3229
+ - Fixed bug where table cell selection wasn't properly removed when copy/pasting table cells.
3230
+ - Fixed bug where pasting nested list items from Word wouldn't produce proper semantic nested lists.
3231
+ - Fixed bug where right clicking using the contextmenu plugin on WebKit/Blink on Mac OS X would select the target current word or line.
3232
+ - Fixed bug where it wasn't possible to alter table cell properties on IE 8 using the context menu.
3233
+ - Fixed bug where the resize helper wouldn't be correctly positioned on older IE versions.
3234
+ - Fixed bug where fullpage plugin would produce an error if you didn't specify a doctype encoding.
3235
+ - Fixed bug where anchor plugin would get the name/id of the current element even if it wasn't anchor element.
3236
+ - Fixed bug where visual aids for tables wouldn't be properly disabled when changing the border size.
3237
+ - Fixed bug where some control selection events wasn't properly fired on older IE versions.
3238
+ - Fixed bug where table cell selection on older IE versions would prevent resizing of images.
3239
+ - Fixed bug with paste_data_images paste option not working properly on modern IE versions.
3240
+ - Fixed bug where custom elements with underscores in the name wasn't properly parsed/serialized.
3241
+ - Fixed bug where applying inline formats to nested list elements would produce an incorrect formatting result.
3242
+ - Fixed so it's possible to hide items from elements path by using preventDefault/stopPropagation.
3243
+ - Fixed so inline mode toolbar gets rendered right aligned if the editable element positioned to the documents right edge.
3244
+ - Fixed so empty inline elements inside empty block elements doesn't get removed if configured to be kept intact.
3245
+ - Fixed so DomQuery parentsUntil/prevUntil/nextUntil supports selectors/elements/filters etc.
3246
+ - Fixed so legacyoutput plugin overrides fontselect and fontsizeselect controls and handles font elements properly.
3247
+
3248
+ ## 4.1.0 - 2014-06-18
3249
+
3250
+ ### Added
3251
+ - Added new file_picker_callback option to replace the old file_browser_callback the latter will still work though.
3252
+ - Added new custom colors to textcolor plugin will be displayed if a color picker is provided also shows the latest colors.
3253
+ - Added new color_picker_callback option to enable you to add custom color pickers to the editor.
3254
+ - Added new advanced tabs to table/cell/row dialogs to enable you to select colors for border/background.
3255
+ - Added new colorpicker plugin that lets you select colors from a hsv color picker.
3256
+ - Added new tinymce.util.Color class to handle color parsing and converting.
3257
+ - Added new colorpicker UI widget element lets you add a hsv color picker to any form/window.
3258
+ - Added new textpattern plugin that allows you to use markdown like text patterns to format contents.
3259
+ - Added new resize helper element that shows the current width & height while resizing.
3260
+ - Added new "once" method to Editor and EventDispatcher enables since callback execution events.
3261
+ - Added new jQuery like class under tinymce.dom.DomQuery it's exposed on editor instances (editor.$) and globally under (tinymce.$).
3262
+
3263
+ ### Fixed
3264
+ - Fixed so the default resize method for images are proportional shift/ctrl can be used to make an unproportional size.
3265
+ - Fixed bug where the image_dimensions option of the image plugin would cause exceptions when it tried to update the size.
3266
+ - Fixed bug where table cell dialog class field wasn't properly updated when editing an a table cell with an existing class.
3267
+ - Fixed bug where Safari on Mac would produce webkit-fake-url for pasted images so these are now removed.
3268
+ - Fixed bug where the nodeChange event would get fired before the selection was changed when clicking inside the current selection range.
3269
+ - Fixed bug where valid_classes option would cause exception when it removed internal prefixed classes like mce-item-.
3270
+ - Fixed bug where backspace would cause navigation in IE 8 on an inline element and after a caret formatting was applied.
3271
+ - Fixed so placeholder images produced by the media plugin gets selected when inserted/edited.
3272
+ - Fixed so it's possible to drag in images when the paste_data_images option is enabled. Might be useful for mail clients.
3273
+ - Fixed so images doesn't get a width/height applied if the image_dimensions option is set to false useful for responsive contents.
3274
+ - Fixed so it's possible to pass in an optional arguments object for the nodeChanged function to be passed to all nodechange event listeners.
3275
+ - Fixed bug where media plugin embed code didn't update correctly.