@npm-questionpro/wick-ui-lib 0.17.0 → 0.18.1
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.
- package/dist/src/components/appHeader/WuAppHeader.d.ts +1 -0
- package/dist/src/components/appHeader/ui/WuAppHeaderAccount.d.ts +1 -0
- package/dist/src/components/pagination/WuPagination.d.ts +0 -4
- package/dist/src/components/table/components/dataTable/WuDataTable.d.ts +1 -11
- package/dist/src/components/table/components/table/WuTable.d.ts +5 -8
- package/dist/src/components/typography/WuTypography.d.ts +20 -0
- package/dist/src/components/typography/WuTypography.test.d.ts +1 -0
- package/dist/src/components/typography/iconClasses.d.ts +1 -0
- package/dist/src/components/typography/index.d.ts +1 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/style.css +1 -1
- package/dist/wick-ui-lib/es/index.js +4113 -4110
- package/dist/wick-ui-lib/es/index.js.map +1 -1
- package/dist/wick-ui-lib/umd/index.js +11 -11
- package/dist/wick-ui-lib/umd/index.js.map +1 -1
- package/package.json +6 -8
- package/dist/src/docs/iconClasses.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@npm-questionpro/wick-ui-lib",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.18.1",
|
|
5
5
|
"description": "A React component library by QuestionPro for building web applications with ease",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/wick-ui-lib/umd/index.js",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@eslint/js": "^9.19.0",
|
|
20
|
-
"@npm-questionpro/wick-ui-icon": "^
|
|
20
|
+
"@npm-questionpro/wick-ui-icon": "^6.1.0",
|
|
21
21
|
"@radix-ui/react-avatar": "^1.1.2",
|
|
22
22
|
"@radix-ui/react-checkbox": "^1.1.3",
|
|
23
23
|
"@radix-ui/react-dialog": "^1.1.6",
|
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
"@storybook/react": "^8.5.3",
|
|
45
45
|
"@storybook/react-vite": "^8.5.3",
|
|
46
46
|
"@storybook/theming": "^8.5.3",
|
|
47
|
+
"@tanstack/react-table": "^8.20.5",
|
|
47
48
|
"@testing-library/dom": "^10.4.0",
|
|
48
49
|
"@testing-library/jest-dom": "^6.6.3",
|
|
49
50
|
"@testing-library/react": "^16.2.0",
|
|
@@ -89,9 +90,9 @@
|
|
|
89
90
|
"vitest": "^3.0.5"
|
|
90
91
|
},
|
|
91
92
|
"peerDependencies": {
|
|
92
|
-
"@npm-questionpro/wick-ui-icon": "
|
|
93
|
-
"react": "
|
|
94
|
-
"react-dom": "
|
|
93
|
+
"@npm-questionpro/wick-ui-icon": ">= 6.1.0",
|
|
94
|
+
"react": ">= 18 < 20",
|
|
95
|
+
"react-dom": ">= 18 < 20"
|
|
95
96
|
},
|
|
96
97
|
"files": [
|
|
97
98
|
"dist"
|
|
@@ -102,9 +103,6 @@
|
|
|
102
103
|
"eslint --fix"
|
|
103
104
|
]
|
|
104
105
|
},
|
|
105
|
-
"dependencies": {
|
|
106
|
-
"@tanstack/react-table": "^8.20.5"
|
|
107
|
-
},
|
|
108
106
|
"scripts": {
|
|
109
107
|
"build": "tsc -b && vite build",
|
|
110
108
|
"lint": "eslint ./src --fix",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const ICON_CLASSES: string[];
|