@ballistix.digital/react-components 6.0.3 → 7.0.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/index.d.ts +57 -27
- package/dist/index.d.ts.map +1 -1
- package/dist/index.esm.js +261 -144
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +259 -141
- package/dist/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +9 -6
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"email": "info@ballistix.digital",
|
|
8
8
|
"url": "https://ballistix.digital"
|
|
9
9
|
},
|
|
10
|
-
"version": "
|
|
10
|
+
"version": "7.0.0",
|
|
11
11
|
"main": "dist/index.js",
|
|
12
12
|
"source": "src/index.tsx",
|
|
13
13
|
"module": "dist/index.esm.js",
|
|
@@ -22,10 +22,11 @@
|
|
|
22
22
|
"build-storybook": "storybook build",
|
|
23
23
|
"tsc": "tsc --outDir dist/lib --declarationDir dist/types --declaration true --baseUrl ./src",
|
|
24
24
|
"build:storybook": "storybook build -s public",
|
|
25
|
-
"test": "jest"
|
|
25
|
+
"test": "jest",
|
|
26
|
+
"clean": "rm -rf dist .cache .parcel-cache node_modules"
|
|
26
27
|
},
|
|
27
28
|
"dependencies": {
|
|
28
|
-
"@ballistix.digital/react-tailwindcss-datepicker": "^
|
|
29
|
+
"@ballistix.digital/react-tailwindcss-datepicker": "^2.0.3",
|
|
29
30
|
"@dnd-kit/core": "^6.1.0",
|
|
30
31
|
"@dnd-kit/modifiers": "^9.0.0",
|
|
31
32
|
"@dnd-kit/sortable": "^10.0.0",
|
|
@@ -43,9 +44,9 @@
|
|
|
43
44
|
"@heroicons/react": "^2.1.5",
|
|
44
45
|
"@react-input/mask": "^1.0.20",
|
|
45
46
|
"@tailwindcss/forms": "^0.5.6",
|
|
47
|
+
"@tailwindcss/postcss": "^4.0.0",
|
|
46
48
|
"@tanstack/react-table": "^8.11.6",
|
|
47
49
|
"@ubilabs/react-geosuggest": "^2.16.2",
|
|
48
|
-
"autoprefixer": "10.4.17",
|
|
49
50
|
"dayjs": "^1.11.13",
|
|
50
51
|
"formik": "^2.4.3",
|
|
51
52
|
"lodash": "^4.17.21",
|
|
@@ -53,7 +54,7 @@
|
|
|
53
54
|
"postcss": "8.5.1",
|
|
54
55
|
"react-dropzone": "^14.2.3",
|
|
55
56
|
"react-tailwindcss-select": "^1.8.5",
|
|
56
|
-
"tailwindcss": "
|
|
57
|
+
"tailwindcss": "^4.0.0",
|
|
57
58
|
"typescript": "5.7.2",
|
|
58
59
|
"uuid": "^11.0.1",
|
|
59
60
|
"xlsx": "^0.18.5",
|
|
@@ -105,8 +106,10 @@
|
|
|
105
106
|
},
|
|
106
107
|
"peerDependencies": {
|
|
107
108
|
"@headlessui/react": "^2.1.2",
|
|
109
|
+
"next": "^15.0.0",
|
|
108
110
|
"react": "^19.0.0",
|
|
109
|
-
"react-dom": "^19.0.0"
|
|
111
|
+
"react-dom": "^19.0.0",
|
|
112
|
+
"tailwindcss": "^4.0.0"
|
|
110
113
|
},
|
|
111
114
|
"packageManager": "yarn@4.6.0"
|
|
112
115
|
}
|