diff --git a/.changeset/unused-props-modal.md b/.changeset/unused-props-modal.md new file mode 100644 index 000000000..cf73a53b7 --- /dev/null +++ b/.changeset/unused-props-modal.md @@ -0,0 +1,5 @@ +--- +@cypress-design/vue-modal: patch +--- + +remove unused transition props \ No newline at end of file diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index d025800ee..7446108ca 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -16,7 +16,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v2 with: - node-version: 16.x + node-version: 18.x - name: Load Yarn cache uses: actions/cache@v2 diff --git a/.github/workflows/template-test.yml b/.github/workflows/template-test.yml index 56031a800..37fae2a3c 100644 --- a/.github/workflows/template-test.yml +++ b/.github/workflows/template-test.yml @@ -16,7 +16,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v2 with: - node-version: 16.x + node-version: 18.x - name: Load Yarn cache uses: actions/cache@v2 @@ -42,14 +42,11 @@ jobs: env: CI: true - - name: Build Components - run: yarn build:components + - name: Build Component for Vue + run: yarn turbo run build --filter=@cypress-design/vue-componentname... - - name: Check global types - run: | - yarn vue-tsc --noEmit -p . - yarn tsc --noEmit --project ./tsconfig.react.json - yarn vue-tsc --noEmit --project ./tsconfig.vue.json + - name: Build Component for React + run: yarn turbo run build --filter=@cypress-design/vue-componentname... - name: Lint all files run: yarn eslint . diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cfe719a84..c0788e7ef 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v2 with: - node-version: 16.x + node-version: 18.x - name: Load Yarn cache uses: actions/cache@v2 @@ -52,11 +52,14 @@ jobs: - name: Build Components run: yarn run build:components - - name: Check global types - run: | - yarn vue-tsc --noEmit -p . - yarn tsc --noEmit --project ./tsconfig.react.json - yarn vue-tsc --noEmit --project ./tsconfig.vue.json + - name: Types docs + run: yarn vue-tsc --noEmit -p . + + - name: Types Vue + run: yarn vue-tsc --noEmit --project ./tsconfig.vue.json + + - name: Types React + run: yarn tsc --noEmit --project ./tsconfig.react.json # run cypress component tests - name: Cypress run CT diff --git a/.nvmrc b/.nvmrc index 789d3c124..7ec56198d 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -16.18.0 \ No newline at end of file +18.17.1 \ No newline at end of file diff --git a/components/Alert/react/package.json b/components/Alert/react/package.json index 845953996..128f1e699 100644 --- a/components/Alert/react/package.json +++ b/components/Alert/react/package.json @@ -27,9 +27,9 @@ }, "devDependencies": { "@cypress-design/rollup-plugin-tailwind-keep": "*", - "postcss": "^8.4.28", + "postcss": "^8.4.31", "rollup-plugin-postcss": "^4.0.2", - "sass": "^1.66.1" + "sass": "^1.69.5" }, "license": "MIT" } \ No newline at end of file diff --git a/components/Icon/react/CHANGELOG.md b/components/Icon/react/CHANGELOG.md index 96e1d96e1..f0c791dda 100644 --- a/components/Icon/react/CHANGELOG.md +++ b/components/Icon/react/CHANGELOG.md @@ -1,5 +1,16 @@ # @cypress-design/react-icon +## 0.29.0 + +### Minor Changes + +- [#335](https://github.com/cypress-io/cypress-design/pull/335) [`24d343f`](https://github.com/cypress-io/cypress-design/commit/24d343f8c7c4acce6192b357df16c639ec316a44) Thanks [@ryanjwilke](https://github.com/ryanjwilke)! - Added the Device TV icon + +### Patch Changes + +- Updated dependencies [[`24d343f`](https://github.com/cypress-io/cypress-design/commit/24d343f8c7c4acce6192b357df16c639ec316a44)]: + - @cypress-design/icon-registry@0.32.0 + ## 0.28.0 ### Minor Changes diff --git a/components/Icon/react/package.json b/components/Icon/react/package.json index fdd563352..c985d6f54 100644 --- a/components/Icon/react/package.json +++ b/components/Icon/react/package.json @@ -1,6 +1,6 @@ { "name": "@cypress-design/react-icon", - "version": "0.28.0", + "version": "0.29.0", "files": [ "*" ], @@ -21,12 +21,12 @@ "build:types": "tsc --project ./tsconfig.build.json" }, "dependencies": { - "@cypress-design/icon-registry": "^0.31.0", + "@cypress-design/icon-registry": "^0.32.0", "clsx": "*" }, "devDependencies": { "@cypress-design/rollup-plugin-tailwind-keep": "*", - "@types/lodash": "^4.14.197", + "@types/lodash": "^4.14.200", "lodash": "^4.17.21", "dedent": "^1.5.1" }, diff --git a/components/Icon/vue/CHANGELOG.md b/components/Icon/vue/CHANGELOG.md index 1524c1d94..dce113645 100644 --- a/components/Icon/vue/CHANGELOG.md +++ b/components/Icon/vue/CHANGELOG.md @@ -1,5 +1,16 @@ # @cypress-design/vue-icon +## 0.30.0 + +### Minor Changes + +- [#335](https://github.com/cypress-io/cypress-design/pull/335) [`24d343f`](https://github.com/cypress-io/cypress-design/commit/24d343f8c7c4acce6192b357df16c639ec316a44) Thanks [@ryanjwilke](https://github.com/ryanjwilke)! - Added the Device TV icon + +### Patch Changes + +- Updated dependencies [[`24d343f`](https://github.com/cypress-io/cypress-design/commit/24d343f8c7c4acce6192b357df16c639ec316a44)]: + - @cypress-design/icon-registry@0.32.0 + ## 0.29.0 ### Minor Changes diff --git a/components/Icon/vue/package.json b/components/Icon/vue/package.json index f67d9826e..4ba81d10f 100644 --- a/components/Icon/vue/package.json +++ b/components/Icon/vue/package.json @@ -1,6 +1,6 @@ { "name": "@cypress-design/vue-icon", - "version": "0.29.0", + "version": "0.30.0", "files": [ "*" ], @@ -21,11 +21,11 @@ "build:types": "yarn tsc --project ./tsconfig.build.json" }, "dependencies": { - "@cypress-design/icon-registry": "^0.31.0" + "@cypress-design/icon-registry": "^0.32.0" }, "devDependencies": { "@cypress-design/rollup-plugin-tailwind-keep": "*", - "@types/lodash": "^4.14.197", + "@types/lodash": "^4.14.200", "lodash": "^4.17.21", "dedent": "^1.5.1" }, diff --git a/components/Modal/vue/Modal.vue b/components/Modal/vue/Modal.vue index 2d3c907d0..57861e480 100644 --- a/components/Modal/vue/Modal.vue +++ b/components/Modal/vue/Modal.vue @@ -31,7 +31,6 @@ const props = defineProps<{ title?: string show?: boolean helpLink?: string - transition?: number fullscreen?: boolean }>() diff --git a/components/Spinner/react/package.json b/components/Spinner/react/package.json index b282fa122..b59c3ff55 100644 --- a/components/Spinner/react/package.json +++ b/components/Spinner/react/package.json @@ -24,9 +24,9 @@ }, "devDependencies": { "@cypress-design/rollup-plugin-tailwind-keep": "*", - "postcss": "^8.4.28", + "postcss": "^8.4.31", "rollup-plugin-postcss": "^4.0.2", - "sass": "^1.66.1" + "sass": "^1.69.5" }, "license": "MIT" } \ No newline at end of file diff --git a/components/StatusIcon/constants/package.json b/components/StatusIcon/constants/package.json index 3c73da587..e8993635d 100644 --- a/components/StatusIcon/constants/package.json +++ b/components/StatusIcon/constants/package.json @@ -16,7 +16,7 @@ "build": "tsc --project ./tsconfig.json" }, "devDependencies": { - "@cypress-design/icon-registry": "^0.31.0" + "@cypress-design/icon-registry": "^0.32.0" }, "license": "MIT" } \ No newline at end of file diff --git a/components/StatusIcon/react/CHANGELOG.md b/components/StatusIcon/react/CHANGELOG.md index 85699230a..dc81d4b9e 100644 --- a/components/StatusIcon/react/CHANGELOG.md +++ b/components/StatusIcon/react/CHANGELOG.md @@ -1,5 +1,12 @@ # @cypress-design/react-statusicon +## 0.4.14 + +### Patch Changes + +- Updated dependencies [[`24d343f`](https://github.com/cypress-io/cypress-design/commit/24d343f8c7c4acce6192b357df16c639ec316a44)]: + - @cypress-design/react-icon@0.29.0 + ## 0.4.13 ### Patch Changes diff --git a/components/StatusIcon/react/package.json b/components/StatusIcon/react/package.json index c97ef3f06..2901fcf49 100644 --- a/components/StatusIcon/react/package.json +++ b/components/StatusIcon/react/package.json @@ -1,6 +1,6 @@ { "name": "@cypress-design/react-statusicon", - "version": "0.4.13", + "version": "0.4.14", "files": [ "*" ], @@ -21,7 +21,7 @@ }, "dependencies": { "@cypress-design/constants-statusicon": "*", - "@cypress-design/react-icon": "^0.28.0", + "@cypress-design/react-icon": "^0.29.0", "clsx": "*" }, "devDependencies": { diff --git a/components/StatusIcon/vue/CHANGELOG.md b/components/StatusIcon/vue/CHANGELOG.md index 05d202cbe..a801b6aa7 100644 --- a/components/StatusIcon/vue/CHANGELOG.md +++ b/components/StatusIcon/vue/CHANGELOG.md @@ -1,5 +1,13 @@ # @cypress-design/vue-statusicon +## 0.5.5 + +### Patch Changes + +- Updated dependencies [[`24d343f`](https://github.com/cypress-io/cypress-design/commit/24d343f8c7c4acce6192b357df16c639ec316a44)]: + - @cypress-design/vue-icon@0.30.0 + - @cypress-design/icon-registry@0.32.0 + ## 0.5.4 ### Patch Changes diff --git a/components/StatusIcon/vue/package.json b/components/StatusIcon/vue/package.json index 12af63598..fcb8aa52a 100644 --- a/components/StatusIcon/vue/package.json +++ b/components/StatusIcon/vue/package.json @@ -1,6 +1,6 @@ { "name": "@cypress-design/vue-statusicon", - "version": "0.5.4", + "version": "0.5.5", "files": [ "./dist/*" ], @@ -21,7 +21,7 @@ }, "dependencies": { "@cypress-design/constants-statusicon": "*", - "@cypress-design/icon-registry": "^0.31.0", + "@cypress-design/icon-registry": "^0.32.0", "@cypress-design/vue-icon": "*" }, "devDependencies": { diff --git a/components/Tooltip/vue/package.json b/components/Tooltip/vue/package.json index 5debc7e93..569308176 100644 --- a/components/Tooltip/vue/package.json +++ b/components/Tooltip/vue/package.json @@ -20,7 +20,7 @@ "build:types": "yarn vue-tsc --project ./tsconfig.build.json" }, "dependencies": { - "@floating-ui/dom": "^1.5.1" + "@floating-ui/dom": "^1.5.3" }, "devDependencies": { "@cypress-design/rollup-plugin-tailwind-keep": "*" diff --git a/css/package.json b/css/package.json index e0ebd12ee..01a5a3d4a 100644 --- a/css/package.json +++ b/css/package.json @@ -37,10 +37,10 @@ "@windicss/plugin-interaction-variants": "^1.0.0", "lodash": "^4.17.21", "resolve-pkg": "^2.0.0", - "tailwindcss": "^3.3.3" + "tailwindcss": "^3.3.5" }, "devDependencies": { - "@types/lodash": "^4.14.197", + "@types/lodash": "^4.14.200", "typescript": "5.2.2", "color-string": "1.9.1" }, diff --git a/docs/src/BrandColors.vue b/docs/src/BrandColors.vue index 8631556da..73a686e4d 100644 --- a/docs/src/BrandColors.vue +++ b/docs/src/BrandColors.vue @@ -1,7 +1,7 @@