diff --git a/.changeset/2024-07-14-update-icons.md b/.changeset/2024-07-14-update-icons.md
new file mode 100644
index 0000000000..0390222590
--- /dev/null
+++ b/.changeset/2024-07-14-update-icons.md
@@ -0,0 +1,6 @@
+---
+'@swisspost/design-system-icons': minor
+---
+
+Added icons number 2592, 2593, 2594 and 2595.
+
diff --git a/.github/actions/artifact-download/action.yaml b/.github/actions/artifact-download/action.yaml
index 85db6754bf..d591cbfd70 100644
--- a/.github/actions/artifact-download/action.yaml
+++ b/.github/actions/artifact-download/action.yaml
@@ -32,7 +32,7 @@ runs:
using: composite
steps:
- name: Download artifact
- uses: dawidd6/action-download-artifact@v3
+ uses: dawidd6/action-download-artifact@v6
with:
name: ${{ inputs.name }}
run_id: ${{ github.event.workflow_run.id }}
diff --git a/.github/workflows/build-tokens.yaml b/.github/workflows/build-tokens.yaml
new file mode 100644
index 0000000000..d463475e55
--- /dev/null
+++ b/.github/workflows/build-tokens.yaml
@@ -0,0 +1,71 @@
+name: Build Tokens
+on:
+ pull_request:
+ types: [opened, synchronize, edited, reopened]
+ paths:
+ - 'packages/tokens/**'
+
+jobs:
+ build:
+ name: Build Tokens
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+
+ - name: Setup
+ uses: ./.github/actions/setup-pnpm
+
+ - name: Install dependencies
+ run: pnpm --filter design-system-tokens... install
+
+ - name: Build tokens & dependencies
+ run: pnpm --filter design-system-tokens... build
+
+ - name: Create Summary
+ id: summary
+ uses: actions/github-script@v7
+ with:
+ script: |
+ const fs = require('fs')
+ const path = require('path')
+
+ const inputFileNames = fs.readdirSync('packages/tokens/tokensstudio-generated')
+ const inputFiles = inputFileNames.map(fileName => ({
+ type: path.extname(fileName),
+ name: fileName,
+ content: fs.readFileSync(`packages/tokens/tokensstudio-generated/${fileName}`, 'utf8')
+ }))
+
+ const outputOrder = [
+ 'index.scss',
+ 'core.scss',
+ 'mode.scss',
+ 'device.scss',
+ 'channel.scss',
+ 'theme.scss',
+ 'components.scss',
+ ]
+ const outputFileNames = fs.readdirSync('packages/tokens/dist')
+ const outputFiles = outputFileNames.map(fileName => ({
+ type: path.extname(fileName),
+ name: fileName,
+ content: fs.readFileSync(`packages/tokens/dist/${fileName}`, 'utf8')
+ })).sort((a, b) => (outputOrder.includes(a.name) ? outputOrder.indexOf(a.name) : 1000) - (outputOrder.includes(b.name) ? outputOrder.indexOf(b.name) : 1000))
+
+ return `# Token Build
+ ## Input
+ ${inputFiles.map(({ type, name, content }) => `
+ ${name}
+ ${content}
+ `).join('\n')}
+
+ ## Output
+ ${outputFiles.map(({ type, name, content }) => `
+ ${name}
+ ${content}
+ `).join('\n')}
+ `
+
+ - name: Output Summary
+ run: echo -e ${{ steps.summary.outputs.result }} >> $GITHUB_STEP_SUMMARY
diff --git a/packages/components-react/package.json b/packages/components-react/package.json
index 0f80558437..de249eb752 100644
--- a/packages/components-react/package.json
+++ b/packages/components-react/package.json
@@ -36,7 +36,7 @@
"eslint-plugin-react": "7.34.3",
"react": "18.3.1",
"react-dom": "18.3.1",
- "rimraf": "5.0.7",
+ "rimraf": "6.0.1",
"typescript": "*"
},
"peerDependencies": {
diff --git a/packages/components/package.json b/packages/components/package.json
index 14f40f0894..35941646aa 100644
--- a/packages/components/package.json
+++ b/packages/components/package.json
@@ -61,7 +61,7 @@
"cypress-storybook": "1.0.0",
"eslint": "8.57.0",
"eslint-plugin-react": "7.34.3",
- "rimraf": "5.0.7",
+ "rimraf": "6.0.1",
"rollup-plugin-postcss": "4.0.2",
"sass": "1.77.6",
"ts-jest": "29.1.5",
diff --git a/packages/demo/package.json b/packages/demo/package.json
index 817dfa7e0b..c163259da8 100644
--- a/packages/demo/package.json
+++ b/packages/demo/package.json
@@ -64,7 +64,7 @@
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"raw-loader": "4.0.2",
- "rimraf": "5.0.7",
+ "rimraf": "6.0.1",
"sass": "1.77.6",
"sockjs": "0.3.24",
"ts-node": "10.9.2",
diff --git a/packages/documentation/package.json b/packages/documentation/package.json
index 7ae00fa0c1..8203dfcea3 100644
--- a/packages/documentation/package.json
+++ b/packages/documentation/package.json
@@ -76,7 +76,7 @@
"react-syntax-highlighter": "15.5.0",
"rehype-autolink-headings": "^7.1.0",
"remark-autolink-headings": "7.0.1",
- "rimraf": "5.0.7",
+ "rimraf": "6.0.1",
"sass": "1.77.6",
"storybook": "8.1.11",
"typescript": "5.3.3"
diff --git a/packages/icons/public/post-icons/2592.svg b/packages/icons/public/post-icons/2592.svg
new file mode 100644
index 0000000000..b0073137b1
--- /dev/null
+++ b/packages/icons/public/post-icons/2592.svg
@@ -0,0 +1,3 @@
+
diff --git a/packages/icons/public/post-icons/2593.svg b/packages/icons/public/post-icons/2593.svg
new file mode 100644
index 0000000000..e4024a4820
--- /dev/null
+++ b/packages/icons/public/post-icons/2593.svg
@@ -0,0 +1,3 @@
+
diff --git a/packages/icons/public/post-icons/2594.svg b/packages/icons/public/post-icons/2594.svg
new file mode 100644
index 0000000000..dcadebf376
--- /dev/null
+++ b/packages/icons/public/post-icons/2594.svg
@@ -0,0 +1,3 @@
+
diff --git a/packages/icons/public/post-icons/2595.svg b/packages/icons/public/post-icons/2595.svg
new file mode 100644
index 0000000000..e3eb8b4619
--- /dev/null
+++ b/packages/icons/public/post-icons/2595.svg
@@ -0,0 +1,3 @@
+
diff --git a/packages/icons/public/report.json b/packages/icons/public/report.json
index 5990973dd7..8ea5376e21 100644
--- a/packages/icons/public/report.json
+++ b/packages/icons/public/report.json
@@ -326,7 +326,8 @@
"ricevere",
"recevoir",
"receive",
- "empfangen"
+ "empfangen",
+ "My Post 24"
],
"year": [
"2017"
@@ -344,7 +345,7 @@
}
},
"createdAt": "2017-11-10T09:50:05.000Z",
- "modifiedAt": "2024-03-13T08:09:40.000Z"
+ "modifiedAt": "2024-07-04T07:22:38.000Z"
},
{
"uuid": "869435e0-c5fc-11e7-a943-005056a94f4a",
@@ -1754,7 +1755,7 @@
}
},
"createdAt": "2017-11-10T09:50:05.000Z",
- "modifiedAt": "2024-03-13T08:10:01.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "87207050-c5fc-11e7-a943-005056a94f4a",
@@ -1984,7 +1985,7 @@
}
},
"createdAt": "2017-11-10T09:50:05.000Z",
- "modifiedAt": "2024-03-13T08:10:04.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "87370590-c5fc-11e7-a943-005056a94f4a",
@@ -2197,7 +2198,7 @@
}
},
"createdAt": "2017-11-10T09:50:05.000Z",
- "modifiedAt": "2024-03-13T08:10:07.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "874efa60-c5fc-11e7-a943-005056a94f4a",
@@ -2254,7 +2255,7 @@
}
},
"createdAt": "2017-11-10T09:50:05.000Z",
- "modifiedAt": "2024-03-13T08:10:08.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "8753b550-c5fc-11e7-a943-005056a94f4a",
@@ -2317,7 +2318,7 @@
}
},
"createdAt": "2017-11-10T09:50:05.000Z",
- "modifiedAt": "2024-03-13T08:10:09.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "873cd1f0-c5fc-11e7-a943-005056a94f4a",
@@ -2405,7 +2406,7 @@
}
},
"createdAt": "2018-02-22T12:51:46.000Z",
- "modifiedAt": "2024-03-13T08:10:44.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "36d4c3f0-17d0-11e8-b180-005056a94f4a",
@@ -2454,7 +2455,7 @@
}
},
"createdAt": "2018-02-22T12:59:27.000Z",
- "modifiedAt": "2024-03-13T08:10:45.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "04ea2640-3e50-11e8-b180-005056a94f4a",
@@ -6802,7 +6803,7 @@
}
},
"createdAt": "2017-11-10T10:01:37.000Z",
- "modifiedAt": "2024-03-13T08:10:43.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "23bc7d90-c5fe-11e7-a943-005056a94f4a",
@@ -6847,7 +6848,7 @@
}
},
"createdAt": "2017-11-10T10:01:37.000Z",
- "modifiedAt": "2024-03-12T14:47:39.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "23c1fbd0-c5fe-11e7-a943-005056a94f4a",
@@ -7931,7 +7932,7 @@
}
},
"createdAt": "2018-10-22T13:13:23.000Z",
- "modifiedAt": "2024-03-12T14:47:41.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "8d6cdd60-3390-11e9-b9ae-005056873709",
@@ -8806,7 +8807,10 @@
"meta": {
"downloadLink": "https://cdn.post.ch/hcms/v2.0/entity/asset/534673/storage/NTM0Njc1LzAvbWFzdGVy",
"keywords": [
- ""
+ "Brief und Kleinsendungen",
+ "Letters and small consignments",
+ "Lettre et petits envois",
+ "Lettera e invii di piccole dimensioni"
],
"year": [
"2020"
@@ -8824,7 +8828,7 @@
}
},
"createdAt": "2020-11-18T13:46:33.000Z",
- "modifiedAt": "2024-03-12T14:47:40.000Z"
+ "modifiedAt": "2024-07-11T07:18:33.000Z"
},
{
"uuid": "e1252530-29a6-11eb-a8df-005056873709",
@@ -8870,7 +8874,7 @@
}
},
"createdAt": "2020-11-18T14:03:48.000Z",
- "modifiedAt": "2024-05-27T10:38:13.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "dc40ac90-2a48-11eb-a8df-005056873709",
@@ -9748,7 +9752,14 @@
"meta": {
"downloadLink": "https://cdn.post.ch/hcms/v2.0/entity/asset/535226/storage/NTM1MjI4LzAvbWFzdGVy",
"keywords": [
- ""
+ "Briefeinwurf",
+ "letter box",
+ "Buca delle lettere",
+ "Boîte aux lettres",
+ "Briefe in Briefeinwurf werfen",
+ "Posting letters in letter boxes",
+ "Inserire le lettere nella buca delle lettere",
+ "Déposer les lettres dans la boîte aux lettres"
],
"year": [
"2020"
@@ -9766,7 +9777,7 @@
}
},
"createdAt": "2020-11-26T12:15:02.000Z",
- "modifiedAt": "2024-05-27T10:38:13.000Z"
+ "modifiedAt": "2024-07-11T07:19:46.000Z"
},
{
"uuid": "a702fcb0-2fe1-11eb-a8df-005056873709",
@@ -11292,6 +11303,50 @@
"createdAt": "2020-12-18T07:32:42.000Z",
"modifiedAt": "2024-03-12T14:48:20.000Z"
},
+ {
+ "uuid": "88307300-5bef-11eb-9f99-005056873709",
+ "id": 539481,
+ "type": "picture.pictogram.",
+ "typeFilter": "pictograms",
+ "meta": {
+ "downloadLink": "https://cdn.post.ch/hcms/v2.0/entity/asset/539481/storage/NTM5NDg5LzAvbWFzdGVy",
+ "keywords": [
+ "LAD",
+ "Leistung am Domizil",
+ "Prestazione a domicilio",
+ "Service at home",
+ "Prestation à domicile",
+ "Wegweiser",
+ "Sign",
+ "Segno",
+ "Signer",
+ "Sinnbild",
+ "Symbol",
+ "Simbolo",
+ "Symbole",
+ "Strassenschild",
+ "Road Sign",
+ "Segnale stradale",
+ "Panneau De Signalisation"
+ ],
+ "year": [
+ "2021"
+ ]
+ },
+ "file": {
+ "mime": "image/svg+xml",
+ "name": "2205.svg",
+ "basename": "2205",
+ "ext": ".svg",
+ "size": {
+ "width": 0,
+ "dpi": 72,
+ "height": 0
+ }
+ },
+ "createdAt": "2021-01-21T13:49:50.000Z",
+ "modifiedAt": "2024-07-12T14:09:52.000Z"
+ },
{
"uuid": "4cc7c010-5bf0-11eb-9f99-005056873709",
"id": 539487,
@@ -11338,50 +11393,6 @@
"createdAt": "2021-01-21T13:55:20.000Z",
"modifiedAt": "2024-03-12T14:48:22.000Z"
},
- {
- "uuid": "88307300-5bef-11eb-9f99-005056873709",
- "id": 539481,
- "type": "picture.pictogram.",
- "typeFilter": "pictograms",
- "meta": {
- "downloadLink": "https://cdn.post.ch/hcms/v2.0/entity/asset/539481/storage/NTM5NDg5LzAvbWFzdGVy",
- "keywords": [
- "LAD",
- "Leistung am Domizil",
- "Prestazione a domicilio",
- "Service at home",
- "Prestation à domicile",
- "Wegweiser",
- "Sign",
- "Segno",
- "Signer",
- "Sinnbild",
- "Symbol",
- "Simbolo",
- "Symbole",
- "Strassenschild",
- "Road Sign",
- "Segnale stradale",
- "Panneau De Signalisation"
- ],
- "year": [
- "2021"
- ]
- },
- "file": {
- "mime": "image/svg+xml",
- "name": "2205.svg",
- "basename": "2205",
- "ext": ".svg",
- "size": {
- "width": 0,
- "dpi": 72,
- "height": 0
- }
- },
- "createdAt": "2021-01-21T13:49:50.000Z",
- "modifiedAt": "2024-03-12T14:48:21.000Z"
- },
{
"uuid": "044e0500-5bf1-11eb-9f99-005056873709",
"id": 539492,
@@ -25156,7 +25167,7 @@
}
},
"createdAt": "2023-05-22T05:49:44.000Z",
- "modifiedAt": "2024-03-12T14:50:50.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "97d90bd0-f866-11ed-a8be-005056873709",
@@ -25216,7 +25227,7 @@
}
},
"createdAt": "2023-05-22T06:05:03.000Z",
- "modifiedAt": "2024-03-12T14:50:51.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "d7da6ed0-f867-11ed-a8be-005056873709",
@@ -26904,7 +26915,7 @@
}
},
"createdAt": "2023-11-27T07:28:09.000Z",
- "modifiedAt": "2024-03-12T14:50:51.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "24e60ea0-92a5-11ee-aba1-005056873709",
@@ -27002,7 +27013,7 @@
}
},
"createdAt": "2023-12-04T13:05:16.000Z",
- "modifiedAt": "2024-03-12T14:50:51.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "441b66a0-980c-11ee-aba1-005056873709",
@@ -27232,7 +27243,7 @@
}
},
"createdAt": "2024-01-26T11:48:12.000Z",
- "modifiedAt": "2024-03-12T14:50:52.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "baf20cb0-c017-11ee-8059-005056873709",
@@ -27815,6 +27826,124 @@
"createdAt": "2024-05-24T04:48:07.000Z",
"modifiedAt": "2024-05-24T04:50:37.000Z"
},
+ {
+ "uuid": "2cc0daa0-3deb-11ef-b101-005056873709",
+ "id": 810603,
+ "type": "picture.pictogram.",
+ "typeFilter": "pictograms",
+ "meta": {
+ "downloadLink": "https://cdn.post.ch/hcms/v2.0/entity/asset/810603/storage/ODEwNjAyLzAvbWFzdGVy",
+ "keywords": [
+ "Ampel",
+ "Traffic Light",
+ "Semaforo",
+ "Feu De Circulation"
+ ]
+ },
+ "file": {
+ "mime": "image/svg+xml",
+ "name": "2592.svg",
+ "basename": "2592",
+ "ext": ".svg",
+ "size": {
+ "width": 0,
+ "dpi": 72,
+ "height": 0
+ }
+ },
+ "createdAt": "2024-07-09T12:02:54.000Z",
+ "modifiedAt": "2024-07-09T12:05:12.000Z"
+ },
+ {
+ "uuid": "da46b2d0-3deb-11ef-b101-005056873709",
+ "id": 810607,
+ "type": "picture.pictogram.",
+ "typeFilter": "pictograms",
+ "meta": {
+ "downloadLink": "https://cdn.post.ch/hcms/v2.0/entity/asset/810607/storage/ODEwNjA2LzAvbWFzdGVy",
+ "keywords": [
+ "Baustelle",
+ "Chantier",
+ "Cantiere",
+ "building site"
+ ]
+ },
+ "file": {
+ "mime": "image/svg+xml",
+ "name": "2593.svg",
+ "basename": "2593",
+ "ext": ".svg",
+ "size": {
+ "width": 0,
+ "dpi": 72,
+ "height": 0
+ }
+ },
+ "createdAt": "2024-07-09T12:07:46.000Z",
+ "modifiedAt": "2024-07-09T12:11:39.000Z"
+ },
+ {
+ "uuid": "a9a8c180-3dec-11ef-b101-005056873709",
+ "id": 810611,
+ "type": "picture.pictogram.",
+ "typeFilter": "pictograms",
+ "meta": {
+ "downloadLink": "https://cdn.post.ch/hcms/v2.0/entity/asset/810611/storage/ODEwNjEwLzAvbWFzdGVy",
+ "keywords": [
+ "Baustelle",
+ "Chantier",
+ "Cantiere",
+ "building site",
+ "Ampel",
+ "Traffic Light",
+ "Semaforo",
+ "Feu De Circulation",
+ "traffic light system",
+ "Lichtsignalanlage",
+ "Installation de signaux lumineux",
+ "Segnale luminoso"
+ ]
+ },
+ "file": {
+ "mime": "image/svg+xml",
+ "name": "2594.svg",
+ "basename": "2594",
+ "ext": ".svg",
+ "size": {
+ "width": 0,
+ "dpi": 72,
+ "height": 0
+ }
+ },
+ "createdAt": "2024-07-09T12:13:33.000Z",
+ "modifiedAt": "2024-07-10T12:05:01.006Z"
+ },
+ {
+ "uuid": "ddc27230-3e92-11ef-b101-005056873709",
+ "id": 810661,
+ "type": "picture.pictogram.",
+ "typeFilter": "pictograms",
+ "meta": {
+ "downloadLink": "https://cdn.post.ch/hcms/v2.0/entity/asset/810661/storage/ODEwNjYwLzAvbWFzdGVy",
+ "keywords": [
+ "Audio",
+ "Tonspur"
+ ]
+ },
+ "file": {
+ "mime": "image/svg+xml",
+ "name": "2595.svg",
+ "basename": "2595",
+ "ext": ".svg",
+ "size": {
+ "width": 0,
+ "dpi": 72,
+ "height": 0
+ }
+ },
+ "createdAt": "2024-07-10T08:03:17.000Z",
+ "modifiedAt": "2024-07-11T07:05:01.540Z"
+ },
{
"uuid": "6faf6ef0-c5ff-11e7-a943-005056a94f4a",
"id": 352241,
@@ -29348,7 +29477,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:51:51.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "7097fa30-c5ff-11e7-a943-005056a94f4a",
@@ -29397,7 +29526,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:51:50.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "709dc690-c5ff-11e7-a943-005056a94f4a",
@@ -29446,7 +29575,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:51:52.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "70a42f30-c5ff-11e7-a943-005056a94f4a",
@@ -29487,7 +29616,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:51:51.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "70aa49b0-c5ff-11e7-a943-005056a94f4a",
@@ -29528,7 +29657,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:51:51.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "70b5e270-c5ff-11e7-a943-005056a94f4a",
@@ -29610,7 +29739,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:51:52.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "70bff490-c5ff-11e7-a943-005056a94f4a",
@@ -29651,7 +29780,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:51:50.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "70c4af80-c5ff-11e7-a943-005056a94f4a",
@@ -29692,7 +29821,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:51:52.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "70caa2f0-c5ff-11e7-a943-005056a94f4a",
@@ -29769,7 +29898,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:51:50.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "70d180c0-c5ff-11e7-a943-005056a94f4a",
@@ -29815,7 +29944,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:51:51.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "70d63bb0-c5ff-11e7-a943-005056a94f4a",
@@ -29868,7 +29997,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:51:50.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "70dbe100-c5ff-11e7-a943-005056a94f4a",
@@ -30090,7 +30219,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:51:50.000Z"
+ "modifiedAt": "2024-07-11T05:25:53.000Z"
},
{
"uuid": "7102c9f0-c5ff-11e7-a943-005056a94f4a",
@@ -30103,7 +30232,10 @@
"kommunikation"
],
"keywords": [
- ""
+ "ziehen",
+ "tug",
+ "tirare",
+ "Tirer"
],
"year": [
"2017"
@@ -30121,7 +30253,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:51:52.000Z"
+ "modifiedAt": "2024-07-12T05:05:01.765Z"
},
{
"uuid": "710fc240-c5ff-11e7-a943-005056a94f4a",
@@ -30134,7 +30266,10 @@
"kommunikation"
],
"keywords": [
- ""
+ "Push",
+ "Pushing",
+ "Spingere",
+ "Poussée"
],
"year": [
"2017"
@@ -30152,7 +30287,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:51:51.000Z"
+ "modifiedAt": "2024-07-11T05:15:40.000Z"
},
{
"uuid": "711a4990-c5ff-11e7-a943-005056a94f4a",
@@ -30196,7 +30331,10 @@
"kommunikation"
],
"keywords": [
- ""
+ "Push",
+ "Pushing",
+ "Spingere",
+ "Poussée"
],
"year": [
"2017"
@@ -30214,7 +30352,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:51:50.000Z"
+ "modifiedAt": "2024-07-11T05:19:51.000Z"
},
{
"uuid": "7124f7f0-c5ff-11e7-a943-005056a94f4a",
@@ -30227,7 +30365,10 @@
"kommunikation"
],
"keywords": [
- ""
+ "ziehen",
+ "tug",
+ "tirare",
+ "Tirer"
],
"year": [
"2017"
@@ -30245,7 +30386,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:51:51.000Z"
+ "modifiedAt": "2024-07-11T05:29:34.000Z"
},
{
"uuid": "712a2810-c5ff-11e7-a943-005056a94f4a",
@@ -30258,7 +30399,10 @@
"kommunikation"
],
"keywords": [
- ""
+ "Push",
+ "Pushing",
+ "Spingere",
+ "Poussée"
],
"year": [
"2017"
@@ -30276,7 +30420,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:51:52.000Z"
+ "modifiedAt": "2024-07-11T05:33:00.000Z"
},
{
"uuid": "712ebbf0-c5ff-11e7-a943-005056a94f4a",
@@ -30344,7 +30488,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:51:52.000Z"
+ "modifiedAt": "2024-07-11T06:00:55.000Z"
},
{
"uuid": "7142e030-c5ff-11e7-a943-005056a94f4a",
@@ -30656,7 +30800,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:51:52.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "7167f460-c5ff-11e7-a943-005056a94f4a",
@@ -31357,7 +31501,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:51:51.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "72d3b960-c5ff-11e7-a943-005056a94f4a",
@@ -31633,7 +31777,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:51:50.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "73420b90-c5ff-11e7-a943-005056a94f4a",
@@ -33623,7 +33767,12 @@
"kommunikation"
],
"keywords": [
- "Alarm Glocke"
+ "Alarm Glocke",
+ "Alarm",
+ "Alarm bell",
+ "Alarmglocke",
+ "Campanello di allarme",
+ "Sonnette d'alarme"
]
},
"file": {
@@ -33638,7 +33787,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T15:01:48.000Z"
+ "modifiedAt": "2024-07-12T06:05:01.772Z"
},
{
"uuid": "74acbf20-c5ff-11e7-a943-005056a94f4a",
@@ -34948,7 +35097,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T15:01:48.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "75e69eb0-c5ff-11e7-a943-005056a94f4a",
@@ -35844,7 +35993,15 @@
"more than 100",
"Business to Customer",
"Entreprise à client",
- "Business-to-Customer"
+ "Business-to-Customer",
+ "100K",
+ "100’000",
+ "100 000",
+ "100'000",
+ "Issue over one hundred thousand",
+ "Auflage über hunderttausend",
+ "Tirage supérieur à cent mille",
+ "Tiratura superiore a 100’000 copie"
]
},
"file": {
@@ -35859,7 +36016,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T15:01:48.000Z"
+ "modifiedAt": "2024-07-12T06:05:01.772Z"
},
{
"uuid": "765f9f40-c5ff-11e7-a943-005056a94f4a",
@@ -36602,7 +36759,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:52:37.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "76bcb360-c5ff-11e7-a943-005056a94f4a",
@@ -37021,7 +37178,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:52:36.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "76f0e2c0-c5ff-11e7-a943-005056a94f4a",
@@ -37198,7 +37355,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:52:37.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "77161e00-c5ff-11e7-a943-005056a94f4a",
@@ -37256,7 +37413,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:52:36.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "7720cc60-c5ff-11e7-a943-005056a94f4a",
@@ -37294,7 +37451,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:52:37.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "7725d570-c5ff-11e7-a943-005056a94f4a",
@@ -37337,7 +37494,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:52:37.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "772f9970-c5ff-11e7-a943-005056a94f4a",
@@ -37383,7 +37540,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:52:37.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "773788b0-c5ff-11e7-a943-005056a94f4a",
@@ -37437,7 +37594,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:52:38.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "773e8d90-c5ff-11e7-a943-005056a94f4a",
@@ -37487,7 +37644,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:52:36.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "77440bd0-c5ff-11e7-a943-005056a94f4a",
@@ -37529,7 +37686,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:52:38.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "774914e0-c5ff-11e7-a943-005056a94f4a",
@@ -37579,7 +37736,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:52:37.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "774e6c10-c5ff-11e7-a943-005056a94f4a",
@@ -37618,7 +37775,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:52:38.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "77559800-c5ff-11e7-a943-005056a94f4a",
@@ -37664,7 +37821,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:52:36.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "775d1210-c5ff-11e7-a943-005056a94f4a",
@@ -37730,7 +37887,7 @@
}
},
"createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:52:36.000Z"
+ "modifiedAt": "2024-07-04T18:52:05.735Z"
},
{
"uuid": "d17532d0-17d2-11e8-b180-005056a94f4a",
@@ -39621,7 +39778,7 @@
}
},
"createdAt": "2017-11-10T10:40:53.000Z",
- "modifiedAt": "2024-04-30T21:44:15.000Z"
+ "modifiedAt": "2024-07-11T06:35:35.000Z"
},
{
"uuid": "9ff9a8b0-c603-11e7-a943-005056a94f4a",
@@ -39650,7 +39807,7 @@
}
},
"createdAt": "2017-11-10T10:40:53.000Z",
- "modifiedAt": "2024-04-30T21:44:15.000Z"
+ "modifiedAt": "2024-07-11T06:42:14.000Z"
},
{
"uuid": "a00c4650-c603-11e7-a943-005056a94f4a",
@@ -39678,7 +39835,7 @@
}
},
"createdAt": "2017-11-10T10:40:53.000Z",
- "modifiedAt": "2024-04-30T21:44:15.000Z"
+ "modifiedAt": "2024-07-11T06:41:16.000Z"
},
{
"uuid": "a0110140-c603-11e7-a943-005056a94f4a",
@@ -39707,7 +39864,7 @@
}
},
"createdAt": "2017-11-10T10:40:53.000Z",
- "modifiedAt": "2024-04-30T21:44:15.000Z"
+ "modifiedAt": "2024-07-11T06:46:04.000Z"
},
{
"uuid": "a0163160-c603-11e7-a943-005056a94f4a",
@@ -39735,7 +39892,7 @@
}
},
"createdAt": "2017-11-10T10:40:53.000Z",
- "modifiedAt": "2024-04-30T21:44:15.000Z"
+ "modifiedAt": "2024-07-11T06:57:47.000Z"
},
{
"uuid": "a01fa740-c603-11e7-a943-005056a94f4a",
@@ -39763,7 +39920,7 @@
}
},
"createdAt": "2017-11-10T10:40:53.000Z",
- "modifiedAt": "2024-04-30T21:44:15.000Z"
+ "modifiedAt": "2024-07-11T06:49:06.000Z"
},
{
"uuid": "a02a2e90-c603-11e7-a943-005056a94f4a",
@@ -39791,7 +39948,7 @@
}
},
"createdAt": "2017-11-10T10:40:53.000Z",
- "modifiedAt": "2024-04-30T21:44:15.000Z"
+ "modifiedAt": "2024-07-11T06:48:01.000Z"
},
{
"uuid": "a033cb80-c603-11e7-a943-005056a94f4a",
@@ -39821,7 +39978,7 @@
}
},
"createdAt": "2017-11-10T10:40:53.000Z",
- "modifiedAt": "2024-04-30T21:44:15.000Z"
+ "modifiedAt": "2024-07-11T06:26:29.000Z"
},
{
"uuid": "a0446d50-c603-11e7-a943-005056a94f4a",
@@ -39849,7 +40006,7 @@
}
},
"createdAt": "2017-11-10T10:40:53.000Z",
- "modifiedAt": "2024-04-30T21:44:15.000Z"
+ "modifiedAt": "2024-07-11T06:37:00.000Z"
},
{
"uuid": "a04a87d0-c603-11e7-a943-005056a94f4a",
@@ -39877,7 +40034,7 @@
}
},
"createdAt": "2017-11-10T10:40:53.000Z",
- "modifiedAt": "2024-04-30T21:44:15.000Z"
+ "modifiedAt": "2024-07-11T06:47:09.000Z"
},
{
"uuid": "11f1ed50-3e55-11e8-b180-005056a94f4a",
@@ -40124,7 +40281,7 @@
}
},
"createdAt": "2018-06-12T07:30:25.000Z",
- "modifiedAt": "2024-04-30T21:44:16.000Z"
+ "modifiedAt": "2024-07-04T08:20:14.065Z"
},
{
"uuid": "fae6bb20-d690-11e8-b043-005056873709",
@@ -40209,105 +40366,12 @@
"wrongViewBox": [],
"noKeywords": [
{
- "uuid": "710fc240-c5ff-11e7-a943-005056a94f4a",
- "id": 352298,
- "type": "picture.pictogram.",
- "typeFilter": "pictograms",
- "meta": {
- "downloadLink": "https://cdn.post.ch/hcms/v2.0/entity/asset/352298/storage/NTM3MTg5LzAvbWFzdGVy",
- "businessfield": [
- "kommunikation"
- ],
- "keywords": [
- ""
- ],
- "year": [
- "2017"
- ]
- },
- "file": {
- "mime": "image/svg+xml",
- "name": "3057.svg",
- "basename": "3057",
- "ext": ".svg",
- "size": {
- "width": 0,
- "dpi": 72,
- "height": 0
- }
- },
- "createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:51:51.000Z"
- },
- {
- "uuid": "712a2810-c5ff-11e7-a943-005056a94f4a",
- "id": 352302,
- "type": "picture.pictogram.",
- "typeFilter": "pictograms",
- "meta": {
- "downloadLink": "https://cdn.post.ch/hcms/v2.0/entity/asset/352302/storage/NTM3MjAwLzAvbWFzdGVy",
- "businessfield": [
- "kommunikation"
- ],
- "keywords": [
- ""
- ],
- "year": [
- "2017"
- ]
- },
- "file": {
- "mime": "image/svg+xml",
- "name": "3061.svg",
- "basename": "3061",
- "ext": ".svg",
- "size": {
- "width": 0,
- "dpi": 72,
- "height": 0
- }
- },
- "createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:51:52.000Z"
- },
- {
- "uuid": "7102c9f0-c5ff-11e7-a943-005056a94f4a",
- "id": 352297,
- "type": "picture.pictogram.",
- "typeFilter": "pictograms",
- "meta": {
- "downloadLink": "https://cdn.post.ch/hcms/v2.0/entity/asset/352297/storage/NTM3MTIwLzAvbWFzdGVy",
- "businessfield": [
- "kommunikation"
- ],
- "keywords": [
- ""
- ],
- "year": [
- "2017"
- ]
- },
- "file": {
- "mime": "image/svg+xml",
- "name": "3056.svg",
- "basename": "3056",
- "ext": ".svg",
- "size": {
- "width": 0,
- "dpi": 72,
- "height": 0
- }
- },
- "createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:51:52.000Z"
- },
- {
- "uuid": "7124f7f0-c5ff-11e7-a943-005056a94f4a",
- "id": 352301,
+ "uuid": "717dc650-c5ff-11e7-a943-005056a94f4a",
+ "id": 352314,
"type": "picture.pictogram.",
"typeFilter": "pictograms",
"meta": {
- "downloadLink": "https://cdn.post.ch/hcms/v2.0/entity/asset/352301/storage/NTM3MTk1LzAvbWFzdGVy",
+ "downloadLink": "https://cdn.post.ch/hcms/v2.0/entity/asset/352314/storage/NTM3MjI0LzAvbWFzdGVy",
"businessfield": [
"kommunikation"
],
@@ -40320,8 +40384,8 @@
},
"file": {
"mime": "image/svg+xml",
- "name": "3060.svg",
- "basename": "3060",
+ "name": "3073.svg",
+ "basename": "3073",
"ext": ".svg",
"size": {
"width": 0,
@@ -40332,37 +40396,6 @@
"createdAt": "2017-11-10T10:11:07.000Z",
"modifiedAt": "2024-03-12T14:51:51.000Z"
},
- {
- "uuid": "712015f0-c5ff-11e7-a943-005056a94f4a",
- "id": 352300,
- "type": "picture.pictogram.",
- "typeFilter": "pictograms",
- "meta": {
- "downloadLink": "https://cdn.post.ch/hcms/v2.0/entity/asset/352300/storage/NTM3MTkzLzAvbWFzdGVy",
- "businessfield": [
- "kommunikation"
- ],
- "keywords": [
- ""
- ],
- "year": [
- "2017"
- ]
- },
- "file": {
- "mime": "image/svg+xml",
- "name": "3059.svg",
- "basename": "3059",
- "ext": ".svg",
- "size": {
- "width": 0,
- "dpi": 72,
- "height": 0
- }
- },
- "createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:51:50.000Z"
- },
{
"uuid": "711a4990-c5ff-11e7-a943-005056a94f4a",
"id": 352299,
@@ -40394,93 +40427,6 @@
"createdAt": "2017-11-10T10:11:07.000Z",
"modifiedAt": "2024-03-12T14:51:50.000Z"
},
- {
- "uuid": "717dc650-c5ff-11e7-a943-005056a94f4a",
- "id": 352314,
- "type": "picture.pictogram.",
- "typeFilter": "pictograms",
- "meta": {
- "downloadLink": "https://cdn.post.ch/hcms/v2.0/entity/asset/352314/storage/NTM3MjI0LzAvbWFzdGVy",
- "businessfield": [
- "kommunikation"
- ],
- "keywords": [
- ""
- ],
- "year": [
- "2017"
- ]
- },
- "file": {
- "mime": "image/svg+xml",
- "name": "3073.svg",
- "basename": "3073",
- "ext": ".svg",
- "size": {
- "width": 0,
- "dpi": 72,
- "height": 0
- }
- },
- "createdAt": "2017-11-10T10:11:07.000Z",
- "modifiedAt": "2024-03-12T14:51:51.000Z"
- },
- {
- "uuid": "785f77f0-29a4-11eb-a8df-005056873709",
- "id": 534673,
- "type": "picture.pictogram.",
- "typeFilter": "pictograms",
- "meta": {
- "downloadLink": "https://cdn.post.ch/hcms/v2.0/entity/asset/534673/storage/NTM0Njc1LzAvbWFzdGVy",
- "keywords": [
- ""
- ],
- "year": [
- "2020"
- ]
- },
- "file": {
- "mime": "image/svg+xml",
- "name": "2143.svg",
- "basename": "2143",
- "ext": ".svg",
- "size": {
- "width": 0,
- "dpi": 72,
- "height": 0
- }
- },
- "createdAt": "2020-11-18T13:46:33.000Z",
- "modifiedAt": "2024-03-12T14:47:40.000Z"
- },
- {
- "uuid": "0303cd60-2fe1-11eb-a8df-005056873709",
- "id": 535226,
- "type": "picture.pictogram.",
- "typeFilter": "pictograms",
- "meta": {
- "downloadLink": "https://cdn.post.ch/hcms/v2.0/entity/asset/535226/storage/NTM1MjI4LzAvbWFzdGVy",
- "keywords": [
- ""
- ],
- "year": [
- "2020"
- ]
- },
- "file": {
- "mime": "image/svg+xml",
- "name": "2166.svg",
- "basename": "2166",
- "ext": ".svg",
- "size": {
- "width": 0,
- "dpi": 72,
- "height": 0
- }
- },
- "createdAt": "2020-11-26T12:15:02.000Z",
- "modifiedAt": "2024-05-27T10:38:13.000Z"
- },
{
"uuid": "6b09bf30-9901-11eb-935b-005056873709",
"id": 600094,
@@ -40568,11 +40514,11 @@
],
"noSVG": [],
"errored": [],
- "created": "2024-06-23T01:18:58.887Z",
+ "created": "2024-07-14T01:22:49.643Z",
"stats": {
"errors": 0,
"notFound": 0,
- "success": 921
+ "success": 925
},
- "version": "7.1.0"
+ "version": "7.2.1"
}
\ No newline at end of file
diff --git a/packages/internet-header/package.json b/packages/internet-header/package.json
index c0b5beea10..0bd778e513 100644
--- a/packages/internet-header/package.json
+++ b/packages/internet-header/package.json
@@ -74,7 +74,7 @@
"globby": "14.0.2",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
- "rimraf": "5.0.7",
+ "rimraf": "6.0.1",
"rollup-plugin-node-polyfills": "0.2.1",
"rollup-plugin-scss": "4.0.0",
"rollup-plugin-visualizer": "5.12.0",
diff --git a/packages/intranet-header-workspace/package.json b/packages/intranet-header-workspace/package.json
index 52308d8852..d720f2342a 100644
--- a/packages/intranet-header-workspace/package.json
+++ b/packages/intranet-header-workspace/package.json
@@ -47,7 +47,7 @@
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"ng-packagr": "17.3.0",
- "rimraf": "5.0.7",
+ "rimraf": "6.0.1",
"typescript": "5.3.3"
},
"keywords": [
diff --git a/packages/migrations/package.json b/packages/migrations/package.json
index da5cae135f..a0352cc8c5 100644
--- a/packages/migrations/package.json
+++ b/packages/migrations/package.json
@@ -34,7 +34,7 @@
"@typescript-eslint/parser": "5.62.0",
"copyfiles": "2.4.1",
"eslint": "8.57.0",
- "rimraf": "5.0.7"
+ "rimraf": "6.0.1"
},
"schematics": "./dist/migrations.json",
"ng-update": {
diff --git a/packages/styles/package.json b/packages/styles/package.json
index 3011f36529..3e40627146 100644
--- a/packages/styles/package.json
+++ b/packages/styles/package.json
@@ -51,7 +51,7 @@
"@types/node": "20.14.9",
"autoprefixer": "10.4.19",
"copyfiles": "2.4.1",
- "glob": "10.4.2",
+ "glob": "11.0.0",
"gulp": "5.0.0",
"gulp-newer": "^1.4.0",
"gulp-postcss": "10.0.0",
@@ -60,7 +60,7 @@
"postcss": "8.4.39",
"postcss-scss": "4.0.9",
"prettier": "3.3.2",
- "rimraf": "5.0.7",
+ "rimraf": "6.0.1",
"sass": "1.77.6",
"stylelint": "16.6.1",
"stylelint-config-sass-guidelines": "11.1.0",
diff --git a/packages/styles/src/_svg-icon-map.scss b/packages/styles/src/_svg-icon-map.scss
index e4cc44d538..da9084da59 100644
--- a/packages/styles/src/_svg-icon-map.scss
+++ b/packages/styles/src/_svg-icon-map.scss
@@ -559,6 +559,14 @@ $svg-icon-map: (
"data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.6 24h-9.7v-1.5c4-3.5 7.8-7.6 7.8-10.3 0-4.2-6.3-2.4-6.9-2l-.3-1.4c.6-.3 8.8-3.1 8.8 3.4 0 3.8-7.3 10.1-7.8 10.4h8.1z'/%3E%3C/svg%3E",
'3000':
"data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Crect/%3E%3Cpath d='M17.4 8.2V24h-1.6V9.9c-.2.2-.5.5-.9.8-.3.3-.7.6-1 .9l-.9.8-.8-1L16 8.2z'/%3E%3C/svg%3E",
+ '2595':
+ "data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.86 8v16a.67.67 0 0 1-1.34 0V8a.67.67 0 0 1 1.34 0m1.9-5.33c-.37 0-.67.3-.67.67v25.33a.67.67 0 0 0 1.34 0V3.33c0-.37-.3-.67-.67-.67ZM8.31 8c-.37 0-.67.3-.67.67v14.67a.67.67 0 0 0 1.34 0V8.67c0-.37-.3-.67-.67-.67m2.56-8c-.37 0-.67.3-.67.67v30.67a.67.67 0 0 0 1.34 0V.67c0-.37-.3-.67-.67-.67m5.12 11.33c-.37 0-.67.3-.67.67v8a.67.67 0 0 0 1.34 0v-8c0-.37-.3-.67-.67-.67m-15.35 2c-.37 0-.67.3-.67.67v4a.67.67 0 0 0 1.34 0v-4c0-.37-.3-.67-.67-.67M13.43 6c-.37 0-.67.3-.67.67v18.67a.67.67 0 0 0 1.34 0V6.67c0-.37-.3-.67-.67-.67m5.07 0c-.37 0-.67.3-.67.67v18.67a.67.67 0 0 0 1.34 0V6.67c0-.37-.3-.67-.67-.67m2.56-6c-.37 0-.67.3-.67.67v30.67a.67.67 0 0 0 1.34 0V.67c0-.37-.3-.67-.67-.67m2.56 8c-.37 0-.67.3-.67.67v14.67a.67.67 0 0 0 1.34 0V8.67c0-.37-.3-.67-.67-.67m2.56-5.33c-.37 0-.67.3-.67.67v25.33a.67.67 0 0 0 1.34 0V3.33c0-.37-.3-.67-.67-.67Zm5.12 9.99c-.37 0-.67.3-.67.67v5.34a.67.67 0 0 0 1.34 0v-5.34c0-.37-.3-.67-.67-.67m-2.56-3.99c-.37 0-.67.3-.67.67v13.34a.67.67 0 0 0 1.34 0V9.34c0-.37-.3-.67-.67-.67'/%3E%3C/svg%3E",
+ '2594':
+ "data:image/svg+xml,%3Csvg data-name='3219' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26.79 1.74c-1.1 0-2 .9-2 2s.89 2 2 2 2-.9 2-2-.89-2-2-2m0 2.67a.67.67 0 1 1 0-1.34.67.67 0 0 1 0 1.34m0 5.86c-1.1 0-2 .9-2 2s.89 2 2 2 2-.9 2-2-.89-2-2-2m0 2.67a.67.67 0 1 1 0-1.34.67.67 0 0 1 0 1.34m0-6.88c-1.1 0-2 .9-2 2s.89 2 2 2 2-.9 2-2-.89-2-2-2m0 2.67a.67.67 0 1 1 0-1.34.67.67 0 0 1 0 1.34m-10.53 2.98a2.469 2.469 0 1 0-2.47-2.47c0 1.36 1.1 2.47 2.47 2.47m0-3.6c.63 0 1.13.51 1.13 1.14s-.51 1.14-1.13 1.14-1.13-.51-1.13-1.14.51-1.14 1.13-1.14M13.84 32h18.14l-4.53-6.61v-9.37h2c.74 0 1.33-.6 1.33-1.33V1.35c0-.74-.6-1.33-1.33-1.33h-5.33c-.74 0-1.33.6-1.33 1.33v13.33c0 .74.6 1.33 1.33 1.33h2v7.43l-1.53-2.23a1.99 1.99 0 0 0-1.64-.87c-.62 0-1.27.32-1.65.86l-1.93 2.79-4.51-4.52-.78-1.9.35-4.61c-.01-.11-.13-1.13-1-1.79-.62-.48-1.44-.63-2.43-.46l-.19.03c-.06-.01-.12-.02-.19-.02l-4.19.21h-.02l-2.05-2a.664.664 0 1 0-.93.95l1.81 1.77c-.08.19-.13.4-.11.61l.47 3.93-.6.63-1.59 6.87-3.43 6.07 3.39 1.9 3.94-6.93.32-.83.66 2v6.12h3.81v-6.26l-1.97-7.17.23-.23c.02.07.04.15.07.23l.96 2.51c.04.11.4 1.08 1.42 1.52.75.32 1.62.26 2.58-.17l.38-.17 2.84 2.84L13.85 32ZM9.48 12.13l-.9.93-.87-.85 1.77-.09Zm-1.82 1.9-.86.9-.24-1.97zm5.68 7.37c-.5-.21-.7-.74-.71-.76l-.95-2.48c-.22-.73-.17-1.13-.17-1.13l.38-2.11-3.24 3.3 2.13 7.64v4.83H9.63v-4.9l-1.9-5.87-1.61 4.24-3.24 5.68-1.07-.6 2.83-4.96 1.6-6.79L11.45 12c.5-.06.89.02 1.17.23.4.3.48.77.49.76l-.38 4.8 1.5 3.64c-.34.08-.64.06-.89-.04ZM24.13 1.35h5.33v13.33h-5.33zM22.4 21.97c.13-.18.34-.35.55-.29.22 0 .42.11.55.29l5.95 8.69H16.38z'/%3E%3C/svg%3E",
+ '2593':
+ "data:image/svg+xml,%3Csvg data-name='3219' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.68 6.37c1.75 0 3.17-1.42 3.17-3.17S22.43.04 20.68.04a3.171 3.171 0 0 0 0 6.34Zm0-5c1.01 0 1.84.82 1.84 1.84s-.82 1.84-1.84 1.84-1.84-.82-1.84-1.84.82-1.84 1.84-1.84m10.37 18.72.95 1.23v-2.16a3.306 3.306 0 0 0-5.17.11l-2.46 3.19-4.43-4.43-1.79-4.34.45-5.93c0-.05-.14-1.35-1.21-2.17-.76-.58-1.76-.76-2.97-.55l-.22.04-.02.02a1 1 0 0 0-.29-.04l-5.86.29c-.21-.02-.41.01-.6.08L4.64 2.71a.664.664 0 1 0-.93.95l2.85 2.77c-.04.16-.07.31-.05.48l.67 5.55-.32.33-2.03 8.79L.5 29.21l4.03 2.25 4.96-8.7.6-1.57 1.03 3.1v7.69h4.52v-7.84l-2.56-9.25.61-.62c.04.18.09.38.16.6l1.23 3.22c.02.05.46 1.3 1.72 1.84.87.38 1.89.31 3.02-.17l3.75 3.75-6.52 8.46h14.97v-1.33H19.76l8.14-10.57c.76-.99 2.41-.99 3.17 0ZM12.92 6.46l-1.11 1.17-1.1 1.14a.7.7 0 0 0-.17-.31L8.7 6.67l4.21-.21Zm-3.3 2.96c.09.09.2.13.32.16l-1.55 1.61L8 7.85zm7.7 9.32c-.72-.3-1-1.05-1.01-1.08l-1.22-3.2c-.3-.99-.23-1.54-.23-1.54l.38-2.11-3.67 3.72 2.71 9.73v6.41h-1.85V24.2l-2.27-6.96-1.89 4.97-4.26 7.45-1.7-.95 3.73-6.52 2.04-8.71 4.67-4.92 1.84-1.92.06-.09.2-.21c.73-.09 1.3.01 1.71.32.57.43.69 1.13.7 1.13l-.48 6.12 1.99 4.83c-.57.16-1.06.16-1.47-.01Z'/%3E%3C/svg%3E",
+ '2592':
+ "data:image/svg+xml,%3Csvg data-name='3219' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.02 2c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4m0 6.67c-1.47 0-2.67-1.2-2.67-2.67s1.2-2.67 2.67-2.67 2.67 1.2 2.67 2.67-1.2 2.67-2.67 2.67m0 1.99c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4m0 6.67c-1.47 0-2.67-1.2-2.67-2.67s1.2-2.67 2.67-2.67 2.67 1.2 2.67 2.67-1.2 2.67-2.67 2.67m0 2c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4m0 6.66c-1.47 0-2.67-1.2-2.67-2.67s1.2-2.67 2.67-2.67 2.67 1.2 2.67 2.67-1.2 2.67-2.67 2.67m8.95-11.32c0-1.53-.95-2.83-2.29-3.36V9.35c1.34-.53 2.29-1.83 2.29-3.36s-.95-2.83-2.29-3.36v-.64c0-1.09-.89-1.99-2-1.99h-9.33a2 2 0 0 0-2 2v.64C8.01 3.17 7.06 4.47 7.06 6s.95 2.83 2.29 3.36v1.95c-1.34.53-2.29 1.83-2.29 3.36s.95 2.83 2.29 3.36v1.95c-1.34.53-2.29 1.83-2.29 3.36s.95 2.83 2.29 3.36v.65c0 1.1.9 2 2 2h2.34v2.67h4.65v-2.67h2.34c1.1 0 2-.9 2-2v-.65c1.34-.53 2.29-1.83 2.29-3.36s-.95-2.83-2.29-3.36v-1.95a3.61 3.61 0 0 0 2.29-3.36m-2.28-1.85c.57.41.95 1.09.95 1.85s-.37 1.44-.95 1.85zm0-8.67c.57.41.95 1.09.95 1.85s-.37 1.44-.95 1.85zM9.34 7.85c-.57-.41-.95-1.09-.95-1.85s.37-1.44.95-1.85zm0 8.67c-.57-.41-.95-1.09-.95-1.85s.37-1.44.95-1.85zm0 8.66c-.57-.41-.95-1.09-.95-1.85s.37-1.44.95-1.85zM17.01 32h-1.99v-2.67h1.99zm4.34-4.67c0 .37-.3.67-.67.67h-9.33a.67.67 0 0 1-.67-.67V2c0-.37.3-.67.67-.67h9.33c.37 0 .67.3.67.67zm1.34-5.85c.57.41.95 1.09.95 1.85s-.37 1.44-.95 1.85z'/%3E%3C/svg%3E",
'2591':
"data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.61 1.33H5.33v29.33h21.33V8.39L19.6 1.33ZM20 3.61 24.39 8H20zm5.33 25.72H6.67V2.67h12v6.67h6.67v20ZM8 17.93s1.77 5.41 8 5.41 8-5.41 8-5.41-1.96-5.41-8-5.41-8 5.41-8 5.41m14.55.01C22.01 19.08 20.22 22 16 22s-6.02-2.92-6.55-4.05c.57-1.14 2.44-4.09 6.55-4.09s5.98 2.95 6.55 4.09Zm-9.88-.01c0 1.84 1.49 3.33 3.33 3.33s3.33-1.49 3.33-3.33S17.84 14.6 16 14.6s-3.33 1.49-3.33 3.33m5.33 0c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2'/%3E%3C/svg%3E",
'2590':
diff --git a/packages/tokens/tokensstudio-generated/tokens.json b/packages/tokens/tokensstudio-generated/tokens.json
index 6b4719028c..7b903b454a 100644
--- a/packages/tokens/tokensstudio-generated/tokens.json
+++ b/packages/tokens/tokensstudio-generated/tokens.json
@@ -376,7 +376,7 @@
}
},
"1-5": {
- "value": "1.5px",
+ "value": "1.5",
"type": "dimension",
"$extensions": {
"studio.tokens": {}
@@ -682,167 +682,161 @@
"interactive": {
"button": {
"primary": {
- "unselected": {
- "enabled": {
- "fg": {
- "value": "{post.core.color.brand.white}",
- "type": "color",
- "$extensions": {
- "studio.tokens": {}
- }
- },
- "bg": {
- "value": "{post.core.color.sandgrey.100}",
- "type": "color",
- "$extensions": {
- "studio.tokens": {}
- }
- },
- "stroke": {
- "value": "{post.sem.color.interactive.button.primary.unselected.enabled.bg}",
- "type": "color"
+ "enabled": {
+ "fg": {
+ "value": "{post.core.color.brand.white}",
+ "type": "color",
+ "$extensions": {
+ "studio.tokens": {}
}
},
- "hover": {
- "fg": {
- "value": "{post.core.color.brand.white}",
- "type": "color",
- "$extensions": {
- "studio.tokens": {}
- }
- },
- "bg": {
- "value": "{post.core.color.sandgrey.070}",
- "type": "color"
- },
- "stroke": {
- "value": "{post.sem.color.interactive.button.primary.unselected.hover.bg}",
- "type": "color"
+ "bg": {
+ "value": "{post.core.color.sandgrey.100}",
+ "type": "color",
+ "$extensions": {
+ "studio.tokens": {}
}
},
- "disabled": {
- "fg": {
- "value": "{post.core.color.sandgrey.060}",
- "type": "color"
- },
- "bg": {
- "value": "{post.core.color.brand.white}",
- "type": "color"
- },
- "stroke": {
- "value": "{post.sem.color.interactive.button.primary.unselected.disabled.fg}",
- "type": "color"
+ "stroke": {
+ "value": "{post.sem.color.interactive.button.primary.enabled.bg}",
+ "type": "color"
+ }
+ },
+ "hover": {
+ "fg": {
+ "value": "{post.core.color.brand.white}",
+ "type": "color",
+ "$extensions": {
+ "studio.tokens": {}
}
+ },
+ "bg": {
+ "value": "{post.core.color.sandgrey.070}",
+ "type": "color"
+ },
+ "stroke": {
+ "value": "{post.sem.color.interactive.button.primary.hover.bg}",
+ "type": "color"
+ }
+ },
+ "disabled": {
+ "fg": {
+ "value": "{post.core.color.brand.white}",
+ "type": "color"
+ },
+ "bg": {
+ "value": "{post.core.color.sandgrey.060}",
+ "type": "color"
+ },
+ "stroke": {
+ "value": "{post.sem.color.interactive.button.primary.disabled.bg}",
+ "type": "color"
}
}
},
"secondary": {
- "unselected": {
- "enabled": {
- "fg": {
- "value": "{post.core.color.sandgrey.100}",
- "type": "color",
- "$extensions": {
- "studio.tokens": {}
- }
- },
- "bg": {
- "value": "{post.core.color.brand.white}",
- "type": "color",
- "$extensions": {
- "studio.tokens": {}
- }
- },
- "stroke": {
- "value": "{post.sem.color.interactive.button.secondary.unselected.enabled.fg}",
- "type": "color"
+ "enabled": {
+ "fg": {
+ "value": "{post.core.color.sandgrey.100}",
+ "type": "color",
+ "$extensions": {
+ "studio.tokens": {}
}
},
- "hover": {
- "fg": {
- "value": "{post.core.color.sandgrey.070}",
- "type": "color",
- "$extensions": {
- "studio.tokens": {}
- }
- },
- "bg": {
- "value": "{post.core.color.brand.white}",
- "type": "color"
- },
- "stroke": {
- "value": "{post.sem.color.interactive.button.secondary.unselected.hover.fg}",
- "type": "color"
+ "bg": {
+ "value": "{post.core.color.brand.white}",
+ "type": "color",
+ "$extensions": {
+ "studio.tokens": {}
}
},
- "disabled": {
- "fg": {
- "value": "{post.core.color.sandgrey.060}",
- "type": "color"
- },
- "bg": {
- "value": "{post.core.color.brand.white}",
- "type": "color"
- },
- "stroke": {
- "value": "{post.sem.color.interactive.button.secondary.unselected.disabled.fg}",
- "type": "color"
+ "stroke": {
+ "value": "{post.core.color.sandgrey.100}",
+ "type": "color"
+ }
+ },
+ "hover": {
+ "fg": {
+ "value": "{post.core.color.sandgrey.070}",
+ "type": "color",
+ "$extensions": {
+ "studio.tokens": {}
}
+ },
+ "bg": {
+ "value": "{post.core.color.brand.white}",
+ "type": "color"
+ },
+ "stroke": {
+ "value": "{post.core.color.sandgrey.070}",
+ "type": "color"
+ }
+ },
+ "disabled": {
+ "fg": {
+ "value": "{post.core.color.sandgrey.060}",
+ "type": "color"
+ },
+ "bg": {
+ "value": "{post.core.color.brand.white}",
+ "type": "color"
+ },
+ "stroke": {
+ "value": "{post.core.color.sandgrey.060}",
+ "type": "color"
}
}
},
"tertiary": {
- "unselected": {
- "enabled": {
- "fg": {
- "value": "{post.core.color.sandgrey.100}",
- "type": "color",
- "$extensions": {
- "studio.tokens": {}
- }
- },
- "bg": {
- "value": "{post.core.color.colorless}",
- "type": "color",
- "$extensions": {
- "studio.tokens": {}
- }
- },
- "stroke": {
- "value": "{post.sem.color.interactive.button.tertiary.unselected.enabled.bg}",
- "type": "color"
+ "enabled": {
+ "fg": {
+ "value": "{post.core.color.sandgrey.100}",
+ "type": "color",
+ "$extensions": {
+ "studio.tokens": {}
}
},
- "hover": {
- "fg": {
- "value": "{post.core.color.sandgrey.070}",
- "type": "color",
- "$extensions": {
- "studio.tokens": {}
- }
- },
- "bg": {
- "value": "{post.core.color.colorless}",
- "type": "color"
- },
- "stroke": {
- "value": "{post.sem.color.interactive.button.tertiary.unselected.hover.bg}",
- "type": "color"
+ "bg": {
+ "value": "{post.core.color.colorless}",
+ "type": "color",
+ "$extensions": {
+ "studio.tokens": {}
}
},
- "disabled": {
- "fg": {
- "value": "{post.core.color.sandgrey.060}",
- "type": "color"
- },
- "bg": {
- "value": "{post.core.color.colorless}",
- "type": "color"
- },
- "stroke": {
- "value": "{post.sem.color.interactive.button.tertiary.unselected.disabled.bg}",
- "type": "color"
+ "stroke": {
+ "value": "{post.sem.color.interactive.button.tertiary.enabled.bg}",
+ "type": "color"
+ }
+ },
+ "hover": {
+ "fg": {
+ "value": "{post.core.color.sandgrey.070}",
+ "type": "color",
+ "$extensions": {
+ "studio.tokens": {}
}
+ },
+ "bg": {
+ "value": "{post.core.color.colorless}",
+ "type": "color"
+ },
+ "stroke": {
+ "value": "{post.sem.color.interactive.button.tertiary.hover.bg}",
+ "type": "color"
+ }
+ },
+ "disabled": {
+ "fg": {
+ "value": "{post.core.color.sandgrey.060}",
+ "type": "color"
+ },
+ "bg": {
+ "value": "{post.core.color.colorless}",
+ "type": "color"
+ },
+ "stroke": {
+ "value": "{post.sem.color.interactive.button.tertiary.disabled.bg}",
+ "type": "color"
}
}
}
@@ -851,6 +845,10 @@
"stroke": {
"value": "{post.core.color.sandgrey.100}",
"type": "color"
+ },
+ "stroke-inverted": {
+ "value": "{post.core.color.brand.white}",
+ "type": "color"
}
},
"text_input": {
@@ -1140,167 +1138,161 @@
"interactive": {
"button": {
"primary": {
- "unselected": {
- "enabled": {
- "fg": {
- "value": "{post.core.color.brand.white}",
- "type": "color",
- "$extensions": {
- "studio.tokens": {}
- }
- },
- "bg": {
- "value": "{post.core.color.sandgrey.100}",
- "type": "color",
- "$extensions": {
- "studio.tokens": {}
- }
- },
- "stroke": {
- "value": "{post.sem.color.interactive.button.primary.unselected.enabled.bg}",
- "type": "color"
+ "enabled": {
+ "fg": {
+ "value": "{post.core.color.brand.white}",
+ "type": "color",
+ "$extensions": {
+ "studio.tokens": {}
}
},
- "hover": {
- "fg": {
- "value": "{post.core.color.brand.white}",
- "type": "color",
- "$extensions": {
- "studio.tokens": {}
- }
- },
- "bg": {
- "value": "{post.core.color.sandgrey.070}",
- "type": "color"
- },
- "stroke": {
- "value": "{post.sem.color.interactive.button.primary.unselected.hover.bg}",
- "type": "color"
+ "bg": {
+ "value": "{post.core.color.sandgrey.100}",
+ "type": "color",
+ "$extensions": {
+ "studio.tokens": {}
}
},
- "disabled": {
- "fg": {
- "value": "{post.core.color.sandgrey.060}",
- "type": "color"
- },
- "bg": {
- "value": "{post.core.color.brand.white}",
- "type": "color"
- },
- "stroke": {
- "value": "{post.sem.color.interactive.button.primary.unselected.disabled.fg}",
- "type": "color"
+ "stroke": {
+ "value": "{post.sem.color.interactive.button.primary.enabled.bg}",
+ "type": "color"
+ }
+ },
+ "hover": {
+ "fg": {
+ "value": "{post.core.color.brand.white}",
+ "type": "color",
+ "$extensions": {
+ "studio.tokens": {}
}
+ },
+ "bg": {
+ "value": "{post.core.color.sandgrey.070}",
+ "type": "color"
+ },
+ "stroke": {
+ "value": "{post.sem.color.interactive.button.primary.hover.bg}",
+ "type": "color"
+ }
+ },
+ "disabled": {
+ "fg": {
+ "value": "{post.core.color.brand.white}",
+ "type": "color"
+ },
+ "bg": {
+ "value": "{post.core.color.sandgrey.060}",
+ "type": "color"
+ },
+ "stroke": {
+ "value": "{post.sem.color.interactive.button.primary.disabled.bg}",
+ "type": "color"
}
}
},
"secondary": {
- "unselected": {
- "enabled": {
- "fg": {
- "value": "{post.core.color.sandgrey.100}",
- "type": "color",
- "$extensions": {
- "studio.tokens": {}
- }
- },
- "bg": {
- "value": "{post.core.color.brand.white}",
- "type": "color",
- "$extensions": {
- "studio.tokens": {}
- }
- },
- "stroke": {
- "value": "{post.sem.color.interactive.button.secondary.unselected.enabled.fg}",
- "type": "color"
+ "enabled": {
+ "fg": {
+ "value": "{post.core.color.sandgrey.100}",
+ "type": "color",
+ "$extensions": {
+ "studio.tokens": {}
}
},
- "hover": {
- "fg": {
- "value": "{post.core.color.sandgrey.070}",
- "type": "color",
- "$extensions": {
- "studio.tokens": {}
- }
- },
- "bg": {
- "value": "{post.core.color.brand.white}",
- "type": "color"
- },
- "stroke": {
- "value": "{post.sem.color.interactive.button.secondary.unselected.hover.fg}",
- "type": "color"
+ "bg": {
+ "value": "{post.core.color.brand.white}",
+ "type": "color",
+ "$extensions": {
+ "studio.tokens": {}
}
},
- "disabled": {
- "fg": {
- "value": "{post.core.color.sandgrey.060}",
- "type": "color"
- },
- "bg": {
- "value": "{post.core.color.brand.white}",
- "type": "color"
- },
- "stroke": {
- "value": "{post.sem.color.interactive.button.secondary.unselected.disabled.fg}",
- "type": "color"
+ "stroke": {
+ "value": "{post.core.color.sandgrey.100}",
+ "type": "color"
+ }
+ },
+ "hover": {
+ "fg": {
+ "value": "{post.core.color.sandgrey.070}",
+ "type": "color",
+ "$extensions": {
+ "studio.tokens": {}
}
+ },
+ "bg": {
+ "value": "{post.core.color.brand.white}",
+ "type": "color"
+ },
+ "stroke": {
+ "value": "{post.core.color.sandgrey.070}",
+ "type": "color"
+ }
+ },
+ "disabled": {
+ "fg": {
+ "value": "{post.core.color.sandgrey.060}",
+ "type": "color"
+ },
+ "bg": {
+ "value": "{post.core.color.brand.white}",
+ "type": "color"
+ },
+ "stroke": {
+ "value": "{post.core.color.sandgrey.060}",
+ "type": "color"
}
}
},
"tertiary": {
- "unselected": {
- "enabled": {
- "fg": {
- "value": "{post.core.color.sandgrey.100}",
- "type": "color",
- "$extensions": {
- "studio.tokens": {}
- }
- },
- "bg": {
- "value": "{post.core.color.colorless}",
- "type": "color",
- "$extensions": {
- "studio.tokens": {}
- }
- },
- "stroke": {
- "value": "{post.sem.color.interactive.button.tertiary.unselected.enabled.bg}",
- "type": "color"
+ "enabled": {
+ "fg": {
+ "value": "{post.core.color.sandgrey.100}",
+ "type": "color",
+ "$extensions": {
+ "studio.tokens": {}
}
},
- "hover": {
- "fg": {
- "value": "{post.core.color.sandgrey.070}",
- "type": "color",
- "$extensions": {
- "studio.tokens": {}
- }
- },
- "bg": {
- "value": "{post.core.color.colorless}",
- "type": "color"
- },
- "stroke": {
- "value": "{post.sem.color.interactive.button.tertiary.unselected.hover.bg}",
- "type": "color"
+ "bg": {
+ "value": "{post.core.color.colorless}",
+ "type": "color",
+ "$extensions": {
+ "studio.tokens": {}
}
},
- "disabled": {
- "fg": {
- "value": "{post.core.color.sandgrey.060}",
- "type": "color"
- },
- "bg": {
- "value": "{post.core.color.colorless}",
- "type": "color"
- },
- "stroke": {
- "value": "{post.sem.color.interactive.button.tertiary.unselected.disabled.bg}",
- "type": "color"
+ "stroke": {
+ "value": "{post.sem.color.interactive.button.tertiary.enabled.bg}",
+ "type": "color"
+ }
+ },
+ "hover": {
+ "fg": {
+ "value": "{post.core.color.sandgrey.070}",
+ "type": "color",
+ "$extensions": {
+ "studio.tokens": {}
}
+ },
+ "bg": {
+ "value": "{post.core.color.colorless}",
+ "type": "color"
+ },
+ "stroke": {
+ "value": "{post.sem.color.interactive.button.tertiary.hover.bg}",
+ "type": "color"
+ }
+ },
+ "disabled": {
+ "fg": {
+ "value": "{post.core.color.sandgrey.060}",
+ "type": "color"
+ },
+ "bg": {
+ "value": "{post.core.color.colorless}",
+ "type": "color"
+ },
+ "stroke": {
+ "value": "{post.sem.color.interactive.button.tertiary.disabled.bg}",
+ "type": "color"
}
}
}
@@ -1309,6 +1301,10 @@
"stroke": {
"value": "{post.core.color.sandgrey.100}",
"type": "color"
+ },
+ "stroke-inverted": {
+ "value": "{post.core.color.brand.white}",
+ "type": "color"
}
},
"text_input": {
@@ -3069,6 +3065,10 @@
"stroke": {
"value": "{post.sem.color.interactive.focus.stroke}",
"type": "color"
+ },
+ "stroke-inverted": {
+ "value": "{post.sem.color.interactive.focus.stroke-inverted}",
+ "type": "color"
}
}
},
@@ -3213,6 +3213,84 @@
}
}
}
+ },
+ "button": {
+ "primary": {
+ "fg-enabled": {
+ "value": "{post.sem.color.interactive.button.primary.enabled.fg}",
+ "type": "color"
+ },
+ "bg-enabled": {
+ "value": "{post.sem.color.interactive.button.primary.enabled.bg}",
+ "type": "color"
+ },
+ "stroke-enabled": {
+ "value": "{post.sem.color.interactive.button.primary.enabled.stroke}",
+ "type": "color"
+ },
+ "fg-hover": {
+ "value": "{post.sem.color.interactive.button.primary.hover.fg}",
+ "type": "color"
+ },
+ "bg-hover": {
+ "value": "{post.sem.color.interactive.button.primary.hover.bg}",
+ "type": "color"
+ },
+ "stroke-hover": {
+ "value": "{post.sem.color.interactive.button.primary.hover.stroke}",
+ "type": "color"
+ },
+ "fg-disabled": {
+ "value": "{post.sem.color.interactive.button.primary.disabled.fg}",
+ "type": "color"
+ },
+ "bg-disabled": {
+ "value": "{post.sem.color.interactive.button.primary.disabled.bg}",
+ "type": "color"
+ },
+ "stroke-disabled": {
+ "value": "{post.sem.color.interactive.button.primary.disabled.stroke}",
+ "type": "color"
+ }
+ },
+ "secondary": {
+ "fg-enabled": {
+ "value": "{post.sem.color.interactive.button.secondary.enabled.fg}",
+ "type": "color"
+ },
+ "bg-enabled": {
+ "value": "{post.sem.color.interactive.button.secondary.enabled.bg}",
+ "type": "color"
+ },
+ "stroke-enabled": {
+ "value": "{post.sem.color.interactive.button.secondary.enabled.stroke}",
+ "type": "color"
+ },
+ "fg-hover": {
+ "value": "{post.sem.color.interactive.button.secondary.hover.fg}",
+ "type": "color"
+ },
+ "bg-hover": {
+ "value": "{post.sem.color.interactive.button.secondary.hover.bg}",
+ "type": "color"
+ },
+ "stroke-hover": {
+ "value": "{post.sem.color.interactive.button.secondary.hover.stroke}",
+ "type": "color"
+ },
+ "fg-disabled": {
+ "value": "{post.sem.color.interactive.button.secondary.disabled.fg}",
+ "type": "color"
+ },
+ "bg-disabled": {
+ "value": "{post.sem.color.interactive.button.secondary.disabled.bg}",
+ "type": "color"
+ },
+ "stroke-disabled": {
+ "value": "{post.sem.color.interactive.button.secondary.disabled.stroke}",
+ "type": "color"
+ }
+ }
}
}
}
@@ -3372,15 +3450,6 @@
"post.sem.color.signal.warning-light": "89302ce07bdf3dda8857ae055241ba5e55af16c7",
"post.sem.color.signal.information-dark": "04907dc5972eef19d828ea38aafba62220824b5c",
"post.sem.color.signal.information-light": "92a36e527934b27f741ef1d21ccd77f46081bcea",
- "post.sem.color.interactive.button.primary.unselected.enabled.fg": "2a55e0da7a6a77af2ab682cfee46da43264624cf",
- "post.sem.color.interactive.button.primary.unselected.enabled.bg": "cb811102b963d3ff5f0cfd0cdadb6d1de116e562",
- "post.sem.color.interactive.button.primary.unselected.enabled.stroke": "0a8ee2da5e2d582cb354ee8710efaef60c332a75",
- "post.sem.color.interactive.button.primary.unselected.hover.fg": "370eec1871dbb57ed9fac1803a6ddc8592c35a67",
- "post.sem.color.interactive.button.primary.unselected.hover.bg": "f7f7a0eeefdcecda78cfe4aeec2a08817852abf6",
- "post.sem.color.interactive.button.primary.unselected.hover.stroke": "964a9601a9e2283290465b6deee733d485dd0e65",
- "post.sem.color.interactive.button.primary.unselected.disabled.fg": "3d537ef822839dda40725503001c8d49356f254d",
- "post.sem.color.interactive.button.primary.unselected.disabled.bg": "0c28afdd6efaf84fdfe73a7eaef9ffc6f2ff99fc",
- "post.sem.color.interactive.button.primary.unselected.disabled.stroke": "7ebde564c0863190f4041f53b52058fbe752e4c9",
"post.sem.color.interactive.focus.stroke": "45a49cfd83943b6198f45b94b88316247bafd65f",
"post.sem.color.surface.default.bg": "76160b240c5dee3ecddf678e49fb08e554103e19",
"post.sem.color.surface.default.fg": "0497e52aa5f3173648ad5d0a10d8433eb3f229d4",
@@ -3402,15 +3471,6 @@
"post.sem.color.interactive.button.secondary.unselected.disabled.fg": "1eb5cc7caf7bc6733fb583a953d7a03928f2ec7a",
"post.sem.color.interactive.button.secondary.unselected.disabled.bg": "6368eeee292807d9e0626e1eb4b60100450a14b5",
"post.sem.color.interactive.button.secondary.unselected.disabled.stroke": "e239f9646dc8b1bf5e7c3b886fab7d561b54d328",
- "post.sem.color.interactive.button.tertiary.unselected.enabled.fg": "34e8ea4b6e24a60e7827a235e67284a2911a834f",
- "post.sem.color.interactive.button.tertiary.unselected.enabled.bg": "bf605ec9efcbc2713a9e8b212a44dc70f16c413a",
- "post.sem.color.interactive.button.tertiary.unselected.enabled.stroke": "9d80b0f4732315ee7575df8d994b643a9e3f1986",
- "post.sem.color.interactive.button.tertiary.unselected.hover.fg": "14f1c32ce015e8805d6b113f335e582b986d1d56",
- "post.sem.color.interactive.button.tertiary.unselected.hover.bg": "a0de9da59cbc53e539fd44b899e0eb75eeb7e4aa",
- "post.sem.color.interactive.button.tertiary.unselected.hover.stroke": "0ef91143b571c199f3ecb2461705938c0a514f3f",
- "post.sem.color.interactive.button.tertiary.unselected.disabled.fg": "2d8ef1972033ee2689128a8bec1c6a5484459392",
- "post.sem.color.interactive.button.tertiary.unselected.disabled.bg": "acc3ca5eec890d19d9090009c43d8afbbcb6ccfe",
- "post.sem.color.interactive.button.tertiary.unselected.disabled.stroke": "5f17b9e585624fd15ed39fe58b503f90ee9b5f0e",
"post.sem.color.interactive.text_input.enabled.fg": "458e2162717f22a744cca787687f3350066c9fd3",
"post.sem.color.interactive.text_input.enabled.bg": "e635df5be1340f1dd2a3c27b1d4289f315210750",
"post.sem.color.interactive.text_input.hover.fg-label": "11851c33cfb72dda519a1f2114a1e26466970a91",
@@ -3446,7 +3506,25 @@
"post.sem.color.interactive.primary.selected.bg-handle": "7a0bd1da8b79f4a8df41671ea87ff9459da972b9",
"post.sem.color.notification.badge.bg": "0de95de05ec88e26525f4211c81f0f8dbe321ebb",
"post.sem.color.notification.badge.fg": "48ff724df33b9947e7e74a729c5dc4a7c930f58c",
- "post.sem.color.notification.badge.stroke": "3b53b100fef4f7aa9a97b64e7d2fa8fc9c51aba2"
+ "post.sem.color.notification.badge.stroke": "3b53b100fef4f7aa9a97b64e7d2fa8fc9c51aba2",
+ "post.sem.color.interactive.button.primary.enabled.fg": "2a55e0da7a6a77af2ab682cfee46da43264624cf",
+ "post.sem.color.interactive.button.primary.enabled.bg": "cb811102b963d3ff5f0cfd0cdadb6d1de116e562",
+ "post.sem.color.interactive.button.primary.enabled.stroke": "0a8ee2da5e2d582cb354ee8710efaef60c332a75",
+ "post.sem.color.interactive.button.primary.hover.fg": "370eec1871dbb57ed9fac1803a6ddc8592c35a67",
+ "post.sem.color.interactive.button.primary.hover.bg": "f7f7a0eeefdcecda78cfe4aeec2a08817852abf6",
+ "post.sem.color.interactive.button.primary.hover.stroke": "964a9601a9e2283290465b6deee733d485dd0e65",
+ "post.sem.color.interactive.button.primary.disabled.fg": "3d537ef822839dda40725503001c8d49356f254d",
+ "post.sem.color.interactive.button.primary.disabled.bg": "0c28afdd6efaf84fdfe73a7eaef9ffc6f2ff99fc",
+ "post.sem.color.interactive.button.primary.disabled.stroke": "7ebde564c0863190f4041f53b52058fbe752e4c9",
+ "post.sem.color.interactive.button.tertiary.enabled.fg": "34e8ea4b6e24a60e7827a235e67284a2911a834f",
+ "post.sem.color.interactive.button.tertiary.enabled.bg": "bf605ec9efcbc2713a9e8b212a44dc70f16c413a",
+ "post.sem.color.interactive.button.tertiary.enabled.stroke": "9d80b0f4732315ee7575df8d994b643a9e3f1986",
+ "post.sem.color.interactive.button.tertiary.hover.fg": "14f1c32ce015e8805d6b113f335e582b986d1d56",
+ "post.sem.color.interactive.button.tertiary.hover.bg": "a0de9da59cbc53e539fd44b899e0eb75eeb7e4aa",
+ "post.sem.color.interactive.button.tertiary.hover.stroke": "0ef91143b571c199f3ecb2461705938c0a514f3f",
+ "post.sem.color.interactive.button.tertiary.disabled.fg": "2d8ef1972033ee2689128a8bec1c6a5484459392",
+ "post.sem.color.interactive.button.tertiary.disabled.bg": "acc3ca5eec890d19d9090009c43d8afbbcb6ccfe",
+ "post.sem.color.interactive.button.tertiary.disabled.stroke": "5f17b9e585624fd15ed39fe58b503f90ee9b5f0e"
}
},
{
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 7b002e6bf0..8cfcc12db0 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -117,8 +117,8 @@ importers:
specifier: 7.34.3
version: 7.34.3(eslint@8.57.0)
rimraf:
- specifier: 5.0.7
- version: 5.0.7
+ specifier: 6.0.1
+ version: 6.0.1
rollup-plugin-postcss:
specifier: 4.0.2
version: 4.0.2(postcss@8.4.39)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.3.3))
@@ -294,8 +294,8 @@ importers:
specifier: 18.3.1
version: 18.3.1(react@18.3.1)
rimraf:
- specifier: 5.0.7
- version: 5.0.7
+ specifier: 6.0.1
+ version: 6.0.1
typescript:
specifier: '*'
version: 4.9.5
@@ -454,8 +454,8 @@ importers:
specifier: 4.0.2
version: 4.0.2(webpack@5.92.1)
rimraf:
- specifier: 5.0.7
- version: 5.0.7
+ specifier: 6.0.1
+ version: 6.0.1
sass:
specifier: 1.77.6
version: 1.77.6
@@ -617,8 +617,8 @@ importers:
specifier: 7.0.1
version: 7.0.1
rimraf:
- specifier: 5.0.7
- version: 5.0.7
+ specifier: 6.0.1
+ version: 6.0.1
sass:
specifier: 1.77.6
version: 1.77.6
@@ -780,8 +780,8 @@ importers:
specifier: 29.7.0
version: 29.7.0
rimraf:
- specifier: 5.0.7
- version: 5.0.7
+ specifier: 6.0.1
+ version: 6.0.1
rollup-plugin-node-polyfills:
specifier: 0.2.1
version: 0.2.1
@@ -913,8 +913,8 @@ importers:
specifier: 17.3.0
version: 17.3.0(@angular/compiler-cli@17.3.11(@angular/compiler@17.3.11(@angular/core@17.3.11(rxjs@7.8.1)(zone.js@0.14.7)))(typescript@5.3.3))(tailwindcss@3.4.4)(tslib@2.6.3)(typescript@5.3.3)
rimraf:
- specifier: 5.0.7
- version: 5.0.7
+ specifier: 6.0.1
+ version: 6.0.1
typescript:
specifier: 5.3.3
version: 5.3.3
@@ -982,8 +982,8 @@ importers:
specifier: 8.57.0
version: 8.57.0
rimraf:
- specifier: 5.0.7
- version: 5.0.7
+ specifier: 6.0.1
+ version: 6.0.1
packages/nextjs-integration:
dependencies:
@@ -1065,8 +1065,8 @@ importers:
specifier: 2.4.1
version: 2.4.1
glob:
- specifier: 10.4.2
- version: 10.4.2
+ specifier: 11.0.0
+ version: 11.0.0
gulp:
specifier: 5.0.0
version: 5.0.0
@@ -1092,8 +1092,8 @@ importers:
specifier: 3.3.2
version: 3.3.2
rimraf:
- specifier: 5.0.7
- version: 5.0.7
+ specifier: 6.0.1
+ version: 6.0.1
sass:
specifier: 1.77.6
version: 1.77.6
@@ -6813,16 +6813,16 @@ packages:
engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
- glob@10.3.15:
- resolution: {integrity: sha512-0c6RlJt1TICLyvJYIApxb8GsXoai0KUP7AxKKAtsYXdgJR1mGEUa7DgwShbdk1nly0PYoZj01xd4hzbq3fsjpw==}
- engines: {node: '>=16 || 14 >=14.18'}
- hasBin: true
-
glob@10.4.2:
resolution: {integrity: sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==}
engines: {node: '>=16 || 14 >=14.18'}
hasBin: true
+ glob@11.0.0:
+ resolution: {integrity: sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==}
+ engines: {node: 20 || >=22}
+ hasBin: true
+
glob@7.1.4:
resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==}
deprecated: Glob versions prior to v9 are no longer supported
@@ -7578,6 +7578,10 @@ packages:
resolution: {integrity: sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==}
engines: {node: '>=14'}
+ jackspeak@4.0.1:
+ resolution: {integrity: sha512-cub8rahkh0Q/bw1+GxP7aeSe29hHHn2V4m29nnDlvCdlgU+3UGxkZp7Z53jLUdpX3jdTO0nJZUDl3xvbWc2Xog==}
+ engines: {node: 20 || >=22}
+
jake@10.8.7:
resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==}
engines: {node: '>=10'}
@@ -8124,6 +8128,10 @@ packages:
resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==}
engines: {node: 14 || >=16.14}
+ lru-cache@11.0.0:
+ resolution: {integrity: sha512-Qv32eSV1RSCfhY3fpPE2GNZ8jgM9X7rdAfemLWqTUxwiyIC4jJ6Sy0fZ8H+oLWevO6i4/bizg7c8d8i6bxrzbA==}
+ engines: {node: 20 || >=22}
+
lru-cache@4.1.5:
resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
@@ -8387,6 +8395,10 @@ packages:
minimalistic-assert@1.0.1:
resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
+ minimatch@10.0.1:
+ resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==}
+ engines: {node: 20 || >=22}
+
minimatch@3.0.5:
resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==}
@@ -8970,6 +8982,10 @@ packages:
resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
engines: {node: '>=16 || 14 >=14.18'}
+ path-scurry@2.0.0:
+ resolution: {integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==}
+ engines: {node: 20 || >=22}
+
path-to-regexp@0.1.7:
resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
@@ -9842,9 +9858,9 @@ packages:
deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
- rimraf@5.0.7:
- resolution: {integrity: sha512-nV6YcJo5wbLW77m+8KjH8aB/7/rxQy9SZ0HY5shnwULfS+9nmTtVXAJET5NdZmCzA4fPI/Hm1wo/Po/4mopOdg==}
- engines: {node: '>=14.18'}
+ rimraf@6.0.1:
+ resolution: {integrity: sha512-9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==}
+ engines: {node: 20 || >=22}
hasBin: true
rollup-plugin-inject@3.0.2:
@@ -11512,7 +11528,7 @@ snapshots:
'@vitejs/plugin-basic-ssl': 1.1.0(vite@5.1.7(@types/node@20.12.7)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))
ansi-colors: 4.1.3
autoprefixer: 10.4.18(postcss@8.4.35)
- babel-loader: 9.1.3(@babel/core@7.24.0)(webpack@5.90.3)
+ babel-loader: 9.1.3(@babel/core@7.24.0)(webpack@5.90.3(esbuild@0.20.1))
babel-plugin-istanbul: 6.1.1
browserslist: 4.23.0
copy-webpack-plugin: 11.0.0(webpack@5.90.3(esbuild@0.20.1))
@@ -11606,7 +11622,7 @@ snapshots:
'@vitejs/plugin-basic-ssl': 1.1.0(vite@5.1.7(@types/node@20.14.9)(less@4.2.0)(sass@1.71.1)(terser@5.29.1))
ansi-colors: 4.1.3
autoprefixer: 10.4.18(postcss@8.4.35)
- babel-loader: 9.1.3(@babel/core@7.24.0)(webpack@5.90.3)
+ babel-loader: 9.1.3(@babel/core@7.24.0)(webpack@5.90.3(esbuild@0.20.1))
babel-plugin-istanbul: 6.1.1
browserslist: 4.23.0
copy-webpack-plugin: 11.0.0(webpack@5.90.3(esbuild@0.20.1))
@@ -17255,7 +17271,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-loader@9.1.3(@babel/core@7.24.0)(webpack@5.90.3):
+ babel-loader@9.1.3(@babel/core@7.24.0)(webpack@5.90.3(esbuild@0.20.1)):
dependencies:
'@babel/core': 7.24.0
find-cache-dir: 4.0.0
@@ -19660,14 +19676,6 @@ snapshots:
minipass: 7.1.2
path-scurry: 1.11.1
- glob@10.3.15:
- dependencies:
- foreground-child: 3.1.1
- jackspeak: 2.3.6
- minimatch: 9.0.3
- minipass: 7.0.4
- path-scurry: 1.11.1
-
glob@10.4.2:
dependencies:
foreground-child: 3.1.1
@@ -19677,6 +19685,15 @@ snapshots:
package-json-from-dist: 1.0.0
path-scurry: 1.11.1
+ glob@11.0.0:
+ dependencies:
+ foreground-child: 3.1.1
+ jackspeak: 4.0.1
+ minimatch: 10.0.1
+ minipass: 7.1.2
+ package-json-from-dist: 1.0.0
+ path-scurry: 2.0.0
+
glob@7.1.4:
dependencies:
fs.realpath: 1.0.0
@@ -20491,6 +20508,12 @@ snapshots:
optionalDependencies:
'@pkgjs/parseargs': 0.11.0
+ jackspeak@4.0.1:
+ dependencies:
+ '@isaacs/cliui': 8.0.2
+ optionalDependencies:
+ '@pkgjs/parseargs': 0.11.0
+
jake@10.8.7:
dependencies:
async: 3.2.4
@@ -21491,6 +21514,8 @@ snapshots:
lru-cache@10.2.0: {}
+ lru-cache@11.0.0: {}
+
lru-cache@4.1.5:
dependencies:
pseudomap: 1.0.2
@@ -21938,6 +21963,10 @@ snapshots:
minimalistic-assert@1.0.1: {}
+ minimatch@10.0.1:
+ dependencies:
+ brace-expansion: 2.0.1
+
minimatch@3.0.5:
dependencies:
brace-expansion: 1.1.11
@@ -22684,6 +22713,11 @@ snapshots:
lru-cache: 10.2.0
minipass: 7.1.2
+ path-scurry@2.0.0:
+ dependencies:
+ lru-cache: 11.0.0
+ minipass: 7.1.2
+
path-to-regexp@0.1.7: {}
path-to-regexp@6.2.1: {}
@@ -23590,9 +23624,10 @@ snapshots:
dependencies:
glob: 7.2.3
- rimraf@5.0.7:
+ rimraf@6.0.1:
dependencies:
- glob: 10.3.15
+ glob: 11.0.0
+ package-json-from-dist: 1.0.0
rollup-plugin-inject@3.0.2:
dependencies: