@ballistix.digital/react-components 4.4.2 → 4.5.2
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 +511 -578
- package/dist/index.d.ts.map +1 -0
- package/dist/index.esm.js +5898 -14516
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +5969 -14580
- package/dist/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +34 -84
- package/dist/lib/tsconfig.tsbuildinfo +0 -1
package/package.json
CHANGED
|
@@ -7,145 +7,95 @@
|
|
|
7
7
|
"email": "info@ballistix.digital",
|
|
8
8
|
"url": "https://ballistix.digital"
|
|
9
9
|
},
|
|
10
|
-
"version": "4.
|
|
10
|
+
"version": "4.5.2",
|
|
11
11
|
"main": "dist/index.js",
|
|
12
|
+
"source": "src/index.tsx",
|
|
12
13
|
"module": "dist/index.esm.js",
|
|
13
14
|
"types": "dist/index.d.ts",
|
|
14
15
|
"files": [
|
|
15
16
|
"dist"
|
|
16
17
|
],
|
|
17
18
|
"scripts": {
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"start": "next start",
|
|
21
|
-
"lint": "next lint",
|
|
19
|
+
"build": "tsc --noEmit && parcel build",
|
|
20
|
+
"lint": "eslint .",
|
|
22
21
|
"storybook": "storybook dev -p 6006",
|
|
23
22
|
"build-storybook": "storybook build",
|
|
24
23
|
"tsc": "tsc --outDir dist/lib --declarationDir dist/types --declaration true --baseUrl ./src",
|
|
25
|
-
"build:css": "npx tailwindcss -i ./src/styles/index.css -o ./public/_tailwind.css",
|
|
26
24
|
"build:storybook": "build-storybook -s public"
|
|
27
25
|
},
|
|
28
26
|
"dependencies": {
|
|
29
27
|
"@dnd-kit/core": "^6.1.0",
|
|
30
28
|
"@dnd-kit/modifiers": "^7.0.0",
|
|
31
29
|
"@dnd-kit/sortable": "^8.0.0",
|
|
30
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
32
31
|
"@floating-ui/react": "^0.26.17",
|
|
33
|
-
"@
|
|
34
|
-
"@fortawesome/fontawesome-svg-core": "^6.5.1",
|
|
32
|
+
"@fortawesome/fontawesome-svg-core": "^6.4.2",
|
|
35
33
|
"@fortawesome/free-brands-svg-icons": "^6.4.2",
|
|
36
|
-
"@fortawesome/free-regular-svg-icons": "^6.4.2",
|
|
37
|
-
"@fortawesome/free-solid-svg-icons": "^6.4.2",
|
|
38
34
|
"@fortawesome/pro-duotone-svg-icons": "^6.4.2",
|
|
39
35
|
"@fortawesome/pro-light-svg-icons": "^6.4.2",
|
|
40
36
|
"@fortawesome/pro-regular-svg-icons": "^6.4.2",
|
|
41
37
|
"@fortawesome/pro-solid-svg-icons": "^6.4.2",
|
|
42
38
|
"@fortawesome/pro-thin-svg-icons": "^6.4.2",
|
|
43
39
|
"@fortawesome/react-fontawesome": "^0.2.0",
|
|
44
|
-
"@fortawesome/sharp-regular-svg-icons": "^6.4.2",
|
|
45
|
-
"@fortawesome/sharp-solid-svg-icons": "^6.4.2",
|
|
46
40
|
"@headlessui/react": "^2.1.2",
|
|
47
|
-
"@heroicons/react": "^2.
|
|
41
|
+
"@heroicons/react": "^2.1.5",
|
|
48
42
|
"@react-input/mask": "^1.0.20",
|
|
49
43
|
"@tailwindcss/forms": "^0.5.6",
|
|
50
44
|
"@tanstack/react-table": "^8.11.6",
|
|
51
45
|
"autoprefixer": "10.4.17",
|
|
52
|
-
"
|
|
53
|
-
"dayjs": "^1.11.9",
|
|
46
|
+
"dayjs": "^1.11.13",
|
|
54
47
|
"formik": "^2.4.3",
|
|
55
|
-
"git": "^0.1.5",
|
|
56
|
-
"i18next": "^23.4.1",
|
|
57
48
|
"lodash": "^4.17.21",
|
|
58
49
|
"moment": "^2.29.4",
|
|
59
50
|
"postcss": "8.4.31",
|
|
60
|
-
"react": "18.3.1",
|
|
61
|
-
"react-dom": "18.3.1",
|
|
62
51
|
"react-dropzone": "^14.2.3",
|
|
63
52
|
"react-geosuggest": "^2.14.1",
|
|
64
|
-
"react-i18next": "^15.0.0",
|
|
65
|
-
"react-query": "^3.39.3",
|
|
66
53
|
"react-tailwindcss-datepicker": "^1.6.6",
|
|
67
54
|
"react-tailwindcss-select": "^1.8.5",
|
|
68
55
|
"tailwindcss": "3.4.4",
|
|
69
|
-
"typescript": "5.
|
|
56
|
+
"typescript": "5.6.2",
|
|
70
57
|
"uuid": "^10.0.0",
|
|
71
58
|
"xlsx": "^0.18.5",
|
|
72
59
|
"yup": "^1.2.0"
|
|
73
60
|
},
|
|
74
61
|
"devDependencies": {
|
|
75
|
-
"@
|
|
76
|
-
"@
|
|
77
|
-
"@
|
|
78
|
-
"@
|
|
79
|
-
"@
|
|
80
|
-
"@storybook/addon-
|
|
81
|
-
"@storybook/
|
|
82
|
-
"@storybook/
|
|
83
|
-
"@storybook/
|
|
62
|
+
"@eslint/compat": "^1.1.1",
|
|
63
|
+
"@eslint/js": "^9.10.0",
|
|
64
|
+
"@parcel/packager-ts": "2.12.0",
|
|
65
|
+
"@parcel/transformer-typescript-tsc": "^2.12.0",
|
|
66
|
+
"@parcel/transformer-typescript-types": "2.12.0",
|
|
67
|
+
"@storybook/addon-essentials": "^8.3.1",
|
|
68
|
+
"@storybook/addon-interactions": "^8.3.1",
|
|
69
|
+
"@storybook/addon-links": "^8.3.1",
|
|
70
|
+
"@storybook/blocks": "^8.3.1",
|
|
71
|
+
"@storybook/nextjs": "^8.3.1",
|
|
72
|
+
"@storybook/react": "^8.3.1",
|
|
84
73
|
"@storybook/testing-library": "^0.2.0",
|
|
85
74
|
"@types/lodash": "^4.14.196",
|
|
86
|
-
"@types/negotiator": "^0.6.1",
|
|
87
|
-
"@types/node": "22.5.4",
|
|
88
75
|
"@types/react": "18.3.3",
|
|
89
76
|
"@types/react-dom": "18.3.0",
|
|
90
77
|
"@types/react-geosuggest": "^2.7.16",
|
|
91
78
|
"@types/uuid": "^10.0.0",
|
|
92
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
93
|
-
"@typescript-eslint/parser": "^8.
|
|
94
|
-
"eslint": "
|
|
95
|
-
"eslint-config-next": "14.2.4",
|
|
79
|
+
"@typescript-eslint/eslint-plugin": "^8.6.0",
|
|
80
|
+
"@typescript-eslint/parser": "^8.6.0",
|
|
81
|
+
"eslint": "^9.10.0",
|
|
96
82
|
"eslint-config-prettier": "^9.1.0",
|
|
97
|
-
"eslint-plugin-import": "^2.
|
|
98
|
-
"eslint-plugin-prettier": "^5.
|
|
83
|
+
"eslint-plugin-import": "^2.30.0",
|
|
84
|
+
"eslint-plugin-prettier": "^5.2.1",
|
|
85
|
+
"eslint-plugin-react-hooks": "5.1.0-rc-f2df5694-20240916",
|
|
99
86
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
100
87
|
"eslint-plugin-storybook": "^0.8.0",
|
|
101
|
-
"next": "^14.2.
|
|
88
|
+
"next": "^14.2.11",
|
|
89
|
+
"parcel": "^2.12.0",
|
|
102
90
|
"prettier": "^3.0.0",
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
"
|
|
107
|
-
"rollup-plugin-postcss": "^4.0.2",
|
|
108
|
-
"rollup-plugin-typescript2": "^0.36.0",
|
|
109
|
-
"storybook": "^8.1.6",
|
|
110
|
-
"webpack": "^5.92.1"
|
|
91
|
+
"react": "^18.3.1",
|
|
92
|
+
"react-dom": "^18.3.1",
|
|
93
|
+
"storybook": "^8.3.1",
|
|
94
|
+
"webpack": "^5.94.0"
|
|
111
95
|
},
|
|
112
96
|
"peerDependencies": {
|
|
113
|
-
"
|
|
114
|
-
"
|
|
115
|
-
"@fortawesome/fontawesome-svg-core": "^6.4.2",
|
|
116
|
-
"@fortawesome/free-brands-svg-icons": "^6.4.2",
|
|
117
|
-
"@fortawesome/free-regular-svg-icons": "^6.4.2",
|
|
118
|
-
"@fortawesome/free-solid-svg-icons": "^6.4.2",
|
|
119
|
-
"@fortawesome/pro-duotone-svg-icons": "^6.4.2",
|
|
120
|
-
"@fortawesome/pro-light-svg-icons": "^6.4.2",
|
|
121
|
-
"@fortawesome/pro-regular-svg-icons": "^6.4.2",
|
|
122
|
-
"@fortawesome/pro-solid-svg-icons": "^6.4.2",
|
|
123
|
-
"@fortawesome/pro-thin-svg-icons": "^6.4.2",
|
|
124
|
-
"@fortawesome/react-fontawesome": "^0.2.0",
|
|
125
|
-
"@fortawesome/sharp-regular-svg-icons": "^6.4.2",
|
|
126
|
-
"@fortawesome/sharp-solid-svg-icons": "^6.4.2",
|
|
127
|
-
"@headlessui/react": "^2.1.2",
|
|
128
|
-
"@heroicons/react": "^2.0.18",
|
|
129
|
-
"@react-input/mask": "^1.0.20",
|
|
130
|
-
"@tailwindcss/forms": "^0.5.6",
|
|
131
|
-
"@tanstack/react-table": "^8.9.3",
|
|
132
|
-
"date-fns": "^2.30.0",
|
|
133
|
-
"dayjs": "^1.11.9",
|
|
134
|
-
"formik": "^2.4.3",
|
|
135
|
-
"i18next": "^23.4.1",
|
|
136
|
-
"lodash": "^4.17.21",
|
|
137
|
-
"postcss": "8.4.31",
|
|
138
|
-
"react": "18.3.1",
|
|
139
|
-
"react-dom": "18.3.1",
|
|
140
|
-
"react-i18next": "^15.0.0",
|
|
141
|
-
"react-query": "^3.39.3",
|
|
142
|
-
"react-tailwindcss-datepicker": "^1.6.6",
|
|
143
|
-
"react-tailwindcss-select": "^1.8.5",
|
|
144
|
-
"tailwindcss": "3.4.4",
|
|
145
|
-
"typescript": "5.5.3",
|
|
146
|
-
"uuid": "^10.0.0",
|
|
147
|
-
"xlsx": "^0.18.5",
|
|
148
|
-
"yup": "^1.2.0"
|
|
97
|
+
"react": "^18.3.1",
|
|
98
|
+
"react-dom": "^18.3.1"
|
|
149
99
|
},
|
|
150
100
|
"packageManager": "yarn@4.3.1"
|
|
151
101
|
}
|