Skip to content

Commit

Permalink
[web-ui-library] Make dependencies stable (#322)
Browse files Browse the repository at this point in the history
* Make dependencies stable

* QA fix

* QA fix
  • Loading branch information
akadlec authored Nov 25, 2024
1 parent d45dc2a commit 98e8d89
Show file tree
Hide file tree
Showing 13 changed files with 42 additions and 41 deletions.
2 changes: 1 addition & 1 deletion src/FastyBird/Connector/HomeKit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
"typescript-eslint": "^8.15",
"unocss": "^0.64",
"vite": "^5.4",
"vite-plugin-dts": "^4.3",
"vite-plugin-dts": "4.1.1",
"vite-plugin-vue-type-imports": "^0.2",
"vue": "^3.5",
"vue-i18n": "^10.0",
Expand Down
2 changes: 1 addition & 1 deletion src/FastyBird/Core/Tools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
"rollup-plugin-delete": "^2.1",
"typescript": "5.6.2",
"vite": "^5.4",
"vite-plugin-dts": "^4.3",
"vite-plugin-dts": "4.1.1",
"vue": "^3.5",
"vue-i18n": "^10.0",
"vue-loader": "^17.4",
Expand Down
2 changes: 1 addition & 1 deletion src/FastyBird/Library/Metadata/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"typescript": "5.6.2",
"typescript-eslint": "^8.15",
"vite": "^5.4",
"vite-plugin-dts": "^4.3",
"vite-plugin-dts": "4.1.1",
"vue-tsc": "^2.1"
},
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions src/FastyBird/Library/WebUi/packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"@types/node": "^20.12",
"@typescript-eslint/eslint-plugin": "^7.8",
"@typescript-eslint/parser": "^7.8",
"@vitejs/plugin-vue": "^5.0",
"@vitejs/plugin-vue": "^5.2",
"@vue/eslint-config-prettier": "^9.0",
"@vue/eslint-config-typescript": "^13.0",
"eslint": "^9.1",
Expand All @@ -73,7 +73,7 @@
"typescript": "5.6.2",
"typescript-eslint": "^7.8",
"vite": "^5.2",
"vite-plugin-dts": "^3.9",
"vite-plugin-dts": "4.1.1",
"vue": "^3.4",
"vue-loader": "^17.4",
"vue-tsc": "^2.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ const beforeEnter = (el: Element): void => {
const enter = (el: Element, done: () => void): void => {
const element = el as HTMLElement;
element.offsetHeight;
element.style.transition = 'height 0.5s ease-in-out';
element.style.height = '100%';
element.addEventListener('transitionend', done);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ const testPassive = (): boolean => {
);

passive = true;
} catch (e) {
// do nothing
} catch (e: any) {
console.log(e);
}

return passive;
Expand Down
4 changes: 2 additions & 2 deletions src/FastyBird/Library/WebUi/packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"@types/node": "^20.12",
"@typescript-eslint/eslint-plugin": "^7.8",
"@typescript-eslint/parser": "^7.8",
"@vitejs/plugin-vue": "^5.0",
"@vitejs/plugin-vue": "^5.2",
"@vue/eslint-config-prettier": "^9.0",
"@vue/eslint-config-typescript": "^13.0",
"eslint": "^9.1",
Expand All @@ -64,7 +64,7 @@
"typescript-eslint": "^7.8",
"type-fest": "^4.18",
"vite": "^5.2",
"vite-plugin-dts": "^3.9",
"vite-plugin-dts": "4.1.1",
"vue": "^3.4",
"vue-loader": "^17.4",
"vue-tsc": "^2.0"
Expand Down
4 changes: 3 additions & 1 deletion src/FastyBird/Library/WebUi/packages/utils/src/dom/aria.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,5 +120,7 @@ export const focusNode = (el: HTMLElement): void => {

el.focus();

!isLeaf(el) && el.click();
if (!isLeaf(el)) {
el.click();
}
};
48 changes: 24 additions & 24 deletions src/FastyBird/Library/WebUi/web-ui-library/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,46 +39,46 @@
"pretty:write": "prettier src --write"
},
"dependencies": {
"@ctrl/tinycolor": "^4.0",
"@ctrl/tinycolor": "^4.1",
"@fastybird/web-ui-theme-chalk": "1.0.0-dev.24",
"@popperjs/core": "^2.11",
"@vueuse/core": "^10.9",
"@vueuse/core": "^11.3",
"async-validator": "^4.2",
"csstype": "^3.1",
"element-plus": "^2.7",
"element-plus": "^2.8",
"lodash": "^4.17",
"vue-router": "^4.3"
"vue-router": "^4.5"
},
"devDependencies": {
"@eslint/js": "^9.1",
"@eslint/js": "^9.15",
"@fastybird/web-ui-components": "1.0.0-dev.24",
"@fastybird/web-ui-icons": "1.0.0-dev.24",
"@fastybird/web-ui-theme-chalk": "1.0.0-dev.24",
"@nabla/vite-plugin-eslint": "^2.0",
"@types/lodash": "^4.17",
"@types/node": "^20.12",
"@typescript-eslint/eslint-plugin": "^7.8",
"@typescript-eslint/parser": "^7.8",
"@vitejs/plugin-vue": "^5.0",
"@vue/eslint-config-prettier": "^9.0",
"@vue/eslint-config-typescript": "^13.0",
"@types/node": "^20.17",
"@typescript-eslint/eslint-plugin": "^8.16",
"@typescript-eslint/parser": "^8.16",
"@vitejs/plugin-vue": "^5.2",
"@vue/eslint-config-prettier": "^10.1",
"@vue/eslint-config-typescript": "^14.1",
"consola": "^3.2",
"eslint": "^9.1",
"eslint": "^9.15",
"eslint-config-prettier": "^9.1",
"eslint-plugin-prettier": "^5.1",
"eslint-plugin-vue": "^9.25",
"prettier": "^3.2",
"rimraf": "^5.0",
"rollup-plugin-delete": "^2.0",
"tsx": "^4.9",
"type-fest": "^4.18",
"eslint-plugin-prettier": "^5.2",
"eslint-plugin-vue": "^9.31",
"prettier": "^3.3",
"rimraf": "^6.0",
"rollup-plugin-delete": "^2.1",
"tsx": "^4.19",
"type-fest": "^4.28",
"typescript": "5.6.2",
"typescript-eslint": "^7.8",
"vite": "^5.2",
"vite-plugin-dts": "^3.9",
"vue": "^3.4",
"typescript-eslint": "^8.16",
"vite": "^5.4",
"vite-plugin-dts": "4.1.1",
"vue": "^3.5",
"vue-loader": "^17.4",
"vue-tsc": "^2.0"
"vue-tsc": "^2.1"
},
"engines": {
"node": ">=20"
Expand Down
2 changes: 1 addition & 1 deletion src/FastyBird/Module/Accounts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
"typescript-eslint": "^8.15",
"unocss": "^0.64",
"vite": "^5.4",
"vite-plugin-dts": "^4.3",
"vite-plugin-dts": "4.1.1",
"vite-plugin-vue-type-imports": "^0.2",
"vite-svg-loader": "^5.1",
"vue": "^3.5",
Expand Down
2 changes: 1 addition & 1 deletion src/FastyBird/Module/Devices/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
"typescript-eslint": "^8.15",
"unocss": "^0.64",
"vite": "^5.4",
"vite-plugin-dts": "^4.3",
"vite-plugin-dts": "4.1.1",
"vite-plugin-vue-type-imports": "^0.2",
"vue": "^3.5",
"vue-i18n": "^10.0",
Expand Down
4 changes: 2 additions & 2 deletions src/FastyBird/Module/Triggers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"@types/uuid": "^9.0",
"@typescript-eslint/eslint-plugin": "^7.1",
"@typescript-eslint/parser": "^7.1",
"@vitejs/plugin-vue": "^5.0",
"@vitejs/plugin-vue": "^5.2",
"@vue/eslint-config-prettier": "^9.0",
"@vue/eslint-config-typescript": "^12.0",
"babel-loader": "^9.1",
Expand Down Expand Up @@ -105,7 +105,7 @@
"typescript": "5.6.2",
"vee-validate": "^4.12",
"vite": "^5.1",
"vite-plugin-dts": "^3.7",
"vite-plugin-dts": "4.1.1",
"vite-plugin-vue-type-imports": "^0.2",
"vite-svg-loader": "^5.1",
"vue": "^3.4",
Expand Down
4 changes: 2 additions & 2 deletions src/FastyBird/Module/Ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
"@types/uuid": "^9.0",
"@typescript-eslint/eslint-plugin": "^7.8",
"@typescript-eslint/parser": "^7.8",
"@vitejs/plugin-vue": "^5.0",
"@vitejs/plugin-vue": "^5.2",
"@vue/eslint-config-prettier": "^9.0",
"@vue/eslint-config-typescript": "^13.0",
"eslint": "^9.1",
Expand All @@ -122,7 +122,7 @@
"typescript-eslint": "^7.8",
"unocss": "^0.59",
"vite": "^5.2",
"vite-plugin-dts": "^3.9",
"vite-plugin-dts": "4.1.1",
"vite-plugin-vue-type-imports": "^0.2",
"vite-svg-loader": "^5.1",
"vue": "^3.4",
Expand Down

0 comments on commit 98e8d89

Please sign in to comment.