@paygreen/pgui 3.0.11 → 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 +3 -2
- 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 +2172 -2018
- package/package.json +40 -39
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",
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
"dev:push": "npm run build && yalc push",
|
|
25
25
|
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx,json}' --max-warnings=0",
|
|
26
26
|
"lint:fix": "eslint --fix 'src/**/*.{js,jsx,ts,tsx,json}'",
|
|
27
|
+
"install-playwright": "npx playwright install",
|
|
27
28
|
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc.json"
|
|
28
29
|
},
|
|
29
30
|
"lint-staged": {
|
|
@@ -35,74 +36,74 @@
|
|
|
35
36
|
"author": "",
|
|
36
37
|
"license": "ISC",
|
|
37
38
|
"dependencies": {
|
|
38
|
-
"@chakra-ui/react": "^3.
|
|
39
|
+
"@chakra-ui/react": "^3.30.0",
|
|
39
40
|
"@chakra-ui/react-use-outside-click": "^2.2.0",
|
|
40
|
-
"@emotion/react": "^11.
|
|
41
|
-
"@emotion/styled": "^11.
|
|
42
|
-
"@fontsource-variable/geist": "^5.2.
|
|
43
|
-
"@
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"@vitejs/plugin-react": "^4.5.2",
|
|
47
|
-
"dayjs": "^1.11.13",
|
|
48
|
-
"libphonenumber-js": "^1.12.9",
|
|
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",
|
|
49
47
|
"next-themes": "^0.4.6",
|
|
50
48
|
"react": "^18.0.0 || ^19.0.0",
|
|
51
49
|
"react-datepicker": "^8.0.0",
|
|
52
50
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
53
51
|
"react-icons": "^5.5.0",
|
|
54
|
-
"react-phone-number-input": "^3.
|
|
55
|
-
"react-select": "^5.
|
|
56
|
-
"shiki": "^3.
|
|
57
|
-
"
|
|
58
|
-
"use-mask-input": "^3.0.0"
|
|
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"
|
|
59
56
|
},
|
|
60
57
|
"devDependencies": {
|
|
61
|
-
"@storybook/addon-a11y": "^9.
|
|
62
|
-
"@storybook/addon-docs": "^9.
|
|
63
|
-
"@storybook/addon-links": "^9.
|
|
64
|
-
"@storybook/addon-
|
|
65
|
-
"@storybook/
|
|
66
|
-
"@storybook/
|
|
58
|
+
"@storybook/addon-a11y": "^9.1.17",
|
|
59
|
+
"@storybook/addon-docs": "^9.1.17",
|
|
60
|
+
"@storybook/addon-links": "^9.1.17",
|
|
61
|
+
"@storybook/addon-themes": "^9.1.17",
|
|
62
|
+
"@storybook/addon-vitest": "^9.1.17",
|
|
63
|
+
"@storybook/builder-vite": "^9.1.17",
|
|
64
|
+
"@storybook/react-vite": "^9.1.17",
|
|
65
|
+
"@testing-library/react": "^16.3.1",
|
|
67
66
|
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
|
|
68
|
-
"@types/node": "^24.
|
|
69
|
-
"@types/react": "^19.
|
|
70
|
-
"@types/react-dom": "^19.
|
|
67
|
+
"@types/node": "^24.10.4",
|
|
68
|
+
"@types/react": "^19.2.7",
|
|
69
|
+
"@types/react-dom": "^19.2.3",
|
|
71
70
|
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
72
71
|
"@typescript-eslint/parser": "^7.0.0",
|
|
72
|
+
"@vitejs/plugin-react": "^4.5.2",
|
|
73
73
|
"@vitest/browser": "^3.2.3",
|
|
74
74
|
"@vitest/coverage-istanbul": "^3.2.4",
|
|
75
75
|
"@vitest/coverage-v8": "^3.2.3",
|
|
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
|
-
"eslint-plugin-storybook": "
|
|
83
|
+
"eslint-plugin-storybook": "^0.11.2",
|
|
84
84
|
"globals": "^16.2.0",
|
|
85
85
|
"husky": "^9.1.7",
|
|
86
|
-
"lint-staged": "^16.
|
|
87
|
-
"playwright": "^1.
|
|
88
|
-
"prettier": "^3.
|
|
86
|
+
"lint-staged": "^16.2.7",
|
|
87
|
+
"playwright": "^1.57.0",
|
|
88
|
+
"prettier": "^3.7.4",
|
|
89
89
|
"prop-types": "^15.8.1",
|
|
90
|
-
"
|
|
90
|
+
"storybook": "^9.1.17",
|
|
91
|
+
"typescript": "^5.9.3",
|
|
91
92
|
"vite-plugin-dts": "^4.5.4",
|
|
92
93
|
"vite-tsconfig-paths": "^5.1.4",
|
|
93
94
|
"vitest": "^3.2.3"
|
|
94
95
|
},
|
|
95
96
|
"peerDependencies": {
|
|
96
|
-
"@chakra-ui/react": "^3.
|
|
97
|
-
"@emotion/react": "^11.
|
|
98
|
-
"@emotion/styled": "^11.
|
|
99
|
-
"@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",
|
|
100
101
|
"react": "^18.0.0 || ^19.0.0",
|
|
101
102
|
"react-datepicker": "^8.0.0",
|
|
102
103
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
103
|
-
"react-phone-number-input": "^3.
|
|
104
|
-
"react-select": "^5.
|
|
105
|
-
"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"
|
|
106
107
|
},
|
|
107
108
|
"peerDependenciesMeta": {
|
|
108
109
|
"@chakra-ui/react": {
|