@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
@@ -1,18 +1,25 @@
1
1
  /**
2
- * Copyright schukai GmbH and contributors 2023. All Rights Reserved.
2
+ * Copyright © schukai GmbH and all contributing authors, {{copyRightYear}}. All rights reserved.
3
3
  * Node module: @schukai/monster
4
- * This file is licensed under the AGPLv3 License.
5
- * License text available at https://www.gnu.org/licenses/agpl-3.0.en.html
4
+ *
5
+ * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3).
6
+ * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html
7
+ *
8
+ * For those who do not wish to adhere to the AGPLv3, a commercial license is available.
9
+ * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms.
10
+ * For more information about purchasing a commercial license, please contact schukai GmbH.
11
+ *
12
+ * SPDX-License-Identifier: AGPL-3.0
6
13
  */
14
+
7
15
  import { instanceSymbol } from "../../constants.mjs";
8
16
  import {
9
17
  assembleMethodSymbol,
10
18
  registerCustomElement,
11
19
  } from "../../dom/customelement.mjs";
12
- import { CustomControl } from "../../dom/customcontrol.mjs";
13
20
  import { ContextErrorStyleSheet } from "./stylesheet/context-error.mjs";
14
21
  import { ThemeStyleSheet } from "../stylesheet/theme.mjs";
15
- import { Popper } from "./popper.mjs";
22
+ import { Popper } from "../layout/popper.mjs";
16
23
  import {
17
24
  ATTRIBUTE_ERRORMESSAGE,
18
25
  ATTRIBUTE_ROLE,
@@ -47,43 +54,21 @@ const popperElementSymbol = Symbol("popperElement");
47
54
  const iconElementSymbol = Symbol("iconElement");
48
55
 
49
56
  /**
50
- * The ContextError control creates an element with a variety of options.
51
- *
52
- * <img src="./images/context-error.png">
53
- *
54
- * Dependencies: the system uses functions of the [monsterjs](https://monsterjs.org/) library
55
- * as well as [pooperjs](https://popper.js.org/docs/v2/).
56
- *
57
- * You can create this control either by specifying the HTML tag <monster-context-error />` directly in the HTML or using
58
- * Javascript via the `document.createElement('monster-context-error');` method.
57
+ * The ContextError control shows an error message in a popper.
59
58
  *
60
- * ```html
61
- * <monster-context-error></monster-context-error>
62
- * ```
59
+ * @fragments /fragments/components/form/context-error/
63
60
  *
64
- * Or you can create this CustomControl directly in Javascript:
65
- *
66
- * ```js
67
- * document.createElement('monster-context-error');
68
- * ```
69
- *
70
- * @startuml context-error.png
71
- * skinparam monochrome true
72
- * skinparam shadowing false
73
- * HTMLElement <|-- CustomElement
74
- * CustomElement <|-- CustomControl
75
- * CustomControl <|-- Popper
76
- * Popper <|-- ContextError
77
- * @enduml
61
+ * @example /examples/components/form/context-error-simple
78
62
  *
79
63
  * @since 3.55.0
80
64
  * @copyright schukai GmbH
81
65
  * @memberOf Monster.Components.Form
82
66
  * @summary A control that can be used to display a tooltip or a popover with an error message.
83
- */
67
+ **/
84
68
  class ContextError extends Popper {
85
69
  /**
86
70
  * This method is called by the `instanceof` operator.
71
+ *
87
72
  * @returns {symbol}
88
73
  * @since 2.1.0
89
74
  */
@@ -95,15 +80,17 @@ class ContextError extends Popper {
95
80
 
96
81
  /**
97
82
  *
98
- * @return {Monster.Components.Form.PopperButton}
83
+ * @return {void}
99
84
  */
100
85
  [assembleMethodSymbol]() {
101
86
  super[assembleMethodSymbol]();
102
87
  initControlReferences.call(this);
103
88
 
104
- if (this.hasErrorMessage()) {
105
- this[iconElementSymbol].classList.remove("hidden");
106
- }
89
+ setTimeout(() => {
90
+ if (this.hasErrorMessage()) {
91
+ this[iconElementSymbol].classList.remove("hidden");
92
+ }
93
+ }, 1000);
107
94
  }
108
95
 
109
96
  /**
@@ -112,13 +99,12 @@ class ContextError extends Popper {
112
99
  *
113
100
  * The individual configuration values can be found in the table.
114
101
  *
115
- * @property {Object} templates - The templates for the control.
116
- * @property {string} templates.main - The main template.
117
- * @property {string} mode - The mode of the popper. Possible values are `click`, `enter` and `hover`.
118
- * @property {string} content - The content of the popper.
119
- * @property {object} popper - The popper options.
120
- * @property {string} popper.placement - The placement of the popper. Possible values are `top`, `bottom`, `left`, `right`, `auto`, `auto-start`, `auto-end`, `top-start`, `top-end`, `bottom-start`, `bottom-end`, `right-start`, `right-end`, `left-start`, `left-end`.
121
- * @extends {CustomControl}
102
+ * @property {Object} templates The templates for the control.
103
+ * @property {string} templates.main The main template.
104
+ * @property {string} mode The mode of the popper. Possible values are `click`, `enter` and `hover`.
105
+ * @property {string} content The content of the popper.
106
+ * @property {object} popper The popper options.
107
+ * @property {string} popper.placement The placement of the popper. Possible values are `top`, `bottom`, `left`, `right`, `auto`, `auto-start`, `auto-end`, `top-start`, `top-end`, `bottom-start`, `bottom-end`, `right-start`, `right-end`, `left-start`, `left-end`.
122
108
  */
123
109
  get defaults() {
124
110
  return Object.assign({}, super.defaults, {
@@ -127,7 +113,7 @@ class ContextError extends Popper {
127
113
  },
128
114
  mode: "auto",
129
115
 
130
- content: "",
116
+ content: "<slot></slot>",
131
117
 
132
118
  classes: {
133
119
  button: "monster-theme-error-2",
@@ -137,7 +123,7 @@ class ContextError extends Popper {
137
123
 
138
124
  /**
139
125
  *
140
- * @return {Monster.Components.Form.Popper}
126
+ * @return {ContextError}
141
127
  */
142
128
  showDialog() {
143
129
  if (!this.hasErrorMessage()) {
@@ -150,7 +136,7 @@ class ContextError extends Popper {
150
136
 
151
137
  /**
152
138
  *
153
- * @return {Monster.Components.Form.Popper}
139
+ * @return {ContextError}
154
140
  */
155
141
  hideDialog() {
156
142
  super.hideDialog();
@@ -160,8 +146,8 @@ class ContextError extends Popper {
160
146
  /**
161
147
  *
162
148
  * @param message
163
- * @param show {boolean|number} - If true the dialog is shown immediately. If false the dialog is hidden by default. If a number is specified the dialog is shown for the specified time in milliseconds.
164
- * @returns {Monster.Components.Form.ContextError}
149
+ * @param show {boolean|number|string} - If true the dialog is shown immediately. If false the dialog is hidden by default. If a number is specified the dialog is shown for the specified time in milliseconds.
150
+ * @returns {ContextError}
165
151
  */
166
152
  setErrorMessage(message, show = false) {
167
153
  message = message.trim();
@@ -193,6 +179,10 @@ class ContextError extends Popper {
193
179
  return this;
194
180
  }
195
181
 
182
+ /**
183
+ * Reset the error message.
184
+ * @returns {ContextError}
185
+ */
196
186
  resetErrorMessage() {
197
187
  this.hideDialog();
198
188
  this.setOption("content", "");
@@ -200,11 +190,38 @@ class ContextError extends Popper {
200
190
  return this;
201
191
  }
202
192
 
193
+ /**
194
+ * Returns true if an error message is set.
195
+ * @returns {boolean}
196
+ */
203
197
  hasErrorMessage() {
204
- return this.getOption("content", "") !== "";
198
+ const c = this.getOption("content");
199
+ if (c === "") {
200
+ return false;
201
+ }
202
+
203
+ if (c === "<slot></slot>") {
204
+ console.log(this.shadowRoot.querySelector("slot"));
205
+
206
+ const sr = this.shadowRoot;
207
+ if (!sr) {
208
+ return false;
209
+ }
210
+
211
+ const slot = sr.querySelector("slot");
212
+ if (!slot) {
213
+ return false;
214
+ }
215
+
216
+ return this.shadowRoot.querySelector("slot").assignedNodes().length > 0;
217
+ }
218
+
219
+ return true;
205
220
  }
206
221
 
207
222
  /**
223
+ * Returns the html tag of the control.
224
+ *
208
225
  * @return {string}
209
226
  */
210
227
  static getTag() {
@@ -212,7 +229,7 @@ class ContextError extends Popper {
212
229
  }
213
230
 
214
231
  /**
215
- * @return {Array<CSSStyleSheet>}
232
+ * @return {CSSStyleSheet[]}
216
233
  */
217
234
  static getCSSStyleSheet() {
218
235
  return [ContextErrorStyleSheet, ThemeStyleSheet];
@@ -260,10 +277,10 @@ function getTemplate() {
260
277
  <div data-monster-role="popper" part="popper" tabindex="-1" class="monster-color-primary-1">
261
278
  <div data-monster-role="arrow"></div>
262
279
  <div part="content" class="flex">
263
- <div data-monster-replace="path:content | i18n::value"></div>
280
+ <div data-monster-replace="path:content"></div>
264
281
  </div>
265
282
  </div>
266
-
283
+
267
284
  </div>
268
285
  `;
269
286
  }
@@ -1,9 +1,17 @@
1
1
  /**
2
- * Copyright schukai GmbH and contributors 2023. All Rights Reserved.
2
+ * Copyright © schukai GmbH and all contributing authors, {{copyRightYear}}. All rights reserved.
3
3
  * Node module: @schukai/monster
4
- * This file is licensed under the AGPLv3 License.
5
- * License text available at https://www.gnu.org/licenses/agpl-3.0.en.html
4
+ *
5
+ * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3).
6
+ * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html
7
+ *
8
+ * For those who do not wish to adhere to the AGPLv3, a commercial license is available.
9
+ * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms.
10
+ * For more information about purchasing a commercial license, please contact schukai GmbH.
11
+ *
12
+ * SPDX-License-Identifier: AGPL-3.0
6
13
  */
14
+
7
15
  import { instanceSymbol } from "../../constants.mjs";
8
16
  import { registerCustomElement } from "../../dom/customelement.mjs";
9
17
  import { CustomControl } from "../../dom/customcontrol.mjs";
@@ -8,6 +8,8 @@
8
8
  * For those who do not wish to adhere to the AGPLv3, a commercial license is available.
9
9
  * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms.
10
10
  * For more information about purchasing a commercial license, please contact schukai GmbH.
11
+ *
12
+ * SPDX-License-Identifier: AGPL-3.0
11
13
  */
12
14
 
13
15
  import { instanceSymbol } from "../../constants.mjs";
@@ -108,19 +110,16 @@ class FieldSet extends CustomControl {
108
110
  templates: {
109
111
  main: getTemplate(),
110
112
  },
111
- labels: {
112
- },
113
- classes: {
114
- },
113
+ labels: {},
114
+ classes: {},
115
115
  disabled: false,
116
- features: {
117
- },
116
+ features: {},
118
117
  actions: {
119
118
  click: () => {
120
119
  throw new Error("the click action is not defined");
121
120
  },
122
121
  },
123
- value: null
122
+ value: null,
124
123
  });
125
124
  }
126
125
 
@@ -139,8 +138,7 @@ class FieldSet extends CustomControl {
139
138
  static getCSSStyleSheet() {
140
139
  return [FieldSetStyleSheet];
141
140
  }
142
-
143
-
141
+
144
142
  /**
145
143
  * The FieldSet.click() method simulates a click on the internal element.
146
144
  *
@@ -189,7 +187,7 @@ class FieldSet extends CustomControl {
189
187
  this[fieldSetElementSymbol].blur();
190
188
  }
191
189
  }
192
-
190
+
193
191
  /**
194
192
  * @see {@link https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/attachInternals}
195
193
  * @return {boolean}
@@ -197,7 +195,7 @@ class FieldSet extends CustomControl {
197
195
  static get formAssociated() {
198
196
  return true;
199
197
  }
200
-
198
+
201
199
  /**
202
200
  * The current value of the form control.
203
201
  *
@@ -223,7 +221,7 @@ class FieldSet extends CustomControl {
223
221
  * @property {string} value
224
222
  * @throws {Error} unsupported type
225
223
  */
226
- set value(value) {
224
+ set value(value) {
227
225
  this.setOption("value", value);
228
226
  try {
229
227
  this?.setFormValue(this.value);
@@ -231,8 +229,6 @@ class FieldSet extends CustomControl {
231
229
  addAttributeToken(this, ATTRIBUTE_ERRORMESSAGE, e.message);
232
230
  }
233
231
  }
234
-
235
-
236
232
  }
237
233
 
238
234
  /**
@@ -296,5 +292,4 @@ function getTemplate() {
296
292
  </div>`;
297
293
  }
298
294
 
299
-
300
295
  registerCustomElement(FieldSet);
@@ -1,9 +1,17 @@
1
1
  /**
2
- * Copyright schukai GmbH and contributors 2023. All Rights Reserved.
2
+ * Copyright © schukai GmbH and all contributing authors, {{copyRightYear}}. All rights reserved.
3
3
  * Node module: @schukai/monster
4
- * This file is licensed under the AGPLv3 License.
5
- * License text available at https://www.gnu.org/licenses/agpl-3.0.en.html
4
+ *
5
+ * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3).
6
+ * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html
7
+ *
8
+ * For those who do not wish to adhere to the AGPLv3, a commercial license is available.
9
+ * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms.
10
+ * For more information about purchasing a commercial license, please contact schukai GmbH.
11
+ *
12
+ * SPDX-License-Identifier: AGPL-3.0
6
13
  */
14
+
7
15
  import { instanceSymbol } from "../../constants.mjs";
8
16
  import { internalSymbol } from "../../constants.mjs";
9
17
  import { Datasource } from "../../data/datasource.mjs";
@@ -585,7 +593,7 @@ function getTemplate() {
585
593
  // language=HTML
586
594
  return `
587
595
  <div data-monster-role="control" part="control">
588
- <form data-monster-attributes="disabled path:disabled | if:true, class path:classes.form"
596
+ <form data-monster-attributes="disabled path:disabled | if:true, class path:classes.form"
589
597
  data-monster-role="form"
590
598
  part="form">
591
599
  <slot data-monster-role="slot"></slot>
@@ -1,9 +1,17 @@
1
1
  /**
2
- * Copyright schukai GmbH and contributors 2023. All Rights Reserved.
2
+ * Copyright © schukai GmbH and all contributing authors, {{copyRightYear}}. All rights reserved.
3
3
  * Node module: @schukai/monster
4
- * This file is licensed under the AGPLv3 License.
5
- * License text available at https://www.gnu.org/licenses/agpl-3.0.en.html
4
+ *
5
+ * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3).
6
+ * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html
7
+ *
8
+ * For those who do not wish to adhere to the AGPLv3, a commercial license is available.
9
+ * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms.
10
+ * For more information about purchasing a commercial license, please contact schukai GmbH.
11
+ *
12
+ * SPDX-License-Identifier: AGPL-3.0
6
13
  */
14
+
7
15
  import { instanceSymbol } from "../../constants.mjs";
8
16
  import { ATTRIBUTE_ROLE } from "../../dom/constants.mjs";
9
17
  import {
@@ -1,9 +1,17 @@
1
1
  /**
2
- * Copyright schukai GmbH and contributors 2023. All Rights Reserved.
2
+ * Copyright © schukai GmbH and all contributing authors, {{copyRightYear}}. All rights reserved.
3
3
  * Node module: @schukai/monster
4
- * This file is licensed under the AGPLv3 License.
5
- * License text available at https://www.gnu.org/licenses/agpl-3.0.en.html
4
+ *
5
+ * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3).
6
+ * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html
7
+ *
8
+ * For those who do not wish to adhere to the AGPLv3, a commercial license is available.
9
+ * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms.
10
+ * For more information about purchasing a commercial license, please contact schukai GmbH.
11
+ *
12
+ * SPDX-License-Identifier: AGPL-3.0
6
13
  */
14
+
7
15
  import { instanceSymbol } from "../../constants.mjs";
8
16
  import { addAttributeToken } from "../../dom/attributes.mjs";
9
17
  import {
@@ -8,17 +8,17 @@
8
8
  * For those who do not wish to adhere to the AGPLv3, a commercial license is available.
9
9
  * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms.
10
10
  * For more information about purchasing a commercial license, please contact schukai GmbH.
11
+ *
12
+ * SPDX-License-Identifier: AGPL-3.0
11
13
  */
12
14
 
13
- import {Popper as NewPopper} from "../layout/popper.mjs";
15
+ import { Popper as NewPopper } from "../layout/popper.mjs";
14
16
 
15
- export {Popper};
17
+ export { Popper };
16
18
 
17
19
  /**
18
20
  * @since 1.10.0
19
21
  * @copyright schukai GmbH
20
- * @deprecated since 3.66.0 use {@link Monster.Components.Layout.Popper}
22
+ * @deprecated since 3.65.0 use {@link Monster.Components.Layout.Popper}
21
23
  */
22
- class Popper extends NewPopper {
23
-
24
- }
24
+ class Popper extends NewPopper {}
@@ -1,9 +1,17 @@
1
1
  /**
2
- * Copyright schukai GmbH and contributors 2023. All Rights Reserved.
2
+ * Copyright © schukai GmbH and all contributing authors, {{copyRightYear}}. All rights reserved.
3
3
  * Node module: @schukai/monster
4
- * This file is licensed under the AGPLv3 License.
5
- * License text available at https://www.gnu.org/licenses/agpl-3.0.en.html
4
+ *
5
+ * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3).
6
+ * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html
7
+ *
8
+ * For those who do not wish to adhere to the AGPLv3, a commercial license is available.
9
+ * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms.
10
+ * For more information about purchasing a commercial license, please contact schukai GmbH.
11
+ *
12
+ * SPDX-License-Identifier: AGPL-3.0
6
13
  */
14
+
7
15
  import { instanceSymbol } from "../../constants.mjs";
8
16
  import { addAttributeToken } from "../../dom/attributes.mjs";
9
17
  import {
@@ -164,7 +172,7 @@ class Reload extends CustomElement {
164
172
  }
165
173
 
166
174
  /**
167
- *
175
+ * @return {void}
168
176
  */
169
177
  [initMethodSymbol]() {
170
178
  super[initMethodSymbol]();
@@ -1,9 +1,17 @@
1
1
  /**
2
- * Copyright schukai GmbH and contributors 2023. All Rights Reserved.
2
+ * Copyright © schukai GmbH and all contributing authors, {{copyRightYear}}. All rights reserved.
3
3
  * Node module: @schukai/monster
4
- * This file is licensed under the AGPLv3 License.
5
- * License text available at https://www.gnu.org/licenses/agpl-3.0.en.html
4
+ *
5
+ * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3).
6
+ * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html
7
+ *
8
+ * For those who do not wish to adhere to the AGPLv3, a commercial license is available.
9
+ * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms.
10
+ * For more information about purchasing a commercial license, please contact schukai GmbH.
11
+ *
12
+ * SPDX-License-Identifier: AGPL-3.0
6
13
  */
14
+
7
15
  import { instanceSymbol } from "../../constants.mjs";
8
16
  import { internalSymbol } from "../../constants.mjs";
9
17
  import { buildMap } from "../../data/buildmap.mjs";
@@ -656,31 +664,34 @@ class Select extends CustomControl {
656
664
  if (url !== undefined && url !== null) {
657
665
  url = validateString(url);
658
666
  }
659
-
667
+
660
668
  hide.call(this);
661
669
 
662
670
  return new Promise((resolve, reject) => {
663
- fetchData.call(this, url).then((map) => {
664
- if (
665
- isObject(map) ||
666
- isArray(map) ||
667
- map instanceof Set ||
668
- map instanceof Map
669
- ) {
670
- this.importOptions(map);
671
- setTimeout(() => {
672
- setStatusOrRemoveBadges.call(this,"closed");
673
- resolve();
674
- }, 10);
675
- return;
676
- }
671
+ fetchData
672
+ .call(this, url)
673
+ .then((map) => {
674
+ if (
675
+ isObject(map) ||
676
+ isArray(map) ||
677
+ map instanceof Set ||
678
+ map instanceof Map
679
+ ) {
680
+ this.importOptions(map);
681
+ setTimeout(() => {
682
+ setStatusOrRemoveBadges.call(this, "closed");
683
+ resolve();
684
+ }, 10);
685
+ return;
686
+ }
677
687
 
678
- setStatusOrRemoveBadges.call(this, "error");
679
- reject(new Error("invalid response"));
680
- }).catch((e) => {
681
- setStatusOrRemoveBadges.call(this, "error");
682
- reject(e);
683
- });
688
+ setStatusOrRemoveBadges.call(this, "error");
689
+ reject(new Error("invalid response"));
690
+ })
691
+ .catch((e) => {
692
+ setStatusOrRemoveBadges.call(this, "error");
693
+ reject(e);
694
+ });
684
695
  });
685
696
  }
686
697
 
@@ -1961,15 +1972,15 @@ function fetchData(url) {
1961
1972
 
1962
1973
  const fetchOptions = this.getOption("fetch", {});
1963
1974
 
1964
- let delayWatch=false;
1965
-
1975
+ let delayWatch = false;
1976
+
1966
1977
  // if fetch short time, do not show loading badge, because of flickering
1967
1978
  setTimeout(() => {
1968
- if(delayWatch===true) return;
1979
+ if (delayWatch === true) return;
1969
1980
  setStatusOrRemoveBadges.call(this, "loading");
1970
- delayWatch=true;
1971
- },500);
1972
-
1981
+ delayWatch = true;
1982
+ }, 500);
1983
+
1973
1984
  url = new Formatter({ filter: this.getOption("filter.defaultValue") }).format(
1974
1985
  url,
1975
1986
  );
@@ -1978,7 +1989,7 @@ function fetchData(url) {
1978
1989
  return global
1979
1990
  .fetch(url, fetchOptions)
1980
1991
  .then((response) => {
1981
- delayWatch=true;
1992
+ delayWatch = true;
1982
1993
  const contentType = response.headers.get("content-type");
1983
1994
  if (contentType && contentType.indexOf("application/json") !== -1) {
1984
1995
  return response.text();
@@ -1994,7 +2005,7 @@ function fetchData(url) {
1994
2005
  }
1995
2006
  })
1996
2007
  .catch((e) => {
1997
- delayWatch=true;
2008
+ delayWatch = true;
1998
2009
  throw e;
1999
2010
  });
2000
2011
  }
@@ -2004,7 +2015,7 @@ function fetchData(url) {
2004
2015
  */
2005
2016
  function hide() {
2006
2017
  this[popperElementSymbol].style.display = "none";
2007
- setStatusOrRemoveBadges.call(this,"closed");
2018
+ setStatusOrRemoveBadges.call(this, "closed");
2008
2019
  removeAttributeToken(this[controlElementSymbol], "class", "open");
2009
2020
  }
2010
2021
 
@@ -1,9 +1,17 @@
1
1
  /**
2
- * Copyright schukai GmbH and contributors 2023. All Rights Reserved.
2
+ * Copyright © schukai GmbH and all contributing authors, {{copyRightYear}}. All rights reserved.
3
3
  * Node module: @schukai/monster
4
- * This file is licensed under the AGPLv3 License.
5
- * License text available at https://www.gnu.org/licenses/agpl-3.0.en.html
4
+ *
5
+ * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3).
6
+ * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html
7
+ *
8
+ * For those who do not wish to adhere to the AGPLv3, a commercial license is available.
9
+ * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms.
10
+ * For more information about purchasing a commercial license, please contact schukai GmbH.
11
+ *
12
+ * SPDX-License-Identifier: AGPL-3.0
6
13
  */
14
+
7
15
  import { instanceSymbol } from "../../constants.mjs";
8
16
  import { registerCustomElement } from "../../dom/customelement.mjs";
9
17
  import { Reload } from "./reload.mjs";
@@ -1,9 +1,17 @@
1
1
  /**
2
- * Copyright schukai GmbH and contributors 2023. All Rights Reserved.
2
+ * Copyright © schukai GmbH and all contributing authors, {{copyRightYear}}. All rights reserved.
3
3
  * Node module: @schukai/monster
4
- * This file is licensed under the AGPLv3 License.
5
- * License text available at https://www.gnu.org/licenses/agpl-3.0.en.html
4
+ *
5
+ * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3).
6
+ * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html
7
+ *
8
+ * For those who do not wish to adhere to the AGPLv3, a commercial license is available.
9
+ * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms.
10
+ * For more information about purchasing a commercial license, please contact schukai GmbH.
11
+ *
12
+ * SPDX-License-Identifier: AGPL-3.0
6
13
  */
14
+
7
15
  import { instanceSymbol } from "../../constants.mjs";
8
16
  import { registerCustomElement } from "../../dom/customelement.mjs";
9
17
  import { isInteger } from "../../types/is.mjs";