Release 7.0.3

This commit is contained in:
DominikIwanek
2026-08-24 11:32:28 +02:00
parent 1238e7e2f7
commit 39a7e79a06
6 changed files with 111 additions and 348 deletions
+29 -221
View File
@@ -4,223 +4,38 @@ run-name: Release workflow triggered from ${{ github.ref_name }} branch
on:
workflow_dispatch:
inputs:
publish-to-docker:
description: 'Publish to Docker'
required: false
type: boolean
default: true
publish-to-quay:
description: 'Publish to Quay'
required: false
type: boolean
default: true
publish-to-npm:
description: 'Publish NPM libraries'
required: false
type: boolean
default: true
publish-git-tag:
description: 'Publish Git Tag'
required: false
type: boolean
default: true
npm-tag:
description: 'NPM tag that libraries will be published with'
required: false
type: string
default: ''
default: 'branch'
dry-run-release:
description: 'Enable dry-run'
required: false
type: boolean
default: true
push:
branches:
- master
- develop
default: false
permissions:
id-token: write # Required for OIDC
id-token: write
contents: read
env:
BASE_URL: ${{ secrets.PIPELINE_ENV_URL }}
ADMIN_EMAIL: ${{ secrets.PIPELINE_ADMIN_USERNAME }}
ADMIN_PASSWORD: ${{ secrets.PIPELINE_ADMIN_PASSWORD }}
PLAYWRIGHT_E2E_HOST: ${{ secrets.PLAYWRIGHT_E2E_HOST }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
jobs:
lint:
if: github.event_name == 'workflow_dispatch'
name: 'lint'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: node
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
cache: 'npm'
- run: npm ci
- run: npm run affected:lint -- --base=origin/develop
- run: npm run stylelint
unit-tests:
if: github.event_name == 'workflow_dispatch'
needs: [lint]
name: "Unit tests: ${{ matrix.unit-tests.name }}"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
unit-tests:
- name: "aca-content"
- name: "aca-shared"
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: node
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
cache: 'npm'
- uses: ./.github/actions/before-install
- run: npm ci
- run: npm run affected:test -- --browsers=ChromeHeadless --watch=false $TEST_OPTS --base=origin/develop
publish-docker-registry:
if: ${{ always() }}
needs: [lint, unit-tests]
name: "Publish to Quay"
runs-on: ubuntu-latest
steps:
- name: Check previous jobs status
if: ${{ inputs.publish-to-quay == 'false' || contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}
run: exit 1
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
cache: 'npm'
- uses: ./.github/actions/setup
with:
npm_tag: ${{ inputs.npm-tag }}
- name: Get Tag
uses: ./.github/actions/get-image-tag
with:
branch_name: ${{ env.BRANCH_NAME }}
- name: publish
uses: ./.github/actions/publish-image
with:
registry: quay.io
tag_version: ${{ env.TAG_VERSION }}
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
dry-run: ${{ inputs.dry-run-release }}
publish-to-dockerhub:
if: ${{ always() }}
needs: [lint, unit-tests]
name: "Publish to Dockerhub"
runs-on: ubuntu-latest
steps:
- name: Check previous jobs status
if: ${{ inputs.publish-to-docker == 'false' || contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}
run: exit 1
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
cache: 'npm'
- uses: ./.github/actions/setup
with:
npm_tag: ${{ inputs.npm-tag }}
- name: Get Tag
uses: ./.github/actions/get-image-tag
with:
branch_name: ${{ env.BRANCH_NAME }}
- name: publish
uses: ./.github/actions/publish-image
with:
registry: docker.io
tag_version: ${{ env.TAG_VERSION }}
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
dry-run: ${{ inputs.dry-run-release }}
publish-git-tag:
if: ${{ always() }}
needs: [lint, unit-tests]
name: "Publish Git Tag"
runs-on: ubuntu-latest
steps:
- name: Check previous jobs status
if: ${{ inputs.publish-git-tag == 'false' || contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}
run: exit 1
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
cache: 'npm'
- uses: ./.github/actions/setup
with:
npm_tag: ${{ inputs.npm-tag }}
- uses: Alfresco/alfresco-build-tools/.github/actions/configure-git-author@3768f40c71f5f9b0c4e6a507c8f87ed40d9b60c9 #v12.9.0
with:
username: ${{ vars.BOT_GITHUB_USERNAME }}
email: ${{ vars.BOT_GITHUB_EMAIL }}
global: true
- name: publish
uses: ./.github/actions/git-tag
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch_name: ${{ env.BRANCH_NAME }}
dry-run: ${{ inputs.dry-run-release }}
publish-libs:
if: ${{ always() }}
needs: [lint, unit-tests]
name: "Publish libs to NPM and GitHub registry"
name: 'Publish libs to NPM'
runs-on: ubuntu-latest
timeout-minutes: 45
permissions:
id-token: write # Required for OIDC
id-token: write # Required for OIDC
contents: read
packages: write
steps:
- name: Check previous jobs status
if: ${{ inputs.publish-to-npm == 'false' || contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}
run: exit 1
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 2
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v6
@@ -228,34 +43,27 @@ jobs:
node-version-file: '.nvmrc'
cache: 'npm'
- uses: ./.github/actions/setup
with:
npm_tag: ${{ inputs.npm-tag }}
- name: Set library versions
run: |
VERSION=$(jq -cr '.version' < package.json)
echo "Releasing libraries as $VERSION"
bash .github/actions/update-library-versions/update-lib-versions.sh "$VERSION" "false"
- name: publish
uses: ./.github/actions/publish-libs
with:
branch_name: ${{ env.BRANCH_NAME }}
github_token: ${{ secrets.GITHUB_TOKEN }}
npm_tag: ${{ env.TAG_NPM }}
dry-run: ${{ inputs.dry-run-release }}
- name: install
run: npm ci --force
push-translation-keys-to-crowdin:
name: Push translations keys to Crowdin
if: ${{ github.ref == 'refs/heads/develop' }}
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
actions: read
steps:
- name: Checkout
uses: actions/checkout@v6
- name: build libraries
run: npx nx run-many --target=build --projects=aca-content,aca-shared,aca-playwright-shared
- name: Push Source Files to Crowdin
uses: crowdin/github-action@b4b468cffefb50bdd99dd83e5d2eaeb63c880380 # v2.14.0
- uses: actions/setup-node@v6
name: setup NPM registry
with:
upload_sources: true
upload_sources_args: --delete-obsolete
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
scope: '@alfresco'
- name: publish to NPM registry
run: bash .github/actions/publish-libs/npm-publish.sh "$TAG" "$DRY_RUN"
env:
CROWDIN_TOKEN: ${{ secrets.CROWDIN_TRANSLATIONS_TOKEN }}
TAG: ${{ inputs.npm-tag }}
DRY_RUN: ${{ inputs.dry-run-release }}
+62 -107
View File
@@ -1,19 +1,19 @@
{
"name": "alfresco-content-app",
"version": "7.0.2",
"version": "7.0.3-A.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "alfresco-content-app",
"version": "7.0.2",
"version": "7.0.3-A.1",
"license": "LGPL-3.0",
"dependencies": {
"@alfresco/adf-content-services": "8.0.2",
"@alfresco/adf-core": "8.0.2",
"@alfresco/adf-extensions": "8.0.2",
"@alfresco/eslint-plugin-eslint-angular": "8.0.2",
"@alfresco/js-api": "9.0.2",
"@alfresco/adf-content-services": "8.0.3-A.1",
"@alfresco/adf-core": "8.0.3-A.1",
"@alfresco/adf-extensions": "8.0.3-A.1",
"@alfresco/eslint-plugin-eslint-angular": "8.0.3-A.1",
"@alfresco/js-api": "9.0.3-A.1",
"@angular/animations": "19.2.6",
"@angular/cdk": "19.2.9",
"@angular/common": "19.2.6",
@@ -46,7 +46,7 @@
"zone.js": "0.15.0"
},
"devDependencies": {
"@alfresco/adf-cli": "8.0.2",
"@alfresco/adf-cli": "8.0.3-A.1",
"@angular-devkit/build-angular": "19.2.15",
"@angular-devkit/core": "19.2.7",
"@angular-devkit/schematics": "19.2.7",
@@ -113,9 +113,9 @@
"license": "MIT"
},
"node_modules/@alfresco/adf-cli": {
"version": "8.0.2",
"resolved": "https://registry.npmjs.org/@alfresco/adf-cli/-/adf-cli-8.0.2.tgz",
"integrity": "sha512-JNE9BkpLlvRA3yP9INmOmxJFL+ycCd7y7Eod/5KprfVLmkQmmU99mkuxNnexPxkgfmT06d48cHKPUYXFXee3YA==",
"version": "8.0.3-A.1",
"resolved": "https://registry.npmjs.org/@alfresco/adf-cli/-/adf-cli-8.0.3-A.1.tgz",
"integrity": "sha512-gfmszHAnEZpGdViK3eEBFqkv78+x3x0baJ3bOICYzZQ+T3N+SPNpSw3M+TMFdnTgZIJOUCtUiZjquxg5Ta26eQ==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -133,10 +133,28 @@
"adf-cli": "bin/adf-cli"
}
},
"node_modules/@alfresco/adf-cli/node_modules/@alfresco/js-api": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@alfresco/js-api/-/js-api-10.0.0.tgz",
"integrity": "sha512-hfLhhgjnBYBs9sTwEHHs5LwsfPYtUhq10VgU4Hzs4TAtGIFDxHnusmmkJ4Bt1xj9KQC/Dx4Ia2lpH5GC65KQlA==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"eventemitter3": "^5.0.1",
"tslib": "^2.6.1"
}
},
"node_modules/@alfresco/adf-cli/node_modules/eventemitter3": {
"version": "5.0.4",
"resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.4.tgz",
"integrity": "sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==",
"dev": true,
"license": "MIT"
},
"node_modules/@alfresco/adf-content-services": {
"version": "8.0.2",
"resolved": "https://registry.npmjs.org/@alfresco/adf-content-services/-/adf-content-services-8.0.2.tgz",
"integrity": "sha512-pTS8FWiaDKBTHhCynp2f//xQze8tHWvUFR58ZMXXqsndXbRbrrxpZ0rY3hxWqCGaFWi7u7KLWpCSyz5IvFkCWA==",
"version": "8.0.3-A.1",
"resolved": "https://registry.npmjs.org/@alfresco/adf-content-services/-/adf-content-services-8.0.3-A.1.tgz",
"integrity": "sha512-YyAr/Am6Q4ck0LtTze6qcZlI0oigEHECsmbckCab2j/LjIqXQN/SYRS49RzvsTXSdAAR1qROEQuo/HD1XARsVA==",
"license": "Apache-2.0",
"dependencies": {
"tslib": "^2.3.0"
@@ -158,11 +176,10 @@
}
},
"node_modules/@alfresco/adf-core": {
"version": "8.0.2",
"resolved": "https://registry.npmjs.org/@alfresco/adf-core/-/adf-core-8.0.2.tgz",
"integrity": "sha512-bah5AJ8A278WJUo8bZs6LUw3TXdxcqYD/iyxnDdCXbq2YCRv47Px6HDv70hpbwm2FgPSI7vw3z7RxlyCf4EHUQ==",
"version": "8.0.3-A.1",
"resolved": "https://registry.npmjs.org/@alfresco/adf-core/-/adf-core-8.0.3-A.1.tgz",
"integrity": "sha512-tKdTkjyYuItNxvKeaoUy95F9NIk3B/d/tRvVj7iAGOQcYCYLoiy0Mxkyq3/xQwzWAmNOc6yKjQr42at7OSiGuw==",
"license": "Apache-2.0",
"peer": true,
"dependencies": {
"angular-oauth2-oidc": "17.0.2",
"angular-oauth2-oidc-jwks": "17.0.2",
@@ -191,11 +208,10 @@
}
},
"node_modules/@alfresco/adf-extensions": {
"version": "8.0.2",
"resolved": "https://registry.npmjs.org/@alfresco/adf-extensions/-/adf-extensions-8.0.2.tgz",
"integrity": "sha512-DZe6u7ltkYrqZNTDba790A5R1nIf4WBfTCqzceW+3D4nt+bmyI9Ivp9CxDh0MYlTUQMj/Ez8fPTTFjRuh0kNyQ==",
"version": "8.0.3-A.1",
"resolved": "https://registry.npmjs.org/@alfresco/adf-extensions/-/adf-extensions-8.0.3-A.1.tgz",
"integrity": "sha512-z4htuTeUzmO8rzDJafmYQ2Eq6FmqBjEP4MzC2sEQxPadPw0IV5a9L7B+4lYKek3d28gGxkTnd9SHTZT3fNYPJg==",
"license": "Apache-2.0",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
@@ -206,17 +222,16 @@
}
},
"node_modules/@alfresco/eslint-plugin-eslint-angular": {
"version": "8.0.2",
"resolved": "https://registry.npmjs.org/@alfresco/eslint-plugin-eslint-angular/-/eslint-plugin-eslint-angular-8.0.2.tgz",
"integrity": "sha512-c1zMffaY+C6ble8+UgIaIVIB2e2li7kEMcczExqKd9miP9NyFbdtbWEMVzvUNN0/eIGsL2+YAJ3VlcWzlAQcZA==",
"version": "8.0.3-A.1",
"resolved": "https://registry.npmjs.org/@alfresco/eslint-plugin-eslint-angular/-/eslint-plugin-eslint-angular-8.0.3-A.1.tgz",
"integrity": "sha512-MLWK1UQVG68aueMws+S0kRvRf6vXkKm5ptbg3LoQrvNGkAITarN7uBB3d81tB3wmgyGWbD3JXUnz6XfCQ9hXhQ==",
"license": "Apache-2.0"
},
"node_modules/@alfresco/js-api": {
"version": "9.0.2",
"resolved": "https://registry.npmjs.org/@alfresco/js-api/-/js-api-9.0.2.tgz",
"integrity": "sha512-HbXnlSx5a7J8vwFvW6U+zCa2RvaYBL2iUG6kw0gKT10qkSpRXhKhp7J83wrPCHEkAqtsy6fQgZsqBKvAtJlPHQ==",
"version": "9.0.3-A.1",
"resolved": "https://registry.npmjs.org/@alfresco/js-api/-/js-api-9.0.3-A.1.tgz",
"integrity": "sha512-Ci8swn0BP9GMqGOyfrI6QlJoKqqyx8MEkh5PoFkEM7h58tq37000PbQkle5d2+GnzeCcR7WSYYb9eH/XWHsxRA==",
"license": "Apache-2.0",
"peer": true,
"dependencies": {
"event-emitter": "^0.3.5",
"superagent": "^9.0.1",
@@ -1028,7 +1043,6 @@
"integrity": "sha512-WeX/7HuNooJ4UhvVdremj6it0cX3nreG0/5r3QfrQd5Tz3sCHnh/lO5TW31gHtSqVgPjBGmzSzsyZ1Mi0lI7FA==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"ajv": "8.17.1",
"ajv-formats": "3.0.1",
@@ -1067,7 +1081,6 @@
"integrity": "sha512-kE9W1MqfasumAYVD8egMHefyxmA93KfBYrWqcepZaFPQTPwg1AGTlID7YLHToLQquw4Iqen6Xv8Bzfv05IZ+tw==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@angular-devkit/core": "19.2.7",
"jsonc-parser": "3.3.1",
@@ -1199,7 +1212,6 @@
"resolved": "https://registry.npmjs.org/@angular/animations/-/animations-19.2.6.tgz",
"integrity": "sha512-0Ei7pKXpq0eoijakRB+TQCh2EB02ReYUzRkhdw5kbQLOlTftBWWnMNn2qRfKU6cra+RyRXU8c34ZkEw6K7hZAw==",
"license": "MIT",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
@@ -1216,7 +1228,6 @@
"resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-19.2.9.tgz",
"integrity": "sha512-4If3BjWQPwW/xqRUCL7Mx0dHS0SuZY7Tq/Ocf7liwYTYCmSv8Ew7NqaiPA4RS3FnyUJcZW/UAd231uWI/ZHChg==",
"license": "MIT",
"peer": true,
"dependencies": {
"parse5": "^7.1.2",
"tslib": "^2.3.0"
@@ -1340,7 +1351,6 @@
"resolved": "https://registry.npmjs.org/@angular/common/-/common-19.2.6.tgz",
"integrity": "sha512-kqqjLwDUTpAv4m39AvlDFJhrxmBqblgzvXLm82F8UQ+505aleYpq/8P3tcfgJCRSCWZ1HXWki+JPHkdnHvhy0A==",
"license": "MIT",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
@@ -1357,7 +1367,6 @@
"resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-19.2.6.tgz",
"integrity": "sha512-VivxKYyr3UjYGVrRbWRhBbOaKknxtwE+DVm7t5OhiND51eXyW+ZytdXcUwoUNCE6JGxhfP8XPujwJ9zGFklUug==",
"license": "MIT",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
@@ -1371,7 +1380,6 @@
"integrity": "sha512-25ea4587AHlcXDjz7OJ0kGRcGLKZNM6NQbORkLgL0iqvvnrGrOrqqBnO8Fq1zwigb27RDGFtHzkOZs0wSpKHuA==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@babel/core": "7.26.9",
"@jridgewell/sourcemap-codec": "^1.4.14",
@@ -1448,7 +1456,6 @@
"resolved": "https://registry.npmjs.org/@angular/core/-/core-19.2.6.tgz",
"integrity": "sha512-tmtdONYMg3PvhuCUlTHX17P7MZTLrbDNWpiTyZNRGDbRzQqc5fxK8IrZJXm7TWxx8imDrBZn+wvwCYNDmMD81g==",
"license": "MIT",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
@@ -1465,7 +1472,6 @@
"resolved": "https://registry.npmjs.org/@angular/forms/-/forms-19.2.6.tgz",
"integrity": "sha512-cacGuc8MXe0Am3dEaDvGYrUwUTGBWecWIA1xpGXWj7mjwLf+FhLFIPc6LfLgiQyGGAYaRjyEaZ3HGTqefuI8lQ==",
"license": "MIT",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
@@ -1494,7 +1500,6 @@
"resolved": "https://registry.npmjs.org/@angular/material/-/material-19.2.9.tgz",
"integrity": "sha512-zkc49u6AIZ+aQe76MvOmoZ06c+/ZNpFeBS3dH65kCmnIpFhh8c+zLjxgwgBIlrvUmfjy6J1iJaG05hmkLzAggg==",
"license": "MIT",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
@@ -1512,7 +1517,6 @@
"resolved": "https://registry.npmjs.org/@angular/material-date-fns-adapter/-/material-date-fns-adapter-19.2.9.tgz",
"integrity": "sha512-nIuP4HfC/eiJVeQ/Jzrk8YHREtcXTsYZON4YpwN5Pidr/qkR76EAiEi0VHTSMYPuaN4Y2X47/Ixs0TNELFOJ5A==",
"license": "MIT",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
@@ -1527,7 +1531,6 @@
"resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-19.2.6.tgz",
"integrity": "sha512-FfI642EbUU4RPu+zg2kPvlLCREhwzStgXFr7K4hfwCP+K9FPtgkY1Luw01mhqwySHfzj0oU0C1njZIBX66JBmw==",
"license": "MIT",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
@@ -1550,7 +1553,6 @@
"resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-19.2.6.tgz",
"integrity": "sha512-6Jd0SPMkAauAKz1KlVFfDX5wDXGo0K2aK/3j+oUQ/dKvPBFTXIfyJPjPKOSIsuzm96cyo8GECP6SGYlGdaOEJA==",
"license": "MIT",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
@@ -1569,7 +1571,6 @@
"resolved": "https://registry.npmjs.org/@angular/router/-/router-19.2.6.tgz",
"integrity": "sha512-8GqQinEd2Merh1RrUwmPW0EI/1CSwTL6F1xo4tAidqGBIIS22XyjtRb4mGkhhG2a8e7lEnrbl72RmuTjgThmeA==",
"license": "MIT",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
@@ -1636,7 +1637,6 @@
"integrity": "sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@ampproject/remapping": "^2.2.0",
"@babel/code-frame": "^7.26.2",
@@ -3655,8 +3655,7 @@
"resolved": "https://registry.npmjs.org/@cspell/dict-css/-/dict-css-4.0.18.tgz",
"integrity": "sha512-EF77RqROHL+4LhMGW5NTeKqfUd/e4OOv6EDFQ/UQQiFyWuqkEKyEz0NDILxOFxWUEVdjT2GQ2cC7t12B6pESwg==",
"dev": true,
"license": "MIT",
"peer": true
"license": "MIT"
},
"node_modules/@cspell/dict-dart": {
"version": "2.3.1",
@@ -3796,16 +3795,14 @@
"resolved": "https://registry.npmjs.org/@cspell/dict-html/-/dict-html-4.0.12.tgz",
"integrity": "sha512-JFffQ1dDVEyJq6tCDWv0r/RqkdSnV43P2F/3jJ9rwLgdsOIXwQbXrz6QDlvQLVvNSnORH9KjDtenFTGDyzfCaA==",
"dev": true,
"license": "MIT",
"peer": true
"license": "MIT"
},
"node_modules/@cspell/dict-html-symbol-entities": {
"version": "4.0.4",
"resolved": "https://registry.npmjs.org/@cspell/dict-html-symbol-entities/-/dict-html-symbol-entities-4.0.4.tgz",
"integrity": "sha512-afea+0rGPDeOV9gdO06UW183Qg6wRhWVkgCFwiO3bDupAoyXRuvupbb5nUyqSTsLXIKL8u8uXQlJ9pkz07oVXw==",
"dev": true,
"license": "MIT",
"peer": true
"license": "MIT"
},
"node_modules/@cspell/dict-java": {
"version": "5.0.12",
@@ -4003,8 +4000,7 @@
"resolved": "https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-3.2.3.tgz",
"integrity": "sha512-zXh1wYsNljQZfWWdSPYwQhpwiuW0KPW1dSd8idjMRvSD0aSvWWHoWlrMsmZeRl4qM4QCEAjua8+cjflm41cQBg==",
"dev": true,
"license": "MIT",
"peer": true
"license": "MIT"
},
"node_modules/@cspell/dict-vue": {
"version": "3.0.5",
@@ -4116,7 +4112,6 @@
}
],
"license": "MIT",
"peer": true,
"engines": {
"node": "^14 || ^16 || >=18"
},
@@ -4140,7 +4135,6 @@
}
],
"license": "MIT",
"peer": true,
"engines": {
"node": "^14 || ^16 || >=18"
}
@@ -5115,7 +5109,6 @@
"integrity": "sha512-G1ytyOoHh5BphmEBxSwALin3n1KGNYB6yImbICcRQdzXfOGbuJ9Jske/Of5Sebk339NSGGNfUshnzK8YWkTPsQ==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@inquirer/checkbox": "^4.1.2",
"@inquirer/confirm": "^5.1.6",
@@ -5707,7 +5700,6 @@
"resolved": "https://registry.npmjs.org/@mat-datetimepicker/core/-/core-15.0.2.tgz",
"integrity": "sha512-2vyKub5uCSAWoKC7UlUbNFOwHrHu9gdaK1xluMiimj8GibkxuP0uh2AP1tRsYz2514CAFvsSkD39X6qy0kz7Iw==",
"license": "MIT",
"peer": true,
"dependencies": {
"tslib": "~2.8.1"
},
@@ -6497,7 +6489,6 @@
"integrity": "sha512-c9siKVjcgT2gtDdOTqEr+GaP2X/PWAS0OV424ljKLstFL1lcS/BIsxWFDmxPPl5hDByAH+1q4YhC1LWY4LNDQw==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@module-federation/bridge-react-webpack-plugin": "0.9.1",
"@module-federation/data-prefetch": "0.9.1",
@@ -6809,7 +6800,6 @@
"integrity": "sha512-fSga9o4t1UfXNV/Kh6qFvRyZpPp3EHSPRISNeyT8ZoTpzDNiYzhtw0BPUSSD8m6C6XQh2s/11rI4g80UY+d+hA==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@module-federation/runtime": "0.18.0",
"@module-federation/webpack-bundler-runtime": "0.18.0"
@@ -7012,7 +7002,6 @@
"integrity": "sha512-JQZ//ab+lEXoU2DHAH+JtYASGzxEjXB0s4rU+6VJXc8c+oUPxH3kWIwzjdncg2mcWBmC1140DCk+K+kDfOZ5CQ==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@module-federation/runtime": "0.9.1",
"@module-federation/webpack-bundler-runtime": "0.9.1"
@@ -7700,7 +7689,6 @@
"resolved": "https://registry.npmjs.org/@ngrx/store/-/store-19.2.1.tgz",
"integrity": "sha512-c5vQId7YoAhM0y4HASrz9mtLju+28vJspd6OBlhPbBlSae8GN8m9S/oav+8LaSY19yh95cZ5B/nMcLNNWgL/jA==",
"license": "MIT",
"peer": true,
"dependencies": {
"tslib": "^2.0.0"
},
@@ -7745,7 +7733,6 @@
"resolved": "https://registry.npmjs.org/@ngx-translate/core/-/core-16.0.4.tgz",
"integrity": "sha512-s8llTL2SJvROhqttxvEs7Cg+6qSf4kvZPFYO+cTOY1d8DWTjlutRkWAleZcPPoeX927Dm7ALfL07G7oYDJ7z6w==",
"license": "MIT",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
@@ -9941,7 +9928,6 @@
"integrity": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==",
"dev": true,
"license": "Apache-2.0",
"peer": true,
"dependencies": {
"copy-anything": "^2.0.1",
"parse-node-version": "^1.0.1",
@@ -11146,7 +11132,6 @@
"integrity": "sha512-JtKnL6p7Kc/YgWQJF3Woo4OccbgKGyT/4187W4dyex8BMkdQcbqCNIdi6dFk02hwQzxpOOxRSBI4hlGRbz7oYQ==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@module-federation/runtime-tools": "0.17.1",
"@rspack/binding": "1.4.11",
@@ -11388,7 +11373,6 @@
"integrity": "sha512-q1xbQYLG/JR0P0/jma3sUUWubw/6859WC5Y/+l2xGEvIqtoMKBYBzN4Nrud8rdLVEFfIDNEIbKQ4Rwr/JemO3g==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@angular-devkit/core": "19.2.7",
"@angular-devkit/schematics": "19.2.7",
@@ -11532,6 +11516,7 @@
"resolved": "https://registry.npmjs.org/@ts-morph/common/-/common-0.28.1.tgz",
"integrity": "sha512-W74iWf7ILp1ZKNYXY5qbddNaml7e9Sedv5lvU1V8lftlitkc9Pq1A+jlH23ltDgWYeZFFEqGCD1Ies9hqu3O+g==",
"license": "MIT",
"peer": true,
"dependencies": {
"minimatch": "^10.0.1",
"path-browserify": "^1.0.1",
@@ -11981,7 +11966,6 @@
"integrity": "sha512-Crp6WY9aTYP3qPi2wGDo9iUe/rceX01UMhnF1jmwDcKCFM6cx7YhGP/Mpr3y9AASpfHixIG0E6azCcL5OcDHsQ==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@types/body-parser": "*",
"@types/express-serve-static-core": "^4.17.33",
@@ -12103,7 +12087,6 @@
"integrity": "sha512-oZFKlC8l5YtzGQNT4zC2PiSSKzQVZ8bAwwd+EYdPLtyk0nSEq6O16SkK+rkkT2eflDAbormJgEF3QnH3oDrTSw==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"undici-types": "~5.26.4"
}
@@ -12512,7 +12495,6 @@
"integrity": "sha512-4Z+L8I2OqhZV8qA132M4wNL30ypZGYOQVBfMgxDH/K5UX0PNqTu1c6za9ST5r9+tavvHiTWmBnKzpCJ/GlVFtg==",
"dev": true,
"license": "BSD-2-Clause",
"peer": true,
"dependencies": {
"@typescript-eslint/scope-manager": "7.18.0",
"@typescript-eslint/types": "7.18.0",
@@ -12751,7 +12733,6 @@
"integrity": "sha512-ArDdaOllnCj3yn/lzKn9s0pBQYmmyme/v1HbGIGB0GB/knFI3fWMHloC+oYTJW46tVbYnGKTMDK4ah1sC2v0Kg==",
"dev": true,
"license": "MIT",
"peer": true,
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
@@ -12835,7 +12816,6 @@
"integrity": "sha512-4GVSvNA0Vx1Ktwvf4sFE+exxJ3QGUorQG1/A5mRfRNZtkBT2xrA/BCO2H0eALx/PnvCS6/vmYwRdDA41EoffkQ==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@eslint-community/eslint-utils": "^4.7.0",
"@typescript-eslint/scope-manager": "8.39.0",
@@ -13256,7 +13236,6 @@
"integrity": "sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"argparse": "^2.0.1"
},
@@ -13290,7 +13269,6 @@
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
"integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
"license": "MIT",
"peer": true,
"bin": {
"acorn": "bin/acorn"
},
@@ -13386,7 +13364,6 @@
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"fast-deep-equal": "^3.1.3",
"fast-uri": "^3.0.1",
@@ -13853,7 +13830,6 @@
"integrity": "sha512-1Lx3WLFQWm3ooKDYZD1eXmoGO9fxYQjrycfHFC8P0sCfQVXyROp0p9PFWBehewBOdCwHc+f/b8I0fMto5eSfwA==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"follow-redirects": "^1.15.6",
"form-data": "^4.0.4",
@@ -14241,7 +14217,6 @@
}
],
"license": "MIT",
"peer": true,
"dependencies": {
"caniuse-lite": "^1.0.30001733",
"electron-to-chromium": "^1.5.199",
@@ -14669,7 +14644,6 @@
"resolved": "https://registry.npmjs.org/chevrotain/-/chevrotain-11.0.3.tgz",
"integrity": "sha512-ci2iJH6LeIkvP9eJW6gpueU8cnZhv85ELY8w8WiFtNjMHA5ad6pQLaJo9mEly/9qUyCpvqX8/POVUTf18/HFdw==",
"license": "Apache-2.0",
"peer": true,
"dependencies": {
"@chevrotain/cst-dts-gen": "11.0.3",
"@chevrotain/gast": "11.0.3",
@@ -14697,7 +14671,6 @@
"integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"readdirp": "^4.0.1"
},
@@ -14970,7 +14943,8 @@
"version": "13.0.3",
"resolved": "https://registry.npmjs.org/code-block-writer/-/code-block-writer-13.0.3.tgz",
"integrity": "sha512-Oofo0pq3IKnsFtuHqSF7TqBfr71aeyZDVJ0HpmqB7FBM2qEigL0iPONSCZSO9pE9dZTAxANe5XHG9Uy0YMv8cg==",
"license": "MIT"
"license": "MIT",
"peer": true
},
"node_modules/color-convert": {
"version": "2.0.1",
@@ -15995,7 +15969,6 @@
"resolved": "https://registry.npmjs.org/cytoscape/-/cytoscape-3.33.0.tgz",
"integrity": "sha512-2d2EwwhaxLWC8ahkH1PpQwCyu6EY3xDRdcEJXrLTb4fOUtVc+YWQalHU67rFS1a6ngj1fgv9dQLtJxP/KAFZEw==",
"license": "MIT",
"peer": true,
"engines": {
"node": ">=0.10"
}
@@ -16418,7 +16391,6 @@
"resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz",
"integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==",
"license": "ISC",
"peer": true,
"engines": {
"node": ">=12"
}
@@ -16572,7 +16544,6 @@
"resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz",
"integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==",
"license": "MIT",
"peer": true,
"dependencies": {
"@babel/runtime": "^7.21.0"
},
@@ -17677,7 +17648,6 @@
"deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@eslint-community/eslint-utils": "^4.2.0",
"@eslint-community/regexpp": "^4.6.1",
@@ -19108,7 +19078,6 @@
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
@@ -21393,8 +21362,7 @@
"resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-4.6.1.tgz",
"integrity": "sha512-VYz/BjjmC3klLJlLwA4Kw8ytk0zDSmbbDLNs794VnWmkcCB7I9aAL/D48VNQtmITyPvea2C3jdUMfc3kAoy0PQ==",
"dev": true,
"license": "MIT",
"peer": true
"license": "MIT"
},
"node_modules/jasmine-spec-reporter": {
"version": "5.0.2",
@@ -21551,7 +21519,6 @@
"integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==",
"dev": true,
"license": "MIT",
"peer": true,
"bin": {
"jiti": "bin/jiti.js"
}
@@ -21714,7 +21681,6 @@
"integrity": "sha512-LrtUxbdvt1gOpo3gxG+VAJlJAEMhbWlM4YrFQgql98FwF7+K8K12LYO4hnDdUkNjeztYrOXEMqgTajSWgmtI/w==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@colors/colors": "1.5.0",
"body-parser": "^1.19.0",
@@ -21835,7 +21801,6 @@
"integrity": "sha512-i/zQLFrfEpRyQoJF9fsCdTMOF5c2dK7C7OmsuKg2D0YSsuZSfQDiLuaiktbuio6F2wiCsZSnSnieIQ0ant/uzQ==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"jasmine-core": "^4.1.0"
},
@@ -22441,7 +22406,6 @@
"integrity": "sha512-tkuLHQlvWUTeQ3doAqnHbNn8T6WX1KA8yvbKG9x4VtKtIjHsVKQZCH11zRgAfbDAXC2UNIg/K9BYAAcEzUIrNg==",
"dev": true,
"license": "Apache-2.0",
"peer": true,
"dependencies": {
"copy-anything": "^2.0.1",
"parse-node-version": "^1.0.1",
@@ -23867,6 +23831,7 @@
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.3.tgz",
"integrity": "sha512-Rwi3pnapEqirPSbWbrZaa6N3nmqq4Xer/2XooiOKyV3q12ML06f7MOuc5DVH8ONZIFhwIYQ3yzPH4nt7iWHaTg==",
"license": "BlueOak-1.0.0",
"peer": true,
"dependencies": {
"brace-expansion": "^5.0.2"
},
@@ -23894,6 +23859,7 @@
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
"integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
"license": "MIT",
"peer": true,
"engines": {
"node": "18 || 20 || >=22"
}
@@ -23903,6 +23869,7 @@
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.3.tgz",
"integrity": "sha512-fy6KJm2RawA5RcHkLa1z/ScpBeA762UF9KmZQxwIbDtRJrgLzM10depAiEQ+CXYcoiqW1/m96OAAoke2nE9EeA==",
"license": "MIT",
"peer": true,
"dependencies": {
"balanced-match": "^4.0.2"
},
@@ -24290,7 +24257,6 @@
"integrity": "sha512-dFuwFsDJMBSd1YtmLLcX5bNNUCQUlRqgf34aXA+79PmkOP+0eF8GP2949wq3+jMjmFTNm80Oo8IUYiSLwklKCQ==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/wasm-node": "^4.24.0",
@@ -24954,7 +24920,6 @@
"dev": true,
"hasInstallScript": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@napi-rs/wasm-runtime": "0.2.4",
"@yarnpkg/lockfile": "^1.1.0",
@@ -25958,7 +25923,8 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz",
"integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==",
"license": "MIT"
"license": "MIT",
"peer": true
},
"node_modules/path-data-parser": {
"version": "0.1.0",
@@ -26055,7 +26021,6 @@
"resolved": "https://registry.npmjs.org/pdfjs-dist/-/pdfjs-dist-5.3.31.tgz",
"integrity": "sha512-EhPdIjNX0fcdwYQO+e3BAAJPXt+XI29TZWC7COhIXs/K0JHcUt1Gdz1ITpebTwVMFiLsukdUZ3u0oTO7jij+VA==",
"license": "Apache-2.0",
"peer": true,
"engines": {
"node": ">=20.16.0 || >=22.3.0"
},
@@ -26347,7 +26312,6 @@
}
],
"license": "MIT",
"peer": true,
"dependencies": {
"nanoid": "^3.3.8",
"picocolors": "^1.1.1",
@@ -27000,7 +26964,6 @@
"integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"cssesc": "^3.0.0",
"util-deprecate": "^1.0.2"
@@ -27065,7 +27028,6 @@
"integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==",
"dev": true,
"license": "MIT",
"peer": true,
"bin": {
"prettier": "bin/prettier.cjs"
},
@@ -28388,7 +28350,6 @@
"integrity": "sha512-3ToiC1xZ1Y8aU7+CkgCI/tqyuPXEmYGJXO7H4uqp0xkLXUqp88rQQ4j1HmP37xSJLbCJPaIiv+cT1y+grssrww==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"chokidar": "^4.0.0",
"immutable": "^5.0.2",
@@ -28410,7 +28371,6 @@
"integrity": "sha512-XP1EltyLLfuU5FsGVjSz8PcT925oA3rDnJTWOEBHR42k62ZEbKTcZ4gVlFwKi0Ggzi5E8v1K2BplD8ELHwusYg==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@bufbuild/protobuf": "^2.5.0",
"buffer-builder": "^0.2.0",
@@ -28867,7 +28827,8 @@
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.26.0.tgz",
"integrity": "sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==",
"dev": true,
"license": "MIT"
"license": "MIT",
"peer": true
},
"node_modules/schema-utils": {
"version": "4.3.2",
@@ -30221,7 +30182,6 @@
"integrity": "sha512-78O4c6IswZ9TzpcIiQJIN49K3qNoXTM8zEJzhaTE/xRTCZswaovSEVIa/uwbOltZrk16X4jAxjaOhzz/hTm1Kw==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@csstools/css-parser-algorithms": "^2.3.1",
"@csstools/css-tokenizer": "^2.2.0",
@@ -30504,7 +30464,6 @@
"integrity": "sha512-ZIdT8eUv8tegmqy1tTIdJv9We2DumkNZFdCF5mz/Kpq3OcTaxSuCAYZge6HKK2CmNC02G1eJig2RV7XTw5hQrA==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@adobe/css-tools": "~4.3.3",
"debug": "^4.3.2",
@@ -30959,7 +30918,6 @@
"integrity": "sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==",
"dev": true,
"license": "BSD-2-Clause",
"peer": true,
"dependencies": {
"@jridgewell/source-map": "^0.3.3",
"acorn": "^8.8.2",
@@ -31526,8 +31484,7 @@
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
"license": "0BSD",
"peer": true
"license": "0BSD"
},
"node_modules/tsscmp": {
"version": "1.0.6",
@@ -31733,7 +31690,6 @@
"integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==",
"dev": true,
"license": "Apache-2.0",
"peer": true,
"bin": {
"tsc": "bin/tsc",
"tsserver": "bin/tsserver"
@@ -32092,6 +32048,7 @@
"integrity": "sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"esbuild": "^0.25.0",
"fdir": "^6.4.4",
@@ -32181,6 +32138,7 @@
}
],
"license": "MIT",
"peer": true,
"dependencies": {
"nanoid": "^3.3.11",
"picocolors": "^1.1.1",
@@ -32305,7 +32263,6 @@
"integrity": "sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@types/eslint-scope": "^3.7.7",
"@types/estree": "^1.0.6",
@@ -32403,7 +32360,6 @@
"integrity": "sha512-QcQ72gh8a+7JO63TAx/6XZf/CWhgMzu5m0QirvPfGvptOusAxG12w2+aua1Jkjr7hzaWDnJ2n6JFeexMHI+Zjg==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
"@types/bonjour": "^3.5.13",
"@types/connect-history-api-fallback": "^1.5.4",
@@ -32951,7 +32907,6 @@
"integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==",
"dev": true,
"license": "MIT",
"peer": true,
"engines": {
"node": ">=10.0.0"
},
+7 -7
View File
@@ -1,6 +1,6 @@
{
"name": "alfresco-content-app",
"version": "7.0.2",
"version": "7.0.3-A.1",
"license": "LGPL-3.0",
"scripts": {
"start": "nx serve content-ce",
@@ -31,11 +31,11 @@
},
"private": true,
"dependencies": {
"@alfresco/adf-content-services": "8.0.2",
"@alfresco/adf-core": "8.0.2",
"@alfresco/adf-extensions": "8.0.2",
"@alfresco/eslint-plugin-eslint-angular": "8.0.2",
"@alfresco/js-api": "9.0.2",
"@alfresco/adf-content-services": "8.0.3-A.1",
"@alfresco/adf-core": "8.0.3-A.1",
"@alfresco/adf-extensions": "8.0.3-A.1",
"@alfresco/eslint-plugin-eslint-angular": "8.0.3-A.1",
"@alfresco/js-api": "9.0.3-A.1",
"@angular/animations": "19.2.6",
"@angular/cdk": "19.2.9",
"@angular/common": "19.2.6",
@@ -68,7 +68,7 @@
"zone.js": "0.15.0"
},
"devDependencies": {
"@alfresco/adf-cli": "8.0.2",
"@alfresco/adf-cli": "8.0.3-A.1",
"@angular-devkit/build-angular": "19.2.15",
"@angular-devkit/core": "19.2.7",
"@angular-devkit/schematics": "19.2.7",
+4 -4
View File
@@ -5,10 +5,10 @@
"peerDependencies": {
"@angular/common": ">=15.2",
"@angular/core": ">=15.2",
"@alfresco/adf-core": ">=8.0.0",
"@alfresco/adf-content-services": ">=8.0.0",
"@alfresco/adf-extensions": ">=8.0.0",
"@alfresco/js-api": ">=9.0.0",
"@alfresco/adf-core": ">=8.0.3-0",
"@alfresco/adf-content-services": ">=8.0.3-0",
"@alfresco/adf-extensions": ">=8.0.3-0",
"@alfresco/js-api": ">=9.0.3-0",
"@angular/animations": ">=15.2",
"@angular/cdk": ">=15.2",
"@angular/forms": ">=15.2",
+5 -5
View File
@@ -7,11 +7,11 @@
"access": "public"
},
"peerDependencies": {
"@alfresco/adf-core": ">=8.0.0",
"@alfresco/adf-content-services": ">=8.0.0",
"@alfresco/adf-extensions": ">=8.0.0",
"@alfresco/eslint-plugin-eslint-angular": ">=8.0.0",
"@alfresco/js-api": ">=9.0.0",
"@alfresco/adf-core": ">=8.0.3-0",
"@alfresco/adf-content-services": ">=8.0.3-0",
"@alfresco/adf-extensions": ">=8.0.3-0",
"@alfresco/eslint-plugin-eslint-angular": ">=8.0.3-0",
"@alfresco/js-api": ">=9.0.3-0",
"tslib": ">=2.0.0"
},
"repository": {
+4 -4
View File
@@ -4,10 +4,10 @@
"license": "LGPL-3.0",
"scripts": {},
"peerDependencies": {
"@alfresco/adf-content-services": ">=8.0.0",
"@alfresco/adf-core": ">=8.0.0",
"@alfresco/adf-extensions": ">=8.0.0",
"@alfresco/js-api": ">=9.0.0",
"@alfresco/adf-content-services": ">=8.0.3-0",
"@alfresco/adf-core": ">=8.0.3-0",
"@alfresco/adf-extensions": ">=8.0.3-0",
"@alfresco/js-api": ">=9.0.3-0",
"@angular/animations": ">=15.2",
"@angular/common": ">=15.2",
"@angular/compiler": ">=15.2",