diff --git a/.github/composite-actions/a11y/action.yml b/.github/composite-actions/a11y/action.yml new file mode 100644 index 000000000..026fac5e6 --- /dev/null +++ b/.github/composite-actions/a11y/action.yml @@ -0,0 +1,21 @@ +name: 'Accessibility checking' +description: 'Build and serve Storybook pages then check accessibility' +runs: + using: composite + steps: + - name: Install + uses: ./.github/composite-actions/install + + - name: Build Project Artifacts + shell: bash + run: npm run storybook:build + + - name: Serve Storybook files + uses: Eun/http-server-action@v1 + with: + directory: ./dist + port: 6006 + + - name: Accessibility checking + shell: bash + run: node bin/check-a11y.js -f ${{ steps.files.outputs.all_changed_files }} diff --git a/.github/composite-actions/e2e/action.yml b/.github/composite-actions/e2e/action.yml new file mode 100644 index 000000000..4b3e30b74 --- /dev/null +++ b/.github/composite-actions/e2e/action.yml @@ -0,0 +1,21 @@ +name: 'E2E testing' +description: 'Setup Playwright and run E2E tests' +runs: + using: composite + steps: + - name: Install + uses: ./.github/composite-actions/install + + - name: Install Playwright Browsers + shell: bash + run: npx playwright install --with-deps + + - name: Run Playwright tests + shell: bash + run: npm run test:e2e + + - uses: actions/upload-artifact@v4 + with: + name: e2e-report + path: 'e2e/report/' + retention-days: 30 diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml deleted file mode 100644 index 5bbb1c062..000000000 --- a/.github/workflows/playwright.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Playwright Tests -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] -jobs: - test: - timeout-minutes: 60 - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version: lts/* - - name: Install dependencies - run: npm ci - - name: Install Playwright Browsers - run: npx playwright install --with-deps - - name: Run Playwright tests - run: npx playwright test - - uses: actions/upload-artifact@v4 - if: always() - with: - name: playwright-report - path: playwright-report/ - retention-days: 30 diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index ace85b00a..a9dd0d9b9 100644 --- a/.github/workflows/quality.yml +++ b/.github/workflows/quality.yml @@ -10,6 +10,7 @@ on: concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true + jobs: assign-pr-owner: runs-on: ubuntu-latest @@ -20,36 +21,45 @@ jobs: if: github.event_name == 'pull_request' && github.event.action == 'opened' with: repo-token: ${{ secrets.GITHUB_TOKEN }} + lint: runs-on: ubuntu-latest name: Lint steps: - name: Checkout uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Install uses: ./.github/composite-actions/install - name: Lint run: npm run lint + typecheck: runs-on: ubuntu-latest name: Typecheck steps: - name: Checkout uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Install uses: ./.github/composite-actions/install - name: Type checking run: npm run typecheck + test: runs-on: ubuntu-latest - name: Test + name: Unit tests steps: - name: Checkout uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Install uses: ./.github/composite-actions/install @@ -65,9 +75,11 @@ jobs: token: ${{ secrets.CODECOV_TOKEN }} name: Codecov UI codecov_yml_path: ./.codecov.yml - a11y: + + test-e2e: runs-on: ubuntu-latest - name: Accessibility + name: E2E tests + timeout-minutes: 60 steps: - name: Checkout uses: actions/checkout@v4 @@ -76,50 +88,38 @@ jobs: - name: Get changed files uses: tj-actions/changed-files@v41 - id: files + id: e2efiles with: - files: ./packages/components/**/*.{ts,tsx,mdx,json} - - - name: Install - if: steps.files.outputs.all_changed_files_count > 0 - uses: ./.github/composite-actions/install - - - name: Build Project Artifacts - if: steps.files.outputs.all_changed_files_count > 0 - run: npm run storybook:build + files: | + ./e2e/**/*.{ts,tsx} + ./packages/components/**/*.{ts,tsx,mdx,json} - - name: Serve Storybook files - if: steps.files.outputs.all_changed_files_count > 0 - uses: Eun/http-server-action@v1 - with: - directory: ./dist - port: 6006 + - name: E2E testing + if: steps.e2efiles.outputs.all_changed_files_count > 0 + uses: ./.github/composite-actions/e2e - - name: Accessibility checking - if: steps.files.outputs.all_changed_files_count > 0 - run: node bin/check-a11y.js -f ${{ steps.files.outputs.all_changed_files }} - visual-testing: + a11y: runs-on: ubuntu-latest - name: Visual testing + name: Accessibility steps: - name: Checkout uses: actions/checkout@v4 with: fetch-depth: 0 - - name: Install - uses: ./.github/composite-actions/install - - - name: Publish to Chromatic - uses: chromaui/action@v1 + - name: Get changed files + uses: tj-actions/changed-files@v41 + id: files with: - projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} - buildScriptName: 'storybook:build' - onlyChanged: true - untraced: 'packages/utils/\*\*"' + files: ./packages/components/**/*.{ts,tsx,mdx,json} + + - name: Accessibility checking + if: steps.files.outputs.all_changed_files_count > 0 + uses: ./.github/composite-actions/a11y + deploy: runs-on: ubuntu-latest - name: Deploy + name: Deployment environment: name: ${{ github.event_name != 'pull_request' && 'Production' || 'Preview'}} url: ${{ steps.deployment.outputs.url }} @@ -150,11 +150,15 @@ jobs: VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} VERCEL_TOKEN: ${{secrets.VERCEL_TOKEN}} + security: name: Security runs-on: ubuntu-latest steps: - - name: Checkout repository + - name: Checkout uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Run Lava Action uses: adevinta/lava-action@v0 diff --git a/.gitignore b/.gitignore index 8fcba3a3f..d2a6e1544 100644 --- a/.gitignore +++ b/.gitignore @@ -31,7 +31,10 @@ coverage *.sln *.sw? .nx + +# Testing reports /test-results/ /playwright-report/ +/e2e/report/ /blob-report/ -/playwright/.cache/ +/playwright/.cache/ \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index da91d302a..17892856e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,28 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +### Bug Fixes + +- fix gha composite actions ([94beedf](https://github.com/adevinta/spark/commit/94beedf70abd9dff3c15fdf369c32a7175a6d49c)) + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package spark + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package spark + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package spark + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package spark + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package spark diff --git a/lerna.json b/lerna.json index 15611cc44..181c2e4af 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "$schema": "node_modules/lerna/schemas/lerna-schema.json", - "version": "5.0.11", + "version": "5.0.16", "command": { "publish": { "conventionalCommits": true, diff --git a/package-lock.json b/package-lock.json index 0e2f78aae..f06c88fd4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -75,7 +75,7 @@ "eslint-plugin-node": "11.1.0", "eslint-plugin-prettier": "5.1.3", "eslint-plugin-promise": "6.2.0", - "eslint-plugin-react": "7.34.3", + "eslint-plugin-react": "7.35.0", "eslint-plugin-react-hooks": "4.6.2", "eslint-plugin-simple-import-sort": "10.0.0", "eslint-plugin-standard": "5.0.0", @@ -2310,6 +2310,7 @@ }, "node_modules/@clack/prompts/node_modules/is-unicode-supported": { "version": "1.3.0", + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -15274,18 +15275,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/array.prototype.toreversed": { - "version": "1.1.2", - "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" - } - }, "node_modules/array.prototype.tosorted": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", @@ -18361,14 +18350,14 @@ } }, "node_modules/downshift": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/downshift/-/downshift-9.0.4.tgz", - "integrity": "sha512-6XV/p6+4177d8e8dJ6PoLNSDG1bv52FL18yilKD06oZCb6dFG6f6dXcn3h0B1ggcrOkN3hIvL11Qt15Y5McbXw==", + "version": "9.0.7", + "resolved": "https://registry.npmjs.org/downshift/-/downshift-9.0.7.tgz", + "integrity": "sha512-B6JY4sJGEl9xBEJEvC/C+QYYYtPWN5RL+TlROJQfue9+ZFgrD/p1ZgGw73I0WSTNH9/h5q3LIKQA4FLd/N10vg==", "dependencies": { - "@babel/runtime": "^7.22.15", - "compute-scroll-into-view": "^3.0.3", + "@babel/runtime": "^7.24.5", + "compute-scroll-into-view": "^3.1.0", "prop-types": "^15.8.1", - "react-is": "^18.2.0", + "react-is": "18.2.0", "tslib": "^2.6.2" }, "peerDependencies": { @@ -18376,9 +18365,9 @@ } }, "node_modules/downshift/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==" + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" }, "node_modules/duplexer": { "version": "0.1.2", @@ -19318,35 +19307,35 @@ } }, "node_modules/eslint-plugin-react": { - "version": "7.34.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.34.3.tgz", - "integrity": "sha512-aoW4MV891jkUulwDApQbPYTVZmeuSyFrudpbTAQuj5Fv8VL+o6df2xIGpw8B0hPjAaih1/Fb0om9grCdyFYemA==", + "version": "7.35.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.35.0.tgz", + "integrity": "sha512-v501SSMOWv8gerHkk+IIQBkcGRGrO2nfybfj5pLxuJNFTPxxA3PSryhXTK+9pNbtkggheDdsC0E9Q8CuPk6JKA==", "dev": true, "dependencies": { "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.4", "doctrine": "^2.1.0", "es-iterator-helpers": "^1.0.19", "estraverse": "^5.3.0", + "hasown": "^2.0.2", "jsx-ast-utils": "^2.4.1 || ^3.0.0", "minimatch": "^3.1.2", "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.5", "semver": "^6.3.1", - "string.prototype.matchall": "^4.0.11" + "string.prototype.matchall": "^4.0.11", + "string.prototype.repeat": "^1.0.0" }, "engines": { "node": ">=4" }, "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" } }, "node_modules/eslint-plugin-react-hooks": { @@ -28066,23 +28055,6 @@ "node": ">= 0.4" } }, - "node_modules/object.hasown": { - "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.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.2.0", "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", @@ -32374,6 +32346,16 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/string.prototype.repeat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", + "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", + "dev": true, + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" + } + }, "node_modules/string.prototype.trim": { "version": "1.2.9", "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", @@ -35927,14 +35909,14 @@ }, "packages/components/accordion": { "name": "@spark-ui/accordion", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { - "@spark-ui/collapsible": "^5.0.11", - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icons": "^5.0.11", - "@spark-ui/internal-utils": "^5.0.11", - "@spark-ui/slot": "^5.0.11", + "@spark-ui/collapsible": "^5.0.16", + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icons": "^5.0.16", + "@spark-ui/internal-utils": "^5.0.16", + "@spark-ui/slot": "^5.0.16", "@zag-js/accordion": "^0.56.1", "@zag-js/react": "^0.56.1" }, @@ -35948,12 +35930,12 @@ }, "packages/components/alert-dialog": { "name": "@spark-ui/alert-dialog", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { "@radix-ui/primitive": "1.0.1", - "@spark-ui/dialog": "^5.0.11", - "@spark-ui/use-merge-refs": "^5.0.11", + "@spark-ui/dialog": "^5.0.16", + "@spark-ui/use-merge-refs": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { @@ -35964,10 +35946,10 @@ }, "packages/components/badge": { "name": "@spark-ui/badge", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { - "@spark-ui/internal-utils": "^5.0.11", + "@spark-ui/internal-utils": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { @@ -35980,12 +35962,12 @@ }, "packages/components/button": { "name": "@spark-ui/button", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { - "@spark-ui/internal-utils": "^5.0.11", - "@spark-ui/slot": "^5.0.11", - "@spark-ui/spinner": "^5.0.11", + "@spark-ui/internal-utils": "^5.0.16", + "@spark-ui/slot": "^5.0.16", + "@spark-ui/spinner": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { @@ -35998,16 +35980,16 @@ }, "packages/components/checkbox": { "name": "@spark-ui/checkbox", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { "@radix-ui/react-checkbox": "1.0.4", - "@spark-ui/form-field": "^5.0.11", - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icons": "^5.0.11", - "@spark-ui/internal-utils": "^5.0.11", - "@spark-ui/label": "^5.0.11", - "@spark-ui/use-merge-refs": "^5.0.11", + "@spark-ui/form-field": "^5.0.16", + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icons": "^5.0.16", + "@spark-ui/internal-utils": "^5.0.16", + "@spark-ui/label": "^5.0.16", + "@spark-ui/use-merge-refs": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { @@ -36020,13 +36002,13 @@ }, "packages/components/chip": { "name": "@spark-ui/chip", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icons": "^5.0.11", - "@spark-ui/internal-utils": "^5.0.11", - "@spark-ui/slot": "^5.0.11", + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icons": "^5.0.16", + "@spark-ui/internal-utils": "^5.0.16", + "@spark-ui/slot": "^5.0.16", "emulate-tab": "^1.2.1" }, "peerDependencies": { @@ -36039,10 +36021,10 @@ }, "packages/components/collapsible": { "name": "@spark-ui/collapsible", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { - "@spark-ui/slot": "^5.0.11", + "@spark-ui/slot": "^5.0.16", "@zag-js/collapsible": "^0.56.1", "@zag-js/react": "^0.56.1" }, @@ -36056,22 +36038,22 @@ }, "packages/components/combobox": { "name": "@spark-ui/combobox", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { - "@spark-ui/form-field": "^5.0.11", - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icon-button": "^5.0.11", - "@spark-ui/icons": "^5.0.11", - "@spark-ui/popover": "^5.0.11", - "@spark-ui/spinner": "^5.0.11", - "@spark-ui/use-merge-refs": "^5.0.11", - "@spark-ui/visually-hidden": "^5.0.11", + "@spark-ui/form-field": "^5.0.16", + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icon-button": "^5.0.16", + "@spark-ui/icons": "^5.0.16", + "@spark-ui/popover": "^5.0.16", + "@spark-ui/spinner": "^5.0.16", + "@spark-ui/use-merge-refs": "^5.0.16", + "@spark-ui/visually-hidden": "^5.0.16", "class-variance-authority": "0.7.0", - "downshift": "9.0.4" + "downshift": "9.0.7" }, "devDependencies": { - "@spark-ui/dialog": "^5.0.11" + "@spark-ui/dialog": "^5.0.16" }, "peerDependencies": { "react": "^18.0 || ^19.0", @@ -36081,13 +36063,13 @@ }, "packages/components/dialog": { "name": "@spark-ui/dialog", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { "@radix-ui/react-dialog": "1.1.1", - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icon-button": "^5.0.11", - "@spark-ui/icons": "^5.0.11", + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icon-button": "^5.0.16", + "@spark-ui/icons": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { @@ -36100,11 +36082,11 @@ }, "packages/components/divider": { "name": "@spark-ui/divider", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { "@radix-ui/react-separator": "1.0.3", - "@spark-ui/internal-utils": "^5.0.11" + "@spark-ui/internal-utils": "^5.0.16" }, "peerDependencies": { "react": "^18.0 || ^19.0", @@ -36114,13 +36096,13 @@ }, "packages/components/drawer": { "name": "@spark-ui/drawer", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { "@radix-ui/react-dialog": "1.1.1", - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icon-button": "^5.0.11", - "@spark-ui/icons": "^5.0.11", + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icon-button": "^5.0.16", + "@spark-ui/icons": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { @@ -36133,17 +36115,17 @@ }, "packages/components/dropdown": { "name": "@spark-ui/dropdown", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { - "@spark-ui/form-field": "^5.0.11", - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icons": "^5.0.11", - "@spark-ui/popover": "^5.0.11", - "@spark-ui/use-merge-refs": "^5.0.11", - "@spark-ui/visually-hidden": "^5.0.11", + "@spark-ui/form-field": "^5.0.16", + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icons": "^5.0.16", + "@spark-ui/popover": "^5.0.16", + "@spark-ui/use-merge-refs": "^5.0.16", + "@spark-ui/visually-hidden": "^5.0.16", "class-variance-authority": "0.7.0", - "downshift": "9.0.4" + "downshift": "9.0.7" }, "peerDependencies": { "react": "^18.0 || ^19.0", @@ -36153,13 +36135,13 @@ }, "packages/components/form-field": { "name": "@spark-ui/form-field", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icons": "^5.0.11", - "@spark-ui/label": "^5.0.11", - "@spark-ui/slot": "^5.0.11" + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icons": "^5.0.16", + "@spark-ui/label": "^5.0.16", + "@spark-ui/slot": "^5.0.16" }, "peerDependencies": { "@spark-ui/tailwind-plugins": "latest", @@ -36171,11 +36153,11 @@ }, "packages/components/icon": { "name": "@spark-ui/icon", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { - "@spark-ui/internal-utils": "^5.0.11", - "@spark-ui/visually-hidden": "^5.0.11" + "@spark-ui/internal-utils": "^5.0.16", + "@spark-ui/visually-hidden": "^5.0.16" }, "peerDependencies": { "@spark-ui/tailwind-plugins": "latest", @@ -36187,10 +36169,10 @@ }, "packages/components/icon-button": { "name": "@spark-ui/icon-button", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { - "@spark-ui/button": "^5.0.11", + "@spark-ui/button": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { @@ -36203,7 +36185,7 @@ }, "packages/components/icons": { "name": "@spark-ui/icons", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "devDependencies": { "change-case": "4.1.2", @@ -36242,15 +36224,15 @@ }, "packages/components/input": { "name": "@spark-ui/input", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { - "@spark-ui/form-field": "^5.0.11", - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icons": "^5.0.11", - "@spark-ui/slot": "^5.0.11", - "@spark-ui/use-combined-state": "^5.0.11", - "@spark-ui/use-merge-refs": "^5.0.11", + "@spark-ui/form-field": "^5.0.16", + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icons": "^5.0.16", + "@spark-ui/slot": "^5.0.16", + "@spark-ui/use-combined-state": "^5.0.16", + "@spark-ui/use-merge-refs": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { @@ -36263,7 +36245,7 @@ }, "packages/components/kbd": { "name": "@spark-ui/kbd", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { "class-variance-authority": "0.7.0" @@ -36278,7 +36260,7 @@ }, "packages/components/label": { "name": "@spark-ui/label", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { "@radix-ui/react-label": "2.0.2", @@ -36316,10 +36298,10 @@ }, "packages/components/link-box": { "name": "@spark-ui/link-box", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { - "@spark-ui/slot": "^5.0.11", + "@spark-ui/slot": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { @@ -36330,13 +36312,13 @@ }, "packages/components/popover": { "name": "@spark-ui/popover", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { "@radix-ui/react-popover": "1.1.1", - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icon-button": "^5.0.11", - "@spark-ui/icons": "^5.0.11" + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icon-button": "^5.0.16", + "@spark-ui/icons": "^5.0.16" }, "devDependencies": { "jsdom-testing-mocks": "1.13.0" @@ -36351,7 +36333,7 @@ }, "packages/components/portal": { "name": "@spark-ui/portal", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { "@radix-ui/react-portal": "1.0.4", @@ -36367,11 +36349,11 @@ }, "packages/components/progress": { "name": "@spark-ui/progress", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { "@radix-ui/react-progress": "1.0.3", - "@spark-ui/use-merge-refs": "^5.0.11", + "@spark-ui/use-merge-refs": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { @@ -36384,11 +36366,11 @@ }, "packages/components/progress-tracker": { "name": "@spark-ui/progress-tracker", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icons": "^5.0.11", + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icons": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { @@ -36401,13 +36383,13 @@ }, "packages/components/radio-group": { "name": "@spark-ui/radio-group", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { "@radix-ui/react-label": "2.0.1", "@radix-ui/react-radio-group": "1.2.0", - "@spark-ui/form-field": "^5.0.11", - "@spark-ui/internal-utils": "^5.0.11", + "@spark-ui/form-field": "^5.0.16", + "@spark-ui/internal-utils": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { @@ -36420,11 +36402,11 @@ }, "packages/components/rating": { "name": "@spark-ui/rating", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "devDependencies": { - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icons": "^5.0.11" + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icons": "^5.0.16" }, "peerDependencies": { "react": "^18.0 || ^19.0", @@ -36434,13 +36416,13 @@ }, "packages/components/select": { "name": "@spark-ui/select", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { - "@spark-ui/form-field": "^5.0.11", - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icons": "^5.0.11", - "@spark-ui/use-combined-state": "^5.0.11" + "@spark-ui/form-field": "^5.0.16", + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icons": "^5.0.16", + "@spark-ui/use-combined-state": "^5.0.16" }, "peerDependencies": { "react": "^18.0 || ^19.0", @@ -36450,7 +36432,7 @@ }, "packages/components/slider": { "name": "@spark-ui/slider", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { "@radix-ui/react-slider": "1.1.2", @@ -36469,7 +36451,7 @@ }, "packages/components/slot": { "name": "@spark-ui/slot", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { "@radix-ui/react-slot": "1.0.2" @@ -36482,14 +36464,14 @@ }, "packages/components/snackbar": { "name": "@spark-ui/snackbar", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { "@react-aria/toast": "3.0.0-beta.12", "@react-stately/toast": "3.0.0-beta.4", - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icon-button": "^5.0.11", - "@spark-ui/icons": "^5.0.11", + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icon-button": "^5.0.16", + "@spark-ui/icons": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { @@ -36502,11 +36484,11 @@ }, "packages/components/spinner": { "name": "@spark-ui/spinner", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { - "@spark-ui/internal-utils": "^5.0.11", - "@spark-ui/visually-hidden": "^5.0.11", + "@spark-ui/internal-utils": "^5.0.16", + "@spark-ui/visually-hidden": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { @@ -36519,16 +36501,16 @@ }, "packages/components/switch": { "name": "@spark-ui/switch", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { "@radix-ui/react-switch": "1.0.3", - "@spark-ui/form-field": "^5.0.11", - "@spark-ui/icons": "^5.0.11", - "@spark-ui/internal-utils": "^5.0.11", - "@spark-ui/label": "^5.0.11", - "@spark-ui/slot": "^5.0.11", - "@spark-ui/use-combined-state": "^5.0.11", + "@spark-ui/form-field": "^5.0.16", + "@spark-ui/icons": "^5.0.16", + "@spark-ui/internal-utils": "^5.0.16", + "@spark-ui/label": "^5.0.16", + "@spark-ui/slot": "^5.0.16", + "@spark-ui/use-combined-state": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { @@ -36541,13 +36523,13 @@ }, "packages/components/tabs": { "name": "@spark-ui/tabs", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { "@radix-ui/react-tabs": "1.1.0", - "@spark-ui/button": "^5.0.11", - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icons": "^5.0.11", + "@spark-ui/button": "^5.0.16", + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icons": "^5.0.16", "class-variance-authority": "0.7.0" }, "devDependencies": { @@ -36563,11 +36545,11 @@ }, "packages/components/tag": { "name": "@spark-ui/tag", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { - "@spark-ui/internal-utils": "^5.0.11", - "@spark-ui/slot": "^5.0.11", + "@spark-ui/internal-utils": "^5.0.16", + "@spark-ui/slot": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { @@ -36578,10 +36560,10 @@ }, "packages/components/text-link": { "name": "@spark-ui/text-link", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { - "@spark-ui/slot": "^5.0.11", + "@spark-ui/slot": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { @@ -36592,10 +36574,10 @@ }, "packages/components/textarea": { "name": "@spark-ui/textarea", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { - "@spark-ui/input": "^5.0.11" + "@spark-ui/input": "^5.0.16" }, "peerDependencies": { "@spark-ui/tailwind-plugins": "latest", @@ -36607,7 +36589,7 @@ }, "packages/components/visually-hidden": { "name": "@spark-ui/visually-hidden", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { "@radix-ui/react-visually-hidden": "1.1.0" @@ -36620,10 +36602,10 @@ }, "packages/hooks/use-combined-state": { "name": "@spark-ui/use-combined-state", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { - "@spark-ui/use-mounted-state": "^5.0.11", + "@spark-ui/use-mounted-state": "^5.0.16", "@types/lodash.isequal": "4.5.8", "lodash.isequal": "4.5.0" }, @@ -36634,7 +36616,7 @@ }, "packages/hooks/use-merge-refs": { "name": "@spark-ui/use-merge-refs", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "peerDependencies": { "react": "^18.0 || ^19.0", @@ -36643,7 +36625,7 @@ }, "packages/hooks/use-mounted-state": { "name": "@spark-ui/use-mounted-state", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "peerDependencies": { "react": "^18.0 || ^19.0", @@ -36652,7 +36634,7 @@ }, "packages/utils/cli": { "name": "@spark-ui/cli-utils", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { "@clack/prompts": "0.7.0", @@ -36772,7 +36754,7 @@ }, "packages/utils/internal-utils": { "name": "@spark-ui/internal-utils", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "peerDependencies": { "react": "^18.0 || ^19.0", @@ -36781,10 +36763,10 @@ }, "packages/utils/tailwind-plugins": { "name": "@spark-ui/tailwind-plugins", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { - "@spark-ui/theme-utils": "^5.0.11", + "@spark-ui/theme-utils": "^5.0.16", "tailwindcss-radix": "2.9.0" }, "peerDependencies": { @@ -36793,7 +36775,7 @@ }, "packages/utils/theme": { "name": "@spark-ui/theme-utils", - "version": "5.0.11", + "version": "5.0.16", "license": "MIT", "dependencies": { "deepmerge": "4.3.1", diff --git a/package.json b/package.json index 920a3b422..7105ce50e 100644 --- a/package.json +++ b/package.json @@ -97,7 +97,7 @@ "eslint-plugin-node": "11.1.0", "eslint-plugin-prettier": "5.1.3", "eslint-plugin-promise": "6.2.0", - "eslint-plugin-react": "7.34.3", + "eslint-plugin-react": "7.35.0", "eslint-plugin-react-hooks": "4.6.2", "eslint-plugin-simple-import-sort": "10.0.0", "eslint-plugin-standard": "5.0.0", diff --git a/packages/components/accordion/CHANGELOG.md b/packages/components/accordion/CHANGELOG.md index 8ced65b85..e1707a7cd 100644 --- a/packages/components/accordion/CHANGELOG.md +++ b/packages/components/accordion/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/accordion + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/accordion + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/accordion + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/accordion + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/accordion + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/accordion diff --git a/packages/components/accordion/package.json b/packages/components/accordion/package.json index fe0631982..1dab66cc0 100644 --- a/packages/components/accordion/package.json +++ b/packages/components/accordion/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/accordion", - "version": "5.0.11", + "version": "5.0.16", "description": "An accordion is a vertically stacked set of interactive headings containing a title, content snippet, or thumbnail representing a section of content.", "publishConfig": { "access": "public" @@ -45,11 +45,11 @@ "homepage": "https://sparkui.vercel.app", "license": "MIT", "dependencies": { - "@spark-ui/collapsible": "^5.0.11", - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icons": "^5.0.11", - "@spark-ui/internal-utils": "^5.0.11", - "@spark-ui/slot": "^5.0.11", + "@spark-ui/collapsible": "^5.0.16", + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icons": "^5.0.16", + "@spark-ui/internal-utils": "^5.0.16", + "@spark-ui/slot": "^5.0.16", "@zag-js/accordion": "^0.56.1", "@zag-js/react": "^0.56.1" } diff --git a/packages/components/alert-dialog/CHANGELOG.md b/packages/components/alert-dialog/CHANGELOG.md index fd0adfbe2..7e2e4acb1 100644 --- a/packages/components/alert-dialog/CHANGELOG.md +++ b/packages/components/alert-dialog/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/alert-dialog + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/alert-dialog + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/alert-dialog + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/alert-dialog + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/alert-dialog + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/alert-dialog diff --git a/packages/components/alert-dialog/package.json b/packages/components/alert-dialog/package.json index 114905032..d44b652b2 100644 --- a/packages/components/alert-dialog/package.json +++ b/packages/components/alert-dialog/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/alert-dialog", - "version": "5.0.11", + "version": "5.0.16", "description": "A modal dialog that interrupts the user with important content and expects a response.", "publishConfig": { "access": "public" @@ -24,8 +24,8 @@ }, "dependencies": { "@radix-ui/primitive": "1.0.1", - "@spark-ui/dialog": "^5.0.11", - "@spark-ui/use-merge-refs": "^5.0.11", + "@spark-ui/dialog": "^5.0.16", + "@spark-ui/use-merge-refs": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { diff --git a/packages/components/badge/CHANGELOG.md b/packages/components/badge/CHANGELOG.md index 92d523453..5aa818277 100644 --- a/packages/components/badge/CHANGELOG.md +++ b/packages/components/badge/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/badge + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/badge + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/badge + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/badge + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/badge + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/badge diff --git a/packages/components/badge/package.json b/packages/components/badge/package.json index 9c23c8a48..909b7470c 100644 --- a/packages/components/badge/package.json +++ b/packages/components/badge/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/badge", - "version": "5.0.11", + "version": "5.0.16", "description": "Badge component is a visual indicator for numeric values such as tallies and scores.", "publishConfig": { "access": "public" @@ -35,7 +35,7 @@ "url": "https://github.com/adevinta/spark/issues?q=is%3Aopen+is%3Aissue+label%3A%22Component%3A+badge%22" }, "dependencies": { - "@spark-ui/internal-utils": "^5.0.11", + "@spark-ui/internal-utils": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { diff --git a/packages/components/button/CHANGELOG.md b/packages/components/button/CHANGELOG.md index 1eacdcd7a..3fa8299f0 100644 --- a/packages/components/button/CHANGELOG.md +++ b/packages/components/button/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/button + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/button + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/button + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/button + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/button + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/button diff --git a/packages/components/button/package.json b/packages/components/button/package.json index 3c2df2e1f..3174716f2 100644 --- a/packages/components/button/package.json +++ b/packages/components/button/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/button", - "version": "5.0.11", + "version": "5.0.16", "description": "Button component is used to trigger an action or event, such as submitting a form, opening a Dialog, canceling an action, or performing a delete operation.", "publishConfig": { "access": "public" @@ -23,9 +23,9 @@ "build": "vite build" }, "dependencies": { - "@spark-ui/internal-utils": "^5.0.11", - "@spark-ui/slot": "^5.0.11", - "@spark-ui/spinner": "^5.0.11", + "@spark-ui/internal-utils": "^5.0.16", + "@spark-ui/slot": "^5.0.16", + "@spark-ui/spinner": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { diff --git a/packages/components/checkbox/CHANGELOG.md b/packages/components/checkbox/CHANGELOG.md index ee3676092..d38b2afd3 100644 --- a/packages/components/checkbox/CHANGELOG.md +++ b/packages/components/checkbox/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/checkbox + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/checkbox + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/checkbox + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/checkbox + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/checkbox + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/checkbox diff --git a/packages/components/checkbox/package.json b/packages/components/checkbox/package.json index 63ebf3f7a..d68e3955f 100644 --- a/packages/components/checkbox/package.json +++ b/packages/components/checkbox/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/checkbox", - "version": "5.0.11", + "version": "5.0.16", "description": "A control that allows the user to toggle between checked and not checked.", "publishConfig": { "access": "public" @@ -24,12 +24,12 @@ }, "dependencies": { "@radix-ui/react-checkbox": "1.0.4", - "@spark-ui/form-field": "^5.0.11", - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icons": "^5.0.11", - "@spark-ui/internal-utils": "^5.0.11", - "@spark-ui/label": "^5.0.11", - "@spark-ui/use-merge-refs": "^5.0.11", + "@spark-ui/form-field": "^5.0.16", + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icons": "^5.0.16", + "@spark-ui/internal-utils": "^5.0.16", + "@spark-ui/label": "^5.0.16", + "@spark-ui/use-merge-refs": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { diff --git a/packages/components/chip/CHANGELOG.md b/packages/components/chip/CHANGELOG.md index 83e212041..b48b1935b 100644 --- a/packages/components/chip/CHANGELOG.md +++ b/packages/components/chip/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/chip + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/chip + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/chip + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/chip + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/chip + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/chip diff --git a/packages/components/chip/package.json b/packages/components/chip/package.json index 924742aaa..f56e7b57f 100644 --- a/packages/components/chip/package.json +++ b/packages/components/chip/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/chip", - "version": "5.0.11", + "version": "5.0.16", "description": "To help people enter information, make selections, filter content, or trigger actions.", "publishConfig": { "access": "public" @@ -44,10 +44,10 @@ "homepage": "https://sparkui.vercel.app", "license": "MIT", "dependencies": { - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icons": "^5.0.11", - "@spark-ui/internal-utils": "^5.0.11", - "@spark-ui/slot": "^5.0.11", + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icons": "^5.0.16", + "@spark-ui/internal-utils": "^5.0.16", + "@spark-ui/slot": "^5.0.16", "emulate-tab": "^1.2.1" } } diff --git a/packages/components/collapsible/CHANGELOG.md b/packages/components/collapsible/CHANGELOG.md index c894f72ce..319b8155c 100644 --- a/packages/components/collapsible/CHANGELOG.md +++ b/packages/components/collapsible/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/collapsible + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/collapsible + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/collapsible + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/collapsible + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/collapsible + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/collapsible diff --git a/packages/components/collapsible/package.json b/packages/components/collapsible/package.json index cf2e852ac..d8fb06f90 100644 --- a/packages/components/collapsible/package.json +++ b/packages/components/collapsible/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/collapsible", - "version": "5.0.11", + "version": "5.0.16", "description": "An interactive component which expands/collapses a panel.", "publishConfig": { "access": "public" @@ -45,7 +45,7 @@ "homepage": "https://sparkui.vercel.app", "license": "MIT", "dependencies": { - "@spark-ui/slot": "^5.0.11", + "@spark-ui/slot": "^5.0.16", "@zag-js/collapsible": "^0.56.1", "@zag-js/react": "^0.56.1" } diff --git a/packages/components/combobox/CHANGELOG.md b/packages/components/combobox/CHANGELOG.md index 3c294dc80..1dc7a1e95 100644 --- a/packages/components/combobox/CHANGELOG.md +++ b/packages/components/combobox/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/combobox + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/combobox + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/combobox + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/combobox + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/combobox + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/combobox diff --git a/packages/components/combobox/package.json b/packages/components/combobox/package.json index 7b2b9b088..53fcfdf88 100644 --- a/packages/components/combobox/package.json +++ b/packages/components/combobox/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/combobox", - "version": "5.0.11", + "version": "5.0.16", "description": "An input that behaves similarly to a select, with the addition of a free text input to filter options.", "publishConfig": { "access": "public" @@ -28,19 +28,19 @@ "tailwindcss": "^3.0.0" }, "devDependencies": { - "@spark-ui/dialog": "^5.0.11" + "@spark-ui/dialog": "^5.0.16" }, "dependencies": { - "@spark-ui/form-field": "^5.0.11", - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icon-button": "^5.0.11", - "@spark-ui/icons": "^5.0.11", - "@spark-ui/popover": "^5.0.11", - "@spark-ui/spinner": "^5.0.11", - "@spark-ui/use-merge-refs": "^5.0.11", - "@spark-ui/visually-hidden": "^5.0.11", + "@spark-ui/form-field": "^5.0.16", + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icon-button": "^5.0.16", + "@spark-ui/icons": "^5.0.16", + "@spark-ui/popover": "^5.0.16", + "@spark-ui/spinner": "^5.0.16", + "@spark-ui/use-merge-refs": "^5.0.16", + "@spark-ui/visually-hidden": "^5.0.16", "class-variance-authority": "0.7.0", - "downshift": "9.0.4" + "downshift": "9.0.7" }, "repository": { "type": "git", diff --git a/packages/components/dialog/CHANGELOG.md b/packages/components/dialog/CHANGELOG.md index a80014e18..84d446877 100644 --- a/packages/components/dialog/CHANGELOG.md +++ b/packages/components/dialog/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/dialog + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/dialog + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/dialog + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/dialog + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/dialog + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/dialog diff --git a/packages/components/dialog/package.json b/packages/components/dialog/package.json index f77598bce..74df96df2 100644 --- a/packages/components/dialog/package.json +++ b/packages/components/dialog/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/dialog", - "version": "5.0.11", + "version": "5.0.16", "description": "A window overlaid on either the primary window or another dialog window, rendering the content underneath inert.", "publishConfig": { "access": "public" @@ -45,9 +45,9 @@ "license": "MIT", "dependencies": { "@radix-ui/react-dialog": "1.1.1", - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icon-button": "^5.0.11", - "@spark-ui/icons": "^5.0.11", + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icon-button": "^5.0.16", + "@spark-ui/icons": "^5.0.16", "class-variance-authority": "0.7.0" } } diff --git a/packages/components/divider/CHANGELOG.md b/packages/components/divider/CHANGELOG.md index d0f0a115b..3a9216c66 100644 --- a/packages/components/divider/CHANGELOG.md +++ b/packages/components/divider/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/divider + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/divider + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/divider + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/divider + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/divider + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/divider diff --git a/packages/components/divider/package.json b/packages/components/divider/package.json index b5d2475c0..fef050cbd 100644 --- a/packages/components/divider/package.json +++ b/packages/components/divider/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/divider", - "version": "5.0.11", + "version": "5.0.16", "description": "A separator between two elements, usually consisting of a horizontal line.", "publishConfig": { "access": "public" @@ -24,7 +24,7 @@ }, "dependencies": { "@radix-ui/react-separator": "1.0.3", - "@spark-ui/internal-utils": "^5.0.11" + "@spark-ui/internal-utils": "^5.0.16" }, "peerDependencies": { "react": "^18.0 || ^19.0", diff --git a/packages/components/drawer/CHANGELOG.md b/packages/components/drawer/CHANGELOG.md index cf46d49ff..359422635 100644 --- a/packages/components/drawer/CHANGELOG.md +++ b/packages/components/drawer/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/drawer + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/drawer + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/drawer + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/drawer + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/drawer + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/drawer diff --git a/packages/components/drawer/package.json b/packages/components/drawer/package.json index fa21e84e9..ae2c8922d 100644 --- a/packages/components/drawer/package.json +++ b/packages/components/drawer/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/drawer", - "version": "5.0.11", + "version": "5.0.16", "description": "A panel that slides out from the edge of the screen. It can be useful when you need users to complete a task or view some details without leaving the current page.", "publishConfig": { "access": "public" @@ -45,9 +45,9 @@ "license": "MIT", "dependencies": { "@radix-ui/react-dialog": "1.1.1", - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icon-button": "^5.0.11", - "@spark-ui/icons": "^5.0.11", + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icon-button": "^5.0.16", + "@spark-ui/icons": "^5.0.16", "class-variance-authority": "0.7.0" } } diff --git a/packages/components/dropdown/CHANGELOG.md b/packages/components/dropdown/CHANGELOG.md index a178bdcc9..884a67a12 100644 --- a/packages/components/dropdown/CHANGELOG.md +++ b/packages/components/dropdown/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/dropdown + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/dropdown + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/dropdown + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/dropdown + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/dropdown + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/dropdown diff --git a/packages/components/dropdown/package.json b/packages/components/dropdown/package.json index eaba2c5c7..f9f4dbdc7 100644 --- a/packages/components/dropdown/package.json +++ b/packages/components/dropdown/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/dropdown", - "version": "5.0.11", + "version": "5.0.16", "description": "Displays a list of options for the user to pick from—triggered by a button. Differs from Select in that it offers multiple select and its list is not native.", "publishConfig": { "access": "public" @@ -28,14 +28,14 @@ "tailwindcss": "^3.0.0" }, "dependencies": { - "@spark-ui/form-field": "^5.0.11", - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icons": "^5.0.11", - "@spark-ui/popover": "^5.0.11", - "@spark-ui/use-merge-refs": "^5.0.11", - "@spark-ui/visually-hidden": "^5.0.11", + "@spark-ui/form-field": "^5.0.16", + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icons": "^5.0.16", + "@spark-ui/popover": "^5.0.16", + "@spark-ui/use-merge-refs": "^5.0.16", + "@spark-ui/visually-hidden": "^5.0.16", "class-variance-authority": "0.7.0", - "downshift": "9.0.4" + "downshift": "9.0.7" }, "repository": { "type": "git", diff --git a/packages/components/form-field/CHANGELOG.md b/packages/components/form-field/CHANGELOG.md index 513c79dd5..c96e60053 100644 --- a/packages/components/form-field/CHANGELOG.md +++ b/packages/components/form-field/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/form-field + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/form-field + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/form-field + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/form-field + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/form-field + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/form-field diff --git a/packages/components/form-field/package.json b/packages/components/form-field/package.json index c5427fe0f..79961f47f 100644 --- a/packages/components/form-field/package.json +++ b/packages/components/form-field/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/form-field", - "version": "5.0.11", + "version": "5.0.16", "description": "Provide context to your form elements", "publishConfig": { "access": "public" @@ -46,9 +46,9 @@ "homepage": "https://sparkui.vercel.app", "license": "MIT", "dependencies": { - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icons": "^5.0.11", - "@spark-ui/label": "^5.0.11", - "@spark-ui/slot": "^5.0.11" + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icons": "^5.0.16", + "@spark-ui/label": "^5.0.16", + "@spark-ui/slot": "^5.0.16" } } diff --git a/packages/components/icon-button/CHANGELOG.md b/packages/components/icon-button/CHANGELOG.md index d6a55cf46..264bd6e10 100644 --- a/packages/components/icon-button/CHANGELOG.md +++ b/packages/components/icon-button/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/icon-button + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/icon-button + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/icon-button + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/icon-button + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/icon-button + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/icon-button diff --git a/packages/components/icon-button/package.json b/packages/components/icon-button/package.json index 3545150df..29e060a35 100644 --- a/packages/components/icon-button/package.json +++ b/packages/components/icon-button/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/icon-button", - "version": "5.0.11", + "version": "5.0.16", "description": "Icon button renders an icon within in a button", "publishConfig": { "access": "public" @@ -25,7 +25,7 @@ "build": "vite build" }, "dependencies": { - "@spark-ui/button": "^5.0.11", + "@spark-ui/button": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { diff --git a/packages/components/icon/CHANGELOG.md b/packages/components/icon/CHANGELOG.md index 344f20c72..7c91bf0bc 100644 --- a/packages/components/icon/CHANGELOG.md +++ b/packages/components/icon/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/icon + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/icon + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/icon + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/icon + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/icon + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/icon diff --git a/packages/components/icon/package.json b/packages/components/icon/package.json index c5210c0aa..824859912 100644 --- a/packages/components/icon/package.json +++ b/packages/components/icon/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/icon", - "version": "5.0.11", + "version": "5.0.16", "description": "Accessible icon wrapper", "publishConfig": { "access": "public" @@ -35,8 +35,8 @@ "build": "vite build" }, "dependencies": { - "@spark-ui/internal-utils": "^5.0.11", - "@spark-ui/visually-hidden": "^5.0.11" + "@spark-ui/internal-utils": "^5.0.16", + "@spark-ui/visually-hidden": "^5.0.16" }, "peerDependencies": { "@spark-ui/tailwind-plugins": "latest", diff --git a/packages/components/icons/CHANGELOG.md b/packages/components/icons/CHANGELOG.md index cd0595a56..41bc5b689 100644 --- a/packages/components/icons/CHANGELOG.md +++ b/packages/components/icons/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/icons + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/icons + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/icons + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/icons + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/icons + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/icons diff --git a/packages/components/icons/package.json b/packages/components/icons/package.json index 9e28d827f..d20dfc1b8 100644 --- a/packages/components/icons/package.json +++ b/packages/components/icons/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/icons", - "version": "5.0.11", + "version": "5.0.16", "description": "spark-ui icons", "publishConfig": { "access": "public" diff --git a/packages/components/input/CHANGELOG.md b/packages/components/input/CHANGELOG.md index f0e0c913e..30ef6dc8e 100644 --- a/packages/components/input/CHANGELOG.md +++ b/packages/components/input/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/input + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/input + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/input + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/input + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/input + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/input diff --git a/packages/components/input/package.json b/packages/components/input/package.json index 17f7ac569..07531c561 100644 --- a/packages/components/input/package.json +++ b/packages/components/input/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/input", - "version": "5.0.11", + "version": "5.0.16", "description": "Component used to get user input in a text field", "publishConfig": { "access": "public" @@ -23,12 +23,12 @@ "build": "vite build" }, "dependencies": { - "@spark-ui/form-field": "^5.0.11", - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icons": "^5.0.11", - "@spark-ui/slot": "^5.0.11", - "@spark-ui/use-combined-state": "^5.0.11", - "@spark-ui/use-merge-refs": "^5.0.11", + "@spark-ui/form-field": "^5.0.16", + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icons": "^5.0.16", + "@spark-ui/slot": "^5.0.16", + "@spark-ui/use-combined-state": "^5.0.16", + "@spark-ui/use-merge-refs": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { diff --git a/packages/components/kbd/CHANGELOG.md b/packages/components/kbd/CHANGELOG.md index 9ddf6563b..ce2b73398 100644 --- a/packages/components/kbd/CHANGELOG.md +++ b/packages/components/kbd/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/kbd + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/kbd + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/kbd + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/kbd + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/kbd + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/kbd diff --git a/packages/components/kbd/package.json b/packages/components/kbd/package.json index a001ff872..c29e3a0b4 100644 --- a/packages/components/kbd/package.json +++ b/packages/components/kbd/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/kbd", - "version": "5.0.11", + "version": "5.0.16", "description": "render a keyboard shortcut", "publishConfig": { "access": "public" diff --git a/packages/components/label/CHANGELOG.md b/packages/components/label/CHANGELOG.md index 0cc0d7ec7..fa55c5d41 100644 --- a/packages/components/label/CHANGELOG.md +++ b/packages/components/label/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/label + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/label + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/label + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/label + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/label + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/label diff --git a/packages/components/label/package.json b/packages/components/label/package.json index 114ab8e45..941dcd21d 100644 --- a/packages/components/label/package.json +++ b/packages/components/label/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/label", - "version": "5.0.11", + "version": "5.0.16", "description": "Renders an accessible label associated with controls", "publishConfig": { "access": "public" diff --git a/packages/components/link-box/CHANGELOG.md b/packages/components/link-box/CHANGELOG.md index 2eb5de11f..4e2171252 100644 --- a/packages/components/link-box/CHANGELOG.md +++ b/packages/components/link-box/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/link-box + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/link-box + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/link-box + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/link-box + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/link-box + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/link-box diff --git a/packages/components/link-box/package.json b/packages/components/link-box/package.json index c4138ab65..bc454fa18 100644 --- a/packages/components/link-box/package.json +++ b/packages/components/link-box/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/link-box", - "version": "5.0.11", + "version": "5.0.16", "description": "Semantic component used to wrap elements (cards, blog posts, articles, etc.) in a link.", "publishConfig": { "access": "public" @@ -23,7 +23,7 @@ "build": "vite build" }, "dependencies": { - "@spark-ui/slot": "^5.0.11", + "@spark-ui/slot": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { diff --git a/packages/components/popover/CHANGELOG.md b/packages/components/popover/CHANGELOG.md index 3a0b689a9..6618cf038 100644 --- a/packages/components/popover/CHANGELOG.md +++ b/packages/components/popover/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/popover + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/popover + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/popover + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/popover + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/popover + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/popover diff --git a/packages/components/popover/package.json b/packages/components/popover/package.json index bc3f5e969..c0cf85573 100644 --- a/packages/components/popover/package.json +++ b/packages/components/popover/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/popover", - "version": "5.0.11", + "version": "5.0.16", "description": "Displays rich content in a portal, triggered by a button.", "publishConfig": { "access": "public" @@ -43,9 +43,9 @@ }, "dependencies": { "@radix-ui/react-popover": "1.1.1", - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icon-button": "^5.0.11", - "@spark-ui/icons": "^5.0.11" + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icon-button": "^5.0.16", + "@spark-ui/icons": "^5.0.16" }, "devDependencies": { "jsdom-testing-mocks": "1.13.0" diff --git a/packages/components/portal/CHANGELOG.md b/packages/components/portal/CHANGELOG.md index 981091d43..7037ae4ca 100644 --- a/packages/components/portal/CHANGELOG.md +++ b/packages/components/portal/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/portal + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/portal + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/portal + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/portal + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/portal + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/portal diff --git a/packages/components/portal/package.json b/packages/components/portal/package.json index f942b003e..ad5305aec 100644 --- a/packages/components/portal/package.json +++ b/packages/components/portal/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/portal", - "version": "5.0.11", + "version": "5.0.16", "description": "Renders a React subtree in a different part of the DOM.", "publishConfig": { "access": "public" diff --git a/packages/components/progress-tracker/CHANGELOG.md b/packages/components/progress-tracker/CHANGELOG.md index 4f0da2ae6..57d93a7b5 100644 --- a/packages/components/progress-tracker/CHANGELOG.md +++ b/packages/components/progress-tracker/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/progress-tracker + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/progress-tracker + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/progress-tracker + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/progress-tracker + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/progress-tracker + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/progress-tracker diff --git a/packages/components/progress-tracker/package.json b/packages/components/progress-tracker/package.json index 4ab2698c8..aac8054a5 100644 --- a/packages/components/progress-tracker/package.json +++ b/packages/components/progress-tracker/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/progress-tracker", - "version": "5.0.11", + "version": "5.0.16", "description": "A progress tracker component is a visual navigation element typically used to display progress or guide user through a multi-step process.", "publishConfig": { "access": "public" @@ -23,8 +23,8 @@ "build": "vite build" }, "dependencies": { - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icons": "^5.0.11", + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icons": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { diff --git a/packages/components/progress/CHANGELOG.md b/packages/components/progress/CHANGELOG.md index e6a1e7460..93adf1306 100644 --- a/packages/components/progress/CHANGELOG.md +++ b/packages/components/progress/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/progress + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/progress + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/progress + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/progress + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/progress + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/progress diff --git a/packages/components/progress/package.json b/packages/components/progress/package.json index 6948e9fc3..5402a2787 100644 --- a/packages/components/progress/package.json +++ b/packages/components/progress/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/progress", - "version": "5.0.11", + "version": "5.0.16", "description": "Displays an indicator showing the completion progress of a task, typically displayed as a progress bar.", "publishConfig": { "access": "public" @@ -24,7 +24,7 @@ }, "dependencies": { "@radix-ui/react-progress": "1.0.3", - "@spark-ui/use-merge-refs": "^5.0.11", + "@spark-ui/use-merge-refs": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { diff --git a/packages/components/radio-group/CHANGELOG.md b/packages/components/radio-group/CHANGELOG.md index e2caa4c75..757eae1fa 100644 --- a/packages/components/radio-group/CHANGELOG.md +++ b/packages/components/radio-group/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/radio-group + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/radio-group + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/radio-group + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/radio-group + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/radio-group + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/radio-group diff --git a/packages/components/radio-group/package.json b/packages/components/radio-group/package.json index 5f0f48178..37b171aab 100644 --- a/packages/components/radio-group/package.json +++ b/packages/components/radio-group/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/radio-group", - "version": "5.0.11", + "version": "5.0.16", "description": "Component used when only one choice may be selected in a series of options", "publishConfig": { "access": "public" @@ -26,8 +26,8 @@ "dependencies": { "@radix-ui/react-label": "2.0.1", "@radix-ui/react-radio-group": "1.2.0", - "@spark-ui/form-field": "^5.0.11", - "@spark-ui/internal-utils": "^5.0.11", + "@spark-ui/form-field": "^5.0.16", + "@spark-ui/internal-utils": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { diff --git a/packages/components/rating/CHANGELOG.md b/packages/components/rating/CHANGELOG.md index 526a8d129..f2628e2a0 100644 --- a/packages/components/rating/CHANGELOG.md +++ b/packages/components/rating/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/rating + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/rating + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/rating + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/rating + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/rating + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/rating diff --git a/packages/components/rating/package.json b/packages/components/rating/package.json index fbcf7e8ed..ab2c0650a 100644 --- a/packages/components/rating/package.json +++ b/packages/components/rating/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/rating", - "version": "5.0.11", + "version": "5.0.16", "description": "Ratings let users see and/or set a star rating for a product or other item", "publishConfig": { "access": "public" @@ -23,8 +23,8 @@ "build": "vite build" }, "devDependencies": { - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icons": "^5.0.11" + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icons": "^5.0.16" }, "peerDependencies": { "react": "^18.0 || ^19.0", diff --git a/packages/components/select/CHANGELOG.md b/packages/components/select/CHANGELOG.md index dc33cf820..2a34f58ab 100644 --- a/packages/components/select/CHANGELOG.md +++ b/packages/components/select/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/select + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/select + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/select + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/select + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/select + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/select diff --git a/packages/components/select/package.json b/packages/components/select/package.json index 682e4ba5b..f09864807 100644 --- a/packages/components/select/package.json +++ b/packages/components/select/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/select", - "version": "5.0.11", + "version": "5.0.16", "description": "Displays a list of options for the user to pick from—triggered by a button.", "publishConfig": { "access": "public" @@ -42,9 +42,9 @@ "homepage": "https://sparkui.vercel.app", "license": "MIT", "dependencies": { - "@spark-ui/form-field": "^5.0.11", - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icons": "^5.0.11", - "@spark-ui/use-combined-state": "^5.0.11" + "@spark-ui/form-field": "^5.0.16", + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icons": "^5.0.16", + "@spark-ui/use-combined-state": "^5.0.16" } } diff --git a/packages/components/slider/CHANGELOG.md b/packages/components/slider/CHANGELOG.md index 62bab27cf..71ec57a80 100644 --- a/packages/components/slider/CHANGELOG.md +++ b/packages/components/slider/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/slider + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/slider + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/slider + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/slider + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/slider + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/slider diff --git a/packages/components/slider/package.json b/packages/components/slider/package.json index 51f097f98..10a6059ff 100644 --- a/packages/components/slider/package.json +++ b/packages/components/slider/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/slider", - "version": "5.0.11", + "version": "5.0.16", "description": "An input where the user selects a value from within a given range.", "publishConfig": { "access": "public" diff --git a/packages/components/slot/CHANGELOG.md b/packages/components/slot/CHANGELOG.md index ee83a220f..6773b3a0f 100644 --- a/packages/components/slot/CHANGELOG.md +++ b/packages/components/slot/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/slot + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/slot + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/slot + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/slot + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/slot + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/slot diff --git a/packages/components/slot/package.json b/packages/components/slot/package.json index a1421bb5f..cf83ec809 100644 --- a/packages/components/slot/package.json +++ b/packages/components/slot/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/slot", - "version": "5.0.11", + "version": "5.0.16", "description": "Merges its props onto its immediate child", "publishConfig": { "access": "public" diff --git a/packages/components/snackbar/CHANGELOG.md b/packages/components/snackbar/CHANGELOG.md index ed753777e..d45f2a3ee 100644 --- a/packages/components/snackbar/CHANGELOG.md +++ b/packages/components/snackbar/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/snackbar + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/snackbar + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/snackbar + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/snackbar + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/snackbar + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/snackbar diff --git a/packages/components/snackbar/package.json b/packages/components/snackbar/package.json index 1cb3727f9..7efd8d1c0 100644 --- a/packages/components/snackbar/package.json +++ b/packages/components/snackbar/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/snackbar", - "version": "5.0.11", + "version": "5.0.16", "description": "Display brief, temporary notifications of actions, errors, or other events in an application.", "publishConfig": { "access": "public" @@ -25,9 +25,9 @@ "dependencies": { "@react-aria/toast": "3.0.0-beta.12", "@react-stately/toast": "3.0.0-beta.4", - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icon-button": "^5.0.11", - "@spark-ui/icons": "^5.0.11", + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icon-button": "^5.0.16", + "@spark-ui/icons": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { diff --git a/packages/components/spinner/CHANGELOG.md b/packages/components/spinner/CHANGELOG.md index 9b6911713..98d6f6160 100644 --- a/packages/components/spinner/CHANGELOG.md +++ b/packages/components/spinner/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/spinner + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/spinner + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/spinner + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/spinner + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/spinner + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/spinner diff --git a/packages/components/spinner/package.json b/packages/components/spinner/package.json index 4b8c1bc1a..503bd1f68 100644 --- a/packages/components/spinner/package.json +++ b/packages/components/spinner/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/spinner", - "version": "5.0.11", + "version": "5.0.16", "description": "Spinners provide a visual cue that an action is processing awaiting a course of change or a result.", "publishConfig": { "access": "public" @@ -23,8 +23,8 @@ "build": "vite build" }, "dependencies": { - "@spark-ui/internal-utils": "^5.0.11", - "@spark-ui/visually-hidden": "^5.0.11", + "@spark-ui/internal-utils": "^5.0.16", + "@spark-ui/visually-hidden": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { diff --git a/packages/components/switch/CHANGELOG.md b/packages/components/switch/CHANGELOG.md index 9b5d435a3..4f7a290ef 100644 --- a/packages/components/switch/CHANGELOG.md +++ b/packages/components/switch/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/switch + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/switch + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/switch + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/switch + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/switch + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/switch diff --git a/packages/components/switch/package.json b/packages/components/switch/package.json index f5c9da066..8afad469d 100644 --- a/packages/components/switch/package.json +++ b/packages/components/switch/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/switch", - "version": "5.0.11", + "version": "5.0.16", "description": "A control that allows the user to toggle between checked and not checked.", "publishConfig": { "access": "public" @@ -24,12 +24,12 @@ }, "dependencies": { "@radix-ui/react-switch": "1.0.3", - "@spark-ui/form-field": "^5.0.11", - "@spark-ui/icons": "^5.0.11", - "@spark-ui/internal-utils": "^5.0.11", - "@spark-ui/label": "^5.0.11", - "@spark-ui/slot": "^5.0.11", - "@spark-ui/use-combined-state": "^5.0.11", + "@spark-ui/form-field": "^5.0.16", + "@spark-ui/icons": "^5.0.16", + "@spark-ui/internal-utils": "^5.0.16", + "@spark-ui/label": "^5.0.16", + "@spark-ui/slot": "^5.0.16", + "@spark-ui/use-combined-state": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { diff --git a/packages/components/tabs/CHANGELOG.md b/packages/components/tabs/CHANGELOG.md index c51baad91..3a3a1f7f0 100644 --- a/packages/components/tabs/CHANGELOG.md +++ b/packages/components/tabs/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/tabs + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/tabs + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/tabs + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/tabs + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/tabs + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/tabs diff --git a/packages/components/tabs/package.json b/packages/components/tabs/package.json index 3d4f229da..5add38c7f 100644 --- a/packages/components/tabs/package.json +++ b/packages/components/tabs/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/tabs", - "version": "5.0.11", + "version": "5.0.16", "description": "A set of layered sections of content—known as tab panels—that are displayed one at a time.", "publishConfig": { "access": "public" @@ -37,9 +37,9 @@ }, "dependencies": { "@radix-ui/react-tabs": "1.1.0", - "@spark-ui/button": "^5.0.11", - "@spark-ui/icon": "^5.0.11", - "@spark-ui/icons": "^5.0.11", + "@spark-ui/button": "^5.0.16", + "@spark-ui/icon": "^5.0.16", + "@spark-ui/icons": "^5.0.16", "class-variance-authority": "0.7.0" }, "devDependencies": { diff --git a/packages/components/tag/CHANGELOG.md b/packages/components/tag/CHANGELOG.md index 128f6edf0..d86aeb26c 100644 --- a/packages/components/tag/CHANGELOG.md +++ b/packages/components/tag/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/tag + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/tag + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/tag + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/tag + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/tag + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/tag diff --git a/packages/components/tag/package.json b/packages/components/tag/package.json index 59be4613e..3a94b299b 100644 --- a/packages/components/tag/package.json +++ b/packages/components/tag/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/tag", - "version": "5.0.11", + "version": "5.0.16", "description": "Button component is used to trigger an action or event, such as submitting a form, opening a Dialog, canceling an action, or performing a delete operation.", "publishConfig": { "access": "public" @@ -24,8 +24,8 @@ "build": "vite build" }, "dependencies": { - "@spark-ui/internal-utils": "^5.0.11", - "@spark-ui/slot": "^5.0.11", + "@spark-ui/internal-utils": "^5.0.16", + "@spark-ui/slot": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { diff --git a/packages/components/text-link/CHANGELOG.md b/packages/components/text-link/CHANGELOG.md index 599276c31..4279bff1b 100644 --- a/packages/components/text-link/CHANGELOG.md +++ b/packages/components/text-link/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/text-link + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/text-link + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/text-link + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/text-link + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/text-link + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/text-link diff --git a/packages/components/text-link/package.json b/packages/components/text-link/package.json index 192c93b58..63020ca06 100644 --- a/packages/components/text-link/package.json +++ b/packages/components/text-link/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/text-link", - "version": "5.0.11", + "version": "5.0.16", "description": "TextLink is an accessible element for navigation.", "publishConfig": { "access": "public" @@ -23,7 +23,7 @@ "build": "vite build" }, "dependencies": { - "@spark-ui/slot": "^5.0.11", + "@spark-ui/slot": "^5.0.16", "class-variance-authority": "0.7.0" }, "peerDependencies": { diff --git a/packages/components/textarea/CHANGELOG.md b/packages/components/textarea/CHANGELOG.md index 2d863e692..522cdc44e 100644 --- a/packages/components/textarea/CHANGELOG.md +++ b/packages/components/textarea/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/textarea + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/textarea + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/textarea + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/textarea + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/textarea + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/textarea diff --git a/packages/components/textarea/package.json b/packages/components/textarea/package.json index fc4364918..5329195a0 100644 --- a/packages/components/textarea/package.json +++ b/packages/components/textarea/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/textarea", - "version": "5.0.11", + "version": "5.0.16", "description": "The textarea component allows you to easily create multi-line text inputs", "publishConfig": { "access": "public" @@ -30,7 +30,7 @@ "tailwindcss": "^3.0.0" }, "dependencies": { - "@spark-ui/input": "^5.0.11" + "@spark-ui/input": "^5.0.16" }, "repository": { "type": "git", diff --git a/packages/components/visually-hidden/CHANGELOG.md b/packages/components/visually-hidden/CHANGELOG.md index 406f731de..076bdbe93 100644 --- a/packages/components/visually-hidden/CHANGELOG.md +++ b/packages/components/visually-hidden/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/visually-hidden + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/visually-hidden + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/visually-hidden + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/visually-hidden + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/visually-hidden + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/visually-hidden diff --git a/packages/components/visually-hidden/package.json b/packages/components/visually-hidden/package.json index cecbd97c3..5980c4a74 100644 --- a/packages/components/visually-hidden/package.json +++ b/packages/components/visually-hidden/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/visually-hidden", - "version": "5.0.11", + "version": "5.0.16", "description": "Hides content from the screen in an accessible way", "publishConfig": { "access": "public" diff --git a/packages/hooks/use-combined-state/CHANGELOG.md b/packages/hooks/use-combined-state/CHANGELOG.md index e34a22459..65c26fd92 100644 --- a/packages/hooks/use-combined-state/CHANGELOG.md +++ b/packages/hooks/use-combined-state/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/use-combined-state + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/use-combined-state + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/use-combined-state + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/use-combined-state + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/use-combined-state + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/use-combined-state diff --git a/packages/hooks/use-combined-state/package.json b/packages/hooks/use-combined-state/package.json index cda9a3433..54be3833e 100644 --- a/packages/hooks/use-combined-state/package.json +++ b/packages/hooks/use-combined-state/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/use-combined-state", - "version": "5.0.11", + "version": "5.0.16", "description": "combine controlled-uncontrolled component state by stateful-stateless inner state management", "publishConfig": { "access": "public" @@ -18,7 +18,7 @@ "build": "vite build" }, "dependencies": { - "@spark-ui/use-mounted-state": "^5.0.11", + "@spark-ui/use-mounted-state": "^5.0.16", "@types/lodash.isequal": "4.5.8", "lodash.isequal": "4.5.0" }, diff --git a/packages/hooks/use-merge-refs/CHANGELOG.md b/packages/hooks/use-merge-refs/CHANGELOG.md index b5a206155..91f2cb909 100644 --- a/packages/hooks/use-merge-refs/CHANGELOG.md +++ b/packages/hooks/use-merge-refs/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/use-merge-refs + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/use-merge-refs + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/use-merge-refs + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/use-merge-refs + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/use-merge-refs + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/use-merge-refs diff --git a/packages/hooks/use-merge-refs/package.json b/packages/hooks/use-merge-refs/package.json index 7549b36ec..6f55fbb71 100644 --- a/packages/hooks/use-merge-refs/package.json +++ b/packages/hooks/use-merge-refs/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/use-merge-refs", - "version": "5.0.11", + "version": "5.0.16", "description": "merge and sync the passed references into a single one", "publishConfig": { "access": "public" diff --git a/packages/hooks/use-mounted-state/CHANGELOG.md b/packages/hooks/use-mounted-state/CHANGELOG.md index 3c0c5b03e..c1a9e455b 100644 --- a/packages/hooks/use-mounted-state/CHANGELOG.md +++ b/packages/hooks/use-mounted-state/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/use-mounted-state + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/use-mounted-state + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/use-mounted-state + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/use-mounted-state + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/use-mounted-state + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/use-mounted-state diff --git a/packages/hooks/use-mounted-state/package.json b/packages/hooks/use-mounted-state/package.json index b53c007bb..a6cf40709 100644 --- a/packages/hooks/use-mounted-state/package.json +++ b/packages/hooks/use-mounted-state/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/use-mounted-state", - "version": "5.0.11", + "version": "5.0.16", "description": "check the component's mount state", "publishConfig": { "access": "public" diff --git a/packages/utils/cli/CHANGELOG.md b/packages/utils/cli/CHANGELOG.md index 2bba26b21..458177c37 100644 --- a/packages/utils/cli/CHANGELOG.md +++ b/packages/utils/cli/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/cli-utils + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/cli-utils + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/cli-utils + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/cli-utils + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/cli-utils + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/cli-utils diff --git a/packages/utils/cli/package.json b/packages/utils/cli/package.json index 02e5b0b7c..13f74b093 100644 --- a/packages/utils/cli/package.json +++ b/packages/utils/cli/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/cli-utils", - "version": "5.0.11", + "version": "5.0.16", "description": "Spark CLI utils", "publishConfig": { "access": "public" diff --git a/packages/utils/internal-utils/CHANGELOG.md b/packages/utils/internal-utils/CHANGELOG.md index 949f4d1a0..98b4aa23b 100644 --- a/packages/utils/internal-utils/CHANGELOG.md +++ b/packages/utils/internal-utils/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/internal-utils + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/internal-utils + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/internal-utils + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/internal-utils + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/internal-utils + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/internal-utils diff --git a/packages/utils/internal-utils/package.json b/packages/utils/internal-utils/package.json index 37091da9b..ab4ee472a 100644 --- a/packages/utils/internal-utils/package.json +++ b/packages/utils/internal-utils/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/internal-utils", - "version": "5.0.11", + "version": "5.0.16", "description": "package for sharing reusable code and resources across the codebase", "publishConfig": { "access": "public" diff --git a/packages/utils/tailwind-plugins/CHANGELOG.md b/packages/utils/tailwind-plugins/CHANGELOG.md index d991624a4..7a56ec263 100644 --- a/packages/utils/tailwind-plugins/CHANGELOG.md +++ b/packages/utils/tailwind-plugins/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/tailwind-plugins + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/tailwind-plugins + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/tailwind-plugins + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/tailwind-plugins + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/tailwind-plugins + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/tailwind-plugins diff --git a/packages/utils/tailwind-plugins/package.json b/packages/utils/tailwind-plugins/package.json index 77256401e..ad5f7760e 100644 --- a/packages/utils/tailwind-plugins/package.json +++ b/packages/utils/tailwind-plugins/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/tailwind-plugins", - "version": "5.0.11", + "version": "5.0.16", "description": "Spark Tailwind plugins", "publishConfig": { "access": "public" @@ -15,7 +15,7 @@ ], "main": "index.js", "dependencies": { - "@spark-ui/theme-utils": "^5.0.11", + "@spark-ui/theme-utils": "^5.0.16", "tailwindcss-radix": "2.9.0" }, "peerDependencies": { diff --git a/packages/utils/theme/CHANGELOG.md b/packages/utils/theme/CHANGELOG.md index dcacfd9a3..f5a68c394 100644 --- a/packages/utils/theme/CHANGELOG.md +++ b/packages/utils/theme/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.16](https://github.com/adevinta/spark/compare/v5.0.15...v5.0.16) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/theme-utils + +## [5.0.15](https://github.com/adevinta/spark/compare/v5.0.14...v5.0.15) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/theme-utils + +## [5.0.14](https://github.com/adevinta/spark/compare/v5.0.13...v5.0.14) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/theme-utils + +## [5.0.13](https://github.com/adevinta/spark/compare/v5.0.12...v5.0.13) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/theme-utils + +## [5.0.12](https://github.com/adevinta/spark/compare/v5.0.11...v5.0.12) (2024-08-01) + +**Note:** Version bump only for package @spark-ui/theme-utils + ## [5.0.11](https://github.com/adevinta/spark/compare/v5.0.10...v5.0.11) (2024-07-30) **Note:** Version bump only for package @spark-ui/theme-utils diff --git a/packages/utils/theme/package.json b/packages/utils/theme/package.json index 7c533f631..fc1668558 100644 --- a/packages/utils/theme/package.json +++ b/packages/utils/theme/package.json @@ -1,6 +1,6 @@ { "name": "@spark-ui/theme-utils", - "version": "5.0.11", + "version": "5.0.16", "description": "package for managing Spark theme configuration", "publishConfig": { "access": "public" diff --git a/playwright.config.ts b/playwright.config.ts index 6422820df..f9a58fcc3 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -21,7 +21,7 @@ export default defineConfig({ /* Opt out of parallel tests on CI. */ workers: process.env.CI ? 1 : undefined, /* Reporter to use. See https://playwright.dev/docs/test-reporters */ - reporter: 'html', + reporter: [['html', { outputFolder: 'e2e/report' }]], /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ use: { video: 'retain-on-failure',