Merge branch 'master' into 7114-implement-ocelot-color-tokens-in-frontend-with-theme

This commit is contained in:
Wolfgang Huß 2024-05-05 13:46:38 +02:00 committed by GitHub
commit 095f660d7d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 122 additions and 76 deletions

View File

@ -49,7 +49,7 @@ Factory.define('badge')
}) })
Factory.define('image') Factory.define('image')
.attr('url', faker.image.unsplash.imageUrl) .attr('url', faker.image.url)
.attr('aspectRatio', 1.3333333333333333) .attr('aspectRatio', 1.3333333333333333)
.attr('alt', faker.lorem.sentence) .attr('alt', faker.lorem.sentence)
.attr('type', 'image/jpeg') .attr('type', 'image/jpeg')
@ -63,7 +63,7 @@ Factory.define('basicUser')
.option('password', '1234') .option('password', '1234')
.attrs({ .attrs({
id: uuid, id: uuid,
name: faker.name.fullName, name: faker.person.fullName,
password: '1234', password: '1234',
role: 'user', role: 'user',
termsAndConditionsAgreedVersion: '0.0.1', termsAndConditionsAgreedVersion: '0.0.1',
@ -107,7 +107,7 @@ Factory.define('user')
.option('email', faker.internet.exampleEmail) .option('email', faker.internet.exampleEmail)
.option('avatar', () => .option('avatar', () =>
Factory.build('image', { Factory.build('image', {
url: faker.internet.avatar(), url: faker.image.avatar(),
}), }),
) )
.after(async (buildObject, options) => { .after(async (buildObject, options) => {

View File

@ -632,7 +632,7 @@ const languages = ['de', 'en', 'es', 'fr', 'it', 'pt', 'pl']
categoryIds: ['cat16'], categoryIds: ['cat16'],
author: peterLustig, author: peterLustig,
image: Factory.build('image', { image: Factory.build('image', {
url: faker.image.unsplash.food(300, 169), url: faker.image.urlLoremFlickr({ category: 'food', width: 300, height: 169 }),
sensitive: true, sensitive: true,
aspectRatio: 300 / 169, aspectRatio: 300 / 169,
}), }),
@ -648,7 +648,7 @@ const languages = ['de', 'en', 'es', 'fr', 'it', 'pt', 'pl']
categoryIds: ['cat1'], categoryIds: ['cat1'],
author: bobDerBaumeister, author: bobDerBaumeister,
image: Factory.build('image', { image: Factory.build('image', {
url: faker.image.unsplash.technology(300, 1500), url: faker.image.urlLoremFlickr({ category: 'technics', width: 300, height: 1500 }),
aspectRatio: 300 / 1500, aspectRatio: 300 / 1500,
}), }),
}, },
@ -696,7 +696,7 @@ const languages = ['de', 'en', 'es', 'fr', 'it', 'pt', 'pl']
categoryIds: ['cat6'], categoryIds: ['cat6'],
author: peterLustig, author: peterLustig,
image: Factory.build('image', { image: Factory.build('image', {
url: faker.image.unsplash.buildings(300, 857), url: faker.image.urlLoremFlickr({ category: 'city', width: 300, height: 857 }),
aspectRatio: 300 / 857, aspectRatio: 300 / 857,
}), }),
}, },
@ -735,7 +735,7 @@ const languages = ['de', 'en', 'es', 'fr', 'it', 'pt', 'pl']
categoryIds: ['cat11'], categoryIds: ['cat11'],
author: louie, author: louie,
image: Factory.build('image', { image: Factory.build('image', {
url: faker.image.unsplash.people(300, 901), url: faker.image.urlLoremFlickr({ category: 'people', width: 300, height: 901 }),
aspectRatio: 300 / 901, aspectRatio: 300 / 901,
}), }),
}, },
@ -761,7 +761,7 @@ const languages = ['de', 'en', 'es', 'fr', 'it', 'pt', 'pl']
categoryIds: ['cat14'], categoryIds: ['cat14'],
author: jennyRostock, author: jennyRostock,
image: Factory.build('image', { image: Factory.build('image', {
url: faker.image.unsplash.objects(300, 200), url: faker.image.urlLoremFlickr({ category: 'abstract', width: 300, height: 200 }),
aspectRatio: 300 / 450, aspectRatio: 300 / 450,
}), }),
}, },
@ -821,7 +821,7 @@ const languages = ['de', 'en', 'es', 'fr', 'it', 'pt', 'pl']
mutation: createPostMutation(), mutation: createPostMutation(),
variables: { variables: {
id: 'p8', id: 'p8',
image: faker.image.unsplash.nature(), image: faker.image.urlLoremFlickr({ category: 'nature' }),
title: `Quantum Flow Theory explains Quantum Gravity`, title: `Quantum Flow Theory explains Quantum Gravity`,
content: hashtagAndMention1, content: hashtagAndMention1,
categoryIds: ['cat8'], categoryIds: ['cat8'],
@ -1178,7 +1178,7 @@ const languages = ['de', 'en', 'es', 'fr', 'it', 'pt', 'pl']
categoryIds: ['cat1'], categoryIds: ['cat1'],
author: jennyRostock, author: jennyRostock,
image: Factory.build('image', { image: Factory.build('image', {
url: faker.image.unsplash.objects(), url: faker.image.urlLoremFlickr({ category: 'abstract' }),
}), }),
}, },
) )
@ -1229,7 +1229,7 @@ const languages = ['de', 'en', 'es', 'fr', 'it', 'pt', 'pl']
categoryIds: ['cat1'], categoryIds: ['cat1'],
author: peterLustig, author: peterLustig,
image: Factory.build('image', { image: Factory.build('image', {
url: faker.image.unsplash.buildings(), url: faker.image.urlLoremFlickr({ category: 'city' }),
}), }),
}, },
) )
@ -1280,7 +1280,7 @@ const languages = ['de', 'en', 'es', 'fr', 'it', 'pt', 'pl']
categoryIds: ['cat1'], categoryIds: ['cat1'],
author: dewey, author: dewey,
image: Factory.build('image', { image: Factory.build('image', {
url: faker.image.unsplash.food(), url: faker.image.urlLoremFlickr({ category: 'food' }),
}), }),
}, },
) )
@ -1331,7 +1331,7 @@ const languages = ['de', 'en', 'es', 'fr', 'it', 'pt', 'pl']
categoryIds: ['cat1'], categoryIds: ['cat1'],
author: louie, author: louie,
image: Factory.build('image', { image: Factory.build('image', {
url: faker.image.unsplash.technology(), url: faker.image.urlLoremFlickr({ category: 'technics' }),
}), }),
}, },
) )
@ -1382,7 +1382,7 @@ const languages = ['de', 'en', 'es', 'fr', 'it', 'pt', 'pl']
categoryIds: ['cat1'], categoryIds: ['cat1'],
author: bobDerBaumeister, author: bobDerBaumeister,
image: Factory.build('image', { image: Factory.build('image', {
url: faker.image.unsplash.people(), url: faker.image.urlLoremFlickr({ category: 'people' }),
}), }),
}, },
) )
@ -1433,7 +1433,7 @@ const languages = ['de', 'en', 'es', 'fr', 'it', 'pt', 'pl']
categoryIds: ['cat1'], categoryIds: ['cat1'],
author: huey, author: huey,
image: Factory.build('image', { image: Factory.build('image', {
url: faker.image.unsplash.nature(), url: faker.image.urlLoremFlickr({ category: 'nature' }),
}), }),
}, },
) )

24
package-lock.json generated
View File

@ -12,14 +12,14 @@
"@babel/core": "^7.24.0", "@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.4", "@babel/preset-env": "^7.24.4",
"@babel/register": "^7.23.7", "@babel/register": "^7.23.7",
"@badeball/cypress-cucumber-preprocessor": "^20.0.3", "@badeball/cypress-cucumber-preprocessor": "^20.0.4",
"@cucumber/cucumber": "10.4.0", "@cucumber/cucumber": "10.6.0",
"@cypress/browserify-preprocessor": "^3.0.2", "@cypress/browserify-preprocessor": "^3.0.2",
"@faker-js/faker": "8.4.1", "@faker-js/faker": "8.4.1",
"auto-changelog": "^2.3.0", "auto-changelog": "^2.3.0",
"bcryptjs": "^2.4.3", "bcryptjs": "^2.4.3",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"cypress": "^13.7.3", "cypress": "^13.8.1",
"cypress-network-idle": "^1.14.2", "cypress-network-idle": "^1.14.2",
"date-fns": "^3.3.1", "date-fns": "^3.3.1",
"dotenv": "^16.4.5", "dotenv": "^16.4.5",
@ -2029,9 +2029,9 @@
} }
}, },
"node_modules/@badeball/cypress-cucumber-preprocessor": { "node_modules/@badeball/cypress-cucumber-preprocessor": {
"version": "20.0.3", "version": "20.0.4",
"resolved": "https://registry.npmjs.org/@badeball/cypress-cucumber-preprocessor/-/cypress-cucumber-preprocessor-20.0.3.tgz", "resolved": "https://registry.npmjs.org/@badeball/cypress-cucumber-preprocessor/-/cypress-cucumber-preprocessor-20.0.4.tgz",
"integrity": "sha512-cc7rYEFEVRAZ13LQ2WEnG84VJNO+ErpNsNBP/5eP2JC+2v8WvcVgm8fcqKLOiNgyEWaRuiT+MkU3DXKbBbFVSg==", "integrity": "sha512-1izlopsaJLPVjPN4XV3WhviZOgwXleVMsiTuDYHbJq3QiTUdHUzbticy8cMxtUTKa2dKZZSJTzZIGcXP5wEuag==",
"dev": true, "dev": true,
"funding": [ "funding": [
{ {
@ -2145,9 +2145,9 @@
"dev": true "dev": true
}, },
"node_modules/@cucumber/cucumber": { "node_modules/@cucumber/cucumber": {
"version": "10.4.0", "version": "10.6.0",
"resolved": "https://registry.npmjs.org/@cucumber/cucumber/-/cucumber-10.4.0.tgz", "resolved": "https://registry.npmjs.org/@cucumber/cucumber/-/cucumber-10.6.0.tgz",
"integrity": "sha512-pFPu4tCzHJUm1S4GfWUlhJYYqfbVPCmYCADehuhNU+MR29mvy49DQE6WS6aVdwABPawzpBs0H8EuQYA8Vh9Yqw==", "integrity": "sha512-1ui/PDJelSRioZGYZdxeNepnCetbjbv16FUDdWi6WdjAeMqfCsuiJHjN++b7Wjxd1xKhXdSLfMntqpuNcPTIug==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"@cucumber/ci-environment": "10.0.1", "@cucumber/ci-environment": "10.0.1",
@ -6575,9 +6575,9 @@
"optional": true "optional": true
}, },
"node_modules/cypress": { "node_modules/cypress": {
"version": "13.7.3", "version": "13.8.1",
"resolved": "https://registry.npmjs.org/cypress/-/cypress-13.7.3.tgz", "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.8.1.tgz",
"integrity": "sha512-uoecY6FTCAuIEqLUYkTrxamDBjMHTYak/1O7jtgwboHiTnS1NaMOoR08KcTrbRZFCBvYOiS4tEkQRmsV+xcrag==", "integrity": "sha512-Uk6ovhRbTg6FmXjeZW/TkbRM07KPtvM5gah1BIMp4Y2s+i/NMxgaLw0+PbYTOdw1+egE0FP3mWRiGcRkjjmhzA==",
"dev": true, "dev": true,
"hasInstallScript": true, "hasInstallScript": true,
"dependencies": { "dependencies": {

View File

@ -36,14 +36,14 @@
"@babel/core": "^7.24.0", "@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.4", "@babel/preset-env": "^7.24.4",
"@babel/register": "^7.23.7", "@babel/register": "^7.23.7",
"@badeball/cypress-cucumber-preprocessor": "^20.0.3", "@badeball/cypress-cucumber-preprocessor": "^20.0.4",
"@cucumber/cucumber": "10.4.0", "@cucumber/cucumber": "10.6.0",
"@cypress/browserify-preprocessor": "^3.0.2", "@cypress/browserify-preprocessor": "^3.0.2",
"@faker-js/faker": "8.4.1", "@faker-js/faker": "8.4.1",
"auto-changelog": "^2.3.0", "auto-changelog": "^2.3.0",
"bcryptjs": "^2.4.3", "bcryptjs": "^2.4.3",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"cypress": "^13.7.3", "cypress": "^13.8.1",
"cypress-network-idle": "^1.14.2", "cypress-network-idle": "^1.14.2",
"date-fns": "^3.3.1", "date-fns": "^3.3.1",
"dotenv": "^16.4.5", "dotenv": "^16.4.5",

View File

@ -1,4 +1,4 @@
import faker from '@faker-js/faker' import { faker } from '@faker-js/faker'
import { storiesOf } from '@storybook/vue' import { storiesOf } from '@storybook/vue'
import { withA11y } from '@storybook/addon-a11y' import { withA11y } from '@storybook/addon-a11y'
import HcCommentList from './CommentList.vue' import HcCommentList from './CommentList.vue'
@ -8,7 +8,7 @@ helpers.init()
const commentMock = (fields) => { const commentMock = (fields) => {
return { return {
id: faker.random.uuid(), id: faker.string.uuid(),
title: faker.lorem.sentence(), title: faker.lorem.sentence(),
content: faker.lorem.paragraph(), content: faker.lorem.paragraph(),
createdAt: faker.date.past(), createdAt: faker.date.past(),

View File

@ -1,4 +1,4 @@
import faker from '@faker-js/faker' import { faker } from '@faker-js/faker'
import { storiesOf } from '@storybook/vue' import { storiesOf } from '@storybook/vue'
import { withA11y } from '@storybook/addon-a11y' import { withA11y } from '@storybook/addon-a11y'
import HcEmpty from '~/components/Empty/Empty' import HcEmpty from '~/components/Empty/Empty'
@ -17,7 +17,7 @@ helpers.init()
const postMock = (fields) => { const postMock = (fields) => {
return { return {
...post, ...post,
id: faker.random.uuid(), id: faker.string.uuid(),
createdAt: faker.date.past(), createdAt: faker.date.past(),
updatedAt: faker.date.recent(), updatedAt: faker.date.recent(),
deleted: false, deleted: false,
@ -30,7 +30,7 @@ const postMock = (fields) => {
const userMock = (fields) => { const userMock = (fields) => {
return { return {
...user, ...user,
id: faker.random.uuid(), id: faker.string.uuid(),
createdAt: faker.date.past(), createdAt: faker.date.past(),
updatedAt: faker.date.recent(), updatedAt: faker.date.recent(),
deleted: false, deleted: false,

View File

@ -33,7 +33,7 @@
"apollo-cache-inmemory": "~1.6.6", "apollo-cache-inmemory": "~1.6.6",
"apollo-client": "~2.6.8", "apollo-client": "~2.6.8",
"cookie-universal-nuxt": "~2.2.2", "cookie-universal-nuxt": "~2.2.2",
"cropperjs": "^1.6.1", "cropperjs": "^1.6.2",
"cross-env": "~7.0.3", "cross-env": "~7.0.3",
"date-fns": "2.22.1", "date-fns": "2.22.1",
"express": "~4.19.2", "express": "~4.19.2",
@ -71,7 +71,7 @@
"@babel/core": "^7.24.4", "@babel/core": "^7.24.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.22.4", "@babel/preset-env": "^7.22.4",
"@faker-js/faker": "5.1.0", "@faker-js/faker": "8.4.1",
"@nuxtjs/composition-api": "0.32.0", "@nuxtjs/composition-api": "0.32.0",
"@storybook/addon-a11y": "^8.0.8", "@storybook/addon-a11y": "^8.0.8",
"@storybook/addon-actions": "^5.3.21", "@storybook/addon-actions": "^5.3.21",

View File

@ -2,7 +2,7 @@ import Vue from 'vue'
import Vuex from 'vuex' import Vuex from 'vuex'
import vuexI18n from 'vuex-i18n/dist/vuex-i18n.umd.js' import vuexI18n from 'vuex-i18n/dist/vuex-i18n.umd.js'
import Styleguide from '@human-connection/styleguide' import Styleguide from '@human-connection/styleguide'
import faker from '@faker-js/faker' import { faker } from '@faker-js/faker'
import Filters from '~/plugins/vue-filters' import Filters from '~/plugins/vue-filters'
import Directives from '~/plugins/vue-directives' import Directives from '~/plugins/vue-directives'
import IziToast from '~/plugins/izi-toast' import IziToast from '~/plugins/izi-toast'
@ -61,9 +61,9 @@ const helpers = {
}, },
fakeUser(n) { fakeUser(n) {
return new Array(n || 1).fill(0).map(() => { return new Array(n || 1).fill(0).map(() => {
const name = faker.name.findName() const name = faker.person.fullName()
return { return {
id: faker.random.uuid(), id: faker.string.uuid(),
name, name,
slug: faker.helpers.slugify(name), slug: faker.helpers.slugify(name),
} }
@ -74,14 +74,14 @@ const helpers = {
const title = faker.lorem.words() const title = faker.lorem.words()
const content = faker.lorem.paragraph() const content = faker.lorem.paragraph()
return { return {
id: faker.random.uuid(), id: faker.string.uuid(),
title, title,
content, content,
slug: faker.lorem.slug(title), slug: faker.lorem.slug({ min: 1, max: 3 }, title),
shoutedCount: faker.random.number(), shoutedCount: faker.number.int(),
commentsCount: faker.random.number(), commentsCount: faker.number.int(),
clickedCount: faker.random.number(), clickedCount: faker.number.int(),
viewedTeaserCount: faker.random.number(), viewedTeaserCount: faker.number.int(),
postType: ['Article'], postType: ['Article'],
} }
}) })

View File

@ -2270,10 +2270,10 @@
minimatch "^3.0.4" minimatch "^3.0.4"
strip-json-comments "^3.1.1" strip-json-comments "^3.1.1"
"@faker-js/faker@5.1.0": "@faker-js/faker@8.4.1":
version "5.1.0" version "8.4.1"
resolved "https://registry.yarnpkg.com/@faker-js/faker/-/faker-5.1.0.tgz#cee1d77ada0d0dbbe77201d18b1ebabf432d9c0f" resolved "https://registry.yarnpkg.com/@faker-js/faker/-/faker-8.4.1.tgz#5d5e8aee8fce48f5e189bf730ebd1f758f491451"
integrity sha512-0VonSKh7fBCqvY+V2FLN2ZW4pR4ZtWJalWmwSaiaB7yK7y4qp8vDfuaq9QdLjf/cdZGx3M7Wc4Q+x4fZHxI21Q== integrity sha512-XQ3cU+Q8Uqmrbf2e0cIC/QN43sTBSC8KF12u29Mb47tWrt2hAgBXSgpZMj4Ao8Uk0iJcU99QsOCaIL8934obCg==
"@hapi/address@2.x.x": "@hapi/address@2.x.x":
version "2.0.0" version "2.0.0"
@ -7668,10 +7668,10 @@ create-react-context@^0.2.1:
fbjs "^0.8.0" fbjs "^0.8.0"
gud "^1.0.0" gud "^1.0.0"
cropperjs@^1.6.1: cropperjs@^1.6.2:
version "1.6.1" version "1.6.2"
resolved "https://registry.yarnpkg.com/cropperjs/-/cropperjs-1.6.1.tgz#fd132021d93b824b1b0f2c2c3b763419fb792d89" resolved "https://registry.yarnpkg.com/cropperjs/-/cropperjs-1.6.2.tgz#d1a5d627d880581cca41b7901f06923500e4201b"
integrity sha512-F4wsi+XkDHCOMrHMYjrTEE4QBOrsHHN5/2VsVAaRq8P7E5z7xQpT75S+f/9WikmBEailas3+yo+6zPIomW+NOA== integrity sha512-nhymn9GdnV3CqiEHJVai54TULFAE3VshJTXSqSJKa8yXAKyBKDWdhHarnlIPrshJ0WMFTGuFvG02YjLXfPiuOA==
cross-env@~7.0.3: cross-env@~7.0.3:
version "7.0.3" version "7.0.3"
@ -17341,8 +17341,7 @@ string-length@^4.0.1:
char-regex "^1.0.2" char-regex "^1.0.2"
strip-ansi "^6.0.0" strip-ansi "^6.0.0"
"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.2.3: "string-width-cjs@npm:string-width@^4.2.0":
name string-width-cjs
version "4.2.3" version "4.2.3"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
@ -17395,6 +17394,15 @@ string-width@^4.2.0:
is-fullwidth-code-point "^3.0.0" is-fullwidth-code-point "^3.0.0"
strip-ansi "^6.0.0" strip-ansi "^6.0.0"
string-width@^4.2.3:
version "4.2.3"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
dependencies:
emoji-regex "^8.0.0"
is-fullwidth-code-point "^3.0.0"
strip-ansi "^6.0.1"
string-width@^5.0.1, string-width@^5.1.2: string-width@^5.0.1, string-width@^5.1.2:
version "5.1.2" version "5.1.2"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794"
@ -17434,8 +17442,7 @@ string_decoder@~1.1.1:
dependencies: dependencies:
safe-buffer "~5.1.0" safe-buffer "~5.1.0"
"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.1: "strip-ansi-cjs@npm:strip-ansi@^6.0.1":
name strip-ansi-cjs
version "6.0.1" version "6.0.1"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
@ -17470,6 +17477,13 @@ strip-ansi@^6.0.0:
dependencies: dependencies:
ansi-regex "^5.0.0" ansi-regex "^5.0.0"
strip-ansi@^6.0.1:
version "6.0.1"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
dependencies:
ansi-regex "^5.0.1"
strip-ansi@^7.0.1: strip-ansi@^7.0.1:
version "7.1.0" version "7.1.0"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45"
@ -19420,8 +19434,7 @@ worker-farm@^1.7.0:
dependencies: dependencies:
errno "~0.1.7" errno "~0.1.7"
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: "wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
name wrap-ansi-cjs
version "7.0.0" version "7.0.0"
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
@ -19473,6 +19486,15 @@ wrap-ansi@^6.2.0:
string-width "^4.1.0" string-width "^4.1.0"
strip-ansi "^6.0.0" strip-ansi "^6.0.0"
wrap-ansi@^7.0.0:
version "7.0.0"
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
dependencies:
ansi-styles "^4.0.0"
string-width "^4.1.0"
strip-ansi "^6.0.0"
wrap-ansi@^8.1.0: wrap-ansi@^8.1.0:
version "8.1.0" version "8.1.0"
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"

View File

@ -1109,10 +1109,10 @@
minimatch "^3.0.4" minimatch "^3.0.4"
node-hook "^1.0.0" node-hook "^1.0.0"
"@badeball/cypress-cucumber-preprocessor@^20.0.3": "@badeball/cypress-cucumber-preprocessor@^20.0.4":
version "20.0.3" version "20.0.4"
resolved "https://registry.yarnpkg.com/@badeball/cypress-cucumber-preprocessor/-/cypress-cucumber-preprocessor-20.0.3.tgz#73f53d021bb8ff11aaa003fbd33337bd7d4e5338" resolved "https://registry.yarnpkg.com/@badeball/cypress-cucumber-preprocessor/-/cypress-cucumber-preprocessor-20.0.4.tgz#3d07e015ed9535a76f42537389c5015e6e072589"
integrity sha512-cc7rYEFEVRAZ13LQ2WEnG84VJNO+ErpNsNBP/5eP2JC+2v8WvcVgm8fcqKLOiNgyEWaRuiT+MkU3DXKbBbFVSg== integrity sha512-1izlopsaJLPVjPN4XV3WhviZOgwXleVMsiTuDYHbJq3QiTUdHUzbticy8cMxtUTKa2dKZZSJTzZIGcXP5wEuag==
dependencies: dependencies:
"@badeball/cypress-configuration" "^6.1.0" "@badeball/cypress-configuration" "^6.1.0"
"@cucumber/ci-environment" "^10.0.0" "@cucumber/ci-environment" "^10.0.0"
@ -1157,10 +1157,10 @@
dependencies: dependencies:
regexp-match-indices "1.0.2" regexp-match-indices "1.0.2"
"@cucumber/cucumber@10.4.0", "@cucumber/cucumber@^10.0.0": "@cucumber/cucumber@10.6.0", "@cucumber/cucumber@^10.0.0":
version "10.4.0" version "10.6.0"
resolved "https://registry.yarnpkg.com/@cucumber/cucumber/-/cucumber-10.4.0.tgz#e65fb751d7bfbe1d62d91215672e6d9158358487" resolved "https://registry.yarnpkg.com/@cucumber/cucumber/-/cucumber-10.6.0.tgz#836c912f836ada6c440eb8808c642f192e05b921"
integrity sha512-pFPu4tCzHJUm1S4GfWUlhJYYqfbVPCmYCADehuhNU+MR29mvy49DQE6WS6aVdwABPawzpBs0H8EuQYA8Vh9Yqw== integrity sha512-1ui/PDJelSRioZGYZdxeNepnCetbjbv16FUDdWi6WdjAeMqfCsuiJHjN++b7Wjxd1xKhXdSLfMntqpuNcPTIug==
dependencies: dependencies:
"@cucumber/ci-environment" "10.0.1" "@cucumber/ci-environment" "10.0.1"
"@cucumber/cucumber-expressions" "17.1.0" "@cucumber/cucumber-expressions" "17.1.0"
@ -3775,10 +3775,10 @@ cypress-network-idle@^1.14.2:
resolved "https://registry.yarnpkg.com/cypress-network-idle/-/cypress-network-idle-1.14.2.tgz#0837100861feeb5a18f4c2d9815be079f8590f4d" resolved "https://registry.yarnpkg.com/cypress-network-idle/-/cypress-network-idle-1.14.2.tgz#0837100861feeb5a18f4c2d9815be079f8590f4d"
integrity sha512-xAdR8dH58KFPv8eCDWjviScITrJOcUpuMXYfYTc175nk2/NvnJ+I6ylSn1CM7yZmoV/gLbFa36QLiH5NfNEaLQ== integrity sha512-xAdR8dH58KFPv8eCDWjviScITrJOcUpuMXYfYTc175nk2/NvnJ+I6ylSn1CM7yZmoV/gLbFa36QLiH5NfNEaLQ==
cypress@^13.7.3: cypress@^13.8.1:
version "13.7.3" version "13.8.1"
resolved "https://registry.yarnpkg.com/cypress/-/cypress-13.7.3.tgz#3e7dcd32e007676a6c8e972293c50d6ef329d991" resolved "https://registry.yarnpkg.com/cypress/-/cypress-13.8.1.tgz#f558e51b770a409e2360031bbd36c3f4fb3f2db4"
integrity sha512-uoecY6FTCAuIEqLUYkTrxamDBjMHTYak/1O7jtgwboHiTnS1NaMOoR08KcTrbRZFCBvYOiS4tEkQRmsV+xcrag== integrity sha512-Uk6ovhRbTg6FmXjeZW/TkbRM07KPtvM5gah1BIMp4Y2s+i/NMxgaLw0+PbYTOdw1+egE0FP3mWRiGcRkjjmhzA==
dependencies: dependencies:
"@cypress/request" "^3.0.0" "@cypress/request" "^3.0.0"
"@cypress/xvfb" "^1.2.4" "@cypress/xvfb" "^1.2.4"
@ -7119,7 +7119,16 @@ string-argv@0.3.1:
resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da" resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da"
integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg== integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==
"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0: "string-width-cjs@npm:string-width@^4.2.0":
version "4.2.3"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
dependencies:
emoji-regex "^8.0.0"
is-fullwidth-code-point "^3.0.0"
strip-ansi "^6.0.1"
string-width@^4.1.0, string-width@^4.2.0:
version "4.2.3" version "4.2.3"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
@ -7160,7 +7169,14 @@ string_decoder@~1.1.1:
dependencies: dependencies:
safe-buffer "~5.1.0" safe-buffer "~5.1.0"
"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@6.0.1, strip-ansi@^6.0.0, strip-ansi@^6.0.1: "strip-ansi-cjs@npm:strip-ansi@^6.0.1":
version "6.0.1"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
dependencies:
ansi-regex "^5.0.1"
strip-ansi@6.0.1, strip-ansi@^6.0.0, strip-ansi@^6.0.1:
version "6.0.1" version "6.0.1"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
@ -7841,8 +7857,7 @@ workerpool@6.2.1:
resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.2.1.tgz#46fc150c17d826b86a008e5a4508656777e9c343" resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.2.1.tgz#46fc150c17d826b86a008e5a4508656777e9c343"
integrity sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw== integrity sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: "wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
name wrap-ansi-cjs
version "7.0.0" version "7.0.0"
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
@ -7860,6 +7875,15 @@ wrap-ansi@^6.2.0:
string-width "^4.1.0" string-width "^4.1.0"
strip-ansi "^6.0.0" strip-ansi "^6.0.0"
wrap-ansi@^7.0.0:
version "7.0.0"
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
dependencies:
ansi-styles "^4.0.0"
string-width "^4.1.0"
strip-ansi "^6.0.0"
wrap-ansi@^8.1.0: wrap-ansi@^8.1.0:
version "8.1.0" version "8.1.0"
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"