@schukai/monster 3.65.0 → 3.65.20

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