@exyconn/common 2.0.0 → 2.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/client/index.d.mts +2 -1
- package/dist/client/index.d.ts +2 -1
- package/dist/client/index.js +2693 -19
- package/dist/client/index.js.map +1 -1
- package/dist/client/index.mjs +2634 -21
- package/dist/client/index.mjs.map +1 -1
- package/dist/index-BcxL4_V4.d.ts +2946 -0
- package/dist/index-bvvCev9Q.d.mts +2946 -0
- package/dist/index.d.mts +14 -163
- package/dist/index.d.ts +14 -163
- package/dist/index.js +2701 -27
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2683 -28
- package/dist/index.mjs.map +1 -1
- package/package.json +33 -3
- package/dist/index-BLltj-zN.d.ts +0 -1236
- package/dist/index-CIUdLBjA.d.mts +0 -1236
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exyconn/common",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "Common utilities shared across all Exyconn projects - includes server utilities, client hooks, shared types, data modules, and validation helpers",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -120,6 +120,26 @@
|
|
|
120
120
|
"import": "./dist/data/logos.mjs",
|
|
121
121
|
"require": "./dist/data/logos.js",
|
|
122
122
|
"types": "./dist/data/logos.d.ts"
|
|
123
|
+
},
|
|
124
|
+
"./client/web": {
|
|
125
|
+
"import": "./dist/client/web/index.mjs",
|
|
126
|
+
"require": "./dist/client/web/index.js",
|
|
127
|
+
"types": "./dist/client/web/index.d.ts"
|
|
128
|
+
},
|
|
129
|
+
"./client/web/theme": {
|
|
130
|
+
"import": "./dist/client/web/theme/index.mjs",
|
|
131
|
+
"require": "./dist/client/web/theme/index.js",
|
|
132
|
+
"types": "./dist/client/web/theme/index.d.ts"
|
|
133
|
+
},
|
|
134
|
+
"./client/web/astro": {
|
|
135
|
+
"import": "./dist/client/web/astro/index.mjs",
|
|
136
|
+
"require": "./dist/client/web/astro/index.js",
|
|
137
|
+
"types": "./dist/client/web/astro/index.d.ts"
|
|
138
|
+
},
|
|
139
|
+
"./client/web/forms": {
|
|
140
|
+
"import": "./dist/client/web/forms/index.mjs",
|
|
141
|
+
"require": "./dist/client/web/forms/index.js",
|
|
142
|
+
"types": "./dist/client/web/forms/index.d.ts"
|
|
123
143
|
}
|
|
124
144
|
},
|
|
125
145
|
"scripts": {
|
|
@@ -154,24 +174,28 @@
|
|
|
154
174
|
"date-fns": "^3.0.0",
|
|
155
175
|
"date-fns-tz": "^3.0.0",
|
|
156
176
|
"express": "^4.18.0",
|
|
177
|
+
"formik": "^2.4.0",
|
|
157
178
|
"jsonwebtoken": "^9.0.0",
|
|
158
179
|
"mongoose": "^8.0.0",
|
|
159
180
|
"react": "^18.2.0",
|
|
160
181
|
"tsup": "^8.0.1",
|
|
161
182
|
"typescript": "^5.3.0",
|
|
162
183
|
"winston": "^3.11.0",
|
|
163
|
-
"winston-daily-rotate-file": "^4.7.0"
|
|
184
|
+
"winston-daily-rotate-file": "^4.7.0",
|
|
185
|
+
"yup": "^1.4.0"
|
|
164
186
|
},
|
|
165
187
|
"peerDependencies": {
|
|
166
188
|
"axios": "^1.6.0",
|
|
167
189
|
"date-fns": "^3.0.0",
|
|
168
190
|
"date-fns-tz": "^3.0.0",
|
|
169
191
|
"express": "^4.18.0 || ^5.0.0",
|
|
192
|
+
"formik": "^2.4.0",
|
|
170
193
|
"jsonwebtoken": "^9.0.0",
|
|
171
194
|
"mongoose": "^8.0.0",
|
|
172
195
|
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
173
196
|
"winston": "^3.11.0",
|
|
174
|
-
"winston-daily-rotate-file": "^4.7.0"
|
|
197
|
+
"winston-daily-rotate-file": "^4.7.0",
|
|
198
|
+
"yup": "^1.4.0"
|
|
175
199
|
},
|
|
176
200
|
"peerDependenciesMeta": {
|
|
177
201
|
"axios": {
|
|
@@ -200,6 +224,12 @@
|
|
|
200
224
|
},
|
|
201
225
|
"winston-daily-rotate-file": {
|
|
202
226
|
"optional": true
|
|
227
|
+
},
|
|
228
|
+
"formik": {
|
|
229
|
+
"optional": true
|
|
230
|
+
},
|
|
231
|
+
"yup": {
|
|
232
|
+
"optional": true
|
|
203
233
|
}
|
|
204
234
|
},
|
|
205
235
|
"files": [
|