From 3a3dab527ada0d799a4c7b8537f41c7af6e4f71d Mon Sep 17 00:00:00 2001 From: Sarka Chwastkova Date: Thu, 11 Jul 2024 11:37:16 +0200 Subject: [PATCH] feat: update minimum tailwindcss version to 3.4.4 --- package.json | 4 +- packages/orbit-components/package.json | 2 +- packages/orbit-components/src/Card/index.tsx | 2 +- .../orbit-components/src/Inline/helpers.ts | 108 +++--- .../src/Toast/ToastMessage.tsx | 4 +- .../src/common/tailwind/spacing.ts | 264 +++++++-------- .../src/primitives/ButtonPrimitive/index.tsx | 2 +- yarn.lock | 310 +++++++++++------- 8 files changed, 390 insertions(+), 306 deletions(-) diff --git a/package.json b/package.json index c8dd47c58f..b2f917d0e9 100644 --- a/package.json +++ b/package.json @@ -98,7 +98,7 @@ "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-react": "^7.33.2", "eslint-plugin-react-hooks": "^4.2.0", - "eslint-plugin-tailwindcss": "^3.14.0", + "eslint-plugin-tailwindcss": "^3.17.4", "fast-glob": "^3.2.12", "filedirname": "^2.7.0", "gitdiff-parser": "^0.3.1", @@ -135,7 +135,7 @@ "stylelint-config-recommended": "^13.0.0", "stylelint-config-styled-components": "^0.1.1", "stylelint-config-tailwindcss": "^0.0.7", - "tailwindcss": "^3.4.0", + "tailwindcss": "^3.4.4", "ts-node": "^10.9.1", "tsc-files": "^1.1.3", "tsup": "^6.7.0", diff --git a/packages/orbit-components/package.json b/packages/orbit-components/package.json index 134a3eb94c..cc85812c71 100644 --- a/packages/orbit-components/package.json +++ b/packages/orbit-components/package.json @@ -132,7 +132,7 @@ "surge": "^0.23.0", "svg2ttf": "^6.0.0", "svgicons2svgfont": "^12.0.0", - "tailwindcss": "^3.4.0", + "tailwindcss": "^3.4.4", "ttf2woff2": "^4.0.1", "vite": "^4.5.3", "webpack": "^5.76.0", diff --git a/packages/orbit-components/src/Card/index.tsx b/packages/orbit-components/src/Card/index.tsx index 8f103ecdda..763e5a3601 100644 --- a/packages/orbit-components/src/Card/index.tsx +++ b/packages/orbit-components/src/Card/index.tsx @@ -46,7 +46,7 @@ export default function Card({
*]:border-elevation-flat-border-color lm:[&>*:first-child]:rounded-t-normal lm:[&>*:last-child]:rounded-b-normal w-full [&>*:first-child]:border-t", + "orbit-card font-base bg-white-normal *:border-elevation-flat-border-color lm:first:*:rounded-t-normal lm:last:*:rounded-b-normal w-full first:*:border-t", spaceAfter != null && spaceAfterClasses[spaceAfter], )} data-test={dataTest} diff --git a/packages/orbit-components/src/Inline/helpers.ts b/packages/orbit-components/src/Inline/helpers.ts index cd505ccf1b..896b13e38a 100644 --- a/packages/orbit-components/src/Inline/helpers.ts +++ b/packages/orbit-components/src/Inline/helpers.ts @@ -8,74 +8,74 @@ const spacingClasses: { [K in QUERIES | SPACINGS]: K extends QUERIES ? Record : string; } = { [SPACINGS.NONE]: "", - [SPACINGS.XXXSMALL]: "-mt-xxxs -ms-xxxs [&>*]:mt-xxxs [&>*]:ms-xxxs", - [SPACINGS.XXSMALL]: "-mt-xxs -ms-xxs [&>*]:mt-xxs [&>*]:ms-xxs", - [SPACINGS.XSMALL]: "-mt-xs -ms-xs [&>*]:mt-xs [&>*]:ms-xs", - [SPACINGS.SMALL]: "-mt-sm -ms-sm [&>*]:mt-sm [&>*]:ms-sm", - [SPACINGS.MEDIUM]: "-mt-md -ms-md [&>*]:mt-md [&>*]:ms-md", - [SPACINGS.LARGE]: "-mt-lg -ms-lg [&>*]:mt-lg [&>*]:ms-lg", - [SPACINGS.XLARGE]: "-mt-xl -ms-xl [&>*]:mt-xl [&>*]:ms-xl", - [SPACINGS.XXLARGE]: "-mt-xxl -ms-xxl [&>*]:mt-xxl [&>*]:ms-xxl", - [SPACINGS.XXXLARGE]: "-mt-xxxl -ms-xxxl [&>*]:mt-xxxl [&>*]:ms-xxxl", + [SPACINGS.XXXSMALL]: "-mt-xxxs -ms-xxxs *:mt-xxxs *:ms-xxxs", + [SPACINGS.XXSMALL]: "-mt-xxs -ms-xxs *:mt-xxs *:ms-xxs", + [SPACINGS.XSMALL]: "-mt-xs -ms-xs *:mt-xs *:ms-xs", + [SPACINGS.SMALL]: "-mt-sm -ms-sm *:mt-sm *:ms-sm", + [SPACINGS.MEDIUM]: "-mt-md -ms-md *:mt-md *:ms-md", + [SPACINGS.LARGE]: "-mt-lg -ms-lg *:mt-lg *:ms-lg", + [SPACINGS.XLARGE]: "-mt-xl -ms-xl *:mt-xl *:ms-xl", + [SPACINGS.XXLARGE]: "-mt-xxl -ms-xxl *:mt-xxl *:ms-xxl", + [SPACINGS.XXXLARGE]: "-mt-xxxl -ms-xxxl *:mt-xxxl *:ms-xxxl", [QUERIES.LARGEDESKTOP]: { [SPACINGS.NONE]: "", - [SPACINGS.XXXSMALL]: "ld:-mt-xxxs ld:-ms-xxxs ld:[&>*]:mt-xxxs ld:[&>*]:ms-xxxs", - [SPACINGS.XXSMALL]: "ld:-mt-xxs ld:-ms-xxs ld:[&>*]:mt-xxs ld:[&>*]:ms-xxs", - [SPACINGS.XSMALL]: "ld:-mt-xs ld:-ms-xs ld:[&>*]:mt-xs ld:[&>*]:ms-xs", - [SPACINGS.SMALL]: "ld:-mt-sm ld:-ms-sm ld:[&>*]:mt-sm ld:[&>*]:ms-sm", - [SPACINGS.MEDIUM]: "ld:-mt-md ld:-ms-md ld:[&>*]:mt-md ld:[&>*]:ms-md", - [SPACINGS.LARGE]: "ld:-mt-lg ld:-ms-lg ld:[&>*]:mt-lg ld:[&>*]:ms-lg", - [SPACINGS.XLARGE]: "ld:-mt-xl ld:-ms-xl ld:[&>*]:mt-xl ld:[&>*]:ms-xl", - [SPACINGS.XXLARGE]: "ld:-mt-xxl ld:-ms-xxl ld:[&>*]:mt-xxl ld:[&>*]:ms-xxl", - [SPACINGS.XXXLARGE]: "ld:-mt-xxxl ld:-ms-xxxl ld:[&>*]:mt-xxxl ld:[&>*]:ms-xxxl", + [SPACINGS.XXXSMALL]: "ld:-mt-xxxs ld:-ms-xxxs ld:*:mt-xxxs ld:*:ms-xxxs", + [SPACINGS.XXSMALL]: "ld:-mt-xxs ld:-ms-xxs ld:*:mt-xxs ld:*:ms-xxs", + [SPACINGS.XSMALL]: "ld:-mt-xs ld:-ms-xs ld:*:mt-xs ld:*:ms-xs", + [SPACINGS.SMALL]: "ld:-mt-sm ld:-ms-sm ld:*:mt-sm ld:*:ms-sm", + [SPACINGS.MEDIUM]: "ld:-mt-md ld:-ms-md ld:*:mt-md ld:*:ms-md", + [SPACINGS.LARGE]: "ld:-mt-lg ld:-ms-lg ld:*:mt-lg ld:*:ms-lg", + [SPACINGS.XLARGE]: "ld:-mt-xl ld:-ms-xl ld:*:mt-xl ld:*:ms-xl", + [SPACINGS.XXLARGE]: "ld:-mt-xxl ld:-ms-xxl ld:*:mt-xxl ld:*:ms-xxl", + [SPACINGS.XXXLARGE]: "ld:-mt-xxxl ld:-ms-xxxl ld:*:mt-xxxl ld:*:ms-xxxl", }, [QUERIES.DESKTOP]: { [SPACINGS.NONE]: "", - [SPACINGS.XXXSMALL]: "de:-mt-xxxs de:-ms-xxxs de:[&>*]:mt-xxxs de:[&>*]:ms-xxxs", - [SPACINGS.XXSMALL]: "de:-mt-xxs de:-ms-xxs de:[&>*]:mt-xxs de:[&>*]:ms-xxs", - [SPACINGS.XSMALL]: "de:-mt-xs de:-ms-xs de:[&>*]:mt-xs de:[&>*]:ms-xs", - [SPACINGS.SMALL]: "de:-mt-sm de:-ms-sm de:[&>*]:mt-sm de:[&>*]:ms-sm", - [SPACINGS.MEDIUM]: "de:-mt-md de:-ms-md de:[&>*]:mt-md de:[&>*]:ms-md", - [SPACINGS.LARGE]: "de:-mt-lg de:-ms-lg de:[&>*]:mt-lg de:[&>*]:ms-lg", - [SPACINGS.XLARGE]: "de:-mt-xl de:-ms-xl de:[&>*]:mt-xl de:[&>*]:ms-xl", - [SPACINGS.XXLARGE]: "de:-mt-xxl de:-ms-xxl de:[&>*]:mt-xxl de:[&>*]:ms-xxl", - [SPACINGS.XXXLARGE]: "de:-mt-xxxl de:-ms-xxxl de:[&>*]:mt-xxxl de:[&>*]:ms-xxxl", + [SPACINGS.XXXSMALL]: "de:-mt-xxxs de:-ms-xxxs de:*:mt-xxxs de:*:ms-xxxs", + [SPACINGS.XXSMALL]: "de:-mt-xxs de:-ms-xxs de:*:mt-xxs de:*:ms-xxs", + [SPACINGS.XSMALL]: "de:-mt-xs de:-ms-xs de:*:mt-xs de:*:ms-xs", + [SPACINGS.SMALL]: "de:-mt-sm de:-ms-sm de:*:mt-sm de:*:ms-sm", + [SPACINGS.MEDIUM]: "de:-mt-md de:-ms-md de:*:mt-md de:*:ms-md", + [SPACINGS.LARGE]: "de:-mt-lg de:-ms-lg de:*:mt-lg de:*:ms-lg", + [SPACINGS.XLARGE]: "de:-mt-xl de:-ms-xl de:*:mt-xl de:*:ms-xl", + [SPACINGS.XXLARGE]: "de:-mt-xxl de:-ms-xxl de:*:mt-xxl de:*:ms-xxl", + [SPACINGS.XXXLARGE]: "de:-mt-xxxl de:-ms-xxxl de:*:mt-xxxl de:*:ms-xxxl", }, [QUERIES.TABLET]: { [SPACINGS.NONE]: "", - [SPACINGS.XXXSMALL]: "tb:-mt-xxxs tb:-ms-xxxs tb:[&>*]:mt-xxxs tb:[&>*]:ms-xxxs", - [SPACINGS.XXSMALL]: "tb:-mt-xxs tb:-ms-xxs tb:[&>*]:mt-xxs tb:[&>*]:ms-xxs", - [SPACINGS.XSMALL]: "tb:-mt-xs tb:-ms-xs tb:[&>*]:mt-xs tb:[&>*]:ms-xs", - [SPACINGS.SMALL]: "tb:-mt-sm tb:-ms-sm tb:[&>*]:mt-sm tb:[&>*]:ms-sm", - [SPACINGS.MEDIUM]: "tb:-mt-md tb:-ms-md tb:[&>*]:mt-md tb:[&>*]:ms-md", - [SPACINGS.LARGE]: "tb:-mt-lg tb:-ms-lg tb:[&>*]:mt-lg tb:[&>*]:ms-lg", - [SPACINGS.XLARGE]: "tb:-mt-xl tb:-ms-xl tb:[&>*]:mt-xl tb:[&>*]:ms-xl", - [SPACINGS.XXLARGE]: "tb:-mt-xxl tb:-ms-xxl tb:[&>*]:mt-xxl tb:[&>*]:ms-xxl", - [SPACINGS.XXXLARGE]: "tb:-mt-xxxl tb:-ms-xxxl tb:[&>*]:mt-xxxl tb:[&>*]:ms-xxxl", + [SPACINGS.XXXSMALL]: "tb:-mt-xxxs tb:-ms-xxxs tb:*:mt-xxxs tb:*:ms-xxxs", + [SPACINGS.XXSMALL]: "tb:-mt-xxs tb:-ms-xxs tb:*:mt-xxs tb:*:ms-xxs", + [SPACINGS.XSMALL]: "tb:-mt-xs tb:-ms-xs tb:*:mt-xs tb:*:ms-xs", + [SPACINGS.SMALL]: "tb:-mt-sm tb:-ms-sm tb:*:mt-sm tb:*:ms-sm", + [SPACINGS.MEDIUM]: "tb:-mt-md tb:-ms-md tb:*:mt-md tb:*:ms-md", + [SPACINGS.LARGE]: "tb:-mt-lg tb:-ms-lg tb:*:mt-lg tb:*:ms-lg", + [SPACINGS.XLARGE]: "tb:-mt-xl tb:-ms-xl tb:*:mt-xl tb:*:ms-xl", + [SPACINGS.XXLARGE]: "tb:-mt-xxl tb:-ms-xxl tb:*:mt-xxl tb:*:ms-xxl", + [SPACINGS.XXXLARGE]: "tb:-mt-xxxl tb:-ms-xxxl tb:*:mt-xxxl tb:*:ms-xxxl", }, [QUERIES.LARGEMOBILE]: { [SPACINGS.NONE]: "", - [SPACINGS.XXXSMALL]: "lm:-mt-xxxs lm:-ms-xxxs lm:[&>*]:mt-xxxs lm:[&>*]:ms-xxxs", - [SPACINGS.XXSMALL]: "lm:-mt-xxs lm:-ms-xxs lm:[&>*]:mt-xxs lm:[&>*]:ms-xxs", - [SPACINGS.XSMALL]: "lm:-mt-xs lm:-ms-xs lm:[&>*]:mt-xs lm:[&>*]:ms-xs", - [SPACINGS.SMALL]: "lm:-mt-sm lm:-ms-sm lm:[&>*]:mt-sm lm:[&>*]:ms-sm", - [SPACINGS.MEDIUM]: "lm:-mt-md lm:-ms-md lm:[&>*]:mt-md lm:[&>*]:ms-md", - [SPACINGS.LARGE]: "lm:-mt-lg lm:-ms-lg lm:[&>*]:mt-lg lm:[&>*]:ms-lg", - [SPACINGS.XLARGE]: "lm:-mt-xl lm:-ms-xl lm:[&>*]:mt-xl lm:[&>*]:ms-xl", - [SPACINGS.XXLARGE]: "lm:-mt-xxl lm:-ms-xxl lm:[&>*]:mt-xxl lm:[&>*]:ms-xxl", - [SPACINGS.XXXLARGE]: "lm:-mt-xxxl lm:-ms-xxxl lm:[&>*]:mt-xxxl lm:[&>*]:ms-xxxl", + [SPACINGS.XXXSMALL]: "lm:-mt-xxxs lm:-ms-xxxs lm:*:mt-xxxs lm:*:ms-xxxs", + [SPACINGS.XXSMALL]: "lm:-mt-xxs lm:-ms-xxs lm:*:mt-xxs lm:*:ms-xxs", + [SPACINGS.XSMALL]: "lm:-mt-xs lm:-ms-xs lm:*:mt-xs lm:*:ms-xs", + [SPACINGS.SMALL]: "lm:-mt-sm lm:-ms-sm lm:*:mt-sm lm:*:ms-sm", + [SPACINGS.MEDIUM]: "lm:-mt-md lm:-ms-md lm:*:mt-md lm:*:ms-md", + [SPACINGS.LARGE]: "lm:-mt-lg lm:-ms-lg lm:*:mt-lg lm:*:ms-lg", + [SPACINGS.XLARGE]: "lm:-mt-xl lm:-ms-xl lm:*:mt-xl lm:*:ms-xl", + [SPACINGS.XXLARGE]: "lm:-mt-xxl lm:-ms-xxl lm:*:mt-xxl lm:*:ms-xxl", + [SPACINGS.XXXLARGE]: "lm:-mt-xxxl lm:-ms-xxxl lm:*:mt-xxxl lm:*:ms-xxxl", }, [QUERIES.MEDIUMMOBILE]: { [SPACINGS.NONE]: "", - [SPACINGS.XXXSMALL]: "mm:-mt-xxxs mm:-ms-xxxs mm:[&>*]:mt-xxxs mm:[&>*]:ms-xxxs", - [SPACINGS.XXSMALL]: "mm:-mt-xxs mm:-ms-xxs mm:[&>*]:mt-xxs mm:[&>*]:ms-xxs", - [SPACINGS.XSMALL]: "mm:-mt-xs mm:-ms-xs mm:[&>*]:mt-xs mm:[&>*]:ms-xs", - [SPACINGS.SMALL]: "mm:-mt-sm mm:-ms-sm mm:[&>*]:mt-sm mm:[&>*]:ms-sm", - [SPACINGS.MEDIUM]: "mm:-mt-md mm:-ms-md mm:[&>*]:mt-md mm:[&>*]:ms-md", - [SPACINGS.LARGE]: "mm:-mt-lg mm:-ms-lg mm:[&>*]:mt-lg mm:[&>*]:ms-lg", - [SPACINGS.XLARGE]: "mm:-mt-xl mm:-ms-xl mm:[&>*]:mt-xl mm:[&>*]:ms-xl", - [SPACINGS.XXLARGE]: "mm:-mt-xxl mm:-ms-xxl mm:[&>*]:mt-xxl mm:[&>*]:ms-xxl", - [SPACINGS.XXXLARGE]: "mm:-mt-xxxl mm:-ms-xxxl mm:[&>*]:mt-xxxl mm:[&>*]:ms-xxxl", + [SPACINGS.XXXSMALL]: "mm:-mt-xxxs mm:-ms-xxxs mm:*:mt-xxxs mm:*:ms-xxxs", + [SPACINGS.XXSMALL]: "mm:-mt-xxs mm:-ms-xxs mm:*:mt-xxs mm:*:ms-xxs", + [SPACINGS.XSMALL]: "mm:-mt-xs mm:-ms-xs mm:*:mt-xs mm:*:ms-xs", + [SPACINGS.SMALL]: "mm:-mt-sm mm:-ms-sm mm:*:mt-sm mm:*:ms-sm", + [SPACINGS.MEDIUM]: "mm:-mt-md mm:-ms-md mm:*:mt-md mm:*:ms-md", + [SPACINGS.LARGE]: "mm:-mt-lg mm:-ms-lg mm:*:mt-lg mm:*:ms-lg", + [SPACINGS.XLARGE]: "mm:-mt-xl mm:-ms-xl mm:*:mt-xl mm:*:ms-xl", + [SPACINGS.XXLARGE]: "mm:-mt-xxl mm:-ms-xxl mm:*:mt-xxl mm:*:ms-xxl", + [SPACINGS.XXXLARGE]: "mm:-mt-xxxl mm:-ms-xxxl mm:*:mt-xxxl mm:*:ms-xxxl", }, }; diff --git a/packages/orbit-components/src/Toast/ToastMessage.tsx b/packages/orbit-components/src/Toast/ToastMessage.tsx index abf760913b..ce19b9454d 100644 --- a/packages/orbit-components/src/Toast/ToastMessage.tsx +++ b/packages/orbit-components/src/Toast/ToastMessage.tsx @@ -58,7 +58,7 @@ const ToastMessage = ({
*:not(:last-child)]:space-y-none", - [SPACING.XXXSmall]: "safari:[&>*:not(:last-child)]:space-y-xxxs", - [SPACING.XXSmall]: "safari:[&>*:not(:last-child)]:space-y-xxs", - [SPACING.XSmall]: "safari:[&>*:not(:last-child)]:space-y-xs", - [SPACING.small]: "safari:[&>*:not(:last-child)]:space-y-sm", - [SPACING.medium]: "safari:[&>*:not(:last-child)]:space-y-md", - [SPACING.large]: "safari:[&>*:not(:last-child)]:space-y-lg", - [SPACING.XLarge]: "safari:[&>*:not(:last-child)]:space-y-xl", - [SPACING.XXLarge]: "safari:[&>*:not(:last-child)]:space-y-xxl", - [SPACING.XXXLarge]: "safari:[&>*:not(:last-child)]:space-y-xxxl", - [SPACING.reverse]: "safari:[&>*:not(:last-child)]:space-y-reverse", + [SPACING.none]: "safari:not-last:*:space-y-none", + [SPACING.XXXSmall]: "safari:not-last:*:space-y-xxxs", + [SPACING.XXSmall]: "safari:not-last:*:space-y-xxs", + [SPACING.XSmall]: "safari:not-last:*:space-y-xs", + [SPACING.small]: "safari:not-last:*:space-y-sm", + [SPACING.medium]: "safari:not-last:*:space-y-md", + [SPACING.large]: "safari:not-last:*:space-y-lg", + [SPACING.XLarge]: "safari:not-last:*:space-y-xl", + [SPACING.XXLarge]: "safari:not-last:*:space-y-xxl", + [SPACING.XXXLarge]: "safari:not-last:*:space-y-xxxl", + [SPACING.reverse]: "safari:not-last:*:space-y-reverse", [QUERIES.MEDIUMMOBILE]: { - [SPACING.none]: "mm:safari:[&>*:not(:last-child)]:space-y-none", - [SPACING.XXXSmall]: "mm:safari:[&>*:not(:last-child)]:space-y-xxxs", - [SPACING.XXSmall]: "mm:safari:[&>*:not(:last-child)]:space-y-xxs", - [SPACING.XSmall]: "mm:safari:[&>*:not(:last-child)]:space-y-xs", - [SPACING.small]: "mm:safari:[&>*:not(:last-child)]:space-y-sm", - [SPACING.medium]: "mm:safari:[&>*:not(:last-child)]:space-y-md", - [SPACING.large]: "mm:safari:[&>*:not(:last-child)]:space-y-lg", - [SPACING.XLarge]: "mm:safari:[&>*:not(:last-child)]:space-y-xl", - [SPACING.XXLarge]: "mm:safari:[&>*:not(:last-child)]:space-y-xxl", - [SPACING.XXXLarge]: "mm:safari:[&>*:not(:last-child)]:space-y-xxxl", - [SPACING.reverse]: "mm:safari:[&>*:not(:last-child)]:space-y-reverse", + [SPACING.none]: "mm:safari:*:not-last:space-y-none", + [SPACING.XXXSmall]: "mm:safari:*:not-last:space-y-xxxs", + [SPACING.XXSmall]: "mm:safari:not-last:*:space-y-xxs", + [SPACING.XSmall]: "mm:safari:not-last:*:space-y-xs", + [SPACING.small]: "mm:safari:not-last:*:space-y-sm", + [SPACING.medium]: "mm:safari:not-last:*:space-y-md", + [SPACING.large]: "mm:safari:not-last:*:space-y-lg", + [SPACING.XLarge]: "mm:safari:not-last:*:space-y-xl", + [SPACING.XXLarge]: "mm:safari:not-last:*:space-y-xxl", + [SPACING.XXXLarge]: "mm:safari:not-last:*:space-y-xxxl", + [SPACING.reverse]: "mm:safari:not-last:*:space-y-reverse", }, [QUERIES.LARGEMOBILE]: { - [SPACING.none]: "lm:safari:[&>*:not(:last-child)]:space-y-none", - [SPACING.XXXSmall]: "lm:safari:[&>*:not(:last-child)]:space-y-xxxs", - [SPACING.XXSmall]: "lm:safari:[&>*:not(:last-child)]:space-y-xxs", - [SPACING.XSmall]: "lm:safari:[&>*:not(:last-child)]:space-y-xs", - [SPACING.small]: "lm:safari:[&>*:not(:last-child)]:space-y-sm", - [SPACING.medium]: "lm:safari:[&>*:not(:last-child)]:space-y-md", - [SPACING.large]: "lm:safari:[&>*:not(:last-child)]:space-y-lg", - [SPACING.XLarge]: "lm:safari:[&>*:not(:last-child)]:space-y-xl", - [SPACING.XXLarge]: "lm:safari:[&>*:not(:last-child)]:space-y-xxl", - [SPACING.XXXLarge]: "lm:safari:[&>*:not(:last-child)]:space-y-xxxl", - [SPACING.reverse]: "lm:safari:[&>*:not(:last-child)]:space-y-reverse", + [SPACING.none]: "lm:safari:not-last:*:space-y-none", + [SPACING.XXXSmall]: "lm:safari:not-last:*:space-y-xxxs", + [SPACING.XXSmall]: "lm:safari:not-last:*:space-y-xxs", + [SPACING.XSmall]: "lm:safari:not-last:*:space-y-xs", + [SPACING.small]: "lm:safari:not-last:*:space-y-sm", + [SPACING.medium]: "lm:safari:not-last:*:space-y-md", + [SPACING.large]: "lm:safari:not-last:*:space-y-lg", + [SPACING.XLarge]: "lm:safari:not-last:*:space-y-xl", + [SPACING.XXLarge]: "lm:safari:not-last:*:space-y-xxl", + [SPACING.XXXLarge]: "lm:safari:not-last:*:space-y-xxxl", + [SPACING.reverse]: "lm:safari:not-last:*:space-y-reverse", }, [QUERIES.TABLET]: { - [SPACING.none]: "tb:safari:[&>*:not(:last-child)]:space-y-none", - [SPACING.XXXSmall]: "tb:safari:[&>*:not(:last-child)]:space-y-xxxs", - [SPACING.XXSmall]: "tb:safari:[&>*:not(:last-child)]:space-y-xxs", - [SPACING.XSmall]: "tb:safari:[&>*:not(:last-child)]:space-y-xs", - [SPACING.small]: "tb:safari:[&>*:not(:last-child)]:space-y-sm", - [SPACING.medium]: "tb:safari:[&>*:not(:last-child)]:space-y-md", - [SPACING.large]: "tb:safari:[&>*:not(:last-child)]:space-y-lg", - [SPACING.XLarge]: "tb:safari:[&>*:not(:last-child)]:space-y-xl", - [SPACING.XXLarge]: "tb:safari:[&>*:not(:last-child)]:space-y-xxl", - [SPACING.XXXLarge]: "tb:safari:[&>*:not(:last-child)]:space-y-xxxl", - [SPACING.reverse]: "tb:safari:[&>*:not(:last-child)]:space-y-reverse", + [SPACING.none]: "tb:safari:not-last:*:space-y-none", + [SPACING.XXXSmall]: "tb:safari:not-last:*:space-y-xxxs", + [SPACING.XXSmall]: "tb:safari:not-last:*:space-y-xxs", + [SPACING.XSmall]: "tb:safari:not-last:*:space-y-xs", + [SPACING.small]: "tb:safari:not-last:*:space-y-sm", + [SPACING.medium]: "tb:safari:not-last:*:space-y-md", + [SPACING.large]: "tb:safari:not-last:*:space-y-lg", + [SPACING.XLarge]: "tb:safari:not-last:*:space-y-xl", + [SPACING.XXLarge]: "tb:safari:not-last:*:space-y-xxl", + [SPACING.XXXLarge]: "tb:safari:not-last:*:space-y-xxxl", + [SPACING.reverse]: "tb:safari:not-last:*:space-y-reverse", }, [QUERIES.DESKTOP]: { - [SPACING.none]: "de:safari:[&>*:not(:last-child)]:space-y-none", - [SPACING.XXXSmall]: "de:safari:[&>*:not(:last-child)]:space-y-xxxs", - [SPACING.XXSmall]: "de:safari:[&>*:not(:last-child)]:space-y-xxs", - [SPACING.XSmall]: "de:safari:[&>*:not(:last-child)]:space-y-xs", - [SPACING.small]: "de:safari:[&>*:not(:last-child)]:space-y-sm", - [SPACING.medium]: "de:safari:[&>*:not(:last-child)]:space-y-md", - [SPACING.large]: "de:safari:[&>*:not(:last-child)]:space-y-lg", - [SPACING.XLarge]: "de:safari:[&>*:not(:last-child)]:space-y-xl", - [SPACING.XXLarge]: "de:safari:[&>*:not(:last-child)]:space-y-xxl", - [SPACING.XXXLarge]: "de:safari:[&>*:not(:last-child)]:space-y-xxxl", - [SPACING.reverse]: "de:safari:[&>*:not(:last-child)]:space-y-reverse", + [SPACING.none]: "de:safari:not-last:*:space-y-none", + [SPACING.XXXSmall]: "de:safari:not-last:*:space-y-xxxs", + [SPACING.XXSmall]: "de:safari:not-last:*:space-y-xxs", + [SPACING.XSmall]: "de:safari:not-last:*:space-y-xs", + [SPACING.small]: "de:safari:not-last:*:space-y-sm", + [SPACING.medium]: "de:safari:not-last:*:space-y-md", + [SPACING.large]: "de:safari:not-last:*:space-y-lg", + [SPACING.XLarge]: "de:safari:not-last:*:space-y-xl", + [SPACING.XXLarge]: "de:safari:not-last:*:space-y-xxl", + [SPACING.XXXLarge]: "de:safari:not-last:*:space-y-xxxl", + [SPACING.reverse]: "de:safari:not-last:*:space-y-reverse", }, [QUERIES.LARGEDESKTOP]: { - [SPACING.none]: "ld:safari:[&>*:not(:last-child)]:space-y-none", - [SPACING.XXXSmall]: "ld:safari:[&>*:not(:last-child)]:space-y-xxxs", - [SPACING.XXSmall]: "ld:safari:[&>*:not(:last-child)]:space-y-xxs", - [SPACING.XSmall]: "ld:safari:[&>*:not(:last-child)]:space-y-xs", - [SPACING.small]: "ld:safari:[&>*:not(:last-child)]:space-y-sm", - [SPACING.medium]: "ld:safari:[&>*:not(:last-child)]:space-y-md", - [SPACING.large]: "ld:safari:[&>*:not(:last-child)]:space-y-lg", - [SPACING.XLarge]: "ld:safari:[&>*:not(:last-child)]:space-y-xl", - [SPACING.XXLarge]: "ld:safari:[&>*:not(:last-child)]:space-y-xxl", - [SPACING.XXXLarge]: "ld:safari:[&>*:not(:last-child)]:space-y-xxxl", - [SPACING.reverse]: "ld:safari:[&>*:not(:last-child)]:space-y-reverse", + [SPACING.none]: "ld:safari:not-last:*:space-y-none", + [SPACING.XXXSmall]: "ld:safari:not-last:*:space-y-xxxs", + [SPACING.XXSmall]: "ld:safari:not-last:*:space-y-xxs", + [SPACING.XSmall]: "ld:safari:not-last:*:space-y-xs", + [SPACING.small]: "ld:safari:not-last:*:space-y-sm", + [SPACING.medium]: "ld:safari:not-last:*:space-y-md", + [SPACING.large]: "ld:safari:not-last:*:space-y-lg", + [SPACING.XLarge]: "ld:safari:not-last:*:space-y-xl", + [SPACING.XXLarge]: "ld:safari:not-last:*:space-y-xxl", + [SPACING.XXXLarge]: "ld:safari:not-last:*:space-y-xxxl", + [SPACING.reverse]: "ld:safari:not-last:*:space-y-reverse", }, }; const safariHorizontalTokens = { - [SPACING.none]: "safari:[&>*:not(:last-child)]:space-x-none", - [SPACING.XXXSmall]: "safari:[&>*:not(:last-child)]:space-x-xxxs", - [SPACING.XXSmall]: "safari:[&>*:not(:last-child)]:space-x-xxs", - [SPACING.XSmall]: "safari:[&>*:not(:last-child)]:space-x-xs", - [SPACING.small]: "safari:[&>*:not(:last-child)]:space-x-sm", - [SPACING.medium]: "safari:[&>*:not(:last-child)]:space-x-md", - [SPACING.large]: "safari:[&>*:not(:last-child)]:space-x-lg", - [SPACING.XLarge]: "safari:[&>*:not(:last-child)]:space-x-xl", - [SPACING.XXLarge]: "safari:[&>*:not(:last-child)]:space-x-xxl", - [SPACING.XXXLarge]: "safari:[&>*:not(:last-child)]:space-x-xxxl", - [SPACING.reverse]: "safari:[&>*:not(:last-child)]:space-x-reverse", + [SPACING.none]: "safari:not-last:*:space-x-none", + [SPACING.XXXSmall]: "safari:not-last:*:space-x-xxxs", + [SPACING.XXSmall]: "safari:not-last:*:space-x-xxs", + [SPACING.XSmall]: "safari:not-last:*:space-x-xs", + [SPACING.small]: "safari:not-last:*:space-x-sm", + [SPACING.medium]: "safari:not-last:*:space-x-md", + [SPACING.large]: "safari:not-last:*:space-x-lg", + [SPACING.XLarge]: "safari:not-last:*:space-x-xl", + [SPACING.XXLarge]: "safari:not-last:*:space-x-xxl", + [SPACING.XXXLarge]: "safari:not-last:*:space-x-xxxl", + [SPACING.reverse]: "safari:not-last:*:space-x-reverse", [QUERIES.MEDIUMMOBILE]: { - [SPACING.none]: "mm:safari:[&>*:not(:last-child)]:space-x-none", - [SPACING.XXXSmall]: "mm:safari:[&>*:not(:last-child)]:space-x-xxxs", - [SPACING.XXSmall]: "mm:safari:[&>*:not(:last-child)]:space-x-xxs", - [SPACING.XSmall]: "mm:safari:[&>*:not(:last-child)]:space-x-xs", - [SPACING.small]: "mm:safari:[&>*:not(:last-child)]:space-x-sm", - [SPACING.medium]: "mm:safari:[&>*:not(:last-child)]:space-x-md", - [SPACING.large]: "mm:safari:[&>*:not(:last-child)]:space-x-lg", - [SPACING.XLarge]: "mm:safari:[&>*:not(:last-child)]:space-x-xl", - [SPACING.XXLarge]: "mm:safari:[&>*:not(:last-child)]:space-x-xxl", - [SPACING.XXXLarge]: "mm:safari:[&>*:not(:last-child)]:space-x-xxxl", - [SPACING.reverse]: "mm:safari:[&>*:not(:last-child)]:space-x-reverse", + [SPACING.none]: "mm:safari:not-last:*:space-x-none", + [SPACING.XXXSmall]: "mm:safari:not-last:*:space-x-xxxs", + [SPACING.XXSmall]: "mm:safari:not-last:*:space-x-xxs", + [SPACING.XSmall]: "mm:safari:not-last:*:space-x-xs", + [SPACING.small]: "mm:safari:not-last:*:space-x-sm", + [SPACING.medium]: "mm:safari:not-last:*:space-x-md", + [SPACING.large]: "mm:safari:not-last:*:space-x-lg", + [SPACING.XLarge]: "mm:safari:not-last:*:space-x-xl", + [SPACING.XXLarge]: "mm:safari:not-last:*:space-x-xxl", + [SPACING.XXXLarge]: "mm:safari:not-last:*:space-x-xxxl", + [SPACING.reverse]: "mm:safari:not-last:*:space-x-reverse", }, [QUERIES.LARGEMOBILE]: { - [SPACING.none]: "lm:safari:[&>*:not(:last-child)]:space-x-none", - [SPACING.XXXSmall]: "lm:safari:[&>*:not(:last-child)]:space-x-xxxs", - [SPACING.XXSmall]: "lm:safari:[&>*:not(:last-child)]:space-x-xxs", - [SPACING.XSmall]: "lm:safari:[&>*:not(:last-child)]:space-x-xs", - [SPACING.small]: "lm:safari:[&>*:not(:last-child)]:space-x-sm", - [SPACING.medium]: "lm:safari:[&>*:not(:last-child)]:space-x-md", - [SPACING.large]: "lm:safari:[&>*:not(:last-child)]:space-x-lg", - [SPACING.XLarge]: "lm:safari:[&>*:not(:last-child)]:space-x-xl", - [SPACING.XXLarge]: "lm:safari:[&>*:not(:last-child)]:space-x-xxl", - [SPACING.XXXLarge]: "lm:safari:[&>*:not(:last-child)]:space-x-xxxl", - [SPACING.reverse]: "lm:safari:[&>*:not(:last-child)]:space-x-reverse", + [SPACING.none]: "lm:safari:not-last:*:space-x-none", + [SPACING.XXXSmall]: "lm:safari:not-last:*:space-x-xxxs", + [SPACING.XXSmall]: "lm:safari:not-last:*:space-x-xxs", + [SPACING.XSmall]: "lm:safari:not-last:*:space-x-xs", + [SPACING.small]: "lm:safari:not-last:*:space-x-sm", + [SPACING.medium]: "lm:safari:not-last:*:space-x-md", + [SPACING.large]: "lm:safari:not-last:*:space-x-lg", + [SPACING.XLarge]: "lm:safari:not-last:*:space-x-xl", + [SPACING.XXLarge]: "lm:safari:not-last:*:space-x-xxl", + [SPACING.XXXLarge]: "lm:safari:not-last:*:space-x-xxxl", + [SPACING.reverse]: "lm:safari:not-last:*:space-x-reverse", }, [QUERIES.TABLET]: { - [SPACING.none]: "tb:safari:[&>*:not(:last-child)]:space-x-none", - [SPACING.XXXSmall]: "tb:safari:[&>*:not(:last-child)]:space-x-xxxs", - [SPACING.XXSmall]: "tb:safari:[&>*:not(:last-child)]:space-x-xxs", - [SPACING.XSmall]: "tb:safari:[&>*:not(:last-child)]:space-x-xs", - [SPACING.small]: "tb:safari:[&>*:not(:last-child)]:space-x-sm", - [SPACING.medium]: "tb:safari:[&>*:not(:last-child)]:space-x-md", - [SPACING.large]: "tb:safari:[&>*:not(:last-child)]:space-x-lg", - [SPACING.XLarge]: "tb:safari:[&>*:not(:last-child)]:space-x-xl", - [SPACING.XXLarge]: "tb:safari:[&>*:not(:last-child)]:space-x-xxl", - [SPACING.XXXLarge]: "tb:safari:[&>*:not(:last-child)]:space-x-xxxl", - [SPACING.reverse]: "tb:safari:[&>*:not(:last-child)]:space-x-reverse", + [SPACING.none]: "tb:safari:not-last:*:space-x-none", + [SPACING.XXXSmall]: "tb:safari:not-last:*:space-x-xxxs", + [SPACING.XXSmall]: "tb:safari:not-last:*:space-x-xxs", + [SPACING.XSmall]: "tb:safari:not-last:*:space-x-xs", + [SPACING.small]: "tb:safari:not-last:*:space-x-sm", + [SPACING.medium]: "tb:safari:not-last:*:space-x-md", + [SPACING.large]: "tb:safari:not-last:*:space-x-lg", + [SPACING.XLarge]: "tb:safari:not-last:*:space-x-xl", + [SPACING.XXLarge]: "tb:safari:not-last:*:space-x-xxl", + [SPACING.XXXLarge]: "tb:safari:not-last:*:space-x-xxxl", + [SPACING.reverse]: "tb:safari:not-last:*:space-x-reverse", }, [QUERIES.DESKTOP]: { - [SPACING.none]: "de:safari:[&>*:not(:last-child)]:space-x-none", - [SPACING.XXXSmall]: "de:safari:[&>*:not(:last-child)]:space-x-xxxs", - [SPACING.XXSmall]: "de:safari:[&>*:not(:last-child)]:space-x-xxs", - [SPACING.XSmall]: "de:safari:[&>*:not(:last-child)]:space-x-xs", - [SPACING.small]: "de:safari:[&>*:not(:last-child)]:space-x-sm", - [SPACING.medium]: "de:safari:[&>*:not(:last-child)]:space-x-md", - [SPACING.large]: "de:safari:[&>*:not(:last-child)]:space-x-lg", - [SPACING.XLarge]: "de:safari:[&>*:not(:last-child)]:space-x-xl", - [SPACING.XXLarge]: "de:safari:[&>*:not(:last-child)]:space-x-xxl", - [SPACING.XXXLarge]: "de:safari:[&>*:not(:last-child)]:space-x-xxxl", - [SPACING.reverse]: "de:safari:[&>*:not(:last-child)]:space-x-reverse", + [SPACING.none]: "de:safari:not-last:*:space-x-none", + [SPACING.XXXSmall]: "de:safari:not-last:*:space-x-xxxs", + [SPACING.XXSmall]: "de:safari:not-last:*:space-x-xxs", + [SPACING.XSmall]: "de:safari:not-last:*:space-x-xs", + [SPACING.small]: "de:safari:not-last:*:space-x-sm", + [SPACING.medium]: "de:safari:not-last:*:space-x-md", + [SPACING.large]: "de:safari:not-last:*:space-x-lg", + [SPACING.XLarge]: "de:safari:not-last:*:space-x-xl", + [SPACING.XXLarge]: "de:safari:not-last:*:space-x-xxl", + [SPACING.XXXLarge]: "de:safari:not-last:*:space-x-xxxl", + [SPACING.reverse]: "de:safari:not-last:*:space-x-reverse", }, [QUERIES.LARGEDESKTOP]: { - [SPACING.none]: "ld:safari:[&>*:not(:last-child)]:space-x-none", - [SPACING.XXXSmall]: "ld:safari:[&>*:not(:last-child)]:space-x-xxxs", - [SPACING.XXSmall]: "ld:safari:[&>*:not(:last-child)]:space-x-xxs", - [SPACING.XSmall]: "ld:safari:[&>*:not(:last-child)]:space-x-xs", - [SPACING.small]: "ld:safari:[&>*:not(:last-child)]:space-x-sm", - [SPACING.medium]: "ld:safari:[&>*:not(:last-child)]:space-x-md", - [SPACING.large]: "ld:safari:[&>*:not(:last-child)]:space-x-lg", - [SPACING.XLarge]: "ld:safari:[&>*:not(:last-child)]:space-x-xl", - [SPACING.XXLarge]: "ld:safari:[&>*:not(:last-child)]:space-x-xxl", - [SPACING.XXXLarge]: "ld:safari:[&>*:not(:last-child)]:space-x-xxxl", - [SPACING.reverse]: "ld:safari:[&>*:not(:last-child)]:space-x-reverse", + [SPACING.none]: "ld:safari:not-last:*:space-x-none", + [SPACING.XXXSmall]: "ld:safari:not-last:*:space-x-xxxs", + [SPACING.XXSmall]: "ld:safari:not-last:*:space-x-xxs", + [SPACING.XSmall]: "ld:safari:not-last:*:space-x-xs", + [SPACING.small]: "ld:safari:not-last:*:space-x-sm", + [SPACING.medium]: "ld:safari:not-last:*:space-x-md", + [SPACING.large]: "ld:safari:not-last:*:space-x-lg", + [SPACING.XLarge]: "ld:safari:not-last:*:space-x-xl", + [SPACING.XXLarge]: "ld:safari:not-last:*:space-x-xxl", + [SPACING.XXXLarge]: "ld:safari:not-last:*:space-x-xxxl", + [SPACING.reverse]: "ld:safari:not-last:*:space-x-reverse", }, }; diff --git a/packages/orbit-components/src/primitives/ButtonPrimitive/index.tsx b/packages/orbit-components/src/primitives/ButtonPrimitive/index.tsx index 9794efae0e..88d16d9178 100644 --- a/packages/orbit-components/src/primitives/ButtonPrimitive/index.tsx +++ b/packages/orbit-components/src/primitives/ButtonPrimitive/index.tsx @@ -161,7 +161,7 @@ const ButtonPrimitive = React.forwardRef*]:align-middle [&_.orbit-loading-spinner]:stroke-[currentColor]", + "orbit-button-primitive font-base duration-fast group relative max-w-full items-center justify-center border-none text-center leading-none transition-all *:align-middle [&_.orbit-loading-spinner]:stroke-current", fullWidth ? "w-full flex-auto" : "flex-none", circled !== true && "rounded-large tb:rounded-normal", isDisabled diff --git a/yarn.lock b/yarn.lock index b390422909..bc144eae61 100644 --- a/yarn.lock +++ b/yarn.lock @@ -14,7 +14,7 @@ "@alloc/quick-lru@^5.2.0": version "5.2.0" - resolved "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz" + resolved "https://registry.yarnpkg.com/@alloc/quick-lru/-/quick-lru-5.2.0.tgz#7bf68b20c0a350f936915fcae06f58e32007ce30" integrity sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw== "@ampproject/remapping@^2.2.0": @@ -2618,7 +2618,7 @@ "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": version "1.4.15" - resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== "@jridgewell/trace-mapping@0.3.9": @@ -2987,7 +2987,7 @@ "@nodelib/fs.scandir@2.1.5": version "2.1.5" - resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== dependencies: "@nodelib/fs.stat" "2.0.5" @@ -2995,7 +2995,7 @@ "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": version "2.0.5" - resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== "@nodelib/fs.stat@^1.1.2": @@ -3005,7 +3005,7 @@ "@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": version "1.2.8" - resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== dependencies: "@nodelib/fs.scandir" "2.1.5" @@ -6804,12 +6804,12 @@ ansi-styles@^6.0.0, ansi-styles@^6.1.0, ansi-styles@^6.2.1: any-promise@^1.0.0: version "1.3.0" - resolved "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz" + resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== anymatch@^3.0.3, anymatch@~3.1.2: version "3.1.3" - resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== dependencies: normalize-path "^3.0.0" @@ -6860,7 +6860,7 @@ arg@^4.1.0: arg@^5.0.2: version "5.0.2" - resolved "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz" + resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== argparse@^1.0.7: @@ -7548,7 +7548,7 @@ bail@^2.0.0: balanced-match@^1.0.0: version "1.0.2" - resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== balanced-match@^2.0.0: @@ -7661,9 +7661,9 @@ big.js@^5.2.2: integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== binary-extensions@^2.0.0: - version "2.2.0" - resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz" - integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + version "2.3.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.3.0.tgz#f6e14a97858d327252200242d4ccfe522c445522" + integrity sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw== bindings@^1.5.0: version "1.5.0" @@ -7780,7 +7780,7 @@ bplist-parser@^0.2.0: brace-expansion@^1.1.7: version "1.1.11" - resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== dependencies: balanced-match "^1.0.0" @@ -7809,20 +7809,13 @@ braces@^2.3.1: split-string "^3.0.2" to-regex "^3.0.1" -braces@^3.0.3: +braces@^3.0.3, braces@~3.0.2: version "3.0.3" resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== dependencies: fill-range "^7.1.1" -braces@~3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== - dependencies: - fill-range "^7.0.1" - browser-assert@^1.2.1: version "1.2.1" resolved "https://registry.npmjs.org/browser-assert/-/browser-assert-1.2.1.tgz" @@ -8470,7 +8463,7 @@ cheerio@^1.0.0-rc.10: parse5 "^7.0.0" parse5-htmlparser2-tree-adapter "^7.0.0" -chokidar@^3.0.0, chokidar@^3.3.0, chokidar@^3.4.0, chokidar@^3.4.2, chokidar@^3.5.1, chokidar@^3.5.3: +chokidar@^3.0.0, chokidar@^3.3.0, chokidar@^3.4.0, chokidar@^3.4.2, chokidar@^3.5.1: version "3.5.3" resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz" integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== @@ -8485,6 +8478,21 @@ chokidar@^3.0.0, chokidar@^3.3.0, chokidar@^3.4.0, chokidar@^3.4.2, chokidar@^3. optionalDependencies: fsevents "~2.3.2" +chokidar@^3.5.3: + version "3.6.0" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b" + integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + chownr@^1.1.1: version "1.1.4" resolved "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz" @@ -8986,7 +8994,7 @@ compute-scroll-into-view@^1.0.17: concat-map@0.0.1: version "0.0.1" - resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== concat-stream@^1.5.2, concat-stream@^1.6.0, concat-stream@^1.6.2: @@ -9581,7 +9589,7 @@ css.escape@^1.5.1: cssesc@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== cssfilter@0.0.10: @@ -10241,7 +10249,7 @@ devlop@^1.0.0, devlop@^1.1.0: didyoumean@^1.2.2: version "1.2.2" - resolved "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz" + resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== diff-match-patch@^1.0.0: @@ -11288,10 +11296,10 @@ eslint-plugin-storybook@^0.6.12: requireindex "^1.1.0" ts-dedent "^2.2.0" -eslint-plugin-tailwindcss@^3.14.0: - version "3.14.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-tailwindcss/-/eslint-plugin-tailwindcss-3.14.0.tgz#634edcbd5a3989a68bca5b41b9627172b86489d2" - integrity sha512-SGy4JmZoP5m1bXCbcsPfQg1/axOdriJf9L22HghNMyDTM5mybg2XEkaMwgax4aR13zZJRRB1nWmkuYUn+SV6/Q== +eslint-plugin-tailwindcss@^3.17.4: + version "3.17.4" + resolved "https://registry.yarnpkg.com/eslint-plugin-tailwindcss/-/eslint-plugin-tailwindcss-3.17.4.tgz#363d2a5d15e80b4cb1bb67054430a8a6e562c014" + integrity sha512-gJAEHmCq2XFfUP/+vwEfEJ9igrPeZFg+skeMtsxquSQdxba9XRk5bn0Bp9jxG1VV9/wwPKi1g3ZjItu6MIjhNg== dependencies: fast-glob "^3.2.5" postcss "^8.4.4" @@ -11938,13 +11946,20 @@ fastest-levenshtein@^1.0.12, fastest-levenshtein@^1.0.16: resolved "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz" integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg== -fastq@^1.13.0, fastq@^1.6.0: +fastq@^1.13.0: version "1.15.0" resolved "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz" integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== dependencies: reusify "^1.0.4" +fastq@^1.6.0: + version "1.17.1" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" + integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== + dependencies: + reusify "^1.0.4" + fault@^1.0.0, fault@^1.0.1, fault@^1.0.2: version "1.0.4" resolved "https://registry.npmjs.org/fault/-/fault-1.0.4.tgz" @@ -12120,13 +12135,6 @@ fill-range@^4.0.0: repeat-string "^1.6.1" to-regex-range "^2.1.0" -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== - dependencies: - to-regex-range "^5.0.1" - fill-range@^7.1.1: version "7.1.1" resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" @@ -12527,7 +12535,7 @@ fs-readdir-recursive@^1.1.0: fs.realpath@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== fsevents@2.3.2: @@ -13526,7 +13534,7 @@ github-slugger@^1.0.0, github-slugger@^1.2.1: glob-parent@5.1.2, glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" - resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== dependencies: is-glob "^4.0.1" @@ -13541,7 +13549,7 @@ glob-parent@^3.1.0: glob-parent@^6.0.2: version "6.0.2" - resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== dependencies: is-glob "^4.0.3" @@ -13570,7 +13578,7 @@ glob@7.1.4: glob@7.1.6: version "7.1.6" - resolved "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== dependencies: fs.realpath "^1.0.0" @@ -13591,6 +13599,18 @@ glob@^10.0.0, glob@^10.2.2: minipass "^5.0.0 || ^6.0.2 || ^7.0.0" path-scurry "^1.10.1" +glob@^10.3.10: + version "10.4.2" + resolved "https://registry.yarnpkg.com/glob/-/glob-10.4.2.tgz#bed6b95dade5c1f80b4434daced233aee76160e5" + integrity sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w== + dependencies: + foreground-child "^3.1.0" + jackspeak "^3.1.2" + minimatch "^9.0.4" + minipass "^7.1.2" + package-json-from-dist "^1.0.0" + path-scurry "^1.11.1" + glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@^7.2.0, glob@^7.2.3: version "7.2.3" resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz" @@ -14050,7 +14070,7 @@ hasha@^5.2.2: is-stream "^2.0.0" type-fest "^0.8.0" -hasown@^2.0.0: +hasown@^2.0.0, hasown@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== @@ -14645,7 +14665,7 @@ indent-string@^5.0.0: inflight@^1.0.4: version "1.0.6" - resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== dependencies: once "^1.3.0" @@ -14653,7 +14673,7 @@ inflight@^1.0.4: inherits@2, inherits@2.0.4, inherits@^2.0.0, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.0, inherits@~2.0.3: version "2.0.4" - resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== inherits@2.0.3: @@ -14892,7 +14912,7 @@ is-bigint@^1.0.1: is-binary-path@~2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== dependencies: binary-extensions "^2.0.0" @@ -14941,13 +14961,20 @@ is-ci@^2.0.0: dependencies: ci-info "^2.0.0" -is-core-module@^2.11.0, is-core-module@^2.13.0, is-core-module@^2.5.0, is-core-module@^2.8.1, is-core-module@^2.9.0: +is-core-module@^2.11.0, is-core-module@^2.5.0, is-core-module@^2.8.1, is-core-module@^2.9.0: version "2.13.1" resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384" integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== dependencies: hasown "^2.0.0" +is-core-module@^2.13.0: + version "2.14.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.14.0.tgz#43b8ef9f46a6a08888db67b1ffd4ec9e3dfd59d1" + integrity sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A== + dependencies: + hasown "^2.0.2" + is-data-descriptor@^0.1.4: version "0.1.4" resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz" @@ -15036,7 +15063,7 @@ is-extglob@^1.0.0: is-extglob@^2.1.0, is-extglob@^2.1.1: version "2.1.1" - resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== is-finalizationregistry@^1.0.2: @@ -15096,7 +15123,7 @@ is-glob@^3.0.0, is-glob@^3.1.0: is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: version "4.0.3" - resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== dependencies: is-extglob "^2.1.1" @@ -15232,7 +15259,7 @@ is-number@^3.0.0: is-number@^7.0.0: version "7.0.0" - resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== is-obj@^1.0.0: @@ -15616,6 +15643,15 @@ jackspeak@^2.0.3: optionalDependencies: "@pkgjs/parseargs" "^0.11.0" +jackspeak@^3.1.2: + version "3.4.0" + resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.0.tgz#a75763ff36ad778ede6a156d8ee8b124de445b4a" + integrity sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw== + dependencies: + "@isaacs/cliui" "^8.0.2" + optionalDependencies: + "@pkgjs/parseargs" "^0.11.0" + jake@^10.8.5: version "10.8.7" resolved "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz" @@ -16074,11 +16110,16 @@ jest@^29.3.1: import-local "^3.0.2" jest-cli "^29.3.1" -jiti@^1.18.2, jiti@^1.19.1: +jiti@^1.18.2: version "1.21.0" resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.0.tgz#7c97f8fe045724e136a397f7340475244156105d" integrity sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q== +jiti@^1.21.0: + version "1.21.6" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.6.tgz#6c7f7398dd4b3142767f9a168af2f317a428d268" + integrity sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w== + joi@^17.4.2, joi@^17.7.0: version "17.9.2" resolved "https://registry.npmjs.org/joi/-/joi-17.9.2.tgz" @@ -16631,10 +16672,10 @@ libnpx@^10.2.4: lilconfig@^2.0.3, lilconfig@^2.0.5, lilconfig@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== -lilconfig@~3.1.1: +lilconfig@^3.0.0, lilconfig@~3.1.1: version "3.1.2" resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.1.2.tgz#e4a7c3cb549e3a606c8dcc32e5ae1005e62c05cb" integrity sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow== @@ -16646,7 +16687,7 @@ limiter@^1.0.5: lines-and-columns@^1.1.6: version "1.2.4" - resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== lines-and-columns@~2.0.3: @@ -17135,6 +17176,11 @@ lru-cache@4.0.0: pseudomap "^1.0.1" yallist "^2.0.0" +lru-cache@^10.2.0: + version "10.3.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.3.0.tgz#4a4aaf10c84658ab70f79a85a9a3f1e1fb11196b" + integrity sha512-CQl19J/g+Hbjbv4Y3mFNNXFEL/5t/KCg8POCuUqd4rMKjGG+j1ybER83hxV58zL+dFI1PTkt3GNFSHRt+d8qEQ== + lru-cache@^4.0.0, lru-cache@^4.0.1, lru-cache@^4.1.5: version "4.1.5" resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz" @@ -17936,6 +17982,13 @@ minimatch@^8.0.2: dependencies: brace-expansion "^2.0.1" +minimatch@^9.0.4: + version "9.0.5" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz#d74f9dd6b57d83d8e98cfb82133b03978bc929e5" + integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== + dependencies: + brace-expansion "^2.0.1" + minimist-options@4.1.0, minimist-options@^4.0.2: version "4.1.0" resolved "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz" @@ -18024,6 +18077,11 @@ minipass@^5.0.0: resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.0.3.tgz#05ea638da44e475037ed94d1c7efcc76a25e1974" integrity sha512-LhbbwCfz3vsb12j/WkWQPZfKTsgqIe1Nf/ti1pKjYESGLHIVjWU96G9/ljLH4F9mWNVhlQOm0VySdAWzf05dpg== +minipass@^7.1.2: + version "7.1.2" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz#93a9626ce5e5e66bd4db86849e7515e92340a707" + integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw== + minizlib@^2.1.1, minizlib@^2.1.2: version "2.1.2" resolved "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz" @@ -18226,7 +18284,7 @@ mute-stream@~1.0.0: mz@^2.7.0: version "2.7.0" - resolved "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz" + resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== dependencies: any-promise "^1.0.0" @@ -18532,7 +18590,7 @@ normalize-path@^2.1.1: normalize-path@^3.0.0, normalize-path@~3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== normalize-range@^0.1.2: @@ -18802,7 +18860,7 @@ object-fit-images@^3.2.4: object-hash@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== object-inspect@^1.12.3, object-inspect@^1.9.0: @@ -18913,7 +18971,7 @@ on-headers@~1.0.2: once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" - resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== dependencies: wrappy "1" @@ -19243,6 +19301,11 @@ p-waterfall@2.1.1: dependencies: p-reduce "^2.0.0" +package-json-from-dist@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz#e501cd3094b278495eb4258d4c9f6d5ac3019f00" + integrity sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw== + package-json@^4.0.0: version "4.0.1" resolved "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz" @@ -19546,7 +19609,7 @@ path-exists@^5.0.0: path-is-absolute@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== path-is-inside@^1.0.1, path-is-inside@^1.0.2: @@ -19571,7 +19634,7 @@ path-key@^4.0.0: path-parse@^1.0.7: version "1.0.7" - resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== path-root-regex@^0.1.0: @@ -19594,6 +19657,14 @@ path-scurry@^1.10.1, path-scurry@^1.6.1: lru-cache "^9.1.1 || ^10.0.0" minipass "^5.0.0 || ^6.0.2 || ^7.0.0" +path-scurry@^1.11.1: + version "1.11.1" + resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz#7960a668888594a0720b12a911d1a742ab9f11d2" + integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA== + dependencies: + lru-cache "^10.2.0" + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" + path-to-regexp@0.1.7: version "0.1.7" resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz" @@ -19659,7 +19730,7 @@ picocolors@^1.0.0, picocolors@^1.0.1: picomatch@2.3.1, picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.0, picomatch@^2.3.1: version "2.3.1" - resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== pidtree@~0.6.0: @@ -19674,7 +19745,7 @@ pify@5.0.0: pify@^2.2.0, pify@^2.3.0: version "2.3.0" - resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== pify@^3.0.0: @@ -19859,7 +19930,7 @@ postcss-flexbugs-fixes@^5.0.2: postcss-import@^15.1.0: version "15.1.0" - resolved "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-15.1.0.tgz#41c64ed8cc0e23735a9698b3249ffdbf704adc70" integrity sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew== dependencies: postcss-value-parser "^4.0.0" @@ -19868,7 +19939,7 @@ postcss-import@^15.1.0: postcss-js@^4.0.1: version "4.0.1" - resolved "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz" + resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.1.tgz#61598186f3703bab052f1c4f7d805f3991bee9d2" integrity sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw== dependencies: camelcase-css "^2.0.1" @@ -19881,7 +19952,7 @@ postcss-load-config@^3.0.1: lilconfig "^2.0.5" yaml "^1.10.2" -postcss-load-config@^4.0.0, postcss-load-config@^4.0.1: +postcss-load-config@^4.0.0: version "4.0.1" resolved "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz" integrity sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA== @@ -19889,6 +19960,14 @@ postcss-load-config@^4.0.0, postcss-load-config@^4.0.1: lilconfig "^2.0.5" yaml "^2.1.1" +postcss-load-config@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-4.0.2.tgz#7159dcf626118d33e299f485d6afe4aff7c4a3e3" + integrity sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ== + dependencies: + lilconfig "^3.0.0" + yaml "^2.3.4" + postcss-loader@^5.3.0: version "5.3.0" resolved "https://registry.npmjs.org/postcss-loader/-/postcss-loader-5.3.0.tgz" @@ -19987,7 +20066,7 @@ postcss-modules-values@^4.0.0: postcss-nested@^6.0.1: version "6.0.1" - resolved "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz" + resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.0.1.tgz#f83dc9846ca16d2f4fa864f16e9d9f7d0961662c" integrity sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ== dependencies: postcss-selector-parser "^6.0.11" @@ -20096,7 +20175,15 @@ postcss-safe-parser@^6.0.0: resolved "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz" integrity sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ== -postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.13, postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.9: +postcss-selector-parser@^6.0.11: + version "6.1.0" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.1.0.tgz#49694cb4e7c649299fea510a29fa6577104bcf53" + integrity sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + +postcss-selector-parser@^6.0.13, postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.9: version "6.0.13" resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz" integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ== @@ -20134,7 +20221,7 @@ postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.2, postcss-value-parser@^ resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== -postcss@^8.2.14, postcss@^8.2.15, postcss@^8.2.9, postcss@^8.3.11, postcss@^8.4.21, postcss@^8.4.23, postcss@^8.4.27, postcss@^8.4.28, postcss@^8.4.31, postcss@^8.4.38, postcss@^8.4.4: +postcss@^8.2.14, postcss@^8.2.15, postcss@^8.2.9, postcss@^8.3.11, postcss@^8.4.21, postcss@^8.4.27, postcss@^8.4.28, postcss@^8.4.31, postcss@^8.4.38: version "8.4.38" resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.38.tgz#b387d533baf2054288e337066d81c6bee9db9e0e" integrity sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A== @@ -20143,6 +20230,15 @@ postcss@^8.2.14, postcss@^8.2.15, postcss@^8.2.9, postcss@^8.3.11, postcss@^8.4. picocolors "^1.0.0" source-map-js "^1.2.0" +postcss@^8.4.23, postcss@^8.4.4: + version "8.4.39" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.39.tgz#aa3c94998b61d3a9c259efa51db4b392e1bde0e3" + integrity sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw== + dependencies: + nanoid "^3.3.7" + picocolors "^1.0.1" + source-map-js "^1.2.0" + prebuild-install@^7.1.1: version "7.1.1" resolved "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.1.tgz" @@ -20516,7 +20612,7 @@ querystringify@^2.1.1: queue-microtask@^1.2.2: version "1.2.3" - resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== queue-tick@^1.0.1: @@ -20901,7 +20997,7 @@ reactcss@^1.2.0: read-cache@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== dependencies: pify "^2.3.0" @@ -21036,7 +21132,7 @@ readable-web-to-node-stream@^3.0.0: readdirp@~3.6.0: version "3.6.0" - resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== dependencies: picomatch "^2.2.1" @@ -22438,7 +22534,7 @@ retry@^0.12.0: reusify@^1.0.4: version "1.0.4" - resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== rfdc@^1.3.0: @@ -22518,7 +22614,7 @@ run-async@^2.2.0, run-async@^2.4.0: run-parallel@^1.1.9: version "1.2.0" - resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== dependencies: queue-microtask "^1.2.2" @@ -23677,16 +23773,7 @@ string-similarity@^1.2.2: lodash.map "^4.6.0" lodash.maxby "^4.6.0" -"string-width-cjs@npm:string-width@^4.2.0": - version "4.2.3" - resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" - 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@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.2, string-width@^4.2.3: +"string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.2, string-width@^4.2.3: version "4.2.3" resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -23812,7 +23899,7 @@ stringify-entities@^4.0.0: character-entities-html4 "^2.0.0" character-entities-legacy "^3.0.0" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1": +"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -23840,13 +23927,6 @@ strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: dependencies: ansi-regex "^4.1.0" -strip-ansi@^6.0.0, strip-ansi@^6.0.1: - version "6.0.1" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - strip-ansi@^7.0.1, strip-ansi@^7.1.0: version "7.1.0" resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz" @@ -24062,7 +24142,7 @@ stylis@4.2.0: resolved "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz" integrity sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw== -sucrase@^3.20.3, sucrase@^3.31.0, sucrase@^3.32.0: +sucrase@^3.20.3, sucrase@^3.31.0: version "3.34.0" resolved "https://registry.npmjs.org/sucrase/-/sucrase-3.34.0.tgz" integrity sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw== @@ -24075,6 +24155,19 @@ sucrase@^3.20.3, sucrase@^3.31.0, sucrase@^3.32.0: pirates "^4.0.1" ts-interface-checker "^0.1.9" +sucrase@^3.32.0: + version "3.35.0" + resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.35.0.tgz#57f17a3d7e19b36d8995f06679d121be914ae263" + integrity sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA== + dependencies: + "@jridgewell/gen-mapping" "^0.3.2" + commander "^4.0.0" + glob "^10.3.10" + lines-and-columns "^1.1.6" + mz "^2.7.0" + pirates "^4.0.1" + ts-interface-checker "^0.1.9" + sudo-prompt@^8.2.0: version "8.2.5" resolved "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz" @@ -24128,7 +24221,7 @@ supports-hyperlinks@^3.0.0: supports-preserve-symlinks-flag@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== surge-fstream-ignore@^1.0.6: @@ -24299,10 +24392,10 @@ table@^6.0.9, table@^6.8.1: string-width "^4.2.3" strip-ansi "^6.0.1" -tailwindcss@^3.4.0: - version "3.4.1" - resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.4.1.tgz#f512ca5d1dd4c9503c7d3d28a968f1ad8f5c839d" - integrity sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA== +tailwindcss@^3.4.4: + version "3.4.4" + resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.4.4.tgz#351d932273e6abfa75ce7d226b5bf3a6cb257c05" + integrity sha512-ZoyXOdJjISB7/BcLTR6SEsLgKtDStYyYZVLsUtWChO4Ps20CBad7lfJKVDiejocV4ME1hLmyY0WJE3hSDcmQ2A== dependencies: "@alloc/quick-lru" "^5.2.0" arg "^5.0.2" @@ -24312,7 +24405,7 @@ tailwindcss@^3.4.0: fast-glob "^3.3.0" glob-parent "^6.0.2" is-glob "^4.0.3" - jiti "^1.19.1" + jiti "^1.21.0" lilconfig "^2.1.0" micromatch "^4.0.5" normalize-path "^3.0.0" @@ -24522,14 +24615,14 @@ thenby@^1.3.4: thenify-all@^1.0.0: version "1.6.0" - resolved "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz" + resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== dependencies: thenify ">= 3.1.0 < 4" "thenify@>= 3.1.0 < 4": version "3.3.1" - resolved "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz" + resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== dependencies: any-promise "^1.0.0" @@ -24653,7 +24746,7 @@ to-regex-range@^2.1.0: to-regex-range@^5.0.1: version "5.0.1" - resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== dependencies: is-number "^7.0.0" @@ -24817,7 +24910,7 @@ ts-dedent@^2.0.0, ts-dedent@^2.2.0: ts-interface-checker@^0.1.9: version "0.1.13" - resolved "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz" + resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699" integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA== ts-morph@^10.0.1: @@ -26442,7 +26535,7 @@ wordwrap@^1.0.0: resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz" integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: version "7.0.0" resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== @@ -26469,15 +26562,6 @@ wrap-ansi@^6.2.0: string-width "^4.1.0" strip-ansi "^6.0.0" -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" - 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: version "8.1.0" resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz" @@ -26506,7 +26590,7 @@ wrapped@^1.0.1: wrappy@1: version "1.0.2" - resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== write-file-atomic@5.0.1, write-file-atomic@^5.0.1: @@ -26684,7 +26768,7 @@ yaml@^1.10.0, yaml@^1.10.2, yaml@^1.7.2: resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz" integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== -yaml@^2.0.0, yaml@^2.0.0-1, yaml@^2.1.1, yaml@^2.2.2, yaml@~2.4.2: +yaml@^2.0.0, yaml@^2.0.0-1, yaml@^2.1.1, yaml@^2.2.2, yaml@^2.3.4, yaml@~2.4.2: version "2.4.5" resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.4.5.tgz#60630b206dd6d84df97003d33fc1ddf6296cca5e" integrity sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==