diff --git a/.gitea/workflows/default_nottags.yaml b/.gitea/workflows/default_nottags.yaml new file mode 100644 index 0000000..9f4e743 --- /dev/null +++ b/.gitea/workflows/default_nottags.yaml @@ -0,0 +1,66 @@ +name: Default (not tags) + +on: + push: + tags-ignore: + - '**' + +env: + IMAGE: registry.gitlab.com/hosttoday/ht-docker-node:npmci + NPMCI_COMPUTED_REPOURL: https://${{gitea.repository_owner}}:${{secrets.GITEA_TOKEN}}@gitea.lossless.digital/${{gitea.repository}}.git + NPMCI_TOKEN_NPM: ${{secrets.NPMCI_TOKEN_NPM}} + NPMCI_TOKEN_NPM2: ${{secrets.NPMCI_TOKEN_NPM2}} + NPMCI_GIT_GITHUBTOKEN: ${{secrets.NPMCI_GIT_GITHUBTOKEN}} + NPMCI_URL_CLOUDLY: ${{secrets.NPMCI_URL_CLOUDLY}} + +jobs: + security: + runs-on: ubuntu-latest + continue-on-error: true + container: + image: ${{ env.IMAGE }} + + steps: + - uses: actions/checkout@v3 + + - name: Install pnpm and npmci + run: | + pnpm install -g pnpm + pnpm install -g @shipzone/npmci + + - name: Run npm prepare + run: npmci npm prepare + + - name: Audit production dependencies + run: | + npmci command npm config set registry https://registry.npmjs.org + npmci command pnpm audit --audit-level=high --prod + continue-on-error: true + + - name: Audit development dependencies + run: | + npmci command npm config set registry https://registry.npmjs.org + npmci command pnpm audit --audit-level=high --dev + continue-on-error: true + + test: + if: ${{ always() }} + needs: security + runs-on: ubuntu-latest + container: + image: ${{ env.IMAGE }} + + steps: + - uses: actions/checkout@v3 + + - name: Test stable + run: | + npmci node install stable + npmci npm install + npmci npm test + + - name: Test build + run: | + npmci node install stable + npmci npm install + npmci npm build diff --git a/.gitea/workflows/default_tags.yaml b/.gitea/workflows/default_tags.yaml new file mode 100644 index 0000000..6290cbd --- /dev/null +++ b/.gitea/workflows/default_tags.yaml @@ -0,0 +1,124 @@ +name: Default (tags) + +on: + push: + tags: + - '*' + +env: + IMAGE: registry.gitlab.com/hosttoday/ht-docker-node:npmci + NPMCI_COMPUTED_REPOURL: https://${{gitea.repository_owner}}:${{secrets.GITEA_TOKEN}}@gitea.lossless.digital/${{gitea.repository}}.git + NPMCI_TOKEN_NPM: ${{secrets.NPMCI_TOKEN_NPM}} + NPMCI_TOKEN_NPM2: ${{secrets.NPMCI_TOKEN_NPM2}} + NPMCI_GIT_GITHUBTOKEN: ${{secrets.NPMCI_GIT_GITHUBTOKEN}} + NPMCI_URL_CLOUDLY: ${{secrets.NPMCI_URL_CLOUDLY}} + +jobs: + security: + runs-on: ubuntu-latest + continue-on-error: true + container: + image: ${{ env.IMAGE }} + + steps: + - uses: actions/checkout@v3 + + - name: Prepare + run: | + pnpm install -g pnpm + pnpm install -g @shipzone/npmci + npmci npm prepare + + - name: Audit production dependencies + run: | + npmci command npm config set registry https://registry.npmjs.org + npmci command pnpm audit --audit-level=high --prod + continue-on-error: true + + - name: Audit development dependencies + run: | + npmci command npm config set registry https://registry.npmjs.org + npmci command pnpm audit --audit-level=high --dev + continue-on-error: true + + test: + if: ${{ always() }} + needs: security + runs-on: ubuntu-latest + container: + image: ${{ env.IMAGE }} + + steps: + - uses: actions/checkout@v3 + + - name: Prepare + run: | + pnpm install -g pnpm + pnpm install -g @shipzone/npmci + npmci npm prepare + + - name: Test stable + run: | + npmci node install stable + npmci npm install + npmci npm test + + - name: Test build + run: | + npmci node install stable + npmci npm install + npmci npm build + + release: + needs: test + if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') + runs-on: ubuntu-latest + container: + image: ${{ env.IMAGE }} + + steps: + - uses: actions/checkout@v3 + + - name: Prepare + run: | + pnpm install -g pnpm + pnpm install -g @shipzone/npmci + npmci npm prepare + + - name: Release + run: | + npmci node install stable + npmci npm publish + + metadata: + needs: test + if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') + runs-on: ubuntu-latest + container: + image: ${{ env.IMAGE }} + continue-on-error: true + + steps: + - uses: actions/checkout@v3 + + - name: Prepare + run: | + pnpm install -g pnpm + pnpm install -g @shipzone/npmci + npmci npm prepare + + - name: Code quality + run: | + npmci command npm install -g typescript + npmci npm install + + - name: Trigger + run: npmci trigger + + - name: Build docs and upload artifacts + run: | + npmci node install stable + npmci npm install + pnpm install -g @gitzone/tsdoc + npmci command tsdoc + continue-on-error: true diff --git a/html/index.ts b/html/index.ts index 7b1101a..3d9151b 100644 --- a/html/index.ts +++ b/html/index.ts @@ -1,6 +1,6 @@ // dees tools -import * as deesWccTools from '@design.estate/dees-wcctools'; -import * as deesDomTools from '@design.estate/dees-domtools'; +import * as deesWccTools from '@designestate/dees-wcctools'; +import * as deesDomTools from '@designestate/dees-domtools'; // elements and pages import * as elements from '../ts_web/elements/index.js'; diff --git a/package.json b/package.json index 78d41d0..3e2b148 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "license": "MIT", "dependencies": { "@design.estate/dees-domtools": "^2.0.37", - "@design.estate/dees-element": "^2.0.20", + "@design.estate/dees-element": "^2.0.25", "@design.estate/dees-wcctools": "^1.0.78", "@fortawesome/fontawesome-svg-core": "^6.4.2", "@fortawesome/free-brands-svg-icons": "^6.4.2", @@ -52,4 +52,4 @@ "browserslist": [ "last 1 chrome versions" ] -} +} \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8168d08..e713251 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -9,8 +9,8 @@ dependencies: specifier: ^2.0.37 version: 2.0.37 '@design.estate/dees-element': - specifier: ^2.0.20 - version: 2.0.24 + specifier: ^2.0.25 + version: 2.0.25 '@design.estate/dees-wcctools': specifier: ^1.0.78 version: 1.0.78(@types/node@20.4.8) @@ -76,17 +76,6 @@ packages: lru-cache: 9.1.1 transitivePeerDependencies: - supports-color - dev: false - - /@adobe/fetch@4.0.6: - resolution: {integrity: sha512-ZAs/NgnIpuCAuY+bZ8HCAvDUi2HQtXiPmD67i0EIvMAsxFu8fc5eBQDCIIY1syZ1ynGM3SU7i2Wp4vd1ezT68Q==} - engines: {node: '>=14.16'} - dependencies: - debug: 4.3.4 - http-cache-semantics: 4.1.1 - lru-cache: 8.0.4 - transitivePeerDependencies: - - supports-color /@apiglobal/typedrequest-interfaces@1.0.20: resolution: {integrity: sha512-ybsDtavYbzGJYSLodSbkxDvSLYtfMzBTuNZDJpiANt1rZA2MO/GCq8zk5MVLlrUUQIr/7oxPGWqxi1QDwR+RHQ==} @@ -102,43 +91,11 @@ packages: '@pushrocks/lik': 6.0.2 '@pushrocks/smartdelay': 2.0.13 '@pushrocks/smartpromise': 3.1.10 - '@pushrocks/webrequest': 3.0.21 + '@pushrocks/webrequest': 3.0.28 transitivePeerDependencies: + - bufferutil - supports-color - - /@apiglobal/typedserver@2.0.51: - resolution: {integrity: sha512-nHW5UbWByxT6/xy0ma6MzIgwnJc2vJWCfPZpF/+RuvuaQhhzo3xN99yL2JDI5Kx7jQ0SHy735u9ZEXrUQCXXmQ==} - dependencies: - '@apiglobal/typedrequest': 2.0.12 - '@apiglobal/typedrequest-interfaces': 2.0.1 - '@apiglobal/typedsocket': 2.0.24 - '@pushrocks/lik': 6.0.2 - '@pushrocks/smartchok': 1.0.23 - '@pushrocks/smartdelay': 2.0.13 - '@pushrocks/smartenv': 5.0.5 - '@pushrocks/smartfeed': 1.0.11 - '@pushrocks/smartfile': 10.0.7 - '@pushrocks/smartlog': 3.0.2 - '@pushrocks/smartlog-destination-devtools': 1.0.10 - '@pushrocks/smartmanifest': 1.0.8 - '@pushrocks/smartmime': 1.0.5 - '@pushrocks/smartopen': 2.0.0 - '@pushrocks/smartpath': 5.0.5 - '@pushrocks/smartpromise': 3.1.10 - '@pushrocks/smartrequest': 2.0.11 - '@pushrocks/smartrx': 3.0.0 - '@pushrocks/smartsitemap': 2.0.1 - '@pushrocks/smarttime': 4.0.1 - '@pushrocks/webstore': 2.0.5 - '@tsclass/tsclass': 4.0.42 - body-parser: 1.20.2 - cors: 2.8.5 - express: 4.18.2 - express-force-ssl: 0.3.2 - lit: 2.7.1 - transitivePeerDependencies: - - supports-color - dev: true + - utf-8-validate /@apiglobal/typedserver@2.0.65: resolution: {integrity: sha512-enI+UGgzyQRG43ZQBzRMcc9dSII7vOx+v/7+mkVqTqgCQtad9RimqMDBdhOrnIWPyzctY86CK1LfQmlpZJAFbA==} @@ -181,11 +138,11 @@ packages: dependencies: '@apiglobal/typedrequest': 2.0.12 '@apiglobal/typedrequest-interfaces': 2.0.1 - '@pushrocks/isohash': 2.0.0 - '@pushrocks/smartjson': 5.0.5 + '@pushrocks/isohash': 2.0.1 + '@pushrocks/smartjson': 5.0.6 '@pushrocks/smartsocket': 2.0.19 - '@pushrocks/smartstring': 4.0.5 - '@pushrocks/smarturl': 3.0.5 + '@pushrocks/smartstring': 4.0.7 + '@pushrocks/smarturl': 3.0.6 transitivePeerDependencies: - bufferutil - supports-color @@ -212,8 +169,8 @@ packages: js-tokens: 4.0.0 dev: true - /@babel/runtime@7.21.0: - resolution: {integrity: sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==} + /@babel/runtime@7.22.6: + resolution: {integrity: sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==} engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.13.11 @@ -249,8 +206,8 @@ packages: - utf-8-validate dev: false - /@design.estate/dees-element@2.0.24: - resolution: {integrity: sha512-Lcb07/N3NbK3U5agLbS8lMl59TBDHMPubwkfbFoBsDW54pVeINbvof5YJKqT4OjvzAN/e3mcF4HzZNdmBZCTrA==} + /@design.estate/dees-element@2.0.25: + resolution: {integrity: sha512-v2IMizlX5/TLEeUOsmlOO3GZlT4GRDY3T7N5CDJe1PCdE0jTDj9KvTWr3rawzzCyxr9DY+UZI4Rwi1IKIjJw8A==} dependencies: '@design.estate/dees-domtools': 2.0.37 '@push.rocks/isounique': 1.0.5 @@ -266,7 +223,7 @@ packages: resolution: {integrity: sha512-7CgbDq+J1Wt2EW1EsDOApskq60jBZ9EOCNOEc0n3otxVOtUvutg6YBjY8fg7l/OJMxJfeJdEkNDlkTYePMIeXQ==} dependencies: '@design.estate/dees-domtools': 2.0.37 - '@design.estate/dees-element': 2.0.24 + '@design.estate/dees-element': 2.0.25 '@gitzone/tsrun': 1.2.44(@types/node@20.4.8) '@push.rocks/smartdelay': 3.0.5 lit: 2.8.0 @@ -286,8 +243,6 @@ packages: '@apiglobal/typedrequest-interfaces': 1.0.20 '@pushrocks/smartdelay': 2.0.13 broadcast-channel: 3.7.0 - transitivePeerDependencies: - - supports-color dev: false /@esbuild/android-arm64@0.17.19: @@ -566,21 +521,6 @@ packages: - supports-color dev: true - /@gitzone/tsrun@1.2.39(@types/node@20.4.8): - resolution: {integrity: sha512-gLqKOic3T1GIdqsp+T5g1OewfboMJKKMr7/SJgBuMx4BUEBfW7TYhqk6psgfewhHs/zKII5rWbbPauykkKlYIg==} - hasBin: true - dependencies: - '@pushrocks/smartfile': 10.0.7 - '@pushrocks/smartshell': 2.0.30 - ts-node: 10.9.1(@types/node@20.4.8)(typescript@4.9.5) - typescript: 4.9.5 - transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - supports-color - dev: true - /@gitzone/tsrun@1.2.44(@types/node@20.4.8): resolution: {integrity: sha512-7AfL9u+TmD7gLiRaTCimhWm5rq9GGBQnOF4q1FnFh2CAb1FbK5fzUVbj6wo3zGS2H+MSm6dqFA6mvdBI1ox0mQ==} hasBin: true @@ -624,23 +564,25 @@ packages: resolution: {integrity: sha512-rKvyYXsILinp/3OzGkM4KLDPJhleSlF+KFzl90vHh1DuLzJCELWxgl/BSqrBe/UUd5Qyakyf8ZCojUSYUqU5tw==} hasBin: true dependencies: - '@apiglobal/typedserver': 2.0.51 + '@apiglobal/typedserver': 2.0.65 '@gitzone/tsbundle': 2.0.8 - '@gitzone/tsrun': 1.2.39(@types/node@20.4.8) + '@gitzone/tsrun': 1.2.44(@types/node@20.4.8) '@pushrocks/early': 4.0.3 '@pushrocks/lik': 6.0.2 '@pushrocks/smartchok': 1.0.23 '@pushrocks/smartcli': 4.0.6 '@pushrocks/smartdelay': 2.0.13 '@pushrocks/smartlog': 3.0.2 - '@pushrocks/smartlog-destination-local': 9.0.0 + '@pushrocks/smartlog-destination-local': 9.0.1 '@pushrocks/smartshell': 2.0.30 '@pushrocks/taskbuffer': 3.0.10 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' - '@types/node' + - bufferutil - supports-color + - utf-8-validate dev: true /@isaacs/cliui@8.0.2: @@ -654,40 +596,30 @@ packages: wrap-ansi: 8.1.0 wrap-ansi-cjs: /wrap-ansi@7.0.0 - /@jridgewell/resolve-uri@3.1.0: - resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} + /@jridgewell/resolve-uri@3.1.1: + resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} engines: {node: '>=6.0.0'} - /@jridgewell/sourcemap-codec@1.4.14: - resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} + /@jridgewell/sourcemap-codec@1.4.15: + resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} /@jridgewell/trace-mapping@0.3.9: resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} dependencies: - '@jridgewell/resolve-uri': 3.1.0 - '@jridgewell/sourcemap-codec': 1.4.14 + '@jridgewell/resolve-uri': 3.1.1 + '@jridgewell/sourcemap-codec': 1.4.15 /@leichtgewicht/ip-codec@2.0.4: resolution: {integrity: sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==} dev: true - /@lit-labs/ssr-dom-shim@1.1.0: - resolution: {integrity: sha512-92uQ5ARf7UXYrzaFcAX3T2rTvaS9Z1//ukV+DqjACM4c8s0ZBQd7ayJU5Dh2AFLD/Ayuyz4uMmxQec8q3U4Ong==} - /@lit-labs/ssr-dom-shim@1.1.1: resolution: {integrity: sha512-kXOeFbfCm4fFf2A3WwVEeQj55tMZa8c8/f9AKHMobQMkzNUfUj+antR3fRPaZJawsa1aZiP/Da3ndpZrwEe4rQ==} - dev: true - - /@lit/reactive-element@1.6.1: - resolution: {integrity: sha512-va15kYZr7KZNNPZdxONGQzpUr+4sxVu7V/VG7a8mRfPPXUyhEYj5RzXCQmGrlP3tAh0L3HHm5AjBMFYRqlM9SA==} - dependencies: - '@lit-labs/ssr-dom-shim': 1.1.0 /@lit/reactive-element@1.6.3: resolution: {integrity: sha512-QuTgnG52Poic7uM1AN5yJ09QMe0O28e10XzSvWDz02TJiiKee4stsiownEIadWm8nYzyDAyT+gKzUoZmiWQtsQ==} dependencies: '@lit-labs/ssr-dom-shim': 1.1.1 - dev: true /@nodelib/fs.scandir@2.1.5: resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} @@ -801,9 +733,7 @@ packages: '@pushrocks/smartfile': 9.0.6 '@pushrocks/smartpath': 5.0.5 '@pushrocks/smartpromise': 3.1.10 - '@pushrocks/smartstring': 4.0.5 - transitivePeerDependencies: - - supports-color + '@pushrocks/smartstring': 4.0.7 dev: true /@push.rocks/smartbrowser@2.0.5: @@ -989,36 +919,33 @@ packages: /@pushrocks/consolecolor@2.0.1: resolution: {integrity: sha512-iOFCHVeFZ2OywbdwSxVI4/wokkcLrXVdHLgvMmkNhJ220eeLgjNZWx3EJo3vNW3zq5ybCSCUIq0878djBxrWpw==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/consolecolor dependencies: ansi-256-colors: 1.1.0 dev: true /@pushrocks/early@4.0.3: resolution: {integrity: sha512-Xov1TsboU2d399MqByKIDoYWTWCNvBHNwC9u99HuVFx/lN38qdm5bkrLx73msiZ+uKxgpUe6zRR+jTVuoGxjlQ==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/early dependencies: '@pushrocks/consolecolor': 2.0.1 '@pushrocks/smartpromise': 3.1.10 dev: true - /@pushrocks/isohash@2.0.0: - resolution: {integrity: sha512-a6Vktczk0Q39hBYTuAFqa12QNhy5GcFYhnJ5pqzpE5r3rj3FSS8HLqsoBUwB3b9YHGKYnbky9C3YNhMmFvoLPg==} - dependencies: - '@pushrocks/smartenv': 5.0.5 - '@pushrocks/smarthash': 2.1.10 - /@pushrocks/isohash@2.0.1: resolution: {integrity: sha512-qCvC/NNcDDFQAH1uUKkJM779jY5qWijbOGGVf/9enfSItlkKe/rheUsYHgXg+cP7lwWFIxDbKYplq8QaOP6bkw==} deprecated: This package has been deprecated in favour of the new package at @push.rocks/isohash dependencies: '@pushrocks/smartenv': 5.0.5 '@pushrocks/smarthash': 3.0.2 - dev: false /@pushrocks/isounique@1.0.5: resolution: {integrity: sha512-XYeoKGkmIdsWX64NlPA1fuA41n/1bQ7LdYXytlU/QqYeW7ojgA0ARRhBSh/2phL6o0Jpw6K/7gJ8jc7ab/Tc+w==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/isounique /@pushrocks/lik@3.0.19: resolution: {integrity: sha512-N9uTtQmTJ/iZ/V7LMCKbVx/ZAmP+b8uId0pxV9Au9T0Ulu9wcg3vNpyTQARgdWfG+tI9Qc0NHgOEa9H5mbDcDA==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/lik dependencies: '@pushrocks/smartdelay': 2.0.13 '@pushrocks/smartpromise': 3.1.10 @@ -1031,6 +958,7 @@ packages: /@pushrocks/lik@4.0.22: resolution: {integrity: sha512-dg6Du7nr/SLU80yJw7a0zk2xX9Vc8SCLZaQMmSRBlsnL1/Z7qpWDOtpRC9VlL9vTLenbvwGTvPWMpOKyyNbiiA==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/lik dependencies: '@pushrocks/smartdelay': 2.0.13 '@pushrocks/smartmatch': 1.0.7 @@ -1042,6 +970,7 @@ packages: /@pushrocks/lik@5.0.7: resolution: {integrity: sha512-fIxcrafl127+yErfedIurafCbiY2VwuuMlbNLjKrMKnFswol4y/anjXVRZ4euWUBck0KOfnBB0VuutcmlfYUqA==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/lik dependencies: '@pushrocks/smartdelay': 2.0.13 '@pushrocks/smartmatch': 1.0.7 @@ -1053,11 +982,12 @@ packages: /@pushrocks/lik@6.0.2: resolution: {integrity: sha512-jO85PCb4gULfZbLoVpXb9HIR9Wgoigq6Zjcp1JqHOgM4KB38IZrU+HPWPWWMErAOOQmmYvVCdl4gkrkO/Rzn4w==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/lik dependencies: '@pushrocks/smartdelay': 2.0.13 '@pushrocks/smartmatch': 2.0.0 '@pushrocks/smartpromise': 3.1.10 - '@pushrocks/smartrx': 3.0.0 + '@pushrocks/smartrx': 3.0.2 '@pushrocks/smarttime': 4.0.1 '@types/minimatch': 5.1.2 '@types/symbol-tree': 3.2.2 @@ -1065,6 +995,7 @@ packages: /@pushrocks/smartcache@1.0.16: resolution: {integrity: sha512-bKtueWrRHs4Rlink81MpNUDpnXqoPy+7sdw/WQWKzlWfDWLzF/cO24efriNP+3O2W84MvfSzxliRcbxxPvefLA==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartcache dependencies: '@pushrocks/smartdelay': 2.0.13 '@pushrocks/smarterror': 2.0.1 @@ -1074,6 +1005,7 @@ packages: /@pushrocks/smartchok@1.0.23: resolution: {integrity: sha512-l1owj/ZYfP3chD5Gm3dkxucdpVRYiqyn/bLgCmtBZY0Q4EAvsu+bUJQ8qixiPiKYpjyIg0ZUKlCeDzZJc+G3Xg==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartchok dependencies: '@pushrocks/lik': 3.0.19 '@pushrocks/smartpromise': 3.1.10 @@ -1083,6 +1015,7 @@ packages: /@pushrocks/smartcli@4.0.6: resolution: {integrity: sha512-nv2Ldy+jTRsVpGpOz+9o0F8FMELoWYk/sy5ecyh9AsP97Kdj3CtqwRwHhcl7mLepdrcRw1qHK3DAloln1XP4Vg==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartcli dependencies: '@pushrocks/lik': 6.0.2 '@pushrocks/smartlog': 3.0.2 @@ -1094,27 +1027,32 @@ packages: /@pushrocks/smartdelay@2.0.13: resolution: {integrity: sha512-s6Wh0BHWMfZ5VYONQwpxOYX1JeC9RKA0O9TxEzfZ6FCw2oNQb2QUPCixT9rsceKwva4+atKRw/RfU+Z7aJDmsA==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartdelay dependencies: '@pushrocks/smartpromise': 3.1.10 /@pushrocks/smartdelay@3.0.1: resolution: {integrity: sha512-I+i/QhC6kLsXsWyW19UgD1vH2r1YWVxK19VMxt2CEuvxMyC6tuCd0vqud9vv5JxaxsJwxWlOsrURkgL4tXeILQ==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartdelay dependencies: - '@pushrocks/smartpromise': 4.0.0 + '@pushrocks/smartpromise': 4.0.2 /@pushrocks/smartenv@5.0.5: resolution: {integrity: sha512-VWON1OJ4qV2/9hzJbgRquRekaO9am3b8W82tgCwgO6LBg23ea2tanfd+gESVMbRFduxHVoFLvlhSBcDGM5zsLA==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartenv dependencies: '@pushrocks/smartpromise': 3.1.10 /@pushrocks/smarterror@2.0.1: resolution: {integrity: sha512-3OrF5me+/sy5VgwR/tfCqs7qhb0Ywzgn8tTThRUZnCGas0aindISzMiW7cIro3RlFykmtPmdTztC9Ostu2ioeA==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smarterror dependencies: clean-stack: 1.3.0 make-error-cause: 2.3.0 /@pushrocks/smartexit@1.0.20: resolution: {integrity: sha512-u/KgA7s2zAtZ7gZvL13HZbO3mZATvjfCLU8Ez6h8VweG8UsIBVaPfYziMDCmJOWIPYLGzEW8eG/u4mCHuyLBow==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartexit dependencies: '@pushrocks/lik': 4.0.22 '@pushrocks/smartdelay': 2.0.13 @@ -1129,12 +1067,12 @@ packages: '@pushrocks/smartdelay': 2.0.13 '@pushrocks/smartenv': 5.0.5 '@pushrocks/smartfeed': 1.0.11 - '@pushrocks/smartfile': 10.0.7 + '@pushrocks/smartfile': 10.0.26 '@pushrocks/smartmanifest': 1.0.8 '@pushrocks/smartmime': 1.0.5 '@pushrocks/smartpath': 5.0.5 '@pushrocks/smartpromise': 3.1.10 - '@pushrocks/smartrequest': 2.0.11 + '@pushrocks/smartrequest': 2.0.15 '@pushrocks/smartsitemap': 2.0.1 '@pushrocks/smarttime': 4.0.1 '@tsclass/tsclass': 4.0.42 @@ -1151,13 +1089,15 @@ packages: /@pushrocks/smartfeed@1.0.11: resolution: {integrity: sha512-PcsiQ4tkwTpGxOdLiEpAR5vfFpn8Utnlind4mmX+FLIZVuuONaApefWMvaYv5ysmfnWQuCE2qkFq1J5ulDcBbQ==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartfeed dependencies: '@tsclass/tsclass': 3.0.48 feed: 4.2.2 - rss-parser: 3.12.0 + rss-parser: 3.13.0 /@pushrocks/smartfile-interfaces@1.0.7: resolution: {integrity: sha512-C/v9Scbx1J+ByMk3YBZrlLRYXdObty/Uz/h6kSZqsO8ghYuT9l7OVpEcyduiSVPakaMi6YnzfME3Nfs3oLj//Q==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartfile-interfaces /@pushrocks/smartfile@10.0.26: resolution: {integrity: sha512-JAbsVHXCkBoqI+GHN/gnbXji8hztCVlPrri63HQAdx4lS9OyDCdXN2CSbEIBXQIsXFx9ITzx5LZiPq0owbcDpQ==} @@ -1181,29 +1121,6 @@ packages: glob: 10.3.3 js-yaml: 4.1.0 - /@pushrocks/smartfile@10.0.7: - resolution: {integrity: sha512-ZjMkHLjiKaHFy5bz2k+0bLNr3S0Ef6EU65vuZuq8MbhJQW/xhBUWZWT/sKNSkPiXVCWI+vpHOA6j1G3qCnLspg==} - dependencies: - '@pushrocks/lik': 6.0.2 - '@pushrocks/smartdelay': 2.0.13 - '@pushrocks/smartfile-interfaces': 1.0.7 - '@pushrocks/smarthash': 3.0.2 - '@pushrocks/smartjson': 5.0.5 - '@pushrocks/smartmime': 1.0.5 - '@pushrocks/smartpath': 5.0.5 - '@pushrocks/smartpromise': 3.1.10 - '@pushrocks/smartrequest': 2.0.11 - '@pushrocks/smartstream': 2.0.3 - '@pushrocks/streamfunction': 4.0.4 - '@types/fs-extra': 11.0.1 - '@types/glob': 8.1.0 - '@types/js-yaml': 4.0.5 - fs-extra: 11.1.1 - glob: 8.1.0 - js-yaml: 4.1.0 - transitivePeerDependencies: - - supports-color - /@pushrocks/smartfile@9.0.6: resolution: {integrity: sha512-mXFrnHpM3Eq0MLokGP6DDRTk+v/HDlQwnNq4HFuCqs8YW6uTU/FoRJDnrCAf+spSzkDm0m1ajz/4rke8Dk9l6A==} deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartfile @@ -1223,44 +1140,37 @@ packages: fs-extra: 10.1.0 glob: 7.2.3 js-yaml: 4.1.0 - transitivePeerDependencies: - - supports-color dev: true /@pushrocks/smarthash@2.1.10: resolution: {integrity: sha512-f6lnQPa2lmkSQOMvWwZ6R6wcNvbDWuXH5OhQNvwmog8af3hBEmOEXxjauj6XU+l7ICJ6qxr3wsvpt4y7Ogyc9A==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smarthash dependencies: '@pushrocks/smartjson': 4.0.6 '@pushrocks/smartpromise': 3.1.10 '@types/through2': 2.0.38 through2: 4.0.2 + dev: true /@pushrocks/smarthash@3.0.2: resolution: {integrity: sha512-jXW4f8k6iqOQRvkCmXMID1C+qXyNvUMKm7apPETxnO+L172VlzxP1dml0Ey1+vjfpU2luKCteJWX7W95sOdLDg==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smarthash dependencies: - '@pushrocks/smartjson': 5.0.5 + '@pushrocks/smartjson': 5.0.6 '@pushrocks/smartpromise': 3.1.10 '@types/through2': 2.0.38 through2: 4.0.2 /@pushrocks/smartjson@4.0.6: resolution: {integrity: sha512-lykr068RSDHs0+EXCvIDVxjKnDtRQ2M7EXOo5jVrUU6/OEdfRl9ErM1K/oPafiEi47/PtTrwLlp1KdSgqkRjmg==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartjson dependencies: '@types/buffer-json': 2.0.1 '@types/fast-json-stable-stringify': 2.1.0 buffer-json: 2.0.0 fast-json-stable-stringify: 2.1.0 lodash.clonedeep: 4.5.0 - - /@pushrocks/smartjson@5.0.5: - resolution: {integrity: sha512-0Hhfur5X8hFLxTZVZv24PyyuzDE7x+J6tx59GEa9R9I3+VsvX5jdRCLtczJtWUriNISkXtwqAYsNPizIQA0BYw==} - dependencies: - '@pushrocks/smartstring': 4.0.5 - '@types/buffer-json': 2.0.1 - '@types/lodash.clonedeep': 4.5.7 - buffer-json: 2.0.0 - fast-json-stable-stringify: 2.1.0 - lodash.clonedeep: 4.5.0 + dev: true /@pushrocks/smartjson@5.0.6: resolution: {integrity: sha512-9OJbnRgLTaCRQz+pqu5tB3ZCqRs5Zh0hnBe7t7URE+TgwIZ8aiELUIbWRkgn4mSGVzHyL6pqTyIowP6AjUCG3w==} @@ -1274,17 +1184,10 @@ packages: /@pushrocks/smartlog-destination-devtools@1.0.10: resolution: {integrity: sha512-Kkss3lAogY+n/Xx3N9eOjWz0L4XUWlCYZLOqWnDOIMzX5mJtwesYXHIT8SHvADv13qT4d7T9k+VUQNsDEoT71g==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartlog-destination-devtools dependencies: '@pushrocks/smartlog-interfaces': 2.0.23 - /@pushrocks/smartlog-destination-local@9.0.0: - resolution: {integrity: sha512-Cu4+SRKM7Ir2x7udM+FuAfILZDluEb/p2z+QOSQXfElgl9h/a2nIbp4Jv4HF0S80IB2e3zPjBq+8N8k3nsBowg==} - dependencies: - '@pushrocks/consolecolor': 2.0.1 - '@pushrocks/smartlog-interfaces': 3.0.0 - '@pushrocks/smartpromise': 3.1.10 - dev: true - /@pushrocks/smartlog-destination-local@9.0.1: resolution: {integrity: sha512-+Q9kr2TbcKF4rcAftudqC8+5LLqnXAjghGaeDsxD38/qd9pqj8yTXBoF+qW3xUHbinRtpG26uSfBdRSWzDXPbA==} deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartlog-destination-local @@ -1296,22 +1199,26 @@ packages: /@pushrocks/smartlog-interfaces@2.0.23: resolution: {integrity: sha512-tXqwfrekGxGZJB72BFQppywk7413hXVDgcJNeU+kY6xvmzVjf2HxOMbFYhewh1+p4uai1u9n0xcMb0qbbPy4/Q==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartlog-interfaces dependencies: '@apiglobal/typedrequest-interfaces': 1.0.20 /@pushrocks/smartlog-interfaces@3.0.0: resolution: {integrity: sha512-yjppiLLJHBcrXTJJusDbFTvHq0RTMl3LnhvWAhyyy8U0O4VkJxIls1t5mS6jsEwxogP88+0flQIWknNJeB913A==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartlog-interfaces dependencies: '@apiglobal/typedrequest-interfaces': 2.0.1 /@pushrocks/smartlog@3.0.2: resolution: {integrity: sha512-1WPA0LX9HfE54ESKtk32uvsXiYIMu2QX7NUlQ3uHSMmFULnJYo2m/LeKEf6qHH7DJtxZbkWzkrMOkZVPL1MeNg==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartlog dependencies: '@pushrocks/isounique': 1.0.5 '@pushrocks/smartlog-interfaces': 3.0.0 /@pushrocks/smartmanifest@1.0.8: resolution: {integrity: sha512-inHmTp58Z8xl+c6mdOrfxc9IjUKuqho1i+WUI74G7rn6HwEn3cMd/06R1v80Xlx+95EYWzBwnYtuo7j7DafrdQ==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartmanifest /@pushrocks/smartmanifest@2.0.2: resolution: {integrity: sha512-q5QMWTUO9vv59IksUc24isVbOLyde4CU5TwGT01WrzflCStH9MLgPOo5JoPz04UjokxpsFbFqGcPnWUr37toyw==} @@ -1319,16 +1226,19 @@ packages: /@pushrocks/smartmatch@1.0.7: resolution: {integrity: sha512-D+lK5HIKO4Kj1Jm/ycKvy1VzDJ3V6ucHqmf5DMBFdm18BrMj2Zb6M7wN8HUKtkfHvOI7ig85JMuANSEyO7kAPg==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartmatch dependencies: matcher: 3.0.0 /@pushrocks/smartmatch@2.0.0: resolution: {integrity: sha512-PLvBNVeuY9BERNLq3PFDkhnHHc0RpilEGHd4aUI5XRFlZF++LETdLxPbxw+DHbvHlkUf/nep09f7rrL9Tqub1Q==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartmatch dependencies: matcher: 5.0.0 /@pushrocks/smartmime@1.0.5: resolution: {integrity: sha512-FCRg5p5NFTyZnPsvy2sbheVGz67Zeno7VoZARrcP0O+hFtVPnQKnJ73ze11G+MKZ3dVCmYCh1Li+73R6Lx8XJA==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartmime dependencies: '@types/mime-types': 2.1.1 mime-types: 2.1.35 @@ -1348,6 +1258,7 @@ packages: /@pushrocks/smartopen@2.0.0: resolution: {integrity: sha512-pqglAbp/OiJ8nUlCLKq8A2n1tKi7WH9lJgV93fs5s4gZCTVijGRg1SMZNAa/OI2O5hRfBeXacu/Na6bQSJ3hyw==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartopen dependencies: open: 8.4.2 @@ -1366,6 +1277,7 @@ packages: /@pushrocks/smartpath@5.0.5: resolution: {integrity: sha512-t2lXXGMpKnPlwubIcYGD6cGi2CUJxJ3t2yftVt8tHfjX68jELA5sJhFMtyD3AeFZVxePFZOCiHwWEbWkSDNnmw==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartpath /@pushrocks/smartpdf@3.0.15: resolution: {integrity: sha512-z1XAxHW3C0gkzk30yZJpc74S6MJyMBAtlG9FiGhIhs9jGw6z/dkgpVr8beJMOCOX1KIzlA5HJoJOWtex/fd90g==} @@ -1400,9 +1312,7 @@ packages: /@pushrocks/smartpromise@3.1.10: resolution: {integrity: sha512-VeTurbZ1+ZMxBDJk1Y1LV8SN9xLI+oDXKVeCFw41FAGEKOUEqordqFpi6t+7Vhe/TXUZzCVpZ5bXxAxrGf8yTQ==} - - /@pushrocks/smartpromise@4.0.0: - resolution: {integrity: sha512-2P25fbcmhxSVkCxo+4/UjsX651mXg06cWIs/OdNbqG5D0GSnujP2uDUBQMla6w866Zi+zsipn531AeWwUazTMg==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartpromise /@pushrocks/smartpromise@4.0.2: resolution: {integrity: sha512-bqorOaGXPOuiOSV81luTKrTghg4O4NBRD0zyv7TIqmrMGf4a0uoozaUMp1X8vQdZW+y0gTzUJP9wkzAE6Cci0g==} @@ -1429,22 +1339,10 @@ packages: dependencies: '@pushrocks/smartpromise': 3.1.10 '@pushrocks/smarturl': 2.0.1 - agentkeepalive: 4.3.0 + agentkeepalive: 4.5.0 form-data: 4.0.0 - transitivePeerDependencies: - - supports-color dev: true - /@pushrocks/smartrequest@2.0.11: - resolution: {integrity: sha512-fqS5D+o4fzhen4qlhT8DJiSSUVno1q+hSXcq5VJFGTQVtvaZ5lZeK1odqMJsCOHZ3mD2LykrufIPViktwgnyVg==} - dependencies: - '@pushrocks/smartpromise': 3.1.10 - '@pushrocks/smarturl': 3.0.5 - agentkeepalive: 4.3.0 - form-data: 4.0.0 - transitivePeerDependencies: - - supports-color - /@pushrocks/smartrequest@2.0.15: resolution: {integrity: sha512-QDXXKhOwAIp+TNFrDglApBpbCTClHrf8pUM3w81q5+VtrMbqUrLINHhInXt3ZUSgTS7RD9HtJSIVSqAukcJo5A==} deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartrequest @@ -1463,15 +1361,10 @@ packages: /@pushrocks/smartrx@2.0.27: resolution: {integrity: sha512-aFRpGxDZgHH1mpmkRBTFwuIVqFiDxk22n2vX2gW4hntV0nJGlt9M9dixMFFXGUjabwX9hHW7y60QPJm2rKaypA==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartrx dependencies: '@pushrocks/smartpromise': 3.1.10 - rxjs: 7.8.0 - - /@pushrocks/smartrx@3.0.0: - resolution: {integrity: sha512-PwWmgEC3nKLoZYvOOfQhCQeesFOLNtbutxvkr/H06BfK3UgBFgnjMrVycjeaQlEWh+fgcwV3ZxZSgzMBsba8qg==} - dependencies: - '@pushrocks/smartpromise': 3.1.10 - rxjs: 7.8.0 + rxjs: 7.8.1 /@pushrocks/smartrx@3.0.2: resolution: {integrity: sha512-uh2ByyE86Q4f1/rpktR29vAMzHgAvAhFZqbvP6Sme9FK57OZG0mqZxDvJMVNP5O+QOn0Chrbl3BZCuRsFF3NUA==} @@ -1482,6 +1375,7 @@ packages: /@pushrocks/smartshell@2.0.30: resolution: {integrity: sha512-HPgdTFzfzhk2TQau/jVdYNSANlxyBZdqq2vyZ+bZahegVHfH/27Zur5Fk+2vE16VJjJMqP7zcvDITUe2+ipgJg==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartshell dependencies: '@pushrocks/smartdelay': 2.0.13 '@pushrocks/smartexit': 1.0.20 @@ -1493,30 +1387,32 @@ packages: /@pushrocks/smartsitemap@2.0.1: resolution: {integrity: sha512-eB4ybrhUtJaoqDY3P76NIp6gbIOGzLJPwqkMGo2d8dcJftqlySZxalsZTLOIHqLzQXYwSxuKo2JYGrjokx83Vw==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartsitemap dependencies: '@pushrocks/smartcache': 1.0.16 '@pushrocks/smartfeed': 1.0.11 '@pushrocks/smartxml': 1.0.6 '@pushrocks/smartyaml': 2.0.5 - '@pushrocks/webrequest': 3.0.21 + '@pushrocks/webrequest': 3.0.28 '@tsclass/tsclass': 3.0.48 transitivePeerDependencies: - supports-color /@pushrocks/smartsocket@2.0.19: resolution: {integrity: sha512-ZCmnUKnXMxD99mZkpXHkCN5uJTy/x3ScfRQ6qS1PKPjKxSdt6SPmeJqP5NKBhLlKd4QcE12zoJvlSZf/4eDd1w==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartsocket dependencies: '@apiglobal/typedrequest-interfaces': 2.0.1 - '@pushrocks/isohash': 2.0.0 + '@pushrocks/isohash': 2.0.1 '@pushrocks/isounique': 1.0.5 '@pushrocks/lik': 6.0.2 '@pushrocks/smartdelay': 2.0.13 '@pushrocks/smartenv': 5.0.5 '@pushrocks/smartexpress': 4.0.35 - '@pushrocks/smartjson': 5.0.5 + '@pushrocks/smartjson': 5.0.6 '@pushrocks/smartlog': 3.0.2 '@pushrocks/smartpromise': 3.1.10 - '@pushrocks/smartrx': 3.0.0 + '@pushrocks/smartrx': 3.0.2 '@pushrocks/smarttime': 4.0.1 engine.io: 6.3.1 socket.io: 4.5.4 @@ -1551,6 +1447,7 @@ packages: /@pushrocks/smartstream@2.0.3: resolution: {integrity: sha512-Zz1amk2FgqWyZFQE8WonKhNMreETm50pqDanp2g9uJBCNwFHIppJD4Qbpy/FFEFfp4Rs326hoBCWbZwU/FEymw==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartstream dependencies: '@pushrocks/smartpromise': 3.1.10 '@pushrocks/smartrx': 2.0.27 @@ -1559,20 +1456,6 @@ packages: from2: 2.3.0 through2: 4.0.2 - /@pushrocks/smartstring@4.0.5: - resolution: {integrity: sha512-g9a/Mfj+eJAUrTDQoH3oaYegjI98WlVoSLAI8lpExQ/STlEJGO5ZdWDqgZ0HvHe+5UeWvxzCFpHifqRhMUJ+dQ==} - dependencies: - '@pushrocks/isounique': 1.0.5 - '@pushrocks/smartenv': 5.0.5 - '@types/randomatic': 3.1.3 - buffer: 6.0.3 - crypto-random-string: 4.0.0 - js-base64: 3.7.5 - normalize-newline: 4.1.0 - randomatic: 3.1.1 - strip-indent: 4.0.0 - url: 0.11.0 - /@pushrocks/smartstring@4.0.7: resolution: {integrity: sha512-TxHSar7Cj29E+GOcIj4DeZKWCNVzHKdqnrBRqcBqLqmeYZvzFosLXpFKoaCJDq7MSxuPoCvu5woSdp9YmPXyog==} deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartstring @@ -1590,28 +1473,31 @@ packages: /@pushrocks/smarttime@3.0.50: resolution: {integrity: sha512-44NgDuNukCQIlPJFNORcDugp36Yj6HT6eZEWtn4M4HKlTFCQ8De+ztwGg+gRceucJ202zqLRKrXoh8dVdS3BaQ==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smarttime dependencies: '@pushrocks/lik': 5.0.7 '@pushrocks/smartdelay': 2.0.13 '@pushrocks/smartpromise': 3.1.10 croner: 4.4.1 - dayjs: 1.11.7 + dayjs: 1.11.9 is-nan: 1.3.2 pretty-ms: 7.0.1 /@pushrocks/smarttime@4.0.1: resolution: {integrity: sha512-5SpUqD3X/2IZCTezCpk48Ss7cDc9QOuQAkeAYnJrRjDL4UCLakA3lBeHXRD/rsIB7S1smtXlayQ/vizfYzdbfw==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smarttime dependencies: '@pushrocks/lik': 6.0.2 '@pushrocks/smartdelay': 2.0.13 '@pushrocks/smartpromise': 3.1.10 croner: 5.7.0 - dayjs: 1.11.7 + dayjs: 1.11.9 is-nan: 1.3.2 pretty-ms: 8.0.0 /@pushrocks/smartunique@3.0.3: resolution: {integrity: sha512-f+c3s2WzzjASoRHyYTLU0kHDVWREg4sZVdi5L42bTA3CTUWNrcGUC62h4wP4U4BiPl3bopTr3LPhClZHJ738oA==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartunique dependencies: '@types/shortid': 0.0.29 '@types/uuid': 7.0.5 @@ -1623,20 +1509,19 @@ packages: deprecated: This package has been deprecated in favour of the new package at @push.rocks/smarturl dev: true - /@pushrocks/smarturl@3.0.5: - resolution: {integrity: sha512-XKS+GpIOvMhxr855PmO39SOvv/hdhBbLZ45dkAA6uGL3XdW036jAp61nu7qeB3c6FPShCyhJzo2z5x51wW7OwQ==} - /@pushrocks/smarturl@3.0.6: resolution: {integrity: sha512-YHWnYE1mm8WIJk1usSXg+kNM7s7ByM+PKApO9cgl0T/oGybjzAJiO3clGNDro4ysP0TD+WuvJuiVue02bErEBQ==} deprecated: This package has been deprecated in favour of the new package at @push.rocks/smarturl /@pushrocks/smartxml@1.0.6: resolution: {integrity: sha512-Cy//pxzdpplqE64h9/sAwvAkUBv9t3Nw9v6k2c+erXH779iOtuyGiiyWqgbRTX1wo2CRhMJqWGJx6xd2Ljq5kw==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartxml dependencies: fast-xml-parser: 3.21.1 /@pushrocks/smartyaml@2.0.5: resolution: {integrity: sha512-nJGqvJ56vAst5evLqaPYQ4mO5uJVnXVlriyL3D6s89YMUoWGS3qj/jK+V8hDgznFCnd46pNjnc0GfQBCDpZ6eg==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/smartyaml dependencies: '@types/js-yaml': 3.12.7 js-yaml: 3.14.1 @@ -1653,28 +1538,17 @@ packages: /@pushrocks/taskbuffer@3.0.10: resolution: {integrity: sha512-KzwzJRCXriLgcG7mFvg7rGs97R7XuqDDPHQzGLeCHbVNFI0KFoTc0Z22TuCja/+2KVhjdD8w9aji+tVpPJzCkw==} + deprecated: This package has been deprecated in favour of the new package at @push.rocks/taskbuffer dependencies: '@pushrocks/isounique': 1.0.5 '@pushrocks/lik': 6.0.2 '@pushrocks/smartdelay': 2.0.13 '@pushrocks/smartlog': 3.0.2 '@pushrocks/smartpromise': 3.1.10 - '@pushrocks/smartrx': 3.0.0 + '@pushrocks/smartrx': 3.0.2 '@pushrocks/smarttime': 4.0.1 dev: true - /@pushrocks/webrequest@3.0.21: - resolution: {integrity: sha512-HorNaPz0ZhLWIGFTqpXz0VFjqIFdnZ2RznOgQP8vbyaY4N4nuQnjBOFYuP3caBAZaYoDIanMGXb1iybnKmPgGA==} - dependencies: - '@adobe/fetch': 4.0.6 - '@pushrocks/smartdelay': 2.0.13 - '@pushrocks/smartenv': 5.0.5 - '@pushrocks/smartjson': 5.0.5 - '@pushrocks/smartpromise': 3.1.10 - '@pushrocks/webstore': 2.0.5 - transitivePeerDependencies: - - supports-color - /@pushrocks/webrequest@3.0.28: resolution: {integrity: sha512-V7mRb0RC36GkbCvZv0d2p1Uiu/4+xA74IHTP5Hjw0dWYHnIsagcgf9E8Nie3Fo7w3gfQ3BtkHo+LtazwnAh0OQ==} deprecated: This package has been deprecated in favour of the new package at @push.rocks/webrequest @@ -1690,7 +1564,6 @@ packages: - bufferutil - supports-color - utf-8-validate - dev: false /@pushrocks/websetup@3.0.19: resolution: {integrity: sha512-cxPXyEhTu2TRFPa36QQJJWrR46f4BmLAJD57cBA6d/zhnzJzv7g6ThT1ZFFzDEOgzRh3F8KrFbqlbY+l/cReHA==} @@ -1701,18 +1574,6 @@ packages: '@tsclass/tsclass': 4.0.42 dev: false - /@pushrocks/webstore@2.0.5: - resolution: {integrity: sha512-O91dyT0o7xgeJsgftopa7NrE+sZxAQRr8i3UOZ6+UhyJx95v3kssPiE6aJ2uNsESKl3IlDq6RInLr1zbyFsqkg==} - dependencies: - '@apiglobal/typedrequest-interfaces': 1.0.20 - '@pushrocks/lik': 6.0.2 - '@pushrocks/smartenv': 5.0.5 - '@pushrocks/smartjson': 5.0.5 - '@pushrocks/smartpromise': 3.1.10 - '@pushrocks/smartrx': 2.0.27 - fake-indexeddb: 4.0.1 - idb: 7.1.1 - /@pushrocks/webstore@2.0.8: resolution: {integrity: sha512-gvZ5QnZu14bPIWaFDOCyH6pfPgN/nQ0hF3EFhE74Ypfm5dCzq6OZEC9jeUTXDypfsvbSs3xAgj4XG83sVSUDAg==} deprecated: This package has been deprecated in favour of the new package at @push.rocks/webstore @@ -1766,8 +1627,8 @@ packages: /@tsconfig/node14@1.0.3: resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} - /@tsconfig/node16@1.0.3: - resolution: {integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==} + /@tsconfig/node16@1.0.4: + resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} /@types/accepts@1.3.5: resolution: {integrity: sha512-jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ==} @@ -1861,26 +1722,28 @@ packages: resolution: {integrity: sha512-tpu0hp+AOIzwdAHyZPzLE5pCf9uT0pb+xZ76T4S7MrY2YTVq918Q7Q2VQ3KCVQqYxM7nxuCK/SL3X97jBEIeKQ==} dev: true - /@types/express-serve-static-core@4.17.33: - resolution: {integrity: sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==} + /@types/express-serve-static-core@4.17.35: + resolution: {integrity: sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==} dependencies: '@types/node': 20.4.8 '@types/qs': 6.9.7 '@types/range-parser': 1.2.4 + '@types/send': 0.17.1 /@types/express@4.17.17: resolution: {integrity: sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==} dependencies: '@types/body-parser': 1.19.2 - '@types/express-serve-static-core': 4.17.33 + '@types/express-serve-static-core': 4.17.35 '@types/qs': 6.9.7 - '@types/serve-static': 1.15.1 + '@types/serve-static': 1.15.2 /@types/fast-json-stable-stringify@2.1.0: resolution: {integrity: sha512-IyNhGHu71jH1jCXTHmafuoAAdsbBON3kDh7u/UUhLmjYgN5TYB54e1R8ckTCiIevl2UuZaCsi9XRxineY5yUjw==} deprecated: This is a stub types definition. fast-json-stable-stringify provides its own type definitions, so you do not need this installed. dependencies: fast-json-stable-stringify: 2.1.0 + dev: true /@types/finalhandler@1.2.0: resolution: {integrity: sha512-NgEZKOhxUSXkwNnWNaMXZaopQ5aFGPAYiEpEWIkQ6Dzc4iS0M1oQsvWne2t+ex9QZUAdTz/ZT4tOXJhWtP6mCw==} @@ -1935,7 +1798,6 @@ packages: /@types/http-errors@2.0.1: resolution: {integrity: sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==} - dev: true /@types/istanbul-lib-coverage@2.0.4: resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==} @@ -1987,17 +1849,12 @@ packages: '@types/node': 20.4.8 dev: true - /@types/lodash.clonedeep@4.5.7: - resolution: {integrity: sha512-ccNqkPptFIXrpVqUECi60/DFxjNKsfoQxSQsgcBJCX/fuX1wgyQieojkcWH/KpE3xzLoWN/2k+ZeGqIN3paSvw==} - dependencies: - '@types/lodash': 4.14.192 - - /@types/lodash@4.14.192: - resolution: {integrity: sha512-km+Vyn3BYm5ytMO13k9KTp27O75rbQ0NFw+U//g+PX7VZyjCioXaRFisqSIJRECljcTv73G3i6BpglNGHgUQ5A==} - /@types/mime-types@2.1.1: resolution: {integrity: sha512-vXOTGVSLR2jMw440moWTC7H19iUyLtP3Z1YTj7cSsubOICinjMxFeb/V57v9QdyyPGbbWolUFSSmSiRSn94tFw==} + /@types/mime@1.3.2: + resolution: {integrity: sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==} + /@types/mime@3.0.1: resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==} @@ -2031,9 +1888,16 @@ packages: resolution: {integrity: sha512-QSvevZ+IRww2ldtfv1QskYsqVVVwCKQf1XbwtcyyoRvLIQzfyPhj/C+3+PKzSDRdiyejaiLgnq//XTkleorpLg==} dev: true - /@types/serve-static@1.15.1: - resolution: {integrity: sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==} + /@types/send@0.17.1: + resolution: {integrity: sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==} dependencies: + '@types/mime': 1.3.2 + '@types/node': 20.4.8 + + /@types/serve-static@1.15.2: + resolution: {integrity: sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==} + dependencies: + '@types/http-errors': 2.0.1 '@types/mime': 3.0.1 '@types/node': 20.4.8 @@ -2189,8 +2053,8 @@ packages: - utf-8-validate dev: true - /@xmldom/xmldom@0.8.7: - resolution: {integrity: sha512-sI1Ly2cODlWStkINzqGrZ8K6n+MTSbAeQnAipGyL+KZCXuHaRlj2gyyy8B/9MvsFFqN7XHryQnB2QwhzvJXovg==} + /@xmldom/xmldom@0.8.10: + resolution: {integrity: sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==} engines: {node: '>=10.0.0'} dev: true @@ -2205,8 +2069,8 @@ packages: resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} engines: {node: '>=0.4.0'} - /acorn@8.8.2: - resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} + /acorn@8.10.0: + resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==} engines: {node: '>=0.4.0'} hasBin: true @@ -2219,16 +2083,6 @@ packages: - supports-color dev: true - /agentkeepalive@4.3.0: - resolution: {integrity: sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg==} - engines: {node: '>= 8.0.0'} - dependencies: - debug: 4.3.4 - depd: 2.0.0 - humanize-ms: 1.2.1 - transitivePeerDependencies: - - supports-color - /agentkeepalive@4.5.0: resolution: {integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==} engines: {node: '>= 8.0.0'} @@ -2408,7 +2262,7 @@ packages: /broadcast-channel@3.7.0: resolution: {integrity: sha512-cIAKJXAxGJceNZGTZSBzMxzyOn72cVgPnKx4dc6LRjQgbaJUQqhy5rzL3zbMxkMWsGKkv2hSFkPRMEXfoMZ2Mg==} dependencies: - '@babel/runtime': 7.21.0 + '@babel/runtime': 7.22.6 detect-node: 2.1.0 js-sha3: 0.8.0 microseconds: 0.2.0 @@ -2472,7 +2326,7 @@ packages: resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} dependencies: function-bind: 1.1.1 - get-intrinsic: 1.2.0 + get-intrinsic: 1.2.1 /callsites@3.1.0: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} @@ -2664,21 +2518,12 @@ packages: shebang-command: 2.0.0 which: 2.0.2 - /crypto-random-string@4.0.0: - resolution: {integrity: sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==} - engines: {node: '>=12'} - dependencies: - type-fest: 1.4.0 - /crypto-random-string@5.0.0: resolution: {integrity: sha512-KWjTXWwxFd6a94m5CdRGW/t82Tr8DoBc9dNnPCAbFI1EBweN6v1tv8y4Y1m7ndkp/nkIBRxUxAzpaBnR2k3bcQ==} engines: {node: '>=14.16'} dependencies: type-fest: 2.19.0 - /dayjs@1.11.7: - resolution: {integrity: sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==} - /dayjs@1.11.9: resolution: {integrity: sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==} @@ -2840,7 +2685,7 @@ packages: dependencies: '@socket.io/component-emitter': 3.1.0 debug: 4.3.4 - engine.io-parser: 5.0.6 + engine.io-parser: 5.0.7 ws: 8.2.3 xmlhttprequest-ssl: 2.0.0 transitivePeerDependencies: @@ -2848,8 +2693,8 @@ packages: - supports-color - utf-8-validate - /engine.io-parser@5.0.6: - resolution: {integrity: sha512-tjuoZDMAdEhVnSFleYPCtdL2GXwVTGtNjoeJd9IhIG3C1xs9uwxqRNEu5WpnDZCaozwVlK/nuQhpodhXSIMaxw==} + /engine.io-parser@5.0.7: + resolution: {integrity: sha512-P+jDFbvK6lE3n1OL+q9KuzdOFWkkZ/cMV9gol/SbVfpyqfvrfrFTOFJ6fQm2VC3PZHlU3QPhVwmbsCnauHF2MQ==} engines: {node: '>=10.0.0'} /engine.io@6.2.1: @@ -2864,7 +2709,7 @@ packages: cookie: 0.4.2 cors: 2.8.5 debug: 4.3.4 - engine.io-parser: 5.0.6 + engine.io-parser: 5.0.7 ws: 8.2.3 transitivePeerDependencies: - bufferutil @@ -2883,7 +2728,7 @@ packages: cookie: 0.4.2 cors: 2.8.5 debug: 4.3.4 - engine.io-parser: 5.0.6 + engine.io-parser: 5.0.7 ws: 8.11.0 transitivePeerDependencies: - bufferutil @@ -3019,11 +2864,6 @@ packages: - supports-color dev: true - /fake-indexeddb@4.0.1: - resolution: {integrity: sha512-hFRyPmvEZILYgdcLBxVdHLik4Tj3gDTu/g7s9ZDOiU3sTNiGx+vEu1ri/AMsFJUZ/1sdRbAVrEcKndh3sViBcA==} - dependencies: - realistic-structured-clone: 3.0.0 - /fake-indexeddb@4.0.2: resolution: {integrity: sha512-SdTwEhnakbgazc7W3WUXOJfGmhH0YfG4d+dRPOFoYDRTL6U5t8tvrmkf2W/C3W1jk2ylV7Wrnj44RASqpX/lEw==} dependencies: @@ -3183,11 +3023,12 @@ packages: /function-bind@1.1.1: resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} - /get-intrinsic@1.2.0: - resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==} + /get-intrinsic@1.2.1: + resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==} dependencies: function-bind: 1.1.1 has: 1.0.3 + has-proto: 1.0.1 has-symbols: 1.0.3 /get-stream@5.2.0: @@ -3229,16 +3070,6 @@ packages: once: 1.4.0 path-is-absolute: 1.0.1 - /glob@8.1.0: - resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} - engines: {node: '>=12'} - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 5.1.6 - once: 1.4.0 - /globby@11.1.0: resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} engines: {node: '>=10'} @@ -3284,7 +3115,11 @@ packages: /has-property-descriptors@1.0.0: resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} dependencies: - get-intrinsic: 1.2.0 + get-intrinsic: 1.2.1 + + /has-proto@1.0.1: + resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} + engines: {node: '>= 0.4'} /has-symbols@1.0.3: resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} @@ -3700,36 +3535,23 @@ packages: - supports-color dev: true - /lit-element@3.3.1: - resolution: {integrity: sha512-Gl+2409uXWbf7n6cCl7Kzasm7zjT9xmdwi2BhLNi70sRKAgRkqueDu5mSIH3hPYMM0/vqBCdPXod3NbGkRA2ww==} + /lit-element@3.3.3: + resolution: {integrity: sha512-XbeRxmTHubXENkV4h8RIPyr8lXc+Ff28rkcQzw3G6up2xg5E8Zu1IgOWIwBLEQsu3cOVFqdYwiVi0hv0SlpqUA==} dependencies: - '@lit-labs/ssr-dom-shim': 1.1.0 - '@lit/reactive-element': 1.6.1 - lit-html: 2.7.1 - - /lit-html@2.7.1: - resolution: {integrity: sha512-san46v7VXK6+2RXS4yveQYFUf9CoO/1bcNb0NibxLoTqlP48vs+l28tRPFDYcXGKWm0XoqcDuCC6mxIs8Jj3Zw==} - dependencies: - '@types/trusted-types': 2.0.3 + '@lit-labs/ssr-dom-shim': 1.1.1 + '@lit/reactive-element': 1.6.3 + lit-html: 2.8.0 /lit-html@2.8.0: resolution: {integrity: sha512-o9t+MQM3P4y7M7yNzqAyjp7z+mQGa4NS4CxiyLqFPyFWyc4O+nodLrkrxSaCTrla6M5YOLaT3RpbbqjszB5g3Q==} dependencies: '@types/trusted-types': 2.0.3 - /lit@2.7.1: - resolution: {integrity: sha512-t1cVWUVQj+ucdx16QPvqzyHWYTj/bvlv6vRCUuZ5T/dA4W2Ui4a4tz7uJ1IhoTb9rKe3pTJiWmoN2GJGGteszw==} - dependencies: - '@lit/reactive-element': 1.6.1 - lit-element: 3.3.1 - lit-html: 2.7.1 - dev: true - /lit@2.8.0: resolution: {integrity: sha512-4Sc3OFX9QHOJaHbmTMk28SYgVxLN3ePDjg7hofEft2zWlehFL3LiAuapWc4U/kYwMYJSh2hTCPZ6/LIC7ii0MA==} dependencies: - '@lit/reactive-element': 1.6.1 - lit-element: 3.3.1 + '@lit/reactive-element': 1.6.3 + lit-element: 3.3.3 lit-html: 2.8.0 /locate-path@5.0.0: @@ -3823,10 +3645,6 @@ packages: yallist: 4.0.0 dev: true - /lru-cache@8.0.4: - resolution: {integrity: sha512-E9FF6+Oc/uFLqZCuZwRKUzgFt5Raih6LfxknOSAVTjNkrCZkBf7DQCwJxZQgd9l4eHjIJDGR+E+1QKD1RhThPw==} - engines: {node: '>=16.14'} - /lru-cache@8.0.5: resolution: {integrity: sha512-MhWWlVnuab1RG5/zMRRcVGXZLCXrZTgfwMikgzCegsPnG62yDQo5JnqKkrK4jO5iKqDAZGItAqN5CtKBCBWRUA==} engines: {node: '>=16.14'} @@ -3835,7 +3653,6 @@ packages: /lru-cache@9.1.1: resolution: {integrity: sha512-65/Jky17UwSb0BuB9V+MyDpsOtXKmYwzhyl+cOa9XUiI4uV2Ouy/2voFP3+al0BjZbJgMBD8FojMpAf+Z+qn4A==} engines: {node: 14 || >=16.14} - dev: false /make-dir@3.1.0: resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} @@ -3941,12 +3758,6 @@ packages: dependencies: brace-expansion: 1.1.11 - /minimatch@5.1.6: - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} - engines: {node: '>=10'} - dependencies: - brace-expansion: 2.0.1 - /minimatch@9.0.3: resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} engines: {node: '>=16 || 14 >=14.17'} @@ -4187,7 +3998,7 @@ packages: engines: {node: '>=14.18.0', npm: '>=6.14.15'} hasBin: true dependencies: - '@xmldom/xmldom': 0.8.7 + '@xmldom/xmldom': 0.8.10 dev: true bundledDependencies: - '@xmldom/xmldom' @@ -4284,9 +4095,6 @@ packages: once: 1.4.0 dev: true - /punycode@1.3.2: - resolution: {integrity: sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=} - /punycode@1.4.1: resolution: {integrity: sha1-wNWmOycYgArY4esPpSachN1BhF4=} @@ -4324,23 +4132,11 @@ packages: dependencies: side-channel: 1.0.4 - /qs@6.11.1: - resolution: {integrity: sha512-0wsrzgTz/kAVIeuxSjnpGC56rzYtr6JT/2BwEvMaPhFIoYa1aGO8LbzuU1R0uUYQkLpWBTOj0l/CLAJB64J6nQ==} - engines: {node: '>=0.6'} - dependencies: - side-channel: 1.0.4 - /qs@6.11.2: resolution: {integrity: sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==} engines: {node: '>=0.6'} dependencies: side-channel: 1.0.4 - dev: true - - /querystring@0.2.0: - resolution: {integrity: sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=} - engines: {node: '>=0.4.x'} - deprecated: The /queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} @@ -4464,11 +4260,11 @@ packages: dependencies: glob: 7.2.3 - /rss-parser@3.12.0: - resolution: {integrity: sha512-aqD3E8iavcCdkhVxNDIdg1nkBI17jgqF+9OqPS1orwNaOgySdpvq6B+DoONLhzjzwV8mWg37sb60e4bmLK117A==} + /rss-parser@3.13.0: + resolution: {integrity: sha512-7jWUBV5yGN3rqMMj7CZufl/291QAhvrrGpDNE4k/02ZchL0npisiYYqULF71jCEKoIiHvK/Q2e6IkDwPziT7+w==} dependencies: entities: 2.2.0 - xml2js: 0.4.23 + xml2js: 0.5.0 /run-parallel@1.2.0: resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} @@ -4476,15 +4272,10 @@ packages: queue-microtask: 1.2.3 dev: true - /rxjs@7.8.0: - resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==} - dependencies: - tslib: 2.5.0 - /rxjs@7.8.1: resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} dependencies: - tslib: 2.5.0 + tslib: 2.6.1 /safe-buffer@5.1.2: resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} @@ -4568,7 +4359,7 @@ packages: resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} dependencies: call-bind: 1.0.2 - get-intrinsic: 1.2.0 + get-intrinsic: 1.2.1 object-inspect: 1.12.3 /signal-exit@3.0.7: @@ -4603,14 +4394,14 @@ packages: '@socket.io/component-emitter': 3.1.0 debug: 4.3.4 engine.io-client: 6.2.3 - socket.io-parser: 4.2.2 + socket.io-parser: 4.2.4 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - /socket.io-parser@4.2.2: - resolution: {integrity: sha512-DJtziuKypFkMMHCm2uIshOYC7QaylbtzQwiMYDuCKy3OPkjLzu4B2vAhTlqipRHHzrI0NJeBAizTK7X+6m1jVw==} + /socket.io-parser@4.2.4: + resolution: {integrity: sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==} engines: {node: '>=10.0.0'} dependencies: '@socket.io/component-emitter': 3.1.0 @@ -4627,7 +4418,7 @@ packages: debug: 4.3.4 engine.io: 6.2.1 socket.io-adapter: 2.4.0 - socket.io-parser: 4.2.2 + socket.io-parser: 4.2.4 transitivePeerDependencies: - bufferutil - supports-color @@ -4822,37 +4613,6 @@ packages: resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} hasBin: true - /ts-node@10.9.1(@types/node@20.4.8)(typescript@4.9.5): - resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} - hasBin: true - peerDependencies: - '@swc/core': '>=1.2.50' - '@swc/wasm': '>=1.2.50' - '@types/node': '*' - typescript: '>=2.7' - peerDependenciesMeta: - '@swc/core': - optional: true - '@swc/wasm': - optional: true - dependencies: - '@cspotcode/source-map-support': 0.8.1 - '@tsconfig/node10': 1.0.9 - '@tsconfig/node12': 1.0.11 - '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.3 - '@types/node': 20.4.8 - acorn: 8.8.2 - acorn-walk: 8.2.0 - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.2 - make-error: 1.3.6 - typescript: 4.9.5 - v8-compile-cache-lib: 3.0.1 - yn: 3.1.1 - dev: true - /ts-node@10.9.1(@types/node@20.4.8)(typescript@5.1.6): resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true @@ -4871,9 +4631,9 @@ packages: '@tsconfig/node10': 1.0.9 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.3 + '@tsconfig/node16': 1.0.4 '@types/node': 20.4.8 - acorn: 8.8.2 + acorn: 8.10.0 acorn-walk: 8.2.0 arg: 4.1.3 create-require: 1.1.1 @@ -4883,8 +4643,8 @@ packages: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - /tslib@2.5.0: - resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} + /tslib@2.6.1: + resolution: {integrity: sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==} /tsscmp@1.0.6: resolution: {integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==} @@ -4896,10 +4656,6 @@ packages: engines: {node: '>=10'} dev: true - /type-fest@1.4.0: - resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} - engines: {node: '>=10'} - /type-fest@2.19.0: resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} engines: {node: '>=12.20'} @@ -4915,12 +4671,6 @@ packages: media-typer: 0.3.0 mime-types: 2.1.35 - /typescript@4.9.5: - resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} - engines: {node: '>=4.2.0'} - hasBin: true - dev: true - /typescript@5.1.6: resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==} engines: {node: '>=14.17'} @@ -4965,7 +4715,7 @@ packages: /unload@2.2.0: resolution: {integrity: sha512-B60uB5TNBLtN6/LsgAf3udH9saB5p7gqJwcFfbOEZ8BcBHnGwCf6G/TGiEqkRAxX7zAFIUtzdrXQSdL3Q/wqNA==} dependencies: - '@babel/runtime': 7.21.0 + '@babel/runtime': 7.22.6 detect-node: 2.1.0 dev: false @@ -4982,17 +4732,11 @@ packages: resolution: {integrity: sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=} dev: true - /url@0.11.0: - resolution: {integrity: sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=} - dependencies: - punycode: 1.3.2 - querystring: 0.2.0 - /url@0.11.1: resolution: {integrity: sha512-rWS3H04/+mzzJkv0eZ7vEDGiQbgquI1fGfOad6zKvgYQi1SzMmhl7c/DdRGxhaWrVH6z0qWITo8rpnxK/RfEhA==} dependencies: punycode: 1.4.1 - qs: 6.11.1 + qs: 6.11.2 /util-deprecate@1.0.2: resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=} @@ -5146,8 +4890,8 @@ packages: dependencies: sax: 1.2.4 - /xml2js@0.4.23: - resolution: {integrity: sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==} + /xml2js@0.5.0: + resolution: {integrity: sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==} engines: {node: '>=4.0.0'} dependencies: sax: 1.2.4 diff --git a/readme.md b/readme.md index e6b6dad..1dbb463 100644 --- a/readme.md +++ b/readme.md @@ -3,18 +3,18 @@ a webcomponents catalog for handling daily stuff on the web ## Availabililty and Links * [npmjs.org (npm package)](https://www.npmjs.com/package/@design.estate/dees-catalog) -* [gitlab.com (source)](https://gitlab.com/designestate/dees-catalog) -* [github.com (source mirror)](https://github.com/designestate/dees-catalog) -* [docs (typedoc)](https://designestate.gitlab.io/dees-catalog/) +* [gitlab.com (source)](https://gitlab.com/design.estate/dees-catalog) +* [github.com (source mirror)](https://github.com/design.estate/dees-catalog) +* [docs (typedoc)](https://design.estate.gitlab.io/dees-catalog/) ## Status for master Status Category | Status Badge -- | -- -GitLab Pipelines | [![pipeline status](https://gitlab.com/designestate/dees-catalog/badges/master/pipeline.svg)](https://lossless.cloud) -GitLab Pipline Test Coverage | [![coverage report](https://gitlab.com/designestate/dees-catalog/badges/master/coverage.svg)](https://lossless.cloud) +GitLab Pipelines | [![pipeline status](https://gitlab.com/design.estate/dees-catalog/badges/master/pipeline.svg)](https://lossless.cloud) +GitLab Pipline Test Coverage | [![coverage report](https://gitlab.com/design.estate/dees-catalog/badges/master/coverage.svg)](https://lossless.cloud) npm | [![npm downloads per month](https://badgen.net/npm/dy/@design.estate/dees-catalog)](https://lossless.cloud) -Snyk | [![Known Vulnerabilities](https://badgen.net/snyk/designestate/dees-catalog)](https://lossless.cloud) +Snyk | [![Known Vulnerabilities](https://badgen.net/snyk/design.estate/dees-catalog)](https://lossless.cloud) TypeScript Support | [![TypeScript](https://badgen.net/badge/TypeScript/>=%203.x/blue?icon=typescript)](https://lossless.cloud) node Support | [![node](https://img.shields.io/badge/node->=%2010.x.x-blue.svg)](https://nodejs.org/dist/latest-v10.x/docs/api/) Code Style | [![Code Style](https://badgen.net/badge/style/prettier/purple)](https://lossless.cloud) diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index 7a2db92..00c2d2c 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@design.estate/dees-catalog', - version: '1.0.171', + version: '1.0.172', description: 'website for lossless.com' } diff --git a/ts_web/elements/dees-button-exit.ts b/ts_web/elements/dees-button-exit.ts index bf3bff1..2289596 100644 --- a/ts_web/elements/dees-button-exit.ts +++ b/ts_web/elements/dees-button-exit.ts @@ -3,8 +3,9 @@ import { customElement, DeesElement, html, - TemplateResult, + type TemplateResult, css, + type CSSResult, state, property } from '@design.estate/dees-element'; diff --git a/ts_web/elements/dees-button.ts b/ts_web/elements/dees-button.ts index 5a296e8..1fa8fbd 100644 --- a/ts_web/elements/dees-button.ts +++ b/ts_web/elements/dees-button.ts @@ -3,7 +3,7 @@ import { html, DeesElement, property, - TemplateResult, + type TemplateResult, cssManager, css, unsafeCSS, diff --git a/ts_web/elements/dees-chips.ts b/ts_web/elements/dees-chips.ts index 9d833e0..aebffb5 100644 --- a/ts_web/elements/dees-chips.ts +++ b/ts_web/elements/dees-chips.ts @@ -3,7 +3,7 @@ import { html, DeesElement, property, - TemplateResult, + type TemplateResult, cssManager, css, unsafeCSS, diff --git a/ts_web/elements/dees-contextmenu.ts b/ts_web/elements/dees-contextmenu.ts index dde6b38..f2c31ff 100644 --- a/ts_web/elements/dees-contextmenu.ts +++ b/ts_web/elements/dees-contextmenu.ts @@ -4,7 +4,7 @@ import { html, DeesElement, property, - TemplateResult, + type TemplateResult, cssManager, css, unsafeCSS, diff --git a/ts_web/elements/dees-dataview-codebox.ts b/ts_web/elements/dees-dataview-codebox.ts index fbbfdc8..a68a370 100644 --- a/ts_web/elements/dees-dataview-codebox.ts +++ b/ts_web/elements/dees-dataview-codebox.ts @@ -2,7 +2,7 @@ import { DeesElement, html, customElement, - TemplateResult, + type TemplateResult, property, state, } from '@design.estate/dees-element'; diff --git a/ts_web/elements/dees-dataview-statusobject.ts b/ts_web/elements/dees-dataview-statusobject.ts index d2a42dd..7617dd9 100644 --- a/ts_web/elements/dees-dataview-statusobject.ts +++ b/ts_web/elements/dees-dataview-statusobject.ts @@ -2,11 +2,12 @@ import { DeesElement, html, customElement, - TemplateResult, + type TemplateResult, property, state, cssManager, css, + type CSSResult, } from '@design.estate/dees-element'; import * as tsclass from '@tsclass/tsclass'; diff --git a/ts_web/elements/dees-form-submit.ts b/ts_web/elements/dees-form-submit.ts index f2b4605..41735d9 100644 --- a/ts_web/elements/dees-form-submit.ts +++ b/ts_web/elements/dees-form-submit.ts @@ -5,6 +5,7 @@ import { css, cssManager, property, + type CSSResult, } from '@design.estate/dees-element'; import { DeesForm } from './dees-form.js'; diff --git a/ts_web/elements/dees-form.ts b/ts_web/elements/dees-form.ts index 9e3557e..5d999de 100644 --- a/ts_web/elements/dees-form.ts +++ b/ts_web/elements/dees-form.ts @@ -1,4 +1,4 @@ -import { customElement, html, TemplateResult, DeesElement } from '@design.estate/dees-element'; +import { customElement, html, type TemplateResult, DeesElement, type CSSResult, } from '@design.estate/dees-element'; import * as domtools from '@design.estate/dees-domtools'; import { DeesInputCheckbox } from './dees-input-checkbox.js'; diff --git a/ts_web/elements/dees-icon.ts b/ts_web/elements/dees-icon.ts index 9317e50..4dd4cd4 100644 --- a/ts_web/elements/dees-icon.ts +++ b/ts_web/elements/dees-icon.ts @@ -5,11 +5,12 @@ import { customElement, cssManager, css, + type CSSResult, } from '@design.estate/dees-element'; import * as domtools from '@design.estate/dees-domtools'; -import { icon, IconDefinition } from '@fortawesome/fontawesome-svg-core'; +import { icon, type IconDefinition } from '@fortawesome/fontawesome-svg-core'; import { faFacebook, faGoogle, diff --git a/ts_web/elements/dees-input-checkbox.ts b/ts_web/elements/dees-input-checkbox.ts index b2bc595..cdff966 100644 --- a/ts_web/elements/dees-input-checkbox.ts +++ b/ts_web/elements/dees-input-checkbox.ts @@ -1,11 +1,12 @@ import { customElement, DeesElement, - TemplateResult, + type TemplateResult, property, html, css, - cssManager + cssManager, + type CSSResult, } from '@design.estate/dees-element'; import * as domtools from '@design.estate/dees-domtools'; diff --git a/ts_web/elements/dees-input-dropdown.ts b/ts_web/elements/dees-input-dropdown.ts index 8c98c88..1a189d2 100644 --- a/ts_web/elements/dees-input-dropdown.ts +++ b/ts_web/elements/dees-input-dropdown.ts @@ -1,4 +1,4 @@ -import { customElement, DeesElement, TemplateResult, property, html, css, cssManager } from '@design.estate/dees-element'; +import { customElement, DeesElement, type TemplateResult, property, html, css, cssManager, type CSSResult, } from '@design.estate/dees-element'; import * as domtools from '@design.estate/dees-domtools'; declare global { diff --git a/ts_web/elements/dees-input-fileupload.ts b/ts_web/elements/dees-input-fileupload.ts index 8f14527..8c67d3d 100644 --- a/ts_web/elements/dees-input-fileupload.ts +++ b/ts_web/elements/dees-input-fileupload.ts @@ -1,12 +1,13 @@ import { customElement, DeesElement, - TemplateResult, + type TemplateResult, property, html, css, unsafeCSS, cssManager, + type CSSResult, } from '@design.estate/dees-element'; import * as domtools from '@design.estate/dees-domtools'; diff --git a/ts_web/elements/dees-input-quantityselector.ts b/ts_web/elements/dees-input-quantityselector.ts index bb0ce0b..05a347f 100644 --- a/ts_web/elements/dees-input-quantityselector.ts +++ b/ts_web/elements/dees-input-quantityselector.ts @@ -1,4 +1,4 @@ -import { customElement, property, html, TemplateResult, DeesElement } from '@design.estate/dees-element'; +import { customElement, property, html, type TemplateResult, DeesElement, type CSSResult, } from '@design.estate/dees-element'; import * as domtools from '@design.estate/dees-domtools'; declare global { diff --git a/ts_web/elements/dees-input-radio.ts b/ts_web/elements/dees-input-radio.ts index 998bf69..e929d3d 100644 --- a/ts_web/elements/dees-input-radio.ts +++ b/ts_web/elements/dees-input-radio.ts @@ -1,4 +1,4 @@ -import {customElement, DeesElement, TemplateResult, property, html} from '@design.estate/dees-element'; +import {customElement, DeesElement, type TemplateResult, property, html, type CSSResult,} from '@design.estate/dees-element'; import * as domtools from '@design.estate/dees-domtools'; declare global { diff --git a/ts_web/elements/dees-input-text.ts b/ts_web/elements/dees-input-text.ts index 17fde45..af0deee 100644 --- a/ts_web/elements/dees-input-text.ts +++ b/ts_web/elements/dees-input-text.ts @@ -1,4 +1,4 @@ -import {customElement, DeesElement, TemplateResult, property, html, cssManager} from '@design.estate/dees-element'; +import {customElement, DeesElement, type TemplateResult, property, html, cssManager, type CSSResult,} from '@design.estate/dees-element'; import * as domtools from '@design.estate/dees-domtools'; declare global { diff --git a/ts_web/elements/dees-mobilenavigation.ts b/ts_web/elements/dees-mobilenavigation.ts index 847f840..7dd613e 100644 --- a/ts_web/elements/dees-mobilenavigation.ts +++ b/ts_web/elements/dees-mobilenavigation.ts @@ -2,6 +2,7 @@ import * as plugins from './plugins.js'; import { cssManager, css, + type CSSResult, customElement, DeesElement, domtools, @@ -56,7 +57,7 @@ export class DeesMobilenavigation extends DeesElement { }) public menuItems: plugins.tsclass.website.IMenuItem[] = []; - readyDeferred = domtools.plugins.smartpromise.defer(); + readyDeferred: plugins.smartpromise.Deferred = domtools.plugins.smartpromise.defer(); constructor() { super(); diff --git a/ts_web/elements/dees-pdf.ts b/ts_web/elements/dees-pdf.ts index 9f8088f..e9aae36 100644 --- a/ts_web/elements/dees-pdf.ts +++ b/ts_web/elements/dees-pdf.ts @@ -1,4 +1,4 @@ -import { DeesElement, property, html, customElement, domtools, TemplateResult } from '@design.estate/dees-element'; +import { DeesElement, property, html, customElement, domtools, type TemplateResult, type CSSResult, } from '@design.estate/dees-element'; import { Deferred } from '@push.rocks/smartpromise'; diff --git a/ts_web/elements/dees-speechbubble.ts b/ts_web/elements/dees-speechbubble.ts index 444c7bd..e5ae0c5 100644 --- a/ts_web/elements/dees-speechbubble.ts +++ b/ts_web/elements/dees-speechbubble.ts @@ -3,9 +3,10 @@ import { html, DeesElement, property, - TemplateResult, + type TemplateResult, cssManager, css, + type CSSResult, unsafeCSS, } from '@design.estate/dees-element'; diff --git a/ts_web/elements/dees-spinner.ts b/ts_web/elements/dees-spinner.ts index 8c6f820..290684f 100644 --- a/ts_web/elements/dees-spinner.ts +++ b/ts_web/elements/dees-spinner.ts @@ -3,9 +3,10 @@ import { html, DeesElement, property, - TemplateResult, + type TemplateResult, cssManager, css, + type CSSResult, unsafeCSS, } from '@design.estate/dees-element'; diff --git a/ts_web/elements/dees-stepper.ts b/ts_web/elements/dees-stepper.ts index 8c4fe7b..8b4ccec 100644 --- a/ts_web/elements/dees-stepper.ts +++ b/ts_web/elements/dees-stepper.ts @@ -4,9 +4,10 @@ import { html, css, unsafeCSS, + type CSSResult, cssManager, property, - TemplateResult, + type TemplateResult, } from '@design.estate/dees-element'; import * as domtools from '@design.estate/dees-domtools'; diff --git a/ts_web/elements/dees-table.ts b/ts_web/elements/dees-table.ts index 7f35b7d..a6ca48e 100644 --- a/ts_web/elements/dees-table.ts +++ b/ts_web/elements/dees-table.ts @@ -3,10 +3,11 @@ import { html, DeesElement, property, - TemplateResult, + type TemplateResult, cssManager, css, unsafeCSS, + type CSSResult, state, } from '@design.estate/dees-element'; diff --git a/ts_web/elements/dees-toast.ts b/ts_web/elements/dees-toast.ts index e0d8881..743c9e0 100644 --- a/ts_web/elements/dees-toast.ts +++ b/ts_web/elements/dees-toast.ts @@ -1,4 +1,4 @@ -import { customElement, DeesElement, TemplateResult, html } from '@design.estate/dees-element'; +import { customElement, DeesElement, type TemplateResult, html, type CSSResult, } from '@design.estate/dees-element'; import * as domtools from '@design.estate/dees-domtools'; diff --git a/ts_web/elements/dees-updater.ts b/ts_web/elements/dees-updater.ts index 7f3798b..5072f97 100644 --- a/ts_web/elements/dees-updater.ts +++ b/ts_web/elements/dees-updater.ts @@ -1,4 +1,4 @@ -import { customElement, DeesElement, TemplateResult, html, property } from '@design.estate/dees-element'; +import { customElement, DeesElement, type TemplateResult, html, property, type CSSResult, } from '@design.estate/dees-element'; import * as domtools from '@design.estate/dees-domtools'; diff --git a/ts_web/elements/dees-windowlayer.ts b/ts_web/elements/dees-windowlayer.ts index a9cef81..55157f1 100644 --- a/ts_web/elements/dees-windowlayer.ts +++ b/ts_web/elements/dees-windowlayer.ts @@ -1,4 +1,4 @@ -import { customElement, DeesElement, TemplateResult, html, property } from '@design.estate/dees-element'; +import { customElement, DeesElement, type TemplateResult, html, property, type CSSResult, } from '@design.estate/dees-element'; import * as domtools from '@design.estate/dees-domtools'; diff --git a/ts_web/elements/plugins.ts b/ts_web/elements/plugins.ts index 296f6ea..81a5506 100644 --- a/ts_web/elements/plugins.ts +++ b/ts_web/elements/plugins.ts @@ -1,3 +1,11 @@ +// @push.rocks scope +import * as smartpromise from '@push.rocks/smartpromise'; + +export { + smartpromise, +} + +// @tsclass scope import * as tsclass from '@tsclass/tsclass'; export {