@schukai/monster 3.64.1 → 3.65.20

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 (395) hide show
  1. package/CHANGELOG.md +92 -318
  2. package/README.md +44 -40
  3. package/package.json +1 -47
  4. package/source/components/constants.mjs +10 -3
  5. package/source/components/datatable/change-button.mjs +12 -5
  6. package/source/components/datatable/columnbar.mjs +10 -1
  7. package/source/components/datatable/constants.mjs +11 -4
  8. package/source/components/datatable/dataset.mjs +10 -1
  9. package/source/components/datatable/datasource/dom.mjs +14 -1
  10. package/source/components/datatable/datasource/rest.mjs +10 -1
  11. package/source/components/datatable/datasource.mjs +10 -1
  12. package/source/components/datatable/datatable/header.mjs +12 -3
  13. package/source/components/datatable/datatable.mjs +757 -752
  14. package/source/components/datatable/embedded-pagination.mjs +10 -1
  15. package/source/components/datatable/filter/abstract-base.mjs +10 -1
  16. package/source/components/datatable/filter/date-range.mjs +10 -1
  17. package/source/components/datatable/filter/input.mjs +10 -1
  18. package/source/components/datatable/filter/range.mjs +10 -1
  19. package/source/components/datatable/filter/select.mjs +11 -4
  20. package/source/components/datatable/filter/settings.mjs +14 -0
  21. package/source/components/datatable/filter/util.mjs +14 -0
  22. package/source/components/datatable/filter-button.mjs +10 -1
  23. package/source/components/datatable/filter.mjs +11 -3
  24. package/source/components/datatable/pagination.mjs +14 -5
  25. package/source/components/datatable/save-button.mjs +279 -270
  26. package/source/components/datatable/status.mjs +10 -1
  27. package/source/components/datatable/style/dataset.pcss +1 -0
  28. package/source/components/datatable/style/datatable.pcss +1 -0
  29. package/source/components/datatable/stylesheet/change-button.mjs +16 -7
  30. package/source/components/datatable/stylesheet/column-bar.mjs +16 -7
  31. package/source/components/datatable/stylesheet/dataset.mjs +17 -8
  32. package/source/components/datatable/stylesheet/datasource.mjs +16 -7
  33. package/source/components/datatable/stylesheet/datatable.mjs +17 -8
  34. package/source/components/datatable/stylesheet/embedded-pagination.mjs +16 -7
  35. package/source/components/datatable/stylesheet/filter-button.mjs +16 -7
  36. package/source/components/datatable/stylesheet/filter-controls-defaults.mjs +16 -7
  37. package/source/components/datatable/stylesheet/filter-date-range.mjs +16 -7
  38. package/source/components/datatable/stylesheet/filter-range.mjs +16 -7
  39. package/source/components/datatable/stylesheet/filter.mjs +16 -7
  40. package/source/components/datatable/stylesheet/pagination.mjs +16 -7
  41. package/source/components/datatable/stylesheet/save-button.mjs +16 -7
  42. package/source/components/datatable/stylesheet/select-filter.mjs +16 -7
  43. package/source/components/datatable/stylesheet/status.mjs +16 -7
  44. package/source/components/datatable/util.mjs +16 -8
  45. package/source/components/form/action-button.mjs +11 -3
  46. package/source/components/form/api-button.mjs +11 -3
  47. package/source/components/form/button-bar.mjs +11 -3
  48. package/source/components/form/button.mjs +37 -50
  49. package/source/components/form/confirm-button.mjs +11 -3
  50. package/source/components/form/constants.mjs +10 -3
  51. package/source/components/form/context-error.mjs +69 -52
  52. package/source/components/form/context-help.mjs +11 -3
  53. package/source/components/form/field-set.mjs +295 -0
  54. package/source/components/form/form.mjs +12 -4
  55. package/source/components/form/message-state-button.mjs +11 -3
  56. package/source/components/form/popper-button.mjs +11 -3
  57. package/source/components/form/popper.mjs +13 -480
  58. package/source/components/form/reload.mjs +12 -4
  59. package/source/components/form/select.mjs +44 -33
  60. package/source/components/form/shadow-reload.mjs +11 -3
  61. package/source/components/form/state-button.mjs +11 -3
  62. package/source/components/form/style/field-set.pcss +13 -0
  63. package/source/components/form/stylesheet/action-button.mjs +16 -7
  64. package/source/components/form/stylesheet/api-button.mjs +16 -7
  65. package/source/components/form/stylesheet/button-bar.mjs +17 -8
  66. package/source/components/form/stylesheet/button.mjs +16 -7
  67. package/source/components/form/stylesheet/confirm-button.mjs +17 -8
  68. package/source/components/form/stylesheet/context-error.mjs +16 -7
  69. package/source/components/form/stylesheet/context-help.mjs +16 -7
  70. package/source/components/form/stylesheet/field-set.mjs +40 -0
  71. package/source/components/form/stylesheet/form.mjs +17 -8
  72. package/source/components/form/stylesheet/message-state-button.mjs +16 -7
  73. package/source/components/form/stylesheet/popper-button.mjs +16 -7
  74. package/source/components/form/stylesheet/select.mjs +16 -7
  75. package/source/components/form/stylesheet/state-button.mjs +16 -7
  76. package/source/components/form/stylesheet/toggle-switch.mjs +16 -7
  77. package/source/components/form/stylesheet/tree-select.mjs +16 -7
  78. package/source/components/form/tabs.mjs +12 -8
  79. package/source/components/form/template.mjs +11 -3
  80. package/source/components/form/toggle-switch.mjs +12 -8
  81. package/source/components/form/tree-select.mjs +10 -3
  82. package/source/components/form/types/state.mjs +10 -3
  83. package/source/components/form/util/fetch.mjs +10 -3
  84. package/source/components/form/util/floating-ui.mjs +10 -3
  85. package/source/components/form/util/popper.mjs +10 -3
  86. package/source/components/host/call-button.mjs +10 -1
  87. package/source/components/host/collapse.mjs +15 -519
  88. package/source/components/host/config-manager.mjs +10 -1
  89. package/source/components/host/constants.mjs +11 -4
  90. package/source/components/host/details.mjs +14 -256
  91. package/source/components/host/host.mjs +10 -1
  92. package/source/components/host/overlay.mjs +10 -1
  93. package/source/components/host/stylesheet/call-button.mjs +16 -7
  94. package/source/components/host/stylesheet/config-manager.mjs +16 -7
  95. package/source/components/host/stylesheet/host.mjs +17 -8
  96. package/source/components/host/stylesheet/overlay.mjs +17 -8
  97. package/source/components/host/stylesheet/toggle-button.mjs +16 -7
  98. package/source/components/host/stylesheet/viewer.mjs +16 -7
  99. package/source/components/host/toggle-button.mjs +10 -1
  100. package/source/components/host/util.mjs +14 -0
  101. package/source/components/host/viewer.mjs +10 -1
  102. package/source/components/layout/collapse.mjs +543 -0
  103. package/source/components/layout/details.mjs +273 -0
  104. package/source/components/layout/panel.mjs +179 -169
  105. package/source/components/layout/popper.mjs +480 -0
  106. package/source/components/layout/split-panel.mjs +329 -303
  107. package/source/components/{host → layout}/stylesheet/collapse.mjs +16 -7
  108. package/source/components/{host → layout}/stylesheet/details.mjs +16 -7
  109. package/source/components/layout/stylesheet/panel.mjs +16 -7
  110. package/source/components/{form → layout}/stylesheet/popper.mjs +16 -7
  111. package/source/components/layout/stylesheet/split-panel.mjs +16 -7
  112. package/source/components/layout/stylesheet/tabs.mjs +16 -7
  113. package/source/components/layout/stylesheet/width-toggle.mjs +16 -7
  114. package/source/components/layout/tabs.mjs +38 -23
  115. package/source/components/layout/width-toggle.mjs +150 -140
  116. package/source/components/navigation/style/table-of-content.pcss +99 -0
  117. package/source/components/navigation/stylesheet/table-of-content.mjs +40 -0
  118. package/source/components/navigation/table-of-content.mjs +546 -0
  119. package/source/components/notify/constants.mjs +10 -3
  120. package/source/components/notify/message.mjs +16 -9
  121. package/source/components/notify/notify.mjs +11 -4
  122. package/source/components/notify/stylesheet/message.mjs +16 -7
  123. package/source/components/notify/stylesheet/notify.mjs +16 -7
  124. package/source/components/state/log/entry.mjs +10 -1
  125. package/source/components/state/log.mjs +10 -1
  126. package/source/components/state/state.mjs +10 -1
  127. package/source/components/state/stylesheet/log.mjs +16 -7
  128. package/source/components/state/stylesheet/state.mjs +17 -8
  129. package/source/components/style/link.pcss +0 -1
  130. package/source/components/style/mixin/form.pcss +0 -1
  131. package/source/components/style/mixin/typography.pcss +7 -7
  132. package/source/components/style/typography.pcss +1 -1
  133. package/source/components/stylesheet/badge.mjs +16 -7
  134. package/source/components/stylesheet/border.mjs +16 -7
  135. package/source/components/stylesheet/button.mjs +16 -7
  136. package/source/components/stylesheet/card.mjs +16 -7
  137. package/source/components/stylesheet/color.mjs +16 -7
  138. package/source/components/stylesheet/common.mjs +16 -7
  139. package/source/components/stylesheet/control.mjs +16 -7
  140. package/source/components/stylesheet/data-grid.mjs +16 -7
  141. package/source/components/stylesheet/display.mjs +16 -7
  142. package/source/components/stylesheet/floating-ui.mjs +16 -7
  143. package/source/components/stylesheet/form.mjs +16 -7
  144. package/source/components/stylesheet/host.mjs +16 -7
  145. package/source/components/stylesheet/icons.mjs +16 -7
  146. package/source/components/stylesheet/link.mjs +16 -7
  147. package/source/components/stylesheet/mixin/badge.mjs +16 -7
  148. package/source/components/stylesheet/mixin/button.mjs +16 -7
  149. package/source/components/stylesheet/mixin/form.mjs +16 -7
  150. package/source/components/stylesheet/mixin/hover.mjs +16 -7
  151. package/source/components/stylesheet/mixin/icon.mjs +16 -7
  152. package/source/components/stylesheet/mixin/media.mjs +16 -7
  153. package/source/components/stylesheet/mixin/property.mjs +16 -7
  154. package/source/components/stylesheet/mixin/skeleton.mjs +16 -7
  155. package/source/components/stylesheet/mixin/spinner.mjs +16 -7
  156. package/source/components/stylesheet/mixin/typography.mjs +16 -7
  157. package/source/components/stylesheet/normalize.mjs +16 -7
  158. package/source/components/stylesheet/popper.mjs +16 -7
  159. package/source/components/stylesheet/property.mjs +16 -7
  160. package/source/components/stylesheet/ripple.mjs +16 -7
  161. package/source/components/stylesheet/skeleton.mjs +16 -7
  162. package/source/components/stylesheet/space.mjs +16 -7
  163. package/source/components/stylesheet/spinner.mjs +16 -7
  164. package/source/components/stylesheet/table.mjs +16 -7
  165. package/source/components/stylesheet/theme.mjs +16 -7
  166. package/source/components/stylesheet/tree-menu.mjs +10 -3
  167. package/source/components/stylesheet/typography.mjs +17 -8
  168. package/source/components/tree-menu/stylesheet/tree-menu.mjs +16 -7
  169. package/source/components/tree-menu/tree-menu.mjs +19 -8
  170. package/source/constants.mjs +10 -6
  171. package/source/constraints/abstract.mjs +10 -3
  172. package/source/constraints/abstractoperator.mjs +10 -3
  173. package/source/constraints/andoperator.mjs +10 -3
  174. package/source/constraints/invalid.mjs +10 -3
  175. package/source/constraints/isarray.mjs +10 -3
  176. package/source/constraints/isobject.mjs +10 -3
  177. package/source/constraints/oroperator.mjs +10 -3
  178. package/source/constraints/valid.mjs +10 -3
  179. package/source/data/buildmap.mjs +10 -3
  180. package/source/data/buildtree.mjs +10 -3
  181. package/source/data/datasource/dom.mjs +10 -3
  182. package/source/data/datasource/server/restapi/data-fetch-error.mjs +10 -3
  183. package/source/data/datasource/server/restapi/writeerror.mjs +10 -3
  184. package/source/data/datasource/server/restapi.mjs +10 -3
  185. package/source/data/datasource/server/webconnect.mjs +10 -3
  186. package/source/data/datasource/server.mjs +10 -3
  187. package/source/data/datasource/storage/localstorage.mjs +10 -3
  188. package/source/data/datasource/storage/sessionstorage.mjs +10 -3
  189. package/source/data/datasource/storage.mjs +10 -3
  190. package/source/data/datasource.mjs +10 -3
  191. package/source/data/diff.mjs +10 -3
  192. package/source/data/extend.mjs +10 -3
  193. package/source/data/pathfinder.mjs +10 -3
  194. package/source/data/pipe.mjs +10 -3
  195. package/source/data/transformer.mjs +34 -10
  196. package/source/dom/assembler.mjs +10 -3
  197. package/source/dom/attributes.mjs +10 -3
  198. package/source/dom/constants.mjs +10 -3
  199. package/source/dom/customcontrol.mjs +11 -4
  200. package/source/dom/customelement.mjs +31 -17
  201. package/source/dom/dimension.mjs +10 -3
  202. package/source/dom/events.mjs +10 -3
  203. package/source/dom/focusmanager.mjs +10 -3
  204. package/source/dom/locale.mjs +10 -3
  205. package/source/dom/ready.mjs +11 -4
  206. package/source/dom/resource/data.mjs +10 -3
  207. package/source/dom/resource/link/stylesheet.mjs +10 -3
  208. package/source/dom/resource/link.mjs +10 -3
  209. package/source/dom/resource/script.mjs +10 -3
  210. package/source/dom/resource.mjs +10 -3
  211. package/source/dom/resourcemanager.mjs +10 -3
  212. package/source/dom/slotted.mjs +14 -0
  213. package/source/dom/template.mjs +124 -136
  214. package/source/dom/theme.mjs +10 -3
  215. package/source/dom/updater.mjs +10 -3
  216. package/source/dom/util/extract-keys.mjs +10 -3
  217. package/source/dom/util/init-options-from-attributes.mjs +68 -61
  218. package/source/dom/util/set-option-from-attribute.mjs +10 -3
  219. package/source/dom/util.mjs +11 -4
  220. package/source/dom/worker/factory.mjs +10 -3
  221. package/source/i18n/formatter.mjs +10 -3
  222. package/source/i18n/locale.mjs +10 -3
  223. package/source/i18n/provider.mjs +10 -3
  224. package/source/i18n/providers/embed.mjs +10 -3
  225. package/source/i18n/providers/fetch.mjs +10 -3
  226. package/source/i18n/translations.mjs +10 -3
  227. package/source/logging/handler/console.mjs +10 -3
  228. package/source/logging/handler.mjs +10 -3
  229. package/source/logging/logentry.mjs +10 -3
  230. package/source/logging/logger.mjs +10 -3
  231. package/source/math/random.mjs +10 -3
  232. package/source/monster.mjs +8 -93
  233. package/source/net/webconnect/message.mjs +10 -3
  234. package/source/net/webconnect.mjs +20 -5
  235. package/source/text/bracketed-key-value-hash.mjs +10 -3
  236. package/source/text/formatter.mjs +10 -3
  237. package/source/text/generate-range-comparison-expression.mjs +10 -3
  238. package/source/text/util.mjs +14 -0
  239. package/source/types/base.mjs +10 -3
  240. package/source/types/basewithoptions.mjs +10 -3
  241. package/source/types/binary.mjs +10 -3
  242. package/source/types/dataurl.mjs +10 -3
  243. package/source/types/global.mjs +14 -7
  244. package/source/types/id.mjs +10 -3
  245. package/source/types/internal.mjs +11 -3
  246. package/source/types/is.mjs +10 -3
  247. package/source/types/mediatype.mjs +10 -3
  248. package/source/types/node.mjs +10 -3
  249. package/source/types/nodelist.mjs +10 -3
  250. package/source/types/noderecursiveiterator.mjs +10 -3
  251. package/source/types/observablequeue.mjs +10 -3
  252. package/source/types/observer.mjs +10 -3
  253. package/source/types/observerlist.mjs +10 -3
  254. package/source/types/proxyobserver.mjs +14 -5
  255. package/source/types/queue.mjs +10 -3
  256. package/source/types/randomid.mjs +10 -3
  257. package/source/types/regex.mjs +10 -3
  258. package/source/types/stack.mjs +10 -3
  259. package/source/types/tokenlist.mjs +10 -3
  260. package/source/types/typeof.mjs +10 -3
  261. package/source/types/uniquequeue.mjs +10 -3
  262. package/source/types/uuid.mjs +10 -3
  263. package/source/types/validate.mjs +10 -3
  264. package/source/types/version.mjs +11 -4
  265. package/source/util/clone.mjs +10 -3
  266. package/source/util/comparator.mjs +10 -3
  267. package/source/util/deadmansswitch.mjs +10 -3
  268. package/source/util/freeze.mjs +10 -3
  269. package/source/util/processing.mjs +10 -3
  270. package/source/util/runtime.mjs +10 -7
  271. package/source/util/sleep.mjs +10 -10
  272. package/source/util/trimspaces.mjs +10 -3
  273. package/test/cases/data/datasource/server/websocket.mjs +7 -9
  274. package/test/cases/data/transformer.mjs +47 -15
  275. package/test/cases/dom/customcontrol.mjs +0 -1
  276. package/test/cases/dom/customelement.mjs +1 -3
  277. package/test/cases/dom/template.mjs +3 -1
  278. package/test/cases/monster.mjs +1 -1
  279. package/test/util/jsdom.mjs +8 -7
  280. package/test/util/websocket.mjs +5 -1
  281. package/test/web/import.js +2 -1
  282. package/test/web/puppeteer.mjs +111 -0
  283. package/test/web/test.html +2 -2
  284. package/test/web/tests.js +2039 -1192
  285. package/example/components/form/button.mjs +0 -10
  286. package/example/components/form/select.mjs +0 -25
  287. package/example/components/form/toggle-switch.mjs +0 -7
  288. package/example/components/form/tree-select.mjs +0 -27
  289. package/example/components/host/host.mjs +0 -0
  290. package/example/components/notify/message.mjs +0 -4
  291. package/example/components/notify/notify.mjs +0 -4
  292. package/example/components/state/log.mjs +0 -0
  293. package/example/components/state/state.mjs +0 -0
  294. package/example/constraints/andoperator.mjs +0 -17
  295. package/example/constraints/invalid.mjs +0 -6
  296. package/example/constraints/isarray.mjs +0 -11
  297. package/example/constraints/isobject.mjs +0 -12
  298. package/example/constraints/oroperator.mjs +0 -15
  299. package/example/constraints/valid.mjs +0 -6
  300. package/example/data/buildmap.mjs +0 -67
  301. package/example/data/datasource/server/restapi.mjs +0 -20
  302. package/example/data/datasource/server/webconnect.mjs +0 -9
  303. package/example/data/datasource.mjs +0 -7
  304. package/example/data/diff.mjs +0 -39
  305. package/example/data/pathfinder-1.mjs +0 -23
  306. package/example/data/pathfinder-2.mjs +0 -19
  307. package/example/data/pipe.mjs +0 -14
  308. package/example/data/transformer.mjs +0 -9
  309. package/example/dom/customelement.mjs +0 -14
  310. package/example/dom/theme.mjs +0 -5
  311. package/example/dom/updater.mjs +0 -23
  312. package/example/i18n/formatter.mjs +0 -10
  313. package/example/i18n/providers/embed.mjs +0 -5
  314. package/example/i18n/providers/fetch.mjs +0 -5
  315. package/example/i18n/translations.mjs +0 -20
  316. package/example/net/webconnect.mjs +0 -16
  317. package/example/types/basewithoptions.mjs +0 -10
  318. package/example/types/is-1.mjs +0 -5
  319. package/example/types/is-10.mjs +0 -6
  320. package/example/types/is-2.mjs +0 -4
  321. package/example/types/is-3.mjs +0 -4
  322. package/example/types/is-4.mjs +0 -5
  323. package/example/types/is-5.mjs +0 -4
  324. package/example/types/is-6.mjs +0 -4
  325. package/example/types/is-7.mjs +0 -4
  326. package/example/types/is-8.mjs +0 -4
  327. package/example/types/is-9.mjs +0 -6
  328. package/example/types/noderecursiveiterator.mjs +0 -32
  329. package/example/types/observer.mjs +0 -9
  330. package/example/types/proxyobserver.mjs +0 -25
  331. package/example/types/queue.mjs +0 -20
  332. package/example/types/tokenlist-1.mjs +0 -4
  333. package/example/types/tokenlist-2.mjs +0 -7
  334. package/example/types/tokenlist-3.mjs +0 -5
  335. package/example/types/tokenlist-4.mjs +0 -5
  336. package/example/types/tokenlist-5.mjs +0 -5
  337. package/example/types/typeof.mjs +0 -9
  338. package/example/types/version-1.mjs +0 -6
  339. package/example/types/version-2.mjs +0 -3
  340. package/example/util/comparator.mjs +0 -10
  341. package/example/util/deadmansswitch.mjs +0 -9
  342. package/example/util/processing.mjs +0 -17
  343. package/source/components/datatable/datasource/namespace.mjs +0 -13
  344. package/source/components/datatable/datatable/namespace.mjs +0 -13
  345. package/source/components/datatable/events.mjs +0 -24
  346. package/source/components/datatable/filter/namespace.mjs +0 -13
  347. package/source/components/datatable/namespace.mjs +0 -11
  348. package/source/components/datatable/stylesheet/namespace.mjs +0 -13
  349. package/source/components/events.mjs +0 -17
  350. package/source/components/form/events.mjs +0 -108
  351. package/source/components/form/form-field.mjs +0 -341
  352. package/source/components/form/namespace.mjs +0 -13
  353. package/source/components/form/style/form-field.pcss +0 -4
  354. package/source/components/form/stylesheet/form-field.mjs +0 -31
  355. package/source/components/form/stylesheet/namespace.mjs +0 -13
  356. package/source/components/form/types/namespace.mjs +0 -13
  357. package/source/components/form/util/namespace.mjs +0 -13
  358. package/source/components/host/events.mjs +0 -131
  359. package/source/components/host/namespace.mjs +0 -13
  360. package/source/components/host/stylesheet/namespace.mjs +0 -13
  361. package/source/components/layout/events.mjs +0 -30
  362. package/source/components/layout/namespace.mjs +0 -13
  363. package/source/components/namespace.mjs +0 -14
  364. package/source/components/notify/events.mjs +0 -15
  365. package/source/components/notify/namespace.mjs +0 -15
  366. package/source/components/notify/stylesheet/namespace.mjs +0 -15
  367. package/source/components/state/log/namespace.mjs +0 -13
  368. package/source/components/state/namespace.mjs +0 -13
  369. package/source/components/stylesheet/namespace.mjs +0 -13
  370. package/source/components/tree-menu/namespace.mjs +0 -13
  371. package/source/components/tree-menu/stylesheet/namespace.mjs +0 -13
  372. package/source/constraints/namespace.mjs +0 -13
  373. package/source/data/datasource/namespace.mjs +0 -13
  374. package/source/data/datasource/server/namespace.mjs +0 -13
  375. package/source/data/datasource/server/restapi/namespace.mjs +0 -13
  376. package/source/data/datasource/storage/namespace.mjs +0 -13
  377. package/source/data/namespace.mjs +0 -13
  378. package/source/dom/namespace.mjs +0 -13
  379. package/source/dom/resource/link/namespace.mjs +0 -13
  380. package/source/dom/resource/namespace.mjs +0 -13
  381. package/source/dom/util/namespace.mjs +0 -13
  382. package/source/dom/worker/namespace.mjs +0 -13
  383. package/source/i18n/namespace.mjs +0 -13
  384. package/source/i18n/providers/namespace.mjs +0 -13
  385. package/source/logging/handler/namespace.mjs +0 -11
  386. package/source/logging/namespace.mjs +0 -13
  387. package/source/math/namespace.mjs +0 -13
  388. package/source/net/namespace.mjs +0 -13
  389. package/source/net/webconnect/namespace.mjs +0 -13
  390. package/source/text/namespace.mjs +0 -13
  391. package/source/types/namespace.mjs +0 -13
  392. package/source/util/namespace.mjs +0 -13
  393. /package/source/components/{host → layout}/style/collapse.pcss +0 -0
  394. /package/source/components/{host → layout}/style/details.pcss +0 -0
  395. /package/source/components/{form → layout}/style/popper.pcss +0 -0
package/CHANGELOG.md CHANGED
@@ -1,26 +1,94 @@
1
+ # Changelog
2
+
3
+
4
+
5
+ ## [3.65.20] - 2024-06-20
6
+
7
+ ### Bug Fixes
8
+
9
+ - wip new pipeline
10
+ - wip new pipeline
11
+
12
+
13
+
14
+ ## [3.65.19] - 2024-06-20
15
+
16
+ ### Bug Fixes
17
+
18
+ - wip new pipeline
19
+
20
+
21
+
22
+ ## [3.65.18] - 2024-06-20
23
+
24
+ ### Bug Fixes
25
+
26
+ - wip new pipeline
27
+
28
+
29
+
30
+ ## [3.65.17] - 2024-06-20
31
+
32
+ ### Bug Fixes
33
+
34
+ - wip new pipeline
35
+
36
+
37
+
38
+ ## [3.65.16] - 2024-06-20
39
+
40
+ ### Bug Fixes
41
+
42
+ - wip new pipeline
43
+
44
+
45
+
46
+ ## [3.65.15] - 2024-06-20
47
+
48
+
49
+ ## [3.65.3] - 2024-06-19
50
+
51
+ ### Bug Fixes
52
+
53
+ - switch nodejs_22 to nodejs_20
54
+
55
+ ## [3.65.1] - 2024-06-17
56
+
57
+ ### Bug Fixes
58
+
59
+ - close Button fix message.mjs [#197](https://gitlab.schukai.com/oss/libraries/javascript/monster/-/issues/197)
60
+ - remove style add fill="currentColor" in getEmptyTemplate method [#195](https://gitlab.schukai.com/oss/libraries/javascript/monster/-/issues/195)
61
+
62
+ ## [3.65.0] - 2024-04-15
63
+
64
+ ### Add Features
65
+
66
+ - new toc control [#189](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/189)
67
+ - new component field-set [#186](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/186)
68
+
69
+ ### Code Refactoring
70
+
71
+ - move popper to layout namespace [#190](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/190) [#189](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/189)
1
72
 
2
73
  ## [3.64.1] - 2024-04-07
3
74
 
4
75
  ### Bug Fixes
5
76
 
6
- - monster.mjs
77
+ - repair monster.mjs file
78
+
7
79
  ### Changes
8
80
 
9
81
  - update license text
10
82
  - fix import statements
11
- - add showroot files
12
- - add showroot files
13
83
 
14
84
  ## [3.64.0] - 2024-04-04
15
85
 
16
86
  ### Add Features
17
87
 
18
88
  - add new panel and rename switch-screen to switch-panel [#184](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/184)
89
+
19
90
  ### Changes
20
91
 
21
- - release and publish to npm new version 3.64.0
22
- - fix tests
23
- - new command for create-issue, first step for theme generator
24
92
  - test runners are now empowered to run selected files [#166](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/166)
25
93
 
26
94
  ## [3.63.3] - 2024-04-01
@@ -28,21 +96,15 @@
28
96
  ### Bug Fixes
29
97
 
30
98
  - include state-button [#183](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/183)
31
- ### Changes
32
-
33
- - release and publish to npm new version 3.63.3
34
- - update devenv
35
- - update issue templates
36
- - update template and create showroom section
37
99
 
38
100
  ## [3.63.2] - 2024-03-28
39
101
 
40
102
  ### Bug Fixes
41
103
 
42
- - colors and more, add igrnore change to savebutton [#181](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/181) [#180](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/180)
104
+ - colors and more, add ignore change to save button [#181](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/181) [#180](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/180)
105
+
43
106
  ### Changes
44
107
 
45
- - release and publish to npm new version 3.63.2
46
108
  - reorganize playground
47
109
 
48
110
  ## [3.63.1] - 2024-03-27
@@ -50,118 +112,77 @@
50
112
  ### Bug Fixes
51
113
 
52
114
  - [#179](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/179) [#176](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/176)
53
- ### Changes
54
115
 
55
- - release and publish to npm new version 3.63.1
56
116
 
57
117
  ## [3.63.0] - 2024-03-25
58
118
 
59
119
  ### Add Features
60
120
 
61
121
  - add events to dataset methods [#178](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/178)
62
- ### Changes
63
-
64
- - release and publish to npm new version 3.63.0
65
122
 
66
123
  ## [3.62.0] - 2024-03-25
67
124
 
68
125
  ### Add Features
69
126
 
70
127
  - add addRow, removeRow and copyRow [#175](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/175) [#176](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/176) [#177](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/177)
71
- ### Changes
72
128
 
73
- - release and publish to npm new version 3.62.0
74
129
 
75
130
  ## [3.61.0] - 2024-03-24
76
131
 
77
132
  ### Add Features
78
133
 
79
134
  - new methods and tidy [#174](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/174) [#173](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/173)
80
- ### Changes
81
-
82
- - release and publish to npm new version 3.61.0
83
- - update tests and doc
84
- - events
85
135
 
86
136
  ## [3.60.0] - 2024-03-24
87
137
 
88
138
  ### Add Features
89
139
 
90
140
  - min/max for split screen [#172](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/172)
91
- ### Changes
92
141
 
93
- - release and publish to npm new version 3.60.0
94
142
 
95
143
  ## [3.59.1] - 2024-03-23
96
144
 
97
145
  ### Bug Fixes
98
146
 
99
147
  - console log [#171](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/171)
100
- ### Changes
101
-
102
- - release and publish to npm new version 3.59.1
103
148
 
104
149
  ## [3.59.0] - 2024-03-23
105
150
 
106
151
  ### Add Features
107
152
 
108
153
  - new split-screen [#171](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/171)
109
- ### Changes
110
-
111
- - release and publish to npm new version 3.59.0
112
- - update tests and doc
113
154
 
114
155
  ## [3.58.4] - 2024-03-18
115
156
 
116
157
  ### Bug Fixes
117
158
 
118
159
  - store lists [#139](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/139)
119
- ### Changes
120
160
 
121
- - release and publish to npm new version 3.58.4
122
161
 
123
162
  ## [3.58.3] - 2024-03-18
124
163
 
125
164
  ### Bug Fixes
126
165
 
127
166
  - datatable colum with [#143](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/143)
128
- ### Changes
129
-
130
- - release and publish to npm new version 3.58.3
131
167
 
132
168
  ## [3.58.2] - 2024-03-17
133
169
 
134
170
  ### Bug Fixes
135
171
 
136
172
  - playground missing js and remove flex [#144](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/144)
137
- ### Changes
138
173
 
139
- - release and publish to npm new version 3.58.2
140
174
 
141
175
  ## [3.58.1] - 2024-03-17
142
176
 
143
177
  ### Bug Fixes
144
178
 
145
179
  - toggle-switch layout and text [#170](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/170)
146
- ### Changes
147
-
148
- - release and publish to npm new version 3.58.1
149
180
 
150
181
  ## [3.58.0] - 2024-03-17
151
182
 
152
183
  ### Add Features
153
184
 
154
185
  - new select feature emptyValueIfNoOptions [#142](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/142)
155
- ### Changes
156
-
157
- - release and publish to npm new version 3.58.0
158
- - update deploy script
159
- - lint code
160
- - build-webtest
161
- - lint code
162
- - code format
163
- - release and publish to npm new version 3.57.0
164
- - tests and more
165
186
 
166
187
  ## [3.57.0] - 2024-03-06
167
188
 
@@ -170,23 +191,14 @@
170
191
  - [#162](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/162)
171
192
  - new updaterTransformerMethodsSymbol method [#163](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/163)
172
193
  - new updaterTransformerMethodsSymbol method [#163](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/163)
194
+
173
195
  ### Bug Fixes
174
196
 
175
197
  - [#165](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/165)
176
198
  - bind this to callback and fix timing [#158](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/158) [#164](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/164)
177
- - add arrowdown handler [#160](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/160) [#161](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/161)
178
- - add arrowdown handler [#160](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/160) [#161](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/161)
179
- ### Changes
199
+ - add arrow down handler [#160](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/160) [#161](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/161)
200
+ - add arrow down handler [#160](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/160) [#161](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/161)
180
201
 
181
- - tests and more
182
- - fix tests
183
- - updates [#160](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/160)
184
- - whitespace [#160](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/160)
185
- - optimize outline [#160](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/160)
186
- - optimize outline [#160](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/160)
187
- - rename internal function [#160](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/160)
188
- - fix missing fs bug
189
- - release and publish to npm new version 3.56.1
190
202
  ### Documentation
191
203
 
192
204
  - typo [#160](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/160)
@@ -196,49 +208,33 @@
196
208
  ### Bug Fixes
197
209
 
198
210
  - [3] is not the right way [#151](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/151)
199
- ### Changes
200
-
201
- - release and publish to npm new version 3.56.1
202
211
 
203
212
  ## [3.56.0] - 2024-02-26
204
213
 
205
214
  ### Add Features
206
215
 
207
216
  - update datatable controls [#150](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/150) [#149](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/149) [#148](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/148) [#147](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/147) [#146](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/146) [#145](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/145)
208
- ### Changes
209
-
210
- - release and publish to npm new version 3.56.0
211
- - format
212
- - format
213
- - [#144](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/144)
214
217
 
215
218
  ## [3.55.6] - 2024-01-26
216
219
 
217
220
  ### Bug Fixes
218
221
 
219
222
  - wrong font family for tab buttons [#140](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/140)
220
- ### Changes
221
223
 
222
- - release and publish to npm new version 3.55.6
223
224
 
224
225
  ## [3.55.5] - 2024-01-24
225
226
 
226
227
  ### Bug Fixes
227
228
 
228
229
  - predefine order in datatable [#138](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/138)
229
- ### Changes
230
230
 
231
- - release and publish to npm new version 3.55.5
232
231
 
233
232
  ## [3.55.4] - 2024-01-24
234
233
 
235
234
  ### Bug Fixes
236
235
 
237
236
  - add gap to button [#137](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/137)
238
- ### Changes
239
237
 
240
- - release and publish to npm new version 3.55.4
241
- - update tests
242
238
 
243
239
  ## [3.55.3] - 2024-01-23
244
240
 
@@ -247,18 +243,13 @@
247
243
  - fix loading select [#135](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/135)
248
244
  - reset config [#136](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/136)
249
245
  - reset config [#136](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/136)
250
- ### Changes
251
-
252
- - release and publish to npm new version 3.55.3
253
246
 
254
247
  ## [3.55.2] - 2024-01-22
255
248
 
256
249
  ### Bug Fixes
257
250
 
258
251
  - double fetch [#134](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/134)
259
- ### Changes
260
252
 
261
- - release and publish to npm new version 3.55.2
262
253
 
263
254
  ## [3.55.1] - 2024-01-22
264
255
 
@@ -267,41 +258,25 @@
267
258
  - catch errors [#133](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/133)
268
259
  - catch errors [#133](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/133)
269
260
  - check parameter [#132](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/132)
270
- ### Changes
271
-
272
- - release and publish to npm new version 3.55.1
273
- - doc
274
- - lint + formatt
275
- - update nixos to 23-11
276
261
 
277
262
  ## [3.55.0] - 2023-11-29
278
263
 
279
264
  ### Add Features
280
265
 
281
266
  - various changes [#131](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/131)
282
- ### Changes
283
-
284
- - release and publish to npm new version 3.55.0
285
267
 
286
268
  ## [3.54.0] - 2023-11-23
287
269
 
288
270
  ### Add Features
289
271
 
290
272
  - new closeOnSelect feature
291
- ### Changes
292
-
293
- - release and publish to npm new version 3.54.0
294
273
 
295
274
  ## [3.53.0] - 2023-11-11
296
275
 
297
276
  ### Add Features
298
277
 
299
278
  - new icons (css) [#130](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/130)
300
- ### Changes
301
279
 
302
- - release and publish to npm new version 3.53.0
303
- - tidy code
304
- - tidy code
305
280
 
306
281
  ## [3.52.1] - 2023-11-05
307
282
 
@@ -309,9 +284,6 @@
309
284
 
310
285
  - only 10 tabs can be activated [#129](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/129)
311
286
  - fix some css bugs [#128](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/128)
312
- ### Changes
313
-
314
- - release and publish to npm new version 3.52.1
315
287
 
316
288
  ## [3.52.0] - 2023-11-03
317
289
 
@@ -319,37 +291,12 @@
319
291
 
320
292
  - integrate components, test, example and code [#127](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/127)
321
293
  - integrate components in monster [#127](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/127)
322
- ### Changes
323
-
324
- - release and publish to npm new version 3.52.0
325
- - documentation
326
- - update documentation
327
- - add aws doc update to tasks [#126](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/126)
328
- - code tidy and update web test
329
- - code lint
330
- - lint and format
331
- - code tidy
332
-
333
- ## [3.51.5] - 2023-11-01
334
-
335
- ### Bug Fixes
336
-
337
- - release process
338
- ### Changes
339
-
340
- - release and publish to npm new version 3.51.5
341
- - restore devDependencies
342
- - update release process
343
- - conversion of the repos to nix packagemanger [#125](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/125)
344
294
 
345
295
  ## [v3.51.4] - 2023-06-19
346
296
 
347
297
  ### Bug Fixes
348
298
 
349
299
  - case if value === null
350
- ### Changes
351
-
352
- - update packages
353
300
 
354
301
  ## [v3.51.3] - 2023-06-19
355
302
 
@@ -369,32 +316,20 @@
369
316
 
370
317
  - issue [#121](https://gitlab.schukai.com/oss/libraries/javascript/monster/issues/121) bug in extractKeys
371
318
 
372
- ## [v3.51.0] - 2023-06-15
373
-
374
- ### Changes
375
-
376
- - update doc
377
-
378
319
  ## [v3.50.0] - 2023-05-24
379
320
 
380
321
  ### Add Features
381
322
 
382
323
  - new datetimeformat
383
- ### Changes
384
-
385
- - update and format
386
324
 
387
325
  ## [v3.49.0] - 2023-05-07
388
326
 
389
- ### Changes
390
-
391
- - update docs and struct
392
-
393
327
  ## [v3.48.0] - 2023-05-07
394
328
 
395
329
  ### Bug Fixes
396
330
 
397
331
  - tests
332
+
398
333
  ### Code Refactoring
399
334
 
400
335
  - initCustomControlOptionCallback -> initCustomControlCallback
@@ -407,15 +342,9 @@
407
342
 
408
343
  ## [v3.46.0] - 2023-05-02
409
344
 
410
- ### Bug Fixes
411
-
412
- - tests
413
- ### Changes
414
-
415
- - update packages
416
345
  ### Code Refactoring
417
346
 
418
- - attribute and form improvments
347
+ - attribute and form improvements
419
348
 
420
349
  ## [v3.44.1] - 2023-05-01
421
350
 
@@ -425,9 +354,6 @@
425
354
 
426
355
  ## [v3.44.0] - 2023-05-01
427
356
 
428
- ### Changes
429
-
430
- - doc
431
357
  ### Code Refactoring
432
358
 
433
359
  - monitor all attribute changes
@@ -444,23 +370,11 @@
444
370
 
445
371
  - watch only if Object.keys(self[attributeObserverSymbol].length > 0)
446
372
 
447
- ## [v3.42.0] - 2023-04-03
448
-
449
- ### Changes
450
-
451
- - update
452
-
453
- ## [v3.41.0] - 2023-04-03
454
-
455
- ### Changes
456
-
457
- - update
458
-
459
373
  ## [v3.40.0] - 2023-04-03
460
374
 
461
375
  ### Add Features
462
376
 
463
- - attribure observer
377
+ - attribute observer
464
378
 
465
379
  ## [v3.39.1] - 2023-04-03
466
380
 
@@ -478,10 +392,7 @@
478
392
 
479
393
  ### Bug Fixes
480
394
 
481
- - case senstive options work now
482
- ### Changes
483
-
484
- - doc
395
+ - case sensitive options work now
485
396
 
486
397
  ## [v3.38.0] - 2023-04-03
487
398
 
@@ -522,23 +433,11 @@
522
433
 
523
434
  - invalid input throws TypeError
524
435
 
525
- ## [v3.35.0] - 2023-03-27
526
-
527
- ### Changes
528
-
529
- - tidy and doc
530
- ### Documentation
531
-
532
- - update
533
-
534
436
  ## [v3.34.0] - 2023-03-27
535
437
 
536
438
  ### Add Features
537
439
 
538
440
  - new function detectRuntimeEnvironment and convertToPixels
539
- ### Changes
540
-
541
- - update packages
542
441
 
543
442
  ## [v3.33.0] - 2023-03-26
544
443
 
@@ -554,7 +453,6 @@
554
453
 
555
454
  ### Add Features
556
455
 
557
- - \undefined and \null are special values
558
456
  - \undefined and \null are special values
559
457
 
560
458
  ## [v3.31.1] - 2023-03-20
@@ -575,36 +473,24 @@
575
473
  ### Add Features
576
474
 
577
475
  - add util.findElementWithIdUpwards
578
- ### Changes
579
-
580
- - update packages
581
476
 
582
477
  ## [v3.29.0] - 2023-03-16
583
478
 
584
479
  ### Add Features
585
480
 
586
- - customevents are composed and should bubble across shadowRoot
587
- ### Changes
588
-
589
- - update packages
481
+ - custom events are composed and should bubble across shadowRoot
590
482
 
591
483
  ## [v3.28.0] - 2023-03-14
592
484
 
593
485
  ### Add Features
594
486
 
595
487
  - customcontrol.updatei18n can now plural rules
596
- ### Changes
597
-
598
- - update packages
599
488
 
600
489
  ## [v3.27.0] - 2023-03-14
601
490
 
602
491
  ### Add Features
603
492
 
604
493
  - add instance getter
605
- ### Changes
606
-
607
- - update packages
608
494
 
609
495
  ## [v3.26.0] - 2023-03-08
610
496
 
@@ -612,9 +498,6 @@
612
498
 
613
499
  - prevent has already defined error
614
500
 
615
- ## [v3.25.0] - 2023-03-07
616
-
617
-
618
501
  ## [v3.24.0] - 2023-03-07
619
502
 
620
503
  ### Add Features
@@ -626,6 +509,7 @@
626
509
  ### Add Features
627
510
 
628
511
  - template mapping
512
+
629
513
  ### Bug Fixes
630
514
 
631
515
  - rebuild template insert hack
@@ -640,13 +524,10 @@
640
524
 
641
525
  ### Add Features
642
526
 
643
- - check if element is in a shadowroot.
527
+ - check if element is in a shadowRoot.
644
528
 
645
529
  ## [v3.21.1] - 2023-03-07
646
530
 
647
- ### Changes
648
-
649
- - update packages
650
531
  ### Code Refactoring
651
532
 
652
533
  - change fkt name internalTemplateLookUP git s
@@ -683,11 +564,6 @@
683
564
 
684
565
  ## [v3.16.1] - 2023-02-26
685
566
 
686
- ### Changes
687
-
688
- - update year
689
- - add pipe and i18n test
690
-
691
567
  ## [v3.16.0] - 2023-02-26
692
568
 
693
569
  ### Add Features
@@ -753,6 +629,7 @@
753
629
  ### Add Features
754
630
 
755
631
  - add callback configuration to restapi
632
+ -
756
633
  ### Changes
757
634
 
758
635
  - update npm
@@ -762,7 +639,7 @@
762
639
 
763
640
  ### Bug Fixes
764
641
 
765
- - make exeption messages more readable
642
+ - make exception messages more readable
766
643
 
767
644
  ## [v3.10.0] - 2023-02-04
768
645
 
@@ -781,6 +658,7 @@
781
658
  ### Add Features
782
659
 
783
660
  - document translations
661
+
784
662
  ### Bug Fixes
785
663
 
786
664
  - optimize i18n: transformer
@@ -795,11 +673,6 @@
795
673
  ### Add Features
796
674
 
797
675
  - pathfinder now works with array
798
- ### Changes
799
-
800
- - code format (rome)
801
- - doc
802
- - docs
803
676
 
804
677
  ## [v3.7.0] - 2023-01-26
805
678
 
@@ -822,6 +695,7 @@
822
695
 
823
696
  - check the navigator languages too
824
697
  - new embed i18n provider
698
+ -
825
699
  ### Bug Fixes
826
700
 
827
701
  - doc
@@ -836,11 +710,6 @@
836
710
  ### Bug Fixes
837
711
 
838
712
  - error in the status processing
839
- ### Changes
840
-
841
- - update makefiles
842
- - update makefiles
843
- - doc
844
713
 
845
714
  ## [v3.4.1] - 2023-01-08
846
715
 
@@ -853,9 +722,6 @@
853
722
  ### Add Features
854
723
 
855
724
  - add new layer class Server
856
- ### Changes
857
-
858
- - remove unused code
859
725
 
860
726
  ## [v3.3.0] - 2023-01-07
861
727
 
@@ -866,9 +732,6 @@
866
732
  - new Class
867
733
  - new Webconnect and Message
868
734
  - new Webconnect and Message
869
- ### Changes
870
-
871
- - doc
872
735
 
873
736
  ## [v3.2.0] - 2023-01-06
874
737
 
@@ -898,20 +761,9 @@
898
761
 
899
762
  - return error in test
900
763
  - missing callbacks
901
- ### Changes
902
-
903
- - tests
904
- - administration changes
905
- - doc
906
- - remove unused import
907
- - doc + tidy
908
764
 
909
765
  ## [v3.0.0] - 2023-01-04
910
766
 
911
- ### Changes
912
-
913
- - update web tests
914
-
915
767
  ## [v2.2.1] - 2023-01-03
916
768
 
917
769
  ### Bug Fixes
@@ -924,10 +776,6 @@
924
776
  ### Add Features
925
777
 
926
778
  - internalDataSymbol is now global symbol
927
- ### Changes
928
-
929
- - update npm packages
930
- - add doc
931
779
 
932
780
  ## [v2.1.1] - 2022-12-30
933
781
 
@@ -941,81 +789,7 @@
941
789
 
942
790
  - implement instanceof for multi realm
943
791
 
944
- ## [v2.0.16] - 2022-10-31
945
-
946
-
947
- ## [v2.0.15] - 2022-10-31
948
-
949
- ### Changes
950
-
951
- - commit save point
952
- - commit save point
953
- - commit save point
954
- - commit save point
955
- - commit save point
956
- - commit save point
957
- - commit save point
958
- - commit save point
959
- - commit save point
960
- - commit save point
961
- - commit save point
962
- - commit save point
963
- - commit save point
964
- - commit save point
965
- - commit save point
966
- - commit save point
967
- - commit save point
968
- - commit save point
969
- - commit save point
970
- - commit save point
971
- - commit save point
972
- - commit save point
973
- - commit save point
974
- - commit save point
975
- - commit save point
976
- - commit save point
977
- - commit save point
978
- - commit save point
979
- - commit save point
980
- - commit save point
981
- - commit save point
982
- - commit save point
983
- - commit save point
984
- - commit save point
985
- - commit save point
986
- - commit save point
987
- - commit save point
988
- - commit save point
989
- - commit save point
990
- - commit save point
991
- - commit save point
992
- - commit save point
993
- - commit save point
994
- - commit save point
995
- - commit save point
996
- - commit save point
997
- - commit save point
998
- - commit save point
999
- - commit save point
1000
- - commit save point
1001
- - commit save point
1002
- - commit save point
1003
- - commit save point
1004
- - commit save point
1005
- - commit save point
1006
- - commit save point
1007
-
1008
- ## [1.30.1] - 2022-02-06
1009
-
1010
-
1011
- ## [1.31.0] - 2022-02-05
1012
-
1013
-
1014
- ## [1.10.0] - 2021-08-29
1015
-
1016
-
1017
- ## [1.9.0] - 2021-08-17
1018
-
1019
-
1020
792
  ## 1.8.0 - 2021-08-15
1021
793
 
794
+ - Initial release
795
+