@veeqo/ui 6.0.1 → 6.1.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.
- package/dist/components/DataTable/DataTable.d.ts +1 -1
- package/dist/components/DataTable/components/ColumnDivider.d.ts +2 -1
- package/dist/components/DataTable/hooks/useColumns.d.ts +6 -3
- package/dist/components/DataTable/types.d.ts +24 -0
- package/dist/components/DataTable/utils/getColumnWidth.d.ts +2 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veeqo/ui",
|
|
3
|
-
"version": "6.0
|
|
3
|
+
"version": "6.1.0",
|
|
4
4
|
"description": "New optimised component library for Veeqo.",
|
|
5
5
|
"author": "Robert Wealthall",
|
|
6
6
|
"license": "ISC",
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"dist"
|
|
13
13
|
],
|
|
14
14
|
"scripts": {
|
|
15
|
+
"start": "npm run storybook",
|
|
15
16
|
"storybook": "storybook dev -p 6006",
|
|
16
17
|
"storybook:build": "storybook build --quiet -c .storybook -o ./public",
|
|
17
18
|
"playroom:start": "playroom start",
|
|
@@ -99,7 +100,7 @@
|
|
|
99
100
|
"rollup": "^3.29.2",
|
|
100
101
|
"rollup-plugin-dts": "^6.0.2",
|
|
101
102
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
102
|
-
"storybook": "^8.
|
|
103
|
+
"storybook": "^8.3.5",
|
|
103
104
|
"style-loader": "^2.0.0",
|
|
104
105
|
"styled-components": "^5.1.1",
|
|
105
106
|
"ts-jest": "^29.1.1",
|
|
@@ -108,10 +109,12 @@
|
|
|
108
109
|
"typescript-plugin-styled-components": "^3.0.0"
|
|
109
110
|
},
|
|
110
111
|
"peerDependencies": {
|
|
112
|
+
"@internationalized/date": "^3.5.4",
|
|
111
113
|
"@popperjs/core": "^2.11.8",
|
|
112
114
|
"framer-motion": "^6.5.1",
|
|
113
115
|
"lodash.throttle": "^4.1.1",
|
|
114
116
|
"react": "^17.0.2",
|
|
117
|
+
"react-aria-components": "^1.2.1",
|
|
115
118
|
"react-dom": "^17.0.2",
|
|
116
119
|
"react-popper": "^2.2.5",
|
|
117
120
|
"react-scrolllock-configurable": "4.0.5",
|
|
@@ -119,8 +122,6 @@
|
|
|
119
122
|
"react-use": "^15.3.8",
|
|
120
123
|
"resize-observer-polyfill": "^1.5.1",
|
|
121
124
|
"styled-components": "^5.1.1",
|
|
122
|
-
"@internationalized/date": "^3.5.4",
|
|
123
|
-
"react-aria-components": "^1.2.1",
|
|
124
125
|
"uid": "^2.0.2"
|
|
125
126
|
},
|
|
126
127
|
"overrides": {
|