diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e905433..6197297 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,11 +12,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18 cache: npm @@ -32,16 +32,16 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18 cache: npm - name: Install Packages run: npm ci - - name: Unit Tests + - name: Run Tests run: npm run test diff --git a/.github/workflows/main-preview.yml b/.github/workflows/main-preview.yml index 5bbde21..e526e73 100644 --- a/.github/workflows/main-preview.yml +++ b/.github/workflows/main-preview.yml @@ -10,18 +10,19 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18 + cache: npm - name: Install Packages run: npm ci shell: bash - name: Build Storybook - run: npx sb build + run: npx storybook build shell: bash - name: Upload to S3 uses: gravity-ui/preview-upload-to-s3-action@v1 diff --git a/.github/workflows/pr-preview-build.yml b/.github/workflows/pr-preview-build.yml index 96e9b26..5c62d51 100644 --- a/.github/workflows/pr-preview-build.yml +++ b/.github/workflows/pr-preview-build.yml @@ -8,7 +8,7 @@ jobs: name: Build runs-on: ubuntu-latest steps: - - uses: gravity-ui/preview-build-action@v1 + - uses: gravity-ui/preview-build-action@v2 with: node-version: 18 env: diff --git a/.github/workflows/pr-preview-deploy.yml b/.github/workflows/pr-preview-deploy.yml index 06c5d2a..4f4dfa3 100644 --- a/.github/workflows/pr-preview-deploy.yml +++ b/.github/workflows/pr-preview-deploy.yml @@ -14,7 +14,7 @@ jobs: github.event.workflow_run.conclusion == 'success' runs-on: ubuntu-latest steps: - - uses: gravity-ui/preview-deploy-action@v1 + - uses: gravity-ui/preview-deploy-action@v2 with: project: icons github-token: ${{ secrets.GRAVITY_UI_BOT_GITHUB_TOKEN }} diff --git a/.github/workflows/sync.yml b/.github/workflows/sync.yml index b141910..55bf1c8 100644 --- a/.github/workflows/sync.yml +++ b/.github/workflows/sync.yml @@ -11,11 +11,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18 cache: npm @@ -30,12 +30,15 @@ jobs: - name: Create TS/JS Files run: npm run src:icons - name: Create Pull Request - uses: peter-evans/create-pull-request@v4 + uses: peter-evans/create-pull-request@v6 with: token: ${{ secrets.GRAVITY_UI_BOT_GITHUB_TOKEN }} + author: 'gravity-ui-bot <111915794+gravity-ui-bot@users.noreply.github.com>' + committer: 'gravity-ui-bot <111915794+gravity-ui-bot@users.noreply.github.com>' commit-message: 'feat: sync icons' branch: sync-icons delete-branch: true + reviewers: amje title: 'feat: sync icons' body: '' diff --git a/.husky/commit-msg b/.husky/commit-msg index 378f80f..951570f 100755 --- a/.husky/commit-msg +++ b/.husky/commit-msg @@ -1,4 +1 @@ -#!/bin/sh -. "$(dirname "$0")/_/husky.sh" - npx commitlint -e diff --git a/.husky/pre-commit b/.husky/pre-commit index 263cce3..87119bc 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,4 +1 @@ -#!/bin/sh -. "$(dirname "$0")/_/husky.sh" - npx nano-staged diff --git a/.storybook/main.ts b/.storybook/main.ts index c811d11..efddd49 100644 --- a/.storybook/main.ts +++ b/.storybook/main.ts @@ -6,7 +6,10 @@ const config: StorybookConfig = { options: {fastRefresh: true}, }, stories: ['./**/*.stories.@(ts|tsx)'], - addons: [{name: '@storybook/preset-scss', options: {rule: {sideEffects: true}}}], + addons: [ + {name: '@storybook/preset-scss', options: {rule: {sideEffects: true}}}, + '@storybook/addon-webpack5-compiler-swc', + ], }; export default config; diff --git a/.storybook/src/IconTooltip/IconTooltip.scss b/.storybook/src/IconTooltip/IconTooltip.scss index 6be7916..37912f2 100644 --- a/.storybook/src/IconTooltip/IconTooltip.scss +++ b/.storybook/src/IconTooltip/IconTooltip.scss @@ -1,7 +1,7 @@ @use '~@gravity-ui/uikit/styles/mixins'; .icon-tooltip { - --yc-popover-max-width: 1000px; + --g-popover-max-width: 1000px; &__grid { display: grid; diff --git a/.storybook/src/Showcase.stories.scss b/.storybook/src/Showcase.stories.scss index e07c3f8..b13fde2 100644 --- a/.storybook/src/Showcase.stories.scss +++ b/.storybook/src/Showcase.stories.scss @@ -7,10 +7,10 @@ &-input { width: 300px; padding: 0 0 0.2em; - color: var(--yc-color-text-primary); + color: var(--g-color-text-primary); background: transparent; border: none; - border-bottom: 1px solid var(--yc-color-line-generic); + border-bottom: 1px solid var(--g-color-line-generic); outline: none; font-family: monospace; font-size: 28px; @@ -18,7 +18,7 @@ text-align: center; &::placeholder { - color: var(--yc-color-text-hint); + color: var(--g-color-text-hint); } } } @@ -31,10 +31,10 @@ } &__empty { - font-size: var(--yc-text-body-3-font-size); + font-size: var(--g-text-body-3-font-size); line-height: 44px; font-style: italic; font-family: serif; - color: var(--yc-color-text-hint); + color: var(--g-color-text-hint); } } diff --git a/lib/AbbrApi.tsx b/lib/AbbrApi.tsx index 6de5859..f1e7f2a 100644 --- a/lib/AbbrApi.tsx +++ b/lib/AbbrApi.tsx @@ -12,7 +12,7 @@ const AbbrApi = (props: SVGProps) => ( diff --git a/lib/AbbrMl.tsx b/lib/AbbrMl.tsx index 8fc719d..286f6e0 100644 --- a/lib/AbbrMl.tsx +++ b/lib/AbbrMl.tsx @@ -12,7 +12,7 @@ const AbbrMl = (props: SVGProps) => ( diff --git a/lib/AbbrQl.tsx b/lib/AbbrQl.tsx index f432096..2e1b644 100644 --- a/lib/AbbrQl.tsx +++ b/lib/AbbrQl.tsx @@ -12,7 +12,7 @@ const AbbrQl = (props: SVGProps) => ( diff --git a/lib/AbbrSql.tsx b/lib/AbbrSql.tsx index 499eef1..cdd09fb 100644 --- a/lib/AbbrSql.tsx +++ b/lib/AbbrSql.tsx @@ -13,7 +13,7 @@ const AbbrSql = (props: SVGProps) => ( diff --git a/lib/AbbrZip.tsx b/lib/AbbrZip.tsx index a6e9a18..0ee1a97 100644 --- a/lib/AbbrZip.tsx +++ b/lib/AbbrZip.tsx @@ -12,7 +12,7 @@ const AbbrZip = (props: SVGProps) => ( diff --git a/lib/AntennaSignal.tsx b/lib/AntennaSignal.tsx index 86686e7..4767609 100644 --- a/lib/AntennaSignal.tsx +++ b/lib/AntennaSignal.tsx @@ -12,7 +12,7 @@ const AntennaSignal = (props: SVGProps) => ( diff --git a/lib/Aperture.tsx b/lib/Aperture.tsx index 049ff26..19d2c86 100644 --- a/lib/Aperture.tsx +++ b/lib/Aperture.tsx @@ -12,7 +12,7 @@ const Aperture = (props: SVGProps) => ( diff --git a/lib/Archive.tsx b/lib/Archive.tsx index 698b812..337b945 100644 --- a/lib/Archive.tsx +++ b/lib/Archive.tsx @@ -12,7 +12,7 @@ const Archive = (props: SVGProps) => ( diff --git a/lib/ArrowChevronDown.tsx b/lib/ArrowChevronDown.tsx index bf47ae8..c843ac6 100644 --- a/lib/ArrowChevronDown.tsx +++ b/lib/ArrowChevronDown.tsx @@ -12,7 +12,7 @@ const ArrowChevronDown = (props: SVGProps) => ( diff --git a/lib/ArrowChevronLeft.tsx b/lib/ArrowChevronLeft.tsx index b1977b6..fb3d041 100644 --- a/lib/ArrowChevronLeft.tsx +++ b/lib/ArrowChevronLeft.tsx @@ -12,7 +12,7 @@ const ArrowChevronLeft = (props: SVGProps) => ( diff --git a/lib/ArrowChevronRight.tsx b/lib/ArrowChevronRight.tsx index 0ce0313..adf9eb9 100644 --- a/lib/ArrowChevronRight.tsx +++ b/lib/ArrowChevronRight.tsx @@ -12,7 +12,7 @@ const ArrowChevronRight = (props: SVGProps) => ( diff --git a/lib/ArrowChevronUp.tsx b/lib/ArrowChevronUp.tsx index 8c9af4b..f170beb 100644 --- a/lib/ArrowChevronUp.tsx +++ b/lib/ArrowChevronUp.tsx @@ -12,7 +12,7 @@ const ArrowChevronUp = (props: SVGProps) => ( diff --git a/lib/ArrowDown.tsx b/lib/ArrowDown.tsx index ee209ca..102d922 100644 --- a/lib/ArrowDown.tsx +++ b/lib/ArrowDown.tsx @@ -12,7 +12,7 @@ const ArrowDown = (props: SVGProps) => ( diff --git a/lib/ArrowDownFromLine.tsx b/lib/ArrowDownFromLine.tsx index 4eb3a30..0c24f9f 100644 --- a/lib/ArrowDownFromLine.tsx +++ b/lib/ArrowDownFromLine.tsx @@ -12,7 +12,7 @@ const ArrowDownFromLine = (props: SVGProps) => ( diff --git a/lib/ArrowDownToLine.tsx b/lib/ArrowDownToLine.tsx index 846af99..63b7498 100644 --- a/lib/ArrowDownToLine.tsx +++ b/lib/ArrowDownToLine.tsx @@ -12,7 +12,7 @@ const ArrowDownToLine = (props: SVGProps) => ( diff --git a/lib/ArrowDownToSquare.tsx b/lib/ArrowDownToSquare.tsx index 1e2f00b..0c2ebb8 100644 --- a/lib/ArrowDownToSquare.tsx +++ b/lib/ArrowDownToSquare.tsx @@ -12,7 +12,7 @@ const ArrowDownToSquare = (props: SVGProps) => ( diff --git a/lib/ArrowLeft.tsx b/lib/ArrowLeft.tsx index 4bd5726..3e3b7ec 100644 --- a/lib/ArrowLeft.tsx +++ b/lib/ArrowLeft.tsx @@ -12,7 +12,7 @@ const ArrowLeft = (props: SVGProps) => ( diff --git a/lib/ArrowLeftFromLine.tsx b/lib/ArrowLeftFromLine.tsx index 89f9a5f..6b13fad 100644 --- a/lib/ArrowLeftFromLine.tsx +++ b/lib/ArrowLeftFromLine.tsx @@ -12,7 +12,7 @@ const ArrowLeftFromLine = (props: SVGProps) => ( diff --git a/lib/ArrowLeftToLine.tsx b/lib/ArrowLeftToLine.tsx index b853838..ae4004e 100644 --- a/lib/ArrowLeftToLine.tsx +++ b/lib/ArrowLeftToLine.tsx @@ -12,7 +12,7 @@ const ArrowLeftToLine = (props: SVGProps) => ( diff --git a/lib/ArrowRight.tsx b/lib/ArrowRight.tsx index e08d35b..aa57f06 100644 --- a/lib/ArrowRight.tsx +++ b/lib/ArrowRight.tsx @@ -12,7 +12,7 @@ const ArrowRight = (props: SVGProps) => ( diff --git a/lib/ArrowRightArrowLeft.tsx b/lib/ArrowRightArrowLeft.tsx index 6372b98..b9f7425 100644 --- a/lib/ArrowRightArrowLeft.tsx +++ b/lib/ArrowRightArrowLeft.tsx @@ -12,7 +12,7 @@ const ArrowRightArrowLeft = (props: SVGProps) => ( diff --git a/lib/ArrowRightFromLine.tsx b/lib/ArrowRightFromLine.tsx index d1559e6..ae79b41 100644 --- a/lib/ArrowRightFromLine.tsx +++ b/lib/ArrowRightFromLine.tsx @@ -12,7 +12,7 @@ const ArrowRightFromLine = (props: SVGProps) => ( diff --git a/lib/ArrowRightFromSquare.tsx b/lib/ArrowRightFromSquare.tsx index 5f012bb..c3c5b3a 100644 --- a/lib/ArrowRightFromSquare.tsx +++ b/lib/ArrowRightFromSquare.tsx @@ -12,7 +12,7 @@ const ArrowRightFromSquare = (props: SVGProps) => ( diff --git a/lib/ArrowRightToLine.tsx b/lib/ArrowRightToLine.tsx index 6674527..bfd7196 100644 --- a/lib/ArrowRightToLine.tsx +++ b/lib/ArrowRightToLine.tsx @@ -12,7 +12,7 @@ const ArrowRightToLine = (props: SVGProps) => ( diff --git a/lib/ArrowRightToSquare.tsx b/lib/ArrowRightToSquare.tsx index 33c5052..54f3b5a 100644 --- a/lib/ArrowRightToSquare.tsx +++ b/lib/ArrowRightToSquare.tsx @@ -12,7 +12,7 @@ const ArrowRightToSquare = (props: SVGProps) => ( diff --git a/lib/ArrowRotateLeft.tsx b/lib/ArrowRotateLeft.tsx index 32c5f92..db03f7c 100644 --- a/lib/ArrowRotateLeft.tsx +++ b/lib/ArrowRotateLeft.tsx @@ -12,7 +12,7 @@ const ArrowRotateLeft = (props: SVGProps) => ( diff --git a/lib/ArrowRotateRight.tsx b/lib/ArrowRotateRight.tsx index 6fdfd55..18018ad 100644 --- a/lib/ArrowRotateRight.tsx +++ b/lib/ArrowRotateRight.tsx @@ -12,7 +12,7 @@ const ArrowRotateRight = (props: SVGProps) => ( diff --git a/lib/ArrowShapeDown.tsx b/lib/ArrowShapeDown.tsx index 2e7614c..2bb428f 100644 --- a/lib/ArrowShapeDown.tsx +++ b/lib/ArrowShapeDown.tsx @@ -12,7 +12,7 @@ const ArrowShapeDown = (props: SVGProps) => ( diff --git a/lib/ArrowShapeDownFromLine.tsx b/lib/ArrowShapeDownFromLine.tsx index b0b3b24..4446c96 100644 --- a/lib/ArrowShapeDownFromLine.tsx +++ b/lib/ArrowShapeDownFromLine.tsx @@ -12,7 +12,7 @@ const ArrowShapeDownFromLine = (props: SVGProps) => ( diff --git a/lib/ArrowShapeDownToLine.tsx b/lib/ArrowShapeDownToLine.tsx index 966e75c..c9b5831 100644 --- a/lib/ArrowShapeDownToLine.tsx +++ b/lib/ArrowShapeDownToLine.tsx @@ -12,7 +12,7 @@ const ArrowShapeDownToLine = (props: SVGProps) => ( diff --git a/lib/ArrowShapeLeft.tsx b/lib/ArrowShapeLeft.tsx index bdef85d..ce0e1d7 100644 --- a/lib/ArrowShapeLeft.tsx +++ b/lib/ArrowShapeLeft.tsx @@ -12,7 +12,7 @@ const ArrowShapeLeft = (props: SVGProps) => ( diff --git a/lib/ArrowShapeLeftFromLine.tsx b/lib/ArrowShapeLeftFromLine.tsx index 50c952e..37181a6 100644 --- a/lib/ArrowShapeLeftFromLine.tsx +++ b/lib/ArrowShapeLeftFromLine.tsx @@ -12,7 +12,7 @@ const ArrowShapeLeftFromLine = (props: SVGProps) => ( diff --git a/lib/ArrowShapeLeftToLine.tsx b/lib/ArrowShapeLeftToLine.tsx index 2b98915..4e6ab06 100644 --- a/lib/ArrowShapeLeftToLine.tsx +++ b/lib/ArrowShapeLeftToLine.tsx @@ -12,7 +12,7 @@ const ArrowShapeLeftToLine = (props: SVGProps) => ( diff --git a/lib/ArrowShapeRight.tsx b/lib/ArrowShapeRight.tsx index 47f5ae4..204a65a 100644 --- a/lib/ArrowShapeRight.tsx +++ b/lib/ArrowShapeRight.tsx @@ -12,7 +12,7 @@ const ArrowShapeRight = (props: SVGProps) => ( diff --git a/lib/ArrowShapeRightFromLine.tsx b/lib/ArrowShapeRightFromLine.tsx index b0a962f..14b3075 100644 --- a/lib/ArrowShapeRightFromLine.tsx +++ b/lib/ArrowShapeRightFromLine.tsx @@ -12,7 +12,7 @@ const ArrowShapeRightFromLine = (props: SVGProps) => ( diff --git a/lib/ArrowShapeRightToLine.tsx b/lib/ArrowShapeRightToLine.tsx index 5e59565..6de7423 100644 --- a/lib/ArrowShapeRightToLine.tsx +++ b/lib/ArrowShapeRightToLine.tsx @@ -12,7 +12,7 @@ const ArrowShapeRightToLine = (props: SVGProps) => ( diff --git a/lib/ArrowShapeTurnUpLeft.tsx b/lib/ArrowShapeTurnUpLeft.tsx index a457f84..22c2ef5 100644 --- a/lib/ArrowShapeTurnUpLeft.tsx +++ b/lib/ArrowShapeTurnUpLeft.tsx @@ -12,7 +12,7 @@ const ArrowShapeTurnUpLeft = (props: SVGProps) => ( diff --git a/lib/ArrowShapeTurnUpRight.tsx b/lib/ArrowShapeTurnUpRight.tsx index 46103b0..4b4f177 100644 --- a/lib/ArrowShapeTurnUpRight.tsx +++ b/lib/ArrowShapeTurnUpRight.tsx @@ -12,7 +12,7 @@ const ArrowShapeTurnUpRight = (props: SVGProps) => ( diff --git a/lib/ArrowShapeUp.tsx b/lib/ArrowShapeUp.tsx index 5d9a1af..e5e5843 100644 --- a/lib/ArrowShapeUp.tsx +++ b/lib/ArrowShapeUp.tsx @@ -12,7 +12,7 @@ const ArrowShapeUp = (props: SVGProps) => ( diff --git a/lib/ArrowShapeUpFromLine.tsx b/lib/ArrowShapeUpFromLine.tsx index dc6e1b8..c2ee225 100644 --- a/lib/ArrowShapeUpFromLine.tsx +++ b/lib/ArrowShapeUpFromLine.tsx @@ -12,7 +12,7 @@ const ArrowShapeUpFromLine = (props: SVGProps) => ( diff --git a/lib/ArrowShapeUpToLine.tsx b/lib/ArrowShapeUpToLine.tsx index 877a093..34241e8 100644 --- a/lib/ArrowShapeUpToLine.tsx +++ b/lib/ArrowShapeUpToLine.tsx @@ -12,7 +12,7 @@ const ArrowShapeUpToLine = (props: SVGProps) => ( diff --git a/lib/ArrowUp.tsx b/lib/ArrowUp.tsx index c92d3a9..2eff866 100644 --- a/lib/ArrowUp.tsx +++ b/lib/ArrowUp.tsx @@ -12,7 +12,7 @@ const ArrowUp = (props: SVGProps) => ( diff --git a/lib/ArrowUpArrowDown.tsx b/lib/ArrowUpArrowDown.tsx index 005da95..4453329 100644 --- a/lib/ArrowUpArrowDown.tsx +++ b/lib/ArrowUpArrowDown.tsx @@ -12,7 +12,7 @@ const ArrowUpArrowDown = (props: SVGProps) => ( diff --git a/lib/ArrowUpFromLine.tsx b/lib/ArrowUpFromLine.tsx index f20def3..97c320c 100644 --- a/lib/ArrowUpFromLine.tsx +++ b/lib/ArrowUpFromLine.tsx @@ -12,7 +12,7 @@ const ArrowUpFromLine = (props: SVGProps) => ( diff --git a/lib/ArrowUpFromSquare.tsx b/lib/ArrowUpFromSquare.tsx index 6c9fcdf..674c518 100644 --- a/lib/ArrowUpFromSquare.tsx +++ b/lib/ArrowUpFromSquare.tsx @@ -12,7 +12,7 @@ const ArrowUpFromSquare = (props: SVGProps) => ( diff --git a/lib/ArrowUpFromSquareSlash.tsx b/lib/ArrowUpFromSquareSlash.tsx index 3103219..ad7b5fa 100644 --- a/lib/ArrowUpFromSquareSlash.tsx +++ b/lib/ArrowUpFromSquareSlash.tsx @@ -12,7 +12,7 @@ const ArrowUpFromSquareSlash = (props: SVGProps) => ( diff --git a/lib/ArrowUpRightFromSquare.tsx b/lib/ArrowUpRightFromSquare.tsx index ddb4965..b490714 100644 --- a/lib/ArrowUpRightFromSquare.tsx +++ b/lib/ArrowUpRightFromSquare.tsx @@ -12,7 +12,7 @@ const ArrowUpRightFromSquare = (props: SVGProps) => ( diff --git a/lib/ArrowUpToLine.tsx b/lib/ArrowUpToLine.tsx index ef13c34..79c3922 100644 --- a/lib/ArrowUpToLine.tsx +++ b/lib/ArrowUpToLine.tsx @@ -12,7 +12,7 @@ const ArrowUpToLine = (props: SVGProps) => ( diff --git a/lib/ArrowUturnCcwDown.tsx b/lib/ArrowUturnCcwDown.tsx index a23863a..453f37d 100644 --- a/lib/ArrowUturnCcwDown.tsx +++ b/lib/ArrowUturnCcwDown.tsx @@ -12,7 +12,7 @@ const ArrowUturnCcwDown = (props: SVGProps) => ( diff --git a/lib/ArrowUturnCcwLeft.tsx b/lib/ArrowUturnCcwLeft.tsx index c246632..319f11b 100644 --- a/lib/ArrowUturnCcwLeft.tsx +++ b/lib/ArrowUturnCcwLeft.tsx @@ -12,7 +12,7 @@ const ArrowUturnCcwLeft = (props: SVGProps) => ( diff --git a/lib/ArrowUturnCcwRight.tsx b/lib/ArrowUturnCcwRight.tsx index 66d9daa..5286a66 100644 --- a/lib/ArrowUturnCcwRight.tsx +++ b/lib/ArrowUturnCcwRight.tsx @@ -12,7 +12,7 @@ const ArrowUturnCcwRight = (props: SVGProps) => ( diff --git a/lib/ArrowUturnCwDown.tsx b/lib/ArrowUturnCwDown.tsx index 2029c48..93ab2ee 100644 --- a/lib/ArrowUturnCwDown.tsx +++ b/lib/ArrowUturnCwDown.tsx @@ -12,7 +12,7 @@ const ArrowUturnCwDown = (props: SVGProps) => ( diff --git a/lib/ArrowUturnCwLeft.tsx b/lib/ArrowUturnCwLeft.tsx index ff4f6ea..8ad6021 100644 --- a/lib/ArrowUturnCwLeft.tsx +++ b/lib/ArrowUturnCwLeft.tsx @@ -12,7 +12,7 @@ const ArrowUturnCwLeft = (props: SVGProps) => ( diff --git a/lib/ArrowUturnCwRight.tsx b/lib/ArrowUturnCwRight.tsx index 71542fc..7d4ec73 100644 --- a/lib/ArrowUturnCwRight.tsx +++ b/lib/ArrowUturnCwRight.tsx @@ -12,7 +12,7 @@ const ArrowUturnCwRight = (props: SVGProps) => ( diff --git a/lib/Arrows3RotateLeft.tsx b/lib/Arrows3RotateLeft.tsx index 881ca97..752fb0a 100644 --- a/lib/Arrows3RotateLeft.tsx +++ b/lib/Arrows3RotateLeft.tsx @@ -13,7 +13,7 @@ const Arrows3RotateLeft = (props: SVGProps) => ( diff --git a/lib/Arrows3RotateLeftLetterA.tsx b/lib/Arrows3RotateLeftLetterA.tsx index f5ec2da..6f5a27a 100644 --- a/lib/Arrows3RotateLeftLetterA.tsx +++ b/lib/Arrows3RotateLeftLetterA.tsx @@ -13,7 +13,7 @@ const Arrows3RotateLeftLetterA = (props: SVGProps) => ( diff --git a/lib/Arrows3RotateRight.tsx b/lib/Arrows3RotateRight.tsx index 0d593cb..7046fd7 100644 --- a/lib/Arrows3RotateRight.tsx +++ b/lib/Arrows3RotateRight.tsx @@ -13,7 +13,7 @@ const Arrows3RotateRight = (props: SVGProps) => ( diff --git a/lib/ArrowsOppositeToDots.tsx b/lib/ArrowsOppositeToDots.tsx index 99a9d1f..c2624bf 100644 --- a/lib/ArrowsOppositeToDots.tsx +++ b/lib/ArrowsOppositeToDots.tsx @@ -12,7 +12,7 @@ const ArrowsOppositeToDots = (props: SVGProps) => ( diff --git a/lib/ArrowsRotateLeft.tsx b/lib/ArrowsRotateLeft.tsx index 12002f3..5134327 100644 --- a/lib/ArrowsRotateLeft.tsx +++ b/lib/ArrowsRotateLeft.tsx @@ -12,7 +12,7 @@ const ArrowsRotateLeft = (props: SVGProps) => ( diff --git a/lib/ArrowsRotateLeftSlash.tsx b/lib/ArrowsRotateLeftSlash.tsx index d4a3bb1..e5e016f 100644 --- a/lib/ArrowsRotateLeftSlash.tsx +++ b/lib/ArrowsRotateLeftSlash.tsx @@ -12,7 +12,7 @@ const ArrowsRotateLeftSlash = (props: SVGProps) => ( diff --git a/lib/ArrowsRotateRight.tsx b/lib/ArrowsRotateRight.tsx index acc4938..2aa714b 100644 --- a/lib/ArrowsRotateRight.tsx +++ b/lib/ArrowsRotateRight.tsx @@ -12,7 +12,7 @@ const ArrowsRotateRight = (props: SVGProps) => ( diff --git a/lib/ArrowsRotateRightSlash.tsx b/lib/ArrowsRotateRightSlash.tsx index 49053a1..43ea91d 100644 --- a/lib/ArrowsRotateRightSlash.tsx +++ b/lib/ArrowsRotateRightSlash.tsx @@ -12,7 +12,7 @@ const ArrowsRotateRightSlash = (props: SVGProps) => ( diff --git a/lib/At.tsx b/lib/At.tsx index ccb007d..e17859d 100644 --- a/lib/At.tsx +++ b/lib/At.tsx @@ -12,7 +12,7 @@ const At = (props: SVGProps) => ( diff --git a/lib/Ban.tsx b/lib/Ban.tsx index c77f877..9c38806 100644 --- a/lib/Ban.tsx +++ b/lib/Ban.tsx @@ -12,7 +12,7 @@ const Ban = (props: SVGProps) => ( diff --git a/lib/Bars.tsx b/lib/Bars.tsx index 5f19192..0aa84a5 100644 --- a/lib/Bars.tsx +++ b/lib/Bars.tsx @@ -12,7 +12,7 @@ const Bars = (props: SVGProps) => ( diff --git a/lib/BarsAscendingAlignCenter.tsx b/lib/BarsAscendingAlignCenter.tsx index 1aaa71c..1769072 100644 --- a/lib/BarsAscendingAlignCenter.tsx +++ b/lib/BarsAscendingAlignCenter.tsx @@ -12,7 +12,7 @@ const BarsAscendingAlignCenter = (props: SVGProps) => ( diff --git a/lib/BarsAscendingAlignLeft.tsx b/lib/BarsAscendingAlignLeft.tsx index f4ed682..b79224a 100644 --- a/lib/BarsAscendingAlignLeft.tsx +++ b/lib/BarsAscendingAlignLeft.tsx @@ -12,7 +12,7 @@ const BarsAscendingAlignLeft = (props: SVGProps) => ( diff --git a/lib/BarsAscendingAlignLeftArrowDown.tsx b/lib/BarsAscendingAlignLeftArrowDown.tsx index e123274..8fe71c9 100644 --- a/lib/BarsAscendingAlignLeftArrowDown.tsx +++ b/lib/BarsAscendingAlignLeftArrowDown.tsx @@ -12,7 +12,7 @@ const BarsAscendingAlignLeftArrowDown = (props: SVGProps) => ( diff --git a/lib/BarsAscendingAlignLeftArrowUp.tsx b/lib/BarsAscendingAlignLeftArrowUp.tsx index 662b92c..361e808 100644 --- a/lib/BarsAscendingAlignLeftArrowUp.tsx +++ b/lib/BarsAscendingAlignLeftArrowUp.tsx @@ -12,7 +12,7 @@ const BarsAscendingAlignLeftArrowUp = (props: SVGProps) => ( diff --git a/lib/BarsAscendingAlignRight.tsx b/lib/BarsAscendingAlignRight.tsx index ffeeea5..69dd984 100644 --- a/lib/BarsAscendingAlignRight.tsx +++ b/lib/BarsAscendingAlignRight.tsx @@ -12,7 +12,7 @@ const BarsAscendingAlignRight = (props: SVGProps) => ( diff --git a/lib/BarsDescendingAlignCenter.tsx b/lib/BarsDescendingAlignCenter.tsx index 4fb6673..de16101 100644 --- a/lib/BarsDescendingAlignCenter.tsx +++ b/lib/BarsDescendingAlignCenter.tsx @@ -12,7 +12,7 @@ const BarsDescendingAlignCenter = (props: SVGProps) => ( diff --git a/lib/BarsDescendingAlignLeft.tsx b/lib/BarsDescendingAlignLeft.tsx index d6d48f0..710d6ed 100644 --- a/lib/BarsDescendingAlignLeft.tsx +++ b/lib/BarsDescendingAlignLeft.tsx @@ -12,7 +12,7 @@ const BarsDescendingAlignLeft = (props: SVGProps) => ( diff --git a/lib/BarsDescendingAlignLeftArrowDown.tsx b/lib/BarsDescendingAlignLeftArrowDown.tsx index 095d3dd..c6a2971 100644 --- a/lib/BarsDescendingAlignLeftArrowDown.tsx +++ b/lib/BarsDescendingAlignLeftArrowDown.tsx @@ -12,7 +12,7 @@ const BarsDescendingAlignLeftArrowDown = (props: SVGProps) => ( diff --git a/lib/BarsDescendingAlignLeftArrowUp.tsx b/lib/BarsDescendingAlignLeftArrowUp.tsx index 0f4cfb9..75c1941 100644 --- a/lib/BarsDescendingAlignLeftArrowUp.tsx +++ b/lib/BarsDescendingAlignLeftArrowUp.tsx @@ -12,7 +12,7 @@ const BarsDescendingAlignLeftArrowUp = (props: SVGProps) => ( diff --git a/lib/BarsDescendingAlignRight.tsx b/lib/BarsDescendingAlignRight.tsx index 3183416..8ca3323 100644 --- a/lib/BarsDescendingAlignRight.tsx +++ b/lib/BarsDescendingAlignRight.tsx @@ -12,7 +12,7 @@ const BarsDescendingAlignRight = (props: SVGProps) => ( diff --git a/lib/BarsPlay.tsx b/lib/BarsPlay.tsx index f8e2b2a..69ab901 100644 --- a/lib/BarsPlay.tsx +++ b/lib/BarsPlay.tsx @@ -12,7 +12,7 @@ const BarsPlay = (props: SVGProps) => ( diff --git a/lib/BarsUnaligned.tsx b/lib/BarsUnaligned.tsx index 3bd20b3..5a2c64a 100644 --- a/lib/BarsUnaligned.tsx +++ b/lib/BarsUnaligned.tsx @@ -12,7 +12,7 @@ const BarsUnaligned = (props: SVGProps) => ( diff --git a/lib/Bell.tsx b/lib/Bell.tsx index f8bed02..6142263 100644 --- a/lib/Bell.tsx +++ b/lib/Bell.tsx @@ -12,7 +12,7 @@ const Bell = (props: SVGProps) => ( diff --git a/lib/BellDot.tsx b/lib/BellDot.tsx index 057df8a..edbdd28 100644 --- a/lib/BellDot.tsx +++ b/lib/BellDot.tsx @@ -12,9 +12,9 @@ const BellDot = (props: SVGProps) => ( - + ); diff --git a/lib/BellSlash.tsx b/lib/BellSlash.tsx index 2ce9d7c..e94f670 100644 --- a/lib/BellSlash.tsx +++ b/lib/BellSlash.tsx @@ -12,7 +12,7 @@ const BellSlash = (props: SVGProps) => ( diff --git a/lib/Binoculars.tsx b/lib/Binoculars.tsx index 7d3427a..d0f6f9a 100644 --- a/lib/Binoculars.tsx +++ b/lib/Binoculars.tsx @@ -13,7 +13,7 @@ const Binoculars = (props: SVGProps) => ( diff --git a/lib/Bold.tsx b/lib/Bold.tsx index 15222ce..bc1c067 100644 --- a/lib/Bold.tsx +++ b/lib/Bold.tsx @@ -12,7 +12,7 @@ const Bold = (props: SVGProps) => ( diff --git a/lib/Book.tsx b/lib/Book.tsx index 94f175a..8169deb 100644 --- a/lib/Book.tsx +++ b/lib/Book.tsx @@ -12,7 +12,7 @@ const Book = (props: SVGProps) => ( diff --git a/lib/BookOpen.tsx b/lib/BookOpen.tsx index f9763df..c237e37 100644 --- a/lib/BookOpen.tsx +++ b/lib/BookOpen.tsx @@ -12,7 +12,7 @@ const BookOpen = (props: SVGProps) => ( diff --git a/lib/Bookmark.tsx b/lib/Bookmark.tsx index a0db074..815e152 100644 --- a/lib/Bookmark.tsx +++ b/lib/Bookmark.tsx @@ -12,7 +12,7 @@ const Bookmark = (props: SVGProps) => ( diff --git a/lib/BookmarkFill.tsx b/lib/BookmarkFill.tsx index 5a80e67..828274d 100644 --- a/lib/BookmarkFill.tsx +++ b/lib/BookmarkFill.tsx @@ -11,7 +11,7 @@ const BookmarkFill = (props: SVGProps) => ( > ); diff --git a/lib/Box.tsx b/lib/Box.tsx index cbe3b17..2f017d8 100644 --- a/lib/Box.tsx +++ b/lib/Box.tsx @@ -12,7 +12,7 @@ const Box = (props: SVGProps) => ( diff --git a/lib/Boxes3.tsx b/lib/Boxes3.tsx index 181c815..fce1852 100644 --- a/lib/Boxes3.tsx +++ b/lib/Boxes3.tsx @@ -12,7 +12,7 @@ const Boxes3 = (props: SVGProps) => ( diff --git a/lib/BranchesDown.tsx b/lib/BranchesDown.tsx index 1d72f8f..1b52497 100644 --- a/lib/BranchesDown.tsx +++ b/lib/BranchesDown.tsx @@ -12,7 +12,7 @@ const BranchesDown = (props: SVGProps) => ( diff --git a/lib/BranchesRight.tsx b/lib/BranchesRight.tsx index 404e0bb..8d0fc88 100644 --- a/lib/BranchesRight.tsx +++ b/lib/BranchesRight.tsx @@ -12,7 +12,7 @@ const BranchesRight = (props: SVGProps) => ( diff --git a/lib/BranchesRightArrowRight.tsx b/lib/BranchesRightArrowRight.tsx index 6113f25..688500a 100644 --- a/lib/BranchesRightArrowRight.tsx +++ b/lib/BranchesRightArrowRight.tsx @@ -12,7 +12,7 @@ const BranchesRightArrowRight = (props: SVGProps) => ( diff --git a/lib/Briefcase.tsx b/lib/Briefcase.tsx index 53d6327..7153c0b 100644 --- a/lib/Briefcase.tsx +++ b/lib/Briefcase.tsx @@ -12,7 +12,7 @@ const Briefcase = (props: SVGProps) => ( diff --git a/lib/BroadcastSignal.tsx b/lib/BroadcastSignal.tsx index 1ffe3ee..32a1f41 100644 --- a/lib/BroadcastSignal.tsx +++ b/lib/BroadcastSignal.tsx @@ -12,7 +12,7 @@ const BroadcastSignal = (props: SVGProps) => ( diff --git a/lib/BroomMotion.tsx b/lib/BroomMotion.tsx index 93596c0..5db5ac2 100644 --- a/lib/BroomMotion.tsx +++ b/lib/BroomMotion.tsx @@ -13,7 +13,7 @@ const BroomMotion = (props: SVGProps) => ( diff --git a/lib/Brush.tsx b/lib/Brush.tsx index 4b16ae0..dbbc2a8 100644 --- a/lib/Brush.tsx +++ b/lib/Brush.tsx @@ -12,7 +12,7 @@ const Brush = (props: SVGProps) => ( diff --git a/lib/Bucket.tsx b/lib/Bucket.tsx index 4420d2c..dacba27 100644 --- a/lib/Bucket.tsx +++ b/lib/Bucket.tsx @@ -12,7 +12,7 @@ const Bucket = (props: SVGProps) => ( diff --git a/lib/BucketPaint.tsx b/lib/BucketPaint.tsx index 0c1942c..9633211 100644 --- a/lib/BucketPaint.tsx +++ b/lib/BucketPaint.tsx @@ -12,7 +12,7 @@ const BucketPaint = (props: SVGProps) => ( diff --git a/lib/Bug.tsx b/lib/Bug.tsx index efee6f5..4af92ad 100644 --- a/lib/Bug.tsx +++ b/lib/Bug.tsx @@ -13,7 +13,7 @@ const Bug = (props: SVGProps) => ( diff --git a/lib/Bulb.tsx b/lib/Bulb.tsx index 1649ee1..08e56f4 100644 --- a/lib/Bulb.tsx +++ b/lib/Bulb.tsx @@ -12,10 +12,10 @@ const Bulb = (props: SVGProps) => ( - + ); diff --git a/lib/Calculator.tsx b/lib/Calculator.tsx index d1929d4..53861ce 100644 --- a/lib/Calculator.tsx +++ b/lib/Calculator.tsx @@ -12,7 +12,7 @@ const Calculator = (props: SVGProps) => ( diff --git a/lib/Calendar.tsx b/lib/Calendar.tsx index c365e36..b30235e 100644 --- a/lib/Calendar.tsx +++ b/lib/Calendar.tsx @@ -12,7 +12,7 @@ const Calendar = (props: SVGProps) => ( diff --git a/lib/Camera.tsx b/lib/Camera.tsx index 76f4202..b24b9d2 100644 --- a/lib/Camera.tsx +++ b/lib/Camera.tsx @@ -12,7 +12,7 @@ const Camera = (props: SVGProps) => ( diff --git a/lib/Car.tsx b/lib/Car.tsx index 3b7af9f..a1993af 100644 --- a/lib/Car.tsx +++ b/lib/Car.tsx @@ -12,7 +12,7 @@ const Car = (props: SVGProps) => ( diff --git a/lib/CardClub.tsx b/lib/CardClub.tsx index f5ffb2d..02e1748 100644 --- a/lib/CardClub.tsx +++ b/lib/CardClub.tsx @@ -12,7 +12,7 @@ const CardClub = (props: SVGProps) => ( diff --git a/lib/CardDiamond.tsx b/lib/CardDiamond.tsx index 85f5d88..5122385 100644 --- a/lib/CardDiamond.tsx +++ b/lib/CardDiamond.tsx @@ -12,7 +12,7 @@ const CardDiamond = (props: SVGProps) => ( diff --git a/lib/CardHeart.tsx b/lib/CardHeart.tsx index bd23173..ae1de82 100644 --- a/lib/CardHeart.tsx +++ b/lib/CardHeart.tsx @@ -12,7 +12,7 @@ const CardHeart = (props: SVGProps) => ( diff --git a/lib/CardSpade.tsx b/lib/CardSpade.tsx index 275c2d6..4f45573 100644 --- a/lib/CardSpade.tsx +++ b/lib/CardSpade.tsx @@ -12,7 +12,7 @@ const CardSpade = (props: SVGProps) => ( diff --git a/lib/CaretDown.tsx b/lib/CaretDown.tsx index 1fe67d6..effd733 100644 --- a/lib/CaretDown.tsx +++ b/lib/CaretDown.tsx @@ -12,7 +12,7 @@ const CaretDown = (props: SVGProps) => ( diff --git a/lib/CaretLeft.tsx b/lib/CaretLeft.tsx index 40c56b3..cba253e 100644 --- a/lib/CaretLeft.tsx +++ b/lib/CaretLeft.tsx @@ -12,7 +12,7 @@ const CaretLeft = (props: SVGProps) => ( diff --git a/lib/CaretRight.tsx b/lib/CaretRight.tsx index ce88bbe..368313d 100644 --- a/lib/CaretRight.tsx +++ b/lib/CaretRight.tsx @@ -12,7 +12,7 @@ const CaretRight = (props: SVGProps) => ( diff --git a/lib/CaretUp.tsx b/lib/CaretUp.tsx index f6c64f9..b43cdfb 100644 --- a/lib/CaretUp.tsx +++ b/lib/CaretUp.tsx @@ -12,7 +12,7 @@ const CaretUp = (props: SVGProps) => ( diff --git a/lib/CaretsExpandVertical.tsx b/lib/CaretsExpandVertical.tsx index 9e93c8a..5bd185c 100644 --- a/lib/CaretsExpandVertical.tsx +++ b/lib/CaretsExpandVertical.tsx @@ -12,7 +12,7 @@ const CaretsExpandVertical = (props: SVGProps) => ( diff --git a/lib/ChartAreaStacked.tsx b/lib/ChartAreaStacked.tsx index 63b5a92..e63bc69 100644 --- a/lib/ChartAreaStacked.tsx +++ b/lib/ChartAreaStacked.tsx @@ -13,7 +13,7 @@ const ChartAreaStacked = (props: SVGProps) => ( diff --git a/lib/ChartAreaStackedNormalized.tsx b/lib/ChartAreaStackedNormalized.tsx index 19117b8..5b79e9e 100644 --- a/lib/ChartAreaStackedNormalized.tsx +++ b/lib/ChartAreaStackedNormalized.tsx @@ -13,7 +13,7 @@ const ChartAreaStackedNormalized = (props: SVGProps) => ( diff --git a/lib/ChartBar.tsx b/lib/ChartBar.tsx index af55891..ba70744 100644 --- a/lib/ChartBar.tsx +++ b/lib/ChartBar.tsx @@ -13,7 +13,7 @@ const ChartBar = (props: SVGProps) => ( diff --git a/lib/ChartBarStacked.tsx b/lib/ChartBarStacked.tsx index a1fb242..ccbae9d 100644 --- a/lib/ChartBarStacked.tsx +++ b/lib/ChartBarStacked.tsx @@ -13,7 +13,7 @@ const ChartBarStacked = (props: SVGProps) => ( diff --git a/lib/ChartColumn.tsx b/lib/ChartColumn.tsx index 4916041..ba6ac1b 100644 --- a/lib/ChartColumn.tsx +++ b/lib/ChartColumn.tsx @@ -13,7 +13,7 @@ const ChartColumn = (props: SVGProps) => ( diff --git a/lib/ChartColumnStacked.tsx b/lib/ChartColumnStacked.tsx index 04dcbc1..1389358 100644 --- a/lib/ChartColumnStacked.tsx +++ b/lib/ChartColumnStacked.tsx @@ -13,7 +13,7 @@ const ChartColumnStacked = (props: SVGProps) => ( diff --git a/lib/ChartDonut.tsx b/lib/ChartDonut.tsx index 529c4ec..7a6323e 100644 --- a/lib/ChartDonut.tsx +++ b/lib/ChartDonut.tsx @@ -12,7 +12,7 @@ const ChartDonut = (props: SVGProps) => ( diff --git a/lib/ChartLine.tsx b/lib/ChartLine.tsx index 3c25964..9a9f5f8 100644 --- a/lib/ChartLine.tsx +++ b/lib/ChartLine.tsx @@ -13,7 +13,7 @@ const ChartLine = (props: SVGProps) => ( diff --git a/lib/ChartLineLabel.tsx b/lib/ChartLineLabel.tsx index a51b953..058715a 100644 --- a/lib/ChartLineLabel.tsx +++ b/lib/ChartLineLabel.tsx @@ -13,7 +13,7 @@ const ChartLineLabel = (props: SVGProps) => ( diff --git a/lib/ChartMixed.tsx b/lib/ChartMixed.tsx index 506e3d5..ae36a08 100644 --- a/lib/ChartMixed.tsx +++ b/lib/ChartMixed.tsx @@ -13,7 +13,7 @@ const ChartMixed = (props: SVGProps) => ( diff --git a/lib/ChartPie.tsx b/lib/ChartPie.tsx index 083c1bd..83f5202 100644 --- a/lib/ChartPie.tsx +++ b/lib/ChartPie.tsx @@ -12,7 +12,7 @@ const ChartPie = (props: SVGProps) => ( diff --git a/lib/ChartTreemap.tsx b/lib/ChartTreemap.tsx index 4cc9578..e4dea14 100644 --- a/lib/ChartTreemap.tsx +++ b/lib/ChartTreemap.tsx @@ -12,7 +12,7 @@ const ChartTreemap = (props: SVGProps) => ( diff --git a/lib/Check.tsx b/lib/Check.tsx index 14a3dbb..a5822ca 100644 --- a/lib/Check.tsx +++ b/lib/Check.tsx @@ -12,7 +12,7 @@ const Check = (props: SVGProps) => ( diff --git a/lib/Cherry.tsx b/lib/Cherry.tsx index 9e75c44..fcac070 100644 --- a/lib/Cherry.tsx +++ b/lib/Cherry.tsx @@ -13,7 +13,7 @@ const Cherry = (props: SVGProps) => ( diff --git a/lib/ChevronDown.tsx b/lib/ChevronDown.tsx index 1b5f8e3..45a4861 100644 --- a/lib/ChevronDown.tsx +++ b/lib/ChevronDown.tsx @@ -12,7 +12,7 @@ const ChevronDown = (props: SVGProps) => ( diff --git a/lib/ChevronDownWide.tsx b/lib/ChevronDownWide.tsx index 2056ad3..b36280d 100644 --- a/lib/ChevronDownWide.tsx +++ b/lib/ChevronDownWide.tsx @@ -12,7 +12,7 @@ const ChevronDownWide = (props: SVGProps) => ( diff --git a/lib/ChevronLeft.tsx b/lib/ChevronLeft.tsx index 4198ee6..a370e7d 100644 --- a/lib/ChevronLeft.tsx +++ b/lib/ChevronLeft.tsx @@ -12,7 +12,7 @@ const ChevronLeft = (props: SVGProps) => ( diff --git a/lib/ChevronRight.tsx b/lib/ChevronRight.tsx index d4f8eac..8919b05 100644 --- a/lib/ChevronRight.tsx +++ b/lib/ChevronRight.tsx @@ -12,7 +12,7 @@ const ChevronRight = (props: SVGProps) => ( diff --git a/lib/ChevronUp.tsx b/lib/ChevronUp.tsx index 302fa17..9bcc221 100644 --- a/lib/ChevronUp.tsx +++ b/lib/ChevronUp.tsx @@ -12,7 +12,7 @@ const ChevronUp = (props: SVGProps) => ( diff --git a/lib/ChevronUpWide.tsx b/lib/ChevronUpWide.tsx index b9d96e0..05b139a 100644 --- a/lib/ChevronUpWide.tsx +++ b/lib/ChevronUpWide.tsx @@ -12,7 +12,7 @@ const ChevronUpWide = (props: SVGProps) => ( diff --git a/lib/ChevronsCollapseFromLines.tsx b/lib/ChevronsCollapseFromLines.tsx index 3dea771..6df1763 100644 --- a/lib/ChevronsCollapseFromLines.tsx +++ b/lib/ChevronsCollapseFromLines.tsx @@ -12,7 +12,7 @@ const ChevronsCollapseFromLines = (props: SVGProps) => ( diff --git a/lib/ChevronsCollapseHorizontal.tsx b/lib/ChevronsCollapseHorizontal.tsx index f1b00e7..8aa9e3a 100644 --- a/lib/ChevronsCollapseHorizontal.tsx +++ b/lib/ChevronsCollapseHorizontal.tsx @@ -12,7 +12,7 @@ const ChevronsCollapseHorizontal = (props: SVGProps) => ( diff --git a/lib/ChevronsCollapseToLine.tsx b/lib/ChevronsCollapseToLine.tsx index 2efaa59..f2c0216 100644 --- a/lib/ChevronsCollapseToLine.tsx +++ b/lib/ChevronsCollapseToLine.tsx @@ -12,7 +12,7 @@ const ChevronsCollapseToLine = (props: SVGProps) => ( diff --git a/lib/ChevronsCollapseUpRight.tsx b/lib/ChevronsCollapseUpRight.tsx index 448640f..2cc4a22 100644 --- a/lib/ChevronsCollapseUpRight.tsx +++ b/lib/ChevronsCollapseUpRight.tsx @@ -13,7 +13,7 @@ const ChevronsCollapseUpRight = (props: SVGProps) => ( diff --git a/lib/ChevronsCollapseVertical.tsx b/lib/ChevronsCollapseVertical.tsx index 3f82cf0..a330646 100644 --- a/lib/ChevronsCollapseVertical.tsx +++ b/lib/ChevronsCollapseVertical.tsx @@ -12,7 +12,7 @@ const ChevronsCollapseVertical = (props: SVGProps) => ( diff --git a/lib/ChevronsDown.tsx b/lib/ChevronsDown.tsx index 817439f..2d0b368 100644 --- a/lib/ChevronsDown.tsx +++ b/lib/ChevronsDown.tsx @@ -12,7 +12,7 @@ const ChevronsDown = (props: SVGProps) => ( diff --git a/lib/ChevronsDownWide.tsx b/lib/ChevronsDownWide.tsx index 67d703c..e72c762 100644 --- a/lib/ChevronsDownWide.tsx +++ b/lib/ChevronsDownWide.tsx @@ -12,7 +12,7 @@ const ChevronsDownWide = (props: SVGProps) => ( diff --git a/lib/ChevronsExpandFromLine.tsx b/lib/ChevronsExpandFromLine.tsx index 5a33e07..15a5acf 100644 --- a/lib/ChevronsExpandFromLine.tsx +++ b/lib/ChevronsExpandFromLine.tsx @@ -12,7 +12,7 @@ const ChevronsExpandFromLine = (props: SVGProps) => ( diff --git a/lib/ChevronsExpandHorizontal.tsx b/lib/ChevronsExpandHorizontal.tsx index cf54755..2b44739 100644 --- a/lib/ChevronsExpandHorizontal.tsx +++ b/lib/ChevronsExpandHorizontal.tsx @@ -13,7 +13,7 @@ const ChevronsExpandHorizontal = (props: SVGProps) => ( diff --git a/lib/ChevronsExpandToLines.tsx b/lib/ChevronsExpandToLines.tsx index 3cd98d1..a8baf26 100644 --- a/lib/ChevronsExpandToLines.tsx +++ b/lib/ChevronsExpandToLines.tsx @@ -12,7 +12,7 @@ const ChevronsExpandToLines = (props: SVGProps) => ( diff --git a/lib/ChevronsExpandUpRight.tsx b/lib/ChevronsExpandUpRight.tsx index 08b3523..b28feb6 100644 --- a/lib/ChevronsExpandUpRight.tsx +++ b/lib/ChevronsExpandUpRight.tsx @@ -12,7 +12,7 @@ const ChevronsExpandUpRight = (props: SVGProps) => ( diff --git a/lib/ChevronsExpandVertical.tsx b/lib/ChevronsExpandVertical.tsx index ff47092..77ef442 100644 --- a/lib/ChevronsExpandVertical.tsx +++ b/lib/ChevronsExpandVertical.tsx @@ -13,7 +13,7 @@ const ChevronsExpandVertical = (props: SVGProps) => ( diff --git a/lib/ChevronsLeft.tsx b/lib/ChevronsLeft.tsx index c9f0a88..67533b7 100644 --- a/lib/ChevronsLeft.tsx +++ b/lib/ChevronsLeft.tsx @@ -12,7 +12,7 @@ const ChevronsLeft = (props: SVGProps) => ( diff --git a/lib/ChevronsRight.tsx b/lib/ChevronsRight.tsx index 2204685..10d6311 100644 --- a/lib/ChevronsRight.tsx +++ b/lib/ChevronsRight.tsx @@ -12,7 +12,7 @@ const ChevronsRight = (props: SVGProps) => ( diff --git a/lib/ChevronsUp.tsx b/lib/ChevronsUp.tsx index cc5aca1..22f916f 100644 --- a/lib/ChevronsUp.tsx +++ b/lib/ChevronsUp.tsx @@ -12,7 +12,7 @@ const ChevronsUp = (props: SVGProps) => ( diff --git a/lib/ChevronsUpWide.tsx b/lib/ChevronsUpWide.tsx index 49de49e..188ed89 100644 --- a/lib/ChevronsUpWide.tsx +++ b/lib/ChevronsUpWide.tsx @@ -12,7 +12,7 @@ const ChevronsUpWide = (props: SVGProps) => ( diff --git a/lib/Circle.tsx b/lib/Circle.tsx index d775909..b6439ff 100644 --- a/lib/Circle.tsx +++ b/lib/Circle.tsx @@ -12,7 +12,7 @@ const Circle = (props: SVGProps) => ( diff --git a/lib/CircleArrowDown.tsx b/lib/CircleArrowDown.tsx index bd22e7f..5cd20df 100644 --- a/lib/CircleArrowDown.tsx +++ b/lib/CircleArrowDown.tsx @@ -12,7 +12,7 @@ const CircleArrowDown = (props: SVGProps) => ( diff --git a/lib/CircleArrowDownFill.tsx b/lib/CircleArrowDownFill.tsx index 36df192..a8a60a8 100644 --- a/lib/CircleArrowDownFill.tsx +++ b/lib/CircleArrowDownFill.tsx @@ -12,7 +12,7 @@ const CircleArrowDownFill = (props: SVGProps) => ( diff --git a/lib/CircleArrowLeft.tsx b/lib/CircleArrowLeft.tsx index 45fbb5b..9353d42 100644 --- a/lib/CircleArrowLeft.tsx +++ b/lib/CircleArrowLeft.tsx @@ -12,7 +12,7 @@ const CircleArrowLeft = (props: SVGProps) => ( diff --git a/lib/CircleArrowLeftFill.tsx b/lib/CircleArrowLeftFill.tsx index e379b28..7b0dc00 100644 --- a/lib/CircleArrowLeftFill.tsx +++ b/lib/CircleArrowLeftFill.tsx @@ -12,7 +12,7 @@ const CircleArrowLeftFill = (props: SVGProps) => ( diff --git a/lib/CircleArrowRight.tsx b/lib/CircleArrowRight.tsx index 617439e..7c18624 100644 --- a/lib/CircleArrowRight.tsx +++ b/lib/CircleArrowRight.tsx @@ -12,7 +12,7 @@ const CircleArrowRight = (props: SVGProps) => ( diff --git a/lib/CircleArrowRightFill.tsx b/lib/CircleArrowRightFill.tsx index c55e576..a727945 100644 --- a/lib/CircleArrowRightFill.tsx +++ b/lib/CircleArrowRightFill.tsx @@ -12,7 +12,7 @@ const CircleArrowRightFill = (props: SVGProps) => ( diff --git a/lib/CircleArrowUp.tsx b/lib/CircleArrowUp.tsx index 3953064..3665e56 100644 --- a/lib/CircleArrowUp.tsx +++ b/lib/CircleArrowUp.tsx @@ -12,7 +12,7 @@ const CircleArrowUp = (props: SVGProps) => ( diff --git a/lib/CircleArrowUpFill.tsx b/lib/CircleArrowUpFill.tsx index 60dd283..25b4038 100644 --- a/lib/CircleArrowUpFill.tsx +++ b/lib/CircleArrowUpFill.tsx @@ -12,7 +12,7 @@ const CircleArrowUpFill = (props: SVGProps) => ( diff --git a/lib/CircleCheck.tsx b/lib/CircleCheck.tsx index 1c72d4c..12fcdd5 100644 --- a/lib/CircleCheck.tsx +++ b/lib/CircleCheck.tsx @@ -12,7 +12,7 @@ const CircleCheck = (props: SVGProps) => ( diff --git a/lib/CircleCheckFill.tsx b/lib/CircleCheckFill.tsx index 76c5d07..129cd3d 100644 --- a/lib/CircleCheckFill.tsx +++ b/lib/CircleCheckFill.tsx @@ -12,7 +12,7 @@ const CircleCheckFill = (props: SVGProps) => ( diff --git a/lib/CircleChevronDown.tsx b/lib/CircleChevronDown.tsx index 8ac2550..0101a66 100644 --- a/lib/CircleChevronDown.tsx +++ b/lib/CircleChevronDown.tsx @@ -12,7 +12,7 @@ const CircleChevronDown = (props: SVGProps) => ( diff --git a/lib/CircleChevronDownFill.tsx b/lib/CircleChevronDownFill.tsx index 12396c6..30ac14c 100644 --- a/lib/CircleChevronDownFill.tsx +++ b/lib/CircleChevronDownFill.tsx @@ -12,7 +12,7 @@ const CircleChevronDownFill = (props: SVGProps) => ( diff --git a/lib/CircleChevronLeft.tsx b/lib/CircleChevronLeft.tsx index 7a7dd61..ae45fa1 100644 --- a/lib/CircleChevronLeft.tsx +++ b/lib/CircleChevronLeft.tsx @@ -12,7 +12,7 @@ const CircleChevronLeft = (props: SVGProps) => ( diff --git a/lib/CircleChevronLeftFill.tsx b/lib/CircleChevronLeftFill.tsx index cbff2dd..73a28a6 100644 --- a/lib/CircleChevronLeftFill.tsx +++ b/lib/CircleChevronLeftFill.tsx @@ -12,7 +12,7 @@ const CircleChevronLeftFill = (props: SVGProps) => ( diff --git a/lib/CircleChevronRight.tsx b/lib/CircleChevronRight.tsx index 46f3568..a462511 100644 --- a/lib/CircleChevronRight.tsx +++ b/lib/CircleChevronRight.tsx @@ -12,7 +12,7 @@ const CircleChevronRight = (props: SVGProps) => ( diff --git a/lib/CircleChevronRightFill.tsx b/lib/CircleChevronRightFill.tsx index 36879fd..9012c1b 100644 --- a/lib/CircleChevronRightFill.tsx +++ b/lib/CircleChevronRightFill.tsx @@ -12,7 +12,7 @@ const CircleChevronRightFill = (props: SVGProps) => ( diff --git a/lib/CircleChevronUp.tsx b/lib/CircleChevronUp.tsx index bd4c5b8..047647b 100644 --- a/lib/CircleChevronUp.tsx +++ b/lib/CircleChevronUp.tsx @@ -12,7 +12,7 @@ const CircleChevronUp = (props: SVGProps) => ( diff --git a/lib/CircleChevronUpFill.tsx b/lib/CircleChevronUpFill.tsx index b3fd188..3e261a1 100644 --- a/lib/CircleChevronUpFill.tsx +++ b/lib/CircleChevronUpFill.tsx @@ -12,7 +12,7 @@ const CircleChevronUpFill = (props: SVGProps) => ( diff --git a/lib/CircleChevronsDown.tsx b/lib/CircleChevronsDown.tsx index a46ae17..b6e4ed1 100644 --- a/lib/CircleChevronsDown.tsx +++ b/lib/CircleChevronsDown.tsx @@ -12,7 +12,7 @@ const CircleChevronsDown = (props: SVGProps) => ( diff --git a/lib/CircleChevronsLeft.tsx b/lib/CircleChevronsLeft.tsx index c187c07..81ddf57 100644 --- a/lib/CircleChevronsLeft.tsx +++ b/lib/CircleChevronsLeft.tsx @@ -12,7 +12,7 @@ const CircleChevronsLeft = (props: SVGProps) => ( diff --git a/lib/CircleChevronsRight.tsx b/lib/CircleChevronsRight.tsx index 9e4bade..0f231ca 100644 --- a/lib/CircleChevronsRight.tsx +++ b/lib/CircleChevronsRight.tsx @@ -12,7 +12,7 @@ const CircleChevronsRight = (props: SVGProps) => ( diff --git a/lib/CircleChevronsUp.tsx b/lib/CircleChevronsUp.tsx index f335be7..51fc793 100644 --- a/lib/CircleChevronsUp.tsx +++ b/lib/CircleChevronsUp.tsx @@ -12,7 +12,7 @@ const CircleChevronsUp = (props: SVGProps) => ( diff --git a/lib/CircleDashed.tsx b/lib/CircleDashed.tsx index 65dca3c..fc69523 100644 --- a/lib/CircleDashed.tsx +++ b/lib/CircleDashed.tsx @@ -12,7 +12,7 @@ const CircleDashed = (props: SVGProps) => ( diff --git a/lib/CircleDollar.tsx b/lib/CircleDollar.tsx index 769b4dc..c723d79 100644 --- a/lib/CircleDollar.tsx +++ b/lib/CircleDollar.tsx @@ -12,7 +12,7 @@ const CircleDollar = (props: SVGProps) => ( diff --git a/lib/CircleExclamation.tsx b/lib/CircleExclamation.tsx index e0873c7..0135573 100644 --- a/lib/CircleExclamation.tsx +++ b/lib/CircleExclamation.tsx @@ -12,7 +12,7 @@ const CircleExclamation = (props: SVGProps) => ( diff --git a/lib/CircleExclamationFill.tsx b/lib/CircleExclamationFill.tsx index 145c1f7..1edc96e 100644 --- a/lib/CircleExclamationFill.tsx +++ b/lib/CircleExclamationFill.tsx @@ -12,7 +12,7 @@ const CircleExclamationFill = (props: SVGProps) => ( diff --git a/lib/CircleFill.tsx b/lib/CircleFill.tsx index 86bb312..69d3612 100644 --- a/lib/CircleFill.tsx +++ b/lib/CircleFill.tsx @@ -12,7 +12,7 @@ const CircleFill = (props: SVGProps) => ( diff --git a/lib/CircleInfo.tsx b/lib/CircleInfo.tsx index 7a280a7..42753b1 100644 --- a/lib/CircleInfo.tsx +++ b/lib/CircleInfo.tsx @@ -12,7 +12,7 @@ const CircleInfo = (props: SVGProps) => ( diff --git a/lib/CircleInfoFill.tsx b/lib/CircleInfoFill.tsx index d91b705..1b78af1 100644 --- a/lib/CircleInfoFill.tsx +++ b/lib/CircleInfoFill.tsx @@ -12,7 +12,7 @@ const CircleInfoFill = (props: SVGProps) => ( diff --git a/lib/CircleLetterC.tsx b/lib/CircleLetterC.tsx index 689f2a2..dcfff36 100644 --- a/lib/CircleLetterC.tsx +++ b/lib/CircleLetterC.tsx @@ -12,7 +12,7 @@ const CircleLetterC = (props: SVGProps) => ( diff --git a/lib/CircleLetterF.tsx b/lib/CircleLetterF.tsx index 2c5c54f..c5717f8 100644 --- a/lib/CircleLetterF.tsx +++ b/lib/CircleLetterF.tsx @@ -12,7 +12,7 @@ const CircleLetterF = (props: SVGProps) => ( diff --git a/lib/CircleLetterH.tsx b/lib/CircleLetterH.tsx index 5daa8ad..266622c 100644 --- a/lib/CircleLetterH.tsx +++ b/lib/CircleLetterH.tsx @@ -12,7 +12,7 @@ const CircleLetterH = (props: SVGProps) => ( diff --git a/lib/CircleLetterP.tsx b/lib/CircleLetterP.tsx index e2f547e..750bb92 100644 --- a/lib/CircleLetterP.tsx +++ b/lib/CircleLetterP.tsx @@ -12,7 +12,7 @@ const CircleLetterP = (props: SVGProps) => ( diff --git a/lib/CircleLetterR.tsx b/lib/CircleLetterR.tsx index 54d17f0..7c63adb 100644 --- a/lib/CircleLetterR.tsx +++ b/lib/CircleLetterR.tsx @@ -12,7 +12,7 @@ const CircleLetterR = (props: SVGProps) => ( diff --git a/lib/CircleLetterS.tsx b/lib/CircleLetterS.tsx index e2d05d5..3fcb3ce 100644 --- a/lib/CircleLetterS.tsx +++ b/lib/CircleLetterS.tsx @@ -12,7 +12,7 @@ const CircleLetterS = (props: SVGProps) => ( diff --git a/lib/CircleLetterT.tsx b/lib/CircleLetterT.tsx index 783f52d..536a59f 100644 --- a/lib/CircleLetterT.tsx +++ b/lib/CircleLetterT.tsx @@ -12,7 +12,7 @@ const CircleLetterT = (props: SVGProps) => ( diff --git a/lib/CircleLetterW.tsx b/lib/CircleLetterW.tsx index 45ff6f7..1544e8d 100644 --- a/lib/CircleLetterW.tsx +++ b/lib/CircleLetterW.tsx @@ -12,7 +12,7 @@ const CircleLetterW = (props: SVGProps) => ( diff --git a/lib/CircleLink.tsx b/lib/CircleLink.tsx index 0eea9e7..96d76ba 100644 --- a/lib/CircleLink.tsx +++ b/lib/CircleLink.tsx @@ -12,7 +12,7 @@ const CircleLink = (props: SVGProps) => ( diff --git a/lib/CircleMinus.tsx b/lib/CircleMinus.tsx index 7bc1625..d3f5ee5 100644 --- a/lib/CircleMinus.tsx +++ b/lib/CircleMinus.tsx @@ -12,7 +12,7 @@ const CircleMinus = (props: SVGProps) => ( diff --git a/lib/CircleMinusFill.tsx b/lib/CircleMinusFill.tsx index f08e08e..fa4979f 100644 --- a/lib/CircleMinusFill.tsx +++ b/lib/CircleMinusFill.tsx @@ -12,7 +12,7 @@ const CircleMinusFill = (props: SVGProps) => ( diff --git a/lib/CircleNumber0.tsx b/lib/CircleNumber0.tsx index 9840502..6c3ad13 100644 --- a/lib/CircleNumber0.tsx +++ b/lib/CircleNumber0.tsx @@ -12,7 +12,7 @@ const CircleNumber0 = (props: SVGProps) => ( diff --git a/lib/CircleNumber1.tsx b/lib/CircleNumber1.tsx index 8fab460..ae007cb 100644 --- a/lib/CircleNumber1.tsx +++ b/lib/CircleNumber1.tsx @@ -12,7 +12,7 @@ const CircleNumber1 = (props: SVGProps) => ( diff --git a/lib/CircleNumber6.tsx b/lib/CircleNumber6.tsx index d45baf8..4b62031 100644 --- a/lib/CircleNumber6.tsx +++ b/lib/CircleNumber6.tsx @@ -10,8 +10,8 @@ const CircleNumber6 = (props: SVGProps) => ( {...props} > - - + + ); diff --git a/lib/CircleNumber7.tsx b/lib/CircleNumber7.tsx index d4d173e..895bd1f 100644 --- a/lib/CircleNumber7.tsx +++ b/lib/CircleNumber7.tsx @@ -12,7 +12,7 @@ const CircleNumber7 = (props: SVGProps) => ( diff --git a/lib/CircleNumber8.tsx b/lib/CircleNumber8.tsx index e9941fa..4826976 100644 --- a/lib/CircleNumber8.tsx +++ b/lib/CircleNumber8.tsx @@ -12,7 +12,7 @@ const CircleNumber8 = (props: SVGProps) => ( diff --git a/lib/CircleNumber9.tsx b/lib/CircleNumber9.tsx index 8d316ab..6d0aa8a 100644 --- a/lib/CircleNumber9.tsx +++ b/lib/CircleNumber9.tsx @@ -10,8 +10,8 @@ const CircleNumber9 = (props: SVGProps) => ( {...props} > - - + + ); diff --git a/lib/CirclePause.tsx b/lib/CirclePause.tsx index e22f62e..5840b84 100644 --- a/lib/CirclePause.tsx +++ b/lib/CirclePause.tsx @@ -12,7 +12,7 @@ const CirclePause = (props: SVGProps) => ( diff --git a/lib/CirclePlay.tsx b/lib/CirclePlay.tsx index 5646238..117c2dd 100644 --- a/lib/CirclePlay.tsx +++ b/lib/CirclePlay.tsx @@ -12,7 +12,7 @@ const CirclePlay = (props: SVGProps) => ( diff --git a/lib/CirclePlus.tsx b/lib/CirclePlus.tsx index 1e38225..aab8701 100644 --- a/lib/CirclePlus.tsx +++ b/lib/CirclePlus.tsx @@ -12,7 +12,7 @@ const CirclePlus = (props: SVGProps) => ( diff --git a/lib/CirclePlusFill.tsx b/lib/CirclePlusFill.tsx index eb38248..261d4da 100644 --- a/lib/CirclePlusFill.tsx +++ b/lib/CirclePlusFill.tsx @@ -12,7 +12,7 @@ const CirclePlusFill = (props: SVGProps) => ( diff --git a/lib/CircleQuestion.tsx b/lib/CircleQuestion.tsx index 5c1d12b..1edab84 100644 --- a/lib/CircleQuestion.tsx +++ b/lib/CircleQuestion.tsx @@ -12,7 +12,7 @@ const CircleQuestion = (props: SVGProps) => ( diff --git a/lib/CircleQuestionDot.tsx b/lib/CircleQuestionDot.tsx index 27744de..fdffb04 100644 --- a/lib/CircleQuestionDot.tsx +++ b/lib/CircleQuestionDot.tsx @@ -12,9 +12,9 @@ const CircleQuestionDot = (props: SVGProps) => ( - + ); diff --git a/lib/CircleQuestionFill.tsx b/lib/CircleQuestionFill.tsx index 40d3a0e..4cf10d4 100644 --- a/lib/CircleQuestionFill.tsx +++ b/lib/CircleQuestionFill.tsx @@ -12,7 +12,7 @@ const CircleQuestionFill = (props: SVGProps) => ( diff --git a/lib/CircleRuble.tsx b/lib/CircleRuble.tsx index 34b2f35..bbb8bb8 100644 --- a/lib/CircleRuble.tsx +++ b/lib/CircleRuble.tsx @@ -12,7 +12,7 @@ const CircleRuble = (props: SVGProps) => ( diff --git a/lib/CircleStop.tsx b/lib/CircleStop.tsx index 7aa39fd..2b1a74a 100644 --- a/lib/CircleStop.tsx +++ b/lib/CircleStop.tsx @@ -12,7 +12,7 @@ const CircleStop = (props: SVGProps) => ( diff --git a/lib/CircleXmark.tsx b/lib/CircleXmark.tsx index 1cee7d4..ab2578f 100644 --- a/lib/CircleXmark.tsx +++ b/lib/CircleXmark.tsx @@ -12,7 +12,7 @@ const CircleXmark = (props: SVGProps) => ( diff --git a/lib/CircleXmarkFill.tsx b/lib/CircleXmarkFill.tsx index 163add9..2432023 100644 --- a/lib/CircleXmarkFill.tsx +++ b/lib/CircleXmarkFill.tsx @@ -12,7 +12,7 @@ const CircleXmarkFill = (props: SVGProps) => ( diff --git a/lib/Circles3Plus.tsx b/lib/Circles3Plus.tsx index 2731f74..e67ecfe 100644 --- a/lib/Circles3Plus.tsx +++ b/lib/Circles3Plus.tsx @@ -12,7 +12,7 @@ const Circles3Plus = (props: SVGProps) => ( diff --git a/lib/Circles4Diamond.tsx b/lib/Circles4Diamond.tsx index 28449b7..1f9d530 100644 --- a/lib/Circles4Diamond.tsx +++ b/lib/Circles4Diamond.tsx @@ -13,7 +13,7 @@ const Circles4Diamond = (props: SVGProps) => ( diff --git a/lib/Circles4Square.tsx b/lib/Circles4Square.tsx index 922cb3a..544bb9e 100644 --- a/lib/Circles4Square.tsx +++ b/lib/Circles4Square.tsx @@ -12,7 +12,7 @@ const Circles4Square = (props: SVGProps) => ( diff --git a/lib/Circles5Random.tsx b/lib/Circles5Random.tsx index 13baf12..3471ba8 100644 --- a/lib/Circles5Random.tsx +++ b/lib/Circles5Random.tsx @@ -12,7 +12,7 @@ const Circles5Random = (props: SVGProps) => ( diff --git a/lib/CirclesConcentric.tsx b/lib/CirclesConcentric.tsx index d1ad793..5f77696 100644 --- a/lib/CirclesConcentric.tsx +++ b/lib/CirclesConcentric.tsx @@ -12,7 +12,7 @@ const CirclesConcentric = (props: SVGProps) => ( diff --git a/lib/CirclesIntersection.tsx b/lib/CirclesIntersection.tsx index 07c95e2..f529c15 100644 --- a/lib/CirclesIntersection.tsx +++ b/lib/CirclesIntersection.tsx @@ -12,7 +12,7 @@ const CirclesIntersection = (props: SVGProps) => ( diff --git a/lib/Clock.tsx b/lib/Clock.tsx index f69acd0..575985d 100644 --- a/lib/Clock.tsx +++ b/lib/Clock.tsx @@ -12,7 +12,7 @@ const Clock = (props: SVGProps) => ( diff --git a/lib/ClockArrowRotateLeft.tsx b/lib/ClockArrowRotateLeft.tsx index 68fde33..b28b82e 100644 --- a/lib/ClockArrowRotateLeft.tsx +++ b/lib/ClockArrowRotateLeft.tsx @@ -12,7 +12,7 @@ const ClockArrowRotateLeft = (props: SVGProps) => ( diff --git a/lib/ClockFill.tsx b/lib/ClockFill.tsx index 6976241..c6501bc 100644 --- a/lib/ClockFill.tsx +++ b/lib/ClockFill.tsx @@ -12,7 +12,7 @@ const ClockFill = (props: SVGProps) => ( diff --git a/lib/Cloud.tsx b/lib/Cloud.tsx index 3c126d1..2c83319 100644 --- a/lib/Cloud.tsx +++ b/lib/Cloud.tsx @@ -12,7 +12,7 @@ const Cloud = (props: SVGProps) => ( diff --git a/lib/CloudArrowUpIn.tsx b/lib/CloudArrowUpIn.tsx index 73ada34..82debb4 100644 --- a/lib/CloudArrowUpIn.tsx +++ b/lib/CloudArrowUpIn.tsx @@ -13,7 +13,7 @@ const CloudArrowUpIn = (props: SVGProps) => ( diff --git a/lib/CloudCheck.tsx b/lib/CloudCheck.tsx index 99e278d..5778cce 100644 --- a/lib/CloudCheck.tsx +++ b/lib/CloudCheck.tsx @@ -12,7 +12,7 @@ const CloudCheck = (props: SVGProps) => ( diff --git a/lib/CloudGear.tsx b/lib/CloudGear.tsx index 3b9ca5d..ab71116 100644 --- a/lib/CloudGear.tsx +++ b/lib/CloudGear.tsx @@ -12,7 +12,7 @@ const CloudGear = (props: SVGProps) => ( diff --git a/lib/CloudNutHex.tsx b/lib/CloudNutHex.tsx index f030f04..58b03d3 100644 --- a/lib/CloudNutHex.tsx +++ b/lib/CloudNutHex.tsx @@ -12,7 +12,7 @@ const CloudNutHex = (props: SVGProps) => ( diff --git a/lib/Clouds.tsx b/lib/Clouds.tsx index 9eac840..354438f 100644 --- a/lib/Clouds.tsx +++ b/lib/Clouds.tsx @@ -13,7 +13,7 @@ const Clouds = (props: SVGProps) => ( diff --git a/lib/Code.tsx b/lib/Code.tsx index a41c929..82f2975 100644 --- a/lib/Code.tsx +++ b/lib/Code.tsx @@ -12,7 +12,7 @@ const Code = (props: SVGProps) => ( diff --git a/lib/CodeCommit.tsx b/lib/CodeCommit.tsx index 99e21e5..a569f86 100644 --- a/lib/CodeCommit.tsx +++ b/lib/CodeCommit.tsx @@ -12,7 +12,7 @@ const CodeCommit = (props: SVGProps) => ( diff --git a/lib/CodeCommitHorizontal.tsx b/lib/CodeCommitHorizontal.tsx index f55ccf6..6fc4efb 100644 --- a/lib/CodeCommitHorizontal.tsx +++ b/lib/CodeCommitHorizontal.tsx @@ -12,7 +12,7 @@ const CodeCommitHorizontal = (props: SVGProps) => ( diff --git a/lib/CodeCommits.tsx b/lib/CodeCommits.tsx index 4b82e65..b07bbf3 100644 --- a/lib/CodeCommits.tsx +++ b/lib/CodeCommits.tsx @@ -13,7 +13,7 @@ const CodeCommits = (props: SVGProps) => ( diff --git a/lib/CodeCompare.tsx b/lib/CodeCompare.tsx index 3e24319..c6bc0d5 100644 --- a/lib/CodeCompare.tsx +++ b/lib/CodeCompare.tsx @@ -12,7 +12,7 @@ const CodeCompare = (props: SVGProps) => ( diff --git a/lib/CodeFork.tsx b/lib/CodeFork.tsx index 3b39109..e29219b 100644 --- a/lib/CodeFork.tsx +++ b/lib/CodeFork.tsx @@ -12,7 +12,7 @@ const CodeFork = (props: SVGProps) => ( diff --git a/lib/CodeMerge.tsx b/lib/CodeMerge.tsx index 45121a2..fcfbf8e 100644 --- a/lib/CodeMerge.tsx +++ b/lib/CodeMerge.tsx @@ -12,7 +12,7 @@ const CodeMerge = (props: SVGProps) => ( diff --git a/lib/CodePullRequest.tsx b/lib/CodePullRequest.tsx index af40adb..3fb4406 100644 --- a/lib/CodePullRequest.tsx +++ b/lib/CodePullRequest.tsx @@ -12,7 +12,7 @@ const CodePullRequest = (props: SVGProps) => ( diff --git a/lib/CodePullRequestArrowLeft.tsx b/lib/CodePullRequestArrowLeft.tsx index c847a69..efd8331 100644 --- a/lib/CodePullRequestArrowLeft.tsx +++ b/lib/CodePullRequestArrowLeft.tsx @@ -12,7 +12,7 @@ const CodePullRequestArrowLeft = (props: SVGProps) => ( diff --git a/lib/CodePullRequestArrowRight.tsx b/lib/CodePullRequestArrowRight.tsx index 15e2626..a4aefe2 100644 --- a/lib/CodePullRequestArrowRight.tsx +++ b/lib/CodePullRequestArrowRight.tsx @@ -12,7 +12,7 @@ const CodePullRequestArrowRight = (props: SVGProps) => ( diff --git a/lib/CodePullRequestCheck.tsx b/lib/CodePullRequestCheck.tsx index ef1a59c..3b25740 100644 --- a/lib/CodePullRequestCheck.tsx +++ b/lib/CodePullRequestCheck.tsx @@ -12,7 +12,7 @@ const CodePullRequestCheck = (props: SVGProps) => ( diff --git a/lib/CodePullRequestXmark.tsx b/lib/CodePullRequestXmark.tsx index 60f595f..5eaa7d9 100644 --- a/lib/CodePullRequestXmark.tsx +++ b/lib/CodePullRequestXmark.tsx @@ -12,7 +12,7 @@ const CodePullRequestXmark = (props: SVGProps) => ( diff --git a/lib/CodeTrunk.tsx b/lib/CodeTrunk.tsx index 5b8de7d..1e97090 100644 --- a/lib/CodeTrunk.tsx +++ b/lib/CodeTrunk.tsx @@ -12,7 +12,7 @@ const CodeTrunk = (props: SVGProps) => ( diff --git a/lib/Comment.tsx b/lib/Comment.tsx index 0cce06d..cab2330 100644 --- a/lib/Comment.tsx +++ b/lib/Comment.tsx @@ -12,7 +12,7 @@ const Comment = (props: SVGProps) => ( diff --git a/lib/CommentDot.tsx b/lib/CommentDot.tsx index dece829..591e926 100644 --- a/lib/CommentDot.tsx +++ b/lib/CommentDot.tsx @@ -12,7 +12,7 @@ const CommentDot = (props: SVGProps) => ( diff --git a/lib/CommentFill.tsx b/lib/CommentFill.tsx index 128b0ec..a891912 100644 --- a/lib/CommentFill.tsx +++ b/lib/CommentFill.tsx @@ -12,7 +12,7 @@ const CommentFill = (props: SVGProps) => ( diff --git a/lib/CommentPlus.tsx b/lib/CommentPlus.tsx index 617c60a..ff36eb1 100644 --- a/lib/CommentPlus.tsx +++ b/lib/CommentPlus.tsx @@ -12,7 +12,7 @@ const CommentPlus = (props: SVGProps) => ( diff --git a/lib/CommentSlash.tsx b/lib/CommentSlash.tsx index 6090291..1fefebf 100644 --- a/lib/CommentSlash.tsx +++ b/lib/CommentSlash.tsx @@ -12,7 +12,7 @@ const CommentSlash = (props: SVGProps) => ( diff --git a/lib/Comments.tsx b/lib/Comments.tsx index d9072d6..4490be9 100644 --- a/lib/Comments.tsx +++ b/lib/Comments.tsx @@ -12,7 +12,7 @@ const Comments = (props: SVGProps) => ( diff --git a/lib/Compass.tsx b/lib/Compass.tsx index 756b606..e3e89e4 100644 --- a/lib/Compass.tsx +++ b/lib/Compass.tsx @@ -12,7 +12,7 @@ const Compass = (props: SVGProps) => ( diff --git a/lib/Copy.tsx b/lib/Copy.tsx index 22d71b2..67ce44f 100644 --- a/lib/Copy.tsx +++ b/lib/Copy.tsx @@ -12,7 +12,7 @@ const Copy = (props: SVGProps) => ( diff --git a/lib/CopyArrowRight.tsx b/lib/CopyArrowRight.tsx index 1bc1cac..b9794b2 100644 --- a/lib/CopyArrowRight.tsx +++ b/lib/CopyArrowRight.tsx @@ -12,7 +12,7 @@ const CopyArrowRight = (props: SVGProps) => ( diff --git a/lib/CopyCheck.tsx b/lib/CopyCheck.tsx index 054ef65..2841a44 100644 --- a/lib/CopyCheck.tsx +++ b/lib/CopyCheck.tsx @@ -10,10 +10,10 @@ const CopyCheck = (props: SVGProps) => ( {...props} > - + diff --git a/lib/CopyCheckXmark.tsx b/lib/CopyCheckXmark.tsx index 6baab98..2acf3e7 100644 --- a/lib/CopyCheckXmark.tsx +++ b/lib/CopyCheckXmark.tsx @@ -12,7 +12,7 @@ const CopyCheckXmark = (props: SVGProps) => ( diff --git a/lib/CopyChevronRight.tsx b/lib/CopyChevronRight.tsx index 51d39f6..75264fa 100644 --- a/lib/CopyChevronRight.tsx +++ b/lib/CopyChevronRight.tsx @@ -12,7 +12,7 @@ const CopyChevronRight = (props: SVGProps) => ( diff --git a/lib/CopyMinus.tsx b/lib/CopyMinus.tsx index f60328b..fcb0c9b 100644 --- a/lib/CopyMinus.tsx +++ b/lib/CopyMinus.tsx @@ -12,7 +12,7 @@ const CopyMinus = (props: SVGProps) => ( diff --git a/lib/CopyPicture.tsx b/lib/CopyPicture.tsx index c9caae5..201d4c3 100644 --- a/lib/CopyPicture.tsx +++ b/lib/CopyPicture.tsx @@ -12,7 +12,7 @@ const CopyPicture = (props: SVGProps) => ( diff --git a/lib/CopyPlus.tsx b/lib/CopyPlus.tsx index b557cb5..3be0b5d 100644 --- a/lib/CopyPlus.tsx +++ b/lib/CopyPlus.tsx @@ -12,7 +12,7 @@ const CopyPlus = (props: SVGProps) => ( diff --git a/lib/CopyTransparent.tsx b/lib/CopyTransparent.tsx index 827c91e..51f5a93 100644 --- a/lib/CopyTransparent.tsx +++ b/lib/CopyTransparent.tsx @@ -12,7 +12,7 @@ const CopyTransparent = (props: SVGProps) => ( diff --git a/lib/CopyXmark.tsx b/lib/CopyXmark.tsx index c90e061..c2553b8 100644 --- a/lib/CopyXmark.tsx +++ b/lib/CopyXmark.tsx @@ -12,7 +12,7 @@ const CopyXmark = (props: SVGProps) => ( diff --git a/lib/Cpu.tsx b/lib/Cpu.tsx index ed2baa0..e64d131 100644 --- a/lib/Cpu.tsx +++ b/lib/Cpu.tsx @@ -12,7 +12,7 @@ const Cpu = (props: SVGProps) => ( diff --git a/lib/Cpus.tsx b/lib/Cpus.tsx index 25bbe50..6a7159c 100644 --- a/lib/Cpus.tsx +++ b/lib/Cpus.tsx @@ -12,7 +12,7 @@ const Cpus = (props: SVGProps) => ( diff --git a/lib/CreditCard.tsx b/lib/CreditCard.tsx index ccd196e..384d915 100644 --- a/lib/CreditCard.tsx +++ b/lib/CreditCard.tsx @@ -12,7 +12,7 @@ const CreditCard = (props: SVGProps) => ( diff --git a/lib/Crop.tsx b/lib/Crop.tsx index 53baea1..e9a305e 100644 --- a/lib/Crop.tsx +++ b/lib/Crop.tsx @@ -12,7 +12,7 @@ const Crop = (props: SVGProps) => ( diff --git a/lib/CrownDiamond.tsx b/lib/CrownDiamond.tsx index 4f161fc..9243cc7 100644 --- a/lib/CrownDiamond.tsx +++ b/lib/CrownDiamond.tsx @@ -10,8 +10,8 @@ const CrownDiamond = (props: SVGProps) => ( {...props} > - - + + ); diff --git a/lib/Cube.tsx b/lib/Cube.tsx index 4a28999..89789fb 100644 --- a/lib/Cube.tsx +++ b/lib/Cube.tsx @@ -12,7 +12,7 @@ const Cube = (props: SVGProps) => ( diff --git a/lib/Cubes3.tsx b/lib/Cubes3.tsx index a190e7f..9d4c654 100644 --- a/lib/Cubes3.tsx +++ b/lib/Cubes3.tsx @@ -12,7 +12,7 @@ const Cubes3 = (props: SVGProps) => ( diff --git a/lib/Cubes3Overlap.tsx b/lib/Cubes3Overlap.tsx index 4d6d3d4..c6377de 100644 --- a/lib/Cubes3Overlap.tsx +++ b/lib/Cubes3Overlap.tsx @@ -12,7 +12,7 @@ const Cubes3Overlap = (props: SVGProps) => ( diff --git a/lib/Cup.tsx b/lib/Cup.tsx index 886e498..692d863 100644 --- a/lib/Cup.tsx +++ b/lib/Cup.tsx @@ -13,7 +13,7 @@ const Cup = (props: SVGProps) => ( diff --git a/lib/CurlyBrackets.tsx b/lib/CurlyBrackets.tsx index 765c8eb..1544163 100644 --- a/lib/CurlyBrackets.tsx +++ b/lib/CurlyBrackets.tsx @@ -12,7 +12,7 @@ const CurlyBrackets = (props: SVGProps) => ( diff --git a/lib/CurlyBracketsFunction.tsx b/lib/CurlyBracketsFunction.tsx index a718135..ebe3d71 100644 --- a/lib/CurlyBracketsFunction.tsx +++ b/lib/CurlyBracketsFunction.tsx @@ -12,7 +12,7 @@ const CurlyBracketsFunction = (props: SVGProps) => ( diff --git a/lib/CurlyBracketsLock.tsx b/lib/CurlyBracketsLock.tsx index 32d695c..7ed3ffc 100644 --- a/lib/CurlyBracketsLock.tsx +++ b/lib/CurlyBracketsLock.tsx @@ -12,7 +12,7 @@ const CurlyBracketsLock = (props: SVGProps) => ( diff --git a/lib/Database.tsx b/lib/Database.tsx index db0370f..6e5968d 100644 --- a/lib/Database.tsx +++ b/lib/Database.tsx @@ -12,7 +12,7 @@ const Database = (props: SVGProps) => ( diff --git a/lib/DatabaseArrowRight.tsx b/lib/DatabaseArrowRight.tsx index a17d30b..306d3fe 100644 --- a/lib/DatabaseArrowRight.tsx +++ b/lib/DatabaseArrowRight.tsx @@ -12,7 +12,7 @@ const DatabaseArrowRight = (props: SVGProps) => ( diff --git a/lib/DatabaseFill.tsx b/lib/DatabaseFill.tsx index 6892007..ec60090 100644 --- a/lib/DatabaseFill.tsx +++ b/lib/DatabaseFill.tsx @@ -12,7 +12,7 @@ const DatabaseFill = (props: SVGProps) => ( diff --git a/lib/DatabaseMagnifier.tsx b/lib/DatabaseMagnifier.tsx index 0e7e991..7d31bf8 100644 --- a/lib/DatabaseMagnifier.tsx +++ b/lib/DatabaseMagnifier.tsx @@ -12,7 +12,7 @@ const DatabaseMagnifier = (props: SVGProps) => ( diff --git a/lib/Databases.tsx b/lib/Databases.tsx index a1ee3f7..9c33042 100644 --- a/lib/Databases.tsx +++ b/lib/Databases.tsx @@ -12,7 +12,7 @@ const Databases = (props: SVGProps) => ( diff --git a/lib/DatabasesFill.tsx b/lib/DatabasesFill.tsx index 1496a62..4967d36 100644 --- a/lib/DatabasesFill.tsx +++ b/lib/DatabasesFill.tsx @@ -12,7 +12,7 @@ const DatabasesFill = (props: SVGProps) => ( diff --git a/lib/Delete.tsx b/lib/Delete.tsx index cd9ce7c..140a52d 100644 --- a/lib/Delete.tsx +++ b/lib/Delete.tsx @@ -12,7 +12,7 @@ const Delete = (props: SVGProps) => ( diff --git a/lib/Diamond.tsx b/lib/Diamond.tsx index b3b304b..9430927 100644 --- a/lib/Diamond.tsx +++ b/lib/Diamond.tsx @@ -13,7 +13,7 @@ const Diamond = (props: SVGProps) => ( diff --git a/lib/DiamondExclamation.tsx b/lib/DiamondExclamation.tsx index e8977ff..8bdd158 100644 --- a/lib/DiamondExclamation.tsx +++ b/lib/DiamondExclamation.tsx @@ -12,7 +12,7 @@ const DiamondExclamation = (props: SVGProps) => ( diff --git a/lib/DiamondFill.tsx b/lib/DiamondFill.tsx index 5ffa020..6b33e51 100644 --- a/lib/DiamondFill.tsx +++ b/lib/DiamondFill.tsx @@ -12,7 +12,7 @@ const DiamondFill = (props: SVGProps) => ( diff --git a/lib/Dice1.tsx b/lib/Dice1.tsx index 4f00844..0802710 100644 --- a/lib/Dice1.tsx +++ b/lib/Dice1.tsx @@ -12,7 +12,7 @@ const Dice1 = (props: SVGProps) => ( diff --git a/lib/Dice2.tsx b/lib/Dice2.tsx index 2dad0ac..1947f8a 100644 --- a/lib/Dice2.tsx +++ b/lib/Dice2.tsx @@ -12,7 +12,7 @@ const Dice2 = (props: SVGProps) => ( diff --git a/lib/Dice3.tsx b/lib/Dice3.tsx index c9bdacf..69decdc 100644 --- a/lib/Dice3.tsx +++ b/lib/Dice3.tsx @@ -12,7 +12,7 @@ const Dice3 = (props: SVGProps) => ( diff --git a/lib/Dice4.tsx b/lib/Dice4.tsx index 5098518..baea6b8 100644 --- a/lib/Dice4.tsx +++ b/lib/Dice4.tsx @@ -12,7 +12,7 @@ const Dice4 = (props: SVGProps) => ( diff --git a/lib/Dice5.tsx b/lib/Dice5.tsx index c9cf3df..fa442ff 100644 --- a/lib/Dice5.tsx +++ b/lib/Dice5.tsx @@ -12,7 +12,7 @@ const Dice5 = (props: SVGProps) => ( diff --git a/lib/Dice6.tsx b/lib/Dice6.tsx index 40d7eb5..20cb5f0 100644 --- a/lib/Dice6.tsx +++ b/lib/Dice6.tsx @@ -12,7 +12,7 @@ const Dice6 = (props: SVGProps) => ( diff --git a/lib/Display.tsx b/lib/Display.tsx index 0c982e8..f08e277 100644 --- a/lib/Display.tsx +++ b/lib/Display.tsx @@ -12,7 +12,7 @@ const Display = (props: SVGProps) => ( diff --git a/lib/DisplayPulse.tsx b/lib/DisplayPulse.tsx index 389e7eb..bf2d9d3 100644 --- a/lib/DisplayPulse.tsx +++ b/lib/DisplayPulse.tsx @@ -12,7 +12,7 @@ const DisplayPulse = (props: SVGProps) => ( diff --git a/lib/Dots9.tsx b/lib/Dots9.tsx index e33b6d4..10dde11 100644 --- a/lib/Dots9.tsx +++ b/lib/Dots9.tsx @@ -12,7 +12,7 @@ const Dots9 = (props: SVGProps) => ( diff --git a/lib/Droplet.tsx b/lib/Droplet.tsx index 9cc8f4d..0d3ca57 100644 --- a/lib/Droplet.tsx +++ b/lib/Droplet.tsx @@ -12,7 +12,7 @@ const Droplet = (props: SVGProps) => ( diff --git a/lib/Ear.tsx b/lib/Ear.tsx index 2e75356..a16debe 100644 --- a/lib/Ear.tsx +++ b/lib/Ear.tsx @@ -12,7 +12,7 @@ const Ear = (props: SVGProps) => ( diff --git a/lib/Ellipsis.tsx b/lib/Ellipsis.tsx index 1422238..7a8acbe 100644 --- a/lib/Ellipsis.tsx +++ b/lib/Ellipsis.tsx @@ -12,7 +12,7 @@ const Ellipsis = (props: SVGProps) => ( diff --git a/lib/EllipsisVertical.tsx b/lib/EllipsisVertical.tsx index a2102cd..9284bbe 100644 --- a/lib/EllipsisVertical.tsx +++ b/lib/EllipsisVertical.tsx @@ -12,7 +12,7 @@ const EllipsisVertical = (props: SVGProps) => ( diff --git a/lib/Envelope.tsx b/lib/Envelope.tsx index 256df57..a118f4a 100644 --- a/lib/Envelope.tsx +++ b/lib/Envelope.tsx @@ -12,7 +12,7 @@ const Envelope = (props: SVGProps) => ( diff --git a/lib/EnvelopeOpen.tsx b/lib/EnvelopeOpen.tsx index 63417e7..b27cc40 100644 --- a/lib/EnvelopeOpen.tsx +++ b/lib/EnvelopeOpen.tsx @@ -12,7 +12,7 @@ const EnvelopeOpen = (props: SVGProps) => ( diff --git a/lib/EnvelopeOpenXmark.tsx b/lib/EnvelopeOpenXmark.tsx index 7dcf6ec..d0574c8 100644 --- a/lib/EnvelopeOpenXmark.tsx +++ b/lib/EnvelopeOpenXmark.tsx @@ -12,7 +12,7 @@ const EnvelopeOpenXmark = (props: SVGProps) => ( diff --git a/lib/Equal.tsx b/lib/Equal.tsx index 27afc17..e9d4a7a 100644 --- a/lib/Equal.tsx +++ b/lib/Equal.tsx @@ -12,7 +12,7 @@ const Equal = (props: SVGProps) => ( diff --git a/lib/Eraser.tsx b/lib/Eraser.tsx index 22593e0..7cc7690 100644 --- a/lib/Eraser.tsx +++ b/lib/Eraser.tsx @@ -12,7 +12,7 @@ const Eraser = (props: SVGProps) => ( diff --git a/lib/ExclamationShape.tsx b/lib/ExclamationShape.tsx index af36005..ee0d159 100644 --- a/lib/ExclamationShape.tsx +++ b/lib/ExclamationShape.tsx @@ -13,7 +13,7 @@ const ExclamationShape = (props: SVGProps) => ( diff --git a/lib/Eye.tsx b/lib/Eye.tsx index b92ea9a..af5487a 100644 --- a/lib/Eye.tsx +++ b/lib/Eye.tsx @@ -12,7 +12,7 @@ const Eye = (props: SVGProps) => ( diff --git a/lib/EyeSlash.tsx b/lib/EyeSlash.tsx index d786a9e..175bd76 100644 --- a/lib/EyeSlash.tsx +++ b/lib/EyeSlash.tsx @@ -12,7 +12,7 @@ const EyeSlash = (props: SVGProps) => ( diff --git a/lib/EyesLookLeft.tsx b/lib/EyesLookLeft.tsx index 0b7453b..d90ce8d 100644 --- a/lib/EyesLookLeft.tsx +++ b/lib/EyesLookLeft.tsx @@ -12,7 +12,7 @@ const EyesLookLeft = (props: SVGProps) => ( diff --git a/lib/EyesLookRight.tsx b/lib/EyesLookRight.tsx index 241f6ab..105c150 100644 --- a/lib/EyesLookRight.tsx +++ b/lib/EyesLookRight.tsx @@ -12,7 +12,7 @@ const EyesLookRight = (props: SVGProps) => ( diff --git a/lib/FaceAlien.tsx b/lib/FaceAlien.tsx index d459d32..9aff023 100644 --- a/lib/FaceAlien.tsx +++ b/lib/FaceAlien.tsx @@ -12,7 +12,7 @@ const FaceAlien = (props: SVGProps) => ( diff --git a/lib/FaceFun.tsx b/lib/FaceFun.tsx index eb77d23..1d6c563 100644 --- a/lib/FaceFun.tsx +++ b/lib/FaceFun.tsx @@ -12,7 +12,7 @@ const FaceFun = (props: SVGProps) => ( diff --git a/lib/FaceNeutral.tsx b/lib/FaceNeutral.tsx index 8b44afd..e5980c7 100644 --- a/lib/FaceNeutral.tsx +++ b/lib/FaceNeutral.tsx @@ -12,7 +12,7 @@ const FaceNeutral = (props: SVGProps) => ( diff --git a/lib/FaceNeutralDashed.tsx b/lib/FaceNeutralDashed.tsx index 7b27b99..afb1752 100644 --- a/lib/FaceNeutralDashed.tsx +++ b/lib/FaceNeutralDashed.tsx @@ -12,7 +12,7 @@ const FaceNeutralDashed = (props: SVGProps) => ( diff --git a/lib/FaceRobot.tsx b/lib/FaceRobot.tsx index 8d6b37e..df74640 100644 --- a/lib/FaceRobot.tsx +++ b/lib/FaceRobot.tsx @@ -12,7 +12,7 @@ const FaceRobot = (props: SVGProps) => ( diff --git a/lib/FaceSad.tsx b/lib/FaceSad.tsx index da698ba..983a4ec 100644 --- a/lib/FaceSad.tsx +++ b/lib/FaceSad.tsx @@ -12,7 +12,7 @@ const FaceSad = (props: SVGProps) => ( diff --git a/lib/FaceSmile.tsx b/lib/FaceSmile.tsx index 762bf1f..3aa657a 100644 --- a/lib/FaceSmile.tsx +++ b/lib/FaceSmile.tsx @@ -12,7 +12,7 @@ const FaceSmile = (props: SVGProps) => ( diff --git a/lib/FaceSurprise.tsx b/lib/FaceSurprise.tsx index 4f3d2e2..dd0c28f 100644 --- a/lib/FaceSurprise.tsx +++ b/lib/FaceSurprise.tsx @@ -12,7 +12,7 @@ const FaceSurprise = (props: SVGProps) => ( diff --git a/lib/Factory.tsx b/lib/Factory.tsx index cd97f14..1082194 100644 --- a/lib/Factory.tsx +++ b/lib/Factory.tsx @@ -12,7 +12,7 @@ const Factory = (props: SVGProps) => ( diff --git a/lib/File.tsx b/lib/File.tsx index 4c884a3..9c5f95d 100644 --- a/lib/File.tsx +++ b/lib/File.tsx @@ -12,7 +12,7 @@ const File = (props: SVGProps) => ( diff --git a/lib/FileArrowDown.tsx b/lib/FileArrowDown.tsx index ad4223b..13e35a1 100644 --- a/lib/FileArrowDown.tsx +++ b/lib/FileArrowDown.tsx @@ -12,7 +12,7 @@ const FileArrowDown = (props: SVGProps) => ( diff --git a/lib/FileArrowLeft.tsx b/lib/FileArrowLeft.tsx index d57dc1d..d4567a5 100644 --- a/lib/FileArrowLeft.tsx +++ b/lib/FileArrowLeft.tsx @@ -12,7 +12,7 @@ const FileArrowLeft = (props: SVGProps) => ( diff --git a/lib/FileArrowRight.tsx b/lib/FileArrowRight.tsx index b09286b..2d83699 100644 --- a/lib/FileArrowRight.tsx +++ b/lib/FileArrowRight.tsx @@ -12,7 +12,7 @@ const FileArrowRight = (props: SVGProps) => ( diff --git a/lib/FileArrowRightOut.tsx b/lib/FileArrowRightOut.tsx index 0b27864..cc6eb43 100644 --- a/lib/FileArrowRightOut.tsx +++ b/lib/FileArrowRightOut.tsx @@ -12,7 +12,7 @@ const FileArrowRightOut = (props: SVGProps) => ( diff --git a/lib/FileArrowUp.tsx b/lib/FileArrowUp.tsx index dbf0eeb..f04bd14 100644 --- a/lib/FileArrowUp.tsx +++ b/lib/FileArrowUp.tsx @@ -12,7 +12,7 @@ const FileArrowUp = (props: SVGProps) => ( diff --git a/lib/FileCheck.tsx b/lib/FileCheck.tsx index 8aad4c0..5a347b3 100644 --- a/lib/FileCheck.tsx +++ b/lib/FileCheck.tsx @@ -12,7 +12,7 @@ const FileCheck = (props: SVGProps) => ( diff --git a/lib/FileCode.tsx b/lib/FileCode.tsx index dcb13f1..04aa49f 100644 --- a/lib/FileCode.tsx +++ b/lib/FileCode.tsx @@ -12,7 +12,7 @@ const FileCode = (props: SVGProps) => ( diff --git a/lib/FileDollar.tsx b/lib/FileDollar.tsx index feda2f7..86898ed 100644 --- a/lib/FileDollar.tsx +++ b/lib/FileDollar.tsx @@ -12,7 +12,7 @@ const FileDollar = (props: SVGProps) => ( diff --git a/lib/FileExclamation.tsx b/lib/FileExclamation.tsx index 432be12..50c03b6 100644 --- a/lib/FileExclamation.tsx +++ b/lib/FileExclamation.tsx @@ -12,7 +12,7 @@ const FileExclamation = (props: SVGProps) => ( diff --git a/lib/FileLetterP.tsx b/lib/FileLetterP.tsx index b693233..30f0b4f 100644 --- a/lib/FileLetterP.tsx +++ b/lib/FileLetterP.tsx @@ -12,7 +12,7 @@ const FileLetterP = (props: SVGProps) => ( diff --git a/lib/FileLetterW.tsx b/lib/FileLetterW.tsx index 13f07af..07f1d68 100644 --- a/lib/FileLetterW.tsx +++ b/lib/FileLetterW.tsx @@ -12,7 +12,7 @@ const FileLetterW = (props: SVGProps) => ( diff --git a/lib/FileLetterX.tsx b/lib/FileLetterX.tsx index 58993ea..4920fed 100644 --- a/lib/FileLetterX.tsx +++ b/lib/FileLetterX.tsx @@ -12,7 +12,7 @@ const FileLetterX = (props: SVGProps) => ( diff --git a/lib/FileMagnifier.tsx b/lib/FileMagnifier.tsx index 5775cbf..7887c88 100644 --- a/lib/FileMagnifier.tsx +++ b/lib/FileMagnifier.tsx @@ -12,7 +12,7 @@ const FileMagnifier = (props: SVGProps) => ( diff --git a/lib/FileMinus.tsx b/lib/FileMinus.tsx index 5d2131f..fc5db13 100644 --- a/lib/FileMinus.tsx +++ b/lib/FileMinus.tsx @@ -12,7 +12,7 @@ const FileMinus = (props: SVGProps) => ( diff --git a/lib/FilePlus.tsx b/lib/FilePlus.tsx index 1f87def..e769e21 100644 --- a/lib/FilePlus.tsx +++ b/lib/FilePlus.tsx @@ -12,7 +12,7 @@ const FilePlus = (props: SVGProps) => ( diff --git a/lib/FileQuestion.tsx b/lib/FileQuestion.tsx index c5d7923..26ccd9f 100644 --- a/lib/FileQuestion.tsx +++ b/lib/FileQuestion.tsx @@ -12,7 +12,7 @@ const FileQuestion = (props: SVGProps) => ( diff --git a/lib/FileRuble.tsx b/lib/FileRuble.tsx index 9bf1d32..82ec2c8 100644 --- a/lib/FileRuble.tsx +++ b/lib/FileRuble.tsx @@ -12,7 +12,7 @@ const FileRuble = (props: SVGProps) => ( diff --git a/lib/FileText.tsx b/lib/FileText.tsx index cd11445..17fafb8 100644 --- a/lib/FileText.tsx +++ b/lib/FileText.tsx @@ -12,7 +12,7 @@ const FileText = (props: SVGProps) => ( diff --git a/lib/FileXmark.tsx b/lib/FileXmark.tsx index 73af608..ba15d92 100644 --- a/lib/FileXmark.tsx +++ b/lib/FileXmark.tsx @@ -12,7 +12,7 @@ const FileXmark = (props: SVGProps) => ( diff --git a/lib/FileZipper.tsx b/lib/FileZipper.tsx index 915b689..2ffde29 100644 --- a/lib/FileZipper.tsx +++ b/lib/FileZipper.tsx @@ -12,7 +12,7 @@ const FileZipper = (props: SVGProps) => ( diff --git a/lib/Files.tsx b/lib/Files.tsx index 31df761..0034893 100644 --- a/lib/Files.tsx +++ b/lib/Files.tsx @@ -12,7 +12,7 @@ const Files = (props: SVGProps) => ( diff --git a/lib/Filmstrip.tsx b/lib/Filmstrip.tsx index 0d2c5cc..09ddc71 100644 --- a/lib/Filmstrip.tsx +++ b/lib/Filmstrip.tsx @@ -12,7 +12,7 @@ const Filmstrip = (props: SVGProps) => ( diff --git a/lib/Fingerprint.tsx b/lib/Fingerprint.tsx index 00ad967..f515e33 100644 --- a/lib/Fingerprint.tsx +++ b/lib/Fingerprint.tsx @@ -12,7 +12,7 @@ const Fingerprint = (props: SVGProps) => ( diff --git a/lib/Flag.tsx b/lib/Flag.tsx index f3d1aeb..ebca085 100644 --- a/lib/Flag.tsx +++ b/lib/Flag.tsx @@ -12,7 +12,7 @@ const Flag = (props: SVGProps) => ( diff --git a/lib/Flame.tsx b/lib/Flame.tsx index 7837c8c..5e65b0d 100644 --- a/lib/Flame.tsx +++ b/lib/Flame.tsx @@ -12,7 +12,7 @@ const Flame = (props: SVGProps) => ( diff --git a/lib/Flask.tsx b/lib/Flask.tsx index 0e14e65..0c543d0 100644 --- a/lib/Flask.tsx +++ b/lib/Flask.tsx @@ -12,7 +12,7 @@ const Flask = (props: SVGProps) => ( diff --git a/lib/FloppyDisk.tsx b/lib/FloppyDisk.tsx index 01580b3..67fcf8d 100644 --- a/lib/FloppyDisk.tsx +++ b/lib/FloppyDisk.tsx @@ -12,7 +12,7 @@ const FloppyDisk = (props: SVGProps) => ( diff --git a/lib/Folder.tsx b/lib/Folder.tsx index b1bb9ee..d952d30 100644 --- a/lib/Folder.tsx +++ b/lib/Folder.tsx @@ -12,7 +12,7 @@ const Folder = (props: SVGProps) => ( diff --git a/lib/FolderArrowDown.tsx b/lib/FolderArrowDown.tsx index df66d69..454f354 100644 --- a/lib/FolderArrowDown.tsx +++ b/lib/FolderArrowDown.tsx @@ -12,7 +12,7 @@ const FolderArrowDown = (props: SVGProps) => ( diff --git a/lib/FolderArrowLeft.tsx b/lib/FolderArrowLeft.tsx index 603797a..8050194 100644 --- a/lib/FolderArrowLeft.tsx +++ b/lib/FolderArrowLeft.tsx @@ -12,7 +12,7 @@ const FolderArrowLeft = (props: SVGProps) => ( diff --git a/lib/FolderArrowRight.tsx b/lib/FolderArrowRight.tsx index f4cd58a..68a61ec 100644 --- a/lib/FolderArrowRight.tsx +++ b/lib/FolderArrowRight.tsx @@ -12,7 +12,7 @@ const FolderArrowRight = (props: SVGProps) => ( diff --git a/lib/FolderArrowUp.tsx b/lib/FolderArrowUp.tsx index dae81d8..e0722f2 100644 --- a/lib/FolderArrowUp.tsx +++ b/lib/FolderArrowUp.tsx @@ -12,7 +12,7 @@ const FolderArrowUp = (props: SVGProps) => ( diff --git a/lib/FolderArrowUpIn.tsx b/lib/FolderArrowUpIn.tsx index 80efed5..10ab95c 100644 --- a/lib/FolderArrowUpIn.tsx +++ b/lib/FolderArrowUpIn.tsx @@ -12,7 +12,7 @@ const FolderArrowUpIn = (props: SVGProps) => ( diff --git a/lib/FolderCheck.tsx b/lib/FolderCheck.tsx index f60c6de..05974d8 100644 --- a/lib/FolderCheck.tsx +++ b/lib/FolderCheck.tsx @@ -12,7 +12,7 @@ const FolderCheck = (props: SVGProps) => ( diff --git a/lib/FolderCode.tsx b/lib/FolderCode.tsx index 5fa6a34..446c970 100644 --- a/lib/FolderCode.tsx +++ b/lib/FolderCode.tsx @@ -12,7 +12,7 @@ const FolderCode = (props: SVGProps) => ( diff --git a/lib/FolderExclamation.tsx b/lib/FolderExclamation.tsx index 7439ecd..78de895 100644 --- a/lib/FolderExclamation.tsx +++ b/lib/FolderExclamation.tsx @@ -12,7 +12,7 @@ const FolderExclamation = (props: SVGProps) => ( diff --git a/lib/FolderFill.tsx b/lib/FolderFill.tsx index 64f8846..b7b4872 100644 --- a/lib/FolderFill.tsx +++ b/lib/FolderFill.tsx @@ -12,7 +12,7 @@ const FolderFill = (props: SVGProps) => ( diff --git a/lib/FolderFlows.tsx b/lib/FolderFlows.tsx index e3712ae..a46c168 100644 --- a/lib/FolderFlows.tsx +++ b/lib/FolderFlows.tsx @@ -12,7 +12,7 @@ const FolderFlows = (props: SVGProps) => ( diff --git a/lib/FolderHouse.tsx b/lib/FolderHouse.tsx index ad413ff..e784cf3 100644 --- a/lib/FolderHouse.tsx +++ b/lib/FolderHouse.tsx @@ -12,7 +12,7 @@ const FolderHouse = (props: SVGProps) => ( diff --git a/lib/FolderKeyhole.tsx b/lib/FolderKeyhole.tsx index 30abdad..38e7784 100644 --- a/lib/FolderKeyhole.tsx +++ b/lib/FolderKeyhole.tsx @@ -12,7 +12,7 @@ const FolderKeyhole = (props: SVGProps) => ( diff --git a/lib/FolderLock.tsx b/lib/FolderLock.tsx index 4ad5cf1..b719268 100644 --- a/lib/FolderLock.tsx +++ b/lib/FolderLock.tsx @@ -12,7 +12,7 @@ const FolderLock = (props: SVGProps) => ( diff --git a/lib/FolderMagnifier.tsx b/lib/FolderMagnifier.tsx index bda20ea..e6181a8 100644 --- a/lib/FolderMagnifier.tsx +++ b/lib/FolderMagnifier.tsx @@ -12,7 +12,7 @@ const FolderMagnifier = (props: SVGProps) => ( diff --git a/lib/FolderOpen.tsx b/lib/FolderOpen.tsx index 15b6a9c..79f46e1 100644 --- a/lib/FolderOpen.tsx +++ b/lib/FolderOpen.tsx @@ -12,7 +12,7 @@ const FolderOpen = (props: SVGProps) => ( diff --git a/lib/FolderOpenFill.tsx b/lib/FolderOpenFill.tsx index cf92095..ea02cf6 100644 --- a/lib/FolderOpenFill.tsx +++ b/lib/FolderOpenFill.tsx @@ -12,7 +12,7 @@ const FolderOpenFill = (props: SVGProps) => ( diff --git a/lib/FolderPlus.tsx b/lib/FolderPlus.tsx index 0025649..77cfb49 100644 --- a/lib/FolderPlus.tsx +++ b/lib/FolderPlus.tsx @@ -12,7 +12,7 @@ const FolderPlus = (props: SVGProps) => ( diff --git a/lib/FolderTree.tsx b/lib/FolderTree.tsx index 72b088d..3762c44 100644 --- a/lib/FolderTree.tsx +++ b/lib/FolderTree.tsx @@ -12,7 +12,7 @@ const FolderTree = (props: SVGProps) => ( diff --git a/lib/Folders.tsx b/lib/Folders.tsx index 0742cee..5002c8e 100644 --- a/lib/Folders.tsx +++ b/lib/Folders.tsx @@ -12,7 +12,7 @@ const Folders = (props: SVGProps) => ( diff --git a/lib/Font.tsx b/lib/Font.tsx index c2cd3e0..1ba6a98 100644 --- a/lib/Font.tsx +++ b/lib/Font.tsx @@ -12,7 +12,7 @@ const Font = (props: SVGProps) => ( diff --git a/lib/FontCase.tsx b/lib/FontCase.tsx index 4f46e07..d5625b3 100644 --- a/lib/FontCase.tsx +++ b/lib/FontCase.tsx @@ -13,7 +13,7 @@ const FontCase = (props: SVGProps) => ( diff --git a/lib/FontCursor.tsx b/lib/FontCursor.tsx index 503e263..da3bbd4 100644 --- a/lib/FontCursor.tsx +++ b/lib/FontCursor.tsx @@ -12,7 +12,7 @@ const FontCursor = (props: SVGProps) => ( diff --git a/lib/Frame.tsx b/lib/Frame.tsx index ea1e069..c04181f 100644 --- a/lib/Frame.tsx +++ b/lib/Frame.tsx @@ -12,7 +12,7 @@ const Frame = (props: SVGProps) => ( diff --git a/lib/Frames.tsx b/lib/Frames.tsx index b8173af..e2d6ea1 100644 --- a/lib/Frames.tsx +++ b/lib/Frames.tsx @@ -13,7 +13,7 @@ const Frames = (props: SVGProps) => ( diff --git a/lib/Function.tsx b/lib/Function.tsx index f1f493a..5d61033 100644 --- a/lib/Function.tsx +++ b/lib/Function.tsx @@ -13,7 +13,7 @@ const Function = (props: SVGProps) => ( diff --git a/lib/Funnel.tsx b/lib/Funnel.tsx index 0984cef..72feec3 100644 --- a/lib/Funnel.tsx +++ b/lib/Funnel.tsx @@ -12,7 +12,7 @@ const Funnel = (props: SVGProps) => ( diff --git a/lib/FunnelXmark.tsx b/lib/FunnelXmark.tsx index bd006d6..ee0064f 100644 --- a/lib/FunnelXmark.tsx +++ b/lib/FunnelXmark.tsx @@ -12,7 +12,7 @@ const FunnelXmark = (props: SVGProps) => ( diff --git a/lib/Gear.tsx b/lib/Gear.tsx index 0e6dcdd..8df225e 100644 --- a/lib/Gear.tsx +++ b/lib/Gear.tsx @@ -9,19 +9,12 @@ const Gear = (props: SVGProps) => ( viewBox="0 0 16 16" {...props} > - - - - - - - - + ); export default Gear; diff --git a/lib/GearBranches.tsx b/lib/GearBranches.tsx index cc11e8c..dd33b25 100644 --- a/lib/GearBranches.tsx +++ b/lib/GearBranches.tsx @@ -13,7 +13,7 @@ const GearBranches = (props: SVGProps) => ( diff --git a/lib/GearDot.tsx b/lib/GearDot.tsx index ba0a113..d5b1d58 100644 --- a/lib/GearDot.tsx +++ b/lib/GearDot.tsx @@ -9,18 +9,13 @@ const GearDot = (props: SVGProps) => ( viewBox="0 0 16 16" {...props} > - + - + - - - - - ); export default GearDot; diff --git a/lib/GearPlay.tsx b/lib/GearPlay.tsx index 40a39c1..79318bb 100644 --- a/lib/GearPlay.tsx +++ b/lib/GearPlay.tsx @@ -12,7 +12,7 @@ const GearPlay = (props: SVGProps) => ( diff --git a/lib/Geo.tsx b/lib/Geo.tsx index 8b7a757..26c8b72 100644 --- a/lib/Geo.tsx +++ b/lib/Geo.tsx @@ -12,7 +12,7 @@ const Geo = (props: SVGProps) => ( diff --git a/lib/GeoDots.tsx b/lib/GeoDots.tsx index f2f39bb..e715184 100644 --- a/lib/GeoDots.tsx +++ b/lib/GeoDots.tsx @@ -12,7 +12,7 @@ const GeoDots = (props: SVGProps) => ( diff --git a/lib/GeoFill.tsx b/lib/GeoFill.tsx index 4f68c4f..0e86db2 100644 --- a/lib/GeoFill.tsx +++ b/lib/GeoFill.tsx @@ -12,7 +12,7 @@ const GeoFill = (props: SVGProps) => ( diff --git a/lib/GeoPin.tsx b/lib/GeoPin.tsx index fb37a6b..47a3309 100644 --- a/lib/GeoPin.tsx +++ b/lib/GeoPin.tsx @@ -12,7 +12,7 @@ const GeoPin = (props: SVGProps) => ( diff --git a/lib/GeoPolygons.tsx b/lib/GeoPolygons.tsx index 9c4a664..8fbc252 100644 --- a/lib/GeoPolygons.tsx +++ b/lib/GeoPolygons.tsx @@ -12,7 +12,7 @@ const GeoPolygons = (props: SVGProps) => ( diff --git a/lib/Ghost.tsx b/lib/Ghost.tsx index 73312e9..0689f17 100644 --- a/lib/Ghost.tsx +++ b/lib/Ghost.tsx @@ -12,7 +12,7 @@ const Ghost = (props: SVGProps) => ( diff --git a/lib/Gift.tsx b/lib/Gift.tsx index 4b07a93..31415c5 100644 --- a/lib/Gift.tsx +++ b/lib/Gift.tsx @@ -12,7 +12,7 @@ const Gift = (props: SVGProps) => ( diff --git a/lib/Globe.tsx b/lib/Globe.tsx index c10991d..68b4e6f 100644 --- a/lib/Globe.tsx +++ b/lib/Globe.tsx @@ -12,7 +12,7 @@ const Globe = (props: SVGProps) => ( diff --git a/lib/Gpu.tsx b/lib/Gpu.tsx index 67538cf..7d158fd 100644 --- a/lib/Gpu.tsx +++ b/lib/Gpu.tsx @@ -13,7 +13,7 @@ const Gpu = (props: SVGProps) => ( diff --git a/lib/GraduationCap.tsx b/lib/GraduationCap.tsx index 44176d0..c175f89 100644 --- a/lib/GraduationCap.tsx +++ b/lib/GraduationCap.tsx @@ -12,7 +12,7 @@ const GraduationCap = (props: SVGProps) => ( diff --git a/lib/GraphNode.tsx b/lib/GraphNode.tsx index 8c65e01..ab4e983 100644 --- a/lib/GraphNode.tsx +++ b/lib/GraphNode.tsx @@ -12,7 +12,7 @@ const GraphNode = (props: SVGProps) => ( diff --git a/lib/Grip.tsx b/lib/Grip.tsx index d88c464..14065dd 100644 --- a/lib/Grip.tsx +++ b/lib/Grip.tsx @@ -12,7 +12,7 @@ const Grip = (props: SVGProps) => ( diff --git a/lib/GripHorizontal.tsx b/lib/GripHorizontal.tsx index 1543a1c..6d833f2 100644 --- a/lib/GripHorizontal.tsx +++ b/lib/GripHorizontal.tsx @@ -12,7 +12,7 @@ const GripHorizontal = (props: SVGProps) => ( diff --git a/lib/Hammer.tsx b/lib/Hammer.tsx index 1e8ba36..ac9eaa8 100644 --- a/lib/Hammer.tsx +++ b/lib/Hammer.tsx @@ -13,7 +13,7 @@ const Hammer = (props: SVGProps) => ( diff --git a/lib/Hand.tsx b/lib/Hand.tsx index e1adfa7..7da0ccc 100644 --- a/lib/Hand.tsx +++ b/lib/Hand.tsx @@ -13,7 +13,7 @@ const Hand = (props: SVGProps) => ( diff --git a/lib/HandOk.tsx b/lib/HandOk.tsx index d279ad9..b7700e7 100644 --- a/lib/HandOk.tsx +++ b/lib/HandOk.tsx @@ -13,7 +13,7 @@ const HandOk = (props: SVGProps) => ( diff --git a/lib/HandPointDown.tsx b/lib/HandPointDown.tsx index 8eb30ce..f9d3404 100644 --- a/lib/HandPointDown.tsx +++ b/lib/HandPointDown.tsx @@ -13,7 +13,7 @@ const HandPointDown = (props: SVGProps) => ( diff --git a/lib/HandPointLeft.tsx b/lib/HandPointLeft.tsx index c89cbfa..781351e 100644 --- a/lib/HandPointLeft.tsx +++ b/lib/HandPointLeft.tsx @@ -13,7 +13,7 @@ const HandPointLeft = (props: SVGProps) => ( diff --git a/lib/HandPointRight.tsx b/lib/HandPointRight.tsx index edb147f..3c449ce 100644 --- a/lib/HandPointRight.tsx +++ b/lib/HandPointRight.tsx @@ -13,7 +13,7 @@ const HandPointRight = (props: SVGProps) => ( diff --git a/lib/HandPointUp.tsx b/lib/HandPointUp.tsx index 7ff2322..c265685 100644 --- a/lib/HandPointUp.tsx +++ b/lib/HandPointUp.tsx @@ -13,7 +13,7 @@ const HandPointUp = (props: SVGProps) => ( diff --git a/lib/HandStop.tsx b/lib/HandStop.tsx index 46b19e2..7ee6efe 100644 --- a/lib/HandStop.tsx +++ b/lib/HandStop.tsx @@ -12,7 +12,7 @@ const HandStop = (props: SVGProps) => ( diff --git a/lib/Handset.tsx b/lib/Handset.tsx index 52d4077..7867dae 100644 --- a/lib/Handset.tsx +++ b/lib/Handset.tsx @@ -12,7 +12,7 @@ const Handset = (props: SVGProps) => ( diff --git a/lib/HardDrive.tsx b/lib/HardDrive.tsx index 1f0124f..cac4d33 100644 --- a/lib/HardDrive.tsx +++ b/lib/HardDrive.tsx @@ -12,7 +12,7 @@ const HardDrive = (props: SVGProps) => ( diff --git a/lib/Hashtag.tsx b/lib/Hashtag.tsx index 5982a2e..bd3b304 100644 --- a/lib/Hashtag.tsx +++ b/lib/Hashtag.tsx @@ -12,7 +12,7 @@ const Hashtag = (props: SVGProps) => ( diff --git a/lib/Heading.tsx b/lib/Heading.tsx index 62b60f7..8baed83 100644 --- a/lib/Heading.tsx +++ b/lib/Heading.tsx @@ -12,7 +12,7 @@ const Heading = (props: SVGProps) => ( diff --git a/lib/Heading1.tsx b/lib/Heading1.tsx index e9de249..4dcda94 100644 --- a/lib/Heading1.tsx +++ b/lib/Heading1.tsx @@ -12,7 +12,7 @@ const Heading1 = (props: SVGProps) => ( diff --git a/lib/Heading2.tsx b/lib/Heading2.tsx index 824149d..ef8beb2 100644 --- a/lib/Heading2.tsx +++ b/lib/Heading2.tsx @@ -12,7 +12,7 @@ const Heading2 = (props: SVGProps) => ( diff --git a/lib/Heading3.tsx b/lib/Heading3.tsx index 93bb29f..027fe5c 100644 --- a/lib/Heading3.tsx +++ b/lib/Heading3.tsx @@ -12,7 +12,7 @@ const Heading3 = (props: SVGProps) => ( diff --git a/lib/Heading4.tsx b/lib/Heading4.tsx index 8aca897..d37995c 100644 --- a/lib/Heading4.tsx +++ b/lib/Heading4.tsx @@ -12,7 +12,7 @@ const Heading4 = (props: SVGProps) => ( diff --git a/lib/Heading5.tsx b/lib/Heading5.tsx index 3d85a24..1f30b83 100644 --- a/lib/Heading5.tsx +++ b/lib/Heading5.tsx @@ -12,7 +12,7 @@ const Heading5 = (props: SVGProps) => ( diff --git a/lib/Heading6.tsx b/lib/Heading6.tsx index 9315b75..0ea3c3f 100644 --- a/lib/Heading6.tsx +++ b/lib/Heading6.tsx @@ -12,7 +12,7 @@ const Heading6 = (props: SVGProps) => ( diff --git a/lib/Headphones.tsx b/lib/Headphones.tsx index ca2f185..6fc5b46 100644 --- a/lib/Headphones.tsx +++ b/lib/Headphones.tsx @@ -12,7 +12,7 @@ const Headphones = (props: SVGProps) => ( diff --git a/lib/Heart.tsx b/lib/Heart.tsx index d96b9c9..3bb3515 100644 --- a/lib/Heart.tsx +++ b/lib/Heart.tsx @@ -12,7 +12,7 @@ const Heart = (props: SVGProps) => ( diff --git a/lib/HeartCrack.tsx b/lib/HeartCrack.tsx index b519dd6..28f6091 100644 --- a/lib/HeartCrack.tsx +++ b/lib/HeartCrack.tsx @@ -12,7 +12,7 @@ const HeartCrack = (props: SVGProps) => ( diff --git a/lib/HeartFill.tsx b/lib/HeartFill.tsx index 1cc0137..90bdd74 100644 --- a/lib/HeartFill.tsx +++ b/lib/HeartFill.tsx @@ -12,7 +12,7 @@ const HeartFill = (props: SVGProps) => ( diff --git a/lib/HeartPulse.tsx b/lib/HeartPulse.tsx index c1c3398..54cd81b 100644 --- a/lib/HeartPulse.tsx +++ b/lib/HeartPulse.tsx @@ -12,7 +12,7 @@ const HeartPulse = (props: SVGProps) => ( diff --git a/lib/Hierarchy.tsx b/lib/Hierarchy.tsx index a514d30..8ae3681 100644 --- a/lib/Hierarchy.tsx +++ b/lib/Hierarchy.tsx @@ -12,7 +12,7 @@ const Hierarchy = (props: SVGProps) => ( diff --git a/lib/House.tsx b/lib/House.tsx index c974441..8a327b2 100644 --- a/lib/House.tsx +++ b/lib/House.tsx @@ -12,7 +12,7 @@ const House = (props: SVGProps) => ( diff --git a/lib/Italic.tsx b/lib/Italic.tsx index fb8515d..1cf497a 100644 --- a/lib/Italic.tsx +++ b/lib/Italic.tsx @@ -12,7 +12,7 @@ const Italic = (props: SVGProps) => ( diff --git a/lib/Key.tsx b/lib/Key.tsx index d5f2c23..c64a9c6 100644 --- a/lib/Key.tsx +++ b/lib/Key.tsx @@ -12,7 +12,7 @@ const Key = (props: SVGProps) => ( diff --git a/lib/Keyboard.tsx b/lib/Keyboard.tsx index 4d51e72..f7d4de4 100644 --- a/lib/Keyboard.tsx +++ b/lib/Keyboard.tsx @@ -12,7 +12,7 @@ const Keyboard = (props: SVGProps) => ( diff --git a/lib/Layers.tsx b/lib/Layers.tsx index 025c85a..385100c 100644 --- a/lib/Layers.tsx +++ b/lib/Layers.tsx @@ -12,7 +12,7 @@ const Layers = (props: SVGProps) => ( diff --git a/lib/Layers3Diagonal.tsx b/lib/Layers3Diagonal.tsx index abcf495..61056e4 100644 --- a/lib/Layers3Diagonal.tsx +++ b/lib/Layers3Diagonal.tsx @@ -13,7 +13,7 @@ const Layers3Diagonal = (props: SVGProps) => ( diff --git a/lib/LayersVertical.tsx b/lib/LayersVertical.tsx index 67ec0c8..9285201 100644 --- a/lib/LayersVertical.tsx +++ b/lib/LayersVertical.tsx @@ -12,7 +12,7 @@ const LayersVertical = (props: SVGProps) => ( diff --git a/lib/LayoutCells.tsx b/lib/LayoutCells.tsx index 730c4d4..7601801 100644 --- a/lib/LayoutCells.tsx +++ b/lib/LayoutCells.tsx @@ -12,7 +12,7 @@ const LayoutCells = (props: SVGProps) => ( diff --git a/lib/LayoutCellsLarge.tsx b/lib/LayoutCellsLarge.tsx index 011992b..404baab 100644 --- a/lib/LayoutCellsLarge.tsx +++ b/lib/LayoutCellsLarge.tsx @@ -12,7 +12,7 @@ const LayoutCellsLarge = (props: SVGProps) => ( diff --git a/lib/LayoutColumns.tsx b/lib/LayoutColumns.tsx index ed234b6..000950d 100644 --- a/lib/LayoutColumns.tsx +++ b/lib/LayoutColumns.tsx @@ -12,7 +12,7 @@ const LayoutColumns = (props: SVGProps) => ( diff --git a/lib/LayoutColumns3.tsx b/lib/LayoutColumns3.tsx index 4992cbc..8fa75e1 100644 --- a/lib/LayoutColumns3.tsx +++ b/lib/LayoutColumns3.tsx @@ -12,7 +12,7 @@ const LayoutColumns3 = (props: SVGProps) => ( diff --git a/lib/LayoutFooter.tsx b/lib/LayoutFooter.tsx index a07860d..105a92d 100644 --- a/lib/LayoutFooter.tsx +++ b/lib/LayoutFooter.tsx @@ -12,7 +12,7 @@ const LayoutFooter = (props: SVGProps) => ( diff --git a/lib/LayoutHeader.tsx b/lib/LayoutHeader.tsx index aa443d9..306a9d0 100644 --- a/lib/LayoutHeader.tsx +++ b/lib/LayoutHeader.tsx @@ -12,7 +12,7 @@ const LayoutHeader = (props: SVGProps) => ( diff --git a/lib/LayoutHeaderCells.tsx b/lib/LayoutHeaderCells.tsx index 30b870b..8ecba80 100644 --- a/lib/LayoutHeaderCells.tsx +++ b/lib/LayoutHeaderCells.tsx @@ -12,7 +12,7 @@ const LayoutHeaderCells = (props: SVGProps) => ( diff --git a/lib/LayoutHeaderCellsLarge.tsx b/lib/LayoutHeaderCellsLarge.tsx index b186bff..8df972c 100644 --- a/lib/LayoutHeaderCellsLarge.tsx +++ b/lib/LayoutHeaderCellsLarge.tsx @@ -12,7 +12,7 @@ const LayoutHeaderCellsLarge = (props: SVGProps) => ( diff --git a/lib/LayoutHeaderCellsLargeFill.tsx b/lib/LayoutHeaderCellsLargeFill.tsx index b705ff0..678872c 100644 --- a/lib/LayoutHeaderCellsLargeFill.tsx +++ b/lib/LayoutHeaderCellsLargeFill.tsx @@ -12,7 +12,7 @@ const LayoutHeaderCellsLargeFill = (props: SVGProps) => ( diff --git a/lib/LayoutHeaderCellsLargeLetterD.tsx b/lib/LayoutHeaderCellsLargeLetterD.tsx index 1409e3e..e3907b6 100644 --- a/lib/LayoutHeaderCellsLargeLetterD.tsx +++ b/lib/LayoutHeaderCellsLargeLetterD.tsx @@ -12,7 +12,7 @@ const LayoutHeaderCellsLargeLetterD = (props: SVGProps) => ( diff --git a/lib/LayoutHeaderCellsLargeThunderbolt.tsx b/lib/LayoutHeaderCellsLargeThunderbolt.tsx index e670e54..dd6a095 100644 --- a/lib/LayoutHeaderCellsLargeThunderbolt.tsx +++ b/lib/LayoutHeaderCellsLargeThunderbolt.tsx @@ -12,7 +12,7 @@ const LayoutHeaderCellsLargeThunderbolt = (props: SVGProps) => ( diff --git a/lib/LayoutHeaderColumns.tsx b/lib/LayoutHeaderColumns.tsx index b3be8d1..7d8c580 100644 --- a/lib/LayoutHeaderColumns.tsx +++ b/lib/LayoutHeaderColumns.tsx @@ -12,7 +12,7 @@ const LayoutHeaderColumns = (props: SVGProps) => ( diff --git a/lib/LayoutHeaderCursor.tsx b/lib/LayoutHeaderCursor.tsx index 4404acc..de978b8 100644 --- a/lib/LayoutHeaderCursor.tsx +++ b/lib/LayoutHeaderCursor.tsx @@ -12,7 +12,7 @@ const LayoutHeaderCursor = (props: SVGProps) => ( diff --git a/lib/LayoutHeaderSideContent.tsx b/lib/LayoutHeaderSideContent.tsx index 58bf116..e86d0ee 100644 --- a/lib/LayoutHeaderSideContent.tsx +++ b/lib/LayoutHeaderSideContent.tsx @@ -12,7 +12,7 @@ const LayoutHeaderSideContent = (props: SVGProps) => ( diff --git a/lib/LayoutList.tsx b/lib/LayoutList.tsx index 1fe944d..f6cb97c 100644 --- a/lib/LayoutList.tsx +++ b/lib/LayoutList.tsx @@ -12,7 +12,7 @@ const LayoutList = (props: SVGProps) => ( diff --git a/lib/LayoutRows.tsx b/lib/LayoutRows.tsx index 88d1707..a9e8d30 100644 --- a/lib/LayoutRows.tsx +++ b/lib/LayoutRows.tsx @@ -12,7 +12,7 @@ const LayoutRows = (props: SVGProps) => ( diff --git a/lib/LayoutRows3.tsx b/lib/LayoutRows3.tsx index f511ffa..493d302 100644 --- a/lib/LayoutRows3.tsx +++ b/lib/LayoutRows3.tsx @@ -12,7 +12,7 @@ const LayoutRows3 = (props: SVGProps) => ( diff --git a/lib/LayoutSideContent.tsx b/lib/LayoutSideContent.tsx index 9c59d34..0bc6d7b 100644 --- a/lib/LayoutSideContent.tsx +++ b/lib/LayoutSideContent.tsx @@ -12,7 +12,7 @@ const LayoutSideContent = (props: SVGProps) => ( diff --git a/lib/LayoutSideContentLeft.tsx b/lib/LayoutSideContentLeft.tsx index ede2200..f43da86 100644 --- a/lib/LayoutSideContentLeft.tsx +++ b/lib/LayoutSideContentLeft.tsx @@ -12,7 +12,7 @@ const LayoutSideContentLeft = (props: SVGProps) => ( diff --git a/lib/LayoutSideContentRight.tsx b/lib/LayoutSideContentRight.tsx index 8126ab0..216a4e8 100644 --- a/lib/LayoutSideContentRight.tsx +++ b/lib/LayoutSideContentRight.tsx @@ -12,7 +12,7 @@ const LayoutSideContentRight = (props: SVGProps) => ( diff --git a/lib/LayoutSplitColumns.tsx b/lib/LayoutSplitColumns.tsx index a49d869..bdf6444 100644 --- a/lib/LayoutSplitColumns.tsx +++ b/lib/LayoutSplitColumns.tsx @@ -13,7 +13,7 @@ const LayoutSplitColumns = (props: SVGProps) => ( diff --git a/lib/LayoutSplitColumns3.tsx b/lib/LayoutSplitColumns3.tsx index f5a553c..801e465 100644 --- a/lib/LayoutSplitColumns3.tsx +++ b/lib/LayoutSplitColumns3.tsx @@ -13,7 +13,7 @@ const LayoutSplitColumns3 = (props: SVGProps) => ( diff --git a/lib/LayoutSplitRows.tsx b/lib/LayoutSplitRows.tsx index 1f976aa..5db616c 100644 --- a/lib/LayoutSplitRows.tsx +++ b/lib/LayoutSplitRows.tsx @@ -12,7 +12,7 @@ const LayoutSplitRows = (props: SVGProps) => ( diff --git a/lib/LayoutSplitSideContentLeft.tsx b/lib/LayoutSplitSideContentLeft.tsx index 1764391..700e90a 100644 --- a/lib/LayoutSplitSideContentLeft.tsx +++ b/lib/LayoutSplitSideContentLeft.tsx @@ -13,7 +13,7 @@ const LayoutSplitSideContentLeft = (props: SVGProps) => ( diff --git a/lib/LayoutSplitSideContentRight.tsx b/lib/LayoutSplitSideContentRight.tsx index bd1e847..a9a5cf2 100644 --- a/lib/LayoutSplitSideContentRight.tsx +++ b/lib/LayoutSplitSideContentRight.tsx @@ -13,7 +13,7 @@ const LayoutSplitSideContentRight = (props: SVGProps) => ( diff --git a/lib/LayoutTabs.tsx b/lib/LayoutTabs.tsx index 5c26285..bcdc519 100644 --- a/lib/LayoutTabs.tsx +++ b/lib/LayoutTabs.tsx @@ -12,7 +12,7 @@ const LayoutTabs = (props: SVGProps) => ( diff --git a/lib/LetterGroup.tsx b/lib/LetterGroup.tsx index 71d9858..11ca7a1 100644 --- a/lib/LetterGroup.tsx +++ b/lib/LetterGroup.tsx @@ -12,7 +12,7 @@ const LetterGroup = (props: SVGProps) => ( diff --git a/lib/LetterM.tsx b/lib/LetterM.tsx index 71f9dc0..83f419b 100644 --- a/lib/LetterM.tsx +++ b/lib/LetterM.tsx @@ -12,7 +12,7 @@ const LetterM = (props: SVGProps) => ( diff --git a/lib/LifeRing.tsx b/lib/LifeRing.tsx index e69cf77..609c0f7 100644 --- a/lib/LifeRing.tsx +++ b/lib/LifeRing.tsx @@ -12,7 +12,7 @@ const LifeRing = (props: SVGProps) => ( diff --git a/lib/Link.tsx b/lib/Link.tsx index e054ff8..a89a6b3 100644 --- a/lib/Link.tsx +++ b/lib/Link.tsx @@ -12,7 +12,7 @@ const Link = (props: SVGProps) => ( diff --git a/lib/LinkSlash.tsx b/lib/LinkSlash.tsx index e9ce87f..d72de02 100644 --- a/lib/LinkSlash.tsx +++ b/lib/LinkSlash.tsx @@ -12,7 +12,7 @@ const LinkSlash = (props: SVGProps) => ( diff --git a/lib/ListCheck.tsx b/lib/ListCheck.tsx index 61ffd37..d68d4e8 100644 --- a/lib/ListCheck.tsx +++ b/lib/ListCheck.tsx @@ -12,7 +12,7 @@ const ListCheck = (props: SVGProps) => ( diff --git a/lib/ListCheckLock.tsx b/lib/ListCheckLock.tsx index 8f5019e..689e406 100644 --- a/lib/ListCheckLock.tsx +++ b/lib/ListCheckLock.tsx @@ -12,7 +12,7 @@ const ListCheckLock = (props: SVGProps) => ( diff --git a/lib/ListOl.tsx b/lib/ListOl.tsx index b78a208..fba7432 100644 --- a/lib/ListOl.tsx +++ b/lib/ListOl.tsx @@ -12,7 +12,7 @@ const ListOl = (props: SVGProps) => ( diff --git a/lib/ListTimeline.tsx b/lib/ListTimeline.tsx index 27e1ea1..b71d74f 100644 --- a/lib/ListTimeline.tsx +++ b/lib/ListTimeline.tsx @@ -12,7 +12,7 @@ const ListTimeline = (props: SVGProps) => ( diff --git a/lib/ListUl.tsx b/lib/ListUl.tsx index 320fa29..2d03dbf 100644 --- a/lib/ListUl.tsx +++ b/lib/ListUl.tsx @@ -12,7 +12,7 @@ const ListUl = (props: SVGProps) => ( diff --git a/lib/Lock.tsx b/lib/Lock.tsx index e76e0b0..3776092 100644 --- a/lib/Lock.tsx +++ b/lib/Lock.tsx @@ -12,7 +12,7 @@ const Lock = (props: SVGProps) => ( diff --git a/lib/LockOpen.tsx b/lib/LockOpen.tsx index cfaa0d1..abb942a 100644 --- a/lib/LockOpen.tsx +++ b/lib/LockOpen.tsx @@ -12,7 +12,7 @@ const LockOpen = (props: SVGProps) => ( diff --git a/lib/LogoAcrobat.tsx b/lib/LogoAcrobat.tsx index 6bb836b..c24820b 100644 --- a/lib/LogoAcrobat.tsx +++ b/lib/LogoAcrobat.tsx @@ -13,7 +13,7 @@ const LogoAcrobat = (props: SVGProps) => ( diff --git a/lib/LogoDocker.tsx b/lib/LogoDocker.tsx index a834edd..d739951 100644 --- a/lib/LogoDocker.tsx +++ b/lib/LogoDocker.tsx @@ -13,7 +13,7 @@ const LogoDocker = (props: SVGProps) => ( diff --git a/lib/LogoDrawIo.tsx b/lib/LogoDrawIo.tsx index 7f4d93d..e052d67 100644 --- a/lib/LogoDrawIo.tsx +++ b/lib/LogoDrawIo.tsx @@ -12,7 +12,7 @@ const LogoDrawIo = (props: SVGProps) => ( diff --git a/lib/LogoFacebook.tsx b/lib/LogoFacebook.tsx index 2b89596..9637228 100644 --- a/lib/LogoFacebook.tsx +++ b/lib/LogoFacebook.tsx @@ -12,7 +12,7 @@ const LogoFacebook = (props: SVGProps) => ( diff --git a/lib/LogoGitlab.tsx b/lib/LogoGitlab.tsx index 32d4c8c..ff488f0 100644 --- a/lib/LogoGitlab.tsx +++ b/lib/LogoGitlab.tsx @@ -12,7 +12,7 @@ const LogoGitlab = (props: SVGProps) => ( diff --git a/lib/LogoLinux.tsx b/lib/LogoLinux.tsx index 93c3375..9758b3b 100644 --- a/lib/LogoLinux.tsx +++ b/lib/LogoLinux.tsx @@ -12,7 +12,7 @@ const LogoLinux = (props: SVGProps) => ( diff --git a/lib/LogoMacos.tsx b/lib/LogoMacos.tsx index 36bdfe4..e5dc441 100644 --- a/lib/LogoMacos.tsx +++ b/lib/LogoMacos.tsx @@ -12,7 +12,7 @@ const LogoMacos = (props: SVGProps) => ( diff --git a/lib/LogoMarkdown.tsx b/lib/LogoMarkdown.tsx index ec1e623..eebb2ed 100644 --- a/lib/LogoMarkdown.tsx +++ b/lib/LogoMarkdown.tsx @@ -12,7 +12,7 @@ const LogoMarkdown = (props: SVGProps) => ( diff --git a/lib/LogoMermaid.tsx b/lib/LogoMermaid.tsx index 5de04d0..3feb222 100644 --- a/lib/LogoMermaid.tsx +++ b/lib/LogoMermaid.tsx @@ -12,7 +12,7 @@ const LogoMermaid = (props: SVGProps) => ( diff --git a/lib/LogoNotion.tsx b/lib/LogoNotion.tsx index 20a8ca3..b299aca 100644 --- a/lib/LogoNotion.tsx +++ b/lib/LogoNotion.tsx @@ -12,7 +12,7 @@ const LogoNotion = (props: SVGProps) => ( diff --git a/lib/LogoOsi.tsx b/lib/LogoOsi.tsx index b561888..509e0f7 100644 --- a/lib/LogoOsi.tsx +++ b/lib/LogoOsi.tsx @@ -12,7 +12,7 @@ const LogoOsi = (props: SVGProps) => ( diff --git a/lib/LogoPython.tsx b/lib/LogoPython.tsx index af46103..b14d675 100644 --- a/lib/LogoPython.tsx +++ b/lib/LogoPython.tsx @@ -12,7 +12,7 @@ const LogoPython = (props: SVGProps) => ( diff --git a/lib/LogoStackOverflow.tsx b/lib/LogoStackOverflow.tsx index 50d2e6e..5800d02 100644 --- a/lib/LogoStackOverflow.tsx +++ b/lib/LogoStackOverflow.tsx @@ -12,7 +12,7 @@ const LogoStackOverflow = (props: SVGProps) => ( diff --git a/lib/LogoTelegram.tsx b/lib/LogoTelegram.tsx index be98c7c..ed293cd 100644 --- a/lib/LogoTelegram.tsx +++ b/lib/LogoTelegram.tsx @@ -12,7 +12,7 @@ const LogoTelegram = (props: SVGProps) => ( diff --git a/lib/LogoUbuntu.tsx b/lib/LogoUbuntu.tsx index 2179219..7a3b9ad 100644 --- a/lib/LogoUbuntu.tsx +++ b/lib/LogoUbuntu.tsx @@ -12,7 +12,7 @@ const LogoUbuntu = (props: SVGProps) => ( diff --git a/lib/LogoWindows.tsx b/lib/LogoWindows.tsx index d5355ba..dc68df2 100644 --- a/lib/LogoWindows.tsx +++ b/lib/LogoWindows.tsx @@ -12,7 +12,7 @@ const LogoWindows = (props: SVGProps) => ( diff --git a/lib/LogoYandex.tsx b/lib/LogoYandex.tsx index 53aecb8..5524a84 100644 --- a/lib/LogoYandex.tsx +++ b/lib/LogoYandex.tsx @@ -12,7 +12,7 @@ const LogoYandex = (props: SVGProps) => ( diff --git a/lib/LogoYandexCloud.tsx b/lib/LogoYandexCloud.tsx index ceb457e..c4e1304 100644 --- a/lib/LogoYandexCloud.tsx +++ b/lib/LogoYandexCloud.tsx @@ -12,7 +12,7 @@ const LogoYandexCloud = (props: SVGProps) => ( diff --git a/lib/LogoYandexMessenger.tsx b/lib/LogoYandexMessenger.tsx index ee5a748..b035132 100644 --- a/lib/LogoYandexMessenger.tsx +++ b/lib/LogoYandexMessenger.tsx @@ -12,7 +12,7 @@ const LogoYandexMessenger = (props: SVGProps) => ( diff --git a/lib/LogoYandexTracker.tsx b/lib/LogoYandexTracker.tsx index 8b8bd4f..0b0edd9 100644 --- a/lib/LogoYandexTracker.tsx +++ b/lib/LogoYandexTracker.tsx @@ -12,7 +12,7 @@ const LogoYandexTracker = (props: SVGProps) => ( diff --git a/lib/MagicWand.tsx b/lib/MagicWand.tsx index d8f1dd6..a2ad770 100644 --- a/lib/MagicWand.tsx +++ b/lib/MagicWand.tsx @@ -12,7 +12,7 @@ const MagicWand = (props: SVGProps) => ( diff --git a/lib/Magnet.tsx b/lib/Magnet.tsx index 72b6b91..8af5973 100644 --- a/lib/Magnet.tsx +++ b/lib/Magnet.tsx @@ -12,7 +12,7 @@ const Magnet = (props: SVGProps) => ( diff --git a/lib/Magnifier.tsx b/lib/Magnifier.tsx index 605ede4..52a72dc 100644 --- a/lib/Magnifier.tsx +++ b/lib/Magnifier.tsx @@ -12,7 +12,7 @@ const Magnifier = (props: SVGProps) => ( diff --git a/lib/MagnifierMinus.tsx b/lib/MagnifierMinus.tsx index f73a51a..858d6ef 100644 --- a/lib/MagnifierMinus.tsx +++ b/lib/MagnifierMinus.tsx @@ -12,7 +12,7 @@ const MagnifierMinus = (props: SVGProps) => ( diff --git a/lib/MagnifierPlus.tsx b/lib/MagnifierPlus.tsx index 8e4034e..ff71d11 100644 --- a/lib/MagnifierPlus.tsx +++ b/lib/MagnifierPlus.tsx @@ -12,7 +12,7 @@ const MagnifierPlus = (props: SVGProps) => ( diff --git a/lib/MapPin.tsx b/lib/MapPin.tsx index 9ddd856..0bfe28f 100644 --- a/lib/MapPin.tsx +++ b/lib/MapPin.tsx @@ -12,7 +12,7 @@ const MapPin = (props: SVGProps) => ( diff --git a/lib/MapPinMinus.tsx b/lib/MapPinMinus.tsx index 41996a2..10116ee 100644 --- a/lib/MapPinMinus.tsx +++ b/lib/MapPinMinus.tsx @@ -12,7 +12,7 @@ const MapPinMinus = (props: SVGProps) => ( diff --git a/lib/MapPinPlus.tsx b/lib/MapPinPlus.tsx index ad81b36..9343400 100644 --- a/lib/MapPinPlus.tsx +++ b/lib/MapPinPlus.tsx @@ -12,7 +12,7 @@ const MapPinPlus = (props: SVGProps) => ( diff --git a/lib/MathIntersectionShape.tsx b/lib/MathIntersectionShape.tsx index bcd30c5..816f452 100644 --- a/lib/MathIntersectionShape.tsx +++ b/lib/MathIntersectionShape.tsx @@ -12,7 +12,7 @@ const MathIntersectionShape = (props: SVGProps) => ( diff --git a/lib/MathOperations.tsx b/lib/MathOperations.tsx index 3a859d3..b64694a 100644 --- a/lib/MathOperations.tsx +++ b/lib/MathOperations.tsx @@ -12,7 +12,7 @@ const MathOperations = (props: SVGProps) => ( diff --git a/lib/MathUnionShape.tsx b/lib/MathUnionShape.tsx index cb642d5..c94fb35 100644 --- a/lib/MathUnionShape.tsx +++ b/lib/MathUnionShape.tsx @@ -12,7 +12,7 @@ const MathUnionShape = (props: SVGProps) => ( diff --git a/lib/Medal.tsx b/lib/Medal.tsx index 96b10af..c627b03 100644 --- a/lib/Medal.tsx +++ b/lib/Medal.tsx @@ -12,7 +12,7 @@ const Medal = (props: SVGProps) => ( diff --git a/lib/Megaphone.tsx b/lib/Megaphone.tsx index 4db387c..043caa0 100644 --- a/lib/Megaphone.tsx +++ b/lib/Megaphone.tsx @@ -12,7 +12,7 @@ const Megaphone = (props: SVGProps) => ( diff --git a/lib/Microphone.tsx b/lib/Microphone.tsx index 6316d8d..fc44574 100644 --- a/lib/Microphone.tsx +++ b/lib/Microphone.tsx @@ -12,7 +12,7 @@ const Microphone = (props: SVGProps) => ( diff --git a/lib/MicrophoneSlash.tsx b/lib/MicrophoneSlash.tsx index b160991..a6a1190 100644 --- a/lib/MicrophoneSlash.tsx +++ b/lib/MicrophoneSlash.tsx @@ -12,7 +12,7 @@ const MicrophoneSlash = (props: SVGProps) => ( diff --git a/lib/Minus.tsx b/lib/Minus.tsx index 84cb462..b675d93 100644 --- a/lib/Minus.tsx +++ b/lib/Minus.tsx @@ -12,7 +12,7 @@ const Minus = (props: SVGProps) => ( diff --git a/lib/Molecule.tsx b/lib/Molecule.tsx index 2543279..e50b597 100644 --- a/lib/Molecule.tsx +++ b/lib/Molecule.tsx @@ -13,7 +13,7 @@ const Molecule = (props: SVGProps) => ( diff --git a/lib/Moon.tsx b/lib/Moon.tsx index 5149e09..42b1bc7 100644 --- a/lib/Moon.tsx +++ b/lib/Moon.tsx @@ -12,7 +12,7 @@ const Moon = (props: SVGProps) => ( diff --git a/lib/Mug.tsx b/lib/Mug.tsx index 31ef98f..9df8f9c 100644 --- a/lib/Mug.tsx +++ b/lib/Mug.tsx @@ -12,7 +12,7 @@ const Mug = (props: SVGProps) => ( diff --git a/lib/MusicNote.tsx b/lib/MusicNote.tsx index 74b54c4..e60be2f 100644 --- a/lib/MusicNote.tsx +++ b/lib/MusicNote.tsx @@ -12,7 +12,7 @@ const MusicNote = (props: SVGProps) => ( diff --git a/lib/NodesDown.tsx b/lib/NodesDown.tsx index 5259805..acf6296 100644 --- a/lib/NodesDown.tsx +++ b/lib/NodesDown.tsx @@ -12,7 +12,7 @@ const NodesDown = (props: SVGProps) => ( diff --git a/lib/NodesLeft.tsx b/lib/NodesLeft.tsx index 04806a7..c263ddd 100644 --- a/lib/NodesLeft.tsx +++ b/lib/NodesLeft.tsx @@ -12,7 +12,7 @@ const NodesLeft = (props: SVGProps) => ( diff --git a/lib/NodesRight.tsx b/lib/NodesRight.tsx index a9cf740..029b112 100644 --- a/lib/NodesRight.tsx +++ b/lib/NodesRight.tsx @@ -12,7 +12,7 @@ const NodesRight = (props: SVGProps) => ( diff --git a/lib/NodesUp.tsx b/lib/NodesUp.tsx index 7e46e65..a3ba82d 100644 --- a/lib/NodesUp.tsx +++ b/lib/NodesUp.tsx @@ -12,7 +12,7 @@ const NodesUp = (props: SVGProps) => ( diff --git a/lib/NutHex.tsx b/lib/NutHex.tsx index 3e17286..d570f4b 100644 --- a/lib/NutHex.tsx +++ b/lib/NutHex.tsx @@ -12,7 +12,7 @@ const NutHex = (props: SVGProps) => ( diff --git a/lib/ObjectAlignBottom.tsx b/lib/ObjectAlignBottom.tsx index fdb63e7..7a8dc84 100644 --- a/lib/ObjectAlignBottom.tsx +++ b/lib/ObjectAlignBottom.tsx @@ -12,7 +12,7 @@ const ObjectAlignBottom = (props: SVGProps) => ( diff --git a/lib/ObjectAlignCenterHorizontal.tsx b/lib/ObjectAlignCenterHorizontal.tsx index f89f9bf..34d6c62 100644 --- a/lib/ObjectAlignCenterHorizontal.tsx +++ b/lib/ObjectAlignCenterHorizontal.tsx @@ -12,7 +12,7 @@ const ObjectAlignCenterHorizontal = (props: SVGProps) => ( diff --git a/lib/ObjectAlignCenterVertical.tsx b/lib/ObjectAlignCenterVertical.tsx index b25b6d0..a46d061 100644 --- a/lib/ObjectAlignCenterVertical.tsx +++ b/lib/ObjectAlignCenterVertical.tsx @@ -12,7 +12,7 @@ const ObjectAlignCenterVertical = (props: SVGProps) => ( diff --git a/lib/ObjectAlignJustifyHorizontal.tsx b/lib/ObjectAlignJustifyHorizontal.tsx index f1c856d..fbec96a 100644 --- a/lib/ObjectAlignJustifyHorizontal.tsx +++ b/lib/ObjectAlignJustifyHorizontal.tsx @@ -12,7 +12,7 @@ const ObjectAlignJustifyHorizontal = (props: SVGProps) => ( diff --git a/lib/ObjectAlignJustifyVertical.tsx b/lib/ObjectAlignJustifyVertical.tsx index bf4828a..9a65baa 100644 --- a/lib/ObjectAlignJustifyVertical.tsx +++ b/lib/ObjectAlignJustifyVertical.tsx @@ -12,7 +12,7 @@ const ObjectAlignJustifyVertical = (props: SVGProps) => ( diff --git a/lib/ObjectAlignLeft.tsx b/lib/ObjectAlignLeft.tsx index a6e122d..448423d 100644 --- a/lib/ObjectAlignLeft.tsx +++ b/lib/ObjectAlignLeft.tsx @@ -12,7 +12,7 @@ const ObjectAlignLeft = (props: SVGProps) => ( diff --git a/lib/ObjectAlignRight.tsx b/lib/ObjectAlignRight.tsx index ac047e3..b065c18 100644 --- a/lib/ObjectAlignRight.tsx +++ b/lib/ObjectAlignRight.tsx @@ -12,7 +12,7 @@ const ObjectAlignRight = (props: SVGProps) => ( diff --git a/lib/ObjectAlignTop.tsx b/lib/ObjectAlignTop.tsx index 410c022..48a7aec 100644 --- a/lib/ObjectAlignTop.tsx +++ b/lib/ObjectAlignTop.tsx @@ -12,7 +12,7 @@ const ObjectAlignTop = (props: SVGProps) => ( diff --git a/lib/ObjectsAlignBottom.tsx b/lib/ObjectsAlignBottom.tsx index 036cb86..b405427 100644 --- a/lib/ObjectsAlignBottom.tsx +++ b/lib/ObjectsAlignBottom.tsx @@ -12,7 +12,7 @@ const ObjectsAlignBottom = (props: SVGProps) => ( diff --git a/lib/ObjectsAlignCenterHorizontal.tsx b/lib/ObjectsAlignCenterHorizontal.tsx index e7f0795..ec6e41e 100644 --- a/lib/ObjectsAlignCenterHorizontal.tsx +++ b/lib/ObjectsAlignCenterHorizontal.tsx @@ -12,7 +12,7 @@ const ObjectsAlignCenterHorizontal = (props: SVGProps) => ( diff --git a/lib/ObjectsAlignCenterVertical.tsx b/lib/ObjectsAlignCenterVertical.tsx index 7b8c737..9078d2d 100644 --- a/lib/ObjectsAlignCenterVertical.tsx +++ b/lib/ObjectsAlignCenterVertical.tsx @@ -12,7 +12,7 @@ const ObjectsAlignCenterVertical = (props: SVGProps) => ( diff --git a/lib/ObjectsAlignJustifyHorizontal.tsx b/lib/ObjectsAlignJustifyHorizontal.tsx index 2e4398e..258db05 100644 --- a/lib/ObjectsAlignJustifyHorizontal.tsx +++ b/lib/ObjectsAlignJustifyHorizontal.tsx @@ -12,7 +12,7 @@ const ObjectsAlignJustifyHorizontal = (props: SVGProps) => ( diff --git a/lib/ObjectsAlignJustifyVertical.tsx b/lib/ObjectsAlignJustifyVertical.tsx index e61ef0d..0191fb3 100644 --- a/lib/ObjectsAlignJustifyVertical.tsx +++ b/lib/ObjectsAlignJustifyVertical.tsx @@ -12,7 +12,7 @@ const ObjectsAlignJustifyVertical = (props: SVGProps) => ( diff --git a/lib/ObjectsAlignLeft.tsx b/lib/ObjectsAlignLeft.tsx index b887aac..ec477df 100644 --- a/lib/ObjectsAlignLeft.tsx +++ b/lib/ObjectsAlignLeft.tsx @@ -12,7 +12,7 @@ const ObjectsAlignLeft = (props: SVGProps) => ( diff --git a/lib/ObjectsAlignRight.tsx b/lib/ObjectsAlignRight.tsx index 7f9a52a..04e02b0 100644 --- a/lib/ObjectsAlignRight.tsx +++ b/lib/ObjectsAlignRight.tsx @@ -12,7 +12,7 @@ const ObjectsAlignRight = (props: SVGProps) => ( diff --git a/lib/ObjectsAlignTop.tsx b/lib/ObjectsAlignTop.tsx index 20a2720..1a0253d 100644 --- a/lib/ObjectsAlignTop.tsx +++ b/lib/ObjectsAlignTop.tsx @@ -12,7 +12,7 @@ const ObjectsAlignTop = (props: SVGProps) => ( diff --git a/lib/OctagonXmark.tsx b/lib/OctagonXmark.tsx index 54bc8d6..8349329 100644 --- a/lib/OctagonXmark.tsx +++ b/lib/OctagonXmark.tsx @@ -12,7 +12,7 @@ const OctagonXmark = (props: SVGProps) => ( diff --git a/lib/OfficeBadge.tsx b/lib/OfficeBadge.tsx index 17b80e8..5df2801 100644 --- a/lib/OfficeBadge.tsx +++ b/lib/OfficeBadge.tsx @@ -12,7 +12,7 @@ const OfficeBadge = (props: SVGProps) => ( diff --git a/lib/Palette.tsx b/lib/Palette.tsx index d4eacd2..ae2e8cf 100644 --- a/lib/Palette.tsx +++ b/lib/Palette.tsx @@ -12,7 +12,7 @@ const Palette = (props: SVGProps) => ( diff --git a/lib/PaperPlane.tsx b/lib/PaperPlane.tsx index 2fc641a..b1e5e06 100644 --- a/lib/PaperPlane.tsx +++ b/lib/PaperPlane.tsx @@ -12,7 +12,7 @@ const PaperPlane = (props: SVGProps) => ( diff --git a/lib/Paperclip.tsx b/lib/Paperclip.tsx index 333201e..c42fbfa 100644 --- a/lib/Paperclip.tsx +++ b/lib/Paperclip.tsx @@ -12,7 +12,7 @@ const Paperclip = (props: SVGProps) => ( diff --git a/lib/Passport.tsx b/lib/Passport.tsx index cf04476..b2692b5 100644 --- a/lib/Passport.tsx +++ b/lib/Passport.tsx @@ -12,7 +12,7 @@ const Passport = (props: SVGProps) => ( diff --git a/lib/Pause.tsx b/lib/Pause.tsx index aba8b80..7d0f809 100644 --- a/lib/Pause.tsx +++ b/lib/Pause.tsx @@ -12,7 +12,7 @@ const Pause = (props: SVGProps) => ( diff --git a/lib/PauseFill.tsx b/lib/PauseFill.tsx index c5e0ac2..396f5e1 100644 --- a/lib/PauseFill.tsx +++ b/lib/PauseFill.tsx @@ -12,7 +12,7 @@ const PauseFill = (props: SVGProps) => ( diff --git a/lib/Pencil.tsx b/lib/Pencil.tsx index 929c081..3383a6e 100644 --- a/lib/Pencil.tsx +++ b/lib/Pencil.tsx @@ -12,7 +12,7 @@ const Pencil = (props: SVGProps) => ( diff --git a/lib/PencilToLine.tsx b/lib/PencilToLine.tsx index 9e41189..d13f653 100644 --- a/lib/PencilToLine.tsx +++ b/lib/PencilToLine.tsx @@ -12,7 +12,7 @@ const PencilToLine = (props: SVGProps) => ( diff --git a/lib/PencilToSquare.tsx b/lib/PencilToSquare.tsx index 76a24e9..351b503 100644 --- a/lib/PencilToSquare.tsx +++ b/lib/PencilToSquare.tsx @@ -12,7 +12,7 @@ const PencilToSquare = (props: SVGProps) => ( diff --git a/lib/Percent.tsx b/lib/Percent.tsx index c05db52..23ec67a 100644 --- a/lib/Percent.tsx +++ b/lib/Percent.tsx @@ -12,7 +12,7 @@ const Percent = (props: SVGProps) => ( diff --git a/lib/Person.tsx b/lib/Person.tsx index 7501065..4e35dd8 100644 --- a/lib/Person.tsx +++ b/lib/Person.tsx @@ -12,7 +12,7 @@ const Person = (props: SVGProps) => ( diff --git a/lib/PersonGear.tsx b/lib/PersonGear.tsx index ec43620..46a3188 100644 --- a/lib/PersonGear.tsx +++ b/lib/PersonGear.tsx @@ -13,7 +13,7 @@ const PersonGear = (props: SVGProps) => ( diff --git a/lib/PersonMagnifier.tsx b/lib/PersonMagnifier.tsx index ed1054b..b86ee1e 100644 --- a/lib/PersonMagnifier.tsx +++ b/lib/PersonMagnifier.tsx @@ -12,7 +12,7 @@ const PersonMagnifier = (props: SVGProps) => ( diff --git a/lib/PersonNutHex.tsx b/lib/PersonNutHex.tsx index 9d13490..8722b43 100644 --- a/lib/PersonNutHex.tsx +++ b/lib/PersonNutHex.tsx @@ -12,7 +12,7 @@ const PersonNutHex = (props: SVGProps) => ( diff --git a/lib/PersonPencil.tsx b/lib/PersonPencil.tsx index c2c0b4c..7429f94 100644 --- a/lib/PersonPencil.tsx +++ b/lib/PersonPencil.tsx @@ -12,7 +12,7 @@ const PersonPencil = (props: SVGProps) => ( diff --git a/lib/PersonPlanetEarth.tsx b/lib/PersonPlanetEarth.tsx index f323a02..0e75041 100644 --- a/lib/PersonPlanetEarth.tsx +++ b/lib/PersonPlanetEarth.tsx @@ -12,7 +12,7 @@ const PersonPlanetEarth = (props: SVGProps) => ( diff --git a/lib/PersonPlus.tsx b/lib/PersonPlus.tsx index bb8b52a..c331018 100644 --- a/lib/PersonPlus.tsx +++ b/lib/PersonPlus.tsx @@ -12,7 +12,7 @@ const PersonPlus = (props: SVGProps) => ( diff --git a/lib/PersonSpeaker.tsx b/lib/PersonSpeaker.tsx index 543723e..49240a8 100644 --- a/lib/PersonSpeaker.tsx +++ b/lib/PersonSpeaker.tsx @@ -12,7 +12,7 @@ const PersonSpeaker = (props: SVGProps) => ( diff --git a/lib/PersonWorker.tsx b/lib/PersonWorker.tsx index 123fa13..20e05c7 100644 --- a/lib/PersonWorker.tsx +++ b/lib/PersonWorker.tsx @@ -12,7 +12,7 @@ const PersonWorker = (props: SVGProps) => ( diff --git a/lib/PersonXmark.tsx b/lib/PersonXmark.tsx index 9816111..4c80d4a 100644 --- a/lib/PersonXmark.tsx +++ b/lib/PersonXmark.tsx @@ -12,7 +12,7 @@ const PersonXmark = (props: SVGProps) => ( diff --git a/lib/Persons.tsx b/lib/Persons.tsx index 61435fa..6cd916f 100644 --- a/lib/Persons.tsx +++ b/lib/Persons.tsx @@ -12,7 +12,7 @@ const Persons = (props: SVGProps) => ( diff --git a/lib/PersonsLock.tsx b/lib/PersonsLock.tsx index 528e9d8..dfddf5d 100644 --- a/lib/PersonsLock.tsx +++ b/lib/PersonsLock.tsx @@ -12,7 +12,7 @@ const PersonsLock = (props: SVGProps) => ( diff --git a/lib/Picture.tsx b/lib/Picture.tsx index 596f133..ab0eac2 100644 --- a/lib/Picture.tsx +++ b/lib/Picture.tsx @@ -12,7 +12,7 @@ const Picture = (props: SVGProps) => ( diff --git a/lib/Pill.tsx b/lib/Pill.tsx index b8b83ad..2ff84c9 100644 --- a/lib/Pill.tsx +++ b/lib/Pill.tsx @@ -12,7 +12,7 @@ const Pill = (props: SVGProps) => ( diff --git a/lib/Pin.tsx b/lib/Pin.tsx index 1249543..b7d14b3 100644 --- a/lib/Pin.tsx +++ b/lib/Pin.tsx @@ -12,7 +12,7 @@ const Pin = (props: SVGProps) => ( diff --git a/lib/PinFill.tsx b/lib/PinFill.tsx index f933e41..0f4c9a8 100644 --- a/lib/PinFill.tsx +++ b/lib/PinFill.tsx @@ -12,7 +12,7 @@ const PinFill = (props: SVGProps) => ( diff --git a/lib/PinSlash.tsx b/lib/PinSlash.tsx index 6caa693..209f33c 100644 --- a/lib/PinSlash.tsx +++ b/lib/PinSlash.tsx @@ -12,7 +12,7 @@ const PinSlash = (props: SVGProps) => ( diff --git a/lib/PinSlashFill.tsx b/lib/PinSlashFill.tsx index e475128..98ee173 100644 --- a/lib/PinSlashFill.tsx +++ b/lib/PinSlashFill.tsx @@ -12,7 +12,7 @@ const PinSlashFill = (props: SVGProps) => ( diff --git a/lib/Pipeline.tsx b/lib/Pipeline.tsx index 7c1d07f..dcccfe5 100644 --- a/lib/Pipeline.tsx +++ b/lib/Pipeline.tsx @@ -12,7 +12,7 @@ const Pipeline = (props: SVGProps) => ( diff --git a/lib/PlanetEarth.tsx b/lib/PlanetEarth.tsx index ea49589..08365f9 100644 --- a/lib/PlanetEarth.tsx +++ b/lib/PlanetEarth.tsx @@ -12,7 +12,7 @@ const PlanetEarth = (props: SVGProps) => ( diff --git a/lib/Play.tsx b/lib/Play.tsx index b7568c9..cf63ed7 100644 --- a/lib/Play.tsx +++ b/lib/Play.tsx @@ -13,7 +13,7 @@ const Play = (props: SVGProps) => ( diff --git a/lib/PlayFill.tsx b/lib/PlayFill.tsx index 39cf853..40ec02e 100644 --- a/lib/PlayFill.tsx +++ b/lib/PlayFill.tsx @@ -13,7 +13,7 @@ const PlayFill = (props: SVGProps) => ( diff --git a/lib/PlugConnection.tsx b/lib/PlugConnection.tsx index 403878b..25783b9 100644 --- a/lib/PlugConnection.tsx +++ b/lib/PlugConnection.tsx @@ -12,7 +12,7 @@ const PlugConnection = (props: SVGProps) => ( diff --git a/lib/PlugWire.tsx b/lib/PlugWire.tsx index 5d1b0f5..32874dc 100644 --- a/lib/PlugWire.tsx +++ b/lib/PlugWire.tsx @@ -13,7 +13,7 @@ const PlugWire = (props: SVGProps) => ( diff --git a/lib/Plus.tsx b/lib/Plus.tsx index 11f7adc..f9a82ed 100644 --- a/lib/Plus.tsx +++ b/lib/Plus.tsx @@ -12,7 +12,7 @@ const Plus = (props: SVGProps) => ( diff --git a/lib/Power.tsx b/lib/Power.tsx index 3fd92a4..2ee8310 100644 --- a/lib/Power.tsx +++ b/lib/Power.tsx @@ -12,7 +12,7 @@ const Power = (props: SVGProps) => ( diff --git a/lib/Printer.tsx b/lib/Printer.tsx index 97cffd3..c0126d9 100644 --- a/lib/Printer.tsx +++ b/lib/Printer.tsx @@ -12,7 +12,7 @@ const Printer = (props: SVGProps) => ( diff --git a/lib/Pulse.tsx b/lib/Pulse.tsx index 76dd5f6..737f951 100644 --- a/lib/Pulse.tsx +++ b/lib/Pulse.tsx @@ -13,7 +13,7 @@ const Pulse = (props: SVGProps) => ( diff --git a/lib/Puzzle.tsx b/lib/Puzzle.tsx index fa6ca5b..1d56b87 100644 --- a/lib/Puzzle.tsx +++ b/lib/Puzzle.tsx @@ -12,7 +12,7 @@ const Puzzle = (props: SVGProps) => ( diff --git a/lib/QrCode.tsx b/lib/QrCode.tsx index ebe0b7c..20f3f77 100644 --- a/lib/QrCode.tsx +++ b/lib/QrCode.tsx @@ -12,7 +12,7 @@ const QrCode = (props: SVGProps) => ( diff --git a/lib/QuoteClose.tsx b/lib/QuoteClose.tsx index bc7f2be..8ef87c8 100644 --- a/lib/QuoteClose.tsx +++ b/lib/QuoteClose.tsx @@ -13,7 +13,7 @@ const QuoteClose = (props: SVGProps) => ( diff --git a/lib/QuoteOpen.tsx b/lib/QuoteOpen.tsx index 92ca3d2..62c04b3 100644 --- a/lib/QuoteOpen.tsx +++ b/lib/QuoteOpen.tsx @@ -13,7 +13,7 @@ const QuoteOpen = (props: SVGProps) => ( diff --git a/lib/Receipt.tsx b/lib/Receipt.tsx index b254b6a..3ff4cf5 100644 --- a/lib/Receipt.tsx +++ b/lib/Receipt.tsx @@ -12,7 +12,7 @@ const Receipt = (props: SVGProps) => ( diff --git a/lib/RectanglePulse.tsx b/lib/RectanglePulse.tsx index 9c21e7f..527496d 100644 --- a/lib/RectanglePulse.tsx +++ b/lib/RectanglePulse.tsx @@ -13,7 +13,7 @@ const RectanglePulse = (props: SVGProps) => ( diff --git a/lib/Rectangles4.tsx b/lib/Rectangles4.tsx index 4eaa08d..d8dc38e 100644 --- a/lib/Rectangles4.tsx +++ b/lib/Rectangles4.tsx @@ -12,7 +12,7 @@ const Rectangles4 = (props: SVGProps) => ( diff --git a/lib/Rocket.tsx b/lib/Rocket.tsx index 6d966bf..8f0e2f2 100644 --- a/lib/Rocket.tsx +++ b/lib/Rocket.tsx @@ -13,7 +13,7 @@ const Rocket = (props: SVGProps) => ( diff --git a/lib/RoundBrackets.tsx b/lib/RoundBrackets.tsx index 8af1b66..a8ea501 100644 --- a/lib/RoundBrackets.tsx +++ b/lib/RoundBrackets.tsx @@ -12,7 +12,7 @@ const RoundBrackets = (props: SVGProps) => ( diff --git a/lib/Route.tsx b/lib/Route.tsx index 8582189..fb20e12 100644 --- a/lib/Route.tsx +++ b/lib/Route.tsx @@ -12,7 +12,7 @@ const Route = (props: SVGProps) => ( diff --git a/lib/Sack.tsx b/lib/Sack.tsx index 9bafb5b..7cc0191 100644 --- a/lib/Sack.tsx +++ b/lib/Sack.tsx @@ -13,7 +13,7 @@ const Sack = (props: SVGProps) => ( diff --git a/lib/ScalesBalanced.tsx b/lib/ScalesBalanced.tsx index 040eec0..8100fec 100644 --- a/lib/ScalesBalanced.tsx +++ b/lib/ScalesBalanced.tsx @@ -12,7 +12,7 @@ const ScalesBalanced = (props: SVGProps) => ( diff --git a/lib/ScalesUnbalanced.tsx b/lib/ScalesUnbalanced.tsx index cf83f3d..fc81de5 100644 --- a/lib/ScalesUnbalanced.tsx +++ b/lib/ScalesUnbalanced.tsx @@ -12,7 +12,7 @@ const ScalesUnbalanced = (props: SVGProps) => ( diff --git a/lib/Scissors.tsx b/lib/Scissors.tsx index d845c9a..fcd734c 100644 --- a/lib/Scissors.tsx +++ b/lib/Scissors.tsx @@ -12,7 +12,7 @@ const Scissors = (props: SVGProps) => ( diff --git a/lib/SealCheck.tsx b/lib/SealCheck.tsx index 4daa2c8..0a09074 100644 --- a/lib/SealCheck.tsx +++ b/lib/SealCheck.tsx @@ -13,7 +13,7 @@ const SealCheck = (props: SVGProps) => ( diff --git a/lib/SealPercent.tsx b/lib/SealPercent.tsx index 52cc595..a4c369f 100644 --- a/lib/SealPercent.tsx +++ b/lib/SealPercent.tsx @@ -13,7 +13,7 @@ const SealPercent = (props: SVGProps) => ( diff --git a/lib/Server.tsx b/lib/Server.tsx index 5f7be82..46c6c83 100644 --- a/lib/Server.tsx +++ b/lib/Server.tsx @@ -12,7 +12,7 @@ const Server = (props: SVGProps) => ( diff --git a/lib/Shapes3.tsx b/lib/Shapes3.tsx index 7f7cfc6..047f455 100644 --- a/lib/Shapes3.tsx +++ b/lib/Shapes3.tsx @@ -13,7 +13,7 @@ const Shapes3 = (props: SVGProps) => ( diff --git a/lib/Shapes4.tsx b/lib/Shapes4.tsx index d961fdd..e75d12e 100644 --- a/lib/Shapes4.tsx +++ b/lib/Shapes4.tsx @@ -13,7 +13,7 @@ const Shapes4 = (props: SVGProps) => ( diff --git a/lib/Shield.tsx b/lib/Shield.tsx index 1c5c6d4..0f875d1 100644 --- a/lib/Shield.tsx +++ b/lib/Shield.tsx @@ -12,7 +12,7 @@ const Shield = (props: SVGProps) => ( diff --git a/lib/ShieldCheck.tsx b/lib/ShieldCheck.tsx index c2f9571..8f8802a 100644 --- a/lib/ShieldCheck.tsx +++ b/lib/ShieldCheck.tsx @@ -12,7 +12,7 @@ const ShieldCheck = (props: SVGProps) => ( diff --git a/lib/ShieldExclamation.tsx b/lib/ShieldExclamation.tsx index 05ec78a..950cf16 100644 --- a/lib/ShieldExclamation.tsx +++ b/lib/ShieldExclamation.tsx @@ -12,7 +12,7 @@ const ShieldExclamation = (props: SVGProps) => ( diff --git a/lib/ShieldKeyhole.tsx b/lib/ShieldKeyhole.tsx index 077d4a9..2dd598b 100644 --- a/lib/ShieldKeyhole.tsx +++ b/lib/ShieldKeyhole.tsx @@ -12,7 +12,7 @@ const ShieldKeyhole = (props: SVGProps) => ( diff --git a/lib/ShoppingBag.tsx b/lib/ShoppingBag.tsx index 6e22db9..aa147e7 100644 --- a/lib/ShoppingBag.tsx +++ b/lib/ShoppingBag.tsx @@ -12,7 +12,7 @@ const ShoppingBag = (props: SVGProps) => ( diff --git a/lib/ShoppingBasket.tsx b/lib/ShoppingBasket.tsx index 2815762..38d9e2a 100644 --- a/lib/ShoppingBasket.tsx +++ b/lib/ShoppingBasket.tsx @@ -12,7 +12,7 @@ const ShoppingBasket = (props: SVGProps) => ( diff --git a/lib/ShoppingCart.tsx b/lib/ShoppingCart.tsx index 03b0a2b..54ed89b 100644 --- a/lib/ShoppingCart.tsx +++ b/lib/ShoppingCart.tsx @@ -12,7 +12,7 @@ const ShoppingCart = (props: SVGProps) => ( diff --git a/lib/Shuffle.tsx b/lib/Shuffle.tsx index 2b247bc..8da6e3f 100644 --- a/lib/Shuffle.tsx +++ b/lib/Shuffle.tsx @@ -12,7 +12,7 @@ const Shuffle = (props: SVGProps) => ( diff --git a/lib/Signal.tsx b/lib/Signal.tsx index c3d3696..0a73f32 100644 --- a/lib/Signal.tsx +++ b/lib/Signal.tsx @@ -12,7 +12,7 @@ const Signal = (props: SVGProps) => ( diff --git a/lib/Sliders.tsx b/lib/Sliders.tsx index 0818691..952f5dc 100644 --- a/lib/Sliders.tsx +++ b/lib/Sliders.tsx @@ -12,7 +12,7 @@ const Sliders = (props: SVGProps) => ( diff --git a/lib/SlidersVertical.tsx b/lib/SlidersVertical.tsx index aadf34b..132ffa4 100644 --- a/lib/SlidersVertical.tsx +++ b/lib/SlidersVertical.tsx @@ -12,7 +12,7 @@ const SlidersVertical = (props: SVGProps) => ( diff --git a/lib/Smartphone.tsx b/lib/Smartphone.tsx index 2c9acc7..4170330 100644 --- a/lib/Smartphone.tsx +++ b/lib/Smartphone.tsx @@ -12,7 +12,7 @@ const Smartphone = (props: SVGProps) => ( diff --git a/lib/Snail.tsx b/lib/Snail.tsx index b0ed20c..967d213 100644 --- a/lib/Snail.tsx +++ b/lib/Snail.tsx @@ -12,7 +12,7 @@ const Snail = (props: SVGProps) => ( diff --git a/lib/Snowflake.tsx b/lib/Snowflake.tsx index 8328211..db3dd7e 100644 --- a/lib/Snowflake.tsx +++ b/lib/Snowflake.tsx @@ -12,7 +12,7 @@ const Snowflake = (props: SVGProps) => ( diff --git a/lib/Sphere.tsx b/lib/Sphere.tsx index de554b8..b39197d 100644 --- a/lib/Sphere.tsx +++ b/lib/Sphere.tsx @@ -12,7 +12,7 @@ const Sphere = (props: SVGProps) => ( diff --git a/lib/Square.tsx b/lib/Square.tsx index 1f83bd8..96c5595 100644 --- a/lib/Square.tsx +++ b/lib/Square.tsx @@ -12,7 +12,7 @@ const Square = (props: SVGProps) => ( diff --git a/lib/SquareArticle.tsx b/lib/SquareArticle.tsx index a8d5d19..7956dd4 100644 --- a/lib/SquareArticle.tsx +++ b/lib/SquareArticle.tsx @@ -12,7 +12,7 @@ const SquareArticle = (props: SVGProps) => ( diff --git a/lib/SquareBars.tsx b/lib/SquareBars.tsx index f5102c7..482e1c5 100644 --- a/lib/SquareBars.tsx +++ b/lib/SquareBars.tsx @@ -12,7 +12,7 @@ const SquareBars = (props: SVGProps) => ( diff --git a/lib/SquareBarsVertical.tsx b/lib/SquareBarsVertical.tsx index 14624ea..8956326 100644 --- a/lib/SquareBarsVertical.tsx +++ b/lib/SquareBarsVertical.tsx @@ -12,7 +12,7 @@ const SquareBarsVertical = (props: SVGProps) => ( diff --git a/lib/SquareBrackets.tsx b/lib/SquareBrackets.tsx index 738d1ce..061d568 100644 --- a/lib/SquareBrackets.tsx +++ b/lib/SquareBrackets.tsx @@ -12,7 +12,7 @@ const SquareBrackets = (props: SVGProps) => ( diff --git a/lib/SquareBracketsBarsVertical.tsx b/lib/SquareBracketsBarsVertical.tsx index c34dc22..27d9b32 100644 --- a/lib/SquareBracketsBarsVertical.tsx +++ b/lib/SquareBracketsBarsVertical.tsx @@ -12,7 +12,7 @@ const SquareBracketsBarsVertical = (props: SVGProps) => ( diff --git a/lib/SquareBracketsLetterA.tsx b/lib/SquareBracketsLetterA.tsx index 74e5ae9..7a5383b 100644 --- a/lib/SquareBracketsLetterA.tsx +++ b/lib/SquareBracketsLetterA.tsx @@ -12,7 +12,7 @@ const SquareBracketsLetterA = (props: SVGProps) => ( diff --git a/lib/SquareChartBar.tsx b/lib/SquareChartBar.tsx index b35d083..f54d616 100644 --- a/lib/SquareChartBar.tsx +++ b/lib/SquareChartBar.tsx @@ -12,7 +12,7 @@ const SquareChartBar = (props: SVGProps) => ( diff --git a/lib/SquareChartColumn.tsx b/lib/SquareChartColumn.tsx index 87b94cb..c5c5fa6 100644 --- a/lib/SquareChartColumn.tsx +++ b/lib/SquareChartColumn.tsx @@ -12,7 +12,7 @@ const SquareChartColumn = (props: SVGProps) => ( diff --git a/lib/SquareCheck.tsx b/lib/SquareCheck.tsx index f8420bd..6a55b55 100644 --- a/lib/SquareCheck.tsx +++ b/lib/SquareCheck.tsx @@ -12,7 +12,7 @@ const SquareCheck = (props: SVGProps) => ( diff --git a/lib/SquareDashed.tsx b/lib/SquareDashed.tsx index 2a4c16f..0e271c0 100644 --- a/lib/SquareDashed.tsx +++ b/lib/SquareDashed.tsx @@ -12,7 +12,7 @@ const SquareDashed = (props: SVGProps) => ( diff --git a/lib/SquareDashedCircle.tsx b/lib/SquareDashedCircle.tsx index e19903e..757b316 100644 --- a/lib/SquareDashedCircle.tsx +++ b/lib/SquareDashedCircle.tsx @@ -12,7 +12,7 @@ const SquareDashedCircle = (props: SVGProps) => ( diff --git a/lib/SquareDashedLetterA.tsx b/lib/SquareDashedLetterA.tsx index dd9f3c2..40a5670 100644 --- a/lib/SquareDashedLetterA.tsx +++ b/lib/SquareDashedLetterA.tsx @@ -12,7 +12,7 @@ const SquareDashedLetterA = (props: SVGProps) => ( diff --git a/lib/SquareDashedLetterT.tsx b/lib/SquareDashedLetterT.tsx index f0b241e..4d90524 100644 --- a/lib/SquareDashedLetterT.tsx +++ b/lib/SquareDashedLetterT.tsx @@ -12,7 +12,7 @@ const SquareDashedLetterT = (props: SVGProps) => ( diff --git a/lib/SquareDashedText.tsx b/lib/SquareDashedText.tsx index 85d1fa3..7384e3b 100644 --- a/lib/SquareDashedText.tsx +++ b/lib/SquareDashedText.tsx @@ -12,7 +12,7 @@ const SquareDashedText = (props: SVGProps) => ( diff --git a/lib/SquareDot.tsx b/lib/SquareDot.tsx index eb0adaf..53fb6fb 100644 --- a/lib/SquareDot.tsx +++ b/lib/SquareDot.tsx @@ -12,7 +12,7 @@ const SquareDot = (props: SVGProps) => ( diff --git a/lib/SquareExclamation.tsx b/lib/SquareExclamation.tsx index 6495c6d..cbe1684 100644 --- a/lib/SquareExclamation.tsx +++ b/lib/SquareExclamation.tsx @@ -12,7 +12,7 @@ const SquareExclamation = (props: SVGProps) => ( diff --git a/lib/SquareFill.tsx b/lib/SquareFill.tsx index eecccc1..9771fbe 100644 --- a/lib/SquareFill.tsx +++ b/lib/SquareFill.tsx @@ -12,7 +12,7 @@ const SquareFill = (props: SVGProps) => ( diff --git a/lib/SquareHashtag.tsx b/lib/SquareHashtag.tsx index 97575f9..add9079 100644 --- a/lib/SquareHashtag.tsx +++ b/lib/SquareHashtag.tsx @@ -12,7 +12,7 @@ const SquareHashtag = (props: SVGProps) => ( diff --git a/lib/SquareLetterP.tsx b/lib/SquareLetterP.tsx index b7894f1..ecd215c 100644 --- a/lib/SquareLetterP.tsx +++ b/lib/SquareLetterP.tsx @@ -12,7 +12,7 @@ const SquareLetterP = (props: SVGProps) => ( diff --git a/lib/SquareLetterT.tsx b/lib/SquareLetterT.tsx index dfea64a..ae0c594 100644 --- a/lib/SquareLetterT.tsx +++ b/lib/SquareLetterT.tsx @@ -12,7 +12,7 @@ const SquareLetterT = (props: SVGProps) => ( diff --git a/lib/SquareListUl.tsx b/lib/SquareListUl.tsx index af066a1..2b2501e 100644 --- a/lib/SquareListUl.tsx +++ b/lib/SquareListUl.tsx @@ -12,7 +12,7 @@ const SquareListUl = (props: SVGProps) => ( diff --git a/lib/SquareMinus.tsx b/lib/SquareMinus.tsx index cad3d28..94fa20f 100644 --- a/lib/SquareMinus.tsx +++ b/lib/SquareMinus.tsx @@ -12,7 +12,7 @@ const SquareMinus = (props: SVGProps) => ( diff --git a/lib/SquarePlus.tsx b/lib/SquarePlus.tsx index 51ec86e..cf89516 100644 --- a/lib/SquarePlus.tsx +++ b/lib/SquarePlus.tsx @@ -12,7 +12,7 @@ const SquarePlus = (props: SVGProps) => ( diff --git a/lib/SquareXmark.tsx b/lib/SquareXmark.tsx index b49d6e7..4fd5f19 100644 --- a/lib/SquareXmark.tsx +++ b/lib/SquareXmark.tsx @@ -12,7 +12,7 @@ const SquareXmark = (props: SVGProps) => ( diff --git a/lib/Star.tsx b/lib/Star.tsx index 0a35601..9594904 100644 --- a/lib/Star.tsx +++ b/lib/Star.tsx @@ -12,7 +12,7 @@ const Star = (props: SVGProps) => ( diff --git a/lib/StarFill.tsx b/lib/StarFill.tsx index 3838bcf..c48ea6d 100644 --- a/lib/StarFill.tsx +++ b/lib/StarFill.tsx @@ -11,7 +11,7 @@ const StarFill = (props: SVGProps) => ( > ); diff --git a/lib/Stethoscope.tsx b/lib/Stethoscope.tsx index aba673e..851456f 100644 --- a/lib/Stethoscope.tsx +++ b/lib/Stethoscope.tsx @@ -12,7 +12,7 @@ const Stethoscope = (props: SVGProps) => ( diff --git a/lib/Sticker.tsx b/lib/Sticker.tsx index 2651053..641d549 100644 --- a/lib/Sticker.tsx +++ b/lib/Sticker.tsx @@ -12,7 +12,7 @@ const Sticker = (props: SVGProps) => ( diff --git a/lib/Stop.tsx b/lib/Stop.tsx index 7d017d0..abfa38e 100644 --- a/lib/Stop.tsx +++ b/lib/Stop.tsx @@ -12,7 +12,7 @@ const Stop = (props: SVGProps) => ( diff --git a/lib/StopFill.tsx b/lib/StopFill.tsx index ba6718a..3121201 100644 --- a/lib/StopFill.tsx +++ b/lib/StopFill.tsx @@ -12,7 +12,7 @@ const StopFill = (props: SVGProps) => ( diff --git a/lib/Stopwatch.tsx b/lib/Stopwatch.tsx index 946b092..889b200 100644 --- a/lib/Stopwatch.tsx +++ b/lib/Stopwatch.tsx @@ -12,7 +12,7 @@ const Stopwatch = (props: SVGProps) => ( diff --git a/lib/Strikethrough.tsx b/lib/Strikethrough.tsx index 6fe17b6..a04bd4d 100644 --- a/lib/Strikethrough.tsx +++ b/lib/Strikethrough.tsx @@ -10,8 +10,8 @@ const Strikethrough = (props: SVGProps) => ( {...props} > - - + + ); diff --git a/lib/Suitcase.tsx b/lib/Suitcase.tsx index ce2a9f1..9eeb896 100644 --- a/lib/Suitcase.tsx +++ b/lib/Suitcase.tsx @@ -12,7 +12,7 @@ const Suitcase = (props: SVGProps) => ( diff --git a/lib/Sun.tsx b/lib/Sun.tsx index 9819c91..ca5c26d 100644 --- a/lib/Sun.tsx +++ b/lib/Sun.tsx @@ -12,7 +12,7 @@ const Sun = (props: SVGProps) => ( diff --git a/lib/TShirt.tsx b/lib/TShirt.tsx index 7d8d126..c00157b 100644 --- a/lib/TShirt.tsx +++ b/lib/TShirt.tsx @@ -12,7 +12,7 @@ const TShirt = (props: SVGProps) => ( diff --git a/lib/Tag.tsx b/lib/Tag.tsx index ef3cda3..1092206 100644 --- a/lib/Tag.tsx +++ b/lib/Tag.tsx @@ -12,7 +12,7 @@ const Tag = (props: SVGProps) => ( diff --git a/lib/TagDollar.tsx b/lib/TagDollar.tsx index 87fc492..d33c252 100644 --- a/lib/TagDollar.tsx +++ b/lib/TagDollar.tsx @@ -12,7 +12,7 @@ const TagDollar = (props: SVGProps) => ( diff --git a/lib/TagRuble.tsx b/lib/TagRuble.tsx index 76f1570..bd89de7 100644 --- a/lib/TagRuble.tsx +++ b/lib/TagRuble.tsx @@ -12,7 +12,7 @@ const TagRuble = (props: SVGProps) => ( diff --git a/lib/Tags.tsx b/lib/Tags.tsx index 004148a..22c0aac 100644 --- a/lib/Tags.tsx +++ b/lib/Tags.tsx @@ -12,7 +12,7 @@ const Tags = (props: SVGProps) => ( diff --git a/lib/Target.tsx b/lib/Target.tsx index 7e57be5..ba3ad93 100644 --- a/lib/Target.tsx +++ b/lib/Target.tsx @@ -12,7 +12,7 @@ const Target = (props: SVGProps) => ( diff --git a/lib/TargetDart.tsx b/lib/TargetDart.tsx index d959c71..f516938 100644 --- a/lib/TargetDart.tsx +++ b/lib/TargetDart.tsx @@ -12,7 +12,7 @@ const TargetDart = (props: SVGProps) => ( diff --git a/lib/Terminal.tsx b/lib/Terminal.tsx index 94ff34f..16ee8e5 100644 --- a/lib/Terminal.tsx +++ b/lib/Terminal.tsx @@ -12,7 +12,7 @@ const Terminal = (props: SVGProps) => ( diff --git a/lib/TerminalLine.tsx b/lib/TerminalLine.tsx index b2260f4..d8e32de 100644 --- a/lib/TerminalLine.tsx +++ b/lib/TerminalLine.tsx @@ -12,7 +12,7 @@ const TerminalLine = (props: SVGProps) => ( diff --git a/lib/Text.tsx b/lib/Text.tsx index 8f56844..95054a2 100644 --- a/lib/Text.tsx +++ b/lib/Text.tsx @@ -12,7 +12,7 @@ const Text = (props: SVGProps) => ( diff --git a/lib/TextAlignCenter.tsx b/lib/TextAlignCenter.tsx index 6433bc8..4d29380 100644 --- a/lib/TextAlignCenter.tsx +++ b/lib/TextAlignCenter.tsx @@ -12,7 +12,7 @@ const TextAlignCenter = (props: SVGProps) => ( diff --git a/lib/TextAlignJustify.tsx b/lib/TextAlignJustify.tsx index e573aff..088982c 100644 --- a/lib/TextAlignJustify.tsx +++ b/lib/TextAlignJustify.tsx @@ -12,7 +12,7 @@ const TextAlignJustify = (props: SVGProps) => ( diff --git a/lib/TextAlignLeft.tsx b/lib/TextAlignLeft.tsx index 3bfaf6d..4021853 100644 --- a/lib/TextAlignLeft.tsx +++ b/lib/TextAlignLeft.tsx @@ -12,7 +12,7 @@ const TextAlignLeft = (props: SVGProps) => ( diff --git a/lib/TextAlignRight.tsx b/lib/TextAlignRight.tsx index 9618324..4094ea5 100644 --- a/lib/TextAlignRight.tsx +++ b/lib/TextAlignRight.tsx @@ -12,7 +12,7 @@ const TextAlignRight = (props: SVGProps) => ( diff --git a/lib/TextIndent.tsx b/lib/TextIndent.tsx index f58a427..383ab2b 100644 --- a/lib/TextIndent.tsx +++ b/lib/TextIndent.tsx @@ -12,7 +12,7 @@ const TextIndent = (props: SVGProps) => ( diff --git a/lib/TextOutdent.tsx b/lib/TextOutdent.tsx index c172854..f8183cf 100644 --- a/lib/TextOutdent.tsx +++ b/lib/TextOutdent.tsx @@ -12,7 +12,7 @@ const TextOutdent = (props: SVGProps) => ( diff --git a/lib/ThumbsDown.tsx b/lib/ThumbsDown.tsx index 8a33816..9c2b3cf 100644 --- a/lib/ThumbsDown.tsx +++ b/lib/ThumbsDown.tsx @@ -12,7 +12,7 @@ const ThumbsDown = (props: SVGProps) => ( diff --git a/lib/ThumbsDownFill.tsx b/lib/ThumbsDownFill.tsx index 037c7ca..0d82086 100644 --- a/lib/ThumbsDownFill.tsx +++ b/lib/ThumbsDownFill.tsx @@ -9,19 +9,12 @@ const ThumbsDownFill = (props: SVGProps) => ( viewBox="0 0 16 16" {...props} > - - - - - - - - + ); export default ThumbsDownFill; diff --git a/lib/ThumbsUp.tsx b/lib/ThumbsUp.tsx index b7b0ead..1b39751 100644 --- a/lib/ThumbsUp.tsx +++ b/lib/ThumbsUp.tsx @@ -12,7 +12,7 @@ const ThumbsUp = (props: SVGProps) => ( diff --git a/lib/ThumbsUp2.tsx b/lib/ThumbsUp2.tsx index 5f99b33..3292732 100644 --- a/lib/ThumbsUp2.tsx +++ b/lib/ThumbsUp2.tsx @@ -13,7 +13,7 @@ const ThumbsUp2 = (props: SVGProps) => ( diff --git a/lib/ThumbsUpFill.tsx b/lib/ThumbsUpFill.tsx index 7523604..04c1706 100644 --- a/lib/ThumbsUpFill.tsx +++ b/lib/ThumbsUpFill.tsx @@ -12,7 +12,7 @@ const ThumbsUpFill = (props: SVGProps) => ( diff --git a/lib/Thunderbolt.tsx b/lib/Thunderbolt.tsx index 20564b7..42af723 100644 --- a/lib/Thunderbolt.tsx +++ b/lib/Thunderbolt.tsx @@ -12,7 +12,7 @@ const Thunderbolt = (props: SVGProps) => ( diff --git a/lib/ThunderboltFill.tsx b/lib/ThunderboltFill.tsx index 5f09444..1481c80 100644 --- a/lib/ThunderboltFill.tsx +++ b/lib/ThunderboltFill.tsx @@ -11,7 +11,7 @@ const ThunderboltFill = (props: SVGProps) => ( > ); diff --git a/lib/Ticket.tsx b/lib/Ticket.tsx index ebd07f1..1f6f97a 100644 --- a/lib/Ticket.tsx +++ b/lib/Ticket.tsx @@ -13,7 +13,7 @@ const Ticket = (props: SVGProps) => ( diff --git a/lib/Timeline.tsx b/lib/Timeline.tsx index 25def3d..3a994a3 100644 --- a/lib/Timeline.tsx +++ b/lib/Timeline.tsx @@ -12,7 +12,7 @@ const Timeline = (props: SVGProps) => ( diff --git a/lib/Timestamps.tsx b/lib/Timestamps.tsx index c4d24b3..5bab17e 100644 --- a/lib/Timestamps.tsx +++ b/lib/Timestamps.tsx @@ -12,7 +12,7 @@ const Timestamps = (props: SVGProps) => ( diff --git a/lib/TrafficLight.tsx b/lib/TrafficLight.tsx index 21e4630..3471b38 100644 --- a/lib/TrafficLight.tsx +++ b/lib/TrafficLight.tsx @@ -12,7 +12,7 @@ const TrafficLight = (props: SVGProps) => ( diff --git a/lib/TrashBin.tsx b/lib/TrashBin.tsx index d3552e5..f4f70e5 100644 --- a/lib/TrashBin.tsx +++ b/lib/TrashBin.tsx @@ -12,7 +12,7 @@ const TrashBin = (props: SVGProps) => ( diff --git a/lib/Tray.tsx b/lib/Tray.tsx index f46011b..409324c 100644 --- a/lib/Tray.tsx +++ b/lib/Tray.tsx @@ -12,7 +12,7 @@ const Tray = (props: SVGProps) => ( diff --git a/lib/TriangleDown.tsx b/lib/TriangleDown.tsx index b1a1bfc..c7e2c3c 100644 --- a/lib/TriangleDown.tsx +++ b/lib/TriangleDown.tsx @@ -12,7 +12,7 @@ const TriangleDown = (props: SVGProps) => ( diff --git a/lib/TriangleDownFill.tsx b/lib/TriangleDownFill.tsx index dbdc6ec..8681102 100644 --- a/lib/TriangleDownFill.tsx +++ b/lib/TriangleDownFill.tsx @@ -11,7 +11,7 @@ const TriangleDownFill = (props: SVGProps) => ( > ); diff --git a/lib/TriangleExclamation.tsx b/lib/TriangleExclamation.tsx index 11d31bb..cca7147 100644 --- a/lib/TriangleExclamation.tsx +++ b/lib/TriangleExclamation.tsx @@ -12,7 +12,7 @@ const TriangleExclamation = (props: SVGProps) => ( diff --git a/lib/TriangleExclamationFill.tsx b/lib/TriangleExclamationFill.tsx index 9c307ba..9d78afc 100644 --- a/lib/TriangleExclamationFill.tsx +++ b/lib/TriangleExclamationFill.tsx @@ -12,7 +12,7 @@ const TriangleExclamationFill = (props: SVGProps) => ( diff --git a/lib/TriangleLeft.tsx b/lib/TriangleLeft.tsx index 5fa8bed..f232497 100644 --- a/lib/TriangleLeft.tsx +++ b/lib/TriangleLeft.tsx @@ -12,7 +12,7 @@ const TriangleLeft = (props: SVGProps) => ( diff --git a/lib/TriangleLeftFill.tsx b/lib/TriangleLeftFill.tsx index e28fdc4..41e7275 100644 --- a/lib/TriangleLeftFill.tsx +++ b/lib/TriangleLeftFill.tsx @@ -11,7 +11,7 @@ const TriangleLeftFill = (props: SVGProps) => ( > ); diff --git a/lib/TriangleRight.tsx b/lib/TriangleRight.tsx index 6e2154f..4815665 100644 --- a/lib/TriangleRight.tsx +++ b/lib/TriangleRight.tsx @@ -12,7 +12,7 @@ const TriangleRight = (props: SVGProps) => ( diff --git a/lib/TriangleRightFill.tsx b/lib/TriangleRightFill.tsx index fd88b3d..dd35e14 100644 --- a/lib/TriangleRightFill.tsx +++ b/lib/TriangleRightFill.tsx @@ -11,7 +11,7 @@ const TriangleRightFill = (props: SVGProps) => ( > ); diff --git a/lib/TriangleThunderbolt.tsx b/lib/TriangleThunderbolt.tsx index 4197b86..c5725d8 100644 --- a/lib/TriangleThunderbolt.tsx +++ b/lib/TriangleThunderbolt.tsx @@ -12,7 +12,7 @@ const TriangleThunderbolt = (props: SVGProps) => ( diff --git a/lib/TriangleUp.tsx b/lib/TriangleUp.tsx index 0c3c968..6f0d1ef 100644 --- a/lib/TriangleUp.tsx +++ b/lib/TriangleUp.tsx @@ -12,7 +12,7 @@ const TriangleUp = (props: SVGProps) => ( diff --git a/lib/TriangleUpFill.tsx b/lib/TriangleUpFill.tsx index 6161135..f234b9e 100644 --- a/lib/TriangleUpFill.tsx +++ b/lib/TriangleUpFill.tsx @@ -11,7 +11,7 @@ const TriangleUpFill = (props: SVGProps) => ( > ); diff --git a/lib/Trolley.tsx b/lib/Trolley.tsx index 5ea93af..87485fe 100644 --- a/lib/Trolley.tsx +++ b/lib/Trolley.tsx @@ -12,7 +12,7 @@ const Trolley = (props: SVGProps) => ( diff --git a/lib/Tv.tsx b/lib/Tv.tsx index c66650b..55e1b21 100644 --- a/lib/Tv.tsx +++ b/lib/Tv.tsx @@ -12,7 +12,7 @@ const Tv = (props: SVGProps) => ( diff --git a/lib/TvRetro.tsx b/lib/TvRetro.tsx index 1caf6fb..a69f5fe 100644 --- a/lib/TvRetro.tsx +++ b/lib/TvRetro.tsx @@ -12,7 +12,7 @@ const TvRetro = (props: SVGProps) => ( diff --git a/lib/Umbrella.tsx b/lib/Umbrella.tsx index 8d57c6d..13ca036 100644 --- a/lib/Umbrella.tsx +++ b/lib/Umbrella.tsx @@ -12,7 +12,7 @@ const Umbrella = (props: SVGProps) => ( diff --git a/lib/Underline.tsx b/lib/Underline.tsx index 59dfde1..e857233 100644 --- a/lib/Underline.tsx +++ b/lib/Underline.tsx @@ -12,7 +12,7 @@ const Underline = (props: SVGProps) => ( diff --git a/lib/Vault.tsx b/lib/Vault.tsx index 7998de8..577fb64 100644 --- a/lib/Vault.tsx +++ b/lib/Vault.tsx @@ -12,7 +12,7 @@ const Vault = (props: SVGProps) => ( diff --git a/lib/VectorCircle.tsx b/lib/VectorCircle.tsx index 98d14a6..aa4ca84 100644 --- a/lib/VectorCircle.tsx +++ b/lib/VectorCircle.tsx @@ -12,7 +12,7 @@ const VectorCircle = (props: SVGProps) => ( diff --git a/lib/VectorSquare.tsx b/lib/VectorSquare.tsx index 86ed110..7c4afe8 100644 --- a/lib/VectorSquare.tsx +++ b/lib/VectorSquare.tsx @@ -12,7 +12,7 @@ const VectorSquare = (props: SVGProps) => ( diff --git a/lib/Video.tsx b/lib/Video.tsx index af62ae7..641c8a9 100644 --- a/lib/Video.tsx +++ b/lib/Video.tsx @@ -12,7 +12,7 @@ const Video = (props: SVGProps) => ( diff --git a/lib/Volume.tsx b/lib/Volume.tsx index d9b072c..b13c485 100644 --- a/lib/Volume.tsx +++ b/lib/Volume.tsx @@ -13,7 +13,7 @@ const Volume = (props: SVGProps) => ( diff --git a/lib/VolumeFill.tsx b/lib/VolumeFill.tsx index 86e8853..50d2d22 100644 --- a/lib/VolumeFill.tsx +++ b/lib/VolumeFill.tsx @@ -13,7 +13,7 @@ const VolumeFill = (props: SVGProps) => ( diff --git a/lib/VolumeLow.tsx b/lib/VolumeLow.tsx index 9a0ae93..4b6060e 100644 --- a/lib/VolumeLow.tsx +++ b/lib/VolumeLow.tsx @@ -12,7 +12,7 @@ const VolumeLow = (props: SVGProps) => ( diff --git a/lib/VolumeOff.tsx b/lib/VolumeOff.tsx index d7dabd8..afff914 100644 --- a/lib/VolumeOff.tsx +++ b/lib/VolumeOff.tsx @@ -12,7 +12,7 @@ const VolumeOff = (props: SVGProps) => ( diff --git a/lib/VolumeXmark.tsx b/lib/VolumeXmark.tsx index d36cb90..1052bfe 100644 --- a/lib/VolumeXmark.tsx +++ b/lib/VolumeXmark.tsx @@ -12,7 +12,7 @@ const VolumeXmark = (props: SVGProps) => ( diff --git a/lib/WeightHanging.tsx b/lib/WeightHanging.tsx index 4fec619..6e64c98 100644 --- a/lib/WeightHanging.tsx +++ b/lib/WeightHanging.tsx @@ -12,7 +12,7 @@ const WeightHanging = (props: SVGProps) => ( diff --git a/lib/Wrench.tsx b/lib/Wrench.tsx index e38ac1d..13c72cf 100644 --- a/lib/Wrench.tsx +++ b/lib/Wrench.tsx @@ -12,7 +12,7 @@ const Wrench = (props: SVGProps) => ( diff --git a/lib/Xmark.tsx b/lib/Xmark.tsx index 15020b6..223809c 100644 --- a/lib/Xmark.tsx +++ b/lib/Xmark.tsx @@ -12,7 +12,7 @@ const Xmark = (props: SVGProps) => ( diff --git a/metadata.json b/metadata.json index bf7d8a7..8a7076f 100644 --- a/metadata.json +++ b/metadata.json @@ -777,7 +777,10 @@ "style": "regular", "svgName": "brush", "componentName": "Brush", - "keywords": [] + "keywords": [ + "paint", + "color" + ] }, { "name": "bucket", diff --git a/package-lock.json b/package-lock.json index 474be18..7c8f20e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,42 +9,52 @@ "version": "2.10.0", "license": "MIT", "devDependencies": { - "@babel/preset-env": "^7.23.2", - "@babel/preset-react": "^7.22.15", - "@babel/preset-typescript": "^7.23.2", + "@babel/preset-env": "^7.24.7", + "@babel/preset-react": "^7.24.7", + "@babel/preset-typescript": "^7.24.7", "@bem-react/classname": "^1.6.0", - "@commitlint/cli": "^18.2.0", - "@commitlint/config-conventional": "^18.1.0", - "@figma-export/core": "^4.7.0", - "@gravity-ui/eslint-config": "^3.1.1", + "@commitlint/cli": "^19.3.0", + "@commitlint/config-conventional": "^19.2.2", + "@figma-export/core": "^6.0.0", + "@gravity-ui/eslint-config": "^3.2.0", "@gravity-ui/prettier-config": "^1.1.0", "@gravity-ui/stylelint-config": "^4.0.1", "@gravity-ui/tsconfig": "^1.0.0", - "@gravity-ui/uikit": "^5.18.1", - "@storybook/cli": "^7.5.2", - "@storybook/manager-api": "^7.5.2", + "@gravity-ui/uikit": "^6.17.0", + "@storybook/addon-webpack5-compiler-swc": "^1.0.3", + "@storybook/cli": "^8.1.8", + "@storybook/manager-api": "^8.1.8", "@storybook/preset-scss": "^1.0.3", - "@storybook/react": "^7.5.2", - "@storybook/react-webpack5": "^7.5.2", - "@storybook/theming": "^7.5.2", + "@storybook/react": "^8.1.8", + "@storybook/react-webpack5": "^8.1.8", + "@storybook/theming": "^8.1.8", "@svgr/core": "^8.1.0", "@svgr/plugin-jsx": "^8.1.0", - "@types/react": "^18.2.33", - "@types/react-dom": "^18.2.14", + "@types/react": "^18.3.3", + "@types/react-dom": "^18.3.0", "cross-env": "^7.0.3", - "eslint": "^8.52.0", - "fast-glob": "^3.3.1", - "husky": "^8.0.3", + "eslint": "^8.57.0", + "fast-glob": "^3.3.2", + "husky": "^9.0.11", "nano-staged": "^0.8.0", "npm-run-all": "^4.1.5", - "prettier": "^3.0.3", - "react": "^18.2.0", - "react-dom": "^18.2.0", - "rimraf": "^5.0.5", - "sass": "^1.69.5", + "prettier": "^3.3.2", + "react": "^18.3.1", + "react-dom": "^18.3.1", + "rimraf": "^5.0.7", + "sass": "^1.77.5", + "storybook": "^8.1.8", "stylelint": "^15.11.0", - "svgo": "^3.0.2", - "typescript": "^5.2.2" + "svgo": "^3.3.2", + "typescript": "^5.4.5" + }, + "peerDependencies": { + "react": "*" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + } } }, "node_modules/@aashutoshrathi/word-wrap": { @@ -82,114 +92,43 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.22.13", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", - "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", + "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", "dev": true, "dependencies": { - "@babel/highlight": "^7.22.13", - "chalk": "^2.4.2" + "@babel/highlight": "^7.24.7", + "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/code-frame/node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/code-frame/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/code-frame/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/@babel/code-frame/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "node_modules/@babel/code-frame/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/@babel/code-frame/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/code-frame/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/@babel/compat-data": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.2.tgz", - "integrity": "sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.7.tgz", + "integrity": "sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.2.tgz", - "integrity": "sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.7.tgz", + "integrity": "sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.22.13", - "@babel/generator": "^7.23.0", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-module-transforms": "^7.23.0", - "@babel/helpers": "^7.23.2", - "@babel/parser": "^7.23.0", - "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.2", - "@babel/types": "^7.23.0", + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.24.7", + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helpers": "^7.24.7", + "@babel/parser": "^7.24.7", + "@babel/template": "^7.24.7", + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -214,9 +153,9 @@ } }, "node_modules/@babel/eslint-parser": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.22.15.tgz", - "integrity": "sha512-yc8OOBIQk1EcRrpizuARSQS0TWAcOMpEJ1aafhNznaeYkeL+OhqnDObGFylB8ka8VFF/sZc+S4RzHyO+3LjQxg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.24.7.tgz", + "integrity": "sha512-SO5E3bVxDuxyNxM5agFv480YA2HO6ohZbGxbazZdIk3KQOPOGVNw6q78I9/lbviIf95eq6tPozeYnJLbjnC8IA==", "dev": true, "dependencies": { "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", @@ -228,7 +167,7 @@ }, "peerDependencies": { "@babel/core": "^7.11.0", - "eslint": "^7.5.0 || ^8.0.0" + "eslint": "^7.5.0 || ^8.0.0 || ^9.0.0" } }, "node_modules/@babel/eslint-parser/node_modules/semver": { @@ -241,14 +180,14 @@ } }, "node_modules/@babel/generator": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.0.tgz", - "integrity": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.7.tgz", + "integrity": "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==", "dev": true, "dependencies": { - "@babel/types": "^7.23.0", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", + "@babel/types": "^7.24.7", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" }, "engines": { @@ -256,38 +195,39 @@ } }, "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", + "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz", - "integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz", + "integrity": "sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==", "dev": true, "dependencies": { - "@babel/types": "^7.22.15" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz", - "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.7.tgz", + "integrity": "sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.22.9", - "@babel/helper-validator-option": "^7.22.15", - "browserslist": "^4.21.9", + "@babel/compat-data": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", + "browserslist": "^4.22.2", "lru-cache": "^5.1.1", "semver": "^6.3.1" }, @@ -305,19 +245,19 @@ } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz", - "integrity": "sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-member-expression-to-functions": "^7.22.15", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.9", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.7.tgz", + "integrity": "sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-member-expression-to-functions": "^7.24.7", + "@babel/helper-optimise-call-expression": "^7.24.7", + "@babel/helper-replace-supers": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", "semver": "^6.3.1" }, "engines": { @@ -337,12 +277,12 @@ } }, "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz", - "integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.24.7.tgz", + "integrity": "sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-annotate-as-pure": "^7.24.7", "regexpu-core": "^5.3.1", "semver": "^6.3.1" }, @@ -363,9 +303,9 @@ } }, "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.3.tgz", - "integrity": "sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==", + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz", + "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==", "dev": true, "dependencies": { "@babel/helper-compilation-targets": "^7.22.6", @@ -379,74 +319,79 @@ } }, "node_modules/@babel/helper-environment-visitor": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", - "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz", + "integrity": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==", "dev": true, + "dependencies": { + "@babel/types": "^7.24.7" + }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-function-name": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", - "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.24.7.tgz", + "integrity": "sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==", "dev": true, "dependencies": { - "@babel/template": "^7.22.15", - "@babel/types": "^7.23.0" + "@babel/template": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-hoist-variables": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", - "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.7.tgz", + "integrity": "sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz", - "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.7.tgz", + "integrity": "sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w==", "dev": true, "dependencies": { - "@babel/types": "^7.23.0" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", - "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", + "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", "dev": true, "dependencies": { - "@babel/types": "^7.22.15" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz", - "integrity": "sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.7.tgz", + "integrity": "sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/helper-validator-identifier": "^7.22.20" + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-simple-access": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -456,35 +401,35 @@ } }, "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", - "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz", + "integrity": "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", - "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.7.tgz", + "integrity": "sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz", - "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.24.7.tgz", + "integrity": "sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-wrap-function": "^7.22.20" + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-wrap-function": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -494,14 +439,14 @@ } }, "node_modules/@babel/helper-replace-supers": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz", - "integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.24.7.tgz", + "integrity": "sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-member-expression-to-functions": "^7.22.15", - "@babel/helper-optimise-call-expression": "^7.22.5" + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-member-expression-to-functions": "^7.24.7", + "@babel/helper-optimise-call-expression": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -511,105 +456,108 @@ } }, "node_modules/@babel/helper-simple-access": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", - "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", + "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", - "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz", + "integrity": "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", - "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", + "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-string-parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", - "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.7.tgz", + "integrity": "sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", + "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz", - "integrity": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.7.tgz", + "integrity": "sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-wrap-function": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz", - "integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.24.7.tgz", + "integrity": "sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==", "dev": true, "dependencies": { - "@babel/helper-function-name": "^7.22.5", - "@babel/template": "^7.22.15", - "@babel/types": "^7.22.19" + "@babel/helper-function-name": "^7.24.7", + "@babel/template": "^7.24.7", + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.2.tgz", - "integrity": "sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.7.tgz", + "integrity": "sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==", "dev": true, "dependencies": { - "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.2", - "@babel/types": "^7.23.0" + "@babel/template": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz", - "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", + "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", "dev": true, "dependencies": { - "@babel/helper-validator-identifier": "^7.22.20", + "@babel/helper-validator-identifier": "^7.24.7", "chalk": "^2.4.2", - "js-tokens": "^4.0.0" + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" @@ -687,9 +635,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz", - "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.7.tgz", + "integrity": "sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==", "dev": true, "bin": { "parser": "bin/babel-parser.js" @@ -698,13 +646,14 @@ "node": ">=6.0.0" } }, - "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.15.tgz", - "integrity": "sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==", + "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.7.tgz", + "integrity": "sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -713,73 +662,52 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.15.tgz", - "integrity": "sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.22.15" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.13.0" - } - }, - "node_modules/@babel/plugin-proposal-class-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", - "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", - "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.", + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.7.tgz", + "integrity": "sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", - "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", - "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.", + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz", + "integrity": "sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.7" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.13.0" } }, - "node_modules/@babel/plugin-proposal-optional-chaining": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", - "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", - "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.", + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.7.tgz", + "integrity": "sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.0.0" } }, "node_modules/@babel/plugin-proposal-private-property-in-object": { @@ -858,12 +786,12 @@ } }, "node_modules/@babel/plugin-syntax-flow": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.22.5.tgz", - "integrity": "sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.24.7.tgz", + "integrity": "sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -873,12 +801,12 @@ } }, "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz", - "integrity": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.7.tgz", + "integrity": "sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -888,12 +816,12 @@ } }, "node_modules/@babel/plugin-syntax-import-attributes": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz", - "integrity": "sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.7.tgz", + "integrity": "sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -927,12 +855,12 @@ } }, "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", - "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz", + "integrity": "sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1044,12 +972,12 @@ } }, "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", - "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.7.tgz", + "integrity": "sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1075,12 +1003,12 @@ } }, "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz", - "integrity": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz", + "integrity": "sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1090,14 +1018,14 @@ } }, "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.2.tgz", - "integrity": "sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.7.tgz", + "integrity": "sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-remap-async-to-generator": "^7.22.20", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-remap-async-to-generator": "^7.24.7", "@babel/plugin-syntax-async-generators": "^7.8.4" }, "engines": { @@ -1108,14 +1036,14 @@ } }, "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz", - "integrity": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz", + "integrity": "sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==", "dev": true, "dependencies": { - "@babel/helper-module-imports": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-remap-async-to-generator": "^7.22.5" + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-remap-async-to-generator": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1125,12 +1053,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz", - "integrity": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz", + "integrity": "sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1140,12 +1068,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.0.tgz", - "integrity": "sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.7.tgz", + "integrity": "sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1155,13 +1083,13 @@ } }, "node_modules/@babel/plugin-transform-class-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz", - "integrity": "sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.7.tgz", + "integrity": "sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1171,13 +1099,13 @@ } }, "node_modules/@babel/plugin-transform-class-static-block": { - "version": "7.22.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.11.tgz", - "integrity": "sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.7.tgz", + "integrity": "sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.11", - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-class-static-block": "^7.14.5" }, "engines": { @@ -1188,19 +1116,18 @@ } }, "node_modules/@babel/plugin-transform-classes": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.15.tgz", - "integrity": "sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.9", - "@babel/helper-split-export-declaration": "^7.22.6", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.7.tgz", + "integrity": "sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-replace-supers": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", "globals": "^11.1.0" }, "engines": { @@ -1211,13 +1138,13 @@ } }, "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz", - "integrity": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz", + "integrity": "sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/template": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/template": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1227,12 +1154,12 @@ } }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.0.tgz", - "integrity": "sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.7.tgz", + "integrity": "sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1242,13 +1169,13 @@ } }, "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz", - "integrity": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz", + "integrity": "sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1258,12 +1185,12 @@ } }, "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz", - "integrity": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz", + "integrity": "sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1273,12 +1200,12 @@ } }, "node_modules/@babel/plugin-transform-dynamic-import": { - "version": "7.22.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.11.tgz", - "integrity": "sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.7.tgz", + "integrity": "sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-dynamic-import": "^7.8.3" }, "engines": { @@ -1289,13 +1216,13 @@ } }, "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz", - "integrity": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz", + "integrity": "sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==", "dev": true, "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1305,12 +1232,12 @@ } }, "node_modules/@babel/plugin-transform-export-namespace-from": { - "version": "7.22.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.11.tgz", - "integrity": "sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.7.tgz", + "integrity": "sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" }, "engines": { @@ -1321,13 +1248,13 @@ } }, "node_modules/@babel/plugin-transform-flow-strip-types": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.22.5.tgz", - "integrity": "sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.24.7.tgz", + "integrity": "sha512-cjRKJ7FobOH2eakx7Ja+KpJRj8+y+/SiB3ooYm/n2UJfxu0oEaOoxOinitkJcPqv9KxS0kxTGPUaR7L2XcXDXA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-flow": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-flow": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1337,12 +1264,13 @@ } }, "node_modules/@babel/plugin-transform-for-of": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.15.tgz", - "integrity": "sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz", + "integrity": "sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1352,14 +1280,14 @@ } }, "node_modules/@babel/plugin-transform-function-name": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz", - "integrity": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.7.tgz", + "integrity": "sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==", "dev": true, "dependencies": { - "@babel/helper-compilation-targets": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1369,12 +1297,12 @@ } }, "node_modules/@babel/plugin-transform-json-strings": { - "version": "7.22.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.11.tgz", - "integrity": "sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.7.tgz", + "integrity": "sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-json-strings": "^7.8.3" }, "engines": { @@ -1385,12 +1313,12 @@ } }, "node_modules/@babel/plugin-transform-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz", - "integrity": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.7.tgz", + "integrity": "sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1400,12 +1328,12 @@ } }, "node_modules/@babel/plugin-transform-logical-assignment-operators": { - "version": "7.22.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.11.tgz", - "integrity": "sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz", + "integrity": "sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" }, "engines": { @@ -1416,12 +1344,12 @@ } }, "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz", - "integrity": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz", + "integrity": "sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1431,13 +1359,13 @@ } }, "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.0.tgz", - "integrity": "sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz", + "integrity": "sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.23.0", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1447,14 +1375,14 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.0.tgz", - "integrity": "sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.7.tgz", + "integrity": "sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.23.0", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-simple-access": "^7.22.5" + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-simple-access": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1464,15 +1392,15 @@ } }, "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.0.tgz", - "integrity": "sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.7.tgz", + "integrity": "sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==", "dev": true, "dependencies": { - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-module-transforms": "^7.23.0", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.20" + "@babel/helper-hoist-variables": "^7.24.7", + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1482,13 +1410,13 @@ } }, "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz", - "integrity": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz", + "integrity": "sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1498,13 +1426,13 @@ } }, "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", - "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz", + "integrity": "sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1514,12 +1442,12 @@ } }, "node_modules/@babel/plugin-transform-new-target": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz", - "integrity": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz", + "integrity": "sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1529,12 +1457,12 @@ } }, "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.22.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.11.tgz", - "integrity": "sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz", + "integrity": "sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" }, "engines": { @@ -1545,12 +1473,12 @@ } }, "node_modules/@babel/plugin-transform-numeric-separator": { - "version": "7.22.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.11.tgz", - "integrity": "sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz", + "integrity": "sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-numeric-separator": "^7.10.4" }, "engines": { @@ -1561,16 +1489,15 @@ } }, "node_modules/@babel/plugin-transform-object-rest-spread": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.15.tgz", - "integrity": "sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz", + "integrity": "sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.22.9", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.22.15" + "@babel/plugin-transform-parameters": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1580,13 +1507,13 @@ } }, "node_modules/@babel/plugin-transform-object-super": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz", - "integrity": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz", + "integrity": "sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-replace-supers": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1596,12 +1523,12 @@ } }, "node_modules/@babel/plugin-transform-optional-catch-binding": { - "version": "7.22.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.11.tgz", - "integrity": "sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz", + "integrity": "sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" }, "engines": { @@ -1612,13 +1539,13 @@ } }, "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.0.tgz", - "integrity": "sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.7.tgz", + "integrity": "sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", "@babel/plugin-syntax-optional-chaining": "^7.8.3" }, "engines": { @@ -1629,12 +1556,12 @@ } }, "node_modules/@babel/plugin-transform-parameters": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.15.tgz", - "integrity": "sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz", + "integrity": "sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1644,13 +1571,13 @@ } }, "node_modules/@babel/plugin-transform-private-methods": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz", - "integrity": "sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.7.tgz", + "integrity": "sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1660,14 +1587,14 @@ } }, "node_modules/@babel/plugin-transform-private-property-in-object": { - "version": "7.22.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.11.tgz", - "integrity": "sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.7.tgz", + "integrity": "sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.22.11", - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-private-property-in-object": "^7.14.5" }, "engines": { @@ -1678,12 +1605,12 @@ } }, "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz", - "integrity": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz", + "integrity": "sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1693,12 +1620,12 @@ } }, "node_modules/@babel/plugin-transform-react-display-name": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.22.5.tgz", - "integrity": "sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.24.7.tgz", + "integrity": "sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1708,16 +1635,16 @@ } }, "node_modules/@babel/plugin-transform-react-jsx": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.22.15.tgz", - "integrity": "sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.24.7.tgz", + "integrity": "sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-jsx": "^7.22.5", - "@babel/types": "^7.22.15" + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-jsx": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1727,12 +1654,12 @@ } }, "node_modules/@babel/plugin-transform-react-jsx-development": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz", - "integrity": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.24.7.tgz", + "integrity": "sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==", "dev": true, "dependencies": { - "@babel/plugin-transform-react-jsx": "^7.22.5" + "@babel/plugin-transform-react-jsx": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1742,13 +1669,13 @@ } }, "node_modules/@babel/plugin-transform-react-pure-annotations": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.22.5.tgz", - "integrity": "sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.24.7.tgz", + "integrity": "sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1758,12 +1685,12 @@ } }, "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.22.10", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz", - "integrity": "sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz", + "integrity": "sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.7", "regenerator-transform": "^0.15.2" }, "engines": { @@ -1774,12 +1701,12 @@ } }, "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz", - "integrity": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz", + "integrity": "sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1789,12 +1716,12 @@ } }, "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz", - "integrity": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz", + "integrity": "sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1804,13 +1731,13 @@ } }, "node_modules/@babel/plugin-transform-spread": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz", - "integrity": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz", + "integrity": "sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1820,12 +1747,12 @@ } }, "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz", - "integrity": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz", + "integrity": "sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1835,12 +1762,12 @@ } }, "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz", - "integrity": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz", + "integrity": "sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1850,12 +1777,12 @@ } }, "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz", - "integrity": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.7.tgz", + "integrity": "sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1865,15 +1792,15 @@ } }, "node_modules/@babel/plugin-transform-typescript": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.15.tgz", - "integrity": "sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.24.7.tgz", + "integrity": "sha512-iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-typescript": "^7.22.5" + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-typescript": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1883,12 +1810,12 @@ } }, "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.22.10", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz", - "integrity": "sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz", + "integrity": "sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1898,13 +1825,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-property-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz", - "integrity": "sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.7.tgz", + "integrity": "sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1914,13 +1841,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz", - "integrity": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz", + "integrity": "sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1930,13 +1857,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-sets-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz", - "integrity": "sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.7.tgz", + "integrity": "sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1946,25 +1873,27 @@ } }, "node_modules/@babel/preset-env": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.2.tgz", - "integrity": "sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==", - "dev": true, - "dependencies": { - "@babel/compat-data": "^7.23.2", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-option": "^7.22.15", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.15", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.15", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.7.tgz", + "integrity": "sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.24.7", + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.24.7", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.7", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.7", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.24.7", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", "@babel/plugin-syntax-class-static-block": "^7.14.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.22.5", - "@babel/plugin-syntax-import-attributes": "^7.22.5", + "@babel/plugin-syntax-import-assertions": "^7.24.7", + "@babel/plugin-syntax-import-attributes": "^7.24.7", "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", @@ -1976,59 +1905,58 @@ "@babel/plugin-syntax-private-property-in-object": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", - "@babel/plugin-transform-arrow-functions": "^7.22.5", - "@babel/plugin-transform-async-generator-functions": "^7.23.2", - "@babel/plugin-transform-async-to-generator": "^7.22.5", - "@babel/plugin-transform-block-scoped-functions": "^7.22.5", - "@babel/plugin-transform-block-scoping": "^7.23.0", - "@babel/plugin-transform-class-properties": "^7.22.5", - "@babel/plugin-transform-class-static-block": "^7.22.11", - "@babel/plugin-transform-classes": "^7.22.15", - "@babel/plugin-transform-computed-properties": "^7.22.5", - "@babel/plugin-transform-destructuring": "^7.23.0", - "@babel/plugin-transform-dotall-regex": "^7.22.5", - "@babel/plugin-transform-duplicate-keys": "^7.22.5", - "@babel/plugin-transform-dynamic-import": "^7.22.11", - "@babel/plugin-transform-exponentiation-operator": "^7.22.5", - "@babel/plugin-transform-export-namespace-from": "^7.22.11", - "@babel/plugin-transform-for-of": "^7.22.15", - "@babel/plugin-transform-function-name": "^7.22.5", - "@babel/plugin-transform-json-strings": "^7.22.11", - "@babel/plugin-transform-literals": "^7.22.5", - "@babel/plugin-transform-logical-assignment-operators": "^7.22.11", - "@babel/plugin-transform-member-expression-literals": "^7.22.5", - "@babel/plugin-transform-modules-amd": "^7.23.0", - "@babel/plugin-transform-modules-commonjs": "^7.23.0", - "@babel/plugin-transform-modules-systemjs": "^7.23.0", - "@babel/plugin-transform-modules-umd": "^7.22.5", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", - "@babel/plugin-transform-new-target": "^7.22.5", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.11", - "@babel/plugin-transform-numeric-separator": "^7.22.11", - "@babel/plugin-transform-object-rest-spread": "^7.22.15", - "@babel/plugin-transform-object-super": "^7.22.5", - "@babel/plugin-transform-optional-catch-binding": "^7.22.11", - "@babel/plugin-transform-optional-chaining": "^7.23.0", - "@babel/plugin-transform-parameters": "^7.22.15", - "@babel/plugin-transform-private-methods": "^7.22.5", - "@babel/plugin-transform-private-property-in-object": "^7.22.11", - "@babel/plugin-transform-property-literals": "^7.22.5", - "@babel/plugin-transform-regenerator": "^7.22.10", - "@babel/plugin-transform-reserved-words": "^7.22.5", - "@babel/plugin-transform-shorthand-properties": "^7.22.5", - "@babel/plugin-transform-spread": "^7.22.5", - "@babel/plugin-transform-sticky-regex": "^7.22.5", - "@babel/plugin-transform-template-literals": "^7.22.5", - "@babel/plugin-transform-typeof-symbol": "^7.22.5", - "@babel/plugin-transform-unicode-escapes": "^7.22.10", - "@babel/plugin-transform-unicode-property-regex": "^7.22.5", - "@babel/plugin-transform-unicode-regex": "^7.22.5", - "@babel/plugin-transform-unicode-sets-regex": "^7.22.5", + "@babel/plugin-transform-arrow-functions": "^7.24.7", + "@babel/plugin-transform-async-generator-functions": "^7.24.7", + "@babel/plugin-transform-async-to-generator": "^7.24.7", + "@babel/plugin-transform-block-scoped-functions": "^7.24.7", + "@babel/plugin-transform-block-scoping": "^7.24.7", + "@babel/plugin-transform-class-properties": "^7.24.7", + "@babel/plugin-transform-class-static-block": "^7.24.7", + "@babel/plugin-transform-classes": "^7.24.7", + "@babel/plugin-transform-computed-properties": "^7.24.7", + "@babel/plugin-transform-destructuring": "^7.24.7", + "@babel/plugin-transform-dotall-regex": "^7.24.7", + "@babel/plugin-transform-duplicate-keys": "^7.24.7", + "@babel/plugin-transform-dynamic-import": "^7.24.7", + "@babel/plugin-transform-exponentiation-operator": "^7.24.7", + "@babel/plugin-transform-export-namespace-from": "^7.24.7", + "@babel/plugin-transform-for-of": "^7.24.7", + "@babel/plugin-transform-function-name": "^7.24.7", + "@babel/plugin-transform-json-strings": "^7.24.7", + "@babel/plugin-transform-literals": "^7.24.7", + "@babel/plugin-transform-logical-assignment-operators": "^7.24.7", + "@babel/plugin-transform-member-expression-literals": "^7.24.7", + "@babel/plugin-transform-modules-amd": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.7", + "@babel/plugin-transform-modules-systemjs": "^7.24.7", + "@babel/plugin-transform-modules-umd": "^7.24.7", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.24.7", + "@babel/plugin-transform-new-target": "^7.24.7", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7", + "@babel/plugin-transform-numeric-separator": "^7.24.7", + "@babel/plugin-transform-object-rest-spread": "^7.24.7", + "@babel/plugin-transform-object-super": "^7.24.7", + "@babel/plugin-transform-optional-catch-binding": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.7", + "@babel/plugin-transform-parameters": "^7.24.7", + "@babel/plugin-transform-private-methods": "^7.24.7", + "@babel/plugin-transform-private-property-in-object": "^7.24.7", + "@babel/plugin-transform-property-literals": "^7.24.7", + "@babel/plugin-transform-regenerator": "^7.24.7", + "@babel/plugin-transform-reserved-words": "^7.24.7", + "@babel/plugin-transform-shorthand-properties": "^7.24.7", + "@babel/plugin-transform-spread": "^7.24.7", + "@babel/plugin-transform-sticky-regex": "^7.24.7", + "@babel/plugin-transform-template-literals": "^7.24.7", + "@babel/plugin-transform-typeof-symbol": "^7.24.7", + "@babel/plugin-transform-unicode-escapes": "^7.24.7", + "@babel/plugin-transform-unicode-property-regex": "^7.24.7", + "@babel/plugin-transform-unicode-regex": "^7.24.7", + "@babel/plugin-transform-unicode-sets-regex": "^7.24.7", "@babel/preset-modules": "0.1.6-no-external-plugins", - "@babel/types": "^7.23.0", - "babel-plugin-polyfill-corejs2": "^0.4.6", - "babel-plugin-polyfill-corejs3": "^0.8.5", - "babel-plugin-polyfill-regenerator": "^0.5.3", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.4", + "babel-plugin-polyfill-regenerator": "^0.6.1", "core-js-compat": "^3.31.0", "semver": "^6.3.1" }, @@ -2049,14 +1977,14 @@ } }, "node_modules/@babel/preset-flow": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.22.15.tgz", - "integrity": "sha512-dB5aIMqpkgbTfN5vDdTRPzjqtWiZcRESNR88QYnoPR+bmdYoluOzMX9tQerTv0XzSgZYctPfO1oc0N5zdog1ew==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.24.7.tgz", + "integrity": "sha512-NL3Lo0NorCU607zU3NwRyJbpaB6E3t0xtd3LfAQKDfkeX4/ggcDXvkmkW42QWT5owUeW/jAe4hn+2qvkV1IbfQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-option": "^7.22.15", - "@babel/plugin-transform-flow-strip-types": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", + "@babel/plugin-transform-flow-strip-types": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2080,17 +2008,17 @@ } }, "node_modules/@babel/preset-react": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.22.15.tgz", - "integrity": "sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.24.7.tgz", + "integrity": "sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-option": "^7.22.15", - "@babel/plugin-transform-react-display-name": "^7.22.5", - "@babel/plugin-transform-react-jsx": "^7.22.15", - "@babel/plugin-transform-react-jsx-development": "^7.22.5", - "@babel/plugin-transform-react-pure-annotations": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", + "@babel/plugin-transform-react-display-name": "^7.24.7", + "@babel/plugin-transform-react-jsx": "^7.24.7", + "@babel/plugin-transform-react-jsx-development": "^7.24.7", + "@babel/plugin-transform-react-pure-annotations": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2100,16 +2028,16 @@ } }, "node_modules/@babel/preset-typescript": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.23.2.tgz", - "integrity": "sha512-u4UJc1XsS1GhIGteM8rnGiIvf9rJpiVgMEeCnwlLA7WJPC+jcXWJAGxYmeqs5hOZD8BbAfnV5ezBOxQbb4OUxA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.24.7.tgz", + "integrity": "sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-option": "^7.22.15", - "@babel/plugin-syntax-jsx": "^7.22.5", - "@babel/plugin-transform-modules-commonjs": "^7.23.0", - "@babel/plugin-transform-typescript": "^7.22.15" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", + "@babel/plugin-syntax-jsx": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.7", + "@babel/plugin-transform-typescript": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2119,15 +2047,15 @@ } }, "node_modules/@babel/register": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.22.15.tgz", - "integrity": "sha512-V3Q3EqoQdn65RCgTLwauZaTfd1ShhwPmbBv+1dkZV/HpCGMKVyn6oFcRlI7RaKqiDQjX2Qd3AuoEguBgdjIKlg==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.24.6.tgz", + "integrity": "sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w==", "dev": true, "dependencies": { "clone-deep": "^4.0.1", "find-cache-dir": "^2.0.0", "make-dir": "^2.1.0", - "pirates": "^4.0.5", + "pirates": "^4.0.6", "source-map-support": "^0.5.16" }, "engines": { @@ -2274,34 +2202,34 @@ } }, "node_modules/@babel/template": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", - "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.7.tgz", + "integrity": "sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.22.13", - "@babel/parser": "^7.22.15", - "@babel/types": "^7.22.15" + "@babel/code-frame": "^7.24.7", + "@babel/parser": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.2.tgz", - "integrity": "sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.22.13", - "@babel/generator": "^7.23.0", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.23.0", - "@babel/types": "^7.23.0", - "debug": "^4.1.0", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.7.tgz", + "integrity": "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.24.7", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-hoist-variables": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", + "@babel/parser": "^7.24.7", + "@babel/types": "^7.24.7", + "debug": "^4.3.1", "globals": "^11.1.0" }, "engines": { @@ -2309,13 +2237,13 @@ } }, "node_modules/@babel/types": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.0.tgz", - "integrity": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.7.tgz", + "integrity": "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==", "dev": true, "dependencies": { - "@babel/helper-string-parser": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.20", + "@babel/helper-string-parser": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" }, "engines": { @@ -2328,12 +2256,6 @@ "integrity": "sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==", "dev": true }, - "node_modules/@bcoe/v8-coverage": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", - "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", - "dev": true - }, "node_modules/@bem-react/classname": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/@bem-react/classname/-/classname-1.6.0.tgz", @@ -2351,20 +2273,17 @@ } }, "node_modules/@commitlint/cli": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-18.2.0.tgz", - "integrity": "sha512-F/DCG791kMFmWg5eIdogakuGeg4OiI2kD430ed1a1Hh3epvrJdeIAgcGADAMIOmF+m0S1+VlIYUKG2dvQQ1Izw==", + "version": "19.3.0", + "resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-19.3.0.tgz", + "integrity": "sha512-LgYWOwuDR7BSTQ9OLZ12m7F/qhNY+NpAyPBgo4YNMkACE7lGuUnuQq1yi9hz1KA4+3VqpOYl8H1rY/LYK43v7g==", "dev": true, "dependencies": { - "@commitlint/format": "^18.1.0", - "@commitlint/lint": "^18.1.0", - "@commitlint/load": "^18.2.0", - "@commitlint/read": "^18.1.0", - "@commitlint/types": "^18.1.0", - "execa": "^5.0.0", - "lodash.isfunction": "^3.0.9", - "resolve-from": "5.0.0", - "resolve-global": "1.0.0", + "@commitlint/format": "^19.3.0", + "@commitlint/lint": "^19.2.2", + "@commitlint/load": "^19.2.0", + "@commitlint/read": "^19.2.1", + "@commitlint/types": "^19.0.3", + "execa": "^8.0.1", "yargs": "^17.0.0" }, "bin": { @@ -2375,11 +2294,12 @@ } }, "node_modules/@commitlint/config-conventional": { - "version": "18.1.0", - "resolved": "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-18.1.0.tgz", - "integrity": "sha512-8vvvtV3GOLEMHeKc8PjRL1lfP1Y4B6BG0WroFd9PJeRiOc3nFX1J0wlJenLURzl9Qus6YXVGWf+a/ZlbCKT3AA==", + "version": "19.2.2", + "resolved": "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-19.2.2.tgz", + "integrity": "sha512-mLXjsxUVLYEGgzbxbxicGPggDuyWNkf25Ht23owXIH+zV2pv1eJuzLK3t1gDY5Gp6pxdE60jZnWUY5cvgL3ufw==", "dev": true, "dependencies": { + "@commitlint/types": "^19.0.3", "conventional-changelog-conventionalcommits": "^7.0.2" }, "engines": { @@ -2387,12 +2307,12 @@ } }, "node_modules/@commitlint/config-validator": { - "version": "18.1.0", - "resolved": "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-18.1.0.tgz", - "integrity": "sha512-kbHkIuItXn93o2NmTdwi5Mk1ujyuSIysRE/XHtrcps/27GuUKEIqBJp6TdJ4Sq+ze59RlzYSHMKuDKZbfg9+uQ==", + "version": "19.0.3", + "resolved": "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-19.0.3.tgz", + "integrity": "sha512-2D3r4PKjoo59zBc2auodrSCaUnCSALCx54yveOFwwP/i2kfEAQrygwOleFWswLqK0UL/F9r07MFi5ev2ohyM4Q==", "dev": true, "dependencies": { - "@commitlint/types": "^18.1.0", + "@commitlint/types": "^19.0.3", "ajv": "^8.11.0" }, "engines": { @@ -2400,12 +2320,12 @@ } }, "node_modules/@commitlint/ensure": { - "version": "18.1.0", - "resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-18.1.0.tgz", - "integrity": "sha512-CkPzJ9UBumIo54VDcpmBlaVX81J++wzEhN3DJH9+6PaLeiIG+gkSx8t7C2gfwG7PaiW4HzQtdQlBN5ab+c4vFQ==", + "version": "19.0.3", + "resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-19.0.3.tgz", + "integrity": "sha512-SZEpa/VvBLoT+EFZVb91YWbmaZ/9rPH3ESrINOl0HD2kMYsjvl0tF7nMHh0EpTcv4+gTtZBAe1y/SS6/OhfZzQ==", "dev": true, "dependencies": { - "@commitlint/types": "^18.1.0", + "@commitlint/types": "^19.0.3", "lodash.camelcase": "^4.3.0", "lodash.kebabcase": "^4.1.1", "lodash.snakecase": "^4.1.1", @@ -2417,95 +2337,155 @@ } }, "node_modules/@commitlint/execute-rule": { - "version": "18.1.0", - "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-18.1.0.tgz", - "integrity": "sha512-w3Vt4K+O7+nSr9/gFSEfZ1exKUOPSlJaRpnk7Y+XowEhvwT7AIk1HNANH+gETf0zGZ020+hfiMW/Ome+SNCUsg==", + "version": "19.0.0", + "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-19.0.0.tgz", + "integrity": "sha512-mtsdpY1qyWgAO/iOK0L6gSGeR7GFcdW7tIjcNFxcWkfLDF5qVbPHKuGATFqRMsxcO8OUKNj0+3WOHB7EHm4Jdw==", "dev": true, "engines": { "node": ">=v18" } }, "node_modules/@commitlint/format": { - "version": "18.1.0", - "resolved": "https://registry.npmjs.org/@commitlint/format/-/format-18.1.0.tgz", - "integrity": "sha512-So/w217tGWMZZb1yXcUFNF2qFLyYtSVqbnGoMbX8a+JKcG4oB11Gc1adS0ssUOMivtiNpaLtkSHFynyiwtJtiQ==", + "version": "19.3.0", + "resolved": "https://registry.npmjs.org/@commitlint/format/-/format-19.3.0.tgz", + "integrity": "sha512-luguk5/aF68HiF4H23ACAfk8qS8AHxl4LLN5oxPc24H+2+JRPsNr1OS3Gaea0CrH7PKhArBMKBz5RX9sA5NtTg==", "dev": true, "dependencies": { - "@commitlint/types": "^18.1.0", - "chalk": "^4.1.0" + "@commitlint/types": "^19.0.3", + "chalk": "^5.3.0" }, "engines": { "node": ">=v18" } }, + "node_modules/@commitlint/format/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, "node_modules/@commitlint/is-ignored": { - "version": "18.1.0", - "resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-18.1.0.tgz", - "integrity": "sha512-fa1fY93J/Nx2GH6r6WOLdBOiL7x9Uc1N7wcpmaJ1C5Qs6P+rPSUTkofe2IOhSJIJoboHfAH6W0ru4xtK689t0Q==", + "version": "19.2.2", + "resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-19.2.2.tgz", + "integrity": "sha512-eNX54oXMVxncORywF4ZPFtJoBm3Tvp111tg1xf4zWXGfhBPKpfKG6R+G3G4v5CPlRROXpAOpQ3HMhA9n1Tck1g==", "dev": true, "dependencies": { - "@commitlint/types": "^18.1.0", - "semver": "7.5.4" + "@commitlint/types": "^19.0.3", + "semver": "^7.6.0" }, "engines": { "node": ">=v18" } }, + "node_modules/@commitlint/is-ignored/node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/@commitlint/lint": { - "version": "18.1.0", - "resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-18.1.0.tgz", - "integrity": "sha512-LGB3eI5UYu5LLayibNrRM4bSbowr1z9uyqvp0c7+0KaSJi+xHxy/QEhb6fy4bMAtbXEvygY0sUu9HxSWg41rVQ==", + "version": "19.2.2", + "resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-19.2.2.tgz", + "integrity": "sha512-xrzMmz4JqwGyKQKTpFzlN0dx0TAiT7Ran1fqEBgEmEj+PU98crOFtysJgY+QdeSagx6EDRigQIXJVnfrI0ratA==", "dev": true, "dependencies": { - "@commitlint/is-ignored": "^18.1.0", - "@commitlint/parse": "^18.1.0", - "@commitlint/rules": "^18.1.0", - "@commitlint/types": "^18.1.0" + "@commitlint/is-ignored": "^19.2.2", + "@commitlint/parse": "^19.0.3", + "@commitlint/rules": "^19.0.3", + "@commitlint/types": "^19.0.3" }, "engines": { "node": ">=v18" } }, "node_modules/@commitlint/load": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-18.2.0.tgz", - "integrity": "sha512-xjX3d3CRlOALwImhOsmLYZh14/+gW/KxsY7+bPKrzmGuFailf9K7ckhB071oYZVJdACnpY4hDYiosFyOC+MpAA==", + "version": "19.2.0", + "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-19.2.0.tgz", + "integrity": "sha512-XvxxLJTKqZojCxaBQ7u92qQLFMMZc4+p9qrIq/9kJDy8DOrEa7P1yx7Tjdc2u2JxIalqT4KOGraVgCE7eCYJyQ==", "dev": true, "dependencies": { - "@commitlint/config-validator": "^18.1.0", - "@commitlint/execute-rule": "^18.1.0", - "@commitlint/resolve-extends": "^18.1.0", - "@commitlint/types": "^18.1.0", - "@types/node": "^18.11.9", - "chalk": "^4.1.0", - "cosmiconfig": "^8.0.0", + "@commitlint/config-validator": "^19.0.3", + "@commitlint/execute-rule": "^19.0.0", + "@commitlint/resolve-extends": "^19.1.0", + "@commitlint/types": "^19.0.3", + "chalk": "^5.3.0", + "cosmiconfig": "^9.0.0", "cosmiconfig-typescript-loader": "^5.0.0", "lodash.isplainobject": "^4.0.6", "lodash.merge": "^4.6.2", - "lodash.uniq": "^4.5.0", - "resolve-from": "^5.0.0" + "lodash.uniq": "^4.5.0" }, "engines": { "node": ">=v18" } }, + "node_modules/@commitlint/load/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@commitlint/load/node_modules/cosmiconfig": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", + "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", + "dev": true, + "dependencies": { + "env-paths": "^2.2.1", + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" + }, + "peerDependencies": { + "typescript": ">=4.9.5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, "node_modules/@commitlint/message": { - "version": "18.1.0", - "resolved": "https://registry.npmjs.org/@commitlint/message/-/message-18.1.0.tgz", - "integrity": "sha512-8dT/jJg73wf3o2Mut/fqEDTpBYSIEVtX5PWyuY/0uviEYeheZAczFo/VMIkeGzhJJn1IrcvAwWsvJ1lVGY2I/w==", + "version": "19.0.0", + "resolved": "https://registry.npmjs.org/@commitlint/message/-/message-19.0.0.tgz", + "integrity": "sha512-c9czf6lU+9oF9gVVa2lmKaOARJvt4soRsVmbR7Njwp9FpbBgste5i7l/2l5o8MmbwGh4yE1snfnsy2qyA2r/Fw==", "dev": true, "engines": { "node": ">=v18" } }, "node_modules/@commitlint/parse": { - "version": "18.1.0", - "resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-18.1.0.tgz", - "integrity": "sha512-23yv8uBweXWYn8bXk4PjHIsmVA+RkbqPh2h7irupBo2LthVlzMRc4LM6UStasScJ4OlXYYaWOmuP7jcExUF50Q==", + "version": "19.0.3", + "resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-19.0.3.tgz", + "integrity": "sha512-Il+tNyOb8VDxN3P6XoBBwWJtKKGzHlitEuXA5BP6ir/3loWlsSqDr5aecl6hZcC/spjq4pHqNh0qPlfeWu38QA==", "dev": true, "dependencies": { - "@commitlint/types": "^18.1.0", - "conventional-changelog-angular": "^6.0.0", + "@commitlint/types": "^19.0.3", + "conventional-changelog-angular": "^7.0.0", "conventional-commits-parser": "^5.0.0" }, "engines": { @@ -2513,113 +2493,209 @@ } }, "node_modules/@commitlint/read": { - "version": "18.1.0", - "resolved": "https://registry.npmjs.org/@commitlint/read/-/read-18.1.0.tgz", - "integrity": "sha512-rzfzoKUwxmvYO81tI5o1371Nwt3vhcQR36oTNfupPdU1jgSL3nzBIS3B93LcZh3IYKbCIMyMPN5WZ10BXdeoUg==", + "version": "19.2.1", + "resolved": "https://registry.npmjs.org/@commitlint/read/-/read-19.2.1.tgz", + "integrity": "sha512-qETc4+PL0EUv7Q36lJbPG+NJiBOGg7SSC7B5BsPWOmei+Dyif80ErfWQ0qXoW9oCh7GTpTNRoaVhiI8RbhuaNw==", "dev": true, "dependencies": { - "@commitlint/top-level": "^18.1.0", - "@commitlint/types": "^18.1.0", - "fs-extra": "^11.0.0", - "git-raw-commits": "^2.0.11", - "minimist": "^1.2.6" + "@commitlint/top-level": "^19.0.0", + "@commitlint/types": "^19.0.3", + "execa": "^8.0.1", + "git-raw-commits": "^4.0.0", + "minimist": "^1.2.8" }, "engines": { "node": ">=v18" } }, "node_modules/@commitlint/resolve-extends": { - "version": "18.1.0", - "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-18.1.0.tgz", - "integrity": "sha512-3mZpzOEJkELt7BbaZp6+bofJyxViyObebagFn0A7IHaLARhPkWTivXdjvZHS12nAORftv88Yhbh8eCPKfSvB7g==", + "version": "19.1.0", + "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-19.1.0.tgz", + "integrity": "sha512-z2riI+8G3CET5CPgXJPlzftH+RiWYLMYv4C9tSLdLXdr6pBNimSKukYP9MS27ejmscqCTVA4almdLh0ODD2KYg==", "dev": true, "dependencies": { - "@commitlint/config-validator": "^18.1.0", - "@commitlint/types": "^18.1.0", - "import-fresh": "^3.0.0", + "@commitlint/config-validator": "^19.0.3", + "@commitlint/types": "^19.0.3", + "global-directory": "^4.0.1", + "import-meta-resolve": "^4.0.0", "lodash.mergewith": "^4.6.2", - "resolve-from": "^5.0.0", - "resolve-global": "^1.0.0" + "resolve-from": "^5.0.0" }, "engines": { "node": ">=v18" } }, "node_modules/@commitlint/rules": { - "version": "18.1.0", - "resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-18.1.0.tgz", - "integrity": "sha512-VJNQ674CRv4znI0DbsjZLVnn647J+BTxHGcrDIsYv7c99gW7TUGeIe5kL80G7l8+5+N0se8v9yn+Prr8xEy6Yw==", + "version": "19.0.3", + "resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-19.0.3.tgz", + "integrity": "sha512-TspKb9VB6svklxNCKKwxhELn7qhtY1rFF8ls58DcFd0F97XoG07xugPjjbVnLqmMkRjZDbDIwBKt9bddOfLaPw==", "dev": true, "dependencies": { - "@commitlint/ensure": "^18.1.0", - "@commitlint/message": "^18.1.0", - "@commitlint/to-lines": "^18.1.0", - "@commitlint/types": "^18.1.0", - "execa": "^5.0.0" + "@commitlint/ensure": "^19.0.3", + "@commitlint/message": "^19.0.0", + "@commitlint/to-lines": "^19.0.0", + "@commitlint/types": "^19.0.3", + "execa": "^8.0.1" }, "engines": { "node": ">=v18" } }, "node_modules/@commitlint/to-lines": { - "version": "18.1.0", - "resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-18.1.0.tgz", - "integrity": "sha512-aHIoSDjG0ckxPLYDpODUeSLbEKmF6Jrs1B5JIssbbE9eemBtXtjm9yzdiAx9ZXcwoHlhbTp2fbndDb3YjlvJag==", + "version": "19.0.0", + "resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-19.0.0.tgz", + "integrity": "sha512-vkxWo+VQU5wFhiP9Ub9Sre0FYe019JxFikrALVoD5UGa8/t3yOJEpEhxC5xKiENKKhUkTpEItMTRAjHw2SCpZw==", "dev": true, "engines": { "node": ">=v18" } }, "node_modules/@commitlint/top-level": { - "version": "18.1.0", - "resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-18.1.0.tgz", - "integrity": "sha512-1/USHlolIxJlsfLKecSXH+6PDojIvnzaJGPYwF7MtnTuuXCNQ4izkeqDsRuNMe9nU2VIKpK9OT8Q412kGNmgGw==", + "version": "19.0.0", + "resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-19.0.0.tgz", + "integrity": "sha512-KKjShd6u1aMGNkCkaX4aG1jOGdn7f8ZI8TR1VEuNqUOjWTOdcDSsmglinglJ18JTjuBX5I1PtjrhQCRcixRVFQ==", "dev": true, "dependencies": { - "find-up": "^5.0.0" + "find-up": "^7.0.0" }, "engines": { "node": ">=v18" } }, - "node_modules/@commitlint/types": { - "version": "18.1.0", - "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-18.1.0.tgz", - "integrity": "sha512-65vGxZmbs+2OVwEItxhp3Ul7X2m2LyLfifYI/NdPwRqblmuES2w2aIRhIjb7cwUIBHHSTT8WXj4ixVHQibmvLQ==", + "node_modules/@commitlint/top-level/node_modules/find-up": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-7.0.0.tgz", + "integrity": "sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==", "dev": true, "dependencies": { - "chalk": "^4.1.0" + "locate-path": "^7.2.0", + "path-exists": "^5.0.0", + "unicorn-magic": "^0.1.0" }, "engines": { - "node": ">=v18" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@csstools/css-parser-algorithms": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.3.2.tgz", - "integrity": "sha512-sLYGdAdEY2x7TSw9FtmdaTrh2wFtRJO5VMbBrA8tEqEod7GEggFmxTSK9XqExib3yMuYNcvcTdCZIP6ukdjAIA==", + "node_modules/@commitlint/top-level/node_modules/locate-path": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", + "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], + "dependencies": { + "p-locate": "^6.0.0" + }, "engines": { - "node": "^14 || ^16 || >=18" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, - "peerDependencies": { - "@csstools/css-tokenizer": "^2.2.1" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@csstools/css-tokenizer": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-2.2.1.tgz", - "integrity": "sha512-Zmsf2f/CaEPWEVgw29odOj+WEVoiJy9s9NOv5GgNY9mZ1CZ7394By6wONrONrTsnNDv6F9hR02nvFihrGVGHBg==", + "node_modules/@commitlint/top-level/node_modules/p-limit": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^1.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@commitlint/top-level/node_modules/p-locate": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", + "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", + "dev": true, + "dependencies": { + "p-limit": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@commitlint/top-level/node_modules/path-exists": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", + "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, + "node_modules/@commitlint/top-level/node_modules/yocto-queue": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", + "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", + "dev": true, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@commitlint/types": { + "version": "19.0.3", + "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-19.0.3.tgz", + "integrity": "sha512-tpyc+7i6bPG9mvaBbtKUeghfyZSDgWquIDfMgqYtTbmZ9Y9VzEm2je9EYcQ0aoz5o7NvGS+rcDec93yO08MHYA==", + "dev": true, + "dependencies": { + "@types/conventional-commits-parser": "^5.0.0", + "chalk": "^5.3.0" + }, + "engines": { + "node": ">=v18" + } + }, + "node_modules/@commitlint/types/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@csstools/css-parser-algorithms": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.3.2.tgz", + "integrity": "sha512-sLYGdAdEY2x7TSw9FtmdaTrh2wFtRJO5VMbBrA8tEqEod7GEggFmxTSK9XqExib3yMuYNcvcTdCZIP6ukdjAIA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^2.2.1" + } + }, + "node_modules/@csstools/css-tokenizer": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-2.2.1.tgz", + "integrity": "sha512-Zmsf2f/CaEPWEVgw29odOj+WEVoiJy9s9NOv5GgNY9mZ1CZ7394By6wONrONrTsnNDv6F9hR02nvFihrGVGHBg==", "dev": true, "funding": [ { @@ -2698,10 +2774,26 @@ "react": ">=16.8.0" } }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz", + "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, "node_modules/@esbuild/android-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", - "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", + "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", "cpu": [ "arm" ], @@ -2715,9 +2807,9 @@ } }, "node_modules/@esbuild/android-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", - "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", + "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", "cpu": [ "arm64" ], @@ -2731,9 +2823,9 @@ } }, "node_modules/@esbuild/android-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", - "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", + "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", "cpu": [ "x64" ], @@ -2747,9 +2839,9 @@ } }, "node_modules/@esbuild/darwin-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", - "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", + "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", "cpu": [ "arm64" ], @@ -2763,9 +2855,9 @@ } }, "node_modules/@esbuild/darwin-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", - "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", + "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", "cpu": [ "x64" ], @@ -2779,9 +2871,9 @@ } }, "node_modules/@esbuild/freebsd-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", - "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", + "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", "cpu": [ "arm64" ], @@ -2795,9 +2887,9 @@ } }, "node_modules/@esbuild/freebsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", - "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", + "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", "cpu": [ "x64" ], @@ -2811,9 +2903,9 @@ } }, "node_modules/@esbuild/linux-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", - "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", + "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", "cpu": [ "arm" ], @@ -2827,9 +2919,9 @@ } }, "node_modules/@esbuild/linux-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", - "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", + "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", "cpu": [ "arm64" ], @@ -2843,9 +2935,9 @@ } }, "node_modules/@esbuild/linux-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", - "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", + "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", "cpu": [ "ia32" ], @@ -2859,9 +2951,9 @@ } }, "node_modules/@esbuild/linux-loong64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", - "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", + "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", "cpu": [ "loong64" ], @@ -2875,9 +2967,9 @@ } }, "node_modules/@esbuild/linux-mips64el": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", - "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", + "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", "cpu": [ "mips64el" ], @@ -2891,9 +2983,9 @@ } }, "node_modules/@esbuild/linux-ppc64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", - "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", + "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", "cpu": [ "ppc64" ], @@ -2907,9 +2999,9 @@ } }, "node_modules/@esbuild/linux-riscv64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", - "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", + "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", "cpu": [ "riscv64" ], @@ -2923,9 +3015,9 @@ } }, "node_modules/@esbuild/linux-s390x": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", - "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", + "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", "cpu": [ "s390x" ], @@ -2939,9 +3031,9 @@ } }, "node_modules/@esbuild/linux-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", - "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", + "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", "cpu": [ "x64" ], @@ -2955,9 +3047,9 @@ } }, "node_modules/@esbuild/netbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", - "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", + "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", "cpu": [ "x64" ], @@ -2971,9 +3063,9 @@ } }, "node_modules/@esbuild/openbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", - "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", + "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", "cpu": [ "x64" ], @@ -2987,9 +3079,9 @@ } }, "node_modules/@esbuild/sunos-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", - "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", + "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", "cpu": [ "x64" ], @@ -3003,9 +3095,9 @@ } }, "node_modules/@esbuild/win32-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", - "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", + "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", "cpu": [ "arm64" ], @@ -3019,9 +3111,9 @@ } }, "node_modules/@esbuild/win32-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", - "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", + "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", "cpu": [ "ia32" ], @@ -3035,9 +3127,9 @@ } }, "node_modules/@esbuild/win32-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", - "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", + "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", "cpu": [ "x64" ], @@ -3087,9 +3179,9 @@ } }, "node_modules/@eslint/eslintrc": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz", - "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", "dev": true, "dependencies": { "ajv": "^6.12.4", @@ -3125,16 +3217,10 @@ "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/@eslint/eslintrc/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.23.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", - "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, "dependencies": { "type-fest": "^0.20.2" @@ -3146,18 +3232,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@eslint/eslintrc/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", @@ -3177,9 +3251,9 @@ } }, "node_modules/@eslint/js": { - "version": "8.52.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.52.0.tgz", - "integrity": "sha512-mjZVbpaeMZludF2fsWLD0Z9gCref1Tk4i9+wddjRvpUNqqcndPkBD09N/Mapey0b3jaXbLm2kICwFv2E64QinA==", + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", + "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -3192,50 +3266,77 @@ "dev": true }, "node_modules/@figma-export/core": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/@figma-export/core/-/core-4.7.0.tgz", - "integrity": "sha512-4E62Bf5yPhByxeTZDWjh8xBw5n9Iozo+SDqpUOZtRnu4JGNZG8q4OlfVhobfiFT6q9iuSfbKQhFelTRAOeS7Bw==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@figma-export/core/-/core-6.0.0.tgz", + "integrity": "sha512-wq/X7uT36WKfghOFKHI4hjRbSEny2PddpvmBQt1ak865H+6KY9cmZwg84xIqRSKjkmsyeBE/O1wyM096Qqpcqw==", "dev": true, "dependencies": { - "@figma-export/types": "^4.7.0", - "axios": "~0.27.2", + "@figma-export/types": "^6.0.0", + "axios": "^1.6.8", "figma-js": "~1.16.0", - "p-limit": "^3.1.0", - "p-retry": "^4.6.2" + "p-limit": "^5.0.0", + "p-retry": "^6.2.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">= 18.17" + } + }, + "node_modules/@figma-export/core/node_modules/p-limit": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-5.0.0.tgz", + "integrity": "sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^1.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@figma-export/core/node_modules/yocto-queue": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", + "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", + "dev": true, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@figma-export/types": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/@figma-export/types/-/types-4.7.0.tgz", - "integrity": "sha512-57tK5GbrsU1nYQjTQo8nkMEwa84JFVjaFx0bA5fvPp8aZ1ueuKhz+4PrmLtnWYKQ61I2tGpb1O4HMfSLXTOOuQ==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@figma-export/types/-/types-6.0.0.tgz", + "integrity": "sha512-8Cgj564tUw2CHLk/thIGDBQma2AP4McNguly9LDR7T1IrCgoMqsqPTWvIP4ht9+O2G5huyAZfAj3Bec1b9KuoQ==", "dev": true, "dependencies": { "figma-js": "~1.16.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">= 18.17" } }, "node_modules/@gravity-ui/eslint-config": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@gravity-ui/eslint-config/-/eslint-config-3.1.1.tgz", - "integrity": "sha512-iOfvKASXHp+3XVtJxaBOJHWWXAM4yqnYNxK5EVzQXfnPC4ELNaNq0cww/8NaV8o3gpBGwi4r4C+YXFu2cc2AhA==", - "dev": true, - "dependencies": { - "@babel/core": "^7.22.0", - "@babel/eslint-parser": "^7.22.0", - "@babel/preset-react": "^7.22.0", - "@typescript-eslint/eslint-plugin": "^6.4.1", - "@typescript-eslint/parser": "^6.4.1", - "eslint-config-prettier": "^9.0.0", - "eslint-import-resolver-typescript": "^3.6.0", - "eslint-plugin-import": "^2.28.1", - "eslint-plugin-jsx-a11y": "^6.7.1", - "eslint-plugin-prettier": "^5.0.0", - "eslint-plugin-react": "^7.33.2", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@gravity-ui/eslint-config/-/eslint-config-3.2.0.tgz", + "integrity": "sha512-WlHo3tK2xqAJ2mmcYIHEpe6MBg7n2geygkO6KuP6rxuOvyPM+qUtq7BWI4n0T2XiYtCm5RJWpc4wpyqjtt8dNw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.24.4", + "@babel/eslint-parser": "^7.24.1", + "@babel/preset-react": "^7.24.1", + "@typescript-eslint/eslint-plugin": "^6.21.0", + "@typescript-eslint/parser": "^6.21.0", + "eslint-config-prettier": "^9.1.0", + "eslint-import-resolver-typescript": "^3.6.1", + "eslint-plugin-import": "^2.29.1", + "eslint-plugin-jsx-a11y": "^6.8.0", + "eslint-plugin-prettier": "^5.1.3", + "eslint-plugin-react": "^7.34.1", "eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-security": "^1.7.1" }, @@ -3250,16 +3351,24 @@ } }, "node_modules/@gravity-ui/i18n": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@gravity-ui/i18n/-/i18n-1.1.0.tgz", - "integrity": "sha512-Ck+LNE1S2GGaMKMijIYWogiM/tYk0wHPlqLrhZmzp6P5keIu8YnPDeIlwAzq4eYVSrtTudLmshFB9QmYAeLryQ==", + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/@gravity-ui/i18n/-/i18n-1.5.1.tgz", + "integrity": "sha512-ZvaQtRUf4Yl9zi0+SMzjlDeHp9+p5IXkNu2k6RtW04c+RYKA1jX+umeKNwzft4iR3+KxDlpLX2trTFEW6W7HKQ==", "dev": true }, "node_modules/@gravity-ui/icons": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/@gravity-ui/icons/-/icons-2.7.0.tgz", - "integrity": "sha512-c5mAB1MoO08Fh5ukgWM5QI5CdqGqOEGq5OkEzIF1HpaR9Tu5+QECNy7CGsY03K1ks+ssKJzCBsMblF77O2x/Tg==", - "dev": true + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@gravity-ui/icons/-/icons-2.10.0.tgz", + "integrity": "sha512-xS0G4+TM7cD2cCKS4wVc01c4lLe/OreKjm4sHwrOtJWH4EawaRbpkuwtgUDcUvY2EryIcI6lgV+8o714m6lcyQ==", + "dev": true, + "peerDependencies": { + "react": "*" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + } + } }, "node_modules/@gravity-ui/prettier-config": { "version": "1.1.0", @@ -3299,57 +3408,42 @@ "dev": true }, "node_modules/@gravity-ui/uikit": { - "version": "5.18.1", - "resolved": "https://registry.npmjs.org/@gravity-ui/uikit/-/uikit-5.18.1.tgz", - "integrity": "sha512-TF/dg2HBbqaZ8XQXq8zjJJ1qanvEdgxqGlKwiT8VSqxflEpDQID6a1uzaMSQKwyccVTkbONAeCO16J1TRTIobg==", + "version": "6.17.0", + "resolved": "https://registry.npmjs.org/@gravity-ui/uikit/-/uikit-6.17.0.tgz", + "integrity": "sha512-aelbGQh0DxgZ/b3hbjZNBPc417mmoL4P5vq6yYOvUol/4GKimofgs7kOB2IjIVOAaEYivGgoVjmLQxREJfM15A==", "dev": true, "dependencies": { "@bem-react/classname": "^1.6.0", - "@gravity-ui/i18n": "^1.1.0", - "@gravity-ui/icons": "^2.5.0", + "@gravity-ui/i18n": "^1.3.0", + "@gravity-ui/icons": "^2.8.1", "@popperjs/core": "^2.11.8", "blueimp-md5": "^2.19.0", - "focus-trap": "^7.5.2", + "focus-trap": "^7.5.4", "lodash": "^4.17.21", + "rc-slider": "^10.5.0", + "react-beautiful-dnd": "^13.1.1", "react-copy-to-clipboard": "^5.1.0", "react-popper": "^2.3.0", - "react-sortable-hoc": "2.0.0", "react-transition-group": "^4.4.5", - "react-virtualized-auto-sizer": "^1.0.20", - "react-window": "^1.8.9", + "react-virtualized-auto-sizer": "^1.0.21", + "react-window": "^1.8.10", "tabbable": "^6.2.0", - "tslib": "^2.6.1", - "utility-types": "^3.10.0" + "tslib": "^2.6.2" }, "peerDependencies": { "react": "^16.0.0 || ^17.0.0 || ^18.0.0", "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@gravity-ui/uikit/node_modules/react-sortable-hoc": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/react-sortable-hoc/-/react-sortable-hoc-2.0.0.tgz", - "integrity": "sha512-JZUw7hBsAHXK7PTyErJyI7SopSBFRcFHDjWW5SWjcugY0i6iH7f+eJkY8cJmGMlZ1C9xz1J3Vjz0plFpavVeRg==", - "dev": true, - "dependencies": { - "@babel/runtime": "^7.2.0", - "invariant": "^2.2.4", - "prop-types": "^15.5.7" - }, - "peerDependencies": { - "prop-types": "^15.5.7", - "react": "^16.3.0 || ^17.0.0", - "react-dom": "^16.3.0 || ^17.0.0" - } - }, "node_modules/@humanwhocodes/config-array": { - "version": "0.11.13", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz", - "integrity": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==", + "version": "0.11.14", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "deprecated": "Use @eslint/config-array instead", "dev": true, "dependencies": { - "@humanwhocodes/object-schema": "^2.0.1", - "debug": "^4.1.1", + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", "minimatch": "^3.0.5" }, "engines": { @@ -3370,9 +3464,10 @@ } }, "node_modules/@humanwhocodes/object-schema": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz", - "integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "deprecated": "Use @eslint/object-schema instead", "dev": true }, "node_modules/@isaacs/cliui": { @@ -3419,24 +3514,15 @@ "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/@istanbuljs/schema": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", - "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", "dev": true, "dependencies": { - "@jridgewell/set-array": "^1.0.1", + "@jridgewell/set-array": "^1.2.1", "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/trace-mapping": "^0.3.24" }, "engines": { "node": ">=6.0.0" @@ -3452,9 +3538,9 @@ } }, "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", "dev": true, "engines": { "node": ">=6.0.0" @@ -3477,9 +3563,9 @@ "dev": true }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.20", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", - "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", "dev": true, "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", @@ -3551,19 +3637,11 @@ "node": ">=14" } }, - "node_modules/@pkgr/utils": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.2.tgz", - "integrity": "sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==", + "node_modules/@pkgr/core": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz", + "integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==", "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "fast-glob": "^3.3.0", - "is-glob": "^4.0.3", - "open": "^9.1.0", - "picocolors": "^1.0.0", - "tslib": "^2.6.0" - }, "engines": { "node": "^12.20.0 || ^14.18.0 || >=16.0.0" }, @@ -3571,65 +3649,6 @@ "url": "https://opencollective.com/unts" } }, - "node_modules/@pmmmwh/react-refresh-webpack-plugin": { - "version": "0.5.11", - "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.11.tgz", - "integrity": "sha512-7j/6vdTym0+qZ6u4XbSAxrWBGYSdCfTzySkj7WAFgDLmSyWlOrWvpyzxlFh5jtw9dn0oL/jtW+06XfFiisN3JQ==", - "dev": true, - "dependencies": { - "ansi-html-community": "^0.0.8", - "common-path-prefix": "^3.0.0", - "core-js-pure": "^3.23.3", - "error-stack-parser": "^2.0.6", - "find-up": "^5.0.0", - "html-entities": "^2.1.0", - "loader-utils": "^2.0.4", - "schema-utils": "^3.0.0", - "source-map": "^0.7.3" - }, - "engines": { - "node": ">= 10.13" - }, - "peerDependencies": { - "@types/webpack": "4.x || 5.x", - "react-refresh": ">=0.10.0 <1.0.0", - "sockjs-client": "^1.4.0", - "type-fest": ">=0.17.0 <5.0.0", - "webpack": ">=4.43.0 <6.0.0", - "webpack-dev-server": "3.x || 4.x", - "webpack-hot-middleware": "2.x", - "webpack-plugin-serve": "0.x || 1.x" - }, - "peerDependenciesMeta": { - "@types/webpack": { - "optional": true - }, - "sockjs-client": { - "optional": true - }, - "type-fest": { - "optional": true - }, - "webpack-dev-server": { - "optional": true - }, - "webpack-hot-middleware": { - "optional": true - }, - "webpack-plugin-serve": { - "optional": true - } - } - }, - "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, "node_modules/@popperjs/core": { "version": "2.11.8", "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", @@ -3640,25 +3659,48 @@ "url": "https://opencollective.com/popperjs" } }, - "node_modules/@storybook/builder-manager": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@storybook/builder-manager/-/builder-manager-7.5.2.tgz", - "integrity": "sha512-s4gOudrft/E4lQ19YNrzL2VJwMEpdY6z319fTlc16J1F6XZSytw6CIZPs3x9yX5CKf4/leWnN5etODaOx7NajQ==", + "node_modules/@sindresorhus/merge-streams": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", + "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/addon-webpack5-compiler-swc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@storybook/addon-webpack5-compiler-swc/-/addon-webpack5-compiler-swc-1.0.3.tgz", + "integrity": "sha512-ahemZdpFN7Ikz2WTy0sLJ38t6OWLLKweeTNOfUh2ARd3x0CqJxAqWLBAFXJke+2KDFUQg9MTE+1rwHEFCPYUvQ==", "dev": true, "dependencies": { - "@fal-works/esbuild-plugin-global-externals": "^2.1.2", - "@storybook/core-common": "7.5.2", - "@storybook/manager": "7.5.2", - "@storybook/node-logger": "7.5.2", - "@types/ejs": "^3.1.1", - "@types/find-cache-dir": "^3.2.1", - "@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.10", + "@swc/core": "1.5.7", + "swc-loader": "^0.2.3" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@storybook/builder-manager": { + "version": "8.1.8", + "resolved": "https://registry.npmjs.org/@storybook/builder-manager/-/builder-manager-8.1.8.tgz", + "integrity": "sha512-M4qpETmQNUTg6KEt4nVONjF2dXlVV1V+Mxf9saiinoj+PCyHdz+BmYYmiGtopUPxJ2YGvTL1nGykkyH57HutrQ==", + "dev": true, + "dependencies": { + "@fal-works/esbuild-plugin-global-externals": "^2.1.2", + "@storybook/core-common": "8.1.8", + "@storybook/manager": "8.1.8", + "@storybook/node-logger": "8.1.8", + "@types/ejs": "^3.1.1", + "@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.10", "browser-assert": "^1.2.1", - "ejs": "^3.1.8", - "esbuild": "^0.18.0", + "ejs": "^3.1.10", + "esbuild": "^0.18.0 || ^0.19.0 || ^0.20.0", "esbuild-plugin-alias": "^0.2.1", "express": "^4.17.3", - "find-cache-dir": "^3.0.0", "fs-extra": "^11.1.0", "process": "^0.11.10", "util": "^0.12.4" @@ -3669,45 +3711,43 @@ } }, "node_modules/@storybook/builder-webpack5": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@storybook/builder-webpack5/-/builder-webpack5-7.5.2.tgz", - "integrity": "sha512-eGMbwyw65z1Fmsq6U/rXPjywBCDwtI5ZvV9zendxxeAVNLpzTFioxlRNYsYZqcLEfE6GoNYjIOkn4S9UV0N+VA==", - "dev": true, - "dependencies": { - "@babel/core": "^7.22.0", - "@storybook/channels": "7.5.2", - "@storybook/client-logger": "7.5.2", - "@storybook/core-common": "7.5.2", - "@storybook/core-events": "7.5.2", - "@storybook/core-webpack": "7.5.2", - "@storybook/node-logger": "7.5.2", - "@storybook/preview": "7.5.2", - "@storybook/preview-api": "7.5.2", - "@swc/core": "^1.3.82", + "version": "8.1.8", + "resolved": "https://registry.npmjs.org/@storybook/builder-webpack5/-/builder-webpack5-8.1.8.tgz", + "integrity": "sha512-L02ZG8583WqAhcW8+gKVKO99kb8ThhwSKMmtCk9XR++CCpO7kgR0N/lGJr79f2OYFuM6WQhfO/FRtER/7o45lw==", + "dev": true, + "dependencies": { + "@storybook/channels": "8.1.8", + "@storybook/client-logger": "8.1.8", + "@storybook/core-common": "8.1.8", + "@storybook/core-events": "8.1.8", + "@storybook/core-webpack": "8.1.8", + "@storybook/node-logger": "8.1.8", + "@storybook/preview": "8.1.8", + "@storybook/preview-api": "8.1.8", "@types/node": "^18.0.0", "@types/semver": "^7.3.4", - "babel-loader": "^9.0.0", - "babel-plugin-named-exports-order": "^0.0.2", "browser-assert": "^1.2.1", "case-sensitive-paths-webpack-plugin": "^2.4.0", + "cjs-module-lexer": "^1.2.3", "constants-browserify": "^1.0.0", "css-loader": "^6.7.1", + "es-module-lexer": "^1.5.0", "express": "^4.17.3", "fork-ts-checker-webpack-plugin": "^8.0.0", "fs-extra": "^11.1.0", "html-webpack-plugin": "^5.5.0", + "magic-string": "^0.30.5", "path-browserify": "^1.0.1", "process": "^0.11.10", "semver": "^7.3.7", "style-loader": "^3.3.1", - "swc-loader": "^0.2.3", "terser-webpack-plugin": "^5.3.1", "ts-dedent": "^2.0.0", "url": "^0.11.0", "util": "^0.12.4", "util-deprecate": "^1.0.2", "webpack": "5", - "webpack-dev-middleware": "^6.1.1", + "webpack-dev-middleware": "^6.1.2", "webpack-hot-middleware": "^2.25.1", "webpack-virtual-modules": "^0.5.0" }, @@ -3722,15 +3762,14 @@ } }, "node_modules/@storybook/channels": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.5.2.tgz", - "integrity": "sha512-3SgqWq9NS0XX1QxK3riuaOLrReHWwVhI63u6q1ryDD3SttpmAezZETibOAtzDuk2FKgsyHTmAlmcGQf4ZxhOJA==", + "version": "8.1.8", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-8.1.8.tgz", + "integrity": "sha512-mEjg72jmB7hBSDUIpSzQL+MC61kUn4D9CCH1EK5K6Cfr1dmmHaCyDPCtBXSvuVSKn1VbF3JfT429v+iYeBrHlA==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.5.2", - "@storybook/core-events": "7.5.2", + "@storybook/client-logger": "8.1.8", + "@storybook/core-events": "8.1.8", "@storybook/global": "^5.0.0", - "qs": "^6.10.0", "telejson": "^7.2.0", "tiny-invariant": "^1.3.1" }, @@ -3740,23 +3779,22 @@ } }, "node_modules/@storybook/cli": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@storybook/cli/-/cli-7.5.2.tgz", - "integrity": "sha512-8JPvA/K66zBmRFpRRwsD0JLqZUODRrGmNuAWx+Bj1K8wqbg68MYnOflbkSIxIVxrfhd39OrffV0h8CwKNL9gAg==", + "version": "8.1.8", + "resolved": "https://registry.npmjs.org/@storybook/cli/-/cli-8.1.8.tgz", + "integrity": "sha512-GrU8zcLK0l/Jo9xQ42iEBqF0YL83gZF/GDTV+9MVMU1JtBtFldomvyGzT9J3TwvPgzC+rCmlk16rY1M2vc5klg==", "dev": true, "dependencies": { - "@babel/core": "^7.22.9", - "@babel/preset-env": "^7.22.9", - "@babel/types": "^7.22.5", + "@babel/core": "^7.24.4", + "@babel/types": "^7.24.0", "@ndelangen/get-tarball": "^3.0.7", - "@storybook/codemod": "7.5.2", - "@storybook/core-common": "7.5.2", - "@storybook/core-events": "7.5.2", - "@storybook/core-server": "7.5.2", - "@storybook/csf-tools": "7.5.2", - "@storybook/node-logger": "7.5.2", - "@storybook/telemetry": "7.5.2", - "@storybook/types": "7.5.2", + "@storybook/codemod": "8.1.8", + "@storybook/core-common": "8.1.8", + "@storybook/core-events": "8.1.8", + "@storybook/core-server": "8.1.8", + "@storybook/csf-tools": "8.1.8", + "@storybook/node-logger": "8.1.8", + "@storybook/telemetry": "8.1.8", + "@storybook/types": "8.1.8", "@types/semver": "^7.3.4", "@yarnpkg/fslib": "2.10.3", "@yarnpkg/libzip": "2.3.0", @@ -3766,26 +3804,22 @@ "detect-indent": "^6.1.0", "envinfo": "^7.7.3", "execa": "^5.0.0", - "express": "^4.17.3", "find-up": "^5.0.0", "fs-extra": "^11.1.0", "get-npm-tarball-url": "^2.0.3", - "get-port": "^5.1.1", "giget": "^1.0.0", - "globby": "^11.0.2", - "jscodeshift": "^0.14.0", + "globby": "^14.0.1", + "jscodeshift": "^0.15.1", "leven": "^3.1.0", "ora": "^5.4.1", - "prettier": "^2.8.0", + "prettier": "^3.1.1", "prompts": "^2.4.0", - "puppeteer-core": "^2.1.1", "read-pkg-up": "^7.0.1", "semver": "^7.3.7", - "simple-update-notifier": "^2.0.0", "strip-json-comments": "^3.0.1", - "tempy": "^1.0.1", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" + "tempy": "^3.1.0", + "tiny-invariant": "^1.3.1", + "ts-dedent": "^2.0.0" }, "bin": { "getstorybook": "bin/index.js", @@ -3805,25 +3839,131 @@ "node": ">= 6" } }, - "node_modules/@storybook/cli/node_modules/prettier": { - "version": "2.8.8", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", - "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "node_modules/@storybook/cli/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, - "bin": { - "prettier": "bin-prettier.js" + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" }, "engines": { - "node": ">=10.13.0" + "node": ">=10" }, "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/@storybook/cli/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/cli/node_modules/globby": { + "version": "14.0.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.1.tgz", + "integrity": "sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==", + "dev": true, + "dependencies": { + "@sindresorhus/merge-streams": "^2.1.0", + "fast-glob": "^3.3.2", + "ignore": "^5.2.4", + "path-type": "^5.0.0", + "slash": "^5.1.0", + "unicorn-magic": "^0.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/cli/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/@storybook/cli/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/cli/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/cli/node_modules/path-type": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", + "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/cli/node_modules/slash": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", + "dev": true, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/cli/node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" } }, "node_modules/@storybook/client-logger": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.5.2.tgz", - "integrity": "sha512-7YgLItlmiYDzWYexTaRNuHhtFarh9krsI+8l7Yjn9ryoHSTJUcTWx+yPJm1II+PQR8v/x5UgsxzultjgEurfRQ==", + "version": "8.1.8", + "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-8.1.8.tgz", + "integrity": "sha512-VABFR6jHtORRuRcm+q49T0F3z6LY46+qjkvETafMIy3jcXnLTKubaLVMZBxUyYbh6H4RYv8YjnkYcrUszgZCEQ==", "dev": true, "dependencies": { "@storybook/global": "^5.0.0" @@ -3834,76 +3974,93 @@ } }, "node_modules/@storybook/codemod": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@storybook/codemod/-/codemod-7.5.2.tgz", - "integrity": "sha512-PxZg0w4OlmFB4dBzB+sCgwmHNke0n1N8vNooxtcuusrLKlbUfmssYRnQn6yRSJw0WfkUYgI10CWxGaamaOFekA==", - "dev": true, - "dependencies": { - "@babel/core": "^7.22.9", - "@babel/preset-env": "^7.22.9", - "@babel/types": "^7.22.5", - "@storybook/csf": "^0.1.0", - "@storybook/csf-tools": "7.5.2", - "@storybook/node-logger": "7.5.2", - "@storybook/types": "7.5.2", + "version": "8.1.8", + "resolved": "https://registry.npmjs.org/@storybook/codemod/-/codemod-8.1.8.tgz", + "integrity": "sha512-hW9kQTgYN7GjLzjG624Bym1SfWfxQrHE2snIgbwRD9mO+jc/J6qjrR7Z42hV60LypqZ/FcZvBRq/1F247tNq9g==", + "dev": true, + "dependencies": { + "@babel/core": "^7.24.4", + "@babel/preset-env": "^7.24.4", + "@babel/types": "^7.24.0", + "@storybook/csf": "^0.1.7", + "@storybook/csf-tools": "8.1.8", + "@storybook/node-logger": "8.1.8", + "@storybook/types": "8.1.8", "@types/cross-spawn": "^6.0.2", "cross-spawn": "^7.0.3", - "globby": "^11.0.2", - "jscodeshift": "^0.14.0", + "globby": "^14.0.1", + "jscodeshift": "^0.15.1", "lodash": "^4.17.21", - "prettier": "^2.8.0", - "recast": "^0.23.1" + "prettier": "^3.1.1", + "recast": "^0.23.5", + "tiny-invariant": "^1.3.1" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/codemod/node_modules/prettier": { - "version": "2.8.8", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", - "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "node_modules/@storybook/codemod/node_modules/globby": { + "version": "14.0.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.1.tgz", + "integrity": "sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==", "dev": true, - "bin": { - "prettier": "bin-prettier.js" + "dependencies": { + "@sindresorhus/merge-streams": "^2.1.0", + "fast-glob": "^3.3.2", + "ignore": "^5.2.4", + "path-type": "^5.0.0", + "slash": "^5.1.0", + "unicorn-magic": "^0.1.0" }, "engines": { - "node": ">=10.13.0" + "node": ">=18" }, "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/core-client": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@storybook/core-client/-/core-client-7.5.2.tgz", - "integrity": "sha512-mMDSBxc7esMCu0FOkama9XYHzIHYGhBj8roX+XaTaLDYXaw/UajcCuzcO7fFBHNn3Vdqh2ufIxlI7359v3IqPw==", + "node_modules/@storybook/codemod/node_modules/path-type": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", + "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", "dev": true, - "dependencies": { - "@storybook/client-logger": "7.5.2", - "@storybook/preview-api": "7.5.2" + "engines": { + "node": ">=12" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/codemod/node_modules/slash": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", + "dev": true, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@storybook/core-common": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-7.5.2.tgz", - "integrity": "sha512-js7fIH4wHS08dBuIVsr3JnwMtKn5O1Izc/Zor4t6PntLWkGGX4X/GxbOkasGX5SkCT1qUtB9RpdPd1sUkLhIgw==", + "version": "8.1.8", + "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-8.1.8.tgz", + "integrity": "sha512-RcJUTGjvVCuGtz7GifY8sMHLUvmsg8moDOgwwkOJ+9QdgInyuZeqLzNI7BjOv2CYCK1sy7x0eU7B4CWD8LwnwA==", "dev": true, "dependencies": { - "@storybook/core-events": "7.5.2", - "@storybook/node-logger": "7.5.2", - "@storybook/types": "7.5.2", - "@types/find-cache-dir": "^3.2.1", - "@types/node": "^18.0.0", - "@types/node-fetch": "^2.6.4", - "@types/pretty-hrtime": "^1.0.0", + "@storybook/core-events": "8.1.8", + "@storybook/csf-tools": "8.1.8", + "@storybook/node-logger": "8.1.8", + "@storybook/types": "8.1.8", + "@yarnpkg/fslib": "2.10.3", + "@yarnpkg/libzip": "2.3.0", "chalk": "^4.1.0", - "esbuild": "^0.18.0", + "cross-spawn": "^7.0.3", + "esbuild": "^0.18.0 || ^0.19.0 || ^0.20.0", "esbuild-register": "^3.5.0", + "execa": "^5.0.0", "file-system-cache": "2.3.0", "find-cache-dir": "^3.0.0", "find-up": "^5.0.0", @@ -3914,21 +4071,112 @@ "node-fetch": "^2.0.0", "picomatch": "^2.3.0", "pkg-dir": "^5.0.0", + "prettier-fallback": "npm:prettier@^3", "pretty-hrtime": "^1.0.3", "resolve-from": "^5.0.0", - "ts-dedent": "^2.0.0" + "semver": "^7.3.7", + "tempy": "^3.1.0", + "tiny-invariant": "^1.3.1", + "ts-dedent": "^2.0.0", + "util": "^0.12.4" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "prettier": "^2 || ^3" + }, + "peerDependenciesMeta": { + "prettier": { + "optional": true + } + } + }, + "node_modules/@storybook/core-common/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/@storybook/core-common/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/core-common/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/@storybook/core-common/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/core-common/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/core-common/node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" } }, "node_modules/@storybook/core-events": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.5.2.tgz", - "integrity": "sha512-DV8bFEFVKDEvaH87KYPXDE0YEV+Y9yjFv2xxmC9pF8l+MWCtVW72RBLhB+gU5NM1bkHrRDNb0lOJfVGKlhxOog==", + "version": "8.1.8", + "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-8.1.8.tgz", + "integrity": "sha512-ZJWPeqBLFKRlRN1MitYNEXpNL+7vACXy14d6ja3zYW39htSSPlQYI1RXMURk+qTvGfxy1ZlAeyN62WeYXhTqLA==", "dev": true, "dependencies": { + "@storybook/csf": "^0.1.7", "ts-dedent": "^2.0.0" }, "funding": { @@ -3937,27 +4185,31 @@ } }, "node_modules/@storybook/core-server": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@storybook/core-server/-/core-server-7.5.2.tgz", - "integrity": "sha512-4oXpy1L/NyHiz/OXNUFnSeMLA/+lTgQAlVx86pRbEBDj6snt1/NSx2+yZyFtZ/XTnJ22BPpM8IIrgm95ZlQKmA==", + "version": "8.1.8", + "resolved": "https://registry.npmjs.org/@storybook/core-server/-/core-server-8.1.8.tgz", + "integrity": "sha512-v2V7FC/y/lrKPxcseIwPavjdCCDHphpj+A23Jmp822tqYn+I4nYRvE74QKyn5dfLrdn52nz8KrUFwjhuacj10Q==", "dev": true, "dependencies": { "@aw-web-design/x-default-browser": "1.4.126", + "@babel/core": "^7.24.4", + "@babel/parser": "^7.24.4", "@discoveryjs/json-ext": "^0.5.3", - "@storybook/builder-manager": "7.5.2", - "@storybook/channels": "7.5.2", - "@storybook/core-common": "7.5.2", - "@storybook/core-events": "7.5.2", - "@storybook/csf": "^0.1.0", - "@storybook/csf-tools": "7.5.2", - "@storybook/docs-mdx": "^0.1.0", + "@storybook/builder-manager": "8.1.8", + "@storybook/channels": "8.1.8", + "@storybook/core-common": "8.1.8", + "@storybook/core-events": "8.1.8", + "@storybook/csf": "^0.1.7", + "@storybook/csf-tools": "8.1.8", + "@storybook/docs-mdx": "3.1.0-next.0", "@storybook/global": "^5.0.0", - "@storybook/manager": "7.5.2", - "@storybook/node-logger": "7.5.2", - "@storybook/preview-api": "7.5.2", - "@storybook/telemetry": "7.5.2", - "@storybook/types": "7.5.2", + "@storybook/manager": "8.1.8", + "@storybook/manager-api": "8.1.8", + "@storybook/node-logger": "8.1.8", + "@storybook/preview-api": "8.1.8", + "@storybook/telemetry": "8.1.8", + "@storybook/types": "8.1.8", "@types/detect-port": "^1.3.0", + "@types/diff": "^5.0.9", "@types/node": "^18.0.0", "@types/pretty-hrtime": "^1.0.0", "@types/semver": "^7.3.4", @@ -3966,10 +4218,10 @@ "cli-table3": "^0.6.1", "compression": "^1.7.4", "detect-port": "^1.3.0", + "diff": "^5.2.0", "express": "^4.17.3", "fs-extra": "^11.1.0", - "globby": "^11.0.2", - "ip": "^2.0.0", + "globby": "^14.0.1", "lodash": "^4.17.21", "open": "^8.4.0", "pretty-hrtime": "^1.0.3", @@ -3989,56 +4241,59 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/core-server/node_modules/define-lazy-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "node_modules/@storybook/core-server/node_modules/globby": { + "version": "14.0.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.1.tgz", + "integrity": "sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==", "dev": true, + "dependencies": { + "@sindresorhus/merge-streams": "^2.1.0", + "fast-glob": "^3.3.2", + "ignore": "^5.2.4", + "path-type": "^5.0.0", + "slash": "^5.1.0", + "unicorn-magic": "^0.1.0" + }, "engines": { - "node": ">=8" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/core-server/node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "node_modules/@storybook/core-server/node_modules/path-type": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", + "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", "dev": true, - "bin": { - "is-docker": "cli.js" - }, "engines": { - "node": ">=8" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/core-server/node_modules/open": { - "version": "8.4.2", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", - "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "node_modules/@storybook/core-server/node_modules/slash": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", "dev": true, - "dependencies": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" - }, "engines": { - "node": ">=12" + "node": ">=14.16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@storybook/core-webpack": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@storybook/core-webpack/-/core-webpack-7.5.2.tgz", - "integrity": "sha512-2Z6EkiiDIbwHY6w9ye8hbm7GicJbUYsFOFFx/96uKKxHB4DPcKK3A3bAT5eNBVQlN+7DMolFuJAZA7pz87KUhA==", + "version": "8.1.8", + "resolved": "https://registry.npmjs.org/@storybook/core-webpack/-/core-webpack-8.1.8.tgz", + "integrity": "sha512-rT0Nn72Z6tDLM4EX9SWUmRtIWGxve/u1MBwckBuztzeQaGUl4ORMDtbo4Ahvfc1oEapHKmow+zvzeH0NWGCw5w==", "dev": true, "dependencies": { - "@storybook/core-common": "7.5.2", - "@storybook/node-logger": "7.5.2", - "@storybook/types": "7.5.2", + "@storybook/core-common": "8.1.8", + "@storybook/node-logger": "8.1.8", + "@storybook/types": "8.1.8", "@types/node": "^18.0.0", "ts-dedent": "^2.0.0" }, @@ -4048,28 +4303,28 @@ } }, "node_modules/@storybook/csf": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.1.1.tgz", - "integrity": "sha512-4hE3AlNVxR60Wc5KSC68ASYzUobjPqtSKyhV6G+ge0FIXU55N5nTY7dXGRZHQGDBPq+XqchMkIdlkHPRs8nTHg==", + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.1.8.tgz", + "integrity": "sha512-Ntab9o7LjBCbFIao5l42itFiaSh/Qu+l16l/r/9qmV9LnYZkO+JQ7tzhdlwpgJfhs+B5xeejpdAtftDRyXNajw==", "dev": true, "dependencies": { "type-fest": "^2.19.0" } }, "node_modules/@storybook/csf-tools": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-7.5.2.tgz", - "integrity": "sha512-yXaEDREc2wvkjYkQqDMatJw23f0fEFhMIf/zBNF7YljeYw0j8jAg/7XI5WJJSN2KTxD/feD/yD+6eaLUXvrneQ==", + "version": "8.1.8", + "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-8.1.8.tgz", + "integrity": "sha512-5kI0q2HPGNqaedjNx4Eh5uQf3f6qSyUa14fT4GCAAGgbG0YgUeIff4N95XZ1VVeQ14epx2UK4p3+FsD58Lwnig==", "dev": true, "dependencies": { - "@babel/generator": "^7.22.9", - "@babel/parser": "^7.22.7", - "@babel/traverse": "^7.22.8", - "@babel/types": "^7.22.5", - "@storybook/csf": "^0.1.0", - "@storybook/types": "7.5.2", + "@babel/generator": "^7.24.4", + "@babel/parser": "^7.24.4", + "@babel/traverse": "^7.24.1", + "@babel/types": "^7.24.0", + "@storybook/csf": "^0.1.7", + "@storybook/types": "8.1.8", "fs-extra": "^11.1.0", - "recast": "^0.23.1", + "recast": "^0.23.5", "ts-dedent": "^2.0.0" }, "funding": { @@ -4078,21 +4333,23 @@ } }, "node_modules/@storybook/docs-mdx": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/@storybook/docs-mdx/-/docs-mdx-0.1.0.tgz", - "integrity": "sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==", + "version": "3.1.0-next.0", + "resolved": "https://registry.npmjs.org/@storybook/docs-mdx/-/docs-mdx-3.1.0-next.0.tgz", + "integrity": "sha512-t4syFIeSyufieNovZbLruPt2DmRKpbwL4fERCZ1MifWDRIORCKLc4NCEHy+IqvIqd71/SJV2k4B51nF7vlJfmQ==", "dev": true }, "node_modules/@storybook/docs-tools": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@storybook/docs-tools/-/docs-tools-7.5.2.tgz", - "integrity": "sha512-mBiZFhzMA2ub7wX0ho3UqKqKXO+xUi/rqb4KV4PihLKlhThEdzKyYrIZO4W90NOmlp1yUJJcjG8D8SUPuHQoTw==", + "version": "8.1.8", + "resolved": "https://registry.npmjs.org/@storybook/docs-tools/-/docs-tools-8.1.8.tgz", + "integrity": "sha512-YdwuLKIiqNFfpfBucWXt+MDvqBYmBWdm3pADTYmC9P3BI+jQ4A88LhIHYVycq8JWLxFQHSKNvgJ+Z5MFbnijIQ==", "dev": true, "dependencies": { - "@storybook/core-common": "7.5.2", - "@storybook/preview-api": "7.5.2", - "@storybook/types": "7.5.2", + "@storybook/core-common": "8.1.8", + "@storybook/core-events": "8.1.8", + "@storybook/preview-api": "8.1.8", + "@storybook/types": "8.1.8", "@types/doctrine": "^0.0.3", + "assert": "^2.1.0", "doctrine": "^3.0.0", "lodash": "^4.17.21" }, @@ -4107,10 +4364,23 @@ "integrity": "sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==", "dev": true }, + "node_modules/@storybook/icons": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/@storybook/icons/-/icons-1.2.9.tgz", + "integrity": "sha512-cOmylsz25SYXaJL/gvTk/dl3pyk7yBFRfeXTsHvTA3dfhoU/LWSq0NKL9nM7WBasJyn6XPSGnLS4RtKXLw5EUg==", + "dev": true, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, "node_modules/@storybook/manager": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@storybook/manager/-/manager-7.5.2.tgz", - "integrity": "sha512-5l1z9SpCFQBcHjC5mbfWQ8mPTYFxD8GQ9mNZ6PPrj47yu9TyCRYSQj7A8ZXJiIY1ZEg4a2BCW7fPUYG+lX6Drw==", + "version": "8.1.8", + "resolved": "https://registry.npmjs.org/@storybook/manager/-/manager-8.1.8.tgz", + "integrity": "sha512-3d1qAIzx9TQslolwZSRvlgZ78bxL3RtesUq1NYtC/nDQ7M8Yb+X3taIk8iE/AXa2wlJ8dQ4vU5grLl/oWQeTJg==", "dev": true, "funding": { "type": "opencollective", @@ -4118,23 +4388,23 @@ } }, "node_modules/@storybook/manager-api": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.5.2.tgz", - "integrity": "sha512-WX8GjBkITRQzhQ08WEAVjdDW8QqqIQhWOpFzXUYCxCNzt1eSALI31QQ+M1/MYymw+TOkotC/SMcn/puIAm4rdA==", + "version": "8.1.8", + "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-8.1.8.tgz", + "integrity": "sha512-mVUGMp2Z0lnuIZL8wgb++Id1tGTBtaFtB89w89U/Y5Ii8UMv2tukNiDY37HTkkVIvRz0sm9bJa94GNDrUubnTw==", "dev": true, "dependencies": { - "@storybook/channels": "7.5.2", - "@storybook/client-logger": "7.5.2", - "@storybook/core-events": "7.5.2", - "@storybook/csf": "^0.1.0", + "@storybook/channels": "8.1.8", + "@storybook/client-logger": "8.1.8", + "@storybook/core-events": "8.1.8", + "@storybook/csf": "^0.1.7", "@storybook/global": "^5.0.0", - "@storybook/router": "7.5.2", - "@storybook/theming": "7.5.2", - "@storybook/types": "7.5.2", + "@storybook/icons": "^1.2.5", + "@storybook/router": "8.1.8", + "@storybook/theming": "8.1.8", + "@storybook/types": "8.1.8", "dequal": "^2.0.2", "lodash": "^4.17.21", "memoizerific": "^1.11.3", - "semver": "^7.3.7", "store2": "^2.14.2", "telejson": "^7.2.0", "ts-dedent": "^2.0.0" @@ -4142,16 +4412,12 @@ "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, "node_modules/@storybook/node-logger": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-7.5.2.tgz", - "integrity": "sha512-VIBuwPJOylu8vJofk1VfmqxlhXgbBgV0pCTo/UzdQAbc3w5y+qNRemf8goWxYEY+L9p6oUXqm/i9+bNGyX7/Mw==", + "version": "8.1.8", + "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-8.1.8.tgz", + "integrity": "sha512-7woDHnwd8HdssbEQnfpwZu+zNjp9X6vqdPHhxhwAYsYt3x+m0Y8LP0sMJk8w/gQygelUoJsZLFZsJ2pifLXLCg==", "dev": true, "funding": { "type": "opencollective", @@ -4159,44 +4425,39 @@ } }, "node_modules/@storybook/preset-react-webpack": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@storybook/preset-react-webpack/-/preset-react-webpack-7.5.2.tgz", - "integrity": "sha512-d0RY45ixWDArW4OSoGYrbm0oZbE6Z3kOi6Z64ed4E1ERQfEizq1EAgW/n7QqDMBKfPMNdNncDyGRiiSIdgyuBg==", - "dev": true, - "dependencies": { - "@babel/preset-flow": "^7.22.5", - "@babel/preset-react": "^7.22.5", - "@pmmmwh/react-refresh-webpack-plugin": "^0.5.5", - "@storybook/core-webpack": "7.5.2", - "@storybook/docs-tools": "7.5.2", - "@storybook/node-logger": "7.5.2", - "@storybook/react": "7.5.2", + "version": "8.1.8", + "resolved": "https://registry.npmjs.org/@storybook/preset-react-webpack/-/preset-react-webpack-8.1.8.tgz", + "integrity": "sha512-JS4XRqVmRqUY0i/NjkfKNZ08wvuBq2Lexs1Np/8CFrgenT5EeqZPQkvW955zkQT17jHQ8WgTyygVaXKh+TSSRQ==", + "dev": true, + "dependencies": { + "@storybook/core-webpack": "8.1.8", + "@storybook/docs-tools": "8.1.8", + "@storybook/node-logger": "8.1.8", + "@storybook/react": "8.1.8", "@storybook/react-docgen-typescript-plugin": "1.0.6--canary.9.0c3f3b7.0", "@types/node": "^18.0.0", "@types/semver": "^7.3.4", - "babel-plugin-add-react-displayname": "^0.0.5", - "babel-plugin-react-docgen": "^4.2.1", + "find-up": "^5.0.0", "fs-extra": "^11.1.0", - "react-refresh": "^0.11.0", + "magic-string": "^0.30.5", + "react-docgen": "^7.0.0", + "resolve": "^1.22.8", "semver": "^7.3.7", + "tsconfig-paths": "^4.2.0", "webpack": "5" }, "engines": { - "node": ">=16.0.0" + "node": ">=18.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" }, "peerDependencies": { - "@babel/core": "^7.22.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta" }, "peerDependenciesMeta": { - "@babel/core": { - "optional": true - }, "typescript": { "optional": true } @@ -4214,9 +4475,9 @@ } }, "node_modules/@storybook/preview": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@storybook/preview/-/preview-7.5.2.tgz", - "integrity": "sha512-dA5VpHp0D9nh9/wOzWP8At1wtz/SiaMBbwaiEOFTFUGcPerrkroEWadIlSSB7vgQJ9yWiD4l3KDaS8ANzHWtPQ==", + "version": "8.1.8", + "resolved": "https://registry.npmjs.org/@storybook/preview/-/preview-8.1.8.tgz", + "integrity": "sha512-xUAV/7dLRXfCRp8j/Y4c9IG8YVZ3W+Ps6OAIXWoMjHRDNdEAItka2WnOlZWjDFNHSxOR7vOh0oraYPKgBV8edQ==", "dev": true, "funding": { "type": "opencollective", @@ -4224,23 +4485,23 @@ } }, "node_modules/@storybook/preview-api": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.5.2.tgz", - "integrity": "sha512-rpmHR/09UBSnorDBTcE7JgHUQjZLO146NCI+vbI7Pqfb4QX/8lhwkFr4cuHRAR16mv6DAJbDVoPETO0Z/CH9aw==", + "version": "8.1.8", + "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-8.1.8.tgz", + "integrity": "sha512-O+QnMYA5WbNvWVYcnXtzKorSbM/68QHz3Jlcjr8pRw78G478XKUACTUob/XIfZ64HGLhs7MyCjC6clHptx5kpw==", "dev": true, "dependencies": { - "@storybook/channels": "7.5.2", - "@storybook/client-logger": "7.5.2", - "@storybook/core-events": "7.5.2", - "@storybook/csf": "^0.1.0", + "@storybook/channels": "8.1.8", + "@storybook/client-logger": "8.1.8", + "@storybook/core-events": "8.1.8", + "@storybook/csf": "^0.1.7", "@storybook/global": "^5.0.0", - "@storybook/types": "7.5.2", + "@storybook/types": "8.1.8", "@types/qs": "^6.9.5", "dequal": "^2.0.2", "lodash": "^4.17.21", "memoizerific": "^1.11.3", "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", + "tiny-invariant": "^1.3.1", "ts-dedent": "^2.0.0", "util-deprecate": "^1.0.2" }, @@ -4250,18 +4511,17 @@ } }, "node_modules/@storybook/react": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@storybook/react/-/react-7.5.2.tgz", - "integrity": "sha512-7X8GtqvRjWmVS112ifChJMxfD15rMVg5m3t6apZqi0uui1S/DImAveHwz8M4FhsElW6MIHs5xK0uJhR9rVQgTA==", + "version": "8.1.8", + "resolved": "https://registry.npmjs.org/@storybook/react/-/react-8.1.8.tgz", + "integrity": "sha512-QFwyccbyZGcTpYk6BVChSSemeZ3mmnpp62Ca60j6JO+zbtZv3tTr4PFo79lkWwtz+jpfj0CX8hyYdT1p3r77YA==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.5.2", - "@storybook/core-client": "7.5.2", - "@storybook/docs-tools": "7.5.2", + "@storybook/client-logger": "8.1.8", + "@storybook/docs-tools": "8.1.8", "@storybook/global": "^5.0.0", - "@storybook/preview-api": "7.5.2", - "@storybook/react-dom-shim": "7.5.2", - "@storybook/types": "7.5.2", + "@storybook/preview-api": "8.1.8", + "@storybook/react-dom-shim": "8.1.8", + "@storybook/types": "8.1.8", "@types/escodegen": "^0.0.6", "@types/estree": "^0.0.51", "@types/node": "^18.0.0", @@ -4273,21 +4533,22 @@ "lodash": "^4.17.21", "prop-types": "^15.7.2", "react-element-to-jsx-string": "^15.0.0", + "semver": "^7.3.7", "ts-dedent": "^2.0.0", "type-fest": "~2.19", "util-deprecate": "^1.0.2" }, "engines": { - "node": ">=16.0.0" + "node": ">=18.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0", - "typescript": "*" + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta", + "typescript": ">= 4.2.x" }, "peerDependenciesMeta": { "typescript": { @@ -4315,80 +4576,73 @@ } }, "node_modules/@storybook/react-dom-shim": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@storybook/react-dom-shim/-/react-dom-shim-7.5.2.tgz", - "integrity": "sha512-x7h3TTLRLs8mrsCBKXbvjBRFms73XrNlm0Lo5Tu/Tf//+pwOFq+2sGBkqbRkYd54jNHhpqNF7+UUdzA93ESnbQ==", + "version": "8.1.8", + "resolved": "https://registry.npmjs.org/@storybook/react-dom-shim/-/react-dom-shim-8.1.8.tgz", + "integrity": "sha512-6lzFv/H5szDCy4D7Ob7gDAS9hTfFH9Cds+LEB6dRAsCC7ZMF56hp79AZZWkT3XXTNGXcy8w4+bI7Ntk3l4+rrA==", "dev": true, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta" } }, "node_modules/@storybook/react-webpack5": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@storybook/react-webpack5/-/react-webpack5-7.5.2.tgz", - "integrity": "sha512-whnuFdY1UtHGLvIEXTRuHZd+m/Ra3bUnLdvTQJRcJpt/Fmn+Bf78WqI6NN7IHFTMTrEEhfaBnkFL20XF4ECyCQ==", + "version": "8.1.8", + "resolved": "https://registry.npmjs.org/@storybook/react-webpack5/-/react-webpack5-8.1.8.tgz", + "integrity": "sha512-XpZL2D7Zgl2iPcg3yTSiEGX6BuHQSOEeXNqDkWti2xqwGRYhczaSp3oi+P5cSUYAGY9hn3BBOzFNUpOMrBNG6Q==", "dev": true, "dependencies": { - "@storybook/builder-webpack5": "7.5.2", - "@storybook/preset-react-webpack": "7.5.2", - "@storybook/react": "7.5.2", + "@storybook/builder-webpack5": "8.1.8", + "@storybook/preset-react-webpack": "8.1.8", + "@storybook/react": "8.1.8", + "@storybook/types": "8.1.8", "@types/node": "^18.0.0" }, "engines": { - "node": ">=16.0.0" + "node": ">=18.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" }, "peerDependencies": { - "@babel/core": "^7.22.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0", - "typescript": "*" + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta", + "typescript": ">= 4.2.x" }, "peerDependenciesMeta": { - "@babel/core": { - "optional": true - }, "typescript": { "optional": true } } }, "node_modules/@storybook/router": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@storybook/router/-/router-7.5.2.tgz", - "integrity": "sha512-jlh48TVUlqvGkU8MnkVp9SrCHomWGtQGx1WMK94NMyOPVPTLWzM6LjIybgmHz0MTe4lpzmbiIOfSlU3pPX054w==", + "version": "8.1.8", + "resolved": "https://registry.npmjs.org/@storybook/router/-/router-8.1.8.tgz", + "integrity": "sha512-7OzLdeCE+a8Ypk4Ne/2DU3s81GDNISnKIaFJ2DAuLSJbmF/LzvL39H/gyHXqmFqXWeSuCdBS0V37OEgejlZIAQ==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.5.2", + "@storybook/client-logger": "8.1.8", "memoizerific": "^1.11.3", "qs": "^6.10.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, "node_modules/@storybook/telemetry": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@storybook/telemetry/-/telemetry-7.5.2.tgz", - "integrity": "sha512-tUgrcIx1vTMhTySp11JbBnWLsaMUNlil5yuOWEJy5i71E4Xy/2hYUtLfxzgXWd/0W7eTl4p2tjUk9uS8AP+S0Q==", + "version": "8.1.8", + "resolved": "https://registry.npmjs.org/@storybook/telemetry/-/telemetry-8.1.8.tgz", + "integrity": "sha512-Hr5QUVtn4BzQrqsv1dwlfKRj2yU8XRXmhwCbo0DFULpJasVsJB3VJXeuUOijwteWsGo2avKMZErwNZElJy2yXA==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.5.2", - "@storybook/core-common": "7.5.2", - "@storybook/csf-tools": "7.5.2", + "@storybook/client-logger": "8.1.8", + "@storybook/core-common": "8.1.8", + "@storybook/csf-tools": "8.1.8", "chalk": "^4.1.0", "detect-package-manager": "^2.0.1", "fetch-retry": "^5.0.2", @@ -4401,13 +4655,13 @@ } }, "node_modules/@storybook/theming": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.5.2.tgz", - "integrity": "sha512-DZBTcYErSYvmTYsGz7lKtiIcBe8flBw5Ojp52r3O4GcRYG4AbuUwwVvehz+O1cWaS+UW3HavrcgapERH7ZHd1A==", + "version": "8.1.8", + "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-8.1.8.tgz", + "integrity": "sha512-QhRMSRpnWVD1IB5sTZXVI35ETSQdwGh4/g8gKlGol8MN2Behd7CFgFAj2UL4jpPgjhnioH0U4rwwLkRfDlkR6Q==", "dev": true, "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.5.2", + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", + "@storybook/client-logger": "8.1.8", "@storybook/global": "^5.0.0", "memoizerific": "^1.11.3" }, @@ -4416,18 +4670,25 @@ "url": "https://opencollective.com/storybook" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "react-dom": { + "optional": true + } } }, "node_modules/@storybook/types": { - "version": "7.5.2", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.5.2.tgz", - "integrity": "sha512-RDKHo6WUES+4nt7uZMfankjxdpYX2EI2GpJ2n2RPcnhzmb/ub1huNTjbzDEYMqY24SppljZeIN57m3Ar6L6f9A==", + "version": "8.1.8", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-8.1.8.tgz", + "integrity": "sha512-bWg6WkhnhkWBIu03lUKlX2eOYSjDzpzoulzLh1H4Tl1JReGed+cHbIpdIU6lke2aJyb2BNyzoyudUHKBBGaOzg==", "dev": true, "dependencies": { - "@storybook/channels": "7.5.2", - "@types/babel__core": "^7.0.0", + "@storybook/channels": "8.1.8", "@types/express": "^4.7.0", "file-system-cache": "2.3.0" }, @@ -4650,14 +4911,14 @@ } }, "node_modules/@swc/core": { - "version": "1.3.95", - "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.3.95.tgz", - "integrity": "sha512-PMrNeuqIusq9DPDooV3FfNEbZuTu5jKAc04N3Hm6Uk2Fl49cqElLFQ4xvl4qDmVDz97n3n/C1RE0/f6WyGPEiA==", + "version": "1.5.7", + "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.5.7.tgz", + "integrity": "sha512-U4qJRBefIJNJDRCCiVtkfa/hpiZ7w0R6kASea+/KLp+vkus3zcLSB8Ub8SvKgTIxjWpwsKcZlPf5nrv4ls46SQ==", "dev": true, "hasInstallScript": true, "dependencies": { - "@swc/counter": "^0.1.1", - "@swc/types": "^0.1.5" + "@swc/counter": "^0.1.2", + "@swc/types": "0.1.7" }, "engines": { "node": ">=10" @@ -4667,16 +4928,16 @@ "url": "https://opencollective.com/swc" }, "optionalDependencies": { - "@swc/core-darwin-arm64": "1.3.95", - "@swc/core-darwin-x64": "1.3.95", - "@swc/core-linux-arm-gnueabihf": "1.3.95", - "@swc/core-linux-arm64-gnu": "1.3.95", - "@swc/core-linux-arm64-musl": "1.3.95", - "@swc/core-linux-x64-gnu": "1.3.95", - "@swc/core-linux-x64-musl": "1.3.95", - "@swc/core-win32-arm64-msvc": "1.3.95", - "@swc/core-win32-ia32-msvc": "1.3.95", - "@swc/core-win32-x64-msvc": "1.3.95" + "@swc/core-darwin-arm64": "1.5.7", + "@swc/core-darwin-x64": "1.5.7", + "@swc/core-linux-arm-gnueabihf": "1.5.7", + "@swc/core-linux-arm64-gnu": "1.5.7", + "@swc/core-linux-arm64-musl": "1.5.7", + "@swc/core-linux-x64-gnu": "1.5.7", + "@swc/core-linux-x64-musl": "1.5.7", + "@swc/core-win32-arm64-msvc": "1.5.7", + "@swc/core-win32-ia32-msvc": "1.5.7", + "@swc/core-win32-x64-msvc": "1.5.7" }, "peerDependencies": { "@swc/helpers": "^0.5.0" @@ -4688,9 +4949,9 @@ } }, "node_modules/@swc/core-darwin-arm64": { - "version": "1.3.95", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.95.tgz", - "integrity": "sha512-VAuBAP3MNetO/yBIBzvorUXq7lUBwhfpJxYViSxyluMwtoQDhE/XWN598TWMwMl1ZuImb56d7eUsuFdjgY7pJw==", + "version": "1.5.7", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.5.7.tgz", + "integrity": "sha512-bZLVHPTpH3h6yhwVl395k0Mtx8v6CGhq5r4KQdAoPbADU974Mauz1b6ViHAJ74O0IVE5vyy7tD3OpkQxL/vMDQ==", "cpu": [ "arm64" ], @@ -4704,9 +4965,9 @@ } }, "node_modules/@swc/core-darwin-x64": { - "version": "1.3.95", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.95.tgz", - "integrity": "sha512-20vF2rvUsN98zGLZc+dsEdHvLoCuiYq/1B+TDeE4oolgTFDmI1jKO+m44PzWjYtKGU9QR95sZ6r/uec0QC5O4Q==", + "version": "1.5.7", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.5.7.tgz", + "integrity": "sha512-RpUyu2GsviwTc2qVajPL0l8nf2vKj5wzO3WkLSHAHEJbiUZk83NJrZd1RVbEknIMO7+Uyjh54hEh8R26jSByaw==", "cpu": [ "x64" ], @@ -4720,9 +4981,9 @@ } }, "node_modules/@swc/core-linux-arm-gnueabihf": { - "version": "1.3.95", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.95.tgz", - "integrity": "sha512-oEudEM8PST1MRNGs+zu0cx5i9uP8TsLE4/L9HHrS07Ck0RJ3DCj3O2fU832nmLe2QxnAGPwBpSO9FntLfOiWEQ==", + "version": "1.5.7", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.5.7.tgz", + "integrity": "sha512-cTZWTnCXLABOuvWiv6nQQM0hP6ZWEkzdgDvztgHI/+u/MvtzJBN5lBQ2lue/9sSFYLMqzqff5EHKlFtrJCA9dQ==", "cpu": [ "arm" ], @@ -4736,9 +4997,9 @@ } }, "node_modules/@swc/core-linux-arm64-gnu": { - "version": "1.3.95", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.95.tgz", - "integrity": "sha512-pIhFI+cuC1aYg+0NAPxwT/VRb32f2ia8oGxUjQR6aJg65gLkUYQzdwuUmpMtFR2WVf7WVFYxUnjo4UyMuyh3ng==", + "version": "1.5.7", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.5.7.tgz", + "integrity": "sha512-hoeTJFBiE/IJP30Be7djWF8Q5KVgkbDtjySmvYLg9P94bHg9TJPSQoC72tXx/oXOgXvElDe/GMybru0UxhKx4g==", "cpu": [ "arm64" ], @@ -4752,9 +5013,9 @@ } }, "node_modules/@swc/core-linux-arm64-musl": { - "version": "1.3.95", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.95.tgz", - "integrity": "sha512-ZpbTr+QZDT4OPJfjPAmScqdKKaT+wGurvMU5AhxLaf85DuL8HwUwwlL0n1oLieLc47DwIJEMuKQkYhXMqmJHlg==", + "version": "1.5.7", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.5.7.tgz", + "integrity": "sha512-+NDhK+IFTiVK1/o7EXdCeF2hEzCiaRSrb9zD7X2Z7inwWlxAntcSuzZW7Y6BRqGQH89KA91qYgwbnjgTQ22PiQ==", "cpu": [ "arm64" ], @@ -4768,9 +5029,9 @@ } }, "node_modules/@swc/core-linux-x64-gnu": { - "version": "1.3.95", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.95.tgz", - "integrity": "sha512-n9SuHEFtdfSJ+sHdNXNRuIOVprB8nbsz+08apKfdo4lEKq6IIPBBAk5kVhPhkjmg2dFVHVo4Tr/OHXM1tzWCCw==", + "version": "1.5.7", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.5.7.tgz", + "integrity": "sha512-25GXpJmeFxKB+7pbY7YQLhWWjkYlR+kHz5I3j9WRl3Lp4v4UD67OGXwPe+DIcHqcouA1fhLhsgHJWtsaNOMBNg==", "cpu": [ "x64" ], @@ -4784,9 +5045,9 @@ } }, "node_modules/@swc/core-linux-x64-musl": { - "version": "1.3.95", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.95.tgz", - "integrity": "sha512-L1JrVlsXU3LC0WwmVnMK9HrOT2uhHahAoPNMJnZQpc18a0paO9fqifPG8M/HjNRffMUXR199G/phJsf326UvVg==", + "version": "1.5.7", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.5.7.tgz", + "integrity": "sha512-0VN9Y5EAPBESmSPPsCJzplZHV26akC0sIgd3Hc/7S/1GkSMoeuVL+V9vt+F/cCuzr4VidzSkqftdP3qEIsXSpg==", "cpu": [ "x64" ], @@ -4800,9 +5061,9 @@ } }, "node_modules/@swc/core-win32-arm64-msvc": { - "version": "1.3.95", - "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.95.tgz", - "integrity": "sha512-YaP4x/aZbUyNdqCBpC2zL8b8n58MEpOUpmOIZK6G1SxGi+2ENht7gs7+iXpWPc0sy7X3YPKmSWMAuui0h8lgAA==", + "version": "1.5.7", + "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.5.7.tgz", + "integrity": "sha512-RtoNnstBwy5VloNCvmvYNApkTmuCe4sNcoYWpmY7C1+bPR+6SOo8im1G6/FpNem8AR5fcZCmXHWQ+EUmRWJyuA==", "cpu": [ "arm64" ], @@ -4816,9 +5077,9 @@ } }, "node_modules/@swc/core-win32-ia32-msvc": { - "version": "1.3.95", - "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.95.tgz", - "integrity": "sha512-w0u3HI916zT4BC/57gOd+AwAEjXeUlQbGJ9H4p/gzs1zkSHtoDQghVUNy3n/ZKp9KFod/95cA8mbVF9t1+6epQ==", + "version": "1.5.7", + "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.5.7.tgz", + "integrity": "sha512-Xm0TfvcmmspvQg1s4+USL3x8D+YPAfX2JHygvxAnCJ0EHun8cm2zvfNBcsTlnwYb0ybFWXXY129aq1wgFC9TpQ==", "cpu": [ "ia32" ], @@ -4832,9 +5093,9 @@ } }, "node_modules/@swc/core-win32-x64-msvc": { - "version": "1.3.95", - "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.95.tgz", - "integrity": "sha512-5RGnMt0S6gg4Gc6QtPUJ3Qs9Un4sKqccEzgH/tj7V/DVTJwKdnBKxFZfgQ34OR2Zpz7zGOn889xwsFVXspVWNA==", + "version": "1.5.7", + "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.5.7.tgz", + "integrity": "sha512-tp43WfJLCsKLQKBmjmY/0vv1slVywR5Q4qKjF5OIY8QijaEW7/8VwPyUyVoJZEnDgv9jKtUTG5PzqtIYPZGnyg==", "cpu": [ "x64" ], @@ -4848,16 +5109,19 @@ } }, "node_modules/@swc/counter": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.2.tgz", - "integrity": "sha512-9F4ys4C74eSTEUNndnER3VJ15oru2NumfQxS8geE+f3eB5xvfxpWyqE5XlVnxb/R14uoXi6SLbBwwiDSkv+XEw==", + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz", + "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==", "dev": true }, "node_modules/@swc/types": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.5.tgz", - "integrity": "sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==", - "dev": true + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.7.tgz", + "integrity": "sha512-scHWahbHF0eyj3JsxG9CFJgFdFNaVQCNAimBlT6PzS3n/HptxqREjsm4OH6AN3lYcffZYSPxXW8ua2BEHp0lJQ==", + "dev": true, + "dependencies": { + "@swc/counter": "^0.1.3" + } }, "node_modules/@trysound/sax": { "version": "0.2.0", @@ -4869,9 +5133,9 @@ } }, "node_modules/@types/babel__core": { - "version": "7.20.3", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.3.tgz", - "integrity": "sha512-54fjTSeSHwfan8AyHWrKbfBWiEUrNTZsUwPTDSNaaP1QDQIZbeNUg3a59E9D+375MzUw/x1vx2/0F5LBz+AeYA==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", "dev": true, "dependencies": { "@babel/parser": "^7.20.7", @@ -4882,18 +5146,18 @@ } }, "node_modules/@types/babel__generator": { - "version": "7.6.6", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.6.tgz", - "integrity": "sha512-66BXMKb/sUWbMdBNdMvajU7i/44RkrA3z/Yt1c7R5xejt8qh84iU54yUWCtm0QwGJlDcf/gg4zd/x4mpLAlb/w==", + "version": "7.6.8", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", + "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", "dev": true, "dependencies": { "@babel/types": "^7.0.0" } }, "node_modules/@types/babel__template": { - "version": "7.4.3", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.3.tgz", - "integrity": "sha512-ciwyCLeuRfxboZ4isgdNZi/tkt06m8Tw6uGbBSBgWrnnZGNXiEyM27xc/PjXGQLqlZ6ylbgHMnm7ccF9tCkOeQ==", + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", "dev": true, "dependencies": { "@babel/parser": "^7.1.0", @@ -4901,18 +5165,18 @@ } }, "node_modules/@types/babel__traverse": { - "version": "7.20.3", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.3.tgz", - "integrity": "sha512-Lsh766rGEFbaxMIDH7Qa+Yha8cMVI3qAK6CHt3OR0YfxOIn5Z54iHiyDRycHrBqeIiqGa20Kpsv1cavfBKkRSw==", + "version": "7.20.6", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", + "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", "dev": true, "dependencies": { "@babel/types": "^7.20.7" } }, "node_modules/@types/body-parser": { - "version": "1.19.4", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.4.tgz", - "integrity": "sha512-N7UDG0/xiPQa2D/XrVJXjkWbpqHCd2sBaB32ggRF2l83RhPfamgKGF8gwwqyksS95qUS5ZYF9aF+lLPRlwI2UA==", + "version": "1.19.5", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", + "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", "dev": true, "dependencies": { "@types/connect": "*", @@ -4920,27 +5184,42 @@ } }, "node_modules/@types/connect": { - "version": "3.4.37", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.37.tgz", - "integrity": "sha512-zBUSRqkfZ59OcwXon4HVxhx5oWCJmc0OtBTK05M+p0dYjgN6iTwIL2T/WbsQZrEsdnwaF9cWQ+azOnpPvIqY3Q==", + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/conventional-commits-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@types/conventional-commits-parser/-/conventional-commits-parser-5.0.0.tgz", + "integrity": "sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==", "dev": true, "dependencies": { "@types/node": "*" } }, "node_modules/@types/cross-spawn": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/@types/cross-spawn/-/cross-spawn-6.0.4.tgz", - "integrity": "sha512-GGLpeThc2Bu8FBGmVn76ZU3lix17qZensEI4/MPty0aZpm2CHfgEMis31pf5X5EiudYKcPAsWciAsCALoPo5dw==", + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/@types/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==", "dev": true, "dependencies": { "@types/node": "*" } }, "node_modules/@types/detect-port": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/@types/detect-port/-/detect-port-1.3.4.tgz", - "integrity": "sha512-HveFGabu3IwATqwLelcp6UZ1MIzSFwk+qswC9luzzHufqAwhs22l7KkINDLWRfXxIPTYnSZ1DuQBEgeVPgUOSA==", + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/detect-port/-/detect-port-1.3.5.tgz", + "integrity": "sha512-Rf3/lB9WkDfIL9eEKaSYKc+1L/rNVYBjThk22JTqQw0YozXarX8YljFAz+HCoC6h4B4KwCMsBPZHaFezwT4BNA==", + "dev": true + }, + "node_modules/@types/diff": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/@types/diff/-/diff-5.2.1.tgz", + "integrity": "sha512-uxpcuwWJGhe2AR1g8hD9F5OYGCqjqWnBUQFD8gMZsDbv8oPHzxJF6iMO6n8Tk0AdzlxoaaoQhOYlIg/PukVU8g==", "dev": true }, "node_modules/@types/doctrine": { @@ -4950,9 +5229,9 @@ "dev": true }, "node_modules/@types/ejs": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/@types/ejs/-/ejs-3.1.4.tgz", - "integrity": "sha512-fnM/NjByiWdSRJRrmGxgqOSAnmOnsvX1QcNYk5TVyIIj+7ZqOKMb9gQa4OIl/lil2w/8TiTWV+nz3q8yqxez/w==", + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@types/ejs/-/ejs-3.1.5.tgz", + "integrity": "sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg==", "dev": true }, "node_modules/@types/emscripten": { @@ -4994,9 +5273,9 @@ "dev": true }, "node_modules/@types/express": { - "version": "4.17.20", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.20.tgz", - "integrity": "sha512-rOaqlkgEvOW495xErXMsmyX3WKBInbhG5eqojXYi3cGUaLoRDlXa5d52fkfWZT963AZ3v2eZ4MbKE6WpDAGVsw==", + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", + "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", "dev": true, "dependencies": { "@types/body-parser": "*", @@ -5006,9 +5285,9 @@ } }, "node_modules/@types/express-serve-static-core": { - "version": "4.17.39", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.39.tgz", - "integrity": "sha512-BiEUfAiGCOllomsRAZOiMFP7LAnrifHpt56pc4Z7l9K6ACyN06Ns1JLMBxwkfLOjJRlSf06NwWsT7yzfpaVpyQ==", + "version": "4.19.3", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.3.tgz", + "integrity": "sha512-KOzM7MhcBFlmnlr/fzISFF5vGWVSvN6fTd4T+ExOt08bA/dA5kpSzY52nMsI1KDFmUREpJelPYyuslLRSjjgCg==", "dev": true, "dependencies": { "@types/node": "*", @@ -5017,11 +5296,15 @@ "@types/send": "*" } }, - "node_modules/@types/find-cache-dir": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@types/find-cache-dir/-/find-cache-dir-3.2.1.tgz", - "integrity": "sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==", - "dev": true + "node_modules/@types/hoist-non-react-statics": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.5.tgz", + "integrity": "sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==", + "dev": true, + "dependencies": { + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0" + } }, "node_modules/@types/html-minifier-terser": { "version": "6.1.0", @@ -5030,15 +5313,9 @@ "dev": true }, "node_modules/@types/http-errors": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.3.tgz", - "integrity": "sha512-pP0P/9BnCj1OVvQR2lF41EkDG/lWWnDyA203b/4Fmi2eTyORnBtcDoKDwjWQthELrBvWkMOrvSOnZ8OVlW6tXA==", - "dev": true - }, - "node_modules/@types/istanbul-lib-coverage": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz", - "integrity": "sha512-zONci81DZYCZjiLe0r6equvZut0b+dBRPBN5kBDjsONnutYNtJMoWQ9uR2RkL1gLG9NMTzvf+29e5RFfPbeKhQ==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", + "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==", "dev": true }, "node_modules/@types/json-schema": { @@ -5054,15 +5331,9 @@ "dev": true }, "node_modules/@types/mime": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.4.tgz", - "integrity": "sha512-1Gjee59G25MrQGk8bsNvC6fxNiRgUlGn2wlhGf95a59DrprnnHk80FIMMFG9XHMdrfsuA119ht06QPDXA1Z7tw==", - "dev": true - }, - "node_modules/@types/mime-types": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/@types/mime-types/-/mime-types-2.1.3.tgz", - "integrity": "sha512-bvxCbHeeS7quxS7uOJShyoOQj/BfLabhF6mk9Rmr+2MRfW8W1yxyyL/0GTxLFTHen41GrIw4K3D4DrLouhb8vg==", + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", + "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", "dev": true }, "node_modules/@types/minimist": { @@ -5080,16 +5351,6 @@ "undici-types": "~5.26.4" } }, - "node_modules/@types/node-fetch": { - "version": "2.6.8", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.8.tgz", - "integrity": "sha512-nnH5lV9QCMPsbEVdTb5Y+F3GQxLSw1xQgIydrb2gSfEavRPs50FnMr+KUaa+LoPSqibm2N+ZZxH7lavZlAT4GA==", - "dev": true, - "dependencies": { - "@types/node": "*", - "form-data": "^4.0.0" - } - }, "node_modules/@types/normalize-package-data": { "version": "2.4.3", "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.3.tgz", @@ -5097,15 +5358,15 @@ "dev": true }, "node_modules/@types/parse-json": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.1.tgz", - "integrity": "sha512-3YmXzzPAdOTVljVMkTMBdBEvlOLg2cDQaDhnnhT3nT9uDbnJzjWhKlzb+desT12Y7tGqaN6d+AbozcKzyL36Ng==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==", "dev": true }, "node_modules/@types/pretty-hrtime": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@types/pretty-hrtime/-/pretty-hrtime-1.0.2.tgz", - "integrity": "sha512-vyv9knII8XeW8TnXDcGH7HqG6FeR56ESN6ExM34d/U8Zvs3xuG34euV6CVyB7KEYI7Ts4lQM8b4NL72e7UadnA==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@types/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", + "integrity": "sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==", "dev": true }, "node_modules/@types/prop-types": { @@ -5115,47 +5376,58 @@ "dev": true }, "node_modules/@types/qs": { - "version": "6.9.9", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.9.tgz", - "integrity": "sha512-wYLxw35euwqGvTDx6zfY1vokBFnsK0HNrzc6xNHchxfO2hpuRg74GbkEW7e3sSmPvj0TjCDT1VCa6OtHXnubsg==", + "version": "6.9.15", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.15.tgz", + "integrity": "sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==", "dev": true }, "node_modules/@types/range-parser": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.6.tgz", - "integrity": "sha512-+0autS93xyXizIYiyL02FCY8N+KkKPhILhcUSA276HxzreZ16kl+cmwvV2qAM/PuCCwPXzOXOWhiPcw20uSFcA==", + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", "dev": true }, "node_modules/@types/react": { - "version": "18.2.33", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.33.tgz", - "integrity": "sha512-v+I7S+hu3PIBoVkKGpSYYpiBT1ijqEzWpzQD62/jm4K74hPpSP7FF9BnKG6+fg2+62weJYkkBWDJlZt5JO/9hg==", + "version": "18.3.3", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.3.tgz", + "integrity": "sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==", "dev": true, "dependencies": { "@types/prop-types": "*", - "@types/scheduler": "*", "csstype": "^3.0.2" } }, "node_modules/@types/react-dom": { - "version": "18.2.14", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.14.tgz", - "integrity": "sha512-V835xgdSVmyQmI1KLV2BEIUgqEuinxp9O4G6g3FqO/SqLac049E53aysv0oEFD2kHfejeKU+ZqL2bcFWj9gLAQ==", + "version": "18.3.0", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.0.tgz", + "integrity": "sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==", "dev": true, "dependencies": { "@types/react": "*" } }, - "node_modules/@types/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", + "node_modules/@types/react-redux": { + "version": "7.1.33", + "resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.33.tgz", + "integrity": "sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg==", + "dev": true, + "dependencies": { + "@types/hoist-non-react-statics": "^3.3.0", + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0", + "redux": "^4.0.0" + } + }, + "node_modules/@types/resolve": { + "version": "1.20.6", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.6.tgz", + "integrity": "sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==", "dev": true }, - "node_modules/@types/scheduler": { - "version": "0.16.5", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.5.tgz", - "integrity": "sha512-s/FPdYRmZR8SjLWGMCuax7r3qCWQw9QKHzXVukAuuIJkXkDRwp+Pu5LMIVFi0Fxbav35WURicYr8u1QsoybnQw==", + "node_modules/@types/retry": { + "version": "0.12.2", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.2.tgz", + "integrity": "sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==", "dev": true }, "node_modules/@types/semver": { @@ -5165,9 +5437,9 @@ "dev": true }, "node_modules/@types/send": { - "version": "0.17.3", - "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.3.tgz", - "integrity": "sha512-/7fKxvKUoETxjFUsuFlPB9YndePpxxRAOfGC/yJdc9kTjTeP5kRCTzfnE8kPUKCeyiyIZu0YQ76s50hCedI1ug==", + "version": "0.17.4", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", + "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", "dev": true, "dependencies": { "@types/mime": "^1", @@ -5175,40 +5447,27 @@ } }, "node_modules/@types/serve-static": { - "version": "1.15.4", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.4.tgz", - "integrity": "sha512-aqqNfs1XTF0HDrFdlY//+SGUxmdSUbjeRXb5iaZc3x0/vMbYmdw9qvOgHWOyyLFxSSRnUuP5+724zBgfw8/WAw==", + "version": "1.15.7", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz", + "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==", "dev": true, "dependencies": { "@types/http-errors": "*", - "@types/mime": "*", - "@types/node": "*" - } - }, - "node_modules/@types/webpack": { - "version": "5.28.4", - "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-5.28.4.tgz", - "integrity": "sha512-sVIGIQdg0bNruxwQvpiNXaIXndScf+qTfYULLo2DI8urXgxC7f8Rw8aNHjjckdI3QaV3cRHqoHdCuBMMyUtGiw==", - "dev": true, - "optional": true, - "peer": true, - "dependencies": { "@types/node": "*", - "tapable": "^2.2.0", - "webpack": "^5" + "@types/send": "*" } }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "6.9.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.9.1.tgz", - "integrity": "sha512-w0tiiRc9I4S5XSXXrMHOWgHgxbrBn1Ro+PmiYhSg2ZVdxrAJtQgzU5o2m1BfP6UOn7Vxcc6152vFjQfmZR4xEg==", + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.21.0.tgz", + "integrity": "sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==", "dev": true, "dependencies": { "@eslint-community/regexpp": "^4.5.1", - "@typescript-eslint/scope-manager": "6.9.1", - "@typescript-eslint/type-utils": "6.9.1", - "@typescript-eslint/utils": "6.9.1", - "@typescript-eslint/visitor-keys": "6.9.1", + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/type-utils": "6.21.0", + "@typescript-eslint/utils": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", "debug": "^4.3.4", "graphemer": "^1.4.0", "ignore": "^5.2.4", @@ -5234,15 +5493,15 @@ } }, "node_modules/@typescript-eslint/parser": { - "version": "6.9.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.9.1.tgz", - "integrity": "sha512-C7AK2wn43GSaCUZ9do6Ksgi2g3mwFkMO3Cis96kzmgudoVaKyt62yNzJOktP0HDLb/iO2O0n2lBOzJgr6Q/cyg==", + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.21.0.tgz", + "integrity": "sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==", "dev": true, "dependencies": { - "@typescript-eslint/scope-manager": "6.9.1", - "@typescript-eslint/types": "6.9.1", - "@typescript-eslint/typescript-estree": "6.9.1", - "@typescript-eslint/visitor-keys": "6.9.1", + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/typescript-estree": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", "debug": "^4.3.4" }, "engines": { @@ -5262,13 +5521,13 @@ } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "6.9.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.9.1.tgz", - "integrity": "sha512-38IxvKB6NAne3g/+MyXMs2Cda/Sz+CEpmm+KLGEM8hx/CvnSRuw51i8ukfwB/B/sESdeTGet1NH1Wj7I0YXswg==", + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz", + "integrity": "sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==", "dev": true, "dependencies": { - "@typescript-eslint/types": "6.9.1", - "@typescript-eslint/visitor-keys": "6.9.1" + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0" }, "engines": { "node": "^16.0.0 || >=18.0.0" @@ -5279,13 +5538,13 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "6.9.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.9.1.tgz", - "integrity": "sha512-eh2oHaUKCK58qIeYp19F5V5TbpM52680sB4zNSz29VBQPTWIlE/hCj5P5B1AChxECe/fmZlspAWFuRniep1Skg==", + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.21.0.tgz", + "integrity": "sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==", "dev": true, "dependencies": { - "@typescript-eslint/typescript-estree": "6.9.1", - "@typescript-eslint/utils": "6.9.1", + "@typescript-eslint/typescript-estree": "6.21.0", + "@typescript-eslint/utils": "6.21.0", "debug": "^4.3.4", "ts-api-utils": "^1.0.1" }, @@ -5306,9 +5565,9 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "6.9.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.9.1.tgz", - "integrity": "sha512-BUGslGOb14zUHOUmDB2FfT6SI1CcZEJYfF3qFwBeUrU6srJfzANonwRYHDpLBuzbq3HaoF2XL2hcr01c8f8OaQ==", + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.21.0.tgz", + "integrity": "sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==", "dev": true, "engines": { "node": "^16.0.0 || >=18.0.0" @@ -5319,16 +5578,17 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "6.9.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.9.1.tgz", - "integrity": "sha512-U+mUylTHfcqeO7mLWVQ5W/tMLXqVpRv61wm9ZtfE5egz7gtnmqVIw9ryh0mgIlkKk9rZLY3UHygsBSdB9/ftyw==", + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz", + "integrity": "sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==", "dev": true, "dependencies": { - "@typescript-eslint/types": "6.9.1", - "@typescript-eslint/visitor-keys": "6.9.1", + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", + "minimatch": "9.0.3", "semver": "^7.5.4", "ts-api-utils": "^1.0.1" }, @@ -5345,18 +5605,42 @@ } } }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/@typescript-eslint/utils": { - "version": "6.9.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.9.1.tgz", - "integrity": "sha512-L1T0A5nFdQrMVunpZgzqPL6y2wVreSyHhKGZryS6jrEN7bD9NplVAyMryUhXsQ4TWLnZmxc2ekar/lSGIlprCA==", + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.21.0.tgz", + "integrity": "sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", "@types/json-schema": "^7.0.12", "@types/semver": "^7.5.0", - "@typescript-eslint/scope-manager": "6.9.1", - "@typescript-eslint/types": "6.9.1", - "@typescript-eslint/typescript-estree": "6.9.1", + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/typescript-estree": "6.21.0", "semver": "^7.5.4" }, "engines": { @@ -5371,12 +5655,12 @@ } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "6.9.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.9.1.tgz", - "integrity": "sha512-MUaPUe/QRLEffARsmNfmpghuQkW436DvESW+h+M52w0coICHRfD6Np9/K6PdACwnrq1HmuLl+cSPZaJmeVPkSw==", + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz", + "integrity": "sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==", "dev": true, "dependencies": { - "@typescript-eslint/types": "6.9.1", + "@typescript-eslint/types": "6.21.0", "eslint-visitor-keys": "^3.4.1" }, "engines": { @@ -5680,19 +5964,6 @@ "node": ">= 14" } }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/ajv": { "version": "8.12.0", "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", @@ -5793,6 +6064,12 @@ "integrity": "sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==", "dev": true }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, "node_modules/aria-query": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", @@ -5803,13 +6080,16 @@ } }, "node_modules/array-buffer-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", - "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -5828,15 +6108,16 @@ "dev": true }, "node_modules/array-includes": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", - "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", + "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.4", "is-string": "^1.0.7" }, "engines": { @@ -5855,6 +6136,26 @@ "node": ">=8" } }, + "node_modules/array.prototype.findlast": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", + "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/array.prototype.findlastindex": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz", @@ -5910,31 +6211,47 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/array.prototype.tosorted": { + "node_modules/array.prototype.toreversed": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.2.tgz", - "integrity": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==", + "resolved": "https://registry.npmjs.org/array.prototype.toreversed/-/array.prototype.toreversed-1.1.2.tgz", + "integrity": "sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==", "dev": true, "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.2.0", "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.2.1" + "es-shim-unscopables": "^1.0.0" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", + "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" } }, "node_modules/arraybuffer.prototype.slice": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", - "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", "dev": true, "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "is-array-buffer": "^3.0.2", + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", "is-shared-array-buffer": "^1.0.2" }, "engines": { @@ -5979,9 +6296,9 @@ } }, "node_modules/ast-types-flow": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", - "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==", + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", + "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", "dev": true }, "node_modules/astral-regex": { @@ -5994,26 +6311,11 @@ } }, "node_modules/async": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", - "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", + "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==", "dev": true }, - "node_modules/async-limiter": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", - "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", - "dev": true - }, - "node_modules/asynciterator.prototype": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz", - "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", - "dev": true, - "dependencies": { - "has-symbols": "^1.0.3" - } - }, "node_modules/asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", @@ -6021,10 +6323,13 @@ "dev": true }, "node_modules/available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", "dev": true, + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, "engines": { "node": ">= 0.4" }, @@ -6033,22 +6338,23 @@ } }, "node_modules/axe-core": { - "version": "4.8.2", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.8.2.tgz", - "integrity": "sha512-/dlp0fxyM3R8YW7MFzaHWXrf4zzbr0vaYb23VBFCl83R7nWNPg/yaQw2Dc8jzCMmDVLhSdzH8MjrsuIUuvX+6g==", + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz", + "integrity": "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==", "dev": true, "engines": { "node": ">=4" } }, "node_modules/axios": { - "version": "0.27.2", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz", - "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==", + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.2.tgz", + "integrity": "sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==", "dev": true, "dependencies": { - "follow-redirects": "^1.14.9", - "form-data": "^4.0.0" + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" } }, "node_modules/axobject-query": { @@ -6069,175 +6375,14 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/babel-loader": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.3.tgz", - "integrity": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==", - "dev": true, - "dependencies": { - "find-cache-dir": "^4.0.0", - "schema-utils": "^4.0.0" - }, - "engines": { - "node": ">= 14.15.0" - }, - "peerDependencies": { - "@babel/core": "^7.12.0", - "webpack": ">=5" - } - }, - "node_modules/babel-loader/node_modules/find-cache-dir": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-4.0.0.tgz", - "integrity": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==", - "dev": true, - "dependencies": { - "common-path-prefix": "^3.0.0", - "pkg-dir": "^7.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/babel-loader/node_modules/find-up": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", - "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", - "dev": true, - "dependencies": { - "locate-path": "^7.1.0", - "path-exists": "^5.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/babel-loader/node_modules/locate-path": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", - "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", - "dev": true, - "dependencies": { - "p-locate": "^6.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/babel-loader/node_modules/p-limit": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", - "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", - "dev": true, - "dependencies": { - "yocto-queue": "^1.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/babel-loader/node_modules/p-locate": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", - "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", - "dev": true, - "dependencies": { - "p-limit": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/babel-loader/node_modules/path-exists": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", - "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - } - }, - "node_modules/babel-loader/node_modules/pkg-dir": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-7.0.0.tgz", - "integrity": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==", - "dev": true, - "dependencies": { - "find-up": "^6.3.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/babel-loader/node_modules/schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", - "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.1.0" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/babel-loader/node_modules/yocto-queue": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", - "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", - "dev": true, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/babel-plugin-add-react-displayname": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/babel-plugin-add-react-displayname/-/babel-plugin-add-react-displayname-0.0.5.tgz", - "integrity": "sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==", - "dev": true - }, - "node_modules/babel-plugin-named-exports-order": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/babel-plugin-named-exports-order/-/babel-plugin-named-exports-order-0.0.2.tgz", - "integrity": "sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==", - "dev": true - }, "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.6", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.6.tgz", - "integrity": "sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==", + "version": "0.4.11", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz", + "integrity": "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==", "dev": true, "dependencies": { "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.4.3", + "@babel/helper-define-polyfill-provider": "^0.6.2", "semver": "^6.3.1" }, "peerDependencies": { @@ -6254,53 +6399,30 @@ } }, "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.8.6", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.6.tgz", - "integrity": "sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==", + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz", + "integrity": "sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.4.3", - "core-js-compat": "^3.33.1" + "@babel/helper-define-polyfill-provider": "^0.6.1", + "core-js-compat": "^3.36.1" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.3.tgz", - "integrity": "sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==", + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz", + "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.4.3" + "@babel/helper-define-polyfill-provider": "^0.6.2" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/babel-plugin-react-docgen": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/babel-plugin-react-docgen/-/babel-plugin-react-docgen-4.2.1.tgz", - "integrity": "sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==", - "dev": true, - "dependencies": { - "ast-types": "^0.14.2", - "lodash": "^4.17.15", - "react-docgen": "^5.0.0" - } - }, - "node_modules/babel-plugin-react-docgen/node_modules/ast-types": { - "version": "0.14.2", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.14.2.tgz", - "integrity": "sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==", - "dev": true, - "dependencies": { - "tslib": "^2.0.1" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", @@ -6318,86 +6440,36 @@ "url": "https://github.com/sponsors/feross" }, { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/better-opn": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-3.0.2.tgz", - "integrity": "sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==", - "dev": true, - "dependencies": { - "open": "^8.0.4" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/better-opn/node_modules/define-lazy-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/better-opn/node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "dev": true, - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, - "node_modules/better-opn/node_modules/open": { - "version": "8.4.2", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", - "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "node_modules/better-opn": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-3.0.2.tgz", + "integrity": "sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==", "dev": true, "dependencies": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" + "open": "^8.0.4" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=12.0.0" } }, "node_modules/big-integer": { - "version": "1.6.51", - "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", - "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", + "version": "1.6.52", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", + "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", "dev": true, "engines": { "node": ">=0.6" } }, - "node_modules/big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true, - "engines": { - "node": "*" - } - }, "node_modules/binary-extensions": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", @@ -6425,13 +6497,13 @@ "dev": true }, "node_modules/body-parser": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", - "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", + "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", "dev": true, "dependencies": { "bytes": "3.1.2", - "content-type": "~1.0.4", + "content-type": "~1.0.5", "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", @@ -6439,7 +6511,7 @@ "iconv-lite": "0.4.24", "on-finished": "2.4.1", "qs": "6.11.0", - "raw-body": "2.5.1", + "raw-body": "2.5.2", "type-is": "~1.6.18", "unpipe": "1.0.0" }, @@ -6543,9 +6615,9 @@ } }, "node_modules/browserslist": { - "version": "4.22.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz", - "integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==", + "version": "4.23.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.1.tgz", + "integrity": "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==", "dev": true, "funding": [ { @@ -6562,10 +6634,10 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001541", - "electron-to-chromium": "^1.4.535", - "node-releases": "^2.0.13", - "update-browserslist-db": "^1.0.13" + "caniuse-lite": "^1.0.30001629", + "electron-to-chromium": "^1.4.796", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.16" }, "bin": { "browserslist": "cli.js" @@ -6598,36 +6670,12 @@ "ieee754": "^1.1.13" } }, - "node_modules/buffer-crc32": { - "version": "0.2.13", - "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", - "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", - "dev": true, - "engines": { - "node": "*" - } - }, "node_modules/buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true }, - "node_modules/bundle-name": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz", - "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==", - "dev": true, - "dependencies": { - "run-applescript": "^5.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/bytes": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", @@ -6637,164 +6685,20 @@ "node": ">= 0.8" } }, - "node_modules/c8": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/c8/-/c8-7.14.0.tgz", - "integrity": "sha512-i04rtkkcNcCf7zsQcSv/T9EbUn4RXQ6mropeMcjFOsQXQ0iGLAr/xT6TImQg4+U9hmNpN9XdvPkjUL1IzbgxJw==", - "dev": true, - "dependencies": { - "@bcoe/v8-coverage": "^0.2.3", - "@istanbuljs/schema": "^0.1.3", - "find-up": "^5.0.0", - "foreground-child": "^2.0.0", - "istanbul-lib-coverage": "^3.2.0", - "istanbul-lib-report": "^3.0.0", - "istanbul-reports": "^3.1.4", - "rimraf": "^3.0.2", - "test-exclude": "^6.0.0", - "v8-to-istanbul": "^9.0.0", - "yargs": "^16.2.0", - "yargs-parser": "^20.2.9" - }, - "bin": { - "c8": "bin/c8.js" - }, - "engines": { - "node": ">=10.12.0" - } - }, - "node_modules/c8/node_modules/cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", - "dev": true, - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "node_modules/c8/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/c8/node_modules/foreground-child": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz", - "integrity": "sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^3.0.2" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/c8/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/c8/node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/c8/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/c8/node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/c8/node_modules/yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", - "dev": true, - "dependencies": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/c8/node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "dev": true, - "engines": { - "node": ">=10" - } - }, "node_modules/call-bind": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", - "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", "dev": true, "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.1", - "set-function-length": "^1.1.1" + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -6831,36 +6735,10 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/camelcase-keys": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", - "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", - "dev": true, - "dependencies": { - "camelcase": "^5.3.1", - "map-obj": "^4.0.0", - "quick-lru": "^4.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/camelcase-keys/node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/caniuse-lite": { - "version": "1.0.30001559", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001559.tgz", - "integrity": "sha512-cPiMKZgqgkg5LY3/ntGeLFUpi6tzddBNS58A4tnTgQw1zON7u2sZMU7SzOeVH4tj20++9ggL+V6FDOFMTaFFYA==", + "version": "1.0.30001633", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001633.tgz", + "integrity": "sha512-6sT0yf/z5jqf8tISAgpJDrmwOpLsrpnyCdD/lOZKvKkkJK4Dn0X5i7KF7THEZhOq+30bmhwBlNEaqPUiHiKtZg==", "dev": true, "funding": [ { @@ -6959,10 +6837,22 @@ "node": ">=6.0" } }, + "node_modules/cjs-module-lexer": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.3.1.tgz", + "integrity": "sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==", + "dev": true + }, + "node_modules/classnames": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz", + "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==", + "dev": true + }, "node_modules/clean-css": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.2.tgz", - "integrity": "sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==", + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", + "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==", "dev": true, "dependencies": { "source-map": "~0.6.0" @@ -6971,15 +6861,6 @@ "node": ">= 10.0" } }, - "node_modules/clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/cli-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", @@ -7005,9 +6886,9 @@ } }, "node_modules/cli-table3": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz", - "integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==", + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.5.tgz", + "integrity": "sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==", "dev": true, "dependencies": { "string-width": "^4.2.0" @@ -7176,12 +7057,6 @@ "node": ">= 10" } }, - "node_modules/common-path-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", - "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", - "dev": true - }, "node_modules/commondir": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", @@ -7255,57 +7130,6 @@ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true }, - "node_modules/concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", - "dev": true, - "engines": [ - "node >= 0.8" - ], - "dependencies": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - } - }, - "node_modules/concat-stream/node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, - "node_modules/concat-stream/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/concat-stream/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/concat-stream/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, "node_modules/constants-browserify": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", @@ -7334,15 +7158,15 @@ } }, "node_modules/conventional-changelog-angular": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-6.0.0.tgz", - "integrity": "sha512-6qLgrBF4gueoC7AFVHu51nHL9pF9FRjXrH+ceVf7WmAfH3gs+gEYOkvxhjMPjZu57I4AGUGoNTY8V7Hrgf1uqg==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-7.0.0.tgz", + "integrity": "sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==", "dev": true, "dependencies": { "compare-func": "^2.0.0" }, "engines": { - "node": ">=14" + "node": ">=16" } }, "node_modules/conventional-changelog-conventionalcommits": { @@ -7382,9 +7206,9 @@ "dev": true }, "node_modules/cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", "dev": true, "engines": { "node": ">= 0.6" @@ -7401,29 +7225,18 @@ "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz", "integrity": "sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==", "dev": true, - "dependencies": { - "toggle-selection": "^1.0.6" - } - }, - "node_modules/core-js-compat": { - "version": "3.33.2", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.33.2.tgz", - "integrity": "sha512-axfo+wxFVxnqf8RvxTzoAlzW4gRoacrHeoFlc9n0x50+7BEyZL/Rt3hicaED1/CEd7I6tPCPVUYcJwCMO5XUYw==", - "dev": true, - "dependencies": { - "browserslist": "^4.22.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" + "dependencies": { + "toggle-selection": "^1.0.6" } }, - "node_modules/core-js-pure": { - "version": "3.33.2", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.33.2.tgz", - "integrity": "sha512-a8zeCdyVk7uF2elKIGz67AjcXOxjRbwOLz8SbklEso1V+2DoW4OkAMZN9S9GBgvZIaqQi/OemFX4OiSoQEmg1Q==", + "node_modules/core-js-compat": { + "version": "3.37.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.37.1.tgz", + "integrity": "sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==", "dev": true, - "hasInstallScript": true, + "dependencies": { + "browserslist": "^4.23.0" + }, "funding": { "type": "opencollective", "url": "https://opencollective.com/core-js" @@ -7478,24 +7291,6 @@ "typescript": ">=4" } }, - "node_modules/cosmiconfig/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/cosmiconfig/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, "node_modules/cross-env": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", @@ -7529,12 +7324,39 @@ } }, "node_modules/crypto-random-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", - "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", + "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", "dev": true, + "dependencies": { + "type-fest": "^1.0.1" + }, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/crypto-random-string/node_modules/type-fest": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", + "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/css-box-model": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/css-box-model/-/css-box-model-1.2.1.tgz", + "integrity": "sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw==", + "dev": true, + "dependencies": { + "tiny-invariant": "^1.0.6" } }, "node_modules/css-functions-list": { @@ -7671,12 +7493,66 @@ "dev": true }, "node_modules/dargs": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/dargs/-/dargs-7.0.0.tgz", - "integrity": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==", + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/dargs/-/dargs-8.1.0.tgz", + "integrity": "sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==", "dev": true, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/data-view-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", + "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", + "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", + "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/debug": { @@ -7751,24 +7627,6 @@ "node": ">=0.10.0" } }, - "node_modules/default-browser": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz", - "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==", - "dev": true, - "dependencies": { - "bundle-name": "^3.0.0", - "default-browser-id": "^3.0.0", - "execa": "^7.1.1", - "titleize": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/default-browser-id": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", @@ -7785,116 +7643,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/default-browser/node_modules/execa": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", - "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^4.3.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^3.0.7", - "strip-final-newline": "^3.0.0" - }, - "engines": { - "node": "^14.18.0 || ^16.14.0 || >=18.0.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/default-browser/node_modules/human-signals": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", - "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", - "dev": true, - "engines": { - "node": ">=14.18.0" - } - }, - "node_modules/default-browser/node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser/node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser/node_modules/npm-run-path": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", - "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", - "dev": true, - "dependencies": { - "path-key": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser/node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dev": true, - "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser/node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/defaults": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", @@ -7908,40 +7656,14 @@ } }, "node_modules/define-data-property": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", - "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.1", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/define-lazy-prop": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", - "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", "dev": true, "dependencies": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" }, "engines": { "node": ">= 0.4" @@ -7950,69 +7672,38 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/defu": { - "version": "6.1.3", - "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.3.tgz", - "integrity": "sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==", - "dev": true - }, - "node_modules/del": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz", - "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==", - "dev": true, - "dependencies": { - "globby": "^11.0.1", - "graceful-fs": "^4.2.4", - "is-glob": "^4.0.1", - "is-path-cwd": "^2.2.0", - "is-path-inside": "^3.0.2", - "p-map": "^4.0.0", - "rimraf": "^3.0.2", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/del/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "dev": true, + "engines": { + "node": ">=8" } }, - "node_modules/del/node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", "dev": true, "dependencies": { - "glob": "^7.1.3" + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" }, - "bin": { - "rimraf": "bin.js" + "engines": { + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/defu": { + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.3.tgz", + "integrity": "sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==", + "dev": true + }, "node_modules/delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", @@ -8071,10 +7762,87 @@ "node": ">=12" } }, + "node_modules/detect-package-manager/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/detect-package-manager/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/detect-package-manager/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/detect-package-manager/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/detect-package-manager/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-package-manager/node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/detect-port": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.5.1.tgz", - "integrity": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==", + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.6.1.tgz", + "integrity": "sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==", "dev": true, "dependencies": { "address": "^1.0.1", @@ -8083,6 +7851,18 @@ "bin": { "detect": "bin/detect-port.js", "detect-port": "bin/detect-port.js" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/diff": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", + "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", + "dev": true, + "engines": { + "node": ">=0.3.1" } }, "node_modules/dir-glob": { @@ -8206,15 +7986,15 @@ } }, "node_modules/dotenv": { - "version": "16.3.1", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", - "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", + "version": "16.4.5", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", + "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", "dev": true, "engines": { "node": ">=12" }, "funding": { - "url": "https://github.com/motdotla/dotenv?sponsor=1" + "url": "https://dotenvx.com" } }, "node_modules/dotenv-expand": { @@ -8287,9 +8067,9 @@ "dev": true }, "node_modules/ejs": { - "version": "3.1.9", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz", - "integrity": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==", + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", + "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", "dev": true, "dependencies": { "jake": "^10.8.5" @@ -8302,9 +8082,9 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.4.572", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.572.tgz", - "integrity": "sha512-RlFobl4D3ieetbnR+2EpxdzFl9h0RAJkPK3pfiwMug2nhBin2ZCsGIAJWdpNniLz43sgXam/CgipOmvTA+rUiA==", + "version": "1.4.802", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.802.tgz", + "integrity": "sha512-TnTMUATbgNdPXVSHsxvNVSG0uEd6cSZsANjm8c9HbvflZVVn1yTRcmVXYT1Ma95/ssB/Dcd30AHweH2TE+dNpA==", "dev": true }, "node_modules/emoji-regex": { @@ -8313,15 +8093,6 @@ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", "dev": true }, - "node_modules/emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, "node_modules/encodeurl": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", @@ -8376,6 +8147,15 @@ "url": "https://github.com/fb55/entities?sponsor=1" } }, + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/envinfo": { "version": "7.10.0", "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.10.0.tgz", @@ -8397,60 +8177,58 @@ "is-arrayish": "^0.2.1" } }, - "node_modules/error-stack-parser": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", - "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", - "dev": true, - "dependencies": { - "stackframe": "^1.3.4" - } - }, "node_modules/es-abstract": { - "version": "1.22.3", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz", - "integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==", - "dev": true, - "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "arraybuffer.prototype.slice": "^1.0.2", - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.5", - "es-set-tostringtag": "^2.0.1", + "version": "1.23.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", + "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "data-view-buffer": "^1.0.1", + "data-view-byte-length": "^1.0.1", + "data-view-byte-offset": "^1.0.0", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.0.3", "es-to-primitive": "^1.2.1", "function.prototype.name": "^1.1.6", - "get-intrinsic": "^1.2.2", - "get-symbol-description": "^1.0.0", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", "globalthis": "^1.0.3", "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", "has-symbols": "^1.0.3", - "hasown": "^2.0.0", - "internal-slot": "^1.0.5", - "is-array-buffer": "^3.0.2", + "hasown": "^2.0.2", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", + "is-data-view": "^1.0.1", + "is-negative-zero": "^2.0.3", "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", + "is-shared-array-buffer": "^1.0.3", "is-string": "^1.0.7", - "is-typed-array": "^1.1.12", + "is-typed-array": "^1.1.13", "is-weakref": "^1.0.2", "object-inspect": "^1.13.1", "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.5.1", - "safe-array-concat": "^1.0.1", - "safe-regex-test": "^1.0.0", - "string.prototype.trim": "^1.2.8", - "string.prototype.trimend": "^1.0.7", - "string.prototype.trimstart": "^1.0.7", - "typed-array-buffer": "^1.0.0", - "typed-array-byte-length": "^1.0.0", - "typed-array-byte-offset": "^1.0.0", - "typed-array-length": "^1.0.4", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.2", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.9", + "string.prototype.trimend": "^1.0.8", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.2", + "typed-array-length": "^1.0.6", "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.13" + "which-typed-array": "^1.1.15" }, "engines": { "node": ">= 0.4" @@ -8459,43 +8237,79 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/es-iterator-helpers": { - "version": "1.0.15", - "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.15.tgz", - "integrity": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==", + "version": "1.0.19", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.19.tgz", + "integrity": "sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==", "dev": true, "dependencies": { - "asynciterator.prototype": "^1.0.0", - "call-bind": "^1.0.2", + "call-bind": "^1.0.7", "define-properties": "^1.2.1", - "es-abstract": "^1.22.1", - "es-set-tostringtag": "^2.0.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.0.3", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", "globalthis": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", + "internal-slot": "^1.0.7", "iterator.prototype": "^1.1.2", - "safe-array-concat": "^1.0.1" + "safe-array-concat": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" } }, "node_modules/es-module-lexer": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.3.1.tgz", - "integrity": "sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q==", + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.3.tgz", + "integrity": "sha512-i1gCgmR9dCl6Vil6UKPI/trA69s08g/syhiDK9TG0Nf1RJjjFI+AzoWW7sPufzkgYAn861skuCwJa0pIIHYxvg==", "dev": true }, + "node_modules/es-object-atoms": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", + "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/es-set-tostringtag": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz", - "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", + "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", "dev": true, "dependencies": { - "get-intrinsic": "^1.2.2", - "has-tostringtag": "^1.0.0", - "hasown": "^2.0.0" + "get-intrinsic": "^1.2.4", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.1" }, "engines": { "node": ">= 0.4" @@ -8528,9 +8342,9 @@ } }, "node_modules/esbuild": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", - "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", + "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", "dev": true, "hasInstallScript": true, "bin": { @@ -8540,28 +8354,29 @@ "node": ">=12" }, "optionalDependencies": { - "@esbuild/android-arm": "0.18.20", - "@esbuild/android-arm64": "0.18.20", - "@esbuild/android-x64": "0.18.20", - "@esbuild/darwin-arm64": "0.18.20", - "@esbuild/darwin-x64": "0.18.20", - "@esbuild/freebsd-arm64": "0.18.20", - "@esbuild/freebsd-x64": "0.18.20", - "@esbuild/linux-arm": "0.18.20", - "@esbuild/linux-arm64": "0.18.20", - "@esbuild/linux-ia32": "0.18.20", - "@esbuild/linux-loong64": "0.18.20", - "@esbuild/linux-mips64el": "0.18.20", - "@esbuild/linux-ppc64": "0.18.20", - "@esbuild/linux-riscv64": "0.18.20", - "@esbuild/linux-s390x": "0.18.20", - "@esbuild/linux-x64": "0.18.20", - "@esbuild/netbsd-x64": "0.18.20", - "@esbuild/openbsd-x64": "0.18.20", - "@esbuild/sunos-x64": "0.18.20", - "@esbuild/win32-arm64": "0.18.20", - "@esbuild/win32-ia32": "0.18.20", - "@esbuild/win32-x64": "0.18.20" + "@esbuild/aix-ppc64": "0.20.2", + "@esbuild/android-arm": "0.20.2", + "@esbuild/android-arm64": "0.20.2", + "@esbuild/android-x64": "0.20.2", + "@esbuild/darwin-arm64": "0.20.2", + "@esbuild/darwin-x64": "0.20.2", + "@esbuild/freebsd-arm64": "0.20.2", + "@esbuild/freebsd-x64": "0.20.2", + "@esbuild/linux-arm": "0.20.2", + "@esbuild/linux-arm64": "0.20.2", + "@esbuild/linux-ia32": "0.20.2", + "@esbuild/linux-loong64": "0.20.2", + "@esbuild/linux-mips64el": "0.20.2", + "@esbuild/linux-ppc64": "0.20.2", + "@esbuild/linux-riscv64": "0.20.2", + "@esbuild/linux-s390x": "0.20.2", + "@esbuild/linux-x64": "0.20.2", + "@esbuild/netbsd-x64": "0.20.2", + "@esbuild/openbsd-x64": "0.20.2", + "@esbuild/sunos-x64": "0.20.2", + "@esbuild/win32-arm64": "0.20.2", + "@esbuild/win32-ia32": "0.20.2", + "@esbuild/win32-x64": "0.20.2" } }, "node_modules/esbuild-plugin-alias": { @@ -8583,9 +8398,9 @@ } }, "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", "dev": true, "engines": { "node": ">=6" @@ -8631,16 +8446,16 @@ } }, "node_modules/eslint": { - "version": "8.52.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.52.0.tgz", - "integrity": "sha512-zh/JHnaixqHZsolRB/w9/02akBk9EPrOs9JwcTP2ek7yL5bVvXuRariiaAjjoJ5DvuwQ1WAE/HsMz+w17YgBCg==", + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", + "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.2", - "@eslint/js": "8.52.0", - "@humanwhocodes/config-array": "^0.11.13", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.0", + "@humanwhocodes/config-array": "^0.11.14", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", "@ungap/structured-clone": "^1.2.0", @@ -8686,9 +8501,9 @@ } }, "node_modules/eslint-config-prettier": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.0.0.tgz", - "integrity": "sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==", + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", + "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", "dev": true, "bin": { "eslint-config-prettier": "bin/cli.js" @@ -8769,9 +8584,9 @@ } }, "node_modules/eslint-plugin-import": { - "version": "2.29.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.0.tgz", - "integrity": "sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==", + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", + "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", "dev": true, "dependencies": { "array-includes": "^3.1.7", @@ -8790,7 +8605,7 @@ "object.groupby": "^1.0.1", "object.values": "^1.1.7", "semver": "^6.3.1", - "tsconfig-paths": "^3.14.2" + "tsconfig-paths": "^3.15.0" }, "engines": { "node": ">=4" @@ -8820,6 +8635,18 @@ "node": ">=0.10.0" } }, + "node_modules/eslint-plugin-import/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, "node_modules/eslint-plugin-import/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", @@ -8829,28 +8656,40 @@ "semver": "bin/semver.js" } }, + "node_modules/eslint-plugin-import/node_modules/tsconfig-paths": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", + "dev": true, + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, "node_modules/eslint-plugin-jsx-a11y": { - "version": "6.7.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", - "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", + "version": "6.8.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz", + "integrity": "sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==", "dev": true, "dependencies": { - "@babel/runtime": "^7.20.7", - "aria-query": "^5.1.3", - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "ast-types-flow": "^0.0.7", - "axe-core": "^4.6.2", - "axobject-query": "^3.1.1", + "@babel/runtime": "^7.23.2", + "aria-query": "^5.3.0", + "array-includes": "^3.1.7", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "=4.7.0", + "axobject-query": "^3.2.1", "damerau-levenshtein": "^1.0.8", "emoji-regex": "^9.2.2", - "has": "^1.0.3", - "jsx-ast-utils": "^3.3.3", - "language-tags": "=1.0.5", + "es-iterator-helpers": "^1.0.15", + "hasown": "^2.0.0", + "jsx-ast-utils": "^3.3.5", + "language-tags": "^1.0.9", "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "semver": "^6.3.0" + "object.entries": "^1.1.7", + "object.fromentries": "^2.0.7" }, "engines": { "node": ">=4.0" @@ -8859,33 +8698,25 @@ "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" } }, - "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/eslint-plugin-prettier": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.0.1.tgz", - "integrity": "sha512-m3u5RnR56asrwV/lDC4GHorlW75DsFfmUcjfCYylTUs85dBRnB7VM6xG8eCMJdeDRnppzmxZVf1GEPJvl1JmNg==", + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.1.3.tgz", + "integrity": "sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw==", "dev": true, "dependencies": { "prettier-linter-helpers": "^1.0.0", - "synckit": "^0.8.5" + "synckit": "^0.8.6" }, "engines": { "node": "^14.18.0 || >=16.0.0" }, "funding": { - "url": "https://opencollective.com/prettier" + "url": "https://opencollective.com/eslint-plugin-prettier" }, "peerDependencies": { "@types/eslint": ">=8.0.0", "eslint": ">=8.0.0", + "eslint-config-prettier": "*", "prettier": ">=3.0.0" }, "peerDependenciesMeta": { @@ -8898,27 +8729,29 @@ } }, "node_modules/eslint-plugin-react": { - "version": "7.33.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz", - "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", + "version": "7.34.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.34.2.tgz", + "integrity": "sha512-2HCmrU+/JNigDN6tg55cRDKCQWicYAPB38JGSFDQt95jDm8rrvSUo7YPkOIm5l6ts1j1zCvysNcasvfTMQzUOw==", "dev": true, "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "array.prototype.tosorted": "^1.1.1", + "array-includes": "^3.1.8", + "array.prototype.findlast": "^1.2.5", + "array.prototype.flatmap": "^1.3.2", + "array.prototype.toreversed": "^1.1.2", + "array.prototype.tosorted": "^1.1.3", "doctrine": "^2.1.0", - "es-iterator-helpers": "^1.0.12", + "es-iterator-helpers": "^1.0.19", "estraverse": "^5.3.0", "jsx-ast-utils": "^2.4.1 || ^3.0.0", "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "object.hasown": "^1.1.2", - "object.values": "^1.1.6", + "object.entries": "^1.1.8", + "object.fromentries": "^2.0.8", + "object.hasown": "^1.1.4", + "object.values": "^1.2.0", "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.4", + "resolve": "^2.0.0-next.5", "semver": "^6.3.1", - "string.prototype.matchall": "^4.0.8" + "string.prototype.matchall": "^4.0.11" }, "engines": { "node": ">=4" @@ -9033,12 +8866,6 @@ "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/eslint/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, "node_modules/eslint/node_modules/eslint-scope": { "version": "7.2.2", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", @@ -9082,18 +8909,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, "node_modules/eslint/node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", @@ -9130,9 +8945,9 @@ } }, "node_modules/espree/node_modules/acorn": { - "version": "8.11.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", - "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", "dev": true, "bin": { "acorn": "bin/acorn" @@ -9199,20 +9014,6 @@ "node": ">=4.0" } }, - "node_modules/estree-to-babel": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/estree-to-babel/-/estree-to-babel-3.2.1.tgz", - "integrity": "sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==", - "dev": true, - "dependencies": { - "@babel/traverse": "^7.1.6", - "@babel/types": "^7.2.0", - "c8": "^7.6.0" - }, - "engines": { - "node": ">=8.3.0" - } - }, "node_modules/esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", @@ -9240,41 +9041,80 @@ "node": ">=0.8.x" } }, - "node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": ">=16.17" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/execa/node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/execa/node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", "dev": true, "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" + "mimic-fn": "^4.0.0" }, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/execa/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/express": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", - "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", + "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", "dev": true, "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", - "body-parser": "1.20.1", + "body-parser": "1.20.2", "content-disposition": "0.5.4", "content-type": "~1.0.4", - "cookie": "0.5.0", + "cookie": "0.6.0", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "2.0.0", @@ -9335,36 +9175,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/extract-zip": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz", - "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==", - "dev": true, - "dependencies": { - "concat-stream": "^1.6.2", - "debug": "^2.6.9", - "mkdirp": "^0.5.4", - "yauzl": "^2.10.0" - }, - "bin": { - "extract-zip": "cli.js" - } - }, - "node_modules/extract-zip/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/extract-zip/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, "node_modules/fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", @@ -9378,9 +9188,9 @@ "dev": true }, "node_modules/fast-glob": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", - "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", "dev": true, "dependencies": { "@nodelib/fs.stat": "^2.0.2", @@ -9441,15 +9251,6 @@ "reusify": "^1.0.4" } }, - "node_modules/fd-slicer": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", - "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", - "dev": true, - "dependencies": { - "pend": "~1.2.0" - } - }, "node_modules/fetch-retry": { "version": "5.0.6", "resolved": "https://registry.npmjs.org/fetch-retry/-/fetch-retry-5.0.6.tgz", @@ -9727,9 +9528,9 @@ "dev": true }, "node_modules/flow-parser": { - "version": "0.220.0", - "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.220.0.tgz", - "integrity": "sha512-Fks+nOCqhorp4NpAtAxf09UaR/9xDf3AnU1UkWczmpneoHh06Y3AoEA4tIe2HbYrOHT9JArUgDZpCFhP4clo1A==", + "version": "0.237.2", + "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.237.2.tgz", + "integrity": "sha512-mvI/kdfr3l1waaPbThPA8dJa77nHXrfZIun+SWvFwSwDjmeByU7mGJGRmv1+7guU6ccyLV8e1lqZA1lD4iMGnQ==", "dev": true, "engines": { "node": ">=0.4.0" @@ -9745,9 +9546,9 @@ } }, "node_modules/follow-redirects": { - "version": "1.15.3", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.3.tgz", - "integrity": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==", + "version": "1.15.6", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", + "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", "dev": true, "funding": [ { @@ -9942,9 +9743,9 @@ "dev": true }, "node_modules/fs-monkey": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.5.tgz", - "integrity": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.6.tgz", + "integrity": "sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==", "dev": true }, "node_modules/fs.realpath": { @@ -10022,16 +9823,20 @@ } }, "node_modules/get-intrinsic": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", - "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", "dev": true, "dependencies": { + "es-errors": "^1.3.0", "function-bind": "^1.1.2", "has-proto": "^1.0.1", "has-symbols": "^1.0.3", "hasown": "^2.0.0" }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -10045,38 +9850,27 @@ "node": ">=12.17" } }, - "node_modules/get-port": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz", - "integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", "dev": true, "engines": { - "node": ">=10" + "node": ">=16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" }, "engines": { "node": ">= 0.4" @@ -10116,122 +9910,20 @@ } }, "node_modules/git-raw-commits": { - "version": "2.0.11", - "resolved": "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.11.tgz", - "integrity": "sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-4.0.0.tgz", + "integrity": "sha512-ICsMM1Wk8xSGMowkOmPrzo2Fgmfo4bMHLNX6ytHjajRJUqvHOw/TFapQ+QG75c3X/tTDDhOSRPGC52dDbNM8FQ==", "dev": true, "dependencies": { - "dargs": "^7.0.0", - "lodash": "^4.17.15", - "meow": "^8.0.0", - "split2": "^3.0.0", - "through2": "^4.0.0" + "dargs": "^8.0.0", + "meow": "^12.0.1", + "split2": "^4.0.0" }, "bin": { - "git-raw-commits": "cli.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/git-raw-commits/node_modules/hosted-git-info": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", - "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/git-raw-commits/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/git-raw-commits/node_modules/meow": { - "version": "8.1.2", - "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", - "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", - "dev": true, - "dependencies": { - "@types/minimist": "^1.2.0", - "camelcase-keys": "^6.2.2", - "decamelize-keys": "^1.1.0", - "hard-rejection": "^2.1.0", - "minimist-options": "4.1.0", - "normalize-package-data": "^3.0.0", - "read-pkg-up": "^7.0.1", - "redent": "^3.0.0", - "trim-newlines": "^3.0.0", - "type-fest": "^0.18.0", - "yargs-parser": "^20.2.3" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/git-raw-commits/node_modules/normalize-package-data": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", - "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", - "dev": true, - "dependencies": { - "hosted-git-info": "^4.0.1", - "is-core-module": "^2.5.0", - "semver": "^7.3.4", - "validate-npm-package-license": "^3.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/git-raw-commits/node_modules/split2": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz", - "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", - "dev": true, - "dependencies": { - "readable-stream": "^3.0.0" - } - }, - "node_modules/git-raw-commits/node_modules/type-fest": { - "version": "0.18.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", - "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", - "dev": true, - "engines": { - "node": ">=10" + "git-raw-commits": "cli.mjs" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/git-raw-commits/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/git-raw-commits/node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "dev": true, "engines": { - "node": ">=10" + "node": ">=16" } }, "node_modules/glob": { @@ -10298,16 +9990,28 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/global-dirs": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz", - "integrity": "sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==", + "node_modules/global-directory": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/global-directory/-/global-directory-4.0.1.tgz", + "integrity": "sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==", "dev": true, "dependencies": { - "ini": "^1.3.4" + "ini": "4.1.1" }, "engines": { - "node": ">=4" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/global-directory/node_modules/ini": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.1.tgz", + "integrity": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, "node_modules/global-modules": { @@ -10515,15 +10219,6 @@ "node": ">=6" } }, - "node_modules/has": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz", - "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==", - "dev": true, - "engines": { - "node": ">= 0.4.0" - } - }, "node_modules/has-bigints": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", @@ -10543,21 +10238,21 @@ } }, "node_modules/has-property-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", - "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", "dev": true, "dependencies": { - "get-intrinsic": "^1.2.2" + "es-define-property": "^1.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", "dev": true, "engines": { "node": ">= 0.4" @@ -10579,12 +10274,12 @@ } }, "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "dev": true, "dependencies": { - "has-symbols": "^1.0.2" + "has-symbols": "^1.0.3" }, "engines": { "node": ">= 0.4" @@ -10594,9 +10289,9 @@ } }, "node_modules/hasown": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", - "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "dev": true, "dependencies": { "function-bind": "^1.1.2" @@ -10614,6 +10309,15 @@ "he": "bin/he" } }, + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "dev": true, + "dependencies": { + "react-is": "^16.7.0" + } + }, "node_modules/hosted-git-info": { "version": "2.8.9", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", @@ -10621,9 +10325,9 @@ "dev": true }, "node_modules/html-entities": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz", - "integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.5.2.tgz", + "integrity": "sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==", "dev": true, "funding": [ { @@ -10636,12 +10340,6 @@ } ] }, - "node_modules/html-escaper": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", - "dev": true - }, "node_modules/html-minifier-terser": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", @@ -10685,9 +10383,9 @@ } }, "node_modules/html-webpack-plugin": { - "version": "5.5.3", - "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.3.tgz", - "integrity": "sha512-6YrDKTuqaP/TquFH7h4srYWsZx+x6k6+FbsTm0ziCwGHDP78Unr1r9F/H4+sGmMbX08GQcJ+K64x55b+7VM/jg==", + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.0.tgz", + "integrity": "sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==", "dev": true, "dependencies": { "@types/html-minifier-terser": "^6.0.0", @@ -10704,7 +10402,16 @@ "url": "https://opencollective.com/html-webpack-plugin" }, "peerDependencies": { + "@rspack/core": "0.x || 1.x", "webpack": "^5.20.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } } }, "node_modules/htmlparser2": { @@ -10808,24 +10515,24 @@ } }, "node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", "dev": true, "engines": { - "node": ">=10.17.0" + "node": ">=16.17.0" } }, "node_modules/husky": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", - "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", + "version": "9.0.11", + "resolved": "https://registry.npmjs.org/husky/-/husky-9.0.11.tgz", + "integrity": "sha512-AB6lFlbwwyIqMdHYhwPe+kjOC3Oc5P3nThEoW/AaO2BX3vJDjWPFxYLxokUZOo6RNX20He3AaT8sESs9NJcmEw==", "dev": true, "bin": { - "husky": "lib/bin.js" + "husky": "bin.mjs" }, "engines": { - "node": ">=14" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/typicode" @@ -10924,6 +10631,16 @@ "node": ">=8" } }, + "node_modules/import-meta-resolve": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz", + "integrity": "sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, "node_modules/imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", @@ -10933,15 +10650,6 @@ "node": ">=0.8.19" } }, - "node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", @@ -10965,12 +10673,12 @@ "dev": true }, "node_modules/internal-slot": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz", - "integrity": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", "dev": true, "dependencies": { - "get-intrinsic": "^1.2.2", + "es-errors": "^1.3.0", "hasown": "^2.0.0", "side-channel": "^1.0.4" }, @@ -10978,21 +10686,6 @@ "node": ">= 0.4" } }, - "node_modules/invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "dev": true, - "dependencies": { - "loose-envify": "^1.0.0" - } - }, - "node_modules/ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", - "dev": true - }, "node_modules/ipaddr.js": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", @@ -11019,14 +10712,16 @@ } }, "node_modules/is-array-buffer": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", - "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", "dev": true, "dependencies": { "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -11111,7 +10806,22 @@ "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", "dev": true, "dependencies": { - "hasown": "^2.0.0" + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-view": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", + "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", + "dev": true, + "dependencies": { + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -11139,15 +10849,15 @@ "dev": true }, "node_modules/is-docker": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", - "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", "dev": true, "bin": { "is-docker": "cli.js" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -11219,24 +10929,6 @@ "node": ">=0.10.0" } }, - "node_modules/is-inside-container": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", - "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", - "dev": true, - "dependencies": { - "is-docker": "^3.0.0" - }, - "bin": { - "is-inside-container": "cli.js" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/is-interactive": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", @@ -11247,10 +10939,13 @@ } }, "node_modules/is-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", - "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", "dev": true, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -11272,9 +10967,9 @@ } }, "node_modules/is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", "dev": true, "engines": { "node": ">= 0.4" @@ -11283,6 +10978,18 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-network-error": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-network-error/-/is-network-error-1.1.0.tgz", + "integrity": "sha512-tUdRRAnhT+OtCZR/LxZelH/C7QtjtFrTu5tXCA8pl55eTUElUHT+GPYV8MBMBvea/j+NxQqVt3LbWMRir7Gx9g==", + "dev": true, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", @@ -11316,15 +11023,6 @@ "node": ">=8" } }, - "node_modules/is-path-cwd": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", - "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/is-path-inside": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", @@ -11369,33 +11067,39 @@ } }, "node_modules/is-set": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", - "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", "dev": true, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2" + "call-bind": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", "dev": true, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -11444,12 +11148,12 @@ } }, "node_modules/is-typed-array": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", - "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", "dev": true, "dependencies": { - "which-typed-array": "^1.1.11" + "which-typed-array": "^1.1.14" }, "engines": { "node": ">= 0.4" @@ -11471,10 +11175,13 @@ } }, "node_modules/is-weakmap": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", - "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", "dev": true, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -11492,13 +11199,16 @@ } }, "node_modules/is-weakset": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", - "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz", + "integrity": "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -11516,21 +11226,6 @@ "node": ">=8" } }, - "node_modules/is-wsl/node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "dev": true, - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/isarray": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", @@ -11552,57 +11247,6 @@ "node": ">=0.10.0" } }, - "node_modules/istanbul-lib-coverage": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", - "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-report": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", - "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", - "dev": true, - "dependencies": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^4.0.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/istanbul-lib-report/node_modules/make-dir": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", - "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", - "dev": true, - "dependencies": { - "semver": "^7.5.3" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/istanbul-reports": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", - "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", - "dev": true, - "dependencies": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/iterator.prototype": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", @@ -11635,9 +11279,9 @@ } }, "node_modules/jake": { - "version": "10.8.7", - "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz", - "integrity": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==", + "version": "10.9.1", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.1.tgz", + "integrity": "sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==", "dev": true, "dependencies": { "async": "^3.2.3", @@ -11653,9 +11297,9 @@ } }, "node_modules/jiti": { - "version": "1.21.0", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", - "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", + "version": "1.21.6", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", + "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==", "dev": true, "bin": { "jiti": "bin/jiti.js" @@ -11667,21 +11311,34 @@ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", "dev": true }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, "node_modules/jscodeshift": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.14.0.tgz", - "integrity": "sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==", - "dev": true, - "dependencies": { - "@babel/core": "^7.13.16", - "@babel/parser": "^7.13.16", - "@babel/plugin-proposal-class-properties": "^7.13.0", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8", - "@babel/plugin-proposal-optional-chaining": "^7.13.12", - "@babel/plugin-transform-modules-commonjs": "^7.13.8", - "@babel/preset-flow": "^7.13.13", - "@babel/preset-typescript": "^7.13.0", - "@babel/register": "^7.13.16", + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.15.2.tgz", + "integrity": "sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.23.0", + "@babel/parser": "^7.23.0", + "@babel/plugin-transform-class-properties": "^7.22.5", + "@babel/plugin-transform-modules-commonjs": "^7.23.0", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.11", + "@babel/plugin-transform-optional-chaining": "^7.23.0", + "@babel/plugin-transform-private-methods": "^7.22.5", + "@babel/preset-flow": "^7.22.15", + "@babel/preset-typescript": "^7.23.0", + "@babel/register": "^7.22.15", "babel-core": "^7.0.0-bridge.0", "chalk": "^4.1.2", "flow-parser": "0.*", @@ -11689,7 +11346,7 @@ "micromatch": "^4.0.4", "neo-async": "^2.5.0", "node-dir": "^0.1.17", - "recast": "^0.21.0", + "recast": "^0.23.3", "temp": "^0.8.4", "write-file-atomic": "^2.3.0" }, @@ -11698,44 +11355,11 @@ }, "peerDependencies": { "@babel/preset-env": "^7.1.6" - } - }, - "node_modules/jscodeshift/node_modules/ast-types": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.15.2.tgz", - "integrity": "sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==", - "dev": true, - "dependencies": { - "tslib": "^2.0.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/jscodeshift/node_modules/recast": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/recast/-/recast-0.21.5.tgz", - "integrity": "sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==", - "dev": true, - "dependencies": { - "ast-types": "0.15.2", - "esprima": "~4.0.0", - "source-map": "~0.6.1", - "tslib": "^2.0.1" }, - "engines": { - "node": ">= 4" - } - }, - "node_modules/jscodeshift/node_modules/write-file-atomic": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", - "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.1.11", - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.2" + "peerDependenciesMeta": { + "@babel/preset-env": { + "optional": true + } } }, "node_modules/jsesc": { @@ -11878,18 +11502,21 @@ "dev": true }, "node_modules/language-subtag-registry": { - "version": "0.3.22", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", - "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", + "version": "0.3.23", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz", + "integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==", "dev": true }, "node_modules/language-tags": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", - "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", + "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", "dev": true, "dependencies": { - "language-subtag-registry": "~0.3.2" + "language-subtag-registry": "^0.3.20" + }, + "engines": { + "node": ">=0.10" } }, "node_modules/lazy-universal-dotenv": { @@ -11971,20 +11598,6 @@ "node": ">=6.11.5" } }, - "node_modules/loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", - "dev": true, - "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - }, - "engines": { - "node": ">=8.9.0" - } - }, "node_modules/locate-path": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", @@ -12018,12 +11631,6 @@ "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", "dev": true }, - "node_modules/lodash.isfunction": { - "version": "3.0.9", - "resolved": "https://registry.npmjs.org/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz", - "integrity": "sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==", - "dev": true - }, "node_modules/lodash.isplainobject": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", @@ -12124,6 +11731,15 @@ "yallist": "^3.0.2" } }, + "node_modules/magic-string": { + "version": "0.30.10", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", + "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", + "dev": true, + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.15" + } + }, "node_modules/make-dir": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", @@ -12283,15 +11899,15 @@ } }, "node_modules/mime": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", - "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", "dev": true, "bin": { "mime": "cli.js" }, "engines": { - "node": ">=4.0.0" + "node": ">=4" } }, "node_modules/mime-db": { @@ -12408,18 +12024,6 @@ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "node_modules/mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "dev": true, - "dependencies": { - "minimist": "^1.2.6" - }, - "bin": { - "mkdirp": "bin/cmd.js" - } - }, "node_modules/mkdirp-classic": { "version": "0.5.3", "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", @@ -12556,9 +12160,9 @@ "dev": true }, "node_modules/node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", "dev": true }, "node_modules/normalize-package-data": { @@ -12755,15 +12359,30 @@ } }, "node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", + "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", "dev": true, "dependencies": { - "path-key": "^3.0.0" + "path-key": "^4.0.0" }, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/nth-check": { @@ -12797,13 +12416,13 @@ } }, "node_modules/object-is": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", - "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", + "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1" }, "engines": { "node": ">= 0.4" @@ -12822,13 +12441,13 @@ } }, "node_modules/object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", "has-symbols": "^1.0.3", "object-keys": "^1.1.1" }, @@ -12840,28 +12459,29 @@ } }, "node_modules/object.entries": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz", - "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz", + "integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" }, "engines": { "node": ">= 0.4" } }, "node_modules/object.fromentries": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", - "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -12883,27 +12503,31 @@ } }, "node_modules/object.hasown": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz", - "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.4.tgz", + "integrity": "sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==", "dev": true, "dependencies": { - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/object.values": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", - "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", + "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -12964,18 +12588,17 @@ } }, "node_modules/open": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz", - "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==", + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", "dev": true, "dependencies": { - "default-browser": "^4.0.0", - "define-lazy-prop": "^3.0.0", - "is-inside-container": "^1.0.0", + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", "is-wsl": "^2.2.0" }, "engines": { - "node": ">=14.16" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -13051,34 +12674,23 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "node_modules/p-retry": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-6.2.0.tgz", + "integrity": "sha512-JA6nkq6hKyWLLasXQXUrO4z8BUZGUt/LjlJxx8Gb2+2ntodU/SS63YZ8b0LUTbQ8ZB9iwOfhEPhg4ykKnn2KsA==", "dev": true, "dependencies": { - "aggregate-error": "^3.0.0" + "@types/retry": "0.12.2", + "is-network-error": "^1.0.0", + "retry": "^0.13.1" }, "engines": { - "node": ">=10" + "node": ">=16.17" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/p-retry": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", - "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", - "dev": true, - "dependencies": { - "@types/retry": "0.12.0", - "retry": "^0.13.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", @@ -13295,16 +12907,10 @@ "xtend": "~4.0.1" } }, - "node_modules/pend": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", - "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", - "dev": true - }, "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", + "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", "dev": true }, "node_modules/picomatch": { @@ -13361,6 +12967,15 @@ "node": ">=10" } }, + "node_modules/possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/postcss": { "version": "8.4.31", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", @@ -13540,9 +13155,25 @@ } }, "node_modules/prettier": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.0.3.tgz", - "integrity": "sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.2.tgz", + "integrity": "sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==", + "dev": true, + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/prettier-fallback": { + "name": "prettier", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.2.tgz", + "integrity": "sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==", "dev": true, "bin": { "prettier": "bin/prettier.cjs" @@ -13600,15 +13231,6 @@ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", "dev": true }, - "node_modules/progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", - "dev": true, - "engines": { - "node": ">=0.4.0" - } - }, "node_modules/prompts": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", @@ -13692,97 +13314,13 @@ "node": ">=6" } }, - "node_modules/puppeteer-core": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-2.1.1.tgz", - "integrity": "sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==", - "dev": true, - "dependencies": { - "@types/mime-types": "^2.1.0", - "debug": "^4.1.0", - "extract-zip": "^1.6.6", - "https-proxy-agent": "^4.0.0", - "mime": "^2.0.3", - "mime-types": "^2.1.25", - "progress": "^2.0.1", - "proxy-from-env": "^1.0.0", - "rimraf": "^2.6.1", - "ws": "^6.1.0" - }, - "engines": { - "node": ">=8.16.0" - } - }, - "node_modules/puppeteer-core/node_modules/agent-base": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-5.1.1.tgz", - "integrity": "sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==", - "dev": true, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/puppeteer-core/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/puppeteer-core/node_modules/https-proxy-agent": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-4.0.0.tgz", - "integrity": "sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==", - "dev": true, - "dependencies": { - "agent-base": "5", - "debug": "4" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/puppeteer-core/node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, - "node_modules/puppeteer-core/node_modules/ws": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", - "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", - "dev": true, - "dependencies": { - "async-limiter": "~1.0.0" - } - }, "node_modules/qs": { - "version": "6.11.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz", - "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==", + "version": "6.12.1", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.12.1.tgz", + "integrity": "sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==", "dev": true, "dependencies": { - "side-channel": "^1.0.4" + "side-channel": "^1.0.6" }, "engines": { "node": ">=0.6" @@ -13811,14 +13349,11 @@ } ] }, - "node_modules/quick-lru": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", - "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", - "dev": true, - "engines": { - "node": ">=8" - } + "node_modules/raf-schd": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/raf-schd/-/raf-schd-4.0.3.tgz", + "integrity": "sha512-tQkJl2GRWh83ui2DiPTJz9wEiMN20syf+5oKfB03yYP7ioZcJwsIK8FjrtLwH1m7C7e+Tt2yYBlrOpdT+dyeIQ==", + "dev": true }, "node_modules/ramda": { "version": "0.29.0", @@ -13849,9 +13384,9 @@ } }, "node_modules/raw-body": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", "dev": true, "dependencies": { "bytes": "3.1.2", @@ -13872,10 +13407,48 @@ "node": ">= 0.8" } }, + "node_modules/rc-slider": { + "version": "10.6.2", + "resolved": "https://registry.npmjs.org/rc-slider/-/rc-slider-10.6.2.tgz", + "integrity": "sha512-FjkoFjyvUQWcBo1F3RgSglky3ar0+qHLM41PlFVYB4Bj3RD8E/Mv7kqMouLFBU+3aFglMzzctAIWRwajEuueSw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-util": "^5.36.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-util": { + "version": "5.42.1", + "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-5.42.1.tgz", + "integrity": "sha512-9raEonoOiRka2hXedkMjILdz24Z4UHfAoyWSi/na1B4w4fiBujV+atJEdQrZST+Bs7NuQB0FFBsRAdD8ykInfg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.18.3", + "react-is": "^18.2.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-util/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, "node_modules/react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", "dev": true, "dependencies": { "loose-envify": "^1.1.0" @@ -13884,6 +13457,25 @@ "node": ">=0.10.0" } }, + "node_modules/react-beautiful-dnd": { + "version": "13.1.1", + "resolved": "https://registry.npmjs.org/react-beautiful-dnd/-/react-beautiful-dnd-13.1.1.tgz", + "integrity": "sha512-0Lvs4tq2VcrEjEgDXHjT98r+63drkKEgqyxdA7qD3mvKwga6a5SscbdLPO2IExotU1jW8L0Ksdl0Cj2AF67nPQ==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.9.2", + "css-box-model": "^1.2.0", + "memoize-one": "^5.1.1", + "raf-schd": "^4.0.2", + "react-redux": "^7.2.0", + "redux": "^4.0.4", + "use-memo-one": "^1.1.1" + }, + "peerDependencies": { + "react": "^16.8.5 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.5 || ^17.0.0 || ^18.0.0" + } + }, "node_modules/react-copy-to-clipboard": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/react-copy-to-clipboard/-/react-copy-to-clipboard-5.1.0.tgz", @@ -13898,27 +13490,24 @@ } }, "node_modules/react-docgen": { - "version": "5.4.3", - "resolved": "https://registry.npmjs.org/react-docgen/-/react-docgen-5.4.3.tgz", - "integrity": "sha512-xlLJyOlnfr8lLEEeaDZ+X2J/KJoe6Nr9AzxnkdQWush5hz2ZSu66w6iLMOScMmxoSHWpWMn+k3v5ZiyCfcWsOA==", + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/react-docgen/-/react-docgen-7.0.3.tgz", + "integrity": "sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==", "dev": true, "dependencies": { - "@babel/core": "^7.7.5", - "@babel/generator": "^7.12.11", - "@babel/runtime": "^7.7.6", - "ast-types": "^0.14.2", - "commander": "^2.19.0", + "@babel/core": "^7.18.9", + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9", + "@types/babel__core": "^7.18.0", + "@types/babel__traverse": "^7.18.0", + "@types/doctrine": "^0.0.9", + "@types/resolve": "^1.20.2", "doctrine": "^3.0.0", - "estree-to-babel": "^3.1.0", - "neo-async": "^2.6.1", - "node-dir": "^0.1.10", - "strip-indent": "^3.0.0" - }, - "bin": { - "react-docgen": "bin/react-docgen.js" + "resolve": "^1.22.1", + "strip-indent": "^4.0.0" }, "engines": { - "node": ">=8.10.0" + "node": ">=16.14.0" } }, "node_modules/react-docgen-typescript": { @@ -13930,35 +13519,23 @@ "typescript": ">= 4.3.x" } }, - "node_modules/react-docgen/node_modules/ast-types": { - "version": "0.14.2", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.14.2.tgz", - "integrity": "sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==", - "dev": true, - "dependencies": { - "tslib": "^2.0.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/react-docgen/node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "node_modules/react-docgen/node_modules/@types/doctrine": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/@types/doctrine/-/doctrine-0.0.9.tgz", + "integrity": "sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==", "dev": true }, "node_modules/react-dom": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", "dev": true, "dependencies": { "loose-envify": "^1.1.0", - "scheduler": "^0.23.0" + "scheduler": "^0.23.2" }, "peerDependencies": { - "react": "^18.2.0" + "react": "^18.3.1" } }, "node_modules/react-element-to-jsx-string": { @@ -14009,15 +13586,37 @@ "react-dom": "^16.8.0 || ^17 || ^18" } }, - "node_modules/react-refresh": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.11.0.tgz", - "integrity": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==", + "node_modules/react-redux": { + "version": "7.2.9", + "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.9.tgz", + "integrity": "sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "@babel/runtime": "^7.15.4", + "@types/react-redux": "^7.1.20", + "hoist-non-react-statics": "^3.3.2", + "loose-envify": "^1.4.0", + "prop-types": "^15.7.2", + "react-is": "^17.0.2" + }, + "peerDependencies": { + "react": "^16.8.3 || ^17 || ^18" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + } } }, + "node_modules/react-redux/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "dev": true + }, "node_modules/react-transition-group": { "version": "4.4.5", "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", @@ -14035,19 +13634,19 @@ } }, "node_modules/react-virtualized-auto-sizer": { - "version": "1.0.20", - "resolved": "https://registry.npmjs.org/react-virtualized-auto-sizer/-/react-virtualized-auto-sizer-1.0.20.tgz", - "integrity": "sha512-OdIyHwj4S4wyhbKHOKM1wLSj/UDXm839Z3Cvfg2a9j+He6yDa6i5p0qQvEiCnyQlGO/HyfSnigQwuxvYalaAXA==", + "version": "1.0.24", + "resolved": "https://registry.npmjs.org/react-virtualized-auto-sizer/-/react-virtualized-auto-sizer-1.0.24.tgz", + "integrity": "sha512-3kCn7N9NEb3FlvJrSHWGQ4iVl+ydQObq2fHMn12i5wbtm74zHOPhz/i64OL3c1S1vi9i2GXtZqNqUJTQ+BnNfg==", "dev": true, "peerDependencies": { - "react": "^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0-rc", - "react-dom": "^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0-rc" + "react": "^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0", + "react-dom": "^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0" } }, "node_modules/react-window": { - "version": "1.8.9", - "resolved": "https://registry.npmjs.org/react-window/-/react-window-1.8.9.tgz", - "integrity": "sha512-+Eqx/fj1Aa5WnhRfj9dJg4VYATGwIUP2ItwItiJ6zboKWA6EX3lYDAXfGF2hyNqplEprhbtjbipiADEcwQ823Q==", + "version": "1.8.10", + "resolved": "https://registry.npmjs.org/react-window/-/react-window-1.8.10.tgz", + "integrity": "sha512-Y0Cx+dnU6NLa5/EvoHukUD0BklJ8qITCtVEPY1C/nL8wwoZ0b5aEw8Ff1dOVHw7fCzMt55XfJDd8S8W8LCaUCg==", "dev": true, "dependencies": { "@babel/runtime": "^7.0.0", @@ -14216,44 +13815,41 @@ } }, "node_modules/recast": { - "version": "0.23.4", - "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.4.tgz", - "integrity": "sha512-qtEDqIZGVcSZCHniWwZWbRy79Dc6Wp3kT/UmDA2RJKBPg7+7k51aQBZirHmUGn5uvHf2rg8DkjizrN26k61ATw==", + "version": "0.23.9", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.9.tgz", + "integrity": "sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==", "dev": true, "dependencies": { - "assert": "^2.0.0", "ast-types": "^0.16.1", "esprima": "~4.0.0", "source-map": "~0.6.1", + "tiny-invariant": "^1.3.3", "tslib": "^2.0.1" }, "engines": { "node": ">= 4" } }, - "node_modules/redent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", - "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "node_modules/redux": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz", + "integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==", "dev": true, "dependencies": { - "indent-string": "^4.0.0", - "strip-indent": "^3.0.0" - }, - "engines": { - "node": ">=8" + "@babel/runtime": "^7.9.2" } }, "node_modules/reflect.getprototypeof": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz", - "integrity": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz", + "integrity": "sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.1", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", "globalthis": "^1.0.3", "which-builtin-type": "^1.1.3" }, @@ -14307,14 +13903,15 @@ } }, "node_modules/regexp.prototype.flags": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", - "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", + "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "set-function-name": "^2.0.0" + "call-bind": "^1.0.6", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.1" }, "engines": { "node": ">= 0.4" @@ -14495,18 +14092,6 @@ "node": ">=8" } }, - "node_modules/resolve-global": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/resolve-global/-/resolve-global-1.0.0.tgz", - "integrity": "sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==", - "dev": true, - "dependencies": { - "global-dirs": "^0.1.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/resolve-pkg-maps": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", @@ -14549,9 +14134,9 @@ } }, "node_modules/rimraf": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.5.tgz", - "integrity": "sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==", + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.7.tgz", + "integrity": "sha512-nV6YcJo5wbLW77m+8KjH8aB/7/rxQy9SZ0HY5shnwULfS+9nmTtVXAJET5NdZmCzA4fPI/Hm1wo/Po/4mopOdg==", "dev": true, "dependencies": { "glob": "^10.3.7" @@ -14560,27 +14145,12 @@ "rimraf": "dist/esm/bin.mjs" }, "engines": { - "node": ">=14" + "node": ">=14.18" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/run-applescript": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz", - "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==", - "dev": true, - "dependencies": { - "execa": "^5.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", @@ -14605,13 +14175,13 @@ } }, "node_modules/safe-array-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", - "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", + "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4", "has-symbols": "^1.0.3", "isarray": "^2.0.5" }, @@ -14652,15 +14222,18 @@ } }, "node_modules/safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", "is-regex": "^1.1.4" }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -14672,9 +14245,9 @@ "dev": true }, "node_modules/sass": { - "version": "1.69.5", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.69.5.tgz", - "integrity": "sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==", + "version": "1.77.5", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.77.5.tgz", + "integrity": "sha512-oDfX1mukIlxacPdQqNb6mV2tVCrnE+P3nVYioy72V5tlk56CPNcO4TCuFcaCRKKfJ1M3lH95CleRS+dVKL2qMg==", "dev": true, "dependencies": { "chokidar": ">=3.0.0 <4.0.0", @@ -14727,9 +14300,9 @@ } }, "node_modules/scheduler": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", "dev": true, "dependencies": { "loose-envify": "^1.1.0" @@ -14856,18 +14429,6 @@ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "node_modules/send/node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true, - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/send/node_modules/ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", @@ -14899,29 +14460,32 @@ } }, "node_modules/set-function-length": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", - "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", "dev": true, "dependencies": { - "define-data-property": "^1.1.1", - "get-intrinsic": "^1.2.1", + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" + "has-property-descriptors": "^1.0.2" }, "engines": { "node": ">= 0.4" } }, "node_modules/set-function-name": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", - "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", "dev": true, "dependencies": { - "define-data-property": "^1.0.1", + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", "functions-have-names": "^1.2.3", - "has-property-descriptors": "^1.0.0" + "has-property-descriptors": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -14976,36 +14540,28 @@ } }, "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", "dev": true, "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "node_modules/simple-update-notifier": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz", - "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==", - "dev": true, - "dependencies": { - "semver": "^7.5.3" - }, - "engines": { - "node": ">=10" - } + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true }, "node_modules/sisteransi": { "version": "1.0.5", @@ -15118,12 +14674,6 @@ "node": ">= 10.x" } }, - "node_modules/stackframe": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", - "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", - "dev": true - }, "node_modules/statuses": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", @@ -15139,6 +14689,23 @@ "integrity": "sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==", "dev": true }, + "node_modules/storybook": { + "version": "8.1.8", + "resolved": "https://registry.npmjs.org/storybook/-/storybook-8.1.8.tgz", + "integrity": "sha512-2ld3JEmPWy3KOksfF0Reyiq5SC+dYBzV2XW2/YTkNkLTkyNofhdPeq71COGcB0Lq2PHZkZyNin8htQWbh0LLNg==", + "dev": true, + "dependencies": { + "@storybook/cli": "8.1.8" + }, + "bin": { + "sb": "index.js", + "storybook": "index.js" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, "node_modules/stream-shift": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", @@ -15220,20 +14787,26 @@ } }, "node_modules/string.prototype.matchall": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz", - "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==", + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz", + "integrity": "sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "regexp.prototype.flags": "^1.5.0", - "set-function-name": "^2.0.0", - "side-channel": "^1.0.4" + "internal-slot": "^1.0.7", + "regexp.prototype.flags": "^1.5.2", + "set-function-name": "^2.0.2", + "side-channel": "^1.0.6" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -15257,14 +14830,15 @@ } }, "node_modules/string.prototype.trim": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", - "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", + "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-object-atoms": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -15274,28 +14848,31 @@ } }, "node_modules/string.prototype.trimend": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", - "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", + "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/string.prototype.trimstart": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", - "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -15336,24 +14913,30 @@ } }, "node_modules/strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", "dev": true, "engines": { - "node": ">=6" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/strip-indent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", - "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-4.0.0.tgz", + "integrity": "sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==", "dev": true, "dependencies": { - "min-indent": "^1.0.0" + "min-indent": "^1.0.1" }, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/strip-json-comments": { @@ -15719,21 +15302,6 @@ "node": ">=8" } }, - "node_modules/stylelint/node_modules/strip-indent": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-4.0.0.tgz", - "integrity": "sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==", - "dev": true, - "dependencies": { - "min-indent": "^1.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/stylelint/node_modules/trim-newlines": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-4.1.1.tgz", @@ -15836,15 +15404,16 @@ "dev": true }, "node_modules/svgo": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.0.2.tgz", - "integrity": "sha512-Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.3.2.tgz", + "integrity": "sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==", "dev": true, "dependencies": { "@trysound/sax": "0.2.0", "commander": "^7.2.0", "css-select": "^5.1.0", - "css-tree": "^2.2.1", + "css-tree": "^2.3.1", + "css-what": "^6.1.0", "csso": "^5.0.5", "picocolors": "^1.0.0" }, @@ -15860,29 +15429,26 @@ } }, "node_modules/swc-loader": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/swc-loader/-/swc-loader-0.2.3.tgz", - "integrity": "sha512-D1p6XXURfSPleZZA/Lipb3A8pZ17fP4NObZvFCDjK/OKljroqDpPmsBdTraWhVBqUNpcWBQY1imWdoPScRlQ7A==", + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/swc-loader/-/swc-loader-0.2.6.tgz", + "integrity": "sha512-9Zi9UP2YmDpgmQVbyOPJClY0dwf58JDyDMQ7uRc4krmc72twNI2fvlBWHLqVekBpPc7h5NJkGVT1zNDxFrqhvg==", "dev": true, + "dependencies": { + "@swc/counter": "^0.1.3" + }, "peerDependencies": { "@swc/core": "^1.2.147", "webpack": ">=2" } }, - "node_modules/synchronous-promise": { - "version": "2.0.17", - "resolved": "https://registry.npmjs.org/synchronous-promise/-/synchronous-promise-2.0.17.tgz", - "integrity": "sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==", - "dev": true - }, "node_modules/synckit": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", - "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", + "version": "0.8.8", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.8.tgz", + "integrity": "sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==", "dev": true, "dependencies": { - "@pkgr/utils": "^2.3.1", - "tslib": "^2.5.0" + "@pkgr/core": "^0.1.0", + "tslib": "^2.6.2" }, "engines": { "node": "^14.18.0 || >=16.0.0" @@ -16042,18 +15608,19 @@ } }, "node_modules/temp-dir": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", - "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-3.0.0.tgz", + "integrity": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==", "dev": true, "engines": { - "node": ">=8" + "node": ">=14.16" } }, "node_modules/temp/node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", "dev": true, "dependencies": { "fs.realpath": "^1.0.0", @@ -16074,6 +15641,7 @@ "version": "2.6.3", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", "dev": true, "dependencies": { "glob": "^7.1.3" @@ -16083,31 +15651,18 @@ } }, "node_modules/tempy": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tempy/-/tempy-1.0.1.tgz", - "integrity": "sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-3.1.0.tgz", + "integrity": "sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==", "dev": true, "dependencies": { - "del": "^6.0.0", - "is-stream": "^2.0.0", - "temp-dir": "^2.0.0", - "type-fest": "^0.16.0", - "unique-string": "^2.0.0" - }, - "engines": { - "node": ">=10" + "is-stream": "^3.0.0", + "temp-dir": "^3.0.0", + "type-fest": "^2.12.2", + "unique-string": "^3.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/tempy/node_modules/type-fest": { - "version": "0.16.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", - "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", - "dev": true, "engines": { - "node": ">=10" + "node": ">=14.16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -16212,40 +15767,6 @@ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "dev": true }, - "node_modules/test-exclude": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", - "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", - "dev": true, - "dependencies": { - "@istanbuljs/schema": "^0.1.2", - "glob": "^7.1.4", - "minimatch": "^3.0.4" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/test-exclude/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/text-extensions": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-2.4.0.tgz", @@ -16270,33 +15791,12 @@ "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", "dev": true }, - "node_modules/through2": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", - "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", - "dev": true, - "dependencies": { - "readable-stream": "3" - } - }, "node_modules/tiny-invariant": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz", - "integrity": "sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==", + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", + "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==", "dev": true }, - "node_modules/titleize": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz", - "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/to-fast-properties": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", @@ -16339,22 +15839,13 @@ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", "dev": true }, - "node_modules/trim-newlines": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", - "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/ts-api-utils": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz", - "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", + "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", "dev": true, "engines": { - "node": ">=16.13.0" + "node": ">=16" }, "peerDependencies": { "typescript": ">=4.2.0" @@ -16370,27 +15861,17 @@ } }, "node_modules/tsconfig-paths": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", - "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", + "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", "dev": true, "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", + "json5": "^2.2.2", "minimist": "^1.2.6", "strip-bom": "^3.0.0" - } - }, - "node_modules/tsconfig-paths/node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "dependencies": { - "minimist": "^1.2.0" }, - "bin": { - "json5": "lib/cli.js" + "engines": { + "node": ">=6" } }, "node_modules/tslib": { @@ -16437,29 +15918,30 @@ } }, "node_modules/typed-array-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", - "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", + "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", - "is-typed-array": "^1.1.10" + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" }, "engines": { "node": ">= 0.4" } }, "node_modules/typed-array-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", - "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", + "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", + "call-bind": "^1.0.7", "for-each": "^0.3.3", - "has-proto": "^1.0.1", - "is-typed-array": "^1.1.10" + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" }, "engines": { "node": ">= 0.4" @@ -16469,16 +15951,17 @@ } }, "node_modules/typed-array-byte-offset": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", - "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", + "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", "dev": true, "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", "for-each": "^0.3.3", - "has-proto": "^1.0.1", - "is-typed-array": "^1.1.10" + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" }, "engines": { "node": ">= 0.4" @@ -16488,29 +15971,29 @@ } }, "node_modules/typed-array-length": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", - "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", + "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", + "call-bind": "^1.0.7", "for-each": "^0.3.3", - "is-typed-array": "^1.1.9" + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", - "dev": true - }, "node_modules/typescript": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", - "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", + "version": "5.4.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz", + "integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==", "dev": true, "bin": { "tsc": "bin/tsc", @@ -16521,9 +16004,9 @@ } }, "node_modules/uglify-js": { - "version": "3.17.4", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", - "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", + "version": "3.18.0", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.18.0.tgz", + "integrity": "sha512-SyVVbcNBCk0dzr9XL/R/ySrmYf0s372K6/hFklzgcp2lBFyXtw4I7BOdDjlLhE1aVqaI/SHWXWmYdlZxuyF38A==", "dev": true, "optional": true, "bin": { @@ -16594,16 +16077,31 @@ "node": ">=4" } }, + "node_modules/unicorn-magic": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", + "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/unique-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", - "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", + "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", "dev": true, "dependencies": { - "crypto-random-string": "^2.0.0" + "crypto-random-string": "^4.0.0" }, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/universalify": { @@ -16634,9 +16132,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", - "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz", + "integrity": "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==", "dev": true, "funding": [ { @@ -16653,8 +16151,8 @@ } ], "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "escalade": "^3.1.2", + "picocolors": "^1.0.1" }, "bin": { "update-browserslist-db": "cli.js" @@ -16688,6 +16186,15 @@ "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", "dev": true }, + "node_modules/use-memo-one": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/use-memo-one/-/use-memo-one-1.1.3.tgz", + "integrity": "sha512-g66/K7ZQGYrI6dy8GLpVcMsBp4s17xNkYJVSMvTEevGy3nDxHOfE6z8BVE22+5G5x7t3+bhzrlTDB7ObrEE0cQ==", + "dev": true, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, "node_modules/util": { "version": "0.12.5", "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", @@ -16713,15 +16220,6 @@ "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==", "dev": true }, - "node_modules/utility-types": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/utility-types/-/utility-types-3.10.0.tgz", - "integrity": "sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, "node_modules/utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", @@ -16731,20 +16229,6 @@ "node": ">= 0.4.0" } }, - "node_modules/v8-to-istanbul": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.3.tgz", - "integrity": "sha512-9lDD+EVI2fjFsMWXc6dy5JJzBsVTcQ2fVkfBvncZ6xJWG9wtBhOldG+mHkSL0+V1K/xgZz0JDO5UT5hFwHUghg==", - "dev": true, - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.12", - "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^2.0.0" - }, - "engines": { - "node": ">=10.12.0" - } - }, "node_modules/validate-npm-package-license": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", @@ -16849,9 +16333,9 @@ } }, "node_modules/webpack-dev-middleware": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-6.1.1.tgz", - "integrity": "sha512-y51HrHaFeeWir0YO4f0g+9GwZawuigzcAdRNon6jErXy/SqV/+O6eaVAzDqE6t3e3NpGeR5CS+cCDaTC+V3yEQ==", + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-6.1.3.tgz", + "integrity": "sha512-A4ChP0Qj8oGociTs6UdlRUGANIGrCDL3y+pmQMc+dSsraXHCatFpmMey4mYELA+juqwUqwQsUgJJISXl1KWmiw==", "dev": true, "dependencies": { "colorette": "^2.0.10", @@ -16896,9 +16380,9 @@ } }, "node_modules/webpack-hot-middleware": { - "version": "2.25.4", - "resolved": "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.25.4.tgz", - "integrity": "sha512-IRmTspuHM06aZh98OhBJtqLpeWFM8FXJS5UYpKYxCJzyFoyWj1w6VGFfomZU7OPA55dMLrQK0pRT1eQ3PACr4w==", + "version": "2.26.1", + "resolved": "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.26.1.tgz", + "integrity": "sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A==", "dev": true, "dependencies": { "ansi-html-community": "0.0.8", @@ -17016,31 +16500,34 @@ } }, "node_modules/which-collection": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", - "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", "dev": true, "dependencies": { - "is-map": "^2.0.1", - "is-set": "^2.0.1", - "is-weakmap": "^2.0.1", - "is-weakset": "^2.0.1" + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/which-typed-array": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz", - "integrity": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==", + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", + "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", "dev": true, "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.4", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" + "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -17155,10 +16642,21 @@ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true }, + "node_modules/write-file-atomic": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", + "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, "node_modules/ws": { - "version": "8.14.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.14.2.tgz", - "integrity": "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==", + "version": "8.17.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.0.tgz", + "integrity": "sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==", "dev": true, "engines": { "node": ">=10.0.0" @@ -17256,16 +16754,6 @@ "node": ">=8" } }, - "node_modules/yauzl": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", - "dev": true, - "dependencies": { - "buffer-crc32": "~0.2.3", - "fd-slicer": "~1.1.0" - } - }, "node_modules/yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", diff --git a/package.json b/package.json index 80ffdcc..c7e0c8c 100644 --- a/package.json +++ b/package.json @@ -28,14 +28,14 @@ }, "homepage": "https://gravity-ui.com", "scripts": { - "prepare": "husky install", + "prepare": "husky", "lint:js": "eslint --ext .js,.jsx,.mjs,.ts,.tsx . .storybook", "lint:styles": "stylelint '**/*.scss' '.storybook/**/*.scss'", "lint": "run-p lint:*", "typecheck": "tsc --noEmit && tsc --noEmit -p .storybook", "test": "exit 0", - "start": "sb dev -p 7009", - "build-storybook": "sb build -c .storybook -o storybook-static", + "start": "storybook dev -p 7009", + "build-storybook": "storybook build -c .storybook -o storybook-static", "src:download": "node scripts/download.mjs", "src:icons": "node scripts/icons.mjs", "build:cjs": "tsc --declaration --outDir .", @@ -45,42 +45,44 @@ "prepublishOnly": "npm run build" }, "devDependencies": { - "@babel/preset-env": "^7.23.2", - "@babel/preset-react": "^7.22.15", - "@babel/preset-typescript": "^7.23.2", + "@babel/preset-env": "^7.24.7", + "@babel/preset-react": "^7.24.7", + "@babel/preset-typescript": "^7.24.7", "@bem-react/classname": "^1.6.0", - "@commitlint/cli": "^18.2.0", - "@commitlint/config-conventional": "^18.1.0", - "@figma-export/core": "^4.7.0", - "@gravity-ui/eslint-config": "^3.1.1", + "@commitlint/cli": "^19.3.0", + "@commitlint/config-conventional": "^19.2.2", + "@figma-export/core": "^6.0.0", + "@gravity-ui/eslint-config": "^3.2.0", "@gravity-ui/prettier-config": "^1.1.0", "@gravity-ui/stylelint-config": "^4.0.1", "@gravity-ui/tsconfig": "^1.0.0", - "@gravity-ui/uikit": "^5.18.1", - "@storybook/cli": "^7.5.2", - "@storybook/manager-api": "^7.5.2", + "@gravity-ui/uikit": "^6.17.0", + "@storybook/addon-webpack5-compiler-swc": "^1.0.3", + "@storybook/cli": "^8.1.8", + "@storybook/manager-api": "^8.1.8", "@storybook/preset-scss": "^1.0.3", - "@storybook/react": "^7.5.2", - "@storybook/react-webpack5": "^7.5.2", - "@storybook/theming": "^7.5.2", + "@storybook/react": "^8.1.8", + "@storybook/react-webpack5": "^8.1.8", + "@storybook/theming": "^8.1.8", "@svgr/core": "^8.1.0", "@svgr/plugin-jsx": "^8.1.0", - "@types/react": "^18.2.33", - "@types/react-dom": "^18.2.14", + "@types/react": "^18.3.3", + "@types/react-dom": "^18.3.0", "cross-env": "^7.0.3", - "eslint": "^8.52.0", - "fast-glob": "^3.3.1", - "husky": "^8.0.3", + "eslint": "^8.57.0", + "fast-glob": "^3.3.2", + "husky": "^9.0.11", "nano-staged": "^0.8.0", "npm-run-all": "^4.1.5", - "prettier": "^3.0.3", - "react": "^18.2.0", - "react-dom": "^18.2.0", - "rimraf": "^5.0.5", - "sass": "^1.69.5", + "prettier": "^3.3.2", + "react": "^18.3.1", + "react-dom": "^18.3.1", + "rimraf": "^5.0.7", + "sass": "^1.77.5", + "storybook": "^8.1.8", "stylelint": "^15.11.0", - "svgo": "^3.0.2", - "typescript": "^5.2.2" + "svgo": "^3.3.2", + "typescript": "^5.4.5" }, "peerDependencies": { "react": "*" diff --git a/svgs/abbr-api.svg b/svgs/abbr-api.svg index f96a352..db80791 100644 --- a/svgs/abbr-api.svg +++ b/svgs/abbr-api.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/abbr-ml.svg b/svgs/abbr-ml.svg index 5fcf978..062ca63 100644 --- a/svgs/abbr-ml.svg +++ b/svgs/abbr-ml.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/abbr-ql.svg b/svgs/abbr-ql.svg index 40f32f7..519891a 100644 --- a/svgs/abbr-ql.svg +++ b/svgs/abbr-ql.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/abbr-sql.svg b/svgs/abbr-sql.svg index 6df5a47..313cbdc 100644 --- a/svgs/abbr-sql.svg +++ b/svgs/abbr-sql.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/abbr-zip.svg b/svgs/abbr-zip.svg index 8eaa876..99e4445 100644 --- a/svgs/abbr-zip.svg +++ b/svgs/abbr-zip.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/antenna-signal.svg b/svgs/antenna-signal.svg index 3f2d3b3..9d3b655 100644 --- a/svgs/antenna-signal.svg +++ b/svgs/antenna-signal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/aperture.svg b/svgs/aperture.svg index 1ebb0aa..d633a14 100644 --- a/svgs/aperture.svg +++ b/svgs/aperture.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/archive.svg b/svgs/archive.svg index a8573ee..7dadf98 100644 --- a/svgs/archive.svg +++ b/svgs/archive.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-chevron-down.svg b/svgs/arrow-chevron-down.svg index 12d0c0a..819743e 100644 --- a/svgs/arrow-chevron-down.svg +++ b/svgs/arrow-chevron-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-chevron-left.svg b/svgs/arrow-chevron-left.svg index a147192..ac078b7 100644 --- a/svgs/arrow-chevron-left.svg +++ b/svgs/arrow-chevron-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-chevron-right.svg b/svgs/arrow-chevron-right.svg index 2984d61..af2fcee 100644 --- a/svgs/arrow-chevron-right.svg +++ b/svgs/arrow-chevron-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-chevron-up.svg b/svgs/arrow-chevron-up.svg index 859b692..3324eae 100644 --- a/svgs/arrow-chevron-up.svg +++ b/svgs/arrow-chevron-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-down-from-line.svg b/svgs/arrow-down-from-line.svg index ef25d79..9262c52 100644 --- a/svgs/arrow-down-from-line.svg +++ b/svgs/arrow-down-from-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-down-to-line.svg b/svgs/arrow-down-to-line.svg index 8f28c9c..0f1efe8 100644 --- a/svgs/arrow-down-to-line.svg +++ b/svgs/arrow-down-to-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-down-to-square.svg b/svgs/arrow-down-to-square.svg index b339649..4129e54 100644 --- a/svgs/arrow-down-to-square.svg +++ b/svgs/arrow-down-to-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-down.svg b/svgs/arrow-down.svg index 968475c..c35ee4d 100644 --- a/svgs/arrow-down.svg +++ b/svgs/arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-left-from-line.svg b/svgs/arrow-left-from-line.svg index 62b4f53..f7dc753 100644 --- a/svgs/arrow-left-from-line.svg +++ b/svgs/arrow-left-from-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-left-to-line.svg b/svgs/arrow-left-to-line.svg index 152cfd3..bf51f55 100644 --- a/svgs/arrow-left-to-line.svg +++ b/svgs/arrow-left-to-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-left.svg b/svgs/arrow-left.svg index 927fb37..d1690fa 100644 --- a/svgs/arrow-left.svg +++ b/svgs/arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-right-arrow-left.svg b/svgs/arrow-right-arrow-left.svg index d358e8b..782a3fc 100644 --- a/svgs/arrow-right-arrow-left.svg +++ b/svgs/arrow-right-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-right-from-line.svg b/svgs/arrow-right-from-line.svg index 38da807..cbdc546 100644 --- a/svgs/arrow-right-from-line.svg +++ b/svgs/arrow-right-from-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-right-from-square.svg b/svgs/arrow-right-from-square.svg index 7d9b215..c9a20e6 100644 --- a/svgs/arrow-right-from-square.svg +++ b/svgs/arrow-right-from-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-right-to-line.svg b/svgs/arrow-right-to-line.svg index beca610..d2e6c50 100644 --- a/svgs/arrow-right-to-line.svg +++ b/svgs/arrow-right-to-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-right-to-square.svg b/svgs/arrow-right-to-square.svg index 928078f..eded1e1 100644 --- a/svgs/arrow-right-to-square.svg +++ b/svgs/arrow-right-to-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-right.svg b/svgs/arrow-right.svg index bede2f9..0646ee5 100644 --- a/svgs/arrow-right.svg +++ b/svgs/arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-rotate-left.svg b/svgs/arrow-rotate-left.svg index d59a9c2..fb860c5 100644 --- a/svgs/arrow-rotate-left.svg +++ b/svgs/arrow-rotate-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-rotate-right.svg b/svgs/arrow-rotate-right.svg index d4f3df9..0f3dd52 100644 --- a/svgs/arrow-rotate-right.svg +++ b/svgs/arrow-rotate-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-shape-down-from-line.svg b/svgs/arrow-shape-down-from-line.svg index e56106d..f0ac0ec 100644 --- a/svgs/arrow-shape-down-from-line.svg +++ b/svgs/arrow-shape-down-from-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-shape-down-to-line.svg b/svgs/arrow-shape-down-to-line.svg index 29a981a..35a9704 100644 --- a/svgs/arrow-shape-down-to-line.svg +++ b/svgs/arrow-shape-down-to-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-shape-down.svg b/svgs/arrow-shape-down.svg index f71ba8c..7c34d9a 100644 --- a/svgs/arrow-shape-down.svg +++ b/svgs/arrow-shape-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-shape-left-from-line.svg b/svgs/arrow-shape-left-from-line.svg index ba81e05..ee7a820 100644 --- a/svgs/arrow-shape-left-from-line.svg +++ b/svgs/arrow-shape-left-from-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-shape-left-to-line.svg b/svgs/arrow-shape-left-to-line.svg index 416af35..08d58fd 100644 --- a/svgs/arrow-shape-left-to-line.svg +++ b/svgs/arrow-shape-left-to-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-shape-left.svg b/svgs/arrow-shape-left.svg index 5d5af59..891167e 100644 --- a/svgs/arrow-shape-left.svg +++ b/svgs/arrow-shape-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-shape-right-from-line.svg b/svgs/arrow-shape-right-from-line.svg index 6ff54d9..953d116 100644 --- a/svgs/arrow-shape-right-from-line.svg +++ b/svgs/arrow-shape-right-from-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-shape-right-to-line.svg b/svgs/arrow-shape-right-to-line.svg index e857bee..9c6c22d 100644 --- a/svgs/arrow-shape-right-to-line.svg +++ b/svgs/arrow-shape-right-to-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-shape-right.svg b/svgs/arrow-shape-right.svg index 58fd288..16583d4 100644 --- a/svgs/arrow-shape-right.svg +++ b/svgs/arrow-shape-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-shape-turn-up-left.svg b/svgs/arrow-shape-turn-up-left.svg index b33fe7b..711de62 100644 --- a/svgs/arrow-shape-turn-up-left.svg +++ b/svgs/arrow-shape-turn-up-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-shape-turn-up-right.svg b/svgs/arrow-shape-turn-up-right.svg index ef6ef40..ca0437c 100644 --- a/svgs/arrow-shape-turn-up-right.svg +++ b/svgs/arrow-shape-turn-up-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-shape-up-from-line.svg b/svgs/arrow-shape-up-from-line.svg index 7005553..ba1887b 100644 --- a/svgs/arrow-shape-up-from-line.svg +++ b/svgs/arrow-shape-up-from-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-shape-up-to-line.svg b/svgs/arrow-shape-up-to-line.svg index 6916261..836834c 100644 --- a/svgs/arrow-shape-up-to-line.svg +++ b/svgs/arrow-shape-up-to-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-shape-up.svg b/svgs/arrow-shape-up.svg index 6c641cc..e7ca584 100644 --- a/svgs/arrow-shape-up.svg +++ b/svgs/arrow-shape-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-up-arrow-down.svg b/svgs/arrow-up-arrow-down.svg index ed5cc52..c98efb7 100644 --- a/svgs/arrow-up-arrow-down.svg +++ b/svgs/arrow-up-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-up-from-line.svg b/svgs/arrow-up-from-line.svg index 4fb3da7..b62b314 100644 --- a/svgs/arrow-up-from-line.svg +++ b/svgs/arrow-up-from-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-up-from-square-slash.svg b/svgs/arrow-up-from-square-slash.svg index 08ed772..7a6e3a1 100644 --- a/svgs/arrow-up-from-square-slash.svg +++ b/svgs/arrow-up-from-square-slash.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-up-from-square.svg b/svgs/arrow-up-from-square.svg index 2aa42ec..bec63d6 100644 --- a/svgs/arrow-up-from-square.svg +++ b/svgs/arrow-up-from-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-up-right-from-square.svg b/svgs/arrow-up-right-from-square.svg index f0c8f6c..1f0c74a 100644 --- a/svgs/arrow-up-right-from-square.svg +++ b/svgs/arrow-up-right-from-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-up-to-line.svg b/svgs/arrow-up-to-line.svg index ca52ac4..6444d66 100644 --- a/svgs/arrow-up-to-line.svg +++ b/svgs/arrow-up-to-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-up.svg b/svgs/arrow-up.svg index 7a65478..60d1916 100644 --- a/svgs/arrow-up.svg +++ b/svgs/arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-uturn-ccw-down.svg b/svgs/arrow-uturn-ccw-down.svg index bc2133d..9457000 100644 --- a/svgs/arrow-uturn-ccw-down.svg +++ b/svgs/arrow-uturn-ccw-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-uturn-ccw-left.svg b/svgs/arrow-uturn-ccw-left.svg index 9ae62d0..2de7e0d 100644 --- a/svgs/arrow-uturn-ccw-left.svg +++ b/svgs/arrow-uturn-ccw-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-uturn-ccw-right.svg b/svgs/arrow-uturn-ccw-right.svg index bb819d2..1ccc5fd 100644 --- a/svgs/arrow-uturn-ccw-right.svg +++ b/svgs/arrow-uturn-ccw-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-uturn-cw-down.svg b/svgs/arrow-uturn-cw-down.svg index 1d858ff..af44f61 100644 --- a/svgs/arrow-uturn-cw-down.svg +++ b/svgs/arrow-uturn-cw-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-uturn-cw-left.svg b/svgs/arrow-uturn-cw-left.svg index e7efa05..8e76eff 100644 --- a/svgs/arrow-uturn-cw-left.svg +++ b/svgs/arrow-uturn-cw-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrow-uturn-cw-right.svg b/svgs/arrow-uturn-cw-right.svg index 04e25cb..72bbbd0 100644 --- a/svgs/arrow-uturn-cw-right.svg +++ b/svgs/arrow-uturn-cw-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrows-3-rotate-left-letter-a.svg b/svgs/arrows-3-rotate-left-letter-a.svg index 4965879..f3fdf9b 100644 --- a/svgs/arrows-3-rotate-left-letter-a.svg +++ b/svgs/arrows-3-rotate-left-letter-a.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrows-3-rotate-left.svg b/svgs/arrows-3-rotate-left.svg index 9013e9f..4e09bb8 100644 --- a/svgs/arrows-3-rotate-left.svg +++ b/svgs/arrows-3-rotate-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrows-3-rotate-right.svg b/svgs/arrows-3-rotate-right.svg index cb82bf5..08e2718 100644 --- a/svgs/arrows-3-rotate-right.svg +++ b/svgs/arrows-3-rotate-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrows-opposite-to-dots.svg b/svgs/arrows-opposite-to-dots.svg index d5d658b..ef90b27 100644 --- a/svgs/arrows-opposite-to-dots.svg +++ b/svgs/arrows-opposite-to-dots.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrows-rotate-left-slash.svg b/svgs/arrows-rotate-left-slash.svg index 33e4178..230fc90 100644 --- a/svgs/arrows-rotate-left-slash.svg +++ b/svgs/arrows-rotate-left-slash.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrows-rotate-left.svg b/svgs/arrows-rotate-left.svg index 8a7aa8a..c1ee9b6 100644 --- a/svgs/arrows-rotate-left.svg +++ b/svgs/arrows-rotate-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrows-rotate-right-slash.svg b/svgs/arrows-rotate-right-slash.svg index ad23cc2..7164c9b 100644 --- a/svgs/arrows-rotate-right-slash.svg +++ b/svgs/arrows-rotate-right-slash.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/arrows-rotate-right.svg b/svgs/arrows-rotate-right.svg index d87d08d..09f1a17 100644 --- a/svgs/arrows-rotate-right.svg +++ b/svgs/arrows-rotate-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/at.svg b/svgs/at.svg index 88c1bde..15e43e4 100644 --- a/svgs/at.svg +++ b/svgs/at.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/ban.svg b/svgs/ban.svg index 994f5f1..865af80 100644 --- a/svgs/ban.svg +++ b/svgs/ban.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/bars-ascending-align-center.svg b/svgs/bars-ascending-align-center.svg index dd7e77e..4320081 100644 --- a/svgs/bars-ascending-align-center.svg +++ b/svgs/bars-ascending-align-center.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/bars-ascending-align-left-arrow-down.svg b/svgs/bars-ascending-align-left-arrow-down.svg index 8153ebb..8afb78d 100644 --- a/svgs/bars-ascending-align-left-arrow-down.svg +++ b/svgs/bars-ascending-align-left-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/bars-ascending-align-left-arrow-up.svg b/svgs/bars-ascending-align-left-arrow-up.svg index 44c2a49..688c959 100644 --- a/svgs/bars-ascending-align-left-arrow-up.svg +++ b/svgs/bars-ascending-align-left-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/bars-ascending-align-left.svg b/svgs/bars-ascending-align-left.svg index 954d5b1..bfb92dd 100644 --- a/svgs/bars-ascending-align-left.svg +++ b/svgs/bars-ascending-align-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/bars-ascending-align-right.svg b/svgs/bars-ascending-align-right.svg index 18aedfb..b72d013 100644 --- a/svgs/bars-ascending-align-right.svg +++ b/svgs/bars-ascending-align-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/bars-descending-align-center.svg b/svgs/bars-descending-align-center.svg index db00ab8..1a0b672 100644 --- a/svgs/bars-descending-align-center.svg +++ b/svgs/bars-descending-align-center.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/bars-descending-align-left-arrow-down.svg b/svgs/bars-descending-align-left-arrow-down.svg index aabfd70..d0d326a 100644 --- a/svgs/bars-descending-align-left-arrow-down.svg +++ b/svgs/bars-descending-align-left-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/bars-descending-align-left-arrow-up.svg b/svgs/bars-descending-align-left-arrow-up.svg index c39d2be..c0e4eff 100644 --- a/svgs/bars-descending-align-left-arrow-up.svg +++ b/svgs/bars-descending-align-left-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/bars-descending-align-left.svg b/svgs/bars-descending-align-left.svg index 99e417f..0a22ce5 100644 --- a/svgs/bars-descending-align-left.svg +++ b/svgs/bars-descending-align-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/bars-descending-align-right.svg b/svgs/bars-descending-align-right.svg index dfb79b1..1faac64 100644 --- a/svgs/bars-descending-align-right.svg +++ b/svgs/bars-descending-align-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/bars-play.svg b/svgs/bars-play.svg index 03834b8..fb3d2e8 100644 --- a/svgs/bars-play.svg +++ b/svgs/bars-play.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/bars-unaligned.svg b/svgs/bars-unaligned.svg index 4fa7ffd..90f9210 100644 --- a/svgs/bars-unaligned.svg +++ b/svgs/bars-unaligned.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/bars.svg b/svgs/bars.svg index 2f82b74..6942d74 100644 --- a/svgs/bars.svg +++ b/svgs/bars.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/bell-dot.svg b/svgs/bell-dot.svg index dd4cd63..43d4a9d 100644 --- a/svgs/bell-dot.svg +++ b/svgs/bell-dot.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/bell-slash.svg b/svgs/bell-slash.svg index e21d5a7..43ba247 100644 --- a/svgs/bell-slash.svg +++ b/svgs/bell-slash.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/bell.svg b/svgs/bell.svg index 756ec99..d89c481 100644 --- a/svgs/bell.svg +++ b/svgs/bell.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/binoculars.svg b/svgs/binoculars.svg index 1c09c62..7407ed0 100644 --- a/svgs/binoculars.svg +++ b/svgs/binoculars.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/bold.svg b/svgs/bold.svg index 2f199ca..9628f5f 100644 --- a/svgs/bold.svg +++ b/svgs/bold.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/book-open.svg b/svgs/book-open.svg index 460a71c..219c01a 100644 --- a/svgs/book-open.svg +++ b/svgs/book-open.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/book.svg b/svgs/book.svg index 1ed6195..4afe6fd 100644 --- a/svgs/book.svg +++ b/svgs/book.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/bookmark-fill.svg b/svgs/bookmark-fill.svg index 1da04a2..3ee3879 100644 --- a/svgs/bookmark-fill.svg +++ b/svgs/bookmark-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/bookmark.svg b/svgs/bookmark.svg index 30c8014..d87aa55 100644 --- a/svgs/bookmark.svg +++ b/svgs/bookmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/box.svg b/svgs/box.svg index 8842794..5737788 100644 --- a/svgs/box.svg +++ b/svgs/box.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/boxes-3.svg b/svgs/boxes-3.svg index 905808a..94dd705 100644 --- a/svgs/boxes-3.svg +++ b/svgs/boxes-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/branches-down.svg b/svgs/branches-down.svg index d0d9861..5f093fb 100644 --- a/svgs/branches-down.svg +++ b/svgs/branches-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/branches-right-arrow-right.svg b/svgs/branches-right-arrow-right.svg index f98fec5..0dadba5 100644 --- a/svgs/branches-right-arrow-right.svg +++ b/svgs/branches-right-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/branches-right.svg b/svgs/branches-right.svg index c2eddb6..f29eac1 100644 --- a/svgs/branches-right.svg +++ b/svgs/branches-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/briefcase.svg b/svgs/briefcase.svg index 8605d34..e180ad5 100644 --- a/svgs/briefcase.svg +++ b/svgs/briefcase.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/broadcast-signal.svg b/svgs/broadcast-signal.svg index c2d9904..708931e 100644 --- a/svgs/broadcast-signal.svg +++ b/svgs/broadcast-signal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/broom-motion.svg b/svgs/broom-motion.svg index ea86f19..c652242 100644 --- a/svgs/broom-motion.svg +++ b/svgs/broom-motion.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/brush.svg b/svgs/brush.svg index 8134f03..c3b5103 100644 --- a/svgs/brush.svg +++ b/svgs/brush.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/bucket-paint.svg b/svgs/bucket-paint.svg index 905fa22..4ca9786 100644 --- a/svgs/bucket-paint.svg +++ b/svgs/bucket-paint.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/bucket.svg b/svgs/bucket.svg index 4af7145..a71e0fd 100644 --- a/svgs/bucket.svg +++ b/svgs/bucket.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/bug.svg b/svgs/bug.svg index 66714b8..cbbf977 100644 --- a/svgs/bug.svg +++ b/svgs/bug.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/bulb.svg b/svgs/bulb.svg index e856802..d31c0f1 100644 --- a/svgs/bulb.svg +++ b/svgs/bulb.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/calculator.svg b/svgs/calculator.svg index b815cdd..1e8b295 100644 --- a/svgs/calculator.svg +++ b/svgs/calculator.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/calendar.svg b/svgs/calendar.svg index e95bf40..de813bb 100644 --- a/svgs/calendar.svg +++ b/svgs/calendar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/camera.svg b/svgs/camera.svg index 2db335d..eae8289 100644 --- a/svgs/camera.svg +++ b/svgs/camera.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/car.svg b/svgs/car.svg index a5c8b7c..50a76fe 100644 --- a/svgs/car.svg +++ b/svgs/car.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/card-club.svg b/svgs/card-club.svg index 6338b0d..732f4a0 100644 --- a/svgs/card-club.svg +++ b/svgs/card-club.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/card-diamond.svg b/svgs/card-diamond.svg index f5b001d..8ba405e 100644 --- a/svgs/card-diamond.svg +++ b/svgs/card-diamond.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/card-heart.svg b/svgs/card-heart.svg index 47007a0..a0b158c 100644 --- a/svgs/card-heart.svg +++ b/svgs/card-heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/card-spade.svg b/svgs/card-spade.svg index 12de541..ec9e93d 100644 --- a/svgs/card-spade.svg +++ b/svgs/card-spade.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/caret-down.svg b/svgs/caret-down.svg index adb8c15..26abddb 100644 --- a/svgs/caret-down.svg +++ b/svgs/caret-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/caret-left.svg b/svgs/caret-left.svg index d4bbaae..22202ef 100644 --- a/svgs/caret-left.svg +++ b/svgs/caret-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/caret-right.svg b/svgs/caret-right.svg index 6e16230..427f465 100644 --- a/svgs/caret-right.svg +++ b/svgs/caret-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/caret-up.svg b/svgs/caret-up.svg index 90aeb82..71c3b46 100644 --- a/svgs/caret-up.svg +++ b/svgs/caret-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/carets-expand-vertical.svg b/svgs/carets-expand-vertical.svg index e3e5548..621e3e5 100644 --- a/svgs/carets-expand-vertical.svg +++ b/svgs/carets-expand-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chart-area-stacked-normalized.svg b/svgs/chart-area-stacked-normalized.svg index ae0d97f..fbaa2d7 100644 --- a/svgs/chart-area-stacked-normalized.svg +++ b/svgs/chart-area-stacked-normalized.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chart-area-stacked.svg b/svgs/chart-area-stacked.svg index d147055..6a1d46f 100644 --- a/svgs/chart-area-stacked.svg +++ b/svgs/chart-area-stacked.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chart-bar-stacked.svg b/svgs/chart-bar-stacked.svg index e9794e5..2ed9d8b 100644 --- a/svgs/chart-bar-stacked.svg +++ b/svgs/chart-bar-stacked.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chart-bar.svg b/svgs/chart-bar.svg index d1081ec..07bfbae 100644 --- a/svgs/chart-bar.svg +++ b/svgs/chart-bar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chart-column-stacked.svg b/svgs/chart-column-stacked.svg index 1aad863..0264f23 100644 --- a/svgs/chart-column-stacked.svg +++ b/svgs/chart-column-stacked.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chart-column.svg b/svgs/chart-column.svg index d405c7d..2b6426a 100644 --- a/svgs/chart-column.svg +++ b/svgs/chart-column.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chart-donut.svg b/svgs/chart-donut.svg index dd2fe72..e1e3347 100644 --- a/svgs/chart-donut.svg +++ b/svgs/chart-donut.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chart-line-label.svg b/svgs/chart-line-label.svg index 415d792..3b81e28 100644 --- a/svgs/chart-line-label.svg +++ b/svgs/chart-line-label.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chart-line.svg b/svgs/chart-line.svg index e4af60d..0e4468f 100644 --- a/svgs/chart-line.svg +++ b/svgs/chart-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chart-mixed.svg b/svgs/chart-mixed.svg index d10724c..7bd543a 100644 --- a/svgs/chart-mixed.svg +++ b/svgs/chart-mixed.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chart-pie.svg b/svgs/chart-pie.svg index 48bd28e..1be5155 100644 --- a/svgs/chart-pie.svg +++ b/svgs/chart-pie.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chart-treemap.svg b/svgs/chart-treemap.svg index 7d874e6..1187117 100644 --- a/svgs/chart-treemap.svg +++ b/svgs/chart-treemap.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/check.svg b/svgs/check.svg index 4bc8f00..893334e 100644 --- a/svgs/check.svg +++ b/svgs/check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/cherry.svg b/svgs/cherry.svg index 7058d79..e942629 100644 --- a/svgs/cherry.svg +++ b/svgs/cherry.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chevron-down-wide.svg b/svgs/chevron-down-wide.svg index 8b28af8..91e4431 100644 --- a/svgs/chevron-down-wide.svg +++ b/svgs/chevron-down-wide.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chevron-down.svg b/svgs/chevron-down.svg index 878be07..dee45ac 100644 --- a/svgs/chevron-down.svg +++ b/svgs/chevron-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chevron-left.svg b/svgs/chevron-left.svg index 195b1a2..6cc0f9a 100644 --- a/svgs/chevron-left.svg +++ b/svgs/chevron-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chevron-right.svg b/svgs/chevron-right.svg index d75282d..07d7c34 100644 --- a/svgs/chevron-right.svg +++ b/svgs/chevron-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chevron-up-wide.svg b/svgs/chevron-up-wide.svg index d53b828..0bdb3bb 100644 --- a/svgs/chevron-up-wide.svg +++ b/svgs/chevron-up-wide.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chevron-up.svg b/svgs/chevron-up.svg index 2dd2364..9db0ac3 100644 --- a/svgs/chevron-up.svg +++ b/svgs/chevron-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chevrons-collapse-from-lines.svg b/svgs/chevrons-collapse-from-lines.svg index d46588a..f5558ee 100644 --- a/svgs/chevrons-collapse-from-lines.svg +++ b/svgs/chevrons-collapse-from-lines.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chevrons-collapse-horizontal.svg b/svgs/chevrons-collapse-horizontal.svg index d4b140b..062b44f 100644 --- a/svgs/chevrons-collapse-horizontal.svg +++ b/svgs/chevrons-collapse-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chevrons-collapse-to-line.svg b/svgs/chevrons-collapse-to-line.svg index 7c8f670..45a3992 100644 --- a/svgs/chevrons-collapse-to-line.svg +++ b/svgs/chevrons-collapse-to-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chevrons-collapse-up-right.svg b/svgs/chevrons-collapse-up-right.svg index 2546428..c160546 100644 --- a/svgs/chevrons-collapse-up-right.svg +++ b/svgs/chevrons-collapse-up-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chevrons-collapse-vertical.svg b/svgs/chevrons-collapse-vertical.svg index ce41808..df03402 100644 --- a/svgs/chevrons-collapse-vertical.svg +++ b/svgs/chevrons-collapse-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chevrons-down-wide.svg b/svgs/chevrons-down-wide.svg index 5964f6c..d68d40e 100644 --- a/svgs/chevrons-down-wide.svg +++ b/svgs/chevrons-down-wide.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chevrons-down.svg b/svgs/chevrons-down.svg index 505e741..bac98b5 100644 --- a/svgs/chevrons-down.svg +++ b/svgs/chevrons-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chevrons-expand-from-line.svg b/svgs/chevrons-expand-from-line.svg index a54d754..99a1c83 100644 --- a/svgs/chevrons-expand-from-line.svg +++ b/svgs/chevrons-expand-from-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chevrons-expand-horizontal.svg b/svgs/chevrons-expand-horizontal.svg index bf1bcf0..51c2066 100644 --- a/svgs/chevrons-expand-horizontal.svg +++ b/svgs/chevrons-expand-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chevrons-expand-to-lines.svg b/svgs/chevrons-expand-to-lines.svg index 1fa6918..28be9f5 100644 --- a/svgs/chevrons-expand-to-lines.svg +++ b/svgs/chevrons-expand-to-lines.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chevrons-expand-up-right.svg b/svgs/chevrons-expand-up-right.svg index b895ea5..b0ca872 100644 --- a/svgs/chevrons-expand-up-right.svg +++ b/svgs/chevrons-expand-up-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chevrons-expand-vertical.svg b/svgs/chevrons-expand-vertical.svg index 925ba18..de85403 100644 --- a/svgs/chevrons-expand-vertical.svg +++ b/svgs/chevrons-expand-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chevrons-left.svg b/svgs/chevrons-left.svg index 0a6c30f..dad4797 100644 --- a/svgs/chevrons-left.svg +++ b/svgs/chevrons-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chevrons-right.svg b/svgs/chevrons-right.svg index 7cd9184..89e15d0 100644 --- a/svgs/chevrons-right.svg +++ b/svgs/chevrons-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chevrons-up-wide.svg b/svgs/chevrons-up-wide.svg index ae65958..6205e46 100644 --- a/svgs/chevrons-up-wide.svg +++ b/svgs/chevrons-up-wide.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/chevrons-up.svg b/svgs/chevrons-up.svg index 49e9668..7ffeba7 100644 --- a/svgs/chevrons-up.svg +++ b/svgs/chevrons-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-arrow-down-fill.svg b/svgs/circle-arrow-down-fill.svg index 85aeb2a..a31cffb 100644 --- a/svgs/circle-arrow-down-fill.svg +++ b/svgs/circle-arrow-down-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-arrow-down.svg b/svgs/circle-arrow-down.svg index 9874ca9..4df0084 100644 --- a/svgs/circle-arrow-down.svg +++ b/svgs/circle-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-arrow-left-fill.svg b/svgs/circle-arrow-left-fill.svg index 10f1c24..d71fbb9 100644 --- a/svgs/circle-arrow-left-fill.svg +++ b/svgs/circle-arrow-left-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-arrow-left.svg b/svgs/circle-arrow-left.svg index b9e20fc..0be1913 100644 --- a/svgs/circle-arrow-left.svg +++ b/svgs/circle-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-arrow-right-fill.svg b/svgs/circle-arrow-right-fill.svg index 1da6dd1..e0365a6 100644 --- a/svgs/circle-arrow-right-fill.svg +++ b/svgs/circle-arrow-right-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-arrow-right.svg b/svgs/circle-arrow-right.svg index 467b0ce..4c3b8fe 100644 --- a/svgs/circle-arrow-right.svg +++ b/svgs/circle-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-arrow-up-fill.svg b/svgs/circle-arrow-up-fill.svg index f525842..afc0461 100644 --- a/svgs/circle-arrow-up-fill.svg +++ b/svgs/circle-arrow-up-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-arrow-up.svg b/svgs/circle-arrow-up.svg index 038b692..5b51761 100644 --- a/svgs/circle-arrow-up.svg +++ b/svgs/circle-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-check-fill.svg b/svgs/circle-check-fill.svg index 3b6021a..061042e 100644 --- a/svgs/circle-check-fill.svg +++ b/svgs/circle-check-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-check.svg b/svgs/circle-check.svg index 76c0f72..4f68a57 100644 --- a/svgs/circle-check.svg +++ b/svgs/circle-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-chevron-down-fill.svg b/svgs/circle-chevron-down-fill.svg index b3de312..1a5d379 100644 --- a/svgs/circle-chevron-down-fill.svg +++ b/svgs/circle-chevron-down-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-chevron-down.svg b/svgs/circle-chevron-down.svg index 7daf23f..9ebc198 100644 --- a/svgs/circle-chevron-down.svg +++ b/svgs/circle-chevron-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-chevron-left-fill.svg b/svgs/circle-chevron-left-fill.svg index 5c289f5..ed9152d 100644 --- a/svgs/circle-chevron-left-fill.svg +++ b/svgs/circle-chevron-left-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-chevron-left.svg b/svgs/circle-chevron-left.svg index be0c9f0..7207ad8 100644 --- a/svgs/circle-chevron-left.svg +++ b/svgs/circle-chevron-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-chevron-right-fill.svg b/svgs/circle-chevron-right-fill.svg index 86e3d55..d803936 100644 --- a/svgs/circle-chevron-right-fill.svg +++ b/svgs/circle-chevron-right-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-chevron-right.svg b/svgs/circle-chevron-right.svg index 8e910ff..aaf9d6b 100644 --- a/svgs/circle-chevron-right.svg +++ b/svgs/circle-chevron-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-chevron-up-fill.svg b/svgs/circle-chevron-up-fill.svg index bf01891..a1edc71 100644 --- a/svgs/circle-chevron-up-fill.svg +++ b/svgs/circle-chevron-up-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-chevron-up.svg b/svgs/circle-chevron-up.svg index 8dc32ff..c969bfa 100644 --- a/svgs/circle-chevron-up.svg +++ b/svgs/circle-chevron-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-chevrons-down.svg b/svgs/circle-chevrons-down.svg index 452afaa..3f2463f 100644 --- a/svgs/circle-chevrons-down.svg +++ b/svgs/circle-chevrons-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-chevrons-left.svg b/svgs/circle-chevrons-left.svg index a362bcd..5a06a96 100644 --- a/svgs/circle-chevrons-left.svg +++ b/svgs/circle-chevrons-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-chevrons-right.svg b/svgs/circle-chevrons-right.svg index f2cc659..e6ea463 100644 --- a/svgs/circle-chevrons-right.svg +++ b/svgs/circle-chevrons-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-chevrons-up.svg b/svgs/circle-chevrons-up.svg index b2f2146..17028db 100644 --- a/svgs/circle-chevrons-up.svg +++ b/svgs/circle-chevrons-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-dashed.svg b/svgs/circle-dashed.svg index 0593426..d55a00f 100644 --- a/svgs/circle-dashed.svg +++ b/svgs/circle-dashed.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-dollar.svg b/svgs/circle-dollar.svg index c912a5a..1bc6d25 100644 --- a/svgs/circle-dollar.svg +++ b/svgs/circle-dollar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-exclamation-fill.svg b/svgs/circle-exclamation-fill.svg index c12caf5..d7fedc3 100644 --- a/svgs/circle-exclamation-fill.svg +++ b/svgs/circle-exclamation-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-exclamation.svg b/svgs/circle-exclamation.svg index 139ccd1..e85c7b0 100644 --- a/svgs/circle-exclamation.svg +++ b/svgs/circle-exclamation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-fill.svg b/svgs/circle-fill.svg index 6444433..521e7a7 100644 --- a/svgs/circle-fill.svg +++ b/svgs/circle-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-info-fill.svg b/svgs/circle-info-fill.svg index 7dc89ee..a03bcca 100644 --- a/svgs/circle-info-fill.svg +++ b/svgs/circle-info-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-info.svg b/svgs/circle-info.svg index 72d314c..b15627d 100644 --- a/svgs/circle-info.svg +++ b/svgs/circle-info.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-letter-c.svg b/svgs/circle-letter-c.svg index 97ea9ac..1e7f56c 100644 --- a/svgs/circle-letter-c.svg +++ b/svgs/circle-letter-c.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-letter-f.svg b/svgs/circle-letter-f.svg index 3ffa16e..8a60413 100644 --- a/svgs/circle-letter-f.svg +++ b/svgs/circle-letter-f.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-letter-h.svg b/svgs/circle-letter-h.svg index bbffc5e..3671855 100644 --- a/svgs/circle-letter-h.svg +++ b/svgs/circle-letter-h.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-letter-p.svg b/svgs/circle-letter-p.svg index a366899..f304543 100644 --- a/svgs/circle-letter-p.svg +++ b/svgs/circle-letter-p.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-letter-r.svg b/svgs/circle-letter-r.svg index 6b7c4b9..bbe1dd6 100644 --- a/svgs/circle-letter-r.svg +++ b/svgs/circle-letter-r.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-letter-s.svg b/svgs/circle-letter-s.svg index f946e59..97f8519 100644 --- a/svgs/circle-letter-s.svg +++ b/svgs/circle-letter-s.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-letter-t.svg b/svgs/circle-letter-t.svg index f417f48..2b4e3a0 100644 --- a/svgs/circle-letter-t.svg +++ b/svgs/circle-letter-t.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-letter-w.svg b/svgs/circle-letter-w.svg index 62b8600..db21e42 100644 --- a/svgs/circle-letter-w.svg +++ b/svgs/circle-letter-w.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-link.svg b/svgs/circle-link.svg index 96c8c93..3873af6 100644 --- a/svgs/circle-link.svg +++ b/svgs/circle-link.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-minus-fill.svg b/svgs/circle-minus-fill.svg index 04ea020..fb7df41 100644 --- a/svgs/circle-minus-fill.svg +++ b/svgs/circle-minus-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-minus.svg b/svgs/circle-minus.svg index b07a771..3b5bd35 100644 --- a/svgs/circle-minus.svg +++ b/svgs/circle-minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-number-0.svg b/svgs/circle-number-0.svg index ef1d0aa..4b4190e 100644 --- a/svgs/circle-number-0.svg +++ b/svgs/circle-number-0.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-number-1.svg b/svgs/circle-number-1.svg index 930c3d5..be8aa01 100644 --- a/svgs/circle-number-1.svg +++ b/svgs/circle-number-1.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-number-6.svg b/svgs/circle-number-6.svg index f71e2b7..e44a29c 100644 --- a/svgs/circle-number-6.svg +++ b/svgs/circle-number-6.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-number-7.svg b/svgs/circle-number-7.svg index 844fef2..a992a98 100644 --- a/svgs/circle-number-7.svg +++ b/svgs/circle-number-7.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-number-8.svg b/svgs/circle-number-8.svg index 70f83ea..7f5aa19 100644 --- a/svgs/circle-number-8.svg +++ b/svgs/circle-number-8.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-number-9.svg b/svgs/circle-number-9.svg index 6e94865..da7ffe3 100644 --- a/svgs/circle-number-9.svg +++ b/svgs/circle-number-9.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-pause.svg b/svgs/circle-pause.svg index c401c2a..48981c6 100644 --- a/svgs/circle-pause.svg +++ b/svgs/circle-pause.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-play.svg b/svgs/circle-play.svg index 39bee9d..6eed303 100644 --- a/svgs/circle-play.svg +++ b/svgs/circle-play.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-plus-fill.svg b/svgs/circle-plus-fill.svg index d737257..945bd6a 100644 --- a/svgs/circle-plus-fill.svg +++ b/svgs/circle-plus-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-plus.svg b/svgs/circle-plus.svg index 3c91959..1b4afea 100644 --- a/svgs/circle-plus.svg +++ b/svgs/circle-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-question-dot.svg b/svgs/circle-question-dot.svg index a4b4d2c..5e7271a 100644 --- a/svgs/circle-question-dot.svg +++ b/svgs/circle-question-dot.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-question-fill.svg b/svgs/circle-question-fill.svg index 2ed7588..eedb128 100644 --- a/svgs/circle-question-fill.svg +++ b/svgs/circle-question-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-question.svg b/svgs/circle-question.svg index efab218..32616f2 100644 --- a/svgs/circle-question.svg +++ b/svgs/circle-question.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-ruble.svg b/svgs/circle-ruble.svg index 4f3b1f8..b950122 100644 --- a/svgs/circle-ruble.svg +++ b/svgs/circle-ruble.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-stop.svg b/svgs/circle-stop.svg index 15ffaa7..67b6ac9 100644 --- a/svgs/circle-stop.svg +++ b/svgs/circle-stop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-xmark-fill.svg b/svgs/circle-xmark-fill.svg index 67f1b00..022e09b 100644 --- a/svgs/circle-xmark-fill.svg +++ b/svgs/circle-xmark-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle-xmark.svg b/svgs/circle-xmark.svg index 10870f4..6dc8227 100644 --- a/svgs/circle-xmark.svg +++ b/svgs/circle-xmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circle.svg b/svgs/circle.svg index 3d13840..1901b4b 100644 --- a/svgs/circle.svg +++ b/svgs/circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circles-3-plus.svg b/svgs/circles-3-plus.svg index 7c9b1c3..1829e20 100644 --- a/svgs/circles-3-plus.svg +++ b/svgs/circles-3-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circles-4-diamond.svg b/svgs/circles-4-diamond.svg index 68db9f5..82c927c 100644 --- a/svgs/circles-4-diamond.svg +++ b/svgs/circles-4-diamond.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circles-4-square.svg b/svgs/circles-4-square.svg index b3814d8..2f878a8 100644 --- a/svgs/circles-4-square.svg +++ b/svgs/circles-4-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circles-5-random.svg b/svgs/circles-5-random.svg index 07697d4..b480bd1 100644 --- a/svgs/circles-5-random.svg +++ b/svgs/circles-5-random.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circles-concentric.svg b/svgs/circles-concentric.svg index 24bb36c..153185e 100644 --- a/svgs/circles-concentric.svg +++ b/svgs/circles-concentric.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/circles-intersection.svg b/svgs/circles-intersection.svg index 9d57fdb..f1ef0ca 100644 --- a/svgs/circles-intersection.svg +++ b/svgs/circles-intersection.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/clock-arrow-rotate-left.svg b/svgs/clock-arrow-rotate-left.svg index 55c7663..b3d2226 100644 --- a/svgs/clock-arrow-rotate-left.svg +++ b/svgs/clock-arrow-rotate-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/clock-fill.svg b/svgs/clock-fill.svg index b1f5344..d2cf5f0 100644 --- a/svgs/clock-fill.svg +++ b/svgs/clock-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/clock.svg b/svgs/clock.svg index 29defcc..4d4601c 100644 --- a/svgs/clock.svg +++ b/svgs/clock.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/cloud-arrow-up-in.svg b/svgs/cloud-arrow-up-in.svg index 22e7186..6bf6ab2 100644 --- a/svgs/cloud-arrow-up-in.svg +++ b/svgs/cloud-arrow-up-in.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/cloud-check.svg b/svgs/cloud-check.svg index 2a129da..3934035 100644 --- a/svgs/cloud-check.svg +++ b/svgs/cloud-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/cloud-gear.svg b/svgs/cloud-gear.svg index da476ca..5f3eb3d 100644 --- a/svgs/cloud-gear.svg +++ b/svgs/cloud-gear.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/cloud-nut-hex.svg b/svgs/cloud-nut-hex.svg index 126193b..a2c62c4 100644 --- a/svgs/cloud-nut-hex.svg +++ b/svgs/cloud-nut-hex.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/cloud.svg b/svgs/cloud.svg index d48fc06..7a8d921 100644 --- a/svgs/cloud.svg +++ b/svgs/cloud.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/clouds.svg b/svgs/clouds.svg index cdb6660..13ce57d 100644 --- a/svgs/clouds.svg +++ b/svgs/clouds.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/code-commit-horizontal.svg b/svgs/code-commit-horizontal.svg index 78adeea..0a53e75 100644 --- a/svgs/code-commit-horizontal.svg +++ b/svgs/code-commit-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/code-commit.svg b/svgs/code-commit.svg index 7d2c85e..edc81df 100644 --- a/svgs/code-commit.svg +++ b/svgs/code-commit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/code-commits.svg b/svgs/code-commits.svg index 984ae13..b26a3b3 100644 --- a/svgs/code-commits.svg +++ b/svgs/code-commits.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/code-compare.svg b/svgs/code-compare.svg index de5cd49..a1375f3 100644 --- a/svgs/code-compare.svg +++ b/svgs/code-compare.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/code-fork.svg b/svgs/code-fork.svg index c92493c..8309102 100644 --- a/svgs/code-fork.svg +++ b/svgs/code-fork.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/code-merge.svg b/svgs/code-merge.svg index 24ae8e0..f1658ec 100644 --- a/svgs/code-merge.svg +++ b/svgs/code-merge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/code-pull-request-arrow-left.svg b/svgs/code-pull-request-arrow-left.svg index ad2d699..727de84 100644 --- a/svgs/code-pull-request-arrow-left.svg +++ b/svgs/code-pull-request-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/code-pull-request-arrow-right.svg b/svgs/code-pull-request-arrow-right.svg index 78b94fc..f7053c2 100644 --- a/svgs/code-pull-request-arrow-right.svg +++ b/svgs/code-pull-request-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/code-pull-request-check.svg b/svgs/code-pull-request-check.svg index 186e347..848f378 100644 --- a/svgs/code-pull-request-check.svg +++ b/svgs/code-pull-request-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/code-pull-request-xmark.svg b/svgs/code-pull-request-xmark.svg index a767680..1751514 100644 --- a/svgs/code-pull-request-xmark.svg +++ b/svgs/code-pull-request-xmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/code-pull-request.svg b/svgs/code-pull-request.svg index 04bd576..3e596b9 100644 --- a/svgs/code-pull-request.svg +++ b/svgs/code-pull-request.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/code-trunk.svg b/svgs/code-trunk.svg index 64a2396..47c2bf3 100644 --- a/svgs/code-trunk.svg +++ b/svgs/code-trunk.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/code.svg b/svgs/code.svg index 5912525..2ce1558 100644 --- a/svgs/code.svg +++ b/svgs/code.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/comment-dot.svg b/svgs/comment-dot.svg index 76c58cf..b728fdb 100644 --- a/svgs/comment-dot.svg +++ b/svgs/comment-dot.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/comment-fill.svg b/svgs/comment-fill.svg index c81370a..1936b10 100644 --- a/svgs/comment-fill.svg +++ b/svgs/comment-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/comment-plus.svg b/svgs/comment-plus.svg index 20ef94d..4c05781 100644 --- a/svgs/comment-plus.svg +++ b/svgs/comment-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/comment-slash.svg b/svgs/comment-slash.svg index 8821baf..0a5ed8d 100644 --- a/svgs/comment-slash.svg +++ b/svgs/comment-slash.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/comment.svg b/svgs/comment.svg index ad9cc2b..8bedf02 100644 --- a/svgs/comment.svg +++ b/svgs/comment.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/comments.svg b/svgs/comments.svg index 164c96f..e43de89 100644 --- a/svgs/comments.svg +++ b/svgs/comments.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/compass.svg b/svgs/compass.svg index 7bcf7cb..1479caf 100644 --- a/svgs/compass.svg +++ b/svgs/compass.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/copy-arrow-right.svg b/svgs/copy-arrow-right.svg index c59f558..fbb946d 100644 --- a/svgs/copy-arrow-right.svg +++ b/svgs/copy-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/copy-check-xmark.svg b/svgs/copy-check-xmark.svg index 584c3bb..2e7d5a5 100644 --- a/svgs/copy-check-xmark.svg +++ b/svgs/copy-check-xmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/copy-check.svg b/svgs/copy-check.svg index 8c43d00..3ae60f9 100644 --- a/svgs/copy-check.svg +++ b/svgs/copy-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/copy-chevron-right.svg b/svgs/copy-chevron-right.svg index d533603..34253c4 100644 --- a/svgs/copy-chevron-right.svg +++ b/svgs/copy-chevron-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/copy-minus.svg b/svgs/copy-minus.svg index 7f181ff..c358e08 100644 --- a/svgs/copy-minus.svg +++ b/svgs/copy-minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/copy-picture.svg b/svgs/copy-picture.svg index c6ca2eb..e69ebdb 100644 --- a/svgs/copy-picture.svg +++ b/svgs/copy-picture.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/copy-plus.svg b/svgs/copy-plus.svg index 00d8017..e59549a 100644 --- a/svgs/copy-plus.svg +++ b/svgs/copy-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/copy-transparent.svg b/svgs/copy-transparent.svg index 7117fda..54878c9 100644 --- a/svgs/copy-transparent.svg +++ b/svgs/copy-transparent.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/copy-xmark.svg b/svgs/copy-xmark.svg index 12ac2d6..8e7a183 100644 --- a/svgs/copy-xmark.svg +++ b/svgs/copy-xmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/copy.svg b/svgs/copy.svg index d47ecad..387393a 100644 --- a/svgs/copy.svg +++ b/svgs/copy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/cpu.svg b/svgs/cpu.svg index b61c79c..c20ffe5 100644 --- a/svgs/cpu.svg +++ b/svgs/cpu.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/cpus.svg b/svgs/cpus.svg index b09663d..6afde98 100644 --- a/svgs/cpus.svg +++ b/svgs/cpus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/credit-card.svg b/svgs/credit-card.svg index 2b6992c..4d610b0 100644 --- a/svgs/credit-card.svg +++ b/svgs/credit-card.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/crop.svg b/svgs/crop.svg index d5553b0..a81295d 100644 --- a/svgs/crop.svg +++ b/svgs/crop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/crown-diamond.svg b/svgs/crown-diamond.svg index 0780433..57ac7c7 100644 --- a/svgs/crown-diamond.svg +++ b/svgs/crown-diamond.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/cube.svg b/svgs/cube.svg index f52eb09..af5579e 100644 --- a/svgs/cube.svg +++ b/svgs/cube.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/cubes-3-overlap.svg b/svgs/cubes-3-overlap.svg index 6a683da..bf56e29 100644 --- a/svgs/cubes-3-overlap.svg +++ b/svgs/cubes-3-overlap.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/cubes-3.svg b/svgs/cubes-3.svg index 1259103..fc110c4 100644 --- a/svgs/cubes-3.svg +++ b/svgs/cubes-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/cup.svg b/svgs/cup.svg index 4c239af..6a30555 100644 --- a/svgs/cup.svg +++ b/svgs/cup.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/curly-brackets-function.svg b/svgs/curly-brackets-function.svg index b1e2f3d..57270e2 100644 --- a/svgs/curly-brackets-function.svg +++ b/svgs/curly-brackets-function.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/curly-brackets-lock.svg b/svgs/curly-brackets-lock.svg index f8cb70b..cc209ec 100644 --- a/svgs/curly-brackets-lock.svg +++ b/svgs/curly-brackets-lock.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/curly-brackets.svg b/svgs/curly-brackets.svg index 6b619a2..f125e08 100644 --- a/svgs/curly-brackets.svg +++ b/svgs/curly-brackets.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/database-arrow-right.svg b/svgs/database-arrow-right.svg index f957905..0a7f3c8 100644 --- a/svgs/database-arrow-right.svg +++ b/svgs/database-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/database-fill.svg b/svgs/database-fill.svg index a6a1ba9..d6f8cdf 100644 --- a/svgs/database-fill.svg +++ b/svgs/database-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/database-magnifier.svg b/svgs/database-magnifier.svg index c5cf8fd..e8bb624 100644 --- a/svgs/database-magnifier.svg +++ b/svgs/database-magnifier.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/database.svg b/svgs/database.svg index 83f8d41..77001b5 100644 --- a/svgs/database.svg +++ b/svgs/database.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/databases-fill.svg b/svgs/databases-fill.svg index ab7d0d4..0e0a4d0 100644 --- a/svgs/databases-fill.svg +++ b/svgs/databases-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/databases.svg b/svgs/databases.svg index 9116764..2408793 100644 --- a/svgs/databases.svg +++ b/svgs/databases.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/delete.svg b/svgs/delete.svg index 69969c4..2c6520c 100644 --- a/svgs/delete.svg +++ b/svgs/delete.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/diamond-exclamation.svg b/svgs/diamond-exclamation.svg index 30a2831..fa87e66 100644 --- a/svgs/diamond-exclamation.svg +++ b/svgs/diamond-exclamation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/diamond-fill.svg b/svgs/diamond-fill.svg index 6ec4280..7f3930c 100644 --- a/svgs/diamond-fill.svg +++ b/svgs/diamond-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/diamond.svg b/svgs/diamond.svg index 9250cba..29d3aa9 100644 --- a/svgs/diamond.svg +++ b/svgs/diamond.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/dice-1.svg b/svgs/dice-1.svg index 363906d..a907da6 100644 --- a/svgs/dice-1.svg +++ b/svgs/dice-1.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/dice-2.svg b/svgs/dice-2.svg index 7397ce7..aacc290 100644 --- a/svgs/dice-2.svg +++ b/svgs/dice-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/dice-3.svg b/svgs/dice-3.svg index 993ff7c..435af55 100644 --- a/svgs/dice-3.svg +++ b/svgs/dice-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/dice-4.svg b/svgs/dice-4.svg index 664ab27..ffad0bc 100644 --- a/svgs/dice-4.svg +++ b/svgs/dice-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/dice-5.svg b/svgs/dice-5.svg index 0467623..3d13a4e 100644 --- a/svgs/dice-5.svg +++ b/svgs/dice-5.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/dice-6.svg b/svgs/dice-6.svg index 9507aef..5e4cf4e 100644 --- a/svgs/dice-6.svg +++ b/svgs/dice-6.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/display-pulse.svg b/svgs/display-pulse.svg index d5a9ee5..4b9649f 100644 --- a/svgs/display-pulse.svg +++ b/svgs/display-pulse.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/display.svg b/svgs/display.svg index 18974fc..f9d1c6f 100644 --- a/svgs/display.svg +++ b/svgs/display.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/dots-9.svg b/svgs/dots-9.svg index 0441b21..abb1902 100644 --- a/svgs/dots-9.svg +++ b/svgs/dots-9.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/droplet.svg b/svgs/droplet.svg index 70a3e20..c88d197 100644 --- a/svgs/droplet.svg +++ b/svgs/droplet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/ear.svg b/svgs/ear.svg index bca5955..0c3f103 100644 --- a/svgs/ear.svg +++ b/svgs/ear.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/ellipsis-vertical.svg b/svgs/ellipsis-vertical.svg index 3633c23..85f9e8e 100644 --- a/svgs/ellipsis-vertical.svg +++ b/svgs/ellipsis-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/ellipsis.svg b/svgs/ellipsis.svg index c83e824..0a08933 100644 --- a/svgs/ellipsis.svg +++ b/svgs/ellipsis.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/envelope-open-xmark.svg b/svgs/envelope-open-xmark.svg index 93b0920..55b72e5 100644 --- a/svgs/envelope-open-xmark.svg +++ b/svgs/envelope-open-xmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/envelope-open.svg b/svgs/envelope-open.svg index c8f9d75..612f8c7 100644 --- a/svgs/envelope-open.svg +++ b/svgs/envelope-open.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/envelope.svg b/svgs/envelope.svg index 870f12b..75e088e 100644 --- a/svgs/envelope.svg +++ b/svgs/envelope.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/equal.svg b/svgs/equal.svg index 9179143..7c1812f 100644 --- a/svgs/equal.svg +++ b/svgs/equal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/eraser.svg b/svgs/eraser.svg index c38c81a..f35d1f7 100644 --- a/svgs/eraser.svg +++ b/svgs/eraser.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/exclamation-shape.svg b/svgs/exclamation-shape.svg index 614190f..2f810d9 100644 --- a/svgs/exclamation-shape.svg +++ b/svgs/exclamation-shape.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/eye-slash.svg b/svgs/eye-slash.svg index cf5df56..0e2c6e0 100644 --- a/svgs/eye-slash.svg +++ b/svgs/eye-slash.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/eye.svg b/svgs/eye.svg index 8b6a410..c92b2ee 100644 --- a/svgs/eye.svg +++ b/svgs/eye.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/eyes-look-left.svg b/svgs/eyes-look-left.svg index db73852..2c4e145 100644 --- a/svgs/eyes-look-left.svg +++ b/svgs/eyes-look-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/eyes-look-right.svg b/svgs/eyes-look-right.svg index 2fd71b7..e5222aa 100644 --- a/svgs/eyes-look-right.svg +++ b/svgs/eyes-look-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/face-alien.svg b/svgs/face-alien.svg index e07385c..9fe12fa 100644 --- a/svgs/face-alien.svg +++ b/svgs/face-alien.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/face-fun.svg b/svgs/face-fun.svg index 36d5ff0..0ee6f71 100644 --- a/svgs/face-fun.svg +++ b/svgs/face-fun.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/face-neutral-dashed.svg b/svgs/face-neutral-dashed.svg index 86ac44f..09f61c6 100644 --- a/svgs/face-neutral-dashed.svg +++ b/svgs/face-neutral-dashed.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/face-neutral.svg b/svgs/face-neutral.svg index 5d4a8c8..64aaa37 100644 --- a/svgs/face-neutral.svg +++ b/svgs/face-neutral.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/face-robot.svg b/svgs/face-robot.svg index 6ce2efa..fb6f749 100644 --- a/svgs/face-robot.svg +++ b/svgs/face-robot.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/face-sad.svg b/svgs/face-sad.svg index db7f6f3..8addf4b 100644 --- a/svgs/face-sad.svg +++ b/svgs/face-sad.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/face-smile.svg b/svgs/face-smile.svg index 9c9b463..74e3648 100644 --- a/svgs/face-smile.svg +++ b/svgs/face-smile.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/face-surprise.svg b/svgs/face-surprise.svg index 73110de..6dff6b0 100644 --- a/svgs/face-surprise.svg +++ b/svgs/face-surprise.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/factory.svg b/svgs/factory.svg index 86db536..52b0855 100644 --- a/svgs/factory.svg +++ b/svgs/factory.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/file-arrow-down.svg b/svgs/file-arrow-down.svg index a6acf8e..8b758cc 100644 --- a/svgs/file-arrow-down.svg +++ b/svgs/file-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/file-arrow-left.svg b/svgs/file-arrow-left.svg index 68b5904..cdd3ce3 100644 --- a/svgs/file-arrow-left.svg +++ b/svgs/file-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/file-arrow-right-out.svg b/svgs/file-arrow-right-out.svg index 65e1964..b9e8e24 100644 --- a/svgs/file-arrow-right-out.svg +++ b/svgs/file-arrow-right-out.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/file-arrow-right.svg b/svgs/file-arrow-right.svg index 6ac2d2e..9af02ee 100644 --- a/svgs/file-arrow-right.svg +++ b/svgs/file-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/file-arrow-up.svg b/svgs/file-arrow-up.svg index a59bd32..ff407a1 100644 --- a/svgs/file-arrow-up.svg +++ b/svgs/file-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/file-check.svg b/svgs/file-check.svg index 0b5e99e..885e9ea 100644 --- a/svgs/file-check.svg +++ b/svgs/file-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/file-code.svg b/svgs/file-code.svg index e5cdb8b..a99c4b9 100644 --- a/svgs/file-code.svg +++ b/svgs/file-code.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/file-dollar.svg b/svgs/file-dollar.svg index 926baa7..8bb895c 100644 --- a/svgs/file-dollar.svg +++ b/svgs/file-dollar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/file-exclamation.svg b/svgs/file-exclamation.svg index 7f1940e..bd50ac9 100644 --- a/svgs/file-exclamation.svg +++ b/svgs/file-exclamation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/file-letter-p.svg b/svgs/file-letter-p.svg index 951a645..82340e2 100644 --- a/svgs/file-letter-p.svg +++ b/svgs/file-letter-p.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/file-letter-w.svg b/svgs/file-letter-w.svg index 883485c..d42ee59 100644 --- a/svgs/file-letter-w.svg +++ b/svgs/file-letter-w.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/file-letter-x.svg b/svgs/file-letter-x.svg index 9855bb2..f7eebf9 100644 --- a/svgs/file-letter-x.svg +++ b/svgs/file-letter-x.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/file-magnifier.svg b/svgs/file-magnifier.svg index acd9b5c..89d40f8 100644 --- a/svgs/file-magnifier.svg +++ b/svgs/file-magnifier.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/file-minus.svg b/svgs/file-minus.svg index 4af8987..7a64c3b 100644 --- a/svgs/file-minus.svg +++ b/svgs/file-minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/file-plus.svg b/svgs/file-plus.svg index d6bf88f..67fe3bb 100644 --- a/svgs/file-plus.svg +++ b/svgs/file-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/file-question.svg b/svgs/file-question.svg index 86a8246..2a96635 100644 --- a/svgs/file-question.svg +++ b/svgs/file-question.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/file-ruble.svg b/svgs/file-ruble.svg index 84a1766..9e8894f 100644 --- a/svgs/file-ruble.svg +++ b/svgs/file-ruble.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/file-text.svg b/svgs/file-text.svg index da84c25..8379633 100644 --- a/svgs/file-text.svg +++ b/svgs/file-text.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/file-xmark.svg b/svgs/file-xmark.svg index 00fbe94..9045276 100644 --- a/svgs/file-xmark.svg +++ b/svgs/file-xmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/file-zipper.svg b/svgs/file-zipper.svg index 5462ebc..f7cd596 100644 --- a/svgs/file-zipper.svg +++ b/svgs/file-zipper.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/file.svg b/svgs/file.svg index 767d46c..94cfa7d 100644 --- a/svgs/file.svg +++ b/svgs/file.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/files.svg b/svgs/files.svg index 1fca272..2d0abc9 100644 --- a/svgs/files.svg +++ b/svgs/files.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/filmstrip.svg b/svgs/filmstrip.svg index 1aec036..fd7a889 100644 --- a/svgs/filmstrip.svg +++ b/svgs/filmstrip.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/fingerprint.svg b/svgs/fingerprint.svg index fa8c934..10b5e10 100644 --- a/svgs/fingerprint.svg +++ b/svgs/fingerprint.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/flag.svg b/svgs/flag.svg index 1b18c63..0235367 100644 --- a/svgs/flag.svg +++ b/svgs/flag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/flame.svg b/svgs/flame.svg index 9978753..7f116a8 100644 --- a/svgs/flame.svg +++ b/svgs/flame.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/flask.svg b/svgs/flask.svg index c418481..fc60e77 100644 --- a/svgs/flask.svg +++ b/svgs/flask.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/floppy-disk.svg b/svgs/floppy-disk.svg index a527867..999eae4 100644 --- a/svgs/floppy-disk.svg +++ b/svgs/floppy-disk.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/folder-arrow-down.svg b/svgs/folder-arrow-down.svg index 6ad9ca9..68e1b85 100644 --- a/svgs/folder-arrow-down.svg +++ b/svgs/folder-arrow-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/folder-arrow-left.svg b/svgs/folder-arrow-left.svg index 0e3505e..8dfc299 100644 --- a/svgs/folder-arrow-left.svg +++ b/svgs/folder-arrow-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/folder-arrow-right.svg b/svgs/folder-arrow-right.svg index 176267a..7741c66 100644 --- a/svgs/folder-arrow-right.svg +++ b/svgs/folder-arrow-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/folder-arrow-up-in.svg b/svgs/folder-arrow-up-in.svg index d3c2086..8b379b3 100644 --- a/svgs/folder-arrow-up-in.svg +++ b/svgs/folder-arrow-up-in.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/folder-arrow-up.svg b/svgs/folder-arrow-up.svg index d6ed94a..a8b746d 100644 --- a/svgs/folder-arrow-up.svg +++ b/svgs/folder-arrow-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/folder-check.svg b/svgs/folder-check.svg index c456538..ae7ffa2 100644 --- a/svgs/folder-check.svg +++ b/svgs/folder-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/folder-code.svg b/svgs/folder-code.svg index 23ebb66..1d6c096 100644 --- a/svgs/folder-code.svg +++ b/svgs/folder-code.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/folder-exclamation.svg b/svgs/folder-exclamation.svg index b6a653e..d0826f6 100644 --- a/svgs/folder-exclamation.svg +++ b/svgs/folder-exclamation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/folder-fill.svg b/svgs/folder-fill.svg index 307b25a..5cffaad 100644 --- a/svgs/folder-fill.svg +++ b/svgs/folder-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/folder-flows.svg b/svgs/folder-flows.svg index 07587bc..35154b2 100644 --- a/svgs/folder-flows.svg +++ b/svgs/folder-flows.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/folder-house.svg b/svgs/folder-house.svg index df37f8e..7b54f7e 100644 --- a/svgs/folder-house.svg +++ b/svgs/folder-house.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/folder-keyhole.svg b/svgs/folder-keyhole.svg index 4feaddd..589f06e 100644 --- a/svgs/folder-keyhole.svg +++ b/svgs/folder-keyhole.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/folder-lock.svg b/svgs/folder-lock.svg index 3acbc85..7f781ae 100644 --- a/svgs/folder-lock.svg +++ b/svgs/folder-lock.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/folder-magnifier.svg b/svgs/folder-magnifier.svg index daa491e..e8de263 100644 --- a/svgs/folder-magnifier.svg +++ b/svgs/folder-magnifier.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/folder-open-fill.svg b/svgs/folder-open-fill.svg index 0ffdefb..db00641 100644 --- a/svgs/folder-open-fill.svg +++ b/svgs/folder-open-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/folder-open.svg b/svgs/folder-open.svg index 30643fb..e32b1b3 100644 --- a/svgs/folder-open.svg +++ b/svgs/folder-open.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/folder-plus.svg b/svgs/folder-plus.svg index 58f40f5..366c7fd 100644 --- a/svgs/folder-plus.svg +++ b/svgs/folder-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/folder-tree.svg b/svgs/folder-tree.svg index 1ccfe3c..f54a2b1 100644 --- a/svgs/folder-tree.svg +++ b/svgs/folder-tree.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/folder.svg b/svgs/folder.svg index af8c0b9..89c1766 100644 --- a/svgs/folder.svg +++ b/svgs/folder.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/folders.svg b/svgs/folders.svg index 3ebebc4..8c7f45f 100644 --- a/svgs/folders.svg +++ b/svgs/folders.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/font-case.svg b/svgs/font-case.svg index e886e6a..f9ce62f 100644 --- a/svgs/font-case.svg +++ b/svgs/font-case.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/font-cursor.svg b/svgs/font-cursor.svg index 7b99b38..b9d5414 100644 --- a/svgs/font-cursor.svg +++ b/svgs/font-cursor.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/font.svg b/svgs/font.svg index 0f18f19..cbcf367 100644 --- a/svgs/font.svg +++ b/svgs/font.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/frame.svg b/svgs/frame.svg index 84906ed..bdc2a36 100644 --- a/svgs/frame.svg +++ b/svgs/frame.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/frames.svg b/svgs/frames.svg index 1d3b97d..3581bcf 100644 --- a/svgs/frames.svg +++ b/svgs/frames.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/function.svg b/svgs/function.svg index 90809e3..61f58d2 100644 --- a/svgs/function.svg +++ b/svgs/function.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/funnel-xmark.svg b/svgs/funnel-xmark.svg index 4cc264e..c3fb6b2 100644 --- a/svgs/funnel-xmark.svg +++ b/svgs/funnel-xmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/funnel.svg b/svgs/funnel.svg index d40504e..d161a99 100644 --- a/svgs/funnel.svg +++ b/svgs/funnel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/gear-branches.svg b/svgs/gear-branches.svg index 0a9943e..954adbe 100644 --- a/svgs/gear-branches.svg +++ b/svgs/gear-branches.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/gear-dot.svg b/svgs/gear-dot.svg index 936242b..dfcc92b 100644 --- a/svgs/gear-dot.svg +++ b/svgs/gear-dot.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/gear-play.svg b/svgs/gear-play.svg index e16ddb2..b2daa6b 100644 --- a/svgs/gear-play.svg +++ b/svgs/gear-play.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/gear.svg b/svgs/gear.svg index 17ca73c..d0cb1a7 100644 --- a/svgs/gear.svg +++ b/svgs/gear.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/geo-dots.svg b/svgs/geo-dots.svg index b95c0ea..cbfc398 100644 --- a/svgs/geo-dots.svg +++ b/svgs/geo-dots.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/geo-fill.svg b/svgs/geo-fill.svg index 2decced..a762a13 100644 --- a/svgs/geo-fill.svg +++ b/svgs/geo-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/geo-pin.svg b/svgs/geo-pin.svg index 983d823..c6d962d 100644 --- a/svgs/geo-pin.svg +++ b/svgs/geo-pin.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/geo-polygons.svg b/svgs/geo-polygons.svg index 4e2444d..0cc040f 100644 --- a/svgs/geo-polygons.svg +++ b/svgs/geo-polygons.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/geo.svg b/svgs/geo.svg index 3e24939..9df47c7 100644 --- a/svgs/geo.svg +++ b/svgs/geo.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/ghost.svg b/svgs/ghost.svg index 81c513f..2ee6643 100644 --- a/svgs/ghost.svg +++ b/svgs/ghost.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/gift.svg b/svgs/gift.svg index 99721c6..34e030e 100644 --- a/svgs/gift.svg +++ b/svgs/gift.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/globe.svg b/svgs/globe.svg index c48e94e..4f7b0af 100644 --- a/svgs/globe.svg +++ b/svgs/globe.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/gpu.svg b/svgs/gpu.svg index 97bf395..3a5a3d9 100644 --- a/svgs/gpu.svg +++ b/svgs/gpu.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/graduation-cap.svg b/svgs/graduation-cap.svg index 3fb6dc9..a841985 100644 --- a/svgs/graduation-cap.svg +++ b/svgs/graduation-cap.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/graph-node.svg b/svgs/graph-node.svg index 00db504..9831049 100644 --- a/svgs/graph-node.svg +++ b/svgs/graph-node.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/grip-horizontal.svg b/svgs/grip-horizontal.svg index b49131e..feee344 100644 --- a/svgs/grip-horizontal.svg +++ b/svgs/grip-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/grip.svg b/svgs/grip.svg index e298d32..e25ef11 100644 --- a/svgs/grip.svg +++ b/svgs/grip.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/hammer.svg b/svgs/hammer.svg index cec683e..a9c801b 100644 --- a/svgs/hammer.svg +++ b/svgs/hammer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/hand-ok.svg b/svgs/hand-ok.svg index 4c8640e..7e85817 100644 --- a/svgs/hand-ok.svg +++ b/svgs/hand-ok.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/hand-point-down.svg b/svgs/hand-point-down.svg index 3425bfa..bc65101 100644 --- a/svgs/hand-point-down.svg +++ b/svgs/hand-point-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/hand-point-left.svg b/svgs/hand-point-left.svg index 252fecc..2e8fc48 100644 --- a/svgs/hand-point-left.svg +++ b/svgs/hand-point-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/hand-point-right.svg b/svgs/hand-point-right.svg index e055c71..3f7a04a 100644 --- a/svgs/hand-point-right.svg +++ b/svgs/hand-point-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/hand-point-up.svg b/svgs/hand-point-up.svg index 4024670..e51d79a 100644 --- a/svgs/hand-point-up.svg +++ b/svgs/hand-point-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/hand-stop.svg b/svgs/hand-stop.svg index 00eafed..37d0cf9 100644 --- a/svgs/hand-stop.svg +++ b/svgs/hand-stop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/hand.svg b/svgs/hand.svg index 164c389..358ba5d 100644 --- a/svgs/hand.svg +++ b/svgs/hand.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/handset.svg b/svgs/handset.svg index 8ef2de7..98520f4 100644 --- a/svgs/handset.svg +++ b/svgs/handset.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/hard-drive.svg b/svgs/hard-drive.svg index 7afeac5..5e09e94 100644 --- a/svgs/hard-drive.svg +++ b/svgs/hard-drive.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/hashtag.svg b/svgs/hashtag.svg index 809e75b..3d825a2 100644 --- a/svgs/hashtag.svg +++ b/svgs/hashtag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/heading-1.svg b/svgs/heading-1.svg index 31c52a6..03c75d7 100644 --- a/svgs/heading-1.svg +++ b/svgs/heading-1.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/heading-2.svg b/svgs/heading-2.svg index 54fc891..5452b08 100644 --- a/svgs/heading-2.svg +++ b/svgs/heading-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/heading-3.svg b/svgs/heading-3.svg index 571d58e..96b8f58 100644 --- a/svgs/heading-3.svg +++ b/svgs/heading-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/heading-4.svg b/svgs/heading-4.svg index ba3f271..0ba4f44 100644 --- a/svgs/heading-4.svg +++ b/svgs/heading-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/heading-5.svg b/svgs/heading-5.svg index e74c1fa..30ae64f 100644 --- a/svgs/heading-5.svg +++ b/svgs/heading-5.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/heading-6.svg b/svgs/heading-6.svg index 9c739e5..42ff961 100644 --- a/svgs/heading-6.svg +++ b/svgs/heading-6.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/heading.svg b/svgs/heading.svg index 5fbb12f..f88ca7b 100644 --- a/svgs/heading.svg +++ b/svgs/heading.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/headphones.svg b/svgs/headphones.svg index 2b8c27e..dcef88e 100644 --- a/svgs/headphones.svg +++ b/svgs/headphones.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/heart-crack.svg b/svgs/heart-crack.svg index fd66c02..34a7b4c 100644 --- a/svgs/heart-crack.svg +++ b/svgs/heart-crack.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/heart-fill.svg b/svgs/heart-fill.svg index 4d10734..6299fe9 100644 --- a/svgs/heart-fill.svg +++ b/svgs/heart-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/heart-pulse.svg b/svgs/heart-pulse.svg index 0d34da1..579f448 100644 --- a/svgs/heart-pulse.svg +++ b/svgs/heart-pulse.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/heart.svg b/svgs/heart.svg index 2cff0e6..34b8f59 100644 --- a/svgs/heart.svg +++ b/svgs/heart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/hierarchy.svg b/svgs/hierarchy.svg index 086ed1e..a1c9026 100644 --- a/svgs/hierarchy.svg +++ b/svgs/hierarchy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/house.svg b/svgs/house.svg index 7b78ccd..ee9bbd1 100644 --- a/svgs/house.svg +++ b/svgs/house.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/italic.svg b/svgs/italic.svg index 237da2d..aad41c9 100644 --- a/svgs/italic.svg +++ b/svgs/italic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/key.svg b/svgs/key.svg index e8bff2b..d55aef4 100644 --- a/svgs/key.svg +++ b/svgs/key.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/keyboard.svg b/svgs/keyboard.svg index d2a298a..eb5c419 100644 --- a/svgs/keyboard.svg +++ b/svgs/keyboard.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layers-3-diagonal.svg b/svgs/layers-3-diagonal.svg index 410518f..d47798a 100644 --- a/svgs/layers-3-diagonal.svg +++ b/svgs/layers-3-diagonal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layers-vertical.svg b/svgs/layers-vertical.svg index a75808d..8901a8c 100644 --- a/svgs/layers-vertical.svg +++ b/svgs/layers-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layers.svg b/svgs/layers.svg index 75695ed..e8e5a31 100644 --- a/svgs/layers.svg +++ b/svgs/layers.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layout-cells-large.svg b/svgs/layout-cells-large.svg index 9361072..571ae21 100644 --- a/svgs/layout-cells-large.svg +++ b/svgs/layout-cells-large.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layout-cells.svg b/svgs/layout-cells.svg index 9d9fcc4..8a2e20d 100644 --- a/svgs/layout-cells.svg +++ b/svgs/layout-cells.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layout-columns-3.svg b/svgs/layout-columns-3.svg index 12fb20a..fba6d8e 100644 --- a/svgs/layout-columns-3.svg +++ b/svgs/layout-columns-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layout-columns.svg b/svgs/layout-columns.svg index 79e1c34..ce50efe 100644 --- a/svgs/layout-columns.svg +++ b/svgs/layout-columns.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layout-footer.svg b/svgs/layout-footer.svg index be13d38..cc816e7 100644 --- a/svgs/layout-footer.svg +++ b/svgs/layout-footer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layout-header-cells-large-fill.svg b/svgs/layout-header-cells-large-fill.svg index 49bc4f6..75ec760 100644 --- a/svgs/layout-header-cells-large-fill.svg +++ b/svgs/layout-header-cells-large-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layout-header-cells-large-letter-d.svg b/svgs/layout-header-cells-large-letter-d.svg index c477a49..05482ab 100644 --- a/svgs/layout-header-cells-large-letter-d.svg +++ b/svgs/layout-header-cells-large-letter-d.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layout-header-cells-large-thunderbolt.svg b/svgs/layout-header-cells-large-thunderbolt.svg index e7a2ccc..474e374 100644 --- a/svgs/layout-header-cells-large-thunderbolt.svg +++ b/svgs/layout-header-cells-large-thunderbolt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layout-header-cells-large.svg b/svgs/layout-header-cells-large.svg index 4519864..14781a6 100644 --- a/svgs/layout-header-cells-large.svg +++ b/svgs/layout-header-cells-large.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layout-header-cells.svg b/svgs/layout-header-cells.svg index f9c2457..2d3d3ad 100644 --- a/svgs/layout-header-cells.svg +++ b/svgs/layout-header-cells.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layout-header-columns.svg b/svgs/layout-header-columns.svg index 285254e..9745cd5 100644 --- a/svgs/layout-header-columns.svg +++ b/svgs/layout-header-columns.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layout-header-cursor.svg b/svgs/layout-header-cursor.svg index 35a259f..4601228 100644 --- a/svgs/layout-header-cursor.svg +++ b/svgs/layout-header-cursor.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layout-header-side-content.svg b/svgs/layout-header-side-content.svg index 9685d82..1a8a4a2 100644 --- a/svgs/layout-header-side-content.svg +++ b/svgs/layout-header-side-content.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layout-header.svg b/svgs/layout-header.svg index 51a6748..8b348b1 100644 --- a/svgs/layout-header.svg +++ b/svgs/layout-header.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layout-list.svg b/svgs/layout-list.svg index d71fe8a..478c2fc 100644 --- a/svgs/layout-list.svg +++ b/svgs/layout-list.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layout-rows-3.svg b/svgs/layout-rows-3.svg index f39a234..7eb9bd3 100644 --- a/svgs/layout-rows-3.svg +++ b/svgs/layout-rows-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layout-rows.svg b/svgs/layout-rows.svg index 3f384f0..3ecb569 100644 --- a/svgs/layout-rows.svg +++ b/svgs/layout-rows.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layout-side-content-left.svg b/svgs/layout-side-content-left.svg index f2abfef..fd7eec6 100644 --- a/svgs/layout-side-content-left.svg +++ b/svgs/layout-side-content-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layout-side-content-right.svg b/svgs/layout-side-content-right.svg index 54c2078..c84b31b 100644 --- a/svgs/layout-side-content-right.svg +++ b/svgs/layout-side-content-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layout-side-content.svg b/svgs/layout-side-content.svg index f2abfef..fd7eec6 100644 --- a/svgs/layout-side-content.svg +++ b/svgs/layout-side-content.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layout-split-columns-3.svg b/svgs/layout-split-columns-3.svg index 8781732..230e5f8 100644 --- a/svgs/layout-split-columns-3.svg +++ b/svgs/layout-split-columns-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layout-split-columns.svg b/svgs/layout-split-columns.svg index 4fce3cf..27d13c8 100644 --- a/svgs/layout-split-columns.svg +++ b/svgs/layout-split-columns.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layout-split-rows.svg b/svgs/layout-split-rows.svg index 0a15596..cfdd1f2 100644 --- a/svgs/layout-split-rows.svg +++ b/svgs/layout-split-rows.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layout-split-side-content-left.svg b/svgs/layout-split-side-content-left.svg index b7b153d..6b1ac84 100644 --- a/svgs/layout-split-side-content-left.svg +++ b/svgs/layout-split-side-content-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layout-split-side-content-right.svg b/svgs/layout-split-side-content-right.svg index a982860..1c2fb6e 100644 --- a/svgs/layout-split-side-content-right.svg +++ b/svgs/layout-split-side-content-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/layout-tabs.svg b/svgs/layout-tabs.svg index 5091d3e..a6995b3 100644 --- a/svgs/layout-tabs.svg +++ b/svgs/layout-tabs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/letter-group.svg b/svgs/letter-group.svg index 38c1183..c24d493 100644 --- a/svgs/letter-group.svg +++ b/svgs/letter-group.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/letter-m.svg b/svgs/letter-m.svg index 865925e..f2c8994 100644 --- a/svgs/letter-m.svg +++ b/svgs/letter-m.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/life-ring.svg b/svgs/life-ring.svg index ac2996c..7f590d6 100644 --- a/svgs/life-ring.svg +++ b/svgs/life-ring.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/link-slash.svg b/svgs/link-slash.svg index 94c65d6..477caf5 100644 --- a/svgs/link-slash.svg +++ b/svgs/link-slash.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/link.svg b/svgs/link.svg index 03711f4..67d7cdd 100644 --- a/svgs/link.svg +++ b/svgs/link.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/list-check-lock.svg b/svgs/list-check-lock.svg index 0760f73..f022bc0 100644 --- a/svgs/list-check-lock.svg +++ b/svgs/list-check-lock.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/list-check.svg b/svgs/list-check.svg index 17b4207..38df13d 100644 --- a/svgs/list-check.svg +++ b/svgs/list-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/list-ol.svg b/svgs/list-ol.svg index 1a5b8b2..4b5fa14 100644 --- a/svgs/list-ol.svg +++ b/svgs/list-ol.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/list-timeline.svg b/svgs/list-timeline.svg index 38bba4f..2df7f9d 100644 --- a/svgs/list-timeline.svg +++ b/svgs/list-timeline.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/list-ul.svg b/svgs/list-ul.svg index 02e3bea..11d2497 100644 --- a/svgs/list-ul.svg +++ b/svgs/list-ul.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/lock-open.svg b/svgs/lock-open.svg index a1aadd7..47b371d 100644 --- a/svgs/lock-open.svg +++ b/svgs/lock-open.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/lock.svg b/svgs/lock.svg index 73fc0e9..6bffbb9 100644 --- a/svgs/lock.svg +++ b/svgs/lock.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/logo-acrobat.svg b/svgs/logo-acrobat.svg index c7b206d..a3f5bdc 100644 --- a/svgs/logo-acrobat.svg +++ b/svgs/logo-acrobat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/logo-docker.svg b/svgs/logo-docker.svg index 6e8f2ed..62c0e5e 100644 --- a/svgs/logo-docker.svg +++ b/svgs/logo-docker.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/logo-draw-io.svg b/svgs/logo-draw-io.svg index 5e5d3ba..1af3557 100644 --- a/svgs/logo-draw-io.svg +++ b/svgs/logo-draw-io.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/logo-facebook.svg b/svgs/logo-facebook.svg index fd68c9d..c56cf59 100644 --- a/svgs/logo-facebook.svg +++ b/svgs/logo-facebook.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/logo-gitlab.svg b/svgs/logo-gitlab.svg index b13fbf4..5d018f5 100644 --- a/svgs/logo-gitlab.svg +++ b/svgs/logo-gitlab.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/logo-linux.svg b/svgs/logo-linux.svg index c9ca8ae..928279b 100644 --- a/svgs/logo-linux.svg +++ b/svgs/logo-linux.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/logo-macos.svg b/svgs/logo-macos.svg index 87d1d56..7b52ebe 100644 --- a/svgs/logo-macos.svg +++ b/svgs/logo-macos.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/logo-markdown.svg b/svgs/logo-markdown.svg index d1acaee..1a3c7d7 100644 --- a/svgs/logo-markdown.svg +++ b/svgs/logo-markdown.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/logo-mermaid.svg b/svgs/logo-mermaid.svg index 3460ce4..28386b2 100644 --- a/svgs/logo-mermaid.svg +++ b/svgs/logo-mermaid.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/logo-notion.svg b/svgs/logo-notion.svg index bf52193..39db7f6 100644 --- a/svgs/logo-notion.svg +++ b/svgs/logo-notion.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/logo-osi.svg b/svgs/logo-osi.svg index 7564eee..57107c8 100644 --- a/svgs/logo-osi.svg +++ b/svgs/logo-osi.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/logo-python.svg b/svgs/logo-python.svg index 165b3e2..bf11c58 100644 --- a/svgs/logo-python.svg +++ b/svgs/logo-python.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/logo-stack-overflow.svg b/svgs/logo-stack-overflow.svg index dee27be..3142f02 100644 --- a/svgs/logo-stack-overflow.svg +++ b/svgs/logo-stack-overflow.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/logo-telegram.svg b/svgs/logo-telegram.svg index 85f0c70..fde248d 100644 --- a/svgs/logo-telegram.svg +++ b/svgs/logo-telegram.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/logo-ubuntu.svg b/svgs/logo-ubuntu.svg index ec09a7f..6e9d112 100644 --- a/svgs/logo-ubuntu.svg +++ b/svgs/logo-ubuntu.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/logo-windows.svg b/svgs/logo-windows.svg index db0d488..8af418c 100644 --- a/svgs/logo-windows.svg +++ b/svgs/logo-windows.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/logo-yandex-cloud.svg b/svgs/logo-yandex-cloud.svg index 1c970eb..c07f598 100644 --- a/svgs/logo-yandex-cloud.svg +++ b/svgs/logo-yandex-cloud.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/logo-yandex-messenger.svg b/svgs/logo-yandex-messenger.svg index 1387ce5..9eb543f 100644 --- a/svgs/logo-yandex-messenger.svg +++ b/svgs/logo-yandex-messenger.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/logo-yandex-tracker.svg b/svgs/logo-yandex-tracker.svg index 431daa4..1846aa1 100644 --- a/svgs/logo-yandex-tracker.svg +++ b/svgs/logo-yandex-tracker.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/logo-yandex.svg b/svgs/logo-yandex.svg index d57c32b..9354da3 100644 --- a/svgs/logo-yandex.svg +++ b/svgs/logo-yandex.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/magic-wand.svg b/svgs/magic-wand.svg index f25ade7..9645195 100644 --- a/svgs/magic-wand.svg +++ b/svgs/magic-wand.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/magnet.svg b/svgs/magnet.svg index 7bd1675..32c0365 100644 --- a/svgs/magnet.svg +++ b/svgs/magnet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/magnifier-minus.svg b/svgs/magnifier-minus.svg index 585b597..32e4b25 100644 --- a/svgs/magnifier-minus.svg +++ b/svgs/magnifier-minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/magnifier-plus.svg b/svgs/magnifier-plus.svg index 46542e8..e1c0a01 100644 --- a/svgs/magnifier-plus.svg +++ b/svgs/magnifier-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/magnifier.svg b/svgs/magnifier.svg index 31dc748..3d4b9cc 100644 --- a/svgs/magnifier.svg +++ b/svgs/magnifier.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/map-pin-minus.svg b/svgs/map-pin-minus.svg index 996ea6d..472d95b 100644 --- a/svgs/map-pin-minus.svg +++ b/svgs/map-pin-minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/map-pin-plus.svg b/svgs/map-pin-plus.svg index 8b995c3..cf58e60 100644 --- a/svgs/map-pin-plus.svg +++ b/svgs/map-pin-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/map-pin.svg b/svgs/map-pin.svg index 154f011..ab08432 100644 --- a/svgs/map-pin.svg +++ b/svgs/map-pin.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/math-intersection-shape.svg b/svgs/math-intersection-shape.svg index 596bbbc..f129669 100644 --- a/svgs/math-intersection-shape.svg +++ b/svgs/math-intersection-shape.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/math-operations.svg b/svgs/math-operations.svg index a6ffb34..0e2f4fc 100644 --- a/svgs/math-operations.svg +++ b/svgs/math-operations.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/math-union-shape.svg b/svgs/math-union-shape.svg index ab49dde..b3e4cff 100644 --- a/svgs/math-union-shape.svg +++ b/svgs/math-union-shape.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/medal.svg b/svgs/medal.svg index 759280f..e1c5902 100644 --- a/svgs/medal.svg +++ b/svgs/medal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/megaphone.svg b/svgs/megaphone.svg index 6ed015d..6ba8b01 100644 --- a/svgs/megaphone.svg +++ b/svgs/megaphone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/microphone-slash.svg b/svgs/microphone-slash.svg index e60b0dd..4deb5b4 100644 --- a/svgs/microphone-slash.svg +++ b/svgs/microphone-slash.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/microphone.svg b/svgs/microphone.svg index eb535d9..0e3742b 100644 --- a/svgs/microphone.svg +++ b/svgs/microphone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/minus.svg b/svgs/minus.svg index 8d38d0d..d40abb9 100644 --- a/svgs/minus.svg +++ b/svgs/minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/molecule.svg b/svgs/molecule.svg index d3b1b68..89fab43 100644 --- a/svgs/molecule.svg +++ b/svgs/molecule.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/moon.svg b/svgs/moon.svg index b6e4215..235f6bd 100644 --- a/svgs/moon.svg +++ b/svgs/moon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/mug.svg b/svgs/mug.svg index 596d2f3..f27b30d 100644 --- a/svgs/mug.svg +++ b/svgs/mug.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/music-note.svg b/svgs/music-note.svg index 0550bbe..e7e3cd1 100644 --- a/svgs/music-note.svg +++ b/svgs/music-note.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/nodes-down.svg b/svgs/nodes-down.svg index aeb6d8a..5046811 100644 --- a/svgs/nodes-down.svg +++ b/svgs/nodes-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/nodes-left.svg b/svgs/nodes-left.svg index 12da84b..3544e4c 100644 --- a/svgs/nodes-left.svg +++ b/svgs/nodes-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/nodes-right.svg b/svgs/nodes-right.svg index bae9e5d..fd9675a 100644 --- a/svgs/nodes-right.svg +++ b/svgs/nodes-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/nodes-up.svg b/svgs/nodes-up.svg index 2ba6858..bbddc82 100644 --- a/svgs/nodes-up.svg +++ b/svgs/nodes-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/nut-hex.svg b/svgs/nut-hex.svg index 875350f..6f2d6c3 100644 --- a/svgs/nut-hex.svg +++ b/svgs/nut-hex.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/object-align-bottom.svg b/svgs/object-align-bottom.svg index cc5ccd1..580b42c 100644 --- a/svgs/object-align-bottom.svg +++ b/svgs/object-align-bottom.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/object-align-center-horizontal.svg b/svgs/object-align-center-horizontal.svg index 3388066..c907b28 100644 --- a/svgs/object-align-center-horizontal.svg +++ b/svgs/object-align-center-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/object-align-center-vertical.svg b/svgs/object-align-center-vertical.svg index 6fe0fc5..7683e94 100644 --- a/svgs/object-align-center-vertical.svg +++ b/svgs/object-align-center-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/object-align-justify-horizontal.svg b/svgs/object-align-justify-horizontal.svg index 9ac5108..3852b37 100644 --- a/svgs/object-align-justify-horizontal.svg +++ b/svgs/object-align-justify-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/object-align-justify-vertical.svg b/svgs/object-align-justify-vertical.svg index b7d223f..340c358 100644 --- a/svgs/object-align-justify-vertical.svg +++ b/svgs/object-align-justify-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/object-align-left.svg b/svgs/object-align-left.svg index 2cf230f..6e585a3 100644 --- a/svgs/object-align-left.svg +++ b/svgs/object-align-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/object-align-right.svg b/svgs/object-align-right.svg index b11ffc1..ef13f3e 100644 --- a/svgs/object-align-right.svg +++ b/svgs/object-align-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/object-align-top.svg b/svgs/object-align-top.svg index 3dd631e..ff73af8 100644 --- a/svgs/object-align-top.svg +++ b/svgs/object-align-top.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/objects-align-bottom.svg b/svgs/objects-align-bottom.svg index cb41bf8..de9c09a 100644 --- a/svgs/objects-align-bottom.svg +++ b/svgs/objects-align-bottom.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/objects-align-center-horizontal.svg b/svgs/objects-align-center-horizontal.svg index f5faafc..429d473 100644 --- a/svgs/objects-align-center-horizontal.svg +++ b/svgs/objects-align-center-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/objects-align-center-vertical.svg b/svgs/objects-align-center-vertical.svg index 9cb5c48..d43e106 100644 --- a/svgs/objects-align-center-vertical.svg +++ b/svgs/objects-align-center-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/objects-align-justify-horizontal.svg b/svgs/objects-align-justify-horizontal.svg index 60dee5f..a04de66 100644 --- a/svgs/objects-align-justify-horizontal.svg +++ b/svgs/objects-align-justify-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/objects-align-justify-vertical.svg b/svgs/objects-align-justify-vertical.svg index 166ea2d..a530f71 100644 --- a/svgs/objects-align-justify-vertical.svg +++ b/svgs/objects-align-justify-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/objects-align-left.svg b/svgs/objects-align-left.svg index f56d3e4..27939ab 100644 --- a/svgs/objects-align-left.svg +++ b/svgs/objects-align-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/objects-align-right.svg b/svgs/objects-align-right.svg index 705a5a0..f75e6ef 100644 --- a/svgs/objects-align-right.svg +++ b/svgs/objects-align-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/objects-align-top.svg b/svgs/objects-align-top.svg index fdacdb6..7e47f03 100644 --- a/svgs/objects-align-top.svg +++ b/svgs/objects-align-top.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/octagon-xmark.svg b/svgs/octagon-xmark.svg index e938243..f184e65 100644 --- a/svgs/octagon-xmark.svg +++ b/svgs/octagon-xmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/office-badge.svg b/svgs/office-badge.svg index 0fa0fcf..3a7c765 100644 --- a/svgs/office-badge.svg +++ b/svgs/office-badge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/palette.svg b/svgs/palette.svg index 9c6bf44..7e04581 100644 --- a/svgs/palette.svg +++ b/svgs/palette.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/paper-plane.svg b/svgs/paper-plane.svg index 4a7d2ac..2ec2df5 100644 --- a/svgs/paper-plane.svg +++ b/svgs/paper-plane.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/paperclip.svg b/svgs/paperclip.svg index 9aed9de..74c893e 100644 --- a/svgs/paperclip.svg +++ b/svgs/paperclip.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/passport.svg b/svgs/passport.svg index 714ab38..bb89b7e 100644 --- a/svgs/passport.svg +++ b/svgs/passport.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/pause-fill.svg b/svgs/pause-fill.svg index 70e365d..49ab66d 100644 --- a/svgs/pause-fill.svg +++ b/svgs/pause-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/pause.svg b/svgs/pause.svg index 1d8238a..1ba9f4b 100644 --- a/svgs/pause.svg +++ b/svgs/pause.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/pencil-to-line.svg b/svgs/pencil-to-line.svg index 6f4f670..3491ee7 100644 --- a/svgs/pencil-to-line.svg +++ b/svgs/pencil-to-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/pencil-to-square.svg b/svgs/pencil-to-square.svg index 8571afe..4659b88 100644 --- a/svgs/pencil-to-square.svg +++ b/svgs/pencil-to-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/pencil.svg b/svgs/pencil.svg index d7e86f1..dcd5602 100644 --- a/svgs/pencil.svg +++ b/svgs/pencil.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/percent.svg b/svgs/percent.svg index 1eb6c26..a538945 100644 --- a/svgs/percent.svg +++ b/svgs/percent.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/person-gear.svg b/svgs/person-gear.svg index 06b8124..e3c6ce1 100644 --- a/svgs/person-gear.svg +++ b/svgs/person-gear.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/person-magnifier.svg b/svgs/person-magnifier.svg index 578d070..298e854 100644 --- a/svgs/person-magnifier.svg +++ b/svgs/person-magnifier.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/person-nut-hex.svg b/svgs/person-nut-hex.svg index c7a3ce9..ae8ad27 100644 --- a/svgs/person-nut-hex.svg +++ b/svgs/person-nut-hex.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/person-pencil.svg b/svgs/person-pencil.svg index 6f46b0e..4829845 100644 --- a/svgs/person-pencil.svg +++ b/svgs/person-pencil.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/person-planet-earth.svg b/svgs/person-planet-earth.svg index fa0cb76..6ecb766 100644 --- a/svgs/person-planet-earth.svg +++ b/svgs/person-planet-earth.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/person-plus.svg b/svgs/person-plus.svg index 272ad65..6dc844f 100644 --- a/svgs/person-plus.svg +++ b/svgs/person-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/person-speaker.svg b/svgs/person-speaker.svg index 34828b3..aa6f392 100644 --- a/svgs/person-speaker.svg +++ b/svgs/person-speaker.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/person-worker.svg b/svgs/person-worker.svg index ef38342..26d9d09 100644 --- a/svgs/person-worker.svg +++ b/svgs/person-worker.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/person-xmark.svg b/svgs/person-xmark.svg index 5bc6d75..fd4be0b 100644 --- a/svgs/person-xmark.svg +++ b/svgs/person-xmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/person.svg b/svgs/person.svg index 44f780e..74172e7 100644 --- a/svgs/person.svg +++ b/svgs/person.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/persons-lock.svg b/svgs/persons-lock.svg index e569363..8a6d149 100644 --- a/svgs/persons-lock.svg +++ b/svgs/persons-lock.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/persons.svg b/svgs/persons.svg index 7b049ec..367030d 100644 --- a/svgs/persons.svg +++ b/svgs/persons.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/picture.svg b/svgs/picture.svg index 267eeeb..3d7f3d3 100644 --- a/svgs/picture.svg +++ b/svgs/picture.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/pill.svg b/svgs/pill.svg index 3b66e13..4b301a3 100644 --- a/svgs/pill.svg +++ b/svgs/pill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/pin-fill.svg b/svgs/pin-fill.svg index e42764f..6b36c57 100644 --- a/svgs/pin-fill.svg +++ b/svgs/pin-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/pin-slash-fill.svg b/svgs/pin-slash-fill.svg index b29b068..b73d143 100644 --- a/svgs/pin-slash-fill.svg +++ b/svgs/pin-slash-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/pin-slash.svg b/svgs/pin-slash.svg index f3309fb..be1476a 100644 --- a/svgs/pin-slash.svg +++ b/svgs/pin-slash.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/pin.svg b/svgs/pin.svg index a1e3f86..25084c3 100644 --- a/svgs/pin.svg +++ b/svgs/pin.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/pipeline.svg b/svgs/pipeline.svg index dd617d7..ce94aa1 100644 --- a/svgs/pipeline.svg +++ b/svgs/pipeline.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/planet-earth.svg b/svgs/planet-earth.svg index 3f3cdad..512778f 100644 --- a/svgs/planet-earth.svg +++ b/svgs/planet-earth.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/play-fill.svg b/svgs/play-fill.svg index 79541f0..d57e862 100644 --- a/svgs/play-fill.svg +++ b/svgs/play-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/play.svg b/svgs/play.svg index a295388..d7bd8d4 100644 --- a/svgs/play.svg +++ b/svgs/play.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/plug-connection.svg b/svgs/plug-connection.svg index 537d568..9f95d02 100644 --- a/svgs/plug-connection.svg +++ b/svgs/plug-connection.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/plug-wire.svg b/svgs/plug-wire.svg index 1a49b3c..435fcc8 100644 --- a/svgs/plug-wire.svg +++ b/svgs/plug-wire.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/plus.svg b/svgs/plus.svg index 2b16bc2..224b3b8 100644 --- a/svgs/plus.svg +++ b/svgs/plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/power.svg b/svgs/power.svg index 5ae1de3..722d17e 100644 --- a/svgs/power.svg +++ b/svgs/power.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/printer.svg b/svgs/printer.svg index 0374363..d4e2389 100644 --- a/svgs/printer.svg +++ b/svgs/printer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/pulse.svg b/svgs/pulse.svg index 3352904..e1de718 100644 --- a/svgs/pulse.svg +++ b/svgs/pulse.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/puzzle.svg b/svgs/puzzle.svg index dc1b7bd..eea4686 100644 --- a/svgs/puzzle.svg +++ b/svgs/puzzle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/qr-code.svg b/svgs/qr-code.svg index 7852483..6aa138b 100644 --- a/svgs/qr-code.svg +++ b/svgs/qr-code.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/quote-close.svg b/svgs/quote-close.svg index bdb9413..34c45a9 100644 --- a/svgs/quote-close.svg +++ b/svgs/quote-close.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/quote-open.svg b/svgs/quote-open.svg index 58e7f02..bbfe1a6 100644 --- a/svgs/quote-open.svg +++ b/svgs/quote-open.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/receipt.svg b/svgs/receipt.svg index 7237c65..5846378 100644 --- a/svgs/receipt.svg +++ b/svgs/receipt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/rectangle-pulse.svg b/svgs/rectangle-pulse.svg index 4d020cb..4568296 100644 --- a/svgs/rectangle-pulse.svg +++ b/svgs/rectangle-pulse.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/rectangles-4.svg b/svgs/rectangles-4.svg index bd55b51..45e6167 100644 --- a/svgs/rectangles-4.svg +++ b/svgs/rectangles-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/rocket.svg b/svgs/rocket.svg index f2242d7..6f16928 100644 --- a/svgs/rocket.svg +++ b/svgs/rocket.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/round-brackets.svg b/svgs/round-brackets.svg index d5810c4..3a660a4 100644 --- a/svgs/round-brackets.svg +++ b/svgs/round-brackets.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/route.svg b/svgs/route.svg index 65c140d..80fb3d6 100644 --- a/svgs/route.svg +++ b/svgs/route.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/sack.svg b/svgs/sack.svg index 94fa378..0dd7bf9 100644 --- a/svgs/sack.svg +++ b/svgs/sack.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/scales-balanced.svg b/svgs/scales-balanced.svg index 3637659..7d57ee6 100644 --- a/svgs/scales-balanced.svg +++ b/svgs/scales-balanced.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/scales-unbalanced.svg b/svgs/scales-unbalanced.svg index cf10865..b819bd7 100644 --- a/svgs/scales-unbalanced.svg +++ b/svgs/scales-unbalanced.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/scissors.svg b/svgs/scissors.svg index c2b68ce..192c953 100644 --- a/svgs/scissors.svg +++ b/svgs/scissors.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/seal-check.svg b/svgs/seal-check.svg index d1694bb..e1360b1 100644 --- a/svgs/seal-check.svg +++ b/svgs/seal-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/seal-percent.svg b/svgs/seal-percent.svg index ed6d7e3..a9b60d0 100644 --- a/svgs/seal-percent.svg +++ b/svgs/seal-percent.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/server.svg b/svgs/server.svg index 53fb7fd..32c3107 100644 --- a/svgs/server.svg +++ b/svgs/server.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/shapes-3.svg b/svgs/shapes-3.svg index e53ca3e..c6ef8ca 100644 --- a/svgs/shapes-3.svg +++ b/svgs/shapes-3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/shapes-4.svg b/svgs/shapes-4.svg index ce0bc2c..34614e2 100644 --- a/svgs/shapes-4.svg +++ b/svgs/shapes-4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/shield-check.svg b/svgs/shield-check.svg index 6c27a93..2290d5d 100644 --- a/svgs/shield-check.svg +++ b/svgs/shield-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/shield-exclamation.svg b/svgs/shield-exclamation.svg index 91dd8ee..c7ffab5 100644 --- a/svgs/shield-exclamation.svg +++ b/svgs/shield-exclamation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/shield-keyhole.svg b/svgs/shield-keyhole.svg index 8351daf..3b53b0f 100644 --- a/svgs/shield-keyhole.svg +++ b/svgs/shield-keyhole.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/shield.svg b/svgs/shield.svg index f62cabe..1f9a163 100644 --- a/svgs/shield.svg +++ b/svgs/shield.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/shopping-bag.svg b/svgs/shopping-bag.svg index 518a191..9fc5904 100644 --- a/svgs/shopping-bag.svg +++ b/svgs/shopping-bag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/shopping-basket.svg b/svgs/shopping-basket.svg index 01fd59c..e88870b 100644 --- a/svgs/shopping-basket.svg +++ b/svgs/shopping-basket.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/shopping-cart.svg b/svgs/shopping-cart.svg index 5696311..0622fb5 100644 --- a/svgs/shopping-cart.svg +++ b/svgs/shopping-cart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/shuffle.svg b/svgs/shuffle.svg index 8d7e9c6..c9a1c7f 100644 --- a/svgs/shuffle.svg +++ b/svgs/shuffle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/signal.svg b/svgs/signal.svg index 02bc76a..b9473e8 100644 --- a/svgs/signal.svg +++ b/svgs/signal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/sliders-vertical.svg b/svgs/sliders-vertical.svg index d76f335..cc96712 100644 --- a/svgs/sliders-vertical.svg +++ b/svgs/sliders-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/sliders.svg b/svgs/sliders.svg index 43f4fcc..976d341 100644 --- a/svgs/sliders.svg +++ b/svgs/sliders.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/smartphone.svg b/svgs/smartphone.svg index 808b1c5..233f376 100644 --- a/svgs/smartphone.svg +++ b/svgs/smartphone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/snail.svg b/svgs/snail.svg index f7a079c..3710ee3 100644 --- a/svgs/snail.svg +++ b/svgs/snail.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/snowflake.svg b/svgs/snowflake.svg index 570ed00..0d1ed35 100644 --- a/svgs/snowflake.svg +++ b/svgs/snowflake.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/sphere.svg b/svgs/sphere.svg index 5cac5c9..6c883dd 100644 --- a/svgs/sphere.svg +++ b/svgs/sphere.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/square-article.svg b/svgs/square-article.svg index 58e1684..71e3f84 100644 --- a/svgs/square-article.svg +++ b/svgs/square-article.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/square-bars-vertical.svg b/svgs/square-bars-vertical.svg index 608e6d9..d7d70cc 100644 --- a/svgs/square-bars-vertical.svg +++ b/svgs/square-bars-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/square-bars.svg b/svgs/square-bars.svg index c1a95fb..00e104a 100644 --- a/svgs/square-bars.svg +++ b/svgs/square-bars.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/square-brackets-bars-vertical.svg b/svgs/square-brackets-bars-vertical.svg index 96d22ca..192ebcc 100644 --- a/svgs/square-brackets-bars-vertical.svg +++ b/svgs/square-brackets-bars-vertical.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/square-brackets-letter-a.svg b/svgs/square-brackets-letter-a.svg index 1685427..96f395f 100644 --- a/svgs/square-brackets-letter-a.svg +++ b/svgs/square-brackets-letter-a.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/square-brackets.svg b/svgs/square-brackets.svg index 9fd041e..c609615 100644 --- a/svgs/square-brackets.svg +++ b/svgs/square-brackets.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/square-chart-bar.svg b/svgs/square-chart-bar.svg index fd16ad9..ee774f5 100644 --- a/svgs/square-chart-bar.svg +++ b/svgs/square-chart-bar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/square-chart-column.svg b/svgs/square-chart-column.svg index d07cea2..7c689e5 100644 --- a/svgs/square-chart-column.svg +++ b/svgs/square-chart-column.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/square-check.svg b/svgs/square-check.svg index cbb1b50..99f728c 100644 --- a/svgs/square-check.svg +++ b/svgs/square-check.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/square-dashed-circle.svg b/svgs/square-dashed-circle.svg index 90dbff1..f83438d 100644 --- a/svgs/square-dashed-circle.svg +++ b/svgs/square-dashed-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/square-dashed-letter-a.svg b/svgs/square-dashed-letter-a.svg index 518c663..049bab0 100644 --- a/svgs/square-dashed-letter-a.svg +++ b/svgs/square-dashed-letter-a.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/square-dashed-letter-t.svg b/svgs/square-dashed-letter-t.svg index 09b86e4..2fdebcf 100644 --- a/svgs/square-dashed-letter-t.svg +++ b/svgs/square-dashed-letter-t.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/square-dashed-text.svg b/svgs/square-dashed-text.svg index 48b958f..c2da5f8 100644 --- a/svgs/square-dashed-text.svg +++ b/svgs/square-dashed-text.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/square-dashed.svg b/svgs/square-dashed.svg index cb8f8d6..8f07d1a 100644 --- a/svgs/square-dashed.svg +++ b/svgs/square-dashed.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/square-dot.svg b/svgs/square-dot.svg index 2919618..6c2e9c2 100644 --- a/svgs/square-dot.svg +++ b/svgs/square-dot.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/square-exclamation.svg b/svgs/square-exclamation.svg index b3d2f85..94ece4f 100644 --- a/svgs/square-exclamation.svg +++ b/svgs/square-exclamation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/square-fill.svg b/svgs/square-fill.svg index 711f44b..3715569 100644 --- a/svgs/square-fill.svg +++ b/svgs/square-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/square-hashtag.svg b/svgs/square-hashtag.svg index daa74e0..3ab7283 100644 --- a/svgs/square-hashtag.svg +++ b/svgs/square-hashtag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/square-letter-p.svg b/svgs/square-letter-p.svg index 8887ad0..671e838 100644 --- a/svgs/square-letter-p.svg +++ b/svgs/square-letter-p.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/square-letter-t.svg b/svgs/square-letter-t.svg index 30868ce..ca1eece 100644 --- a/svgs/square-letter-t.svg +++ b/svgs/square-letter-t.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/square-list-ul.svg b/svgs/square-list-ul.svg index eda772c..9f8a479 100644 --- a/svgs/square-list-ul.svg +++ b/svgs/square-list-ul.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/square-minus.svg b/svgs/square-minus.svg index a8cea46..6efd388 100644 --- a/svgs/square-minus.svg +++ b/svgs/square-minus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/square-plus.svg b/svgs/square-plus.svg index 286e698..609daf4 100644 --- a/svgs/square-plus.svg +++ b/svgs/square-plus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/square-xmark.svg b/svgs/square-xmark.svg index b0ec733..85b6837 100644 --- a/svgs/square-xmark.svg +++ b/svgs/square-xmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/square.svg b/svgs/square.svg index 3ee8575..ec084c8 100644 --- a/svgs/square.svg +++ b/svgs/square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/star-fill.svg b/svgs/star-fill.svg index dba5bbb..f13fba6 100644 --- a/svgs/star-fill.svg +++ b/svgs/star-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/star.svg b/svgs/star.svg index 60d96fc..f6d4f9e 100644 --- a/svgs/star.svg +++ b/svgs/star.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/stethoscope.svg b/svgs/stethoscope.svg index 190a3ac..cf021b0 100644 --- a/svgs/stethoscope.svg +++ b/svgs/stethoscope.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/sticker.svg b/svgs/sticker.svg index df4eddd..e45554b 100644 --- a/svgs/sticker.svg +++ b/svgs/sticker.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/stop-fill.svg b/svgs/stop-fill.svg index 711f44b..3715569 100644 --- a/svgs/stop-fill.svg +++ b/svgs/stop-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/stop.svg b/svgs/stop.svg index 3ee8575..ec084c8 100644 --- a/svgs/stop.svg +++ b/svgs/stop.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/stopwatch.svg b/svgs/stopwatch.svg index 99de458..8efea02 100644 --- a/svgs/stopwatch.svg +++ b/svgs/stopwatch.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/strikethrough.svg b/svgs/strikethrough.svg index ea2575d..5df0b9a 100644 --- a/svgs/strikethrough.svg +++ b/svgs/strikethrough.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/suitcase.svg b/svgs/suitcase.svg index f6e88d6..f59ae8f 100644 --- a/svgs/suitcase.svg +++ b/svgs/suitcase.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/sun.svg b/svgs/sun.svg index dd37ff9..6284106 100644 --- a/svgs/sun.svg +++ b/svgs/sun.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/t-shirt.svg b/svgs/t-shirt.svg index 0647e81..e9ead71 100644 --- a/svgs/t-shirt.svg +++ b/svgs/t-shirt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/tag-dollar.svg b/svgs/tag-dollar.svg index edbd740..c79e1f8 100644 --- a/svgs/tag-dollar.svg +++ b/svgs/tag-dollar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/tag-ruble.svg b/svgs/tag-ruble.svg index 0c241b5..fb71335 100644 --- a/svgs/tag-ruble.svg +++ b/svgs/tag-ruble.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/tag.svg b/svgs/tag.svg index fec31b4..43244cb 100644 --- a/svgs/tag.svg +++ b/svgs/tag.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/tags.svg b/svgs/tags.svg index 6773071..d37ee04 100644 --- a/svgs/tags.svg +++ b/svgs/tags.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/target-dart.svg b/svgs/target-dart.svg index 6d5125d..829611f 100644 --- a/svgs/target-dart.svg +++ b/svgs/target-dart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/target.svg b/svgs/target.svg index 8fa6927..db46ad4 100644 --- a/svgs/target.svg +++ b/svgs/target.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/terminal-line.svg b/svgs/terminal-line.svg index c926b91..f448436 100644 --- a/svgs/terminal-line.svg +++ b/svgs/terminal-line.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/terminal.svg b/svgs/terminal.svg index 2e4893a..d90afd1 100644 --- a/svgs/terminal.svg +++ b/svgs/terminal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/text-align-center.svg b/svgs/text-align-center.svg index c01c2d5..ff44272 100644 --- a/svgs/text-align-center.svg +++ b/svgs/text-align-center.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/text-align-justify.svg b/svgs/text-align-justify.svg index 03fcefb..6a20ba0 100644 --- a/svgs/text-align-justify.svg +++ b/svgs/text-align-justify.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/text-align-left.svg b/svgs/text-align-left.svg index 6dc577d..fa6577f 100644 --- a/svgs/text-align-left.svg +++ b/svgs/text-align-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/text-align-right.svg b/svgs/text-align-right.svg index 3748e65..07c7a5e 100644 --- a/svgs/text-align-right.svg +++ b/svgs/text-align-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/text-indent.svg b/svgs/text-indent.svg index c1c2ffb..462bd81 100644 --- a/svgs/text-indent.svg +++ b/svgs/text-indent.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/text-outdent.svg b/svgs/text-outdent.svg index c89fa9c..9098c6f 100644 --- a/svgs/text-outdent.svg +++ b/svgs/text-outdent.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/text.svg b/svgs/text.svg index e63c6e3..3c0b0e4 100644 --- a/svgs/text.svg +++ b/svgs/text.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/thumbs-down-fill.svg b/svgs/thumbs-down-fill.svg index 7d4cd29..c41fdb2 100644 --- a/svgs/thumbs-down-fill.svg +++ b/svgs/thumbs-down-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/thumbs-down.svg b/svgs/thumbs-down.svg index c6a0e80..efab10b 100644 --- a/svgs/thumbs-down.svg +++ b/svgs/thumbs-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/thumbs-up-2.svg b/svgs/thumbs-up-2.svg index 28a6a7e..78d676c 100644 --- a/svgs/thumbs-up-2.svg +++ b/svgs/thumbs-up-2.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/thumbs-up-fill.svg b/svgs/thumbs-up-fill.svg index 622709a..0046d18 100644 --- a/svgs/thumbs-up-fill.svg +++ b/svgs/thumbs-up-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/thumbs-up.svg b/svgs/thumbs-up.svg index e80b66b..259bfce 100644 --- a/svgs/thumbs-up.svg +++ b/svgs/thumbs-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/thunderbolt-fill.svg b/svgs/thunderbolt-fill.svg index cc05104..e072227 100644 --- a/svgs/thunderbolt-fill.svg +++ b/svgs/thunderbolt-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/thunderbolt.svg b/svgs/thunderbolt.svg index a9cef21..89a1094 100644 --- a/svgs/thunderbolt.svg +++ b/svgs/thunderbolt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/ticket.svg b/svgs/ticket.svg index 0ef5387..130f5cf 100644 --- a/svgs/ticket.svg +++ b/svgs/ticket.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/timeline.svg b/svgs/timeline.svg index f7ed63a..8c7366b 100644 --- a/svgs/timeline.svg +++ b/svgs/timeline.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/timestamps.svg b/svgs/timestamps.svg index 898091f..2bd9b57 100644 --- a/svgs/timestamps.svg +++ b/svgs/timestamps.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/traffic-light.svg b/svgs/traffic-light.svg index eb61902..554d309 100644 --- a/svgs/traffic-light.svg +++ b/svgs/traffic-light.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/trash-bin.svg b/svgs/trash-bin.svg index 3f29788..0a1013d 100644 --- a/svgs/trash-bin.svg +++ b/svgs/trash-bin.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/tray.svg b/svgs/tray.svg index e837fd3..30b30d6 100644 --- a/svgs/tray.svg +++ b/svgs/tray.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/triangle-down-fill.svg b/svgs/triangle-down-fill.svg index 801a953..94c34b4 100644 --- a/svgs/triangle-down-fill.svg +++ b/svgs/triangle-down-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/triangle-down.svg b/svgs/triangle-down.svg index b00644f..262dda0 100644 --- a/svgs/triangle-down.svg +++ b/svgs/triangle-down.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/triangle-exclamation-fill.svg b/svgs/triangle-exclamation-fill.svg index 1ead10b..1f8ed83 100644 --- a/svgs/triangle-exclamation-fill.svg +++ b/svgs/triangle-exclamation-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/triangle-exclamation.svg b/svgs/triangle-exclamation.svg index cdad8fb..5bc5166 100644 --- a/svgs/triangle-exclamation.svg +++ b/svgs/triangle-exclamation.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/triangle-left-fill.svg b/svgs/triangle-left-fill.svg index e0c3241..e203e31 100644 --- a/svgs/triangle-left-fill.svg +++ b/svgs/triangle-left-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/triangle-left.svg b/svgs/triangle-left.svg index b83ee42..81e3d42 100644 --- a/svgs/triangle-left.svg +++ b/svgs/triangle-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/triangle-right-fill.svg b/svgs/triangle-right-fill.svg index e30df2f..747a7a7 100644 --- a/svgs/triangle-right-fill.svg +++ b/svgs/triangle-right-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/triangle-right.svg b/svgs/triangle-right.svg index d527cbe..350c496 100644 --- a/svgs/triangle-right.svg +++ b/svgs/triangle-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/triangle-thunderbolt.svg b/svgs/triangle-thunderbolt.svg index a19a338..ddefeae 100644 --- a/svgs/triangle-thunderbolt.svg +++ b/svgs/triangle-thunderbolt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/triangle-up-fill.svg b/svgs/triangle-up-fill.svg index f70a6d0..60c0f1b 100644 --- a/svgs/triangle-up-fill.svg +++ b/svgs/triangle-up-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/triangle-up.svg b/svgs/triangle-up.svg index 4102c82..33fff33 100644 --- a/svgs/triangle-up.svg +++ b/svgs/triangle-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/trolley.svg b/svgs/trolley.svg index 3e3a643..486d863 100644 --- a/svgs/trolley.svg +++ b/svgs/trolley.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/tv-retro.svg b/svgs/tv-retro.svg index 54d6e4d..6ed497e 100644 --- a/svgs/tv-retro.svg +++ b/svgs/tv-retro.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/tv.svg b/svgs/tv.svg index 018e3ba..bfe63af 100644 --- a/svgs/tv.svg +++ b/svgs/tv.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/umbrella.svg b/svgs/umbrella.svg index f90cc66..409c1a4 100644 --- a/svgs/umbrella.svg +++ b/svgs/umbrella.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/underline.svg b/svgs/underline.svg index 67e00ad..25936f8 100644 --- a/svgs/underline.svg +++ b/svgs/underline.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/vault.svg b/svgs/vault.svg index 3f0ece9..95f6012 100644 --- a/svgs/vault.svg +++ b/svgs/vault.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/vector-circle.svg b/svgs/vector-circle.svg index 7035637..4d4e531 100644 --- a/svgs/vector-circle.svg +++ b/svgs/vector-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/vector-square.svg b/svgs/vector-square.svg index 2b15a0b..cae778f 100644 --- a/svgs/vector-square.svg +++ b/svgs/vector-square.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/video.svg b/svgs/video.svg index 428d73b..13c69b7 100644 --- a/svgs/video.svg +++ b/svgs/video.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/volume-fill.svg b/svgs/volume-fill.svg index fa00e74..61296fc 100644 --- a/svgs/volume-fill.svg +++ b/svgs/volume-fill.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/volume-low.svg b/svgs/volume-low.svg index 2409d3b..eeb4f36 100644 --- a/svgs/volume-low.svg +++ b/svgs/volume-low.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/volume-off.svg b/svgs/volume-off.svg index 1c4f190..34f5a58 100644 --- a/svgs/volume-off.svg +++ b/svgs/volume-off.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/volume-xmark.svg b/svgs/volume-xmark.svg index 5b69a4c..e53ab03 100644 --- a/svgs/volume-xmark.svg +++ b/svgs/volume-xmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/volume.svg b/svgs/volume.svg index e6b33b0..ced7a67 100644 --- a/svgs/volume.svg +++ b/svgs/volume.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/weight-hanging.svg b/svgs/weight-hanging.svg index 3fb5d9e..49f275a 100644 --- a/svgs/weight-hanging.svg +++ b/svgs/weight-hanging.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/wrench.svg b/svgs/wrench.svg index 2b77bfa..7fb1572 100644 --- a/svgs/wrench.svg +++ b/svgs/wrench.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svgs/xmark.svg b/svgs/xmark.svg index 4628c91..0796f3d 100644 --- a/svgs/xmark.svg +++ b/svgs/xmark.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file