@knkcs/anker 0.0.1
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/LICENSE +30 -0
- package/README.md +129 -0
- package/dist/atoms/index.d.ts +536 -0
- package/dist/atoms/index.js +845 -0
- package/dist/atoms/index.js.map +1 -0
- package/dist/avatar-DhqkKdqc.d.ts +29 -0
- package/dist/chunk-4D3EY2W2.js +1628 -0
- package/dist/chunk-4D3EY2W2.js.map +1 -0
- package/dist/chunk-4T32UC26.js +81 -0
- package/dist/chunk-4T32UC26.js.map +1 -0
- package/dist/chunk-FGKGX4UF.js +36 -0
- package/dist/chunk-FGKGX4UF.js.map +1 -0
- package/dist/chunk-PZCL4M6I.js +62 -0
- package/dist/chunk-PZCL4M6I.js.map +1 -0
- package/dist/chunk-QSCNXHMU.js +32 -0
- package/dist/chunk-QSCNXHMU.js.map +1 -0
- package/dist/chunk-RJPEVNMJ.js +23 -0
- package/dist/chunk-RJPEVNMJ.js.map +1 -0
- package/dist/chunk-YXTW5OAJ.js +303 -0
- package/dist/chunk-YXTW5OAJ.js.map +1 -0
- package/dist/components/index.d.ts +413 -0
- package/dist/components/index.js +982 -0
- package/dist/components/index.js.map +1 -0
- package/dist/feedback/index.d.ts +27 -0
- package/dist/feedback/index.js +100 -0
- package/dist/feedback/index.js.map +1 -0
- package/dist/forms/index.d.ts +272 -0
- package/dist/forms/index.js +947 -0
- package/dist/forms/index.js.map +1 -0
- package/dist/number-input-D2X0rWOg.d.ts +18 -0
- package/dist/primitives/index.d.ts +396 -0
- package/dist/primitives/index.js +478 -0
- package/dist/primitives/index.js.map +1 -0
- package/dist/search-input-C_Cl2OEx.d.ts +17 -0
- package/dist/switch-B0o6G2XE.d.ts +28 -0
- package/dist/theme/index.d.ts +496 -0
- package/dist/theme/index.js +3 -0
- package/dist/theme/index.js.map +1 -0
- package/package.json +96 -0
|
@@ -0,0 +1,496 @@
|
|
|
1
|
+
import * as _chakra_ui_react from '@chakra-ui/react';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Motion tokens for consistent animation timing across components.
|
|
5
|
+
*/
|
|
6
|
+
declare const durations: {
|
|
7
|
+
fast: {
|
|
8
|
+
value: string;
|
|
9
|
+
};
|
|
10
|
+
normal: {
|
|
11
|
+
value: string;
|
|
12
|
+
};
|
|
13
|
+
slow: {
|
|
14
|
+
value: string;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
declare const easings: {
|
|
18
|
+
"ease-in": {
|
|
19
|
+
value: string;
|
|
20
|
+
};
|
|
21
|
+
"ease-out": {
|
|
22
|
+
value: string;
|
|
23
|
+
};
|
|
24
|
+
"ease-in-out": {
|
|
25
|
+
value: string;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Raw color scales for the design system.
|
|
31
|
+
*
|
|
32
|
+
* `primary` is the UI blue (optimized for web contrast/readability),
|
|
33
|
+
* `secondary` is the brand orange (anchored to brand guideline #e9580c),
|
|
34
|
+
* `gray` is a blue-tinted gray scale, and `brand` contains the exact
|
|
35
|
+
* hex values from the knk Brand Guidelines (October 2021) for use in
|
|
36
|
+
* branding elements like headers, logos, and about pages.
|
|
37
|
+
*
|
|
38
|
+
* NOTE: The primary UI blue (#2087d7) intentionally differs from the brand
|
|
39
|
+
* guideline blue (#004576). The brand blue is a deep navy designed for print;
|
|
40
|
+
* the UI blue is brighter for web accessibility and matches the existing Core app.
|
|
41
|
+
*/
|
|
42
|
+
declare const colors: {
|
|
43
|
+
primary: {
|
|
44
|
+
"50": {
|
|
45
|
+
value: string;
|
|
46
|
+
};
|
|
47
|
+
"100": {
|
|
48
|
+
value: string;
|
|
49
|
+
};
|
|
50
|
+
"200": {
|
|
51
|
+
value: string;
|
|
52
|
+
};
|
|
53
|
+
"300": {
|
|
54
|
+
value: string;
|
|
55
|
+
};
|
|
56
|
+
"400": {
|
|
57
|
+
value: string;
|
|
58
|
+
};
|
|
59
|
+
"500": {
|
|
60
|
+
value: string;
|
|
61
|
+
};
|
|
62
|
+
"600": {
|
|
63
|
+
value: string;
|
|
64
|
+
};
|
|
65
|
+
"700": {
|
|
66
|
+
value: string;
|
|
67
|
+
};
|
|
68
|
+
"800": {
|
|
69
|
+
value: string;
|
|
70
|
+
};
|
|
71
|
+
"900": {
|
|
72
|
+
value: string;
|
|
73
|
+
};
|
|
74
|
+
"950": {
|
|
75
|
+
value: string;
|
|
76
|
+
};
|
|
77
|
+
};
|
|
78
|
+
secondary: {
|
|
79
|
+
"50": {
|
|
80
|
+
value: string;
|
|
81
|
+
};
|
|
82
|
+
"100": {
|
|
83
|
+
value: string;
|
|
84
|
+
};
|
|
85
|
+
"200": {
|
|
86
|
+
value: string;
|
|
87
|
+
};
|
|
88
|
+
"300": {
|
|
89
|
+
value: string;
|
|
90
|
+
};
|
|
91
|
+
"400": {
|
|
92
|
+
value: string;
|
|
93
|
+
};
|
|
94
|
+
"500": {
|
|
95
|
+
value: string;
|
|
96
|
+
};
|
|
97
|
+
"600": {
|
|
98
|
+
value: string;
|
|
99
|
+
};
|
|
100
|
+
"700": {
|
|
101
|
+
value: string;
|
|
102
|
+
};
|
|
103
|
+
"800": {
|
|
104
|
+
value: string;
|
|
105
|
+
};
|
|
106
|
+
"900": {
|
|
107
|
+
value: string;
|
|
108
|
+
};
|
|
109
|
+
};
|
|
110
|
+
brand: {
|
|
111
|
+
blue: {
|
|
112
|
+
value: string;
|
|
113
|
+
};
|
|
114
|
+
navy: {
|
|
115
|
+
value: string;
|
|
116
|
+
};
|
|
117
|
+
"light-blue": {
|
|
118
|
+
value: string;
|
|
119
|
+
};
|
|
120
|
+
orange: {
|
|
121
|
+
value: string;
|
|
122
|
+
};
|
|
123
|
+
gold: {
|
|
124
|
+
value: string;
|
|
125
|
+
};
|
|
126
|
+
"light-gray": {
|
|
127
|
+
value: string;
|
|
128
|
+
};
|
|
129
|
+
};
|
|
130
|
+
gray: {
|
|
131
|
+
"50": {
|
|
132
|
+
value: string;
|
|
133
|
+
};
|
|
134
|
+
"100": {
|
|
135
|
+
value: string;
|
|
136
|
+
};
|
|
137
|
+
"200": {
|
|
138
|
+
value: string;
|
|
139
|
+
};
|
|
140
|
+
"300": {
|
|
141
|
+
value: string;
|
|
142
|
+
};
|
|
143
|
+
"400": {
|
|
144
|
+
value: string;
|
|
145
|
+
};
|
|
146
|
+
"500": {
|
|
147
|
+
value: string;
|
|
148
|
+
};
|
|
149
|
+
"600": {
|
|
150
|
+
value: string;
|
|
151
|
+
};
|
|
152
|
+
"700": {
|
|
153
|
+
value: string;
|
|
154
|
+
};
|
|
155
|
+
"800": {
|
|
156
|
+
value: string;
|
|
157
|
+
};
|
|
158
|
+
"900": {
|
|
159
|
+
value: string;
|
|
160
|
+
};
|
|
161
|
+
};
|
|
162
|
+
};
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
* Border-radius tokens.
|
|
166
|
+
*
|
|
167
|
+
* Bumped for a more modern, rounded feel.
|
|
168
|
+
* Previous: sm=0.25, md=0.375, lg=0.5, xl=0.75, 2xl=1
|
|
169
|
+
*/
|
|
170
|
+
declare const radii: {
|
|
171
|
+
sm: string;
|
|
172
|
+
md: string;
|
|
173
|
+
lg: string;
|
|
174
|
+
xl: string;
|
|
175
|
+
"2xl": string;
|
|
176
|
+
};
|
|
177
|
+
|
|
178
|
+
/**
|
|
179
|
+
* Semantic tokens for colors and shadows.
|
|
180
|
+
*
|
|
181
|
+
* These map abstract names (bg-canvas, accent, border, etc.) to raw color
|
|
182
|
+
* scale values, with automatic light/dark mode variants.
|
|
183
|
+
*
|
|
184
|
+
* Shadows are consolidated here from the legacy `foundations/shadows.ts`
|
|
185
|
+
* (static strings) and `foundations/tokens.ts` (responsive token objects).
|
|
186
|
+
* Only the token-based system is kept.
|
|
187
|
+
*/
|
|
188
|
+
declare const semanticTokens: {
|
|
189
|
+
colors: {
|
|
190
|
+
"bg-canvas": {
|
|
191
|
+
value: {
|
|
192
|
+
base: string;
|
|
193
|
+
_dark: string;
|
|
194
|
+
};
|
|
195
|
+
};
|
|
196
|
+
"bg-surface": {
|
|
197
|
+
value: {
|
|
198
|
+
base: string;
|
|
199
|
+
_dark: string;
|
|
200
|
+
};
|
|
201
|
+
};
|
|
202
|
+
"bg-subtle": {
|
|
203
|
+
value: {
|
|
204
|
+
base: string;
|
|
205
|
+
_dark: string;
|
|
206
|
+
};
|
|
207
|
+
};
|
|
208
|
+
"bg-muted": {
|
|
209
|
+
value: {
|
|
210
|
+
base: string;
|
|
211
|
+
_dark: string;
|
|
212
|
+
};
|
|
213
|
+
};
|
|
214
|
+
default: {
|
|
215
|
+
value: {
|
|
216
|
+
base: string;
|
|
217
|
+
_dark: string;
|
|
218
|
+
};
|
|
219
|
+
};
|
|
220
|
+
inverted: {
|
|
221
|
+
value: {
|
|
222
|
+
base: string;
|
|
223
|
+
_dark: string;
|
|
224
|
+
};
|
|
225
|
+
};
|
|
226
|
+
emphasized: {
|
|
227
|
+
value: {
|
|
228
|
+
base: string;
|
|
229
|
+
_dark: string;
|
|
230
|
+
};
|
|
231
|
+
};
|
|
232
|
+
muted: {
|
|
233
|
+
value: {
|
|
234
|
+
base: string;
|
|
235
|
+
_dark: string;
|
|
236
|
+
};
|
|
237
|
+
};
|
|
238
|
+
subtle: {
|
|
239
|
+
value: {
|
|
240
|
+
base: string;
|
|
241
|
+
_dark: string;
|
|
242
|
+
};
|
|
243
|
+
};
|
|
244
|
+
border: {
|
|
245
|
+
value: {
|
|
246
|
+
base: string;
|
|
247
|
+
_dark: string;
|
|
248
|
+
};
|
|
249
|
+
};
|
|
250
|
+
accent: {
|
|
251
|
+
value: {
|
|
252
|
+
base: string;
|
|
253
|
+
_dark: string;
|
|
254
|
+
};
|
|
255
|
+
};
|
|
256
|
+
success: {
|
|
257
|
+
value: {
|
|
258
|
+
base: string;
|
|
259
|
+
_dark: string;
|
|
260
|
+
};
|
|
261
|
+
};
|
|
262
|
+
error: {
|
|
263
|
+
value: {
|
|
264
|
+
base: string;
|
|
265
|
+
_dark: string;
|
|
266
|
+
};
|
|
267
|
+
};
|
|
268
|
+
primary: {
|
|
269
|
+
contrast: {
|
|
270
|
+
value: {
|
|
271
|
+
base: string;
|
|
272
|
+
_dark: string;
|
|
273
|
+
};
|
|
274
|
+
};
|
|
275
|
+
fg: {
|
|
276
|
+
value: {
|
|
277
|
+
base: string;
|
|
278
|
+
_dark: string;
|
|
279
|
+
};
|
|
280
|
+
};
|
|
281
|
+
subtle: {
|
|
282
|
+
value: {
|
|
283
|
+
base: string;
|
|
284
|
+
_dark: string;
|
|
285
|
+
};
|
|
286
|
+
};
|
|
287
|
+
muted: {
|
|
288
|
+
value: {
|
|
289
|
+
base: string;
|
|
290
|
+
_dark: string;
|
|
291
|
+
};
|
|
292
|
+
};
|
|
293
|
+
emphasized: {
|
|
294
|
+
value: {
|
|
295
|
+
base: string;
|
|
296
|
+
_dark: string;
|
|
297
|
+
};
|
|
298
|
+
};
|
|
299
|
+
solid: {
|
|
300
|
+
value: {
|
|
301
|
+
base: string;
|
|
302
|
+
_dark: string;
|
|
303
|
+
};
|
|
304
|
+
};
|
|
305
|
+
focusRing: {
|
|
306
|
+
value: {
|
|
307
|
+
base: string;
|
|
308
|
+
_dark: string;
|
|
309
|
+
};
|
|
310
|
+
};
|
|
311
|
+
border: {
|
|
312
|
+
value: {
|
|
313
|
+
base: string;
|
|
314
|
+
_dark: string;
|
|
315
|
+
};
|
|
316
|
+
};
|
|
317
|
+
};
|
|
318
|
+
"bg-accent": {
|
|
319
|
+
value: string;
|
|
320
|
+
};
|
|
321
|
+
"bg-accent-subtle": {
|
|
322
|
+
value: string;
|
|
323
|
+
};
|
|
324
|
+
"bg-accent-muted": {
|
|
325
|
+
value: string;
|
|
326
|
+
};
|
|
327
|
+
"on-accent": {
|
|
328
|
+
value: string;
|
|
329
|
+
};
|
|
330
|
+
"on-accent-muted": {
|
|
331
|
+
value: string;
|
|
332
|
+
};
|
|
333
|
+
"on-accent-subtle": {
|
|
334
|
+
value: string;
|
|
335
|
+
};
|
|
336
|
+
};
|
|
337
|
+
shadows: {
|
|
338
|
+
xs: {
|
|
339
|
+
value: {
|
|
340
|
+
base: string;
|
|
341
|
+
_dark: string;
|
|
342
|
+
};
|
|
343
|
+
};
|
|
344
|
+
sm: {
|
|
345
|
+
value: {
|
|
346
|
+
base: string;
|
|
347
|
+
_dark: string;
|
|
348
|
+
};
|
|
349
|
+
};
|
|
350
|
+
md: {
|
|
351
|
+
value: {
|
|
352
|
+
base: string;
|
|
353
|
+
_dark: string;
|
|
354
|
+
};
|
|
355
|
+
};
|
|
356
|
+
lg: {
|
|
357
|
+
value: {
|
|
358
|
+
base: string;
|
|
359
|
+
_dark: string;
|
|
360
|
+
};
|
|
361
|
+
};
|
|
362
|
+
xl: {
|
|
363
|
+
value: {
|
|
364
|
+
base: string;
|
|
365
|
+
_dark: string;
|
|
366
|
+
};
|
|
367
|
+
};
|
|
368
|
+
};
|
|
369
|
+
opacity: {
|
|
370
|
+
disabled: {
|
|
371
|
+
value: number;
|
|
372
|
+
};
|
|
373
|
+
readOnly: {
|
|
374
|
+
value: number;
|
|
375
|
+
};
|
|
376
|
+
};
|
|
377
|
+
};
|
|
378
|
+
|
|
379
|
+
/**
|
|
380
|
+
* Custom spacing additions that extend the Chakra default scale.
|
|
381
|
+
*/
|
|
382
|
+
declare const space: {
|
|
383
|
+
"1.5": string;
|
|
384
|
+
"2.5": string;
|
|
385
|
+
"3.5": string;
|
|
386
|
+
"4.5": string;
|
|
387
|
+
};
|
|
388
|
+
|
|
389
|
+
/**
|
|
390
|
+
* Font families and text style presets.
|
|
391
|
+
*
|
|
392
|
+
* Merged from the Core monolith's `foundations/fonts.ts` and
|
|
393
|
+
* `foundations/text-styles.ts` into a single module.
|
|
394
|
+
*/
|
|
395
|
+
declare const fonts: {
|
|
396
|
+
heading: string;
|
|
397
|
+
body: string;
|
|
398
|
+
};
|
|
399
|
+
declare const textStyles: {
|
|
400
|
+
"7xl": {
|
|
401
|
+
fontSize: string;
|
|
402
|
+
lineHeight: string;
|
|
403
|
+
letterSpacing: string;
|
|
404
|
+
};
|
|
405
|
+
"6xl": {
|
|
406
|
+
fontSize: string;
|
|
407
|
+
lineHeight: string;
|
|
408
|
+
letterSpacing: string;
|
|
409
|
+
};
|
|
410
|
+
"5xl": {
|
|
411
|
+
fontSize: string;
|
|
412
|
+
lineHeight: string;
|
|
413
|
+
letterSpacing: string;
|
|
414
|
+
};
|
|
415
|
+
"4xl": {
|
|
416
|
+
fontSize: string;
|
|
417
|
+
lineHeight: string;
|
|
418
|
+
letterSpacing: string;
|
|
419
|
+
};
|
|
420
|
+
"3xl": {
|
|
421
|
+
fontSize: string;
|
|
422
|
+
lineHeight: string;
|
|
423
|
+
};
|
|
424
|
+
"2xl": {
|
|
425
|
+
fontSize: string;
|
|
426
|
+
lineHeight: string;
|
|
427
|
+
};
|
|
428
|
+
xl: {
|
|
429
|
+
fontSize: string;
|
|
430
|
+
lineHeight: string;
|
|
431
|
+
};
|
|
432
|
+
lg: {
|
|
433
|
+
fontSize: string;
|
|
434
|
+
lineHeight: string;
|
|
435
|
+
};
|
|
436
|
+
md: {
|
|
437
|
+
fontSize: string;
|
|
438
|
+
lineHeight: string;
|
|
439
|
+
};
|
|
440
|
+
sm: {
|
|
441
|
+
fontSize: string;
|
|
442
|
+
lineHeight: string;
|
|
443
|
+
};
|
|
444
|
+
xs: {
|
|
445
|
+
fontSize: string;
|
|
446
|
+
lineHeight: string;
|
|
447
|
+
};
|
|
448
|
+
};
|
|
449
|
+
|
|
450
|
+
/**
|
|
451
|
+
* Z-index scale for consistent stacking order.
|
|
452
|
+
*
|
|
453
|
+
* dropdown < sticky < overlay < modal < popover < toast
|
|
454
|
+
*/
|
|
455
|
+
declare const zIndex: {
|
|
456
|
+
dropdown: {
|
|
457
|
+
value: number;
|
|
458
|
+
};
|
|
459
|
+
sticky: {
|
|
460
|
+
value: number;
|
|
461
|
+
};
|
|
462
|
+
overlay: {
|
|
463
|
+
value: number;
|
|
464
|
+
};
|
|
465
|
+
modal: {
|
|
466
|
+
value: number;
|
|
467
|
+
};
|
|
468
|
+
popover: {
|
|
469
|
+
value: number;
|
|
470
|
+
};
|
|
471
|
+
toast: {
|
|
472
|
+
value: number;
|
|
473
|
+
};
|
|
474
|
+
};
|
|
475
|
+
|
|
476
|
+
type Dict = {
|
|
477
|
+
[key: string]: unknown;
|
|
478
|
+
};
|
|
479
|
+
/**
|
|
480
|
+
* Get the color raw value from theme
|
|
481
|
+
* @param theme - the theme object
|
|
482
|
+
* @param color - the color path ("green.200")
|
|
483
|
+
* @param fallback - the fallback color
|
|
484
|
+
*/
|
|
485
|
+
declare const getColor: (theme: Dict, color: string, fallback?: string) => string;
|
|
486
|
+
/**
|
|
487
|
+
* Make a color transparent
|
|
488
|
+
* @param color - the color in hex, rgb, or hsl
|
|
489
|
+
* @param opacity - the amount of opacity the color should have (0-1)
|
|
490
|
+
*/
|
|
491
|
+
declare const transparentize: (color: string, opacity: number) => (theme: Dict) => string;
|
|
492
|
+
|
|
493
|
+
declare const system: _chakra_ui_react.SystemContext;
|
|
494
|
+
type CustomTheme = typeof system;
|
|
495
|
+
|
|
496
|
+
export { type CustomTheme, colors, system as default, durations, easings, fonts, getColor, radii, semanticTokens, space, textStyles, transparentize, zIndex };
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export { colors_default as colors, theme_default as default, durations, easings, fonts, getColor, radii_default as radii, semantic_default as semanticTokens, spacing_default as space, textStyles, transparentize, z_index_default as zIndex } from '../chunk-4D3EY2W2.js';
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
3
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.js"}
|
package/package.json
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@knkcs/anker",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "UI component library for the knk software group",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
"./theme": {
|
|
11
|
+
"import": "./dist/theme/index.js",
|
|
12
|
+
"types": "./dist/theme/index.d.ts"
|
|
13
|
+
},
|
|
14
|
+
"./primitives": {
|
|
15
|
+
"import": "./dist/primitives/index.js",
|
|
16
|
+
"types": "./dist/primitives/index.d.ts"
|
|
17
|
+
},
|
|
18
|
+
"./components": {
|
|
19
|
+
"import": "./dist/components/index.js",
|
|
20
|
+
"types": "./dist/components/index.d.ts"
|
|
21
|
+
},
|
|
22
|
+
"./atoms": {
|
|
23
|
+
"import": "./dist/atoms/index.js",
|
|
24
|
+
"types": "./dist/atoms/index.d.ts"
|
|
25
|
+
},
|
|
26
|
+
"./forms": {
|
|
27
|
+
"import": "./dist/forms/index.js",
|
|
28
|
+
"types": "./dist/forms/index.d.ts"
|
|
29
|
+
},
|
|
30
|
+
"./feedback": {
|
|
31
|
+
"import": "./dist/feedback/index.js",
|
|
32
|
+
"types": "./dist/feedback/index.d.ts"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"files": [
|
|
36
|
+
"dist"
|
|
37
|
+
],
|
|
38
|
+
"scripts": {
|
|
39
|
+
"dev": "storybook dev -p 6006",
|
|
40
|
+
"build": "tsup",
|
|
41
|
+
"build:storybook": "storybook build",
|
|
42
|
+
"lint": "biome check src",
|
|
43
|
+
"lint:write": "biome check src --write",
|
|
44
|
+
"typecheck": "tsc --noEmit",
|
|
45
|
+
"test": "vitest run",
|
|
46
|
+
"test:watch": "vitest",
|
|
47
|
+
"prepublishOnly": "npm run build"
|
|
48
|
+
},
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"@chakra-ui/react": "^3.0.0",
|
|
51
|
+
"@hookform/resolvers": "^3.0.0",
|
|
52
|
+
"@tanstack/react-table": "^8.0.0",
|
|
53
|
+
"react": ">=18",
|
|
54
|
+
"react-dom": ">=18",
|
|
55
|
+
"react-hook-form": "^7.0.0",
|
|
56
|
+
"react-i18next": ">=12",
|
|
57
|
+
"react-router-dom": "^6.0.0",
|
|
58
|
+
"zod": "^3.0.0"
|
|
59
|
+
},
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"chakra-react-select": "^6.0.0",
|
|
62
|
+
"color2k": "^2.0.0",
|
|
63
|
+
"dayjs": "^1.11.0",
|
|
64
|
+
"lodash.debounce": "^4.0.0",
|
|
65
|
+
"lucide-react": "^0.400.0",
|
|
66
|
+
"next-themes": "^0.4.0"
|
|
67
|
+
},
|
|
68
|
+
"devDependencies": {
|
|
69
|
+
"@biomejs/biome": "^2.2.0",
|
|
70
|
+
"@chakra-ui/react": "^3.33.0",
|
|
71
|
+
"@hookform/resolvers": "^3.9.0",
|
|
72
|
+
"@storybook/addon-a11y": "^8.4.0",
|
|
73
|
+
"@storybook/addon-essentials": "^8.4.0",
|
|
74
|
+
"@storybook/blocks": "^8.4.0",
|
|
75
|
+
"@storybook/react": "^8.4.0",
|
|
76
|
+
"@storybook/react-vite": "^8.4.0",
|
|
77
|
+
"@tanstack/react-table": "^8.20.0",
|
|
78
|
+
"@testing-library/jest-dom": "^6.0.0",
|
|
79
|
+
"@testing-library/react": "^16.0.0",
|
|
80
|
+
"@types/lodash.debounce": "^4.0.9",
|
|
81
|
+
"i18next": "^23.0.0",
|
|
82
|
+
"jsdom": "^25.0.0",
|
|
83
|
+
"react": "^19.0.0",
|
|
84
|
+
"react-dom": "^19.0.0",
|
|
85
|
+
"react-hook-form": "^7.54.0",
|
|
86
|
+
"react-i18next": "^14.0.0",
|
|
87
|
+
"react-router-dom": "^6.28.0",
|
|
88
|
+
"remark-gfm": "^4.0.0",
|
|
89
|
+
"storybook": "^8.4.0",
|
|
90
|
+
"tsup": "^8.3.0",
|
|
91
|
+
"typescript": "^5.7.0",
|
|
92
|
+
"vitest": "^3.0.0",
|
|
93
|
+
"zod": "^3.23.0"
|
|
94
|
+
},
|
|
95
|
+
"license": "SEE LICENSE IN LICENSE"
|
|
96
|
+
}
|