@linzjs/windows 5.3.0 → 5.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -62,7 +62,7 @@ export interface LuiModalAsyncInstance {
|
|
|
62
62
|
* <li> To show the dialog and get the result...
|
|
63
63
|
* <pre>
|
|
64
64
|
* // Note: modalOwnerRef is only required if you need to support popout windows
|
|
65
|
-
* const { showModal, modalOwnerRef } =
|
|
65
|
+
* const { showModal, modalOwnerRef } = useShowAsyncModal();
|
|
66
66
|
* ...
|
|
67
67
|
* const showModal = () => {
|
|
68
68
|
* const result = await showModal(SomeModal, { someProp: 1 });
|
package/package.json
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"popout"
|
|
14
14
|
],
|
|
15
15
|
"main": "./dist/index.ts",
|
|
16
|
-
"version": "5.
|
|
16
|
+
"version": "5.4.0",
|
|
17
17
|
"peerDependencies": {
|
|
18
18
|
"@linzjs/lui": ">=21",
|
|
19
19
|
"lodash-es": ">=4",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"access": "public"
|
|
29
29
|
},
|
|
30
30
|
"engines": {
|
|
31
|
-
"node": ">=
|
|
31
|
+
"node": ">=22"
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
34
34
|
"build": "run-s clean stylelint lint lint-circular-deps bundle",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"@emotion/cache": "^11.14.0",
|
|
53
53
|
"@emotion/react": "^11.14.0",
|
|
54
|
-
"@emotion/styled": "^11.14.
|
|
54
|
+
"@emotion/styled": "^11.14.1",
|
|
55
55
|
"@types/uuid": "^10.0.0",
|
|
56
56
|
"lodash-es": ">=4",
|
|
57
57
|
"react-rnd": "^10.5.2",
|
|
@@ -59,62 +59,58 @@
|
|
|
59
59
|
"uuid": "^11.1.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@chromatic-com/storybook": "^
|
|
63
|
-
"@linzjs/lui": "^
|
|
64
|
-
"@linzjs/step-ag-grid": "^27.
|
|
62
|
+
"@chromatic-com/storybook": "^4.0.1",
|
|
63
|
+
"@linzjs/lui": "^23.3.0",
|
|
64
|
+
"@linzjs/step-ag-grid": "^27.3.3",
|
|
65
65
|
"@linzjs/style": "^5.4.0",
|
|
66
|
-
"@rollup/plugin-commonjs": "^28.0.
|
|
66
|
+
"@rollup/plugin-commonjs": "^28.0.6",
|
|
67
67
|
"@rollup/plugin-json": "^6.1.0",
|
|
68
68
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
69
|
-
"@storybook/addon-docs": "^
|
|
70
|
-
"@storybook/addon-
|
|
71
|
-
"@storybook/
|
|
72
|
-
"@
|
|
73
|
-
"@storybook/addon-mdx-gfm": "^8.6.12",
|
|
74
|
-
"@storybook/blocks": "^8.6.12",
|
|
75
|
-
"@storybook/react": "^8.6.12",
|
|
76
|
-
"@storybook/react-vite": "^8.6.12",
|
|
77
|
-
"@storybook/test": "^8.6.12",
|
|
69
|
+
"@storybook/addon-docs": "^9.0.14",
|
|
70
|
+
"@storybook/addon-links": "^9.0.14",
|
|
71
|
+
"@storybook/react-vite": "^9.0.14",
|
|
72
|
+
"@testing-library/dom": "^10.4.0",
|
|
78
73
|
"@testing-library/react": "^16.3.0",
|
|
79
74
|
"@testing-library/user-event": "^14.6.1",
|
|
80
75
|
"@types/lodash-es": "^4.17.12",
|
|
81
|
-
"@types/node": "^22.15.
|
|
82
|
-
"@types/react": "^18.3.
|
|
76
|
+
"@types/node": "^22.15.34",
|
|
77
|
+
"@types/react": "^18.3.23",
|
|
83
78
|
"@types/react-dom": "^18.3.7",
|
|
84
|
-
"@vitejs/plugin-react-swc": "^3.
|
|
85
|
-
"@vitest/ui": "^3.
|
|
86
|
-
"ag-grid-community": "^33.2
|
|
87
|
-
"ag-grid-react": "^33.2
|
|
79
|
+
"@vitejs/plugin-react-swc": "^3.10.2",
|
|
80
|
+
"@vitest/ui": "^3.2.4",
|
|
81
|
+
"ag-grid-community": "^33.3.2",
|
|
82
|
+
"ag-grid-react": "^33.3.2",
|
|
88
83
|
"babel-preset-react-app": "^10.1.0",
|
|
89
84
|
"eslint-plugin-react": "^7.37.5",
|
|
85
|
+
"eslint-plugin-storybook": "9.0.14",
|
|
90
86
|
"jsdom": "^26.1.0",
|
|
91
87
|
"mkdirp": "^3.0.1",
|
|
92
88
|
"npm-run-all": "^4.1.5",
|
|
93
89
|
"react": "^18.3.1",
|
|
94
90
|
"react-app-polyfill": "^3.0.0",
|
|
95
91
|
"react-dom": "^18.3.1",
|
|
96
|
-
"rollup": "^4.
|
|
92
|
+
"rollup": "^4.44.1",
|
|
97
93
|
"rollup-plugin-copy": "^3.5.0",
|
|
98
|
-
"sass": "^1.
|
|
94
|
+
"sass": "^1.89.2",
|
|
99
95
|
"sass-loader": "^16.0.5",
|
|
100
|
-
"semantic-release": "^24.2.
|
|
101
|
-
"storybook": "^
|
|
96
|
+
"semantic-release": "^24.2.6",
|
|
97
|
+
"storybook": "^9.0.14",
|
|
102
98
|
"style-loader": "^4.0.0",
|
|
103
|
-
"stylelint": "^16.
|
|
99
|
+
"stylelint": "^16.21.0",
|
|
104
100
|
"stylelint-config-recommended": "^15.0.0",
|
|
105
101
|
"stylelint-config-recommended-scss": "^14.1.0",
|
|
106
102
|
"stylelint-config-standard": "^38.0.0",
|
|
107
103
|
"stylelint-prettier": "5.0.3",
|
|
108
|
-
"stylelint-scss": "6.12.
|
|
104
|
+
"stylelint-scss": "6.12.1",
|
|
109
105
|
"typescript": "^5.8.3",
|
|
110
106
|
"vite": "^6.3.5",
|
|
111
107
|
"vite-plugin-html": "^3.2.2",
|
|
112
108
|
"vite-tsconfig-paths": "^5.1.4",
|
|
113
|
-
"vitest": "^3.
|
|
109
|
+
"vitest": "^3.2.4"
|
|
114
110
|
},
|
|
115
111
|
"optionalDependencies": {
|
|
116
|
-
"@rollup/rollup-linux-x64-gnu": "^4.
|
|
117
|
-
"@swc/core-linux-x64-gnu": "^1.
|
|
112
|
+
"@rollup/rollup-linux-x64-gnu": "^4.44.1",
|
|
113
|
+
"@swc/core-linux-x64-gnu": "^1.12.7"
|
|
118
114
|
},
|
|
119
115
|
"browserslist": {
|
|
120
116
|
"production": [
|