diff --git a/development/scripts/buildMonsterFile.mjs b/development/scripts/buildMonsterFile.mjs index d7adeddc71e0587b9f24158312d1207ac3c30ab1..06297819e2d6038b3a18f936cde359e926c8f165 100755 --- a/development/scripts/buildMonsterFile.mjs +++ b/development/scripts/buildMonsterFile.mjs @@ -48,9 +48,7 @@ const content = exportLines.join("\n"); const copyRightYear = new Date().getFullYear(); const licenseText = license.replace("{{copyRightYear}}", copyRightYear); -let fileContent=`${licenseText} - -// THIS FILE IS AUTOGENERATED. DO NOT EDIT THIS FILE DIRECTLY. +let fileContent=`${licenseText}// THIS FILE IS AUTOGENERATED. DO NOT EDIT THIS FILE DIRECTLY. /** * Main namespace for Monster. diff --git a/development/scripts/buildStylePostCSS.mjs b/development/scripts/buildStylePostCSS.mjs index 44b13b73d0f1bdfe81192ad66b1d09b843389747..8c462ddc16e5299dd5602cf20481d256e4173020 100644 --- a/development/scripts/buildStylePostCSS.mjs +++ b/development/scripts/buildStylePostCSS.mjs @@ -3,8 +3,7 @@ import {runPostCSS} from "./runPostCSS.mjs"; import {projectRoot,license} from "./import.mjs"; import {writeFileSync, existsSync, mkdirSync} from "fs"; -const codeTemplate = `{{LicenseText}} -import {addAttributeToken} from "{{backToRootPath}}dom/attributes.mjs"; +const codeTemplate = `{{LicenseText}}import {addAttributeToken} from "{{backToRootPath}}dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "{{backToRootPath}}dom/constants.mjs"; export {{{ClassName}}StyleSheet} @@ -83,10 +82,10 @@ export function buildCSS(sourceFile, destinationFile) { let css = result.css.replace(/"/g, '\\"'); const code = codeTemplate .replaceAll("{{backToRootPath}}", relPath) - .replaceAll("{{copyRightYear}}", String(new Date().getFullYear())) .replaceAll("{{ClassName}}", className) .replaceAll("{{LayerName}}", layerName) .replaceAll("{{LicenseText}}", license) + .replaceAll("{{copyRightYear}}", String(new Date().getFullYear())) .replaceAll("{{css}}", css); const destinationDirectory = path.dirname(destinationFile); diff --git a/development/scripts/import.mjs b/development/scripts/import.mjs index 77d370f258c43d8aea0f4f84351e693fe82bab7f..94ff818da9ba9b3d5137e3b6c992a6bc3ef68cc5 120000 --- a/development/scripts/import.mjs +++ b/development/scripts/import.mjs @@ -1 +1 @@ -/nix/store/0ifm782v0x3snkb3gmahqrhvv0s5cvwz-import.mjs \ No newline at end of file +/nix/store/an1h0vm1l6zdw6p9nmr7l8srbw1wiw7m-import.mjs \ No newline at end of file diff --git a/devenv.nix b/devenv.nix index 5ff412813b1be13b0368ef25f47f8761b0387514..647acd709b69e4fad0bc47e1818af81367fbd600 100644 --- a/devenv.nix +++ b/devenv.nix @@ -22,7 +22,7 @@ export const developmentPath = "${config.devenv.root}/development"; export const pnpxBin = "${pkgs.nodePackages.pnpm}/bin/pnpx"; export const nodeBin = "${pkgs.nodejs_20}/bin/node"; - export const license = "/**" + + export const license = "/**" + "\n" + " * Copyright © schukai GmbH and all contributing authors, {{copyRightYear}}. All rights reserved." + "\n" + " * Node module: @schukai/monster" + "\n" + " *" + "\n" + @@ -32,7 +32,7 @@ " * For those who do not wish to adhere to the AGPLv3, a commercial license is available." + "\n" + " * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms." + "\n" + " * For more information about purchasing a commercial license, please contact schukai GmbH." + "\n" + - " */"; + " */" + "\n\n" ; ; @@ -608,7 +608,6 @@ in { scripts.build-monster-file.exec = '' #!${pkgs.bash}/bin/bash source ${commonFunctionsScript} - set -x echo_section "build monster file" diff --git a/source/components/datatable/stylesheet/change-button.mjs b/source/components/datatable/stylesheet/change-button.mjs index 7d942c781f9ce60ab29bccf07fe4cae8faf2152e..b904735619a6c0d18f4c464dcb0bba01e12985a0 100644 --- a/source/components/datatable/stylesheet/change-button.mjs +++ b/source/components/datatable/stylesheet/change-button.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/datatable/stylesheet/column-bar.mjs b/source/components/datatable/stylesheet/column-bar.mjs index 158a88a8c3238e726324f900dd7ed515794de668..ad35ad98dbe7235fdd245aad3d228eafbc6a7039 100644 --- a/source/components/datatable/stylesheet/column-bar.mjs +++ b/source/components/datatable/stylesheet/column-bar.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/datatable/stylesheet/dataset.mjs b/source/components/datatable/stylesheet/dataset.mjs index e040c34ab5a027fa2ee0e2675c0b3cc3b3f57ddb..7343182f332e97f6eebd9c2e03838b640d3a00c8 100644 --- a/source/components/datatable/stylesheet/dataset.mjs +++ b/source/components/datatable/stylesheet/dataset.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/datatable/stylesheet/datasource.mjs b/source/components/datatable/stylesheet/datasource.mjs index 97d8085d6e9f07ae2b24ae99a2141b8f4aefa481..39273a5d3336b0a9f4b45a0d55a9a0e0a6941887 100644 --- a/source/components/datatable/stylesheet/datasource.mjs +++ b/source/components/datatable/stylesheet/datasource.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/datatable/stylesheet/datatable.mjs b/source/components/datatable/stylesheet/datatable.mjs index c98a66bc5439988701d3d12c7bbb36861bda92e5..6165a9ed597eb3b6000b4d5a9e3064814a979341 100644 --- a/source/components/datatable/stylesheet/datatable.mjs +++ b/source/components/datatable/stylesheet/datatable.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/datatable/stylesheet/embedded-pagination.mjs b/source/components/datatable/stylesheet/embedded-pagination.mjs index a325f815e8d80349fbd936248737d6726af7ccc5..2c5a3341d348e75375cc449a59bd7a28870048ab 100644 --- a/source/components/datatable/stylesheet/embedded-pagination.mjs +++ b/source/components/datatable/stylesheet/embedded-pagination.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/datatable/stylesheet/filter-button.mjs b/source/components/datatable/stylesheet/filter-button.mjs index 09c3a6dc057bcc17d946a7eb783a371826e8a8ce..0b1c397cef62f225efcb977e2e5d56059818a492 100644 --- a/source/components/datatable/stylesheet/filter-button.mjs +++ b/source/components/datatable/stylesheet/filter-button.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/datatable/stylesheet/filter-controls-defaults.mjs b/source/components/datatable/stylesheet/filter-controls-defaults.mjs index eb9ce3cc3067ce3a9d8729c0a38d6830be484ff9..4d4aa79cc16984982c0a7c540b350a87c035d2f5 100644 --- a/source/components/datatable/stylesheet/filter-controls-defaults.mjs +++ b/source/components/datatable/stylesheet/filter-controls-defaults.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/datatable/stylesheet/filter-date-range.mjs b/source/components/datatable/stylesheet/filter-date-range.mjs index 75f7c37a3d87a00b95feff2dfd24ad5d177f90b6..7007ad505a18951919f0a603def3ff49811135eb 100644 --- a/source/components/datatable/stylesheet/filter-date-range.mjs +++ b/source/components/datatable/stylesheet/filter-date-range.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/datatable/stylesheet/filter-range.mjs b/source/components/datatable/stylesheet/filter-range.mjs index 1402f6ea9aa6b5d71327c2c34fe53b67e9946bbe..799246b8f078fe81b911ef2b37cae595f47cc01c 100644 --- a/source/components/datatable/stylesheet/filter-range.mjs +++ b/source/components/datatable/stylesheet/filter-range.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/datatable/stylesheet/filter.mjs b/source/components/datatable/stylesheet/filter.mjs index 693df10aa7381d4dbd8d0a7061b989dbece43786..00251d969006d54ceab6d40480efade50bef4c21 100644 --- a/source/components/datatable/stylesheet/filter.mjs +++ b/source/components/datatable/stylesheet/filter.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/datatable/stylesheet/pagination.mjs b/source/components/datatable/stylesheet/pagination.mjs index a1dfc04f277c5a1e302f0c595988084d953023fa..5bcdbc05d135cf1f9ed755e506916bcf042b7617 100644 --- a/source/components/datatable/stylesheet/pagination.mjs +++ b/source/components/datatable/stylesheet/pagination.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/datatable/stylesheet/save-button.mjs b/source/components/datatable/stylesheet/save-button.mjs index 44eecdf2ebedcb37c368290bad461e65551ddfc1..ebf1c5f2612fe615ccdb630e52e54876de2aff5f 100644 --- a/source/components/datatable/stylesheet/save-button.mjs +++ b/source/components/datatable/stylesheet/save-button.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/datatable/stylesheet/select-filter.mjs b/source/components/datatable/stylesheet/select-filter.mjs index fb993b34aa5e8c9c2d2209a1cbfa5b2af6b385df..605c87d8b0a911a8c14755e37b3173f6cc935316 100644 --- a/source/components/datatable/stylesheet/select-filter.mjs +++ b/source/components/datatable/stylesheet/select-filter.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/datatable/stylesheet/status.mjs b/source/components/datatable/stylesheet/status.mjs index 9e5b74e127f08dde7a9b7b7322e735c3bd3bfc5b..1e9a9ec8a769e2aeff82a73e9f508934edfea547 100644 --- a/source/components/datatable/stylesheet/status.mjs +++ b/source/components/datatable/stylesheet/status.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/form/stylesheet/action-button.mjs b/source/components/form/stylesheet/action-button.mjs index 2f4431a4a1ed5c8a32b6ef3bd66e1cfb822f02a5..bc6d712d1a3918103f265e999b5f43afb290e767 100644 --- a/source/components/form/stylesheet/action-button.mjs +++ b/source/components/form/stylesheet/action-button.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/form/stylesheet/api-button.mjs b/source/components/form/stylesheet/api-button.mjs index 6d9cb3b0ae9f26db01daae6c2a13a2fed7fa6d0f..58df7f07b7ef6015d427a6084e905fd3b4b1daf1 100644 --- a/source/components/form/stylesheet/api-button.mjs +++ b/source/components/form/stylesheet/api-button.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/form/stylesheet/button-bar.mjs b/source/components/form/stylesheet/button-bar.mjs index 165d3d6e946b361c09652e7a52427025ede2788f..3e26b1e36e3e15532a4007ba94fca5d27c48f1c7 100644 --- a/source/components/form/stylesheet/button-bar.mjs +++ b/source/components/form/stylesheet/button-bar.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/form/stylesheet/button.mjs b/source/components/form/stylesheet/button.mjs index 4454e475e4b7c67dcbaf38cd707721cec3b6a3aa..f7970194311cae8d00fef4b42940a2b8b688cbf9 100644 --- a/source/components/form/stylesheet/button.mjs +++ b/source/components/form/stylesheet/button.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/form/stylesheet/confirm-button.mjs b/source/components/form/stylesheet/confirm-button.mjs index 6afb65666938bc3bb251815665c1436f0887dc6e..b3767c69fe423903ae468736f53bc912ec64fffe 100644 --- a/source/components/form/stylesheet/confirm-button.mjs +++ b/source/components/form/stylesheet/confirm-button.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/form/stylesheet/context-error.mjs b/source/components/form/stylesheet/context-error.mjs index 8240d4d98c7a3468b4b2c386d34f5ab42f998fb5..042aa3c082886935d94d19381a3dffb42d3e9465 100644 --- a/source/components/form/stylesheet/context-error.mjs +++ b/source/components/form/stylesheet/context-error.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/form/stylesheet/context-help.mjs b/source/components/form/stylesheet/context-help.mjs index d9c4700375b4155fa23b286188a62a90a240753b..842b2159dafb300118936047803b80410ae533fe 100644 --- a/source/components/form/stylesheet/context-help.mjs +++ b/source/components/form/stylesheet/context-help.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/form/stylesheet/form-field.mjs b/source/components/form/stylesheet/form-field.mjs index 2c79a8309e34dd7d56fb859f37f3a7a3b058a1f1..d02d853b2d686d4af168e91e515d536fe97c36ea 100644 --- a/source/components/form/stylesheet/form-field.mjs +++ b/source/components/form/stylesheet/form-field.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/form/stylesheet/form.mjs b/source/components/form/stylesheet/form.mjs index a3a53ac0610afbb8c097f98851d06978fc04cf49..516f7f57132f4e7e795b23e56820b73702895b1b 100644 --- a/source/components/form/stylesheet/form.mjs +++ b/source/components/form/stylesheet/form.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/form/stylesheet/message-state-button.mjs b/source/components/form/stylesheet/message-state-button.mjs index 3463a36354ebfd807a71a48b94180067830fe55f..37cdaa5c941bd3dd5de0d47e62eee5ef65167275 100644 --- a/source/components/form/stylesheet/message-state-button.mjs +++ b/source/components/form/stylesheet/message-state-button.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/form/stylesheet/popper-button.mjs b/source/components/form/stylesheet/popper-button.mjs index 3ee3cdc28cd08e66d5843f4b98af8b799ec2720e..9bc71acc6272ff67ff56c162bb3f305b4cda938c 100644 --- a/source/components/form/stylesheet/popper-button.mjs +++ b/source/components/form/stylesheet/popper-button.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/form/stylesheet/popper.mjs b/source/components/form/stylesheet/popper.mjs index bcbb7c4fe53fa4db91c1e6d21ec77421748ff270..20c7b18b18dc0407751fa6e1e858532ce06135ab 100644 --- a/source/components/form/stylesheet/popper.mjs +++ b/source/components/form/stylesheet/popper.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/form/stylesheet/select.mjs b/source/components/form/stylesheet/select.mjs index 52278d19cdc190a746b9f655bbf2ccbd7140b4ed..a23e440fcf136367b7f6b893a193e39608e27719 100644 --- a/source/components/form/stylesheet/select.mjs +++ b/source/components/form/stylesheet/select.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/form/stylesheet/state-button.mjs b/source/components/form/stylesheet/state-button.mjs index 0dbc5b8144b22482d2e4d57421984d794e9eb918..b2d5723df0feef8395cbcf6a357baeccfe880c1f 100644 --- a/source/components/form/stylesheet/state-button.mjs +++ b/source/components/form/stylesheet/state-button.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/form/stylesheet/toggle-switch.mjs b/source/components/form/stylesheet/toggle-switch.mjs index fb7a0999fc7b305a309c797c2b2da0829356f1bb..8d47df6806aeb6ac4284d524bbb4fd04b3180fdc 100644 --- a/source/components/form/stylesheet/toggle-switch.mjs +++ b/source/components/form/stylesheet/toggle-switch.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/form/stylesheet/tree-select.mjs b/source/components/form/stylesheet/tree-select.mjs index bb2366d6e6061f57bfbaf16f55109c5a4bdbdd76..e915dde0136409b962af634653a0301e17ad1009 100644 --- a/source/components/form/stylesheet/tree-select.mjs +++ b/source/components/form/stylesheet/tree-select.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/host/stylesheet/call-button.mjs b/source/components/host/stylesheet/call-button.mjs index 921b1590337f0e1953d743fd29baece524fea7ac..ff37f08a70c427b0cf54f6ccd817ff1643556e2a 100644 --- a/source/components/host/stylesheet/call-button.mjs +++ b/source/components/host/stylesheet/call-button.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/host/stylesheet/collapse.mjs b/source/components/host/stylesheet/collapse.mjs index 712f107fb0df1dd80cd2a79afde40de0e504572d..8d5378c4e75dbc9c7ffe8c3329c92fe83097e3c5 100644 --- a/source/components/host/stylesheet/collapse.mjs +++ b/source/components/host/stylesheet/collapse.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/host/stylesheet/config-manager.mjs b/source/components/host/stylesheet/config-manager.mjs index a593e8d2528c3f42f0afddae865b21687c218033..8b78385173c1c00efd0b6eca7f18eef4ea8bff98 100644 --- a/source/components/host/stylesheet/config-manager.mjs +++ b/source/components/host/stylesheet/config-manager.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/host/stylesheet/details.mjs b/source/components/host/stylesheet/details.mjs index 84f93bdb8fa675375e4400c9c06ef937567ebe74..ac36f22fe0c1f7ad5ca4545b9da4d5b69af02a13 100644 --- a/source/components/host/stylesheet/details.mjs +++ b/source/components/host/stylesheet/details.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/host/stylesheet/host.mjs b/source/components/host/stylesheet/host.mjs index 1e982a8391d39886e4b1001b2a1a16c358eeac33..c556d07a9716529b492f5d059ff6773c9ad27f33 100644 --- a/source/components/host/stylesheet/host.mjs +++ b/source/components/host/stylesheet/host.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/host/stylesheet/overlay.mjs b/source/components/host/stylesheet/overlay.mjs index 0ab834fd6b02e81935cbb6529540f8409b680dac..2c2c1ebf8b16d79235131501a5f167b5d01b3035 100644 --- a/source/components/host/stylesheet/overlay.mjs +++ b/source/components/host/stylesheet/overlay.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/host/stylesheet/toggle-button.mjs b/source/components/host/stylesheet/toggle-button.mjs index bcbe8090561fc5263aa8f592daab463f787d1b58..f8e31395a9d05dc1774206387b63f495b86c6633 100644 --- a/source/components/host/stylesheet/toggle-button.mjs +++ b/source/components/host/stylesheet/toggle-button.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/host/stylesheet/viewer.mjs b/source/components/host/stylesheet/viewer.mjs index 8b334d59cef862d81aab61689fcee6104c0aa9da..2abde551df22f90d3bfc6a3234ee0032d5953c52 100644 --- a/source/components/host/stylesheet/viewer.mjs +++ b/source/components/host/stylesheet/viewer.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/layout/stylesheet/panel.mjs b/source/components/layout/stylesheet/panel.mjs index d685bbd18a00ddf717775c675abc83fe8c92dbe1..0b0c22f116198b2f7c153690846db89dc7cdc64c 100644 --- a/source/components/layout/stylesheet/panel.mjs +++ b/source/components/layout/stylesheet/panel.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/layout/stylesheet/split-panel.mjs b/source/components/layout/stylesheet/split-panel.mjs index 19b817089e211c2ced9d2bcbef7700939144ee8a..77372c984dd257cf48705277a86a5fb0196b255b 100644 --- a/source/components/layout/stylesheet/split-panel.mjs +++ b/source/components/layout/stylesheet/split-panel.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/layout/stylesheet/tabs.mjs b/source/components/layout/stylesheet/tabs.mjs index 795e14ff85e95dc7922657e7607a4d2e1856740e..d05139190c7fea7f471536470f6e8f26c35fe637 100644 --- a/source/components/layout/stylesheet/tabs.mjs +++ b/source/components/layout/stylesheet/tabs.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/layout/stylesheet/width-toggle.mjs b/source/components/layout/stylesheet/width-toggle.mjs index 8136fc0d05acabc37d59c68d0c8184a6b4f49457..7c158bcc906d054f744ddd03718c379634d91f16 100644 --- a/source/components/layout/stylesheet/width-toggle.mjs +++ b/source/components/layout/stylesheet/width-toggle.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/notify/stylesheet/message.mjs b/source/components/notify/stylesheet/message.mjs index 09ed8407cd8e9dd319ebe6d0da7d04aea41df193..78b4163b6f21bb3140b4a7ebecee67ce8a5bfa30 100644 --- a/source/components/notify/stylesheet/message.mjs +++ b/source/components/notify/stylesheet/message.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/notify/stylesheet/notify.mjs b/source/components/notify/stylesheet/notify.mjs index f915e22a1fb90fe63faea4a3ade923e0b375f4fc..6763e09288dc464983da753c3ab424992b4e9c16 100644 --- a/source/components/notify/stylesheet/notify.mjs +++ b/source/components/notify/stylesheet/notify.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/state/stylesheet/log.mjs b/source/components/state/stylesheet/log.mjs index 6f495f58d5067bd97cdfcd627a2cf8f9992c15ec..2b2db4b56ed36e470a27d258fdcec16a099c2e5b 100644 --- a/source/components/state/stylesheet/log.mjs +++ b/source/components/state/stylesheet/log.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/state/stylesheet/state.mjs b/source/components/state/stylesheet/state.mjs index 18321b66136cf9706ab23dd7a882c1f23b570761..3b36361e0120bcd3fa75d7fae040510e9892aa30 100644 --- a/source/components/state/stylesheet/state.mjs +++ b/source/components/state/stylesheet/state.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/stylesheet/badge.mjs b/source/components/stylesheet/badge.mjs index b19347de2a144994d22f603093edc3a01bceb8cc..f468497e591a602aec9dd0404ac2207cea130a67 100644 --- a/source/components/stylesheet/badge.mjs +++ b/source/components/stylesheet/badge.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../dom/constants.mjs"; diff --git a/source/components/stylesheet/border.mjs b/source/components/stylesheet/border.mjs index 01a36b7e6c3008d0d693b8d718e992bd560c0e98..7ca453492ea1fd6e18ac8addb40b7d2176a003e2 100644 --- a/source/components/stylesheet/border.mjs +++ b/source/components/stylesheet/border.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../dom/constants.mjs"; diff --git a/source/components/stylesheet/button.mjs b/source/components/stylesheet/button.mjs index 605f2a07c1662f4caa5e2c701cbde2e3ce5e708e..d4ea2f1918599776d466da7b909cf9b2a7c2dc0a 100644 --- a/source/components/stylesheet/button.mjs +++ b/source/components/stylesheet/button.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../dom/constants.mjs"; diff --git a/source/components/stylesheet/card.mjs b/source/components/stylesheet/card.mjs index d05bd2b98872ebb03723f04e4f6c3a35248d5aa6..42f229b8fbff623852c07ec99422cdc59c1eff08 100644 --- a/source/components/stylesheet/card.mjs +++ b/source/components/stylesheet/card.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../dom/constants.mjs"; diff --git a/source/components/stylesheet/color.mjs b/source/components/stylesheet/color.mjs index 03c6160fdc907e06cc9ae0aa3d5c9092dea1858a..77fc9c24f2e29a4bd14778bed888ba17076a4b57 100644 --- a/source/components/stylesheet/color.mjs +++ b/source/components/stylesheet/color.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../dom/constants.mjs"; diff --git a/source/components/stylesheet/common.mjs b/source/components/stylesheet/common.mjs index fc46d39e902416f53b6d7c0da2820b41b201c1eb..894c05d6038df8159a9e6437b2b86bd836ac7c97 100644 --- a/source/components/stylesheet/common.mjs +++ b/source/components/stylesheet/common.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../dom/constants.mjs"; diff --git a/source/components/stylesheet/control.mjs b/source/components/stylesheet/control.mjs index 5862c1d8f997bb9838aaed7978ecbcddba56f740..e02c6e020cd1d26da3133cc88de6683e37195e3a 100644 --- a/source/components/stylesheet/control.mjs +++ b/source/components/stylesheet/control.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../dom/constants.mjs"; diff --git a/source/components/stylesheet/data-grid.mjs b/source/components/stylesheet/data-grid.mjs index 9ecb118e6f4494d94ba6f7e542e3bd03ca364763..76159bf94ca6b322cf5f91f7e7c4d24b1a981403 100644 --- a/source/components/stylesheet/data-grid.mjs +++ b/source/components/stylesheet/data-grid.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../dom/constants.mjs"; diff --git a/source/components/stylesheet/display.mjs b/source/components/stylesheet/display.mjs index 35d51ab9c6be1673575f0c79f7d8f268af0bb6cf..e07e2f8223a61f28b7611c44fe00fec7625c36df 100644 --- a/source/components/stylesheet/display.mjs +++ b/source/components/stylesheet/display.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../dom/constants.mjs"; diff --git a/source/components/stylesheet/floating-ui.mjs b/source/components/stylesheet/floating-ui.mjs index 065e0d6e720c489a0b17bfb68a156e06518ca1f0..029190fed2998b59d044e67a9a545f1310ea73f3 100644 --- a/source/components/stylesheet/floating-ui.mjs +++ b/source/components/stylesheet/floating-ui.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../dom/constants.mjs"; diff --git a/source/components/stylesheet/form.mjs b/source/components/stylesheet/form.mjs index 133c0ae2ff52af5fcf447c54cbc711a5f3f10555..26cb8bf69dc847443b05942adfcabaf2d9ef679f 100644 --- a/source/components/stylesheet/form.mjs +++ b/source/components/stylesheet/form.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../dom/constants.mjs"; diff --git a/source/components/stylesheet/host.mjs b/source/components/stylesheet/host.mjs index ce24d88cd5ed98ab943dab52e610a1df0cae3ef6..03e139430c62fd35bd2a522a234c882460ecc8e3 100644 --- a/source/components/stylesheet/host.mjs +++ b/source/components/stylesheet/host.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../dom/constants.mjs"; diff --git a/source/components/stylesheet/icons.mjs b/source/components/stylesheet/icons.mjs index 811134f5a6d3b6ca06c47abd6417b8db752d2572..102dfeccda405ad4672fc594e6b5ea16e32d70fa 100644 --- a/source/components/stylesheet/icons.mjs +++ b/source/components/stylesheet/icons.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../dom/constants.mjs"; diff --git a/source/components/stylesheet/link.mjs b/source/components/stylesheet/link.mjs index 2f3e683b0a83530a62cd7aed6239630669a7902e..8bcc88637c0d2c99958dd0fbc4c7b1856ce59cb6 100644 --- a/source/components/stylesheet/link.mjs +++ b/source/components/stylesheet/link.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../dom/constants.mjs"; diff --git a/source/components/stylesheet/mixin/badge.mjs b/source/components/stylesheet/mixin/badge.mjs index 305e244f4f889d0a104bcdac05440bf9dcd7f907..02f2b15f72b0f432da52770ae010c201ae6b23cd 100644 --- a/source/components/stylesheet/mixin/badge.mjs +++ b/source/components/stylesheet/mixin/badge.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/stylesheet/mixin/button.mjs b/source/components/stylesheet/mixin/button.mjs index d7d787ac8f835c91f97c81616778a8062ce0c26a..efc2a9a0233056ddecc2bdb7058bafe1d3e168ad 100644 --- a/source/components/stylesheet/mixin/button.mjs +++ b/source/components/stylesheet/mixin/button.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/stylesheet/mixin/form.mjs b/source/components/stylesheet/mixin/form.mjs index 866b29a20f14d19ff409b6a2be23764ad425f80b..a60ac89804adf549a4114c7f6c3524c260e2b40f 100644 --- a/source/components/stylesheet/mixin/form.mjs +++ b/source/components/stylesheet/mixin/form.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/stylesheet/mixin/hover.mjs b/source/components/stylesheet/mixin/hover.mjs index 64e9f7f7cfdb972a31e5fe857c1a846a4f45f9a8..1798badf5401456d48d0a216eb81868f63415b71 100644 --- a/source/components/stylesheet/mixin/hover.mjs +++ b/source/components/stylesheet/mixin/hover.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/stylesheet/mixin/icon.mjs b/source/components/stylesheet/mixin/icon.mjs index 0f55b1536b0d278cd1a1a4f68f3f06b9f819e78a..9572bc768bbe545e47da8e23d8015e808c8d26f8 100644 --- a/source/components/stylesheet/mixin/icon.mjs +++ b/source/components/stylesheet/mixin/icon.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/stylesheet/mixin/media.mjs b/source/components/stylesheet/mixin/media.mjs index 4d12e17cb479d85d824bc131d1047a3934288ccb..699d29bf74b6008df5f795b78d270bdfd1de7f43 100644 --- a/source/components/stylesheet/mixin/media.mjs +++ b/source/components/stylesheet/mixin/media.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/stylesheet/mixin/property.mjs b/source/components/stylesheet/mixin/property.mjs index b0595e26a087f648dc71d4aaf33db445db5f0921..53819b86298b4752df81b77697d6a0dea66222d6 100644 --- a/source/components/stylesheet/mixin/property.mjs +++ b/source/components/stylesheet/mixin/property.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/stylesheet/mixin/skeleton.mjs b/source/components/stylesheet/mixin/skeleton.mjs index 1054b346d7ab08d7cdf2565c6c0852c9b49ba452..2fd7a683da611eda16eaea2f98e6e81f31bac9c2 100644 --- a/source/components/stylesheet/mixin/skeleton.mjs +++ b/source/components/stylesheet/mixin/skeleton.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/stylesheet/mixin/spinner.mjs b/source/components/stylesheet/mixin/spinner.mjs index b103ba0f65fc5e87b53afa309ea9e2c40a7411e8..690059ea4b2d87e52ab97881596bc4cfdfd25b6e 100644 --- a/source/components/stylesheet/mixin/spinner.mjs +++ b/source/components/stylesheet/mixin/spinner.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/stylesheet/mixin/typography.mjs b/source/components/stylesheet/mixin/typography.mjs index 31693e5dba8e18c7f9cb33358b579e8708bd1196..1a89d80fbf2596c78c1af0ccf2753d6608a383ae 100644 --- a/source/components/stylesheet/mixin/typography.mjs +++ b/source/components/stylesheet/mixin/typography.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/components/stylesheet/normalize.mjs b/source/components/stylesheet/normalize.mjs index ee0bec06221ff3d107a4c834159a9e1d43a22ed6..abdc7247a5b04a1e942a45796ca0c45f7777d52a 100644 --- a/source/components/stylesheet/normalize.mjs +++ b/source/components/stylesheet/normalize.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../dom/constants.mjs"; diff --git a/source/components/stylesheet/popper.mjs b/source/components/stylesheet/popper.mjs index 75980fedbf1454265374d114fc20b686789f5e93..ce3c450fe42f094d71ba3f61670c084d1e4ee554 100644 --- a/source/components/stylesheet/popper.mjs +++ b/source/components/stylesheet/popper.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../dom/constants.mjs"; diff --git a/source/components/stylesheet/property.mjs b/source/components/stylesheet/property.mjs index a5579a9e9d42031ae25a42ce7a4a9b24d9a1ef6b..bf716c6504ad3abfd5772cf432a014a5355ce6c9 100644 --- a/source/components/stylesheet/property.mjs +++ b/source/components/stylesheet/property.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../dom/constants.mjs"; diff --git a/source/components/stylesheet/ripple.mjs b/source/components/stylesheet/ripple.mjs index a6ad36d9ba2c8dd55c557d121c1950456e0ef10d..4c007211cf17e3ec3cff63db7be5ff40965ea631 100644 --- a/source/components/stylesheet/ripple.mjs +++ b/source/components/stylesheet/ripple.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../dom/constants.mjs"; diff --git a/source/components/stylesheet/skeleton.mjs b/source/components/stylesheet/skeleton.mjs index 9f9a8ed92b2d0fc233ccb2ce557fc98c3826a542..a9130ac11ced15948755c044ec2e6915105e11d4 100644 --- a/source/components/stylesheet/skeleton.mjs +++ b/source/components/stylesheet/skeleton.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../dom/constants.mjs"; diff --git a/source/components/stylesheet/space.mjs b/source/components/stylesheet/space.mjs index d1be0e686c82493cdcc400119e880b5886935bcc..fbdb3fd918a5f0c702c3612bbe4da5c61644c234 100644 --- a/source/components/stylesheet/space.mjs +++ b/source/components/stylesheet/space.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../dom/constants.mjs"; diff --git a/source/components/stylesheet/spinner.mjs b/source/components/stylesheet/spinner.mjs index 26822cce8f6d6e4c2926375e7303b47fde4d77d0..0d67d3876bc96e4c610684be013fece1890900e9 100644 --- a/source/components/stylesheet/spinner.mjs +++ b/source/components/stylesheet/spinner.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../dom/constants.mjs"; diff --git a/source/components/stylesheet/table.mjs b/source/components/stylesheet/table.mjs index 34ab994d8e2bca8e286401062dc27888e59fcb72..62786d18f23abb5207c4f668c43fbf17ba3af524 100644 --- a/source/components/stylesheet/table.mjs +++ b/source/components/stylesheet/table.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../dom/constants.mjs"; diff --git a/source/components/stylesheet/theme.mjs b/source/components/stylesheet/theme.mjs index 1750cfd6ea58996695c712460cfe69ec56006caa..ecb740d6de3bbe80d901d7c4b559cd6d3cef330e 100644 --- a/source/components/stylesheet/theme.mjs +++ b/source/components/stylesheet/theme.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../dom/constants.mjs"; diff --git a/source/components/stylesheet/typography.mjs b/source/components/stylesheet/typography.mjs index 863ebc1b78b5a59da4bb6569fedbde8cd4893296..e76d47a9269dcddcf596d6158d91f8def239d2ed 100644 --- a/source/components/stylesheet/typography.mjs +++ b/source/components/stylesheet/typography.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../dom/constants.mjs"; diff --git a/source/components/tree-menu/stylesheet/tree-menu.mjs b/source/components/tree-menu/stylesheet/tree-menu.mjs index c3af14e15ae13fd01cb3a4f95fea3095689ffe5c..36eb9bdbe57ffaa2f85ba81c969403f713c9bc16 100644 --- a/source/components/tree-menu/stylesheet/tree-menu.mjs +++ b/source/components/tree-menu/stylesheet/tree-menu.mjs @@ -1,14 +1,15 @@ /** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster - * + * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html - * + * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact schukai GmbH. */ + import {addAttributeToken} from "../../../dom/attributes.mjs"; import {ATTRIBUTE_ERRORMESSAGE} from "../../../dom/constants.mjs"; diff --git a/source/monster.mjs b/source/monster.mjs index c7cf55502304db355c362b7bc99a72e0517cfd41..855a015d21522c47e1a447dd95de6dc700c740fc 100644 --- a/source/monster.mjs +++ b/source/monster.mjs @@ -1,4 +1,5 @@ -/** * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. +/** + * Copyright © schukai GmbH and all contributing authors, 2024. All rights reserved. * Node module: @schukai/monster * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3).