From 1173ea22a3b2df444964c8106a65b2253d966513 Mon Sep 17 00:00:00 2001 From: Michael Beckemeyer Date: Thu, 26 Sep 2024 11:05:08 +0200 Subject: [PATCH] Update changesets, configure fixed versions --- .changeset/config.json | 9 +- package.json | 4 +- ... @changesets__assemble-release-plan.patch} | 12 +- pnpm-lock.yaml | 660 +++--------------- pnpm-workspace.yaml | 2 +- src/samples/api-sample/api-app/CHANGELOG.md | 206 ------ src/samples/auth-sample/auth-app/CHANGELOG.md | 88 --- .../chakra-sample/chakra-app/CHANGELOG.md | 175 ----- .../extension-app/CHANGELOG.md | 165 ----- src/samples/http-sample/http-app/CHANGELOG.md | 163 ----- src/samples/i18n-howto/app/CHANGELOG.md | 165 ----- src/samples/i18n-sample/i18n-app/CHANGELOG.md | 184 ----- src/samples/keycloak-sample/CHANGELOG.md | 53 -- .../notify-sample/notify-app/CHANGELOG.md | 83 --- .../properties-app/CHANGELOG.md | 184 ----- .../styling-sample/styling-app/CHANGELOG.md | 150 ---- .../theming-sample/theming-app/CHANGELOG.md | 72 -- 17 files changed, 110 insertions(+), 2265 deletions(-) rename patches/{@changesets__assemble-release-plan@6.0.0.patch => @changesets__assemble-release-plan.patch} (75%) delete mode 100644 src/samples/api-sample/api-app/CHANGELOG.md delete mode 100644 src/samples/auth-sample/auth-app/CHANGELOG.md delete mode 100644 src/samples/chakra-sample/chakra-app/CHANGELOG.md delete mode 100644 src/samples/extension-sample/extension-app/CHANGELOG.md delete mode 100644 src/samples/http-sample/http-app/CHANGELOG.md delete mode 100644 src/samples/i18n-howto/app/CHANGELOG.md delete mode 100644 src/samples/i18n-sample/i18n-app/CHANGELOG.md delete mode 100644 src/samples/keycloak-sample/CHANGELOG.md delete mode 100644 src/samples/notify-sample/notify-app/CHANGELOG.md delete mode 100644 src/samples/properties-sample/properties-app/CHANGELOG.md delete mode 100644 src/samples/styling-sample/styling-app/CHANGELOG.md delete mode 100644 src/samples/theming-sample/theming-app/CHANGELOG.md diff --git a/.changeset/config.json b/.changeset/config.json index 33beeea1..75be7a6b 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -1,13 +1,14 @@ { - "$schema": "https://unpkg.com/@changesets/config@2.3.0/schema.json", + "$schema": "https://unpkg.com/@changesets/config@3.0.3/schema.json", "changelog": "@changesets/cli/changelog", "commit": false, - "fixed": [], - "linked": [], "access": "public", "baseBranch": "main", - "updateInternalDependencies": "patch", + "fixed": [["@open-pioneer/*"]], + "linked": [], "ignore": [], + "updateInternalDependencies": "patch", + "bumpVersionsWithWorkspaceProtocolOnly": true, "privatePackages": { "version": false, "tag": false diff --git a/package.json b/package.json index e1a428ff..cdad6ab2 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ "prepare": "husky", "ci:test": "pnpm run clean && pnpm run lint && pnpm run check-types && vitest run", "ci:version": "pnpm changeset version && pnpm exec prettier './src/**/CHANGELOG.md' --write --ignore-path .eslintignore && pnpm install", - "ci:publish": "pnpm run clean && pnpm run build-packages && pnpm publish -r --access public && tag-current-versions" + "ci:publish": "pnpm run clean && pnpm run build-packages && pnpm publish -r --access public && pnpm changeset tag" }, "pnpm": { "//": [ @@ -53,7 +53,7 @@ "ignoreCves": [] }, "patchedDependencies": { - "@changesets/assemble-release-plan@6.0.0": "patches/@changesets__assemble-release-plan@6.0.0.patch" + "@changesets/assemble-release-plan": "patches/@changesets__assemble-release-plan.patch" }, "peerDependencyRules": { "allowedVersions": { diff --git a/patches/@changesets__assemble-release-plan@6.0.0.patch b/patches/@changesets__assemble-release-plan.patch similarity index 75% rename from patches/@changesets__assemble-release-plan@6.0.0.patch rename to patches/@changesets__assemble-release-plan.patch index 964e2004..9e495dbd 100644 --- a/patches/@changesets__assemble-release-plan@6.0.0.patch +++ b/patches/@changesets__assemble-release-plan.patch @@ -1,26 +1,26 @@ diff --git a/dist/changesets-assemble-release-plan.cjs.js b/dist/changesets-assemble-release-plan.cjs.js -index ee5c0f67fabadeb112e9f238d8b144a4d125830f..04e62e3fb543b4f992df606fb0733969d3c451fa 100644 +index 4f7b5e5b37bb05874a5c1d8e583e29d4a9593ecf..b37528cb682b5076619d6b6e6c4783f7621c285f 100644 --- a/dist/changesets-assemble-release-plan.cjs.js +++ b/dist/changesets-assemble-release-plan.cjs.js -@@ -209,7 +209,7 @@ function shouldBumpMajor({ +@@ -347,7 +347,7 @@ function shouldBumpMajor({ // we check if it is a peerDependency because if it is, our dependent bump type might need to be major. return depType === "peerDependencies" && nextRelease.type !== "none" && nextRelease.type !== "patch" && ( // 1. If onlyUpdatePeerDependentsWhenOutOfRange set to true, bump major if the version is leaving the range. // 2. If onlyUpdatePeerDependentsWhenOutOfRange set to false, bump major regardless whether or not the version is leaving the range. - !onlyUpdatePeerDependentsWhenOutOfRange || !semverSatisfies__default["default"](incrementVersion(nextRelease, preInfo), versionRange)) && ( // bump major only if the dependent doesn't already has a major release. -+ !onlyUpdatePeerDependentsWhenOutOfRange) && ( // bump major only if the dependent doesn't already has a major release. ++ !onlyUpdatePeerDependentsWhenOutOfRange) && ( // patch: dont bump automatically when peers go out of range, see https://github.com/changesets/changesets/issues/1011 !releases.has(dependent) || releases.has(dependent) && releases.get(dependent).type !== "major"); } diff --git a/dist/changesets-assemble-release-plan.esm.js b/dist/changesets-assemble-release-plan.esm.js -index bf5202626a164a7780650d333983c3479b078689..529601b6da9cbd05bc1be0fa5d39a10efd4a67cc 100644 +index a327d9e4c709a6698f505d60d8bbf0046d4bde74..e9f3600ef93bb8c3778e3143598948218b834ec4 100644 --- a/dist/changesets-assemble-release-plan.esm.js +++ b/dist/changesets-assemble-release-plan.esm.js -@@ -198,7 +198,7 @@ function shouldBumpMajor({ +@@ -336,7 +336,7 @@ function shouldBumpMajor({ // we check if it is a peerDependency because if it is, our dependent bump type might need to be major. return depType === "peerDependencies" && nextRelease.type !== "none" && nextRelease.type !== "patch" && ( // 1. If onlyUpdatePeerDependentsWhenOutOfRange set to true, bump major if the version is leaving the range. // 2. If onlyUpdatePeerDependentsWhenOutOfRange set to false, bump major regardless whether or not the version is leaving the range. - !onlyUpdatePeerDependentsWhenOutOfRange || !semverSatisfies(incrementVersion(nextRelease, preInfo), versionRange)) && ( // bump major only if the dependent doesn't already has a major release. -+ !onlyUpdatePeerDependentsWhenOutOfRange) && ( // bump major only if the dependent doesn't already has a major release. ++ !onlyUpdatePeerDependentsWhenOutOfRange) && ( // patch: dont bump automatically when peers go out of range, see https://github.com/changesets/changesets/issues/1011 !releases.has(dependent) || releases.has(dependent) && releases.get(dependent).type !== "major"); } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index dcc12262..bd3d964c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -13,8 +13,8 @@ catalogs: specifier: ^2.8.2 version: 2.8.2 '@changesets/cli': - specifier: ^2.27.1 - version: 2.27.1 + specifier: ^2.27.8 + version: 2.27.8 '@conterra/reactivity-core': specifier: ^0.4.2 version: 0.4.2 @@ -169,9 +169,9 @@ overrides: micromatch@<4.0.8: '>=4.0.8' patchedDependencies: - '@changesets/assemble-release-plan@6.0.0': - hash: h32n3ge4nf46sxbiqfnayewo7u - path: patches/@changesets__assemble-release-plan@6.0.0.patch + '@changesets/assemble-release-plan': + hash: h7fa74ddz2lm7t3hquqctf7dgq + path: patches/@changesets__assemble-release-plan.patch importers: @@ -179,7 +179,7 @@ importers: devDependencies: '@changesets/cli': specifier: 'catalog:' - version: 2.27.1 + version: 2.27.8 '@open-pioneer/build-package-cli': specifier: 'catalog:' version: 2.1.0(sass@1.77.8)(typescript@5.5.4) @@ -1305,48 +1305,51 @@ packages: '@chakra-ui/system': '>=2.0.0' react: '>=18' - '@changesets/apply-release-plan@7.0.0': - resolution: {integrity: sha512-vfi69JR416qC9hWmFGSxj7N6wA5J222XNBmezSVATPWDVPIF7gkd4d8CpbEbXmRWbVrkoli3oerGS6dcL/BGsQ==} + '@changesets/apply-release-plan@7.0.5': + resolution: {integrity: sha512-1cWCk+ZshEkSVEZrm2fSj1Gz8sYvxgUL4Q78+1ZZqeqfuevPTPk033/yUZ3df8BKMohkqqHfzj0HOOrG0KtXTw==} - '@changesets/assemble-release-plan@6.0.0': - resolution: {integrity: sha512-4QG7NuisAjisbW4hkLCmGW2lRYdPrKzro+fCtZaILX+3zdUELSvYjpL4GTv0E4aM9Mef3PuIQp89VmHJ4y2bfw==} + '@changesets/assemble-release-plan@6.0.4': + resolution: {integrity: sha512-nqICnvmrwWj4w2x0fOhVj2QEGdlUuwVAwESrUo5HLzWMI1rE5SWfsr9ln+rDqWB6RQ2ZyaMZHUcU7/IRaUJS+Q==} '@changesets/changelog-git@0.2.0': resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==} - '@changesets/cli@2.27.1': - resolution: {integrity: sha512-iJ91xlvRnnrJnELTp4eJJEOPjgpF3NOh4qeQehM6Ugiz9gJPRZ2t+TsXun6E3AMN4hScZKjqVXl0TX+C7AB3ZQ==} + '@changesets/cli@2.27.8': + resolution: {integrity: sha512-gZNyh+LdSsI82wBSHLQ3QN5J30P4uHKJ4fXgoGwQxfXwYFTJzDdvIJasZn8rYQtmKhyQuiBj4SSnLuKlxKWq4w==} hasBin: true - '@changesets/config@3.0.0': - resolution: {integrity: sha512-o/rwLNnAo/+j9Yvw9mkBQOZySDYyOr/q+wptRLcAVGlU6djOeP9v1nlalbL9MFsobuBVQbZCTp+dIzdq+CLQUA==} + '@changesets/config@3.0.3': + resolution: {integrity: sha512-vqgQZMyIcuIpw9nqFIpTSNyc/wgm/Lu1zKN5vECy74u95Qx/Wa9g27HdgO4NkVAaq+BGA8wUc/qvbvVNs93n6A==} '@changesets/errors@0.2.0': resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} - '@changesets/get-dependents-graph@2.0.0': - resolution: {integrity: sha512-cafUXponivK4vBgZ3yLu944mTvam06XEn2IZGjjKc0antpenkYANXiiE6GExV/yKdsCnE8dXVZ25yGqLYZmScA==} + '@changesets/get-dependents-graph@2.1.2': + resolution: {integrity: sha512-sgcHRkiBY9i4zWYBwlVyAjEM9sAzs4wYVwJUdnbDLnVG3QwAaia1Mk5P8M7kraTOZN+vBET7n8KyB0YXCbFRLQ==} - '@changesets/get-release-plan@4.0.0': - resolution: {integrity: sha512-9L9xCUeD/Tb6L/oKmpm8nyzsOzhdNBBbt/ZNcjynbHC07WW4E1eX8NMGC5g5SbM5z/V+MOrYsJ4lRW41GCbg3w==} + '@changesets/get-release-plan@4.0.4': + resolution: {integrity: sha512-SicG/S67JmPTrdcc9Vpu0wSQt7IiuN0dc8iR5VScnnTVPfIaLvKmEGRvIaF0kcn8u5ZqLbormZNTO77bCEvyWw==} '@changesets/get-version-range-type@0.4.0': resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} - '@changesets/git@3.0.0': - resolution: {integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==} + '@changesets/git@3.0.1': + resolution: {integrity: sha512-pdgHcYBLCPcLd82aRcuO0kxCDbw/yISlOtkmwmE8Odo1L6hSiZrBOsRl84eYG7DRCab/iHnOkWqExqc4wxk2LQ==} - '@changesets/logger@0.1.0': - resolution: {integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==} + '@changesets/logger@0.1.1': + resolution: {integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==} '@changesets/parse@0.4.0': resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==} - '@changesets/pre@2.0.0': - resolution: {integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==} + '@changesets/pre@2.0.1': + resolution: {integrity: sha512-vvBJ/If4jKM4tPz9JdY2kGOgWmCowUYOi5Ycv8dyLnEE8FgpYYUo1mgJZxcdtGGP3aG8rAQulGLyyXGSLkIMTQ==} - '@changesets/read@0.6.0': - resolution: {integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==} + '@changesets/read@0.6.1': + resolution: {integrity: sha512-jYMbyXQk3nwP25nRzQQGa1nKLY0KfoOV7VLgwucI0bUO8t8ZLCr6LZmgjXsiKuRDc+5A6doKPr9w2d+FEJ55zQ==} + + '@changesets/should-skip-package@0.1.1': + resolution: {integrity: sha512-H9LjLbF6mMHLtJIc/eHR9Na+MifJ3VxtgP/Y+XLn4BF7tDTEN1HNYtH6QMcjP1uxp9sjaFYmW8xqloaCi/ckTg==} '@changesets/types@4.1.0': resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} @@ -1354,8 +1357,8 @@ packages: '@changesets/types@6.0.0': resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==} - '@changesets/write@0.3.0': - resolution: {integrity: sha512-slGLb21fxZVUYbyea+94uFiD6ntQW0M2hIKNznFizDhZPDgn2c/fv1UzzlW43RVzh1BEDuIqW6hzlJ1OflNmcw==} + '@changesets/write@0.3.2': + resolution: {integrity: sha512-kDxDrPNpUgsjDbWBvUo27PzKX4gqeKOlhibaOXDJA6kuBisGqNHv/HwGJrAu8U/dSf8ZEFIeHIPtvSlZI1kULw==} '@conterra/reactivity-core@0.4.2': resolution: {integrity: sha512-Y3MZm/d/PYLbRUzDkZIFYEMco5ZiV5JTzHXJ/EN9IaciGRfvXoOAz2Zo6R5cyPFcJbaL4nzuoxQUBPuSVW84zg==} @@ -1951,18 +1954,12 @@ packages: '@types/lodash@4.14.195': resolution: {integrity: sha512-Hwx9EUgdwf2GLarOjQp5ZH8ZmblzcbTBC2wtQWNKARBSxM9ezRIAUpeDTgoQRAFB0+8CNWXVA9+MaSOzOF3nPg==} - '@types/minimist@1.2.2': - resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} - '@types/node@12.20.55': resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} '@types/node@18.19.41': resolution: {integrity: sha512-LX84pRJ+evD2e2nrgYCHObGWkiQJ1mL+meAgbvnwk/US6vmMY7S2ygBTGV2Jw91s9vUsLSXeDEkUHZIJGLrhsg==} - '@types/normalize-package-data@2.4.1': - resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} - '@types/parse-json@4.0.2': resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} @@ -2178,10 +2175,6 @@ packages: resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} engines: {node: '>= 0.4'} - arrify@1.0.1: - resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} - engines: {node: '>=0.10.0'} - asap@2.0.6: resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} @@ -2221,9 +2214,6 @@ packages: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} - breakword@1.0.6: - resolution: {integrity: sha512-yjxDAYyK/pBvws9H4xKYpLDpYKEH6CzrBPAuXq3x18I+c/2MkVtT3qAr7Oloi6Dss9qNhPVueAAVU1CSeNDIXw==} - builtin-modules@3.3.0: resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} engines: {node: '>=6'} @@ -2240,14 +2230,6 @@ packages: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} engines: {node: '>=6'} - camelcase-keys@6.2.2: - resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} - engines: {node: '>=8'} - - camelcase@5.3.1: - resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} - engines: {node: '>=6'} - chai@5.1.1: resolution: {integrity: sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA==} engines: {node: '>=12'} @@ -2294,17 +2276,6 @@ packages: resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==} engines: {node: '>=18'} - cliui@6.0.0: - resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} - - cliui@8.0.1: - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} - engines: {node: '>=12'} - - clone@1.0.4: - resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} - engines: {node: '>=0.8'} - color-convert@1.9.3: resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} @@ -2373,19 +2344,6 @@ packages: csstype@3.1.3: resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} - csv-generate@3.4.3: - resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==} - - csv-parse@4.16.3: - resolution: {integrity: sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==} - - csv-stringify@5.6.5: - resolution: {integrity: sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==} - - csv@5.5.3: - resolution: {integrity: sha512-QTaY0XjjhTQOdguARF0lGKm5/mEq9PD9/VhZZegHDIBq2tQwgNpHc3dneD4mGo2iJs+fTKv5Bp0fZ+BRuY3Z0g==} - engines: {node: '>= 0.1.90'} - data-view-buffer@1.0.1: resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} engines: {node: '>= 0.4'} @@ -2415,14 +2373,6 @@ packages: supports-color: optional: true - decamelize-keys@1.1.1: - resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} - engines: {node: '>=0.10.0'} - - decamelize@1.2.0: - resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} - engines: {node: '>=0.10.0'} - deep-eql@5.0.2: resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} engines: {node: '>=6'} @@ -2434,9 +2384,6 @@ packages: resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} engines: {node: '>=0.10.0'} - defaults@1.0.4: - resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} - define-data-property@1.1.4: resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} engines: {node: '>= 0.4'} @@ -2543,10 +2490,6 @@ packages: engines: {node: '>=12'} hasBin: true - escalade@3.1.1: - resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} - engines: {node: '>=6'} - escape-string-regexp@1.0.5: resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} engines: {node: '>=0.8.0'} @@ -2747,9 +2690,6 @@ packages: find-workspaces@0.3.1: resolution: {integrity: sha512-UDkGILGJSA1LN5Aa7McxCid4sqW3/e+UYsVwyxki3dDT0F8+ym0rAfnCkEfkL0rO7M+8/mvkim4t/s3IPHmg+w==} - find-yarn-workspace-root2@1.2.16: - resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} - flat-cache@3.0.4: resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} engines: {node: ^10.12.0 || >=12.0.0} @@ -2820,10 +2760,6 @@ packages: functions-have-names@1.2.3: resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} - get-caller-file@2.0.5: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} - engines: {node: 6.* || 8.* || >= 10.*} - get-east-asian-width@1.2.0: resolution: {integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==} engines: {node: '>=18'} @@ -2889,9 +2825,6 @@ packages: graceful-fs@4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} - grapheme-splitter@1.0.4: - resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} - graphemer@1.4.0: resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} @@ -2904,10 +2837,6 @@ packages: resolution: {integrity: sha512-vsYlEs3E9gLwA1Hp+w3qzu+RUDFf4VTT8cyKqVICoZ2k7WM++Qyd2LwzyTi5bqMJFiIC/vNpTDYuxdreENRK/g==} engines: {node: '>=16.0.0'} - hard-rejection@2.1.0: - resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} - engines: {node: '>=6'} - has-bigints@1.0.2: resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} @@ -2941,9 +2870,6 @@ packages: hoist-non-react-statics@3.3.2: resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} - hosted-git-info@2.8.9: - resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} - human-id@1.0.2: resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} @@ -3097,10 +3023,6 @@ packages: resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} engines: {node: '>=8'} - is-plain-obj@1.1.0: - resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} - engines: {node: '>=0.10.0'} - is-regex@1.1.4: resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} engines: {node: '>= 0.4'} @@ -3216,14 +3138,6 @@ packages: keycloak-js@25.0.2: resolution: {integrity: sha512-ACLf5O5PqzfDJwGqvLpqM0kflYWmyl3+T7M2C23gztJYccDxdfNP54+B9OkXz2GnDpLUId0ceoA+lbHw9t4Wng==} - kind-of@6.0.3: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} - engines: {node: '>=0.10.0'} - - kleur@4.1.5: - resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} - engines: {node: '>=6'} - levn@0.4.1: resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} engines: {node: '>= 0.8.0'} @@ -3247,10 +3161,6 @@ packages: resolution: {integrity: sha512-Lllokma2mtoniUOS94CcOErHWAug5iu7HOmDrvWgpw8jyQH2fomgB+7lZS4HWZxytUuQwkGOwe49FvwVaA85Xw==} engines: {node: '>=18.0.0'} - load-yaml-file@0.2.0: - resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} - engines: {node: '>=6'} - locate-path@5.0.0: resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} engines: {node: '>=8'} @@ -3304,14 +3214,6 @@ packages: magic-string@0.30.10: resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==} - map-obj@1.0.1: - resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} - engines: {node: '>=0.10.0'} - - map-obj@4.3.0: - resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} - engines: {node: '>=8'} - markdown-it@14.1.0: resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==} hasBin: true @@ -3322,10 +3224,6 @@ packages: mdurl@2.0.0: resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==} - meow@6.1.1: - resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} - engines: {node: '>=8'} - merge-stream@2.0.0: resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} @@ -3356,10 +3254,6 @@ packages: resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} engines: {node: '>=16 || 14 >=14.17'} - minimist-options@4.1.0: - resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} - engines: {node: '>= 6'} - minimist@1.2.8: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} @@ -3367,13 +3261,13 @@ packages: resolution: {integrity: sha512-NQ8MCKimInjVlaIqx51RKJJB7mINVkLTJbsZKmto4UAAOC/CWXES8PGaOgoBZyqoUsUA/U3DToGK7GJkkHbjJw==} engines: {node: '>=16 || 14 >=14.17'} - mixme@0.5.9: - resolution: {integrity: sha512-VC5fg6ySUscaWUpI4gxCBTQMH2RdUpNrk+MsbpCYtIvf9SBJdiUey4qE7BXviJsJR4nDQxCZ+3yaYNW3guz/Pw==} - engines: {node: '>= 8.0.0'} - mlly@1.7.0: resolution: {integrity: sha512-U9SDaXGEREBYQgfejV97coK0UL1r+qnF2SyO9A3qcI8MzKnsIFKHNVEkrDyNncQTKQQumsasmeq84eNMdBfsNQ==} + mri@1.2.0: + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} + engines: {node: '>=4'} + ms@2.1.2: resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} @@ -3406,9 +3300,6 @@ packages: encoding: optional: true - normalize-package-data@2.5.0: - resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} - normalize-path@3.0.0: resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} engines: {node: '>=0.10.0'} @@ -3498,6 +3389,9 @@ packages: resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} engines: {node: '>=6'} + package-manager-detector@0.2.0: + resolution: {integrity: sha512-E385OSk9qDcXhcM9LNSe4sdhx8a9mAPrZ4sMLW+tmxl5ZuGtPUcdFu+MPP2jbgiWAZ6Pfe5soGFMd+0Db5Vrog==} + parent-module@1.0.1: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} engines: {node: '>=6'} @@ -3540,8 +3434,8 @@ packages: resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==} engines: {node: '>= 14.16'} - picocolors@1.0.1: - resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} + picocolors@1.1.0: + resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==} picomatch@2.3.1: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} @@ -3560,10 +3454,6 @@ packages: resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} engines: {node: '>=6'} - pkg-dir@4.2.0: - resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} - engines: {node: '>=8'} - pkg-types@1.1.1: resolution: {integrity: sha512-ko14TjmDuQJ14zsotODv7dBlwxKhUKQEhuhmbqo1uCi9BB0Z2alo/wAXg6q1dTR5TyuqYyWhjtfe/Tsh+X28jQ==} @@ -3584,10 +3474,6 @@ packages: resolution: {integrity: sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==} engines: {node: ^10 || ^12 || >=14} - preferred-pm@3.0.3: - resolution: {integrity: sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ==} - engines: {node: '>=10'} - prelude-ls@1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} @@ -3629,10 +3515,6 @@ packages: queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - quick-lru@4.0.1: - resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} - engines: {node: '>=8'} - react-base16-styling@0.6.0: resolution: {integrity: sha512-yvh/7CArceR/jNATXOKDlvTnPKPmGZz7zsenQ3jUwLzHkNUR0CvY3yGYJbWJ/nnxsL8Sgmt5cO3/SILVuPO6TQ==} @@ -3728,14 +3610,6 @@ packages: read-cache@1.0.0: resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} - read-pkg-up@7.0.1: - resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} - engines: {node: '>=8'} - - read-pkg@5.2.0: - resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} - engines: {node: '>=8'} - read-yaml-file@1.1.0: resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} engines: {node: '>=6'} @@ -3759,13 +3633,6 @@ packages: resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} engines: {node: '>= 0.4'} - require-directory@2.1.1: - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} - engines: {node: '>=0.10.0'} - - require-main-filename@2.0.0: - resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} - resize-observer-polyfill@1.5.1: resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==} @@ -3860,9 +3727,6 @@ packages: engines: {node: '>=10'} hasBin: true - set-blocking@2.0.0: - resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} - set-function-length@1.2.2: resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} engines: {node: '>= 0.4'} @@ -3923,11 +3787,6 @@ packages: resolution: {integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==} engines: {node: '>=18'} - smartwrap@2.0.2: - resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==} - engines: {node: '>=6'} - hasBin: true - source-map-js@1.2.0: resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} engines: {node: '>=0.10.0'} @@ -3947,18 +3806,6 @@ packages: spawndamnit@2.0.0: resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} - spdx-correct@3.2.0: - resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} - - spdx-exceptions@2.3.0: - resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} - - spdx-expression-parse@3.0.1: - resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} - - spdx-license-ids@3.0.13: - resolution: {integrity: sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==} - sprintf-js@1.0.3: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} @@ -3980,9 +3827,6 @@ packages: std-env@3.7.0: resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==} - stream-transform@2.1.3: - resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==} - string-argv@0.3.2: resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} engines: {node: '>=0.6.19'} @@ -4110,10 +3954,6 @@ packages: tr46@0.0.3: resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} - trim-newlines@3.0.1: - resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} - engines: {node: '>=8'} - ts-api-utils@1.3.0: resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} engines: {node: '>=16'} @@ -4132,31 +3972,14 @@ packages: tslib@2.6.3: resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} - tty-table@4.2.1: - resolution: {integrity: sha512-xz0uKo+KakCQ+Dxj1D/tKn2FSyreSYWzdkL/BYhgN6oMW808g8QRMuh1atAV9fjTPbWBjfbkKQpI/5rEcnAc7g==} - engines: {node: '>=8.0.0'} - hasBin: true - type-check@0.4.0: resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} engines: {node: '>= 0.8.0'} - type-fest@0.13.1: - resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} - engines: {node: '>=10'} - type-fest@0.20.2: resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} engines: {node: '>=10'} - type-fest@0.6.0: - resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} - engines: {node: '>=8'} - - type-fest@0.8.1: - resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} - engines: {node: '>=8'} - typed-array-buffer@1.0.2: resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} engines: {node: '>= 0.4'} @@ -4259,9 +4082,6 @@ packages: '@types/react': optional: true - validate-npm-package-license@3.0.4: - resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} - vite-node@2.0.4: resolution: {integrity: sha512-ZpJVkxcakYtig5iakNeL7N3trufe3M6vGuzYAr4GsbCTwobDeyPJpE4cjDhhPluv8OvQCFzu2LWp6GkoKRITXA==} engines: {node: ^18.0.0 || >=20.0.0} @@ -4334,9 +4154,6 @@ packages: jsdom: optional: true - wcwidth@1.0.1: - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} - webidl-conversions@3.0.1: resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} @@ -4362,13 +4179,6 @@ packages: resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} engines: {node: '>= 0.4'} - which-module@2.0.1: - resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} - - which-pm@2.0.0: - resolution: {integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==} - engines: {node: '>=8.15'} - which-typed-array@1.1.15: resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} engines: {node: '>= 0.4'} @@ -4390,10 +4200,6 @@ packages: wordwrap@1.0.0: resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} - wrap-ansi@6.2.0: - resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} - engines: {node: '>=8'} - wrap-ansi@7.0.0: resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} engines: {node: '>=10'} @@ -4409,13 +4215,6 @@ packages: wrappy@1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - y18n@4.0.3: - resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} - - y18n@5.0.8: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} - engines: {node: '>=10'} - yallist@2.1.2: resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} @@ -4428,22 +4227,6 @@ packages: engines: {node: '>= 14'} hasBin: true - yargs-parser@18.1.3: - resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} - engines: {node: '>=6'} - - yargs-parser@21.1.1: - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} - engines: {node: '>=12'} - - yargs@15.4.1: - resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} - engines: {node: '>=8'} - - yargs@17.7.2: - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} - engines: {node: '>=12'} - yocto-queue@0.1.0: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} @@ -4471,7 +4254,7 @@ snapshots: '@babel/code-frame@7.24.7': dependencies: '@babel/highlight': 7.24.7 - picocolors: 1.0.1 + picocolors: 1.1.0 '@babel/generator@7.24.10': dependencies: @@ -4513,7 +4296,7 @@ snapshots: '@babel/helper-validator-identifier': 7.24.7 chalk: 2.4.2 js-tokens: 4.0.0 - picocolors: 1.0.1 + picocolors: 1.1.0 '@babel/parser@7.24.8': dependencies: @@ -5257,12 +5040,12 @@ snapshots: '@chakra-ui/system': 2.6.2(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) react: 18.3.1 - '@changesets/apply-release-plan@7.0.0': + '@changesets/apply-release-plan@7.0.5': dependencies: - '@babel/runtime': 7.24.8 - '@changesets/config': 3.0.0 + '@changesets/config': 3.0.3 '@changesets/get-version-range-type': 0.4.0 - '@changesets/git': 3.0.0 + '@changesets/git': 3.0.1 + '@changesets/should-skip-package': 0.1.1 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 detect-indent: 6.1.0 @@ -5273,11 +5056,11 @@ snapshots: resolve-from: 5.0.0 semver: 7.6.3 - '@changesets/assemble-release-plan@6.0.0(patch_hash=h32n3ge4nf46sxbiqfnayewo7u)': + '@changesets/assemble-release-plan@6.0.4(patch_hash=h7fa74ddz2lm7t3hquqctf7dgq)': dependencies: - '@babel/runtime': 7.24.8 '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.0.0 + '@changesets/get-dependents-graph': 2.1.2 + '@changesets/should-skip-package': 0.1.1 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 semver: 7.6.3 @@ -5286,46 +5069,44 @@ snapshots: dependencies: '@changesets/types': 6.0.0 - '@changesets/cli@2.27.1': + '@changesets/cli@2.27.8': dependencies: - '@babel/runtime': 7.24.8 - '@changesets/apply-release-plan': 7.0.0 - '@changesets/assemble-release-plan': 6.0.0(patch_hash=h32n3ge4nf46sxbiqfnayewo7u) + '@changesets/apply-release-plan': 7.0.5 + '@changesets/assemble-release-plan': 6.0.4(patch_hash=h7fa74ddz2lm7t3hquqctf7dgq) '@changesets/changelog-git': 0.2.0 - '@changesets/config': 3.0.0 + '@changesets/config': 3.0.3 '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.0.0 - '@changesets/get-release-plan': 4.0.0 - '@changesets/git': 3.0.0 - '@changesets/logger': 0.1.0 - '@changesets/pre': 2.0.0 - '@changesets/read': 0.6.0 + '@changesets/get-dependents-graph': 2.1.2 + '@changesets/get-release-plan': 4.0.4 + '@changesets/git': 3.0.1 + '@changesets/logger': 0.1.1 + '@changesets/pre': 2.0.1 + '@changesets/read': 0.6.1 + '@changesets/should-skip-package': 0.1.1 '@changesets/types': 6.0.0 - '@changesets/write': 0.3.0 + '@changesets/write': 0.3.2 '@manypkg/get-packages': 1.1.3 '@types/semver': 7.5.8 ansi-colors: 4.1.3 - chalk: 2.4.2 ci-info: 3.8.0 enquirer: 2.4.1 external-editor: 3.1.0 fs-extra: 7.0.1 - human-id: 1.0.2 - meow: 6.1.1 + mri: 1.2.0 outdent: 0.5.0 p-limit: 2.3.0 - preferred-pm: 3.0.3 + package-manager-detector: 0.2.0 + picocolors: 1.1.0 resolve-from: 5.0.0 semver: 7.6.3 spawndamnit: 2.0.0 term-size: 2.2.1 - tty-table: 4.2.1 - '@changesets/config@3.0.0': + '@changesets/config@3.0.3': dependencies: '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.0.0 - '@changesets/logger': 0.1.0 + '@changesets/get-dependents-graph': 2.1.2 + '@changesets/logger': 0.1.1 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 @@ -5335,71 +5116,69 @@ snapshots: dependencies: extendable-error: 0.1.7 - '@changesets/get-dependents-graph@2.0.0': + '@changesets/get-dependents-graph@2.1.2': dependencies: '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 - chalk: 2.4.2 - fs-extra: 7.0.1 + picocolors: 1.1.0 semver: 7.6.3 - '@changesets/get-release-plan@4.0.0': + '@changesets/get-release-plan@4.0.4': dependencies: - '@babel/runtime': 7.24.8 - '@changesets/assemble-release-plan': 6.0.0(patch_hash=h32n3ge4nf46sxbiqfnayewo7u) - '@changesets/config': 3.0.0 - '@changesets/pre': 2.0.0 - '@changesets/read': 0.6.0 + '@changesets/assemble-release-plan': 6.0.4(patch_hash=h7fa74ddz2lm7t3hquqctf7dgq) + '@changesets/config': 3.0.3 + '@changesets/pre': 2.0.1 + '@changesets/read': 0.6.1 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 '@changesets/get-version-range-type@0.4.0': {} - '@changesets/git@3.0.0': + '@changesets/git@3.0.1': dependencies: - '@babel/runtime': 7.24.8 '@changesets/errors': 0.2.0 - '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 is-subdir: 1.2.0 micromatch: 4.0.8 spawndamnit: 2.0.0 - '@changesets/logger@0.1.0': + '@changesets/logger@0.1.1': dependencies: - chalk: 2.4.2 + picocolors: 1.1.0 '@changesets/parse@0.4.0': dependencies: '@changesets/types': 6.0.0 js-yaml: 3.14.1 - '@changesets/pre@2.0.0': + '@changesets/pre@2.0.1': dependencies: - '@babel/runtime': 7.24.8 '@changesets/errors': 0.2.0 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 - '@changesets/read@0.6.0': + '@changesets/read@0.6.1': dependencies: - '@babel/runtime': 7.24.8 - '@changesets/git': 3.0.0 - '@changesets/logger': 0.1.0 + '@changesets/git': 3.0.1 + '@changesets/logger': 0.1.1 '@changesets/parse': 0.4.0 '@changesets/types': 6.0.0 - chalk: 2.4.2 fs-extra: 7.0.1 p-filter: 2.1.0 + picocolors: 1.1.0 + + '@changesets/should-skip-package@0.1.1': + dependencies: + '@changesets/types': 6.0.0 + '@manypkg/get-packages': 1.1.3 '@changesets/types@4.1.0': {} '@changesets/types@6.0.0': {} - '@changesets/write@0.3.0': + '@changesets/write@0.3.2': dependencies: - '@babel/runtime': 7.24.8 '@changesets/types': 6.0.0 fs-extra: 7.0.1 human-id: 1.0.2 @@ -5759,8 +5538,8 @@ snapshots: '@open-pioneer/tag-current-versions@2.0.2': dependencies: - '@changesets/git': 3.0.0 - '@changesets/logger': 0.1.0 + '@changesets/git': 3.0.1 + '@changesets/logger': 0.1.1 '@manypkg/get-packages': 2.2.1 '@open-pioneer/vite-plugin-pioneer@3.0.4(@open-pioneer/runtime@src+packages+runtime)(sass@1.77.8)(vite@5.3.4(@types/node@18.19.41)(sass@1.77.8))': @@ -5978,16 +5757,12 @@ snapshots: '@types/lodash@4.14.195': {} - '@types/minimist@1.2.2': {} - '@types/node@12.20.55': {} '@types/node@18.19.41': dependencies: undici-types: 5.26.5 - '@types/normalize-package-data@2.4.1': {} - '@types/parse-json@4.0.2': {} '@types/prop-types@15.7.5': {} @@ -6258,8 +6033,6 @@ snapshots: is-array-buffer: 3.0.4 is-shared-array-buffer: 1.0.3 - arrify@1.0.1: {} - asap@2.0.6: {} assertion-error@2.0.1: {} @@ -6297,10 +6070,6 @@ snapshots: dependencies: fill-range: 7.1.1 - breakword@1.0.6: - dependencies: - wcwidth: 1.0.1 - builtin-modules@3.3.0: {} cac@6.7.14: {} @@ -6315,14 +6084,6 @@ snapshots: callsites@3.1.0: {} - camelcase-keys@6.2.2: - dependencies: - camelcase: 5.3.1 - map-obj: 4.3.0 - quick-lru: 4.0.1 - - camelcase@5.3.1: {} - chai@5.1.1: dependencies: assertion-error: 2.0.1 @@ -6378,20 +6139,6 @@ snapshots: slice-ansi: 5.0.0 string-width: 7.2.0 - cliui@6.0.0: - dependencies: - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 6.2.0 - - cliui@8.0.1: - dependencies: - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 7.0.0 - - clone@1.0.4: {} - color-convert@1.9.3: dependencies: color-name: 1.1.3 @@ -6465,19 +6212,6 @@ snapshots: csstype@3.1.3: {} - csv-generate@3.4.3: {} - - csv-parse@4.16.3: {} - - csv-stringify@5.6.5: {} - - csv@5.5.3: - dependencies: - csv-generate: 3.4.3 - csv-parse: 4.16.3 - csv-stringify: 5.6.5 - stream-transform: 2.1.3 - data-view-buffer@1.0.1: dependencies: call-bind: 1.0.7 @@ -6504,23 +6238,12 @@ snapshots: dependencies: ms: 2.1.2 - decamelize-keys@1.1.1: - dependencies: - decamelize: 1.2.0 - map-obj: 1.0.1 - - decamelize@1.2.0: {} - deep-eql@5.0.2: {} deep-is@0.1.4: {} deepmerge@4.3.1: {} - defaults@1.0.4: - dependencies: - clone: 1.0.4 - define-data-property@1.1.4: dependencies: es-define-property: 1.0.0 @@ -6703,8 +6426,6 @@ snapshots: '@esbuild/win32-ia32': 0.21.5 '@esbuild/win32-x64': 0.21.5 - escalade@3.1.1: {} - escape-string-regexp@1.0.5: {} escape-string-regexp@4.0.0: {} @@ -6983,11 +6704,6 @@ snapshots: pkg-types: 1.1.1 yaml: 2.4.5 - find-yarn-workspace-root2@1.2.16: - dependencies: - micromatch: 4.0.8 - pkg-dir: 4.2.0 - flat-cache@3.0.4: dependencies: flatted: 3.2.7 @@ -7062,8 +6778,6 @@ snapshots: functions-have-names@1.2.3: {} - get-caller-file@2.0.5: {} - get-east-asian-width@1.2.0: {} get-func-name@2.0.2: {} @@ -7141,8 +6855,6 @@ snapshots: graceful-fs@4.2.11: {} - grapheme-splitter@1.0.4: {} - graphemer@1.4.0: {} handlebars@4.7.8: @@ -7160,8 +6872,6 @@ snapshots: webidl-conversions: 7.0.0 whatwg-mimetype: 3.0.0 - hard-rejection@2.1.0: {} - has-bigints@1.0.2: {} has-flag@3.0.0: {} @@ -7188,8 +6898,6 @@ snapshots: dependencies: react-is: 16.13.1 - hosted-git-info@2.8.9: {} - human-id@1.0.2: {} human-signals@5.0.0: {} @@ -7323,8 +7031,6 @@ snapshots: is-path-inside@3.0.3: {} - is-plain-obj@1.1.0: {} - is-regex@1.1.4: dependencies: call-bind: 1.0.7 @@ -7438,10 +7144,6 @@ snapshots: js-sha256: 0.11.0 jwt-decode: 4.0.0 - kind-of@6.0.3: {} - - kleur@4.1.5: {} - levn@0.4.1: dependencies: prelude-ls: 1.2.1 @@ -7479,13 +7181,6 @@ snapshots: rfdc: 1.4.1 wrap-ansi: 9.0.0 - load-yaml-file@0.2.0: - dependencies: - graceful-fs: 4.2.11 - js-yaml: 3.14.1 - pify: 4.0.1 - strip-bom: 3.0.0 - locate-path@5.0.0: dependencies: p-locate: 4.1.0 @@ -7537,10 +7232,6 @@ snapshots: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 - map-obj@1.0.1: {} - - map-obj@4.3.0: {} - markdown-it@14.1.0: dependencies: argparse: 2.0.1 @@ -7554,20 +7245,6 @@ snapshots: mdurl@2.0.0: {} - meow@6.1.1: - dependencies: - '@types/minimist': 1.2.2 - camelcase-keys: 6.2.2 - decamelize-keys: 1.1.1 - hard-rejection: 2.1.0 - minimist-options: 4.1.0 - normalize-package-data: 2.5.0 - read-pkg-up: 7.0.1 - redent: 3.0.0 - trim-newlines: 3.0.1 - type-fest: 0.13.1 - yargs-parser: 18.1.3 - merge-stream@2.0.0: {} merge2@1.4.1: {} @@ -7591,18 +7268,10 @@ snapshots: dependencies: brace-expansion: 2.0.1 - minimist-options@4.1.0: - dependencies: - arrify: 1.0.1 - is-plain-obj: 1.1.0 - kind-of: 6.0.3 - minimist@1.2.8: {} minipass@7.0.1: {} - mixme@0.5.9: {} - mlly@1.7.0: dependencies: acorn: 8.11.3 @@ -7610,6 +7279,8 @@ snapshots: pkg-types: 1.1.1 ufo: 1.5.3 + mri@1.2.0: {} + ms@2.1.2: {} ms@2.1.3: {} @@ -7637,13 +7308,6 @@ snapshots: dependencies: whatwg-url: 5.0.0 - normalize-package-data@2.5.0: - dependencies: - hosted-git-info: 2.8.9 - resolve: 1.22.8 - semver: 7.6.3 - validate-npm-package-license: 3.0.4 - normalize-path@3.0.0: {} npm-run-path@5.3.0: @@ -7738,6 +7402,8 @@ snapshots: p-try@2.2.0: {} + package-manager-detector@0.2.0: {} + parent-module@1.0.1: dependencies: callsites: 3.1.0 @@ -7770,7 +7436,7 @@ snapshots: pathval@2.0.0: {} - picocolors@1.0.1: {} + picocolors@1.1.0: {} picomatch@2.3.1: {} @@ -7780,10 +7446,6 @@ snapshots: pify@4.0.1: {} - pkg-dir@4.2.0: - dependencies: - find-up: 4.1.0 - pkg-types@1.1.1: dependencies: confbox: 0.1.7 @@ -7804,16 +7466,9 @@ snapshots: postcss@8.4.39: dependencies: nanoid: 3.3.7 - picocolors: 1.0.1 + picocolors: 1.1.0 source-map-js: 1.2.0 - preferred-pm@3.0.3: - dependencies: - find-up: 5.0.0 - find-yarn-workspace-root2: 1.2.16 - path-exists: 4.0.0 - which-pm: 2.0.0 - prelude-ls@1.2.1: {} prettier@2.8.8: {} @@ -7846,8 +7501,6 @@ snapshots: queue-microtask@1.2.3: {} - quick-lru@4.0.1: {} - react-base16-styling@0.6.0: dependencies: base16: 1.0.0 @@ -7967,19 +7620,6 @@ snapshots: dependencies: pify: 2.3.0 - read-pkg-up@7.0.1: - dependencies: - find-up: 4.1.0 - read-pkg: 5.2.0 - type-fest: 0.8.1 - - read-pkg@5.2.0: - dependencies: - '@types/normalize-package-data': 2.4.1 - normalize-package-data: 2.5.0 - parse-json: 5.2.0 - type-fest: 0.6.0 - read-yaml-file@1.1.0: dependencies: graceful-fs: 4.2.11 @@ -8015,10 +7655,6 @@ snapshots: es-errors: 1.3.0 set-function-name: 2.0.2 - require-directory@2.1.1: {} - - require-main-filename@2.0.0: {} - resize-observer-polyfill@1.5.1: {} resolve-from@4.0.0: {} @@ -8130,8 +7766,6 @@ snapshots: semver@7.6.3: {} - set-blocking@2.0.0: {} - set-function-length@1.2.2: dependencies: define-data-property: 1.1.4 @@ -8194,15 +7828,6 @@ snapshots: ansi-styles: 6.2.1 is-fullwidth-code-point: 5.0.0 - smartwrap@2.0.2: - dependencies: - array.prototype.flat: 1.3.2 - breakword: 1.0.6 - grapheme-splitter: 1.0.4 - strip-ansi: 6.0.1 - wcwidth: 1.0.1 - yargs: 15.4.1 - source-map-js@1.2.0: {} source-map@0.5.6: {} @@ -8216,20 +7841,6 @@ snapshots: cross-spawn: 5.1.0 signal-exit: 3.0.7 - spdx-correct@3.2.0: - dependencies: - spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.13 - - spdx-exceptions@2.3.0: {} - - spdx-expression-parse@3.0.1: - dependencies: - spdx-exceptions: 2.3.0 - spdx-license-ids: 3.0.13 - - spdx-license-ids@3.0.13: {} - sprintf-js@1.0.3: {} stack-generator@2.0.10: @@ -8253,10 +7864,6 @@ snapshots: std-env@3.7.0: {} - stream-transform@2.1.3: - dependencies: - mixme: 0.5.9 - string-argv@0.3.2: {} string-width@4.2.3: @@ -8380,8 +7987,6 @@ snapshots: tr46@0.0.3: {} - trim-newlines@3.0.1: {} - ts-api-utils@1.3.0(typescript@5.5.4): dependencies: typescript: 5.5.4 @@ -8399,28 +8004,12 @@ snapshots: tslib@2.6.3: {} - tty-table@4.2.1: - dependencies: - chalk: 4.1.2 - csv: 5.5.3 - kleur: 4.1.5 - smartwrap: 2.0.2 - strip-ansi: 6.0.1 - wcwidth: 1.0.1 - yargs: 17.7.2 - type-check@0.4.0: dependencies: prelude-ls: 1.2.1 - type-fest@0.13.1: {} - type-fest@0.20.2: {} - type-fest@0.6.0: {} - - type-fest@0.8.1: {} - typed-array-buffer@1.0.2: dependencies: call-bind: 1.0.7 @@ -8522,11 +8111,6 @@ snapshots: optionalDependencies: '@types/react': 18.3.3 - validate-npm-package-license@3.0.4: - dependencies: - spdx-correct: 3.2.0 - spdx-expression-parse: 3.0.1 - vite-node@2.0.4(@types/node@18.19.41)(sass@1.77.8): dependencies: cac: 6.7.14 @@ -8599,10 +8183,6 @@ snapshots: - supports-color - terser - wcwidth@1.0.1: - dependencies: - defaults: 1.0.4 - webidl-conversions@3.0.1: {} webidl-conversions@7.0.0: {} @@ -8644,13 +8224,6 @@ snapshots: is-weakmap: 2.0.2 is-weakset: 2.0.3 - which-module@2.0.1: {} - - which-pm@2.0.0: - dependencies: - load-yaml-file: 0.2.0 - path-exists: 4.0.0 - which-typed-array@1.1.15: dependencies: available-typed-arrays: 1.0.7 @@ -8674,12 +8247,6 @@ snapshots: wordwrap@1.0.0: {} - wrap-ansi@6.2.0: - dependencies: - ansi-styles: 4.3.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi@7.0.0: dependencies: ansi-styles: 4.3.0 @@ -8700,47 +8267,12 @@ snapshots: wrappy@1.0.2: {} - y18n@4.0.3: {} - - y18n@5.0.8: {} - yallist@2.1.2: {} yaml@1.10.2: {} yaml@2.4.5: {} - yargs-parser@18.1.3: - dependencies: - camelcase: 5.3.1 - decamelize: 1.2.0 - - yargs-parser@21.1.1: {} - - yargs@15.4.1: - dependencies: - cliui: 6.0.0 - decamelize: 1.2.0 - find-up: 4.1.0 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - require-main-filename: 2.0.0 - set-blocking: 2.0.0 - string-width: 4.2.3 - which-module: 2.0.1 - y18n: 4.0.3 - yargs-parser: 18.1.3 - - yargs@17.7.2: - dependencies: - cliui: 8.0.1 - escalade: 3.1.1 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - string-width: 4.2.3 - y18n: 5.0.8 - yargs-parser: 21.1.1 - yocto-queue@0.1.0: {} zod-validation-error@3.3.0(zod@3.23.8): diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 4058e55b..9ddd428c 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -14,7 +14,7 @@ catalog: "@chakra-ui/icons": ^2.1.1 "@chakra-ui/react": ^2.8.2 "@chakra-ui/system": ^2.6.2 - "@changesets/cli": ^2.27.1 + "@changesets/cli": ^2.27.8 "@conterra/reactivity-core": ^0.4.2 "@emotion/cache": ^11.13.0 "@emotion/react": ^11.13.0 diff --git a/src/samples/api-sample/api-app/CHANGELOG.md b/src/samples/api-sample/api-app/CHANGELOG.md deleted file mode 100644 index db0b4ff1..00000000 --- a/src/samples/api-sample/api-app/CHANGELOG.md +++ /dev/null @@ -1,206 +0,0 @@ -# api-app - -## 0.0.20 - -### Patch Changes - -- Updated dependencies [5c62522] -- Updated dependencies [58ce24f] -- Updated dependencies [50550d3] -- Updated dependencies [e0b2fae] -- Updated dependencies [6cc7fcd] - - @open-pioneer/chakra-integration@1.1.4 - - @open-pioneer/integration@2.0.10 - - @open-pioneer/core@1.3.0 - - @open-pioneer/runtime@2.1.7 - -## 0.0.19 - -### Patch Changes - -- Updated dependencies [e945264] - - @open-pioneer/runtime@2.1.6 - - @open-pioneer/integration@2.0.9 - -## 0.0.18 - -### Patch Changes - -- Updated dependencies [90d0cce] -- Updated dependencies [90d0cce] - - @open-pioneer/runtime@2.1.5 - - @open-pioneer/integration@2.0.8 - -## 0.0.17 - -### Patch Changes - -- Updated dependencies [5d3aafd] -- Updated dependencies [64645aa] -- Updated dependencies [64645aa] -- Updated dependencies [b3c60f2] - - @open-pioneer/core@1.2.3 - - @open-pioneer/chakra-integration@1.1.3 - - @open-pioneer/runtime@2.1.4 - - @open-pioneer/integration@2.0.7 - -## 0.0.16 - -### Patch Changes - -- Updated dependencies [5ff8f30] - - @open-pioneer/chakra-integration@1.1.2 - - @open-pioneer/integration@2.0.6 - - @open-pioneer/runtime@2.1.3 - - @open-pioneer/core@1.2.2 - -## 0.0.15 - -### Patch Changes - -- @open-pioneer/runtime@2.1.2 -- @open-pioneer/integration@2.0.5 - -## 0.0.14 - -### Patch Changes - -- Updated dependencies [f749d96] - - @open-pioneer/runtime@2.1.1 - - @open-pioneer/integration@2.0.4 - -## 0.0.13 - -### Patch Changes - -- Updated dependencies [80cd62d] - - @open-pioneer/runtime@2.1.0 - - @open-pioneer/integration@2.0.3 - -## 0.0.12 - -### Patch Changes - -- Updated dependencies [11b1428] - - @open-pioneer/core@1.2.1 - - @open-pioneer/runtime@2.0.2 - - @open-pioneer/integration@2.0.2 - -## 0.0.11 - -### Patch Changes - -- Updated dependencies [a18d227] - - @open-pioneer/core@1.2.0 - - @open-pioneer/runtime@2.0.1 - - @open-pioneer/integration@2.0.1 - -## 0.0.10 - -### Patch Changes - -- Updated dependencies [f5c0e31] -- Updated dependencies [ce9e060] -- Updated dependencies [f5c0e31] -- Updated dependencies [6f954e3] -- Updated dependencies [6f954e3] - - @open-pioneer/runtime@2.0.0 - - @open-pioneer/chakra-integration@1.1.1 - - @open-pioneer/integration@2.0.0 - -## 0.0.9 - -### Patch Changes - -- Updated dependencies [6632892] -- Updated dependencies [6632892] - - @open-pioneer/runtime@1.1.0 - - @open-pioneer/chakra-integration@1.1.0 - - @open-pioneer/integration@1.0.3 - -## 0.0.8 - -### Patch Changes - -- Updated dependencies [69c0fcd] - - @open-pioneer/core@1.1.0 - - @open-pioneer/runtime@1.0.2 - - @open-pioneer/integration@1.0.2 - -## 0.0.7 - -### Patch Changes - -- Updated dependencies [88fd710] - - @open-pioneer/core@1.0.1 - - @open-pioneer/runtime@1.0.1 - - @open-pioneer/integration@1.0.1 - -## 0.0.6 - -### Patch Changes - -- Updated dependencies [22ff68a] - - @open-pioneer/chakra-integration@1.0.0 - - @open-pioneer/core@1.0.0 - - @open-pioneer/integration@1.0.0 - - @open-pioneer/runtime@1.0.0 - -## 0.0.5 - -### Patch Changes - -- Updated dependencies [9eac5c9] - - @open-pioneer/chakra-integration@0.1.4 - - @open-pioneer/integration@0.1.4 - - @open-pioneer/runtime@0.1.5 - - @open-pioneer/core@0.1.4 - -## 0.0.4 - -### Patch Changes - -- Updated dependencies [234b3be] -- Updated dependencies [49ba4e1] - - @open-pioneer/integration@0.1.3 - - @open-pioneer/runtime@0.1.4 - - @open-pioneer/chakra-integration@0.1.3 - - @open-pioneer/core@0.1.3 - -## 0.0.3 - -### Patch Changes - -- Updated dependencies [e752d49] - - @open-pioneer/runtime@0.1.3 - - @open-pioneer/integration@0.1.2 - -## 0.0.2 - -### Patch Changes - -- Updated dependencies [a40f12d] - - @open-pioneer/chakra-integration@0.1.2 - - @open-pioneer/core@0.1.2 - - @open-pioneer/integration@0.1.2 - - @open-pioneer/runtime@0.1.2 - -## 0.0.1 - -### Patch Changes - -- Updated dependencies [e1c7295] - - @open-pioneer/chakra-integration@0.1.1 - - @open-pioneer/core@0.1.1 - - @open-pioneer/integration@0.1.1 - - @open-pioneer/runtime@0.1.1 - -## null - -### Patch Changes - -- Updated dependencies [77f7d5c] - - @open-pioneer/chakra-integration@0.1.0 - - @open-pioneer/core@0.1.0 - - @open-pioneer/integration@0.1.0 - - @open-pioneer/runtime@0.1.0 diff --git a/src/samples/auth-sample/auth-app/CHANGELOG.md b/src/samples/auth-sample/auth-app/CHANGELOG.md deleted file mode 100644 index 033767a9..00000000 --- a/src/samples/auth-sample/auth-app/CHANGELOG.md +++ /dev/null @@ -1,88 +0,0 @@ -# auth-app - -## 0.0.10 - -### Patch Changes - -- Updated dependencies [5c62522] -- Updated dependencies [58ce24f] -- Updated dependencies [50550d3] -- Updated dependencies [e0b2fae] -- Updated dependencies [6cc7fcd] - - @open-pioneer/chakra-integration@1.1.4 - - @open-pioneer/authentication@0.3.6 - - @open-pioneer/core@1.3.0 - - @open-pioneer/runtime@2.1.7 - -## 0.0.9 - -### Patch Changes - -- Updated dependencies [e945264] - - @open-pioneer/runtime@2.1.6 - - @open-pioneer/authentication@0.3.5 - -## 0.0.8 - -### Patch Changes - -- Updated dependencies [90d0cce] -- Updated dependencies [90d0cce] - - @open-pioneer/runtime@2.1.5 - - @open-pioneer/authentication@0.3.4 - -## 0.0.7 - -### Patch Changes - -- Updated dependencies [5d3aafd] -- Updated dependencies [64645aa] -- Updated dependencies [64645aa] -- Updated dependencies [b3c60f2] - - @open-pioneer/core@1.2.3 - - @open-pioneer/chakra-integration@1.1.3 - - @open-pioneer/authentication@0.3.3 - - @open-pioneer/runtime@2.1.4 - -## 0.0.6 - -### Patch Changes - -- Updated dependencies [5ff8f30] - - @open-pioneer/chakra-integration@1.1.2 - - @open-pioneer/authentication@0.3.2 - - @open-pioneer/runtime@2.1.3 - - @open-pioneer/core@1.2.2 - -## 0.0.5 - -### Patch Changes - -- Updated dependencies [4eac7c7] - - @open-pioneer/authentication@0.3.1 - - @open-pioneer/runtime@2.1.2 - -## 0.0.4 - -### Patch Changes - -- Updated dependencies [ee7c2d4] - - @open-pioneer/authentication@0.3.0 - - @open-pioneer/theme@0.3.0 - -## 0.0.3 - -### Patch Changes - -- Updated dependencies [70349a8] - - @open-pioneer/authentication@0.2.0 - - @open-pioneer/theme@0.2.0 - -## 0.0.2 - -### Patch Changes - -- Updated dependencies [2cee00c] -- Updated dependencies [13a0289] - - @open-pioneer/theme@0.1.0 - - @open-pioneer/authentication@0.1.0 diff --git a/src/samples/chakra-sample/chakra-app/CHANGELOG.md b/src/samples/chakra-sample/chakra-app/CHANGELOG.md deleted file mode 100644 index d68409e2..00000000 --- a/src/samples/chakra-sample/chakra-app/CHANGELOG.md +++ /dev/null @@ -1,175 +0,0 @@ -# chakra-app - -## 0.0.20 - -### Patch Changes - -- Updated dependencies [5c62522] -- Updated dependencies [58ce24f] -- Updated dependencies [e0b2fae] -- Updated dependencies [6cc7fcd] - - @open-pioneer/chakra-integration@1.1.4 - - @open-pioneer/runtime@2.1.7 - - @open-pioneer/base-theme@0.3.3 - -## 0.0.19 - -### Patch Changes - -- Updated dependencies [e945264] - - @open-pioneer/runtime@2.1.6 - -## 0.0.18 - -### Patch Changes - -- Updated dependencies [90d0cce] -- Updated dependencies [90d0cce] - - @open-pioneer/runtime@2.1.5 - -## 0.0.17 - -### Patch Changes - -- Updated dependencies [64645aa] -- Updated dependencies [64645aa] -- Updated dependencies [b3c60f2] - - @open-pioneer/chakra-integration@1.1.3 - - @open-pioneer/runtime@2.1.4 - - @open-pioneer/base-theme@0.3.2 - -## 0.0.16 - -### Patch Changes - -- Updated dependencies [be236af] -- Updated dependencies [5ff8f30] - - @open-pioneer/base-theme@0.3.1 - - @open-pioneer/chakra-integration@1.1.2 - - @open-pioneer/runtime@2.1.3 - -## 0.0.15 - -### Patch Changes - -- Updated dependencies [6380aa4] - - @open-pioneer/base-theme@0.3.0 - - @open-pioneer/runtime@2.1.2 - -## 0.0.14 - -### Patch Changes - -- Updated dependencies [f749d96] - - @open-pioneer/runtime@2.1.1 - -## 0.0.13 - -### Patch Changes - -- Updated dependencies [80cd62d] - - @open-pioneer/runtime@2.1.0 - -## 0.0.12 - -### Patch Changes - -- @open-pioneer/runtime@2.0.2 - -## 0.0.11 - -### Patch Changes - -- @open-pioneer/runtime@2.0.1 - -## 0.0.10 - -### Patch Changes - -- Updated dependencies [f5c0e31] -- Updated dependencies [ce9e060] -- Updated dependencies [f5c0e31] -- Updated dependencies [6f954e3] -- Updated dependencies [6f954e3] - - @open-pioneer/runtime@2.0.0 - - @open-pioneer/chakra-integration@1.1.1 - - @open-pioneer/base-theme@0.2.0 - -## 0.0.9 - -### Patch Changes - -- Updated dependencies [6632892] -- Updated dependencies [6632892] -- Updated dependencies [6632892] - - @open-pioneer/runtime@1.1.0 - - @open-pioneer/base-theme@0.1.0 - - @open-pioneer/chakra-integration@1.1.0 - -## 0.0.8 - -### Patch Changes - -- @open-pioneer/runtime@1.0.2 - -## 0.0.7 - -### Patch Changes - -- @open-pioneer/runtime@1.0.1 - -## 0.0.6 - -### Patch Changes - -- Updated dependencies [22ff68a] - - @open-pioneer/chakra-integration@1.0.0 - - @open-pioneer/runtime@1.0.0 - -## 0.0.5 - -### Patch Changes - -- Updated dependencies [9eac5c9] - - @open-pioneer/chakra-integration@0.1.4 - - @open-pioneer/runtime@0.1.5 - -## 0.0.4 - -### Patch Changes - -- Updated dependencies [234b3be] -- Updated dependencies [49ba4e1] - - @open-pioneer/runtime@0.1.4 - - @open-pioneer/chakra-integration@0.1.3 - -## 0.0.3 - -### Patch Changes - -- Updated dependencies [e752d49] - - @open-pioneer/runtime@0.1.3 - -## 0.0.2 - -### Patch Changes - -- Updated dependencies [a40f12d] - - @open-pioneer/chakra-integration@0.1.2 - - @open-pioneer/runtime@0.1.2 - -## 0.0.1 - -### Patch Changes - -- Updated dependencies [e1c7295] - - @open-pioneer/chakra-integration@0.1.1 - - @open-pioneer/runtime@0.1.1 - -## null - -### Patch Changes - -- Updated dependencies [77f7d5c] - - @open-pioneer/chakra-integration@0.1.0 - - @open-pioneer/runtime@0.1.0 diff --git a/src/samples/extension-sample/extension-app/CHANGELOG.md b/src/samples/extension-sample/extension-app/CHANGELOG.md deleted file mode 100644 index 17b0b31c..00000000 --- a/src/samples/extension-sample/extension-app/CHANGELOG.md +++ /dev/null @@ -1,165 +0,0 @@ -# extension-app - -## 0.0.20 - -### Patch Changes - -- Updated dependencies [5c62522] -- Updated dependencies [58ce24f] -- Updated dependencies [e0b2fae] -- Updated dependencies [6cc7fcd] - - @open-pioneer/chakra-integration@1.1.4 - - @open-pioneer/runtime@2.1.7 - -## 0.0.19 - -### Patch Changes - -- Updated dependencies [e945264] - - @open-pioneer/runtime@2.1.6 - -## 0.0.18 - -### Patch Changes - -- Updated dependencies [90d0cce] -- Updated dependencies [90d0cce] - - @open-pioneer/runtime@2.1.5 - -## 0.0.17 - -### Patch Changes - -- Updated dependencies [64645aa] -- Updated dependencies [64645aa] -- Updated dependencies [b3c60f2] - - @open-pioneer/chakra-integration@1.1.3 - - @open-pioneer/runtime@2.1.4 - -## 0.0.16 - -### Patch Changes - -- Updated dependencies [5ff8f30] - - @open-pioneer/chakra-integration@1.1.2 - - @open-pioneer/runtime@2.1.3 - -## 0.0.15 - -### Patch Changes - -- @open-pioneer/runtime@2.1.2 - -## 0.0.14 - -### Patch Changes - -- Updated dependencies [f749d96] - - @open-pioneer/runtime@2.1.1 - -## 0.0.13 - -### Patch Changes - -- Updated dependencies [80cd62d] - - @open-pioneer/runtime@2.1.0 - -## 0.0.12 - -### Patch Changes - -- @open-pioneer/runtime@2.0.2 - -## 0.0.11 - -### Patch Changes - -- @open-pioneer/runtime@2.0.1 - -## 0.0.10 - -### Patch Changes - -- Updated dependencies [f5c0e31] -- Updated dependencies [ce9e060] -- Updated dependencies [f5c0e31] -- Updated dependencies [6f954e3] - - @open-pioneer/runtime@2.0.0 - - @open-pioneer/chakra-integration@1.1.1 - -## 0.0.9 - -### Patch Changes - -- Updated dependencies [6632892] -- Updated dependencies [6632892] - - @open-pioneer/runtime@1.1.0 - - @open-pioneer/chakra-integration@1.1.0 - -## 0.0.8 - -### Patch Changes - -- @open-pioneer/runtime@1.0.2 - -## 0.0.7 - -### Patch Changes - -- @open-pioneer/runtime@1.0.1 - -## 0.0.6 - -### Patch Changes - -- Updated dependencies [22ff68a] - - @open-pioneer/chakra-integration@1.0.0 - - @open-pioneer/runtime@1.0.0 - -## 0.0.5 - -### Patch Changes - -- Updated dependencies [9eac5c9] - - @open-pioneer/chakra-integration@0.1.4 - - @open-pioneer/runtime@0.1.5 - -## 0.0.4 - -### Patch Changes - -- Updated dependencies [234b3be] -- Updated dependencies [49ba4e1] - - @open-pioneer/runtime@0.1.4 - - @open-pioneer/chakra-integration@0.1.3 - -## 0.0.3 - -### Patch Changes - -- Updated dependencies [e752d49] - - @open-pioneer/runtime@0.1.3 - -## 0.0.2 - -### Patch Changes - -- Updated dependencies [a40f12d] - - @open-pioneer/chakra-integration@0.1.2 - - @open-pioneer/runtime@0.1.2 - -## 0.0.1 - -### Patch Changes - -- Updated dependencies [e1c7295] - - @open-pioneer/chakra-integration@0.1.1 - - @open-pioneer/runtime@0.1.1 - -## null - -### Patch Changes - -- Updated dependencies [77f7d5c] - - @open-pioneer/chakra-integration@0.1.0 - - @open-pioneer/runtime@0.1.0 diff --git a/src/samples/http-sample/http-app/CHANGELOG.md b/src/samples/http-sample/http-app/CHANGELOG.md deleted file mode 100644 index 995ff823..00000000 --- a/src/samples/http-sample/http-app/CHANGELOG.md +++ /dev/null @@ -1,163 +0,0 @@ -# http-app - -## 0.0.20 - -### Patch Changes - -- Updated dependencies [5c62522] -- Updated dependencies [58ce24f] -- Updated dependencies [50550d3] -- Updated dependencies [e0b2fae] -- Updated dependencies [6cc7fcd] - - @open-pioneer/chakra-integration@1.1.4 - - @open-pioneer/core@1.3.0 - - @open-pioneer/http@2.1.9 - - @open-pioneer/runtime@2.1.7 - -## 0.0.19 - -### Patch Changes - -- Updated dependencies [e945264] - - @open-pioneer/runtime@2.1.6 - - @open-pioneer/http@2.1.8 - -## 0.0.18 - -### Patch Changes - -- Updated dependencies [90d0cce] -- Updated dependencies [90d0cce] - - @open-pioneer/runtime@2.1.5 - - @open-pioneer/http@2.1.7 - -## 0.0.17 - -### Patch Changes - -- Updated dependencies [5d3aafd] -- Updated dependencies [64645aa] -- Updated dependencies [64645aa] -- Updated dependencies [b3c60f2] - - @open-pioneer/core@1.2.3 - - @open-pioneer/chakra-integration@1.1.3 - - @open-pioneer/runtime@2.1.4 - - @open-pioneer/http@2.1.6 - -## 0.0.16 - -### Patch Changes - -- Updated dependencies [5ff8f30] - - @open-pioneer/chakra-integration@1.1.2 - - @open-pioneer/runtime@2.1.3 - - @open-pioneer/core@1.2.2 - - @open-pioneer/http@2.1.5 - -## 0.0.15 - -### Patch Changes - -- @open-pioneer/runtime@2.1.2 -- @open-pioneer/http@2.1.4 - -## 0.0.14 - -### Patch Changes - -- Updated dependencies [f749d96] - - @open-pioneer/runtime@2.1.1 - - @open-pioneer/http@2.1.3 - -## 0.0.13 - -### Patch Changes - -- Updated dependencies [80cd62d] - - @open-pioneer/runtime@2.1.0 - - @open-pioneer/http@2.1.2 - -## 0.0.12 - -### Patch Changes - -- Updated dependencies [11b1428] - - @open-pioneer/core@1.2.1 - - @open-pioneer/http@2.1.1 - - @open-pioneer/runtime@2.0.2 - -## 0.0.11 - -### Patch Changes - -- Updated dependencies [a18d227] -- Updated dependencies [a18d227] - - @open-pioneer/core@1.2.0 - - @open-pioneer/http@2.1.0 - - @open-pioneer/runtime@2.0.1 - -## 0.0.10 - -### Patch Changes - -- Updated dependencies [f5c0e31] -- Updated dependencies [ce9e060] -- Updated dependencies [f5c0e31] -- Updated dependencies [6f954e3] -- Updated dependencies [6f954e3] - - @open-pioneer/runtime@2.0.0 - - @open-pioneer/chakra-integration@1.1.1 - - @open-pioneer/http@2.0.0 - -## 0.0.9 - -### Patch Changes - -- Updated dependencies [6632892] -- Updated dependencies [6632892] - - @open-pioneer/runtime@1.1.0 - - @open-pioneer/chakra-integration@1.1.0 - - @open-pioneer/http@1.0.3 - -## 0.0.8 - -### Patch Changes - -- @open-pioneer/runtime@1.0.2 -- @open-pioneer/http@1.0.2 - -## 0.0.7 - -### Patch Changes - -- @open-pioneer/runtime@1.0.1 -- @open-pioneer/http@1.0.1 - -## 0.0.6 - -### Patch Changes - -- Updated dependencies [22ff68a] - - @open-pioneer/chakra-integration@1.0.0 - - @open-pioneer/http@1.0.0 - - @open-pioneer/runtime@1.0.0 - -## 0.0.5 - -### Patch Changes - -- Updated dependencies [9eac5c9] - - @open-pioneer/chakra-integration@0.1.4 - - @open-pioneer/runtime@0.1.5 - - @open-pioneer/http@0.1.1 - -## 0.0.4 - -### Patch Changes - -- Updated dependencies [234b3be] -- Updated dependencies [234b3be] -- Updated dependencies [49ba4e1] - - @open-pioneer/http@0.1.0 - - @open-pioneer/runtime@0.1.4 - - @open-pioneer/chakra-integration@0.1.3 diff --git a/src/samples/i18n-howto/app/CHANGELOG.md b/src/samples/i18n-howto/app/CHANGELOG.md deleted file mode 100644 index a3580f6a..00000000 --- a/src/samples/i18n-howto/app/CHANGELOG.md +++ /dev/null @@ -1,165 +0,0 @@ -# i18n-howto-app - -## 0.0.20 - -### Patch Changes - -- Updated dependencies [5c62522] -- Updated dependencies [58ce24f] -- Updated dependencies [e0b2fae] -- Updated dependencies [6cc7fcd] - - @open-pioneer/chakra-integration@1.1.4 - - @open-pioneer/runtime@2.1.7 - -## 0.0.19 - -### Patch Changes - -- Updated dependencies [e945264] - - @open-pioneer/runtime@2.1.6 - -## 0.0.18 - -### Patch Changes - -- Updated dependencies [90d0cce] -- Updated dependencies [90d0cce] - - @open-pioneer/runtime@2.1.5 - -## 0.0.17 - -### Patch Changes - -- Updated dependencies [64645aa] -- Updated dependencies [64645aa] -- Updated dependencies [b3c60f2] - - @open-pioneer/chakra-integration@1.1.3 - - @open-pioneer/runtime@2.1.4 - -## 0.0.16 - -### Patch Changes - -- Updated dependencies [5ff8f30] - - @open-pioneer/chakra-integration@1.1.2 - - @open-pioneer/runtime@2.1.3 - -## 0.0.15 - -### Patch Changes - -- @open-pioneer/runtime@2.1.2 - -## 0.0.14 - -### Patch Changes - -- Updated dependencies [f749d96] - - @open-pioneer/runtime@2.1.1 - -## 0.0.13 - -### Patch Changes - -- Updated dependencies [80cd62d] - - @open-pioneer/runtime@2.1.0 - -## 0.0.12 - -### Patch Changes - -- @open-pioneer/runtime@2.0.2 - -## 0.0.11 - -### Patch Changes - -- @open-pioneer/runtime@2.0.1 - -## 0.0.10 - -### Patch Changes - -- Updated dependencies [f5c0e31] -- Updated dependencies [ce9e060] -- Updated dependencies [f5c0e31] -- Updated dependencies [6f954e3] - - @open-pioneer/runtime@2.0.0 - - @open-pioneer/chakra-integration@1.1.1 - -## 0.0.9 - -### Patch Changes - -- Updated dependencies [6632892] -- Updated dependencies [6632892] - - @open-pioneer/runtime@1.1.0 - - @open-pioneer/chakra-integration@1.1.0 - -## 0.0.8 - -### Patch Changes - -- @open-pioneer/runtime@1.0.2 - -## 0.0.7 - -### Patch Changes - -- @open-pioneer/runtime@1.0.1 - -## 0.0.6 - -### Patch Changes - -- Updated dependencies [22ff68a] - - @open-pioneer/chakra-integration@1.0.0 - - @open-pioneer/runtime@1.0.0 - -## 0.0.5 - -### Patch Changes - -- Updated dependencies [9eac5c9] - - @open-pioneer/chakra-integration@0.1.4 - - @open-pioneer/runtime@0.1.5 - -## 0.0.4 - -### Patch Changes - -- Updated dependencies [234b3be] -- Updated dependencies [49ba4e1] - - @open-pioneer/runtime@0.1.4 - - @open-pioneer/chakra-integration@0.1.3 - -## 0.0.3 - -### Patch Changes - -- Updated dependencies [e752d49] - - @open-pioneer/runtime@0.1.3 - -## 0.0.2 - -### Patch Changes - -- Updated dependencies [a40f12d] - - @open-pioneer/chakra-integration@0.1.2 - - @open-pioneer/runtime@0.1.2 - -## 0.0.1 - -### Patch Changes - -- Updated dependencies [e1c7295] - - @open-pioneer/chakra-integration@0.1.1 - - @open-pioneer/runtime@0.1.1 - -## null - -### Patch Changes - -- Updated dependencies [77f7d5c] - - @open-pioneer/chakra-integration@0.1.0 - - @open-pioneer/runtime@0.1.0 diff --git a/src/samples/i18n-sample/i18n-app/CHANGELOG.md b/src/samples/i18n-sample/i18n-app/CHANGELOG.md deleted file mode 100644 index 697018a1..00000000 --- a/src/samples/i18n-sample/i18n-app/CHANGELOG.md +++ /dev/null @@ -1,184 +0,0 @@ -# i18n-app - -## 0.0.20 - -### Patch Changes - -- Updated dependencies [5c62522] -- Updated dependencies [58ce24f] -- Updated dependencies [e0b2fae] -- Updated dependencies [6cc7fcd] - - @open-pioneer/chakra-integration@1.1.4 - - @open-pioneer/runtime@2.1.7 - -## 0.0.19 - -### Patch Changes - -- Updated dependencies [e945264] - - @open-pioneer/runtime@2.1.6 - -## 0.0.18 - -### Patch Changes - -- Updated dependencies [90d0cce] -- Updated dependencies [90d0cce] - - @open-pioneer/runtime@2.1.5 - -## 0.0.17 - -### Patch Changes - -- Updated dependencies [64645aa] -- Updated dependencies [64645aa] -- Updated dependencies [b3c60f2] - - @open-pioneer/chakra-integration@1.1.3 - - @open-pioneer/runtime@2.1.4 - - @open-pioneer/integration@2.0.7 - -## 0.0.16 - -### Patch Changes - -- Updated dependencies [5ff8f30] - - @open-pioneer/chakra-integration@1.1.2 - - @open-pioneer/integration@2.0.6 - - @open-pioneer/runtime@2.1.3 - -## 0.0.15 - -### Patch Changes - -- @open-pioneer/runtime@2.1.2 -- @open-pioneer/integration@2.0.5 - -## 0.0.14 - -### Patch Changes - -- Updated dependencies [f749d96] - - @open-pioneer/runtime@2.1.1 - - @open-pioneer/integration@2.0.4 - -## 0.0.13 - -### Patch Changes - -- Updated dependencies [80cd62d] - - @open-pioneer/runtime@2.1.0 - - @open-pioneer/integration@2.0.3 - -## 0.0.12 - -### Patch Changes - -- @open-pioneer/runtime@2.0.2 -- @open-pioneer/integration@2.0.2 - -## 0.0.11 - -### Patch Changes - -- @open-pioneer/runtime@2.0.1 -- @open-pioneer/integration@2.0.1 - -## 0.0.10 - -### Patch Changes - -- Updated dependencies [f5c0e31] -- Updated dependencies [ce9e060] -- Updated dependencies [f5c0e31] -- Updated dependencies [6f954e3] -- Updated dependencies [6f954e3] - - @open-pioneer/runtime@2.0.0 - - @open-pioneer/chakra-integration@1.1.1 - - @open-pioneer/integration@2.0.0 - -## 0.0.9 - -### Patch Changes - -- Updated dependencies [6632892] -- Updated dependencies [6632892] - - @open-pioneer/runtime@1.1.0 - - @open-pioneer/chakra-integration@1.1.0 - - @open-pioneer/integration@1.0.3 - -## 0.0.8 - -### Patch Changes - -- @open-pioneer/runtime@1.0.2 -- @open-pioneer/integration@1.0.2 - -## 0.0.7 - -### Patch Changes - -- @open-pioneer/runtime@1.0.1 -- @open-pioneer/integration@1.0.1 - -## 0.0.6 - -### Patch Changes - -- Updated dependencies [22ff68a] - - @open-pioneer/chakra-integration@1.0.0 - - @open-pioneer/integration@1.0.0 - - @open-pioneer/runtime@1.0.0 - -## 0.0.5 - -### Patch Changes - -- Updated dependencies [9eac5c9] - - @open-pioneer/chakra-integration@0.1.4 - - @open-pioneer/integration@0.1.4 - - @open-pioneer/runtime@0.1.5 - -## 0.0.4 - -### Patch Changes - -- Updated dependencies [234b3be] -- Updated dependencies [49ba4e1] - - @open-pioneer/integration@0.1.3 - - @open-pioneer/runtime@0.1.4 - - @open-pioneer/chakra-integration@0.1.3 - -## 0.0.3 - -### Patch Changes - -- Updated dependencies [e752d49] - - @open-pioneer/runtime@0.1.3 - - @open-pioneer/integration@0.1.2 - -## 0.0.2 - -### Patch Changes - -- Updated dependencies [a40f12d] - - @open-pioneer/chakra-integration@0.1.2 - - @open-pioneer/integration@0.1.2 - - @open-pioneer/runtime@0.1.2 - -## 0.0.1 - -### Patch Changes - -- Updated dependencies [e1c7295] - - @open-pioneer/chakra-integration@0.1.1 - - @open-pioneer/integration@0.1.1 - - @open-pioneer/runtime@0.1.1 - -## null - -### Patch Changes - -- Updated dependencies [77f7d5c] - - @open-pioneer/chakra-integration@0.1.0 - - @open-pioneer/integration@0.1.0 - - @open-pioneer/runtime@0.1.0 diff --git a/src/samples/keycloak-sample/CHANGELOG.md b/src/samples/keycloak-sample/CHANGELOG.md deleted file mode 100644 index b21b5c61..00000000 --- a/src/samples/keycloak-sample/CHANGELOG.md +++ /dev/null @@ -1,53 +0,0 @@ -# keycloak-sample - -## 0.0.5 - -### Patch Changes - -- Updated dependencies [5c62522] -- Updated dependencies [58ce24f] -- Updated dependencies [e0b2fae] -- Updated dependencies [6cc7fcd] -- Updated dependencies [f48bb02] -- Updated dependencies [f48bb02] - - @open-pioneer/authentication-keycloak@0.2.0 - - @open-pioneer/authentication@0.3.6 - - @open-pioneer/notifier@0.3.6 - - @open-pioneer/http@2.1.9 - - @open-pioneer/runtime@2.1.7 - -## 0.0.4 - -### Patch Changes - -- Updated dependencies [e945264] - - @open-pioneer/runtime@2.1.6 - - @open-pioneer/notifier@0.3.5 - - @open-pioneer/authentication@0.3.5 - - @open-pioneer/authentication-keycloak@0.1.2 - - @open-pioneer/http@2.1.8 - -## 0.0.3 - -### Patch Changes - -- Updated dependencies [90d0cce] -- Updated dependencies [90d0cce] - - @open-pioneer/runtime@2.1.5 - - @open-pioneer/authentication@0.3.4 - - @open-pioneer/authentication-keycloak@0.1.1 - - @open-pioneer/http@2.1.7 - - @open-pioneer/notifier@0.3.4 - -## 0.0.2 - -### Patch Changes - -- Updated dependencies [64645aa] -- Updated dependencies [1b69137] -- Updated dependencies [b3c60f2] - - @open-pioneer/authentication@0.3.3 - - @open-pioneer/notifier@0.3.3 - - @open-pioneer/runtime@2.1.4 - - @open-pioneer/authentication-keycloak@0.1.0 - - @open-pioneer/http@2.1.6 diff --git a/src/samples/notify-sample/notify-app/CHANGELOG.md b/src/samples/notify-sample/notify-app/CHANGELOG.md deleted file mode 100644 index 53805d7a..00000000 --- a/src/samples/notify-sample/notify-app/CHANGELOG.md +++ /dev/null @@ -1,83 +0,0 @@ -# notify-app - -## 0.0.10 - -### Patch Changes - -- Updated dependencies [5c62522] -- Updated dependencies [58ce24f] -- Updated dependencies [e0b2fae] -- Updated dependencies [6cc7fcd] - - @open-pioneer/chakra-integration@1.1.4 - - @open-pioneer/notifier@0.3.6 - - @open-pioneer/runtime@2.1.7 - -## 0.0.9 - -### Patch Changes - -- Updated dependencies [e945264] - - @open-pioneer/runtime@2.1.6 - - @open-pioneer/notifier@0.3.5 - -## 0.0.8 - -### Patch Changes - -- Updated dependencies [90d0cce] -- Updated dependencies [90d0cce] - - @open-pioneer/runtime@2.1.5 - - @open-pioneer/notifier@0.3.4 - -## 0.0.7 - -### Patch Changes - -- Updated dependencies [64645aa] -- Updated dependencies [64645aa] -- Updated dependencies [b3c60f2] - - @open-pioneer/chakra-integration@1.1.3 - - @open-pioneer/notifier@0.3.3 - - @open-pioneer/runtime@2.1.4 - -## 0.0.6 - -### Patch Changes - -- Updated dependencies [5ff8f30] - - @open-pioneer/chakra-integration@1.1.2 - - @open-pioneer/notifier@0.3.2 - - @open-pioneer/runtime@2.1.3 - -## 0.0.5 - -### Patch Changes - -- Updated dependencies [4eac7c7] - - @open-pioneer/notifier@0.3.1 - - @open-pioneer/runtime@2.1.2 - -## 0.0.4 - -### Patch Changes - -- Updated dependencies [ee7c2d4] - - @open-pioneer/notifier@0.3.0 - - @open-pioneer/theme@0.3.0 - -## 0.0.3 - -### Patch Changes - -- Updated dependencies [70349a8] - - @open-pioneer/notifier@0.2.0 - - @open-pioneer/theme@0.2.0 - -## 0.0.2 - -### Patch Changes - -- Updated dependencies [2cee00c] -- Updated dependencies [182da1c] - - @open-pioneer/theme@0.1.0 - - @open-pioneer/notifier@0.1.0 diff --git a/src/samples/properties-sample/properties-app/CHANGELOG.md b/src/samples/properties-sample/properties-app/CHANGELOG.md deleted file mode 100644 index da1067bd..00000000 --- a/src/samples/properties-sample/properties-app/CHANGELOG.md +++ /dev/null @@ -1,184 +0,0 @@ -# properties-app - -## 0.0.20 - -### Patch Changes - -- Updated dependencies [5c62522] -- Updated dependencies [58ce24f] -- Updated dependencies [50550d3] -- Updated dependencies [e0b2fae] -- Updated dependencies [6cc7fcd] - - @open-pioneer/chakra-integration@1.1.4 - - @open-pioneer/core@1.3.0 - - @open-pioneer/runtime@2.1.7 - -## 0.0.19 - -### Patch Changes - -- Updated dependencies [e945264] - - @open-pioneer/runtime@2.1.6 - -## 0.0.18 - -### Patch Changes - -- Updated dependencies [90d0cce] -- Updated dependencies [90d0cce] - - @open-pioneer/runtime@2.1.5 - -## 0.0.17 - -### Patch Changes - -- Updated dependencies [5d3aafd] -- Updated dependencies [64645aa] -- Updated dependencies [64645aa] -- Updated dependencies [b3c60f2] - - @open-pioneer/core@1.2.3 - - @open-pioneer/chakra-integration@1.1.3 - - @open-pioneer/runtime@2.1.4 - -## 0.0.16 - -### Patch Changes - -- Updated dependencies [5ff8f30] - - @open-pioneer/chakra-integration@1.1.2 - - @open-pioneer/runtime@2.1.3 - - @open-pioneer/core@1.2.2 - -## 0.0.15 - -### Patch Changes - -- @open-pioneer/runtime@2.1.2 - -## 0.0.14 - -### Patch Changes - -- Updated dependencies [f749d96] - - @open-pioneer/runtime@2.1.1 - -## 0.0.13 - -### Patch Changes - -- Updated dependencies [80cd62d] - - @open-pioneer/runtime@2.1.0 - -## 0.0.12 - -### Patch Changes - -- Updated dependencies [11b1428] - - @open-pioneer/core@1.2.1 - - @open-pioneer/runtime@2.0.2 - -## 0.0.11 - -### Patch Changes - -- Updated dependencies [a18d227] - - @open-pioneer/core@1.2.0 - - @open-pioneer/runtime@2.0.1 - -## 0.0.10 - -### Patch Changes - -- Updated dependencies [f5c0e31] -- Updated dependencies [ce9e060] -- Updated dependencies [f5c0e31] -- Updated dependencies [6f954e3] - - @open-pioneer/runtime@2.0.0 - - @open-pioneer/chakra-integration@1.1.1 - -## 0.0.9 - -### Patch Changes - -- Updated dependencies [6632892] -- Updated dependencies [6632892] - - @open-pioneer/runtime@1.1.0 - - @open-pioneer/chakra-integration@1.1.0 - -## 0.0.8 - -### Patch Changes - -- Updated dependencies [69c0fcd] - - @open-pioneer/core@1.1.0 - - @open-pioneer/runtime@1.0.2 - -## 0.0.7 - -### Patch Changes - -- Updated dependencies [88fd710] - - @open-pioneer/core@1.0.1 - - @open-pioneer/runtime@1.0.1 - -## 0.0.6 - -### Patch Changes - -- Updated dependencies [22ff68a] - - @open-pioneer/chakra-integration@1.0.0 - - @open-pioneer/core@1.0.0 - - @open-pioneer/runtime@1.0.0 - -## 0.0.5 - -### Patch Changes - -- Updated dependencies [9eac5c9] - - @open-pioneer/chakra-integration@0.1.4 - - @open-pioneer/runtime@0.1.5 - - @open-pioneer/core@0.1.4 - -## 0.0.4 - -### Patch Changes - -- Updated dependencies [234b3be] -- Updated dependencies [49ba4e1] - - @open-pioneer/runtime@0.1.4 - - @open-pioneer/chakra-integration@0.1.3 - - @open-pioneer/core@0.1.3 - -## 0.0.3 - -### Patch Changes - -- Updated dependencies [e752d49] - - @open-pioneer/runtime@0.1.3 - -## 0.0.2 - -### Patch Changes - -- Updated dependencies [a40f12d] - - @open-pioneer/chakra-integration@0.1.2 - - @open-pioneer/core@0.1.2 - - @open-pioneer/runtime@0.1.2 - -## 0.0.1 - -### Patch Changes - -- Updated dependencies [e1c7295] - - @open-pioneer/chakra-integration@0.1.1 - - @open-pioneer/core@0.1.1 - - @open-pioneer/runtime@0.1.1 - -## null - -### Patch Changes - -- Updated dependencies [77f7d5c] - - @open-pioneer/chakra-integration@0.1.0 - - @open-pioneer/core@0.1.0 - - @open-pioneer/runtime@0.1.0 diff --git a/src/samples/styling-sample/styling-app/CHANGELOG.md b/src/samples/styling-sample/styling-app/CHANGELOG.md deleted file mode 100644 index dd781d53..00000000 --- a/src/samples/styling-sample/styling-app/CHANGELOG.md +++ /dev/null @@ -1,150 +0,0 @@ -# styling-app - -## 0.0.20 - -### Patch Changes - -- Updated dependencies [58ce24f] -- Updated dependencies [e0b2fae] -- Updated dependencies [6cc7fcd] - - @open-pioneer/runtime@2.1.7 - -## 0.0.19 - -### Patch Changes - -- Updated dependencies [e945264] - - @open-pioneer/runtime@2.1.6 - -## 0.0.18 - -### Patch Changes - -- Updated dependencies [90d0cce] -- Updated dependencies [90d0cce] - - @open-pioneer/runtime@2.1.5 - -## 0.0.17 - -### Patch Changes - -- Updated dependencies [64645aa] -- Updated dependencies [b3c60f2] - - @open-pioneer/runtime@2.1.4 - -## 0.0.16 - -### Patch Changes - -- Updated dependencies [5ff8f30] - - @open-pioneer/runtime@2.1.3 - -## 0.0.15 - -### Patch Changes - -- @open-pioneer/runtime@2.1.2 - -## 0.0.14 - -### Patch Changes - -- Updated dependencies [f749d96] - - @open-pioneer/runtime@2.1.1 - -## 0.0.13 - -### Patch Changes - -- Updated dependencies [80cd62d] - - @open-pioneer/runtime@2.1.0 - -## 0.0.12 - -### Patch Changes - -- @open-pioneer/runtime@2.0.2 - -## 0.0.11 - -### Patch Changes - -- @open-pioneer/runtime@2.0.1 - -## 0.0.10 - -### Patch Changes - -- Updated dependencies [f5c0e31] -- Updated dependencies [ce9e060] -- Updated dependencies [6f954e3] - - @open-pioneer/runtime@2.0.0 - -## 0.0.9 - -### Patch Changes - -- Updated dependencies [6632892] - - @open-pioneer/runtime@1.1.0 - -## 0.0.8 - -### Patch Changes - -- @open-pioneer/runtime@1.0.2 - -## 0.0.7 - -### Patch Changes - -- @open-pioneer/runtime@1.0.1 - -## 0.0.6 - -### Patch Changes - -- Updated dependencies [22ff68a] - - @open-pioneer/runtime@1.0.0 - -## 0.0.5 - -### Patch Changes - -- Updated dependencies [9eac5c9] - - @open-pioneer/runtime@0.1.5 - -## 0.0.4 - -### Patch Changes - -- Updated dependencies [234b3be] -- Updated dependencies [49ba4e1] - - @open-pioneer/runtime@0.1.4 - -## 0.0.3 - -### Patch Changes - -- Updated dependencies [e752d49] - - @open-pioneer/runtime@0.1.3 - -## 0.0.2 - -### Patch Changes - -- Updated dependencies [a40f12d] - - @open-pioneer/runtime@0.1.2 - -## 0.0.1 - -### Patch Changes - -- Updated dependencies [e1c7295] - - @open-pioneer/runtime@0.1.1 - -## null - -### Patch Changes - -- Updated dependencies [77f7d5c] - - @open-pioneer/runtime@0.1.0 diff --git a/src/samples/theming-sample/theming-app/CHANGELOG.md b/src/samples/theming-sample/theming-app/CHANGELOG.md deleted file mode 100644 index 3e609c78..00000000 --- a/src/samples/theming-sample/theming-app/CHANGELOG.md +++ /dev/null @@ -1,72 +0,0 @@ -# theming-app - -## 0.0.10 - -### Patch Changes - -- Updated dependencies [5c62522] -- Updated dependencies [58ce24f] -- Updated dependencies [e0b2fae] -- Updated dependencies [6cc7fcd] - - @open-pioneer/chakra-integration@1.1.4 - - @open-pioneer/runtime@2.1.7 - -## 0.0.9 - -### Patch Changes - -- Updated dependencies [e945264] - - @open-pioneer/runtime@2.1.6 - -## 0.0.8 - -### Patch Changes - -- Updated dependencies [90d0cce] -- Updated dependencies [90d0cce] - - @open-pioneer/runtime@2.1.5 - -## 0.0.7 - -### Patch Changes - -- Updated dependencies [64645aa] -- Updated dependencies [64645aa] -- Updated dependencies [b3c60f2] - - @open-pioneer/chakra-integration@1.1.3 - - @open-pioneer/runtime@2.1.4 - -## 0.0.6 - -### Patch Changes - -- Updated dependencies [5ff8f30] - - @open-pioneer/chakra-integration@1.1.2 - - @open-pioneer/runtime@2.1.3 - -## 0.0.5 - -### Patch Changes - -- @open-pioneer/runtime@2.1.2 - -## 0.0.4 - -### Patch Changes - -- Updated dependencies [ee7c2d4] - - @open-pioneer/theme@0.3.0 - -## 0.0.3 - -### Patch Changes - -- Updated dependencies [70349a8] - - @open-pioneer/theme@0.2.0 - -## 0.0.2 - -### Patch Changes - -- Updated dependencies [2cee00c] - - @open-pioneer/theme@0.1.0