Skip to content

Commit

Permalink
Feature/update combobox (#40)
Browse files Browse the repository at this point in the history
* update combobox event search

update event "change:search" to "update:search" for v-model:search usage

* pack lock

* Update pr-check-suite.yml

* fix storybook typescript ArgTypes
  • Loading branch information
stefano-8wave authored Sep 26, 2023
1 parent e0be1e3 commit 88bbfea
Show file tree
Hide file tree
Showing 8 changed files with 1,001 additions and 946 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-check-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions:
contents: write
pages: write
id-token: write
pull-requests: read
pull-requests: write

# Allow one concurrent deployment
concurrency:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ All notable changes to this project will be documented in this file.
- `VvNavItem` and `VvNavSeparator` components;
- inner types export;
- `--watch` flag for `generate-icons` script.
- `VvCombobox` event `update:search`

### Deprecated

- event `change:search` on `VvCombobox` (use `update:search`)

### Fixed

Expand Down
50 changes: 25 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,38 +66,38 @@
"@volverjs/style": "0.*"
},
"devDependencies": {
"@babel/core": "^7.22.20",
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.22.15",
"@babel/preset-typescript": "^7.23.0",
"@iconify/types": "^2.0.0",
"@iconify/utils": "^2.1.10",
"@mdx-js/react": "^2.3.0",
"@rushstack/eslint-patch": "^1.4.0",
"@storybook/addon-a11y": "^7.4.3",
"@storybook/addon-actions": "^7.4.3",
"@storybook/addon-docs": "^7.4.3",
"@storybook/addon-essentials": "^7.4.3",
"@storybook/addon-interactions": "^7.4.3",
"@storybook/addon-links": "^7.4.3",
"@storybook/channel-postmessage": "^7.4.3",
"@storybook/channel-websocket": "^7.4.3",
"@storybook/cli": "^7.4.3",
"@storybook/client-api": "^7.4.3",
"@storybook/client-logger": "^7.4.3",
"@storybook/core-common": "^7.4.3",
"@rushstack/eslint-patch": "^1.5.0",
"@storybook/addon-a11y": "^7.4.5",
"@storybook/addon-actions": "^7.4.5",
"@storybook/addon-docs": "^7.4.5",
"@storybook/addon-essentials": "^7.4.5",
"@storybook/addon-interactions": "^7.4.5",
"@storybook/addon-links": "^7.4.5",
"@storybook/channel-postmessage": "^7.4.5",
"@storybook/channel-websocket": "^7.4.5",
"@storybook/cli": "^7.4.5",
"@storybook/client-api": "^7.4.5",
"@storybook/client-logger": "^7.4.5",
"@storybook/core-common": "^7.4.5",
"@storybook/jest": "^0.2.2",
"@storybook/preview-api": "^7.4.3",
"@storybook/preview-web": "^7.4.3",
"@storybook/preview-api": "^7.4.5",
"@storybook/preview-web": "^7.4.5",
"@storybook/test-runner": "^0.13.0",
"@storybook/testing-library": "^0.2.1",
"@storybook/vue3": "^7.4.3",
"@storybook/vue3-vite": "^7.4.3",
"@storybook/vue3": "^7.4.5",
"@storybook/vue3-vite": "^7.4.5",
"@tsconfig/node18": "^18.2.2",
"@types/jest-axe": "^3.5.6",
"@types/jsdom": "^21.1.3",
"@types/node": "^20.6.3",
"@types/node": "^20.7.0",
"@types/react": "^18.2.22",
"@types/yargs": "^17.0.24",
"@types/yargs": "^17.0.25",
"@vitejs/plugin-vue": "^4.3.4",
"@volverjs/style": "0.1.12-beta.8",
"@vue/compiler-sfc": "^3.3.4",
Expand All @@ -107,7 +107,7 @@
"@vue/tsconfig": "^0.4.0",
"change-case": "^4.1.2",
"chokidar": "^3.5.3",
"eslint": "^8.49.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-mdx": "^2.2.0",
"eslint-plugin-mdx": "^2.2.0",
Expand All @@ -126,7 +126,7 @@
"react-dom": "^18.2.0",
"remark": "^15.0.1",
"sass": "^1.68.0",
"storybook": "^7.4.3",
"storybook": "^7.4.5",
"storybook-addon-markdown-docs": "^2.0.0",
"storybook-dark-mode": "^3.0.1",
"storybook-version": "^0.1.1",
Expand All @@ -138,7 +138,7 @@
"vite": "^4.4.9",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-externalize-deps": "^0.7.0",
"vue-tsc": "^1.8.13",
"vue-tsc": "^1.8.15",
"yargs": "^17.7.2"
},
"typesVersions": {
Expand Down Expand Up @@ -477,4 +477,4 @@
"default": "./dist/components/VvTooltip/VvTooltip.umd.js"
}
}
}
}
Loading

0 comments on commit 88bbfea

Please sign in to comment.