@paygreen/pgui 3.0.12 → 3.0.13
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/components/data-table/components/table-empty-state.d.ts +9 -0
- package/dist/components/data-table/components/table-pagination-footer.d.ts +14 -0
- package/dist/components/data-table/components/table-row-wrapper.d.ts +15 -0
- package/dist/components/data-table/data-table.d.ts +1 -1
- package/dist/components/data-table/data-table.utils.d.ts +7 -0
- package/dist/components/data-table/hooks/use-table-row-interaction.d.ts +8 -0
- package/dist/components/data-table/hooks/use-table-styling.d.ts +51 -0
- package/dist/index.js +6 -6
- package/dist/index.mjs +2489 -2372
- package/package.json +28 -28
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paygreen/pgui",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.13",
|
|
4
4
|
"description": "core ui for paygreen apps",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -36,23 +36,23 @@
|
|
|
36
36
|
"author": "",
|
|
37
37
|
"license": "ISC",
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@chakra-ui/react": "^3.
|
|
39
|
+
"@chakra-ui/react": "^3.30.0",
|
|
40
40
|
"@chakra-ui/react-use-outside-click": "^2.2.0",
|
|
41
|
-
"@emotion/react": "^11.
|
|
42
|
-
"@emotion/styled": "^11.
|
|
43
|
-
"@fontsource-variable/geist": "^5.2.
|
|
44
|
-
"@tanstack/react-table": "^8.
|
|
45
|
-
"dayjs": "^1.11.
|
|
46
|
-
"libphonenumber-js": "^1.12.
|
|
41
|
+
"@emotion/react": "^11.14.0",
|
|
42
|
+
"@emotion/styled": "^11.14.1",
|
|
43
|
+
"@fontsource-variable/geist": "^5.2.8",
|
|
44
|
+
"@tanstack/react-table": "^8.21.3",
|
|
45
|
+
"dayjs": "^1.11.19",
|
|
46
|
+
"libphonenumber-js": "^1.12.33",
|
|
47
47
|
"next-themes": "^0.4.6",
|
|
48
48
|
"react": "^18.0.0 || ^19.0.0",
|
|
49
49
|
"react-datepicker": "^8.0.0",
|
|
50
50
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
51
51
|
"react-icons": "^5.5.0",
|
|
52
|
-
"react-phone-number-input": "^3.
|
|
53
|
-
"react-select": "^5.
|
|
54
|
-
"shiki": "^3.
|
|
55
|
-
"use-mask-input": "^3.
|
|
52
|
+
"react-phone-number-input": "^3.4.14",
|
|
53
|
+
"react-select": "^5.10.2",
|
|
54
|
+
"shiki": "^3.20.0",
|
|
55
|
+
"use-mask-input": "^3.5.2"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@storybook/addon-a11y": "^9.1.17",
|
|
@@ -62,11 +62,11 @@
|
|
|
62
62
|
"@storybook/addon-vitest": "^9.1.17",
|
|
63
63
|
"@storybook/builder-vite": "^9.1.17",
|
|
64
64
|
"@storybook/react-vite": "^9.1.17",
|
|
65
|
-
"@testing-library/react": "^16.3.
|
|
65
|
+
"@testing-library/react": "^16.3.1",
|
|
66
66
|
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
|
|
67
|
-
"@types/node": "^24.
|
|
68
|
-
"@types/react": "^19.
|
|
69
|
-
"@types/react-dom": "^19.
|
|
67
|
+
"@types/node": "^24.10.4",
|
|
68
|
+
"@types/react": "^19.2.7",
|
|
69
|
+
"@types/react-dom": "^19.2.3",
|
|
70
70
|
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
71
71
|
"@typescript-eslint/parser": "^7.0.0",
|
|
72
72
|
"@vitejs/plugin-react": "^4.5.2",
|
|
@@ -76,34 +76,34 @@
|
|
|
76
76
|
"eslint": "^8.2.0",
|
|
77
77
|
"eslint-config-airbnb": "^19.0.4",
|
|
78
78
|
"eslint-config-airbnb-typescript": "^18.0.0",
|
|
79
|
-
"eslint-config-prettier": "^10.1.
|
|
80
|
-
"eslint-plugin-import": "^2.
|
|
79
|
+
"eslint-config-prettier": "^10.1.8",
|
|
80
|
+
"eslint-plugin-import": "^2.32.0",
|
|
81
81
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
82
82
|
"eslint-plugin-react": "^7.37.5",
|
|
83
83
|
"eslint-plugin-storybook": "^0.11.2",
|
|
84
84
|
"globals": "^16.2.0",
|
|
85
85
|
"husky": "^9.1.7",
|
|
86
|
-
"lint-staged": "^16.
|
|
86
|
+
"lint-staged": "^16.2.7",
|
|
87
87
|
"playwright": "^1.57.0",
|
|
88
|
-
"prettier": "^3.
|
|
88
|
+
"prettier": "^3.7.4",
|
|
89
89
|
"prop-types": "^15.8.1",
|
|
90
90
|
"storybook": "^9.1.17",
|
|
91
|
-
"typescript": "^5.
|
|
91
|
+
"typescript": "^5.9.3",
|
|
92
92
|
"vite-plugin-dts": "^4.5.4",
|
|
93
93
|
"vite-tsconfig-paths": "^5.1.4",
|
|
94
94
|
"vitest": "^3.2.3"
|
|
95
95
|
},
|
|
96
96
|
"peerDependencies": {
|
|
97
|
-
"@chakra-ui/react": "^3.
|
|
98
|
-
"@emotion/react": "^11.
|
|
99
|
-
"@emotion/styled": "^11.
|
|
100
|
-
"@tanstack/react-table": "^8.
|
|
97
|
+
"@chakra-ui/react": "^3.30.0",
|
|
98
|
+
"@emotion/react": "^11.14.0",
|
|
99
|
+
"@emotion/styled": "^11.14.1",
|
|
100
|
+
"@tanstack/react-table": "^8.21.3",
|
|
101
101
|
"react": "^18.0.0 || ^19.0.0",
|
|
102
102
|
"react-datepicker": "^8.0.0",
|
|
103
103
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
104
|
-
"react-phone-number-input": "^3.
|
|
105
|
-
"react-select": "^5.
|
|
106
|
-
"use-mask-input": "^3.
|
|
104
|
+
"react-phone-number-input": "^3.4.14",
|
|
105
|
+
"react-select": "^5.10.2",
|
|
106
|
+
"use-mask-input": "^3.5.2"
|
|
107
107
|
},
|
|
108
108
|
"peerDependenciesMeta": {
|
|
109
109
|
"@chakra-ui/react": {
|