@ballistix.digital/react-components 4.4.1 → 4.5.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/dist/index.d.ts +1358 -616
- package/dist/index.d.ts.map +1 -0
- package/dist/index.esm.js +5794 -14413
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +5809 -14421
- 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/dist/index.d.ts
CHANGED
|
@@ -1,21 +1,13 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import { DragEndEvent } from '@dnd-kit/core';
|
|
12
|
-
export { createColumnHelper } from 'helpers/table';
|
|
13
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
14
|
-
import { Option, SelectValue } from 'react-tailwindcss-select/dist/components/type';
|
|
15
|
-
export { fromSelectMenuOptionToStringValue } from 'helpers/format';
|
|
16
|
-
import { FormikProps, FormikValues, FormikContextType } from 'formik';
|
|
17
|
-
|
|
18
|
-
declare const base$s: {
|
|
1
|
+
import { IconName } from "@fortawesome/fontawesome-svg-core";
|
|
2
|
+
import { FC, ReactNode, RefObject, MouseEvent, ChangeEventHandler, FocusEventHandler, HTMLInputTypeAttribute, KeyboardEventHandler, MouseEventHandler, MutableRefObject, ChangeEvent, Dispatch, SetStateAction } from "react";
|
|
3
|
+
import { Option, SelectValue } from "react-tailwindcss-select/dist/components/type";
|
|
4
|
+
import { Table, ColumnDef, ColumnOrderState, SortingState, Row } from "@tanstack/react-table";
|
|
5
|
+
import { DragEndEvent } from "@dnd-kit/core";
|
|
6
|
+
import { FormikProps, FormikValues, FormikContextType } from "formik";
|
|
7
|
+
type DeepPartialType<T> = {
|
|
8
|
+
[P in keyof T]?: DeepPartialType<T[P]>;
|
|
9
|
+
};
|
|
10
|
+
declare const base: {
|
|
19
11
|
loading: string;
|
|
20
12
|
spinner: string;
|
|
21
13
|
empty: string;
|
|
@@ -23,27 +15,124 @@ declare const base$s: {
|
|
|
23
15
|
container: string;
|
|
24
16
|
indicator: string;
|
|
25
17
|
};
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
18
|
+
export const AvatarElement: {
|
|
19
|
+
base: {
|
|
20
|
+
loading: string;
|
|
21
|
+
spinner: string;
|
|
22
|
+
empty: string;
|
|
23
|
+
placeholder: string;
|
|
24
|
+
container: string;
|
|
25
|
+
indicator: string;
|
|
26
|
+
};
|
|
27
|
+
xs: DeepPartialType<{
|
|
28
|
+
loading: string;
|
|
29
|
+
spinner: string;
|
|
30
|
+
empty: string;
|
|
31
|
+
placeholder: string;
|
|
32
|
+
container: string;
|
|
33
|
+
indicator: string;
|
|
34
|
+
}>;
|
|
35
|
+
sm: DeepPartialType<{
|
|
36
|
+
loading: string;
|
|
37
|
+
spinner: string;
|
|
38
|
+
empty: string;
|
|
39
|
+
placeholder: string;
|
|
40
|
+
container: string;
|
|
41
|
+
indicator: string;
|
|
42
|
+
}>;
|
|
43
|
+
md: DeepPartialType<{
|
|
44
|
+
loading: string;
|
|
45
|
+
spinner: string;
|
|
46
|
+
empty: string;
|
|
47
|
+
placeholder: string;
|
|
48
|
+
container: string;
|
|
49
|
+
indicator: string;
|
|
50
|
+
}>;
|
|
51
|
+
lg: DeepPartialType<{
|
|
52
|
+
loading: string;
|
|
53
|
+
spinner: string;
|
|
54
|
+
empty: string;
|
|
55
|
+
placeholder: string;
|
|
56
|
+
container: string;
|
|
57
|
+
indicator: string;
|
|
58
|
+
}>;
|
|
59
|
+
xl: DeepPartialType<{
|
|
60
|
+
loading: string;
|
|
61
|
+
spinner: string;
|
|
62
|
+
empty: string;
|
|
63
|
+
placeholder: string;
|
|
64
|
+
container: string;
|
|
65
|
+
indicator: string;
|
|
66
|
+
}>;
|
|
67
|
+
block: DeepPartialType<{
|
|
68
|
+
loading: string;
|
|
69
|
+
spinner: string;
|
|
70
|
+
empty: string;
|
|
71
|
+
placeholder: string;
|
|
72
|
+
container: string;
|
|
73
|
+
indicator: string;
|
|
74
|
+
}>;
|
|
75
|
+
rounded: DeepPartialType<{
|
|
76
|
+
loading: string;
|
|
77
|
+
spinner: string;
|
|
78
|
+
empty: string;
|
|
79
|
+
placeholder: string;
|
|
80
|
+
container: string;
|
|
81
|
+
indicator: string;
|
|
82
|
+
}>;
|
|
83
|
+
offline: DeepPartialType<{
|
|
84
|
+
loading: string;
|
|
85
|
+
spinner: string;
|
|
86
|
+
empty: string;
|
|
87
|
+
placeholder: string;
|
|
88
|
+
container: string;
|
|
89
|
+
indicator: string;
|
|
90
|
+
}>;
|
|
91
|
+
online: DeepPartialType<{
|
|
92
|
+
loading: string;
|
|
93
|
+
spinner: string;
|
|
94
|
+
empty: string;
|
|
95
|
+
placeholder: string;
|
|
96
|
+
container: string;
|
|
97
|
+
indicator: string;
|
|
98
|
+
}>;
|
|
99
|
+
blocked: DeepPartialType<{
|
|
100
|
+
loading: string;
|
|
101
|
+
spinner: string;
|
|
102
|
+
empty: string;
|
|
103
|
+
placeholder: string;
|
|
104
|
+
container: string;
|
|
105
|
+
indicator: string;
|
|
106
|
+
}>;
|
|
107
|
+
disabled: DeepPartialType<{
|
|
108
|
+
loading: string;
|
|
109
|
+
spinner: string;
|
|
110
|
+
empty: string;
|
|
111
|
+
placeholder: string;
|
|
112
|
+
container: string;
|
|
113
|
+
indicator: string;
|
|
114
|
+
}>;
|
|
115
|
+
loading: DeepPartialType<{
|
|
116
|
+
loading: string;
|
|
117
|
+
spinner: string;
|
|
118
|
+
empty: string;
|
|
119
|
+
placeholder: string;
|
|
120
|
+
container: string;
|
|
121
|
+
indicator: string;
|
|
122
|
+
}>;
|
|
39
123
|
};
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
124
|
+
type TSelectMenuOption = {
|
|
125
|
+
label: string;
|
|
126
|
+
value: string;
|
|
127
|
+
required?: boolean;
|
|
128
|
+
};
|
|
129
|
+
export const fromSelectMenuOptionToStringValue: (value: TSelectMenuOption | TSelectMenuOption[]) => string | string[] | null;
|
|
130
|
+
declare const _base1: {
|
|
43
131
|
container: string;
|
|
44
132
|
icon: string;
|
|
45
133
|
content: {
|
|
46
134
|
container: string;
|
|
135
|
+
iconContainer: string;
|
|
47
136
|
title: string;
|
|
48
137
|
message: string;
|
|
49
138
|
actions: string;
|
|
@@ -51,42 +140,205 @@ declare const base$r: {
|
|
|
51
140
|
inverted: string;
|
|
52
141
|
};
|
|
53
142
|
};
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
143
|
+
export const AlertElement: {
|
|
144
|
+
_base1: {
|
|
145
|
+
container: string;
|
|
146
|
+
icon: string;
|
|
147
|
+
content: {
|
|
148
|
+
container: string;
|
|
149
|
+
iconContainer: string;
|
|
150
|
+
title: string;
|
|
151
|
+
message: string;
|
|
152
|
+
actions: string;
|
|
153
|
+
action: string;
|
|
154
|
+
inverted: string;
|
|
155
|
+
};
|
|
156
|
+
};
|
|
157
|
+
generic: DeepPartialType<{
|
|
158
|
+
container: string;
|
|
159
|
+
icon: string;
|
|
160
|
+
content: {
|
|
161
|
+
container: string;
|
|
162
|
+
iconContainer: string;
|
|
163
|
+
title: string;
|
|
164
|
+
message: string;
|
|
165
|
+
actions: string;
|
|
166
|
+
action: string;
|
|
167
|
+
inverted: string;
|
|
168
|
+
};
|
|
169
|
+
}>;
|
|
170
|
+
error: DeepPartialType<{
|
|
171
|
+
container: string;
|
|
172
|
+
icon: string;
|
|
173
|
+
content: {
|
|
174
|
+
container: string;
|
|
175
|
+
iconContainer: string;
|
|
176
|
+
title: string;
|
|
177
|
+
message: string;
|
|
178
|
+
actions: string;
|
|
179
|
+
action: string;
|
|
180
|
+
inverted: string;
|
|
181
|
+
};
|
|
182
|
+
}>;
|
|
183
|
+
warn: DeepPartialType<{
|
|
184
|
+
container: string;
|
|
185
|
+
icon: string;
|
|
186
|
+
content: {
|
|
187
|
+
container: string;
|
|
188
|
+
iconContainer: string;
|
|
189
|
+
title: string;
|
|
190
|
+
message: string;
|
|
191
|
+
actions: string;
|
|
192
|
+
action: string;
|
|
193
|
+
inverted: string;
|
|
194
|
+
};
|
|
195
|
+
}>;
|
|
196
|
+
success: DeepPartialType<{
|
|
197
|
+
container: string;
|
|
198
|
+
icon: string;
|
|
199
|
+
content: {
|
|
200
|
+
container: string;
|
|
201
|
+
iconContainer: string;
|
|
202
|
+
title: string;
|
|
203
|
+
message: string;
|
|
204
|
+
actions: string;
|
|
205
|
+
action: string;
|
|
206
|
+
inverted: string;
|
|
207
|
+
};
|
|
208
|
+
}>;
|
|
209
|
+
info: DeepPartialType<{
|
|
210
|
+
container: string;
|
|
211
|
+
icon: string;
|
|
212
|
+
content: {
|
|
213
|
+
container: string;
|
|
214
|
+
iconContainer: string;
|
|
215
|
+
title: string;
|
|
216
|
+
message: string;
|
|
217
|
+
actions: string;
|
|
218
|
+
action: string;
|
|
219
|
+
inverted: string;
|
|
220
|
+
};
|
|
221
|
+
}>;
|
|
65
222
|
};
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
223
|
+
type TProps = {
|
|
224
|
+
accessor: IconName;
|
|
225
|
+
type?: 'brands' | 'light' | 'regular' | 'solid' | 'thin';
|
|
226
|
+
className?: string;
|
|
227
|
+
};
|
|
228
|
+
export const IconElement: FC<TProps>;
|
|
229
|
+
declare const _base2: {
|
|
69
230
|
container: string;
|
|
70
231
|
indicator: string;
|
|
71
232
|
button: string;
|
|
72
233
|
};
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
234
|
+
export const BadgeElement: {
|
|
235
|
+
_base2: {
|
|
236
|
+
container: string;
|
|
237
|
+
indicator: string;
|
|
238
|
+
button: string;
|
|
239
|
+
};
|
|
240
|
+
normal: DeepPartialType<{
|
|
241
|
+
container: string;
|
|
242
|
+
indicator: string;
|
|
243
|
+
button: string;
|
|
244
|
+
}>;
|
|
245
|
+
indicator: DeepPartialType<{
|
|
246
|
+
container: string;
|
|
247
|
+
indicator: string;
|
|
248
|
+
button: string;
|
|
249
|
+
}>;
|
|
250
|
+
close: DeepPartialType<{
|
|
251
|
+
container: string;
|
|
252
|
+
indicator: string;
|
|
253
|
+
button: string;
|
|
254
|
+
}>;
|
|
255
|
+
primary: DeepPartialType<{
|
|
256
|
+
container: string;
|
|
257
|
+
indicator: string;
|
|
258
|
+
button: string;
|
|
259
|
+
}>;
|
|
260
|
+
secondary: DeepPartialType<{
|
|
261
|
+
container: string;
|
|
262
|
+
indicator: string;
|
|
263
|
+
button: string;
|
|
264
|
+
}>;
|
|
265
|
+
outline: DeepPartialType<{
|
|
266
|
+
container: string;
|
|
267
|
+
indicator: string;
|
|
268
|
+
button: string;
|
|
269
|
+
}>;
|
|
270
|
+
sm: DeepPartialType<{
|
|
271
|
+
container: string;
|
|
272
|
+
indicator: string;
|
|
273
|
+
button: string;
|
|
274
|
+
}>;
|
|
275
|
+
lg: DeepPartialType<{
|
|
276
|
+
container: string;
|
|
277
|
+
indicator: string;
|
|
278
|
+
button: string;
|
|
279
|
+
}>;
|
|
280
|
+
block: DeepPartialType<{
|
|
281
|
+
container: string;
|
|
282
|
+
indicator: string;
|
|
283
|
+
button: string;
|
|
284
|
+
}>;
|
|
285
|
+
rounded: DeepPartialType<{
|
|
286
|
+
container: string;
|
|
287
|
+
indicator: string;
|
|
288
|
+
button: string;
|
|
289
|
+
}>;
|
|
290
|
+
gray: DeepPartialType<{
|
|
291
|
+
container: string;
|
|
292
|
+
indicator: string;
|
|
293
|
+
button: string;
|
|
294
|
+
}>;
|
|
295
|
+
red: DeepPartialType<{
|
|
296
|
+
container: string;
|
|
297
|
+
indicator: string;
|
|
298
|
+
button: string;
|
|
299
|
+
}>;
|
|
300
|
+
yellow: DeepPartialType<{
|
|
301
|
+
container: string;
|
|
302
|
+
indicator: string;
|
|
303
|
+
button: string;
|
|
304
|
+
}>;
|
|
305
|
+
green: DeepPartialType<{
|
|
306
|
+
container: string;
|
|
307
|
+
indicator: string;
|
|
308
|
+
button: string;
|
|
309
|
+
}>;
|
|
310
|
+
blue: DeepPartialType<{
|
|
311
|
+
container: string;
|
|
312
|
+
indicator: string;
|
|
313
|
+
button: string;
|
|
314
|
+
}>;
|
|
315
|
+
indigo: DeepPartialType<{
|
|
316
|
+
container: string;
|
|
317
|
+
indicator: string;
|
|
318
|
+
button: string;
|
|
319
|
+
}>;
|
|
320
|
+
purple: DeepPartialType<{
|
|
321
|
+
container: string;
|
|
322
|
+
indicator: string;
|
|
323
|
+
button: string;
|
|
324
|
+
}>;
|
|
325
|
+
pink: DeepPartialType<{
|
|
326
|
+
container: string;
|
|
327
|
+
indicator: string;
|
|
328
|
+
button: string;
|
|
329
|
+
}>;
|
|
330
|
+
disabled: DeepPartialType<{
|
|
331
|
+
container: string;
|
|
332
|
+
indicator: string;
|
|
333
|
+
button: string;
|
|
334
|
+
}>;
|
|
335
|
+
loading: DeepPartialType<{
|
|
336
|
+
container: string;
|
|
337
|
+
indicator: string;
|
|
338
|
+
button: string;
|
|
339
|
+
}>;
|
|
86
340
|
};
|
|
87
|
-
declare const
|
|
88
|
-
|
|
89
|
-
declare const base$p: {
|
|
341
|
+
declare const _base3: {
|
|
90
342
|
container: string;
|
|
91
343
|
content: string;
|
|
92
344
|
arrow: {
|
|
@@ -95,20 +347,18 @@ declare const base$p: {
|
|
|
95
347
|
strokeWidth: string;
|
|
96
348
|
};
|
|
97
349
|
};
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
350
|
+
export const TooltipElement: {
|
|
351
|
+
_base3: {
|
|
352
|
+
container: string;
|
|
353
|
+
content: string;
|
|
354
|
+
arrow: {
|
|
355
|
+
stroke: string;
|
|
356
|
+
fill: string;
|
|
357
|
+
strokeWidth: string;
|
|
358
|
+
};
|
|
359
|
+
};
|
|
108
360
|
};
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
type TButtonElementProps = {
|
|
361
|
+
export type TButtonElementProps = {
|
|
112
362
|
children: string | ReactNode;
|
|
113
363
|
innerRef?: RefObject<HTMLButtonElement>;
|
|
114
364
|
htmlType?: 'button' | 'submit';
|
|
@@ -119,64 +369,90 @@ type TButtonElementProps = {
|
|
|
119
369
|
isDisabled?: boolean;
|
|
120
370
|
dataCy?: string;
|
|
121
371
|
styles?: TButtonElementStyles;
|
|
122
|
-
onClick?: (e?: MouseEvent
|
|
372
|
+
onClick?: (e?: MouseEvent<HTMLButtonElement>) => void;
|
|
123
373
|
};
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
declare const base$o: {
|
|
374
|
+
export const ButtonElement: FC<TButtonElementProps>;
|
|
375
|
+
declare const _base4: {
|
|
127
376
|
container: string;
|
|
128
377
|
content: string;
|
|
129
378
|
icon: string;
|
|
130
379
|
spinner: string;
|
|
131
380
|
};
|
|
132
|
-
type TButtonElementStyles = DeepPartialType<typeof
|
|
133
|
-
|
|
134
|
-
declare const base$n: {
|
|
381
|
+
type TButtonElementStyles = DeepPartialType<typeof _base4>;
|
|
382
|
+
declare const _base5: {
|
|
135
383
|
container: string;
|
|
136
384
|
firstButton: string;
|
|
137
385
|
button: string;
|
|
138
386
|
lastButton: string;
|
|
139
387
|
};
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
388
|
+
export const ButtonGroupElement: {
|
|
389
|
+
_base5: {
|
|
390
|
+
container: string;
|
|
391
|
+
firstButton: string;
|
|
392
|
+
button: string;
|
|
393
|
+
lastButton: string;
|
|
394
|
+
};
|
|
145
395
|
};
|
|
146
|
-
declare const
|
|
147
|
-
|
|
148
|
-
declare const base$m: {
|
|
396
|
+
declare const _base6: {
|
|
149
397
|
container: string;
|
|
150
398
|
button: string;
|
|
151
399
|
compact: string;
|
|
152
400
|
dots: string;
|
|
153
401
|
items: string;
|
|
154
402
|
};
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
403
|
+
export const DropdownElement: {
|
|
404
|
+
_base6: {
|
|
405
|
+
container: string;
|
|
406
|
+
button: string;
|
|
407
|
+
compact: string;
|
|
408
|
+
dots: string;
|
|
409
|
+
items: string;
|
|
410
|
+
};
|
|
411
|
+
button: DeepPartialType<{
|
|
412
|
+
container: string;
|
|
413
|
+
button: string;
|
|
414
|
+
compact: string;
|
|
415
|
+
dots: string;
|
|
416
|
+
items: string;
|
|
417
|
+
}>;
|
|
418
|
+
compact: DeepPartialType<{
|
|
419
|
+
container: string;
|
|
420
|
+
button: string;
|
|
421
|
+
compact: string;
|
|
422
|
+
dots: string;
|
|
423
|
+
items: string;
|
|
424
|
+
}>;
|
|
425
|
+
'bottom-left': DeepPartialType<{
|
|
426
|
+
container: string;
|
|
427
|
+
button: string;
|
|
428
|
+
compact: string;
|
|
429
|
+
dots: string;
|
|
430
|
+
items: string;
|
|
431
|
+
}>;
|
|
432
|
+
'bottom-right': DeepPartialType<{
|
|
433
|
+
container: string;
|
|
434
|
+
button: string;
|
|
435
|
+
compact: string;
|
|
436
|
+
dots: string;
|
|
437
|
+
items: string;
|
|
438
|
+
}>;
|
|
439
|
+
'top-left': DeepPartialType<{
|
|
440
|
+
container: string;
|
|
441
|
+
button: string;
|
|
442
|
+
compact: string;
|
|
443
|
+
dots: string;
|
|
444
|
+
items: string;
|
|
445
|
+
}>;
|
|
446
|
+
'top-right': DeepPartialType<{
|
|
447
|
+
container: string;
|
|
448
|
+
button: string;
|
|
449
|
+
compact: string;
|
|
450
|
+
dots: string;
|
|
451
|
+
items: string;
|
|
452
|
+
}>;
|
|
176
453
|
};
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
type TInputGroupFormProps = {
|
|
454
|
+
type TDropdownElementStyles = DeepPartialType<typeof _base6>;
|
|
455
|
+
export type TInputGroupFormProps = {
|
|
180
456
|
name: string;
|
|
181
457
|
label?: string | ReactNode;
|
|
182
458
|
description?: string;
|
|
@@ -229,9 +505,8 @@ type TInputGroupFormProps = {
|
|
|
229
505
|
onClear?: never;
|
|
230
506
|
trailing?: string | ReactNode;
|
|
231
507
|
});
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
declare const base$l: {
|
|
508
|
+
export const InputGroupForm: FC<TInputGroupFormProps>;
|
|
509
|
+
declare const _base7: {
|
|
235
510
|
container: string;
|
|
236
511
|
head: string;
|
|
237
512
|
body: string;
|
|
@@ -244,107 +519,424 @@ declare const base$l: {
|
|
|
244
519
|
description: string;
|
|
245
520
|
error: string;
|
|
246
521
|
};
|
|
247
|
-
type TInputGroupStyles = DeepPartialType<typeof
|
|
248
|
-
|
|
249
|
-
declare const base$k: {
|
|
522
|
+
export type TInputGroupStyles = DeepPartialType<typeof _base7>;
|
|
523
|
+
declare const _base8: {
|
|
250
524
|
container: string;
|
|
251
525
|
content: string;
|
|
252
526
|
};
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
527
|
+
export const ContainerLayout: {
|
|
528
|
+
_base8: {
|
|
529
|
+
container: string;
|
|
530
|
+
content: string;
|
|
531
|
+
};
|
|
532
|
+
break: DeepPartialType<{
|
|
533
|
+
container: string;
|
|
534
|
+
content: string;
|
|
535
|
+
}>;
|
|
536
|
+
center: DeepPartialType<{
|
|
537
|
+
container: string;
|
|
538
|
+
content: string;
|
|
539
|
+
}>;
|
|
540
|
+
fill: DeepPartialType<{
|
|
541
|
+
container: string;
|
|
542
|
+
content: string;
|
|
543
|
+
}>;
|
|
259
544
|
};
|
|
260
|
-
declare const
|
|
261
|
-
|
|
262
|
-
declare const base$j: {
|
|
545
|
+
declare const _base9: {
|
|
263
546
|
container: string;
|
|
264
547
|
head: string;
|
|
265
548
|
line: string;
|
|
266
549
|
body: string;
|
|
267
550
|
content: string;
|
|
268
551
|
};
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
552
|
+
export const DividerLayout: {
|
|
553
|
+
_base9: {
|
|
554
|
+
container: string;
|
|
555
|
+
head: string;
|
|
556
|
+
line: string;
|
|
557
|
+
body: string;
|
|
558
|
+
content: string;
|
|
559
|
+
};
|
|
560
|
+
left: DeepPartialType<{
|
|
561
|
+
container: string;
|
|
562
|
+
head: string;
|
|
563
|
+
line: string;
|
|
564
|
+
body: string;
|
|
565
|
+
content: string;
|
|
566
|
+
}>;
|
|
567
|
+
center: DeepPartialType<{
|
|
568
|
+
container: string;
|
|
569
|
+
head: string;
|
|
570
|
+
line: string;
|
|
571
|
+
body: string;
|
|
572
|
+
content: string;
|
|
573
|
+
}>;
|
|
574
|
+
right: DeepPartialType<{
|
|
575
|
+
container: string;
|
|
576
|
+
head: string;
|
|
577
|
+
line: string;
|
|
578
|
+
body: string;
|
|
579
|
+
content: string;
|
|
580
|
+
}>;
|
|
275
581
|
};
|
|
276
|
-
declare const
|
|
277
|
-
|
|
278
|
-
declare const base$i: {
|
|
582
|
+
declare const _base10: {
|
|
279
583
|
container: string;
|
|
280
584
|
list: string;
|
|
281
585
|
item: string;
|
|
282
586
|
};
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
587
|
+
export const ListContainerLayout: {
|
|
588
|
+
_base10: {
|
|
589
|
+
container: string;
|
|
590
|
+
list: string;
|
|
591
|
+
item: string;
|
|
592
|
+
};
|
|
593
|
+
fill: DeepPartialType<{
|
|
594
|
+
container: string;
|
|
595
|
+
list: string;
|
|
596
|
+
item: string;
|
|
597
|
+
}>;
|
|
598
|
+
'fill-sticky': DeepPartialType<{
|
|
599
|
+
container: string;
|
|
600
|
+
list: string;
|
|
601
|
+
item: string;
|
|
602
|
+
}>;
|
|
603
|
+
center: DeepPartialType<{
|
|
604
|
+
container: string;
|
|
605
|
+
list: string;
|
|
606
|
+
item: string;
|
|
607
|
+
}>;
|
|
608
|
+
'center-sticky': DeepPartialType<{
|
|
609
|
+
container: string;
|
|
610
|
+
list: string;
|
|
611
|
+
item: string;
|
|
612
|
+
}>;
|
|
613
|
+
card: DeepPartialType<{
|
|
614
|
+
container: string;
|
|
615
|
+
list: string;
|
|
616
|
+
item: string;
|
|
617
|
+
}>;
|
|
618
|
+
'card-sticky': DeepPartialType<{
|
|
619
|
+
container: string;
|
|
620
|
+
list: string;
|
|
621
|
+
item: string;
|
|
622
|
+
}>;
|
|
289
623
|
};
|
|
290
|
-
declare const
|
|
291
|
-
|
|
292
|
-
declare const base$h: {
|
|
624
|
+
declare const _base11: {
|
|
293
625
|
container: string;
|
|
294
626
|
figure: string;
|
|
295
627
|
svg: string;
|
|
296
628
|
title: string;
|
|
297
629
|
paragraph: string;
|
|
298
630
|
};
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
631
|
+
export const MediaObjectLayout: {
|
|
632
|
+
_base11: {
|
|
633
|
+
container: string;
|
|
634
|
+
figure: string;
|
|
635
|
+
svg: string;
|
|
636
|
+
title: string;
|
|
637
|
+
paragraph: string;
|
|
638
|
+
};
|
|
639
|
+
top: DeepPartialType<{
|
|
640
|
+
container: string;
|
|
641
|
+
figure: string;
|
|
642
|
+
svg: string;
|
|
643
|
+
title: string;
|
|
644
|
+
paragraph: string;
|
|
645
|
+
}>;
|
|
646
|
+
'top-reversed': DeepPartialType<{
|
|
647
|
+
container: string;
|
|
648
|
+
figure: string;
|
|
649
|
+
svg: string;
|
|
650
|
+
title: string;
|
|
651
|
+
paragraph: string;
|
|
652
|
+
}>;
|
|
653
|
+
center: DeepPartialType<{
|
|
654
|
+
container: string;
|
|
655
|
+
figure: string;
|
|
656
|
+
svg: string;
|
|
657
|
+
title: string;
|
|
658
|
+
paragraph: string;
|
|
659
|
+
}>;
|
|
660
|
+
'center-reversed': DeepPartialType<{
|
|
661
|
+
container: string;
|
|
662
|
+
figure: string;
|
|
663
|
+
svg: string;
|
|
664
|
+
title: string;
|
|
665
|
+
paragraph: string;
|
|
666
|
+
}>;
|
|
667
|
+
bottom: DeepPartialType<{
|
|
668
|
+
container: string;
|
|
669
|
+
figure: string;
|
|
670
|
+
svg: string;
|
|
671
|
+
title: string;
|
|
672
|
+
paragraph: string;
|
|
673
|
+
}>;
|
|
674
|
+
'bottom-reversed': DeepPartialType<{
|
|
675
|
+
container: string;
|
|
676
|
+
figure: string;
|
|
677
|
+
svg: string;
|
|
678
|
+
title: string;
|
|
679
|
+
paragraph: string;
|
|
680
|
+
}>;
|
|
681
|
+
stretch: DeepPartialType<{
|
|
682
|
+
container: string;
|
|
683
|
+
figure: string;
|
|
684
|
+
svg: string;
|
|
685
|
+
title: string;
|
|
686
|
+
paragraph: string;
|
|
687
|
+
}>;
|
|
688
|
+
'stretch-reversed': DeepPartialType<{
|
|
689
|
+
container: string;
|
|
690
|
+
figure: string;
|
|
691
|
+
svg: string;
|
|
692
|
+
title: string;
|
|
693
|
+
paragraph: string;
|
|
694
|
+
}>;
|
|
695
|
+
responsive: DeepPartialType<{
|
|
696
|
+
container: string;
|
|
697
|
+
figure: string;
|
|
698
|
+
svg: string;
|
|
699
|
+
title: string;
|
|
700
|
+
paragraph: string;
|
|
701
|
+
}>;
|
|
702
|
+
'responsive-reversed': DeepPartialType<{
|
|
703
|
+
container: string;
|
|
704
|
+
figure: string;
|
|
705
|
+
svg: string;
|
|
706
|
+
title: string;
|
|
707
|
+
paragraph: string;
|
|
708
|
+
}>;
|
|
709
|
+
wide: DeepPartialType<{
|
|
710
|
+
container: string;
|
|
711
|
+
figure: string;
|
|
712
|
+
svg: string;
|
|
713
|
+
title: string;
|
|
714
|
+
paragraph: string;
|
|
715
|
+
}>;
|
|
716
|
+
'wide-reversed': DeepPartialType<{
|
|
717
|
+
container: string;
|
|
718
|
+
figure: string;
|
|
719
|
+
svg: string;
|
|
720
|
+
title: string;
|
|
721
|
+
paragraph: string;
|
|
722
|
+
}>;
|
|
307
723
|
};
|
|
308
|
-
declare const
|
|
309
|
-
|
|
310
|
-
declare const base$g: {
|
|
724
|
+
declare const _base12: {
|
|
311
725
|
container: string;
|
|
312
726
|
section: string;
|
|
313
727
|
};
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
children: ReactNode;
|
|
318
|
-
type?: 'normal' | 'sticky';
|
|
319
|
-
styles?: TPanelLayoutStyles;
|
|
320
|
-
};
|
|
321
|
-
type TSectionProps = {
|
|
322
|
-
children: ReactNode;
|
|
323
|
-
styles?: {
|
|
728
|
+
export const PanelLayout: {
|
|
729
|
+
_base12: {
|
|
730
|
+
container: string;
|
|
324
731
|
section: string;
|
|
325
732
|
};
|
|
733
|
+
normal: DeepPartialType<{
|
|
734
|
+
container: string;
|
|
735
|
+
section: string;
|
|
736
|
+
}>;
|
|
737
|
+
sticky: DeepPartialType<{
|
|
738
|
+
container: string;
|
|
739
|
+
section: string;
|
|
740
|
+
}>;
|
|
326
741
|
};
|
|
327
|
-
declare const
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
742
|
+
declare const _base13: {
|
|
743
|
+
container: string;
|
|
744
|
+
left: {
|
|
745
|
+
container: string;
|
|
746
|
+
button: string;
|
|
747
|
+
icon: string;
|
|
748
|
+
};
|
|
749
|
+
center: {
|
|
750
|
+
container: string;
|
|
751
|
+
};
|
|
752
|
+
right: {
|
|
753
|
+
container: string;
|
|
754
|
+
button: string;
|
|
755
|
+
icon: string;
|
|
756
|
+
};
|
|
757
|
+
button: {
|
|
758
|
+
default: string;
|
|
759
|
+
active: string;
|
|
760
|
+
disabled: string;
|
|
761
|
+
};
|
|
762
|
+
divider: string;
|
|
763
|
+
};
|
|
764
|
+
export const PagePaginationNavigation: {
|
|
765
|
+
_base13: {
|
|
766
|
+
container: string;
|
|
767
|
+
left: {
|
|
768
|
+
container: string;
|
|
769
|
+
button: string;
|
|
770
|
+
icon: string;
|
|
771
|
+
};
|
|
772
|
+
center: {
|
|
773
|
+
container: string;
|
|
774
|
+
};
|
|
775
|
+
right: {
|
|
776
|
+
container: string;
|
|
777
|
+
button: string;
|
|
778
|
+
icon: string;
|
|
779
|
+
};
|
|
780
|
+
button: {
|
|
781
|
+
default: string;
|
|
782
|
+
active: string;
|
|
783
|
+
disabled: string;
|
|
784
|
+
};
|
|
785
|
+
divider: string;
|
|
786
|
+
};
|
|
787
|
+
};
|
|
788
|
+
type TPagePaginationNavigationStyles = DeepPartialType<typeof _base13>;
|
|
789
|
+
declare const _base14: {
|
|
790
|
+
container: string;
|
|
791
|
+
mobile: {
|
|
792
|
+
container: string;
|
|
793
|
+
button: string;
|
|
794
|
+
};
|
|
795
|
+
desktop: {
|
|
796
|
+
container: string;
|
|
797
|
+
outerRightButton: string;
|
|
798
|
+
outerLeftButton: string;
|
|
799
|
+
innerButton: string;
|
|
800
|
+
navigation: string;
|
|
801
|
+
};
|
|
802
|
+
button: {
|
|
803
|
+
default: string;
|
|
804
|
+
active: string;
|
|
805
|
+
disabled: string;
|
|
806
|
+
};
|
|
807
|
+
divider: string;
|
|
808
|
+
label: string;
|
|
809
|
+
icon: string;
|
|
810
|
+
pageSizeList: string;
|
|
811
|
+
};
|
|
812
|
+
export const PanelPaginationNavigation: {
|
|
813
|
+
_base14: {
|
|
814
|
+
container: string;
|
|
815
|
+
mobile: {
|
|
816
|
+
container: string;
|
|
817
|
+
button: string;
|
|
818
|
+
};
|
|
819
|
+
desktop: {
|
|
820
|
+
container: string;
|
|
821
|
+
outerRightButton: string;
|
|
822
|
+
outerLeftButton: string;
|
|
823
|
+
innerButton: string;
|
|
824
|
+
navigation: string;
|
|
825
|
+
};
|
|
826
|
+
button: {
|
|
827
|
+
default: string;
|
|
828
|
+
active: string;
|
|
829
|
+
disabled: string;
|
|
830
|
+
};
|
|
831
|
+
divider: string;
|
|
832
|
+
label: string;
|
|
833
|
+
icon: string;
|
|
834
|
+
pageSizeList: string;
|
|
835
|
+
};
|
|
836
|
+
};
|
|
837
|
+
export type TSelectMenuFormProps = {
|
|
838
|
+
name: string;
|
|
839
|
+
label?: string;
|
|
840
|
+
description?: string;
|
|
841
|
+
placeholder?: {
|
|
842
|
+
select?: string;
|
|
843
|
+
searchInput?: string;
|
|
844
|
+
emptyState?: string;
|
|
845
|
+
};
|
|
846
|
+
options: {
|
|
847
|
+
value: string;
|
|
848
|
+
label: string;
|
|
849
|
+
}[];
|
|
850
|
+
required?: ({ isRequired }: {
|
|
851
|
+
isRequired: boolean;
|
|
852
|
+
}) => string | ReactNode;
|
|
853
|
+
value: {
|
|
854
|
+
label: string;
|
|
855
|
+
value: string;
|
|
856
|
+
disabled?: boolean;
|
|
857
|
+
};
|
|
858
|
+
error?: string | Option | Option[];
|
|
859
|
+
isLoading?: boolean;
|
|
860
|
+
isRequired?: boolean;
|
|
861
|
+
isTouched?: boolean;
|
|
862
|
+
isDisabled?: boolean;
|
|
863
|
+
isClearable?: boolean;
|
|
864
|
+
isSearchable?: boolean;
|
|
865
|
+
isMultiple?: boolean;
|
|
866
|
+
isDarkMode?: boolean;
|
|
867
|
+
isSolo?: boolean;
|
|
868
|
+
onChange?: (value: SelectValue) => void;
|
|
869
|
+
onSearchInputChange?: ((e: ChangeEvent<HTMLInputElement>) => void) | undefined;
|
|
870
|
+
onClear: (name: string) => void;
|
|
871
|
+
onBlur?: any;
|
|
872
|
+
styles?: TSelectMenuFormStyles;
|
|
873
|
+
};
|
|
874
|
+
export const SelectMenuForm: FC<TSelectMenuFormProps>;
|
|
875
|
+
declare const _base15: {
|
|
876
|
+
container: string;
|
|
877
|
+
head: string;
|
|
878
|
+
body: string;
|
|
879
|
+
foot: string;
|
|
880
|
+
label: string;
|
|
881
|
+
hint: string;
|
|
882
|
+
leading: string;
|
|
883
|
+
input: string;
|
|
884
|
+
menuButton: string;
|
|
885
|
+
menu: string;
|
|
886
|
+
tagItem: string;
|
|
887
|
+
tagItemText: string;
|
|
888
|
+
tagItemIconContainer: string;
|
|
889
|
+
tagItemIcon: string;
|
|
890
|
+
list: string;
|
|
891
|
+
listGroupLabel: string;
|
|
892
|
+
listItem: string;
|
|
893
|
+
listDisabledItem: string;
|
|
894
|
+
searchContainer: string;
|
|
895
|
+
searchBox: string;
|
|
896
|
+
searchIcon: string;
|
|
897
|
+
closeIcon: string;
|
|
898
|
+
emptyState: string;
|
|
899
|
+
trailing: string;
|
|
900
|
+
description: string;
|
|
901
|
+
error: string;
|
|
902
|
+
};
|
|
903
|
+
export type TSelectMenuFormStyles = DeepPartialType<typeof _base15>;
|
|
904
|
+
export type TExcelCell = {
|
|
905
|
+
value: number | string;
|
|
906
|
+
type?: 'boolean' | 'number' | 'error' | 'string' | 'date';
|
|
907
|
+
formula?: string;
|
|
908
|
+
comments?: string;
|
|
909
|
+
format?: string;
|
|
910
|
+
link?: string;
|
|
911
|
+
style?: string;
|
|
912
|
+
};
|
|
913
|
+
export type TExcelRow = TExcelCell[];
|
|
914
|
+
export type TExcelSheet = {
|
|
915
|
+
title: string;
|
|
916
|
+
rows: TExcelRow[];
|
|
917
|
+
};
|
|
918
|
+
type TOptions = {
|
|
919
|
+
fileName: string;
|
|
920
|
+
};
|
|
921
|
+
type TReturn<TData> = {
|
|
922
|
+
generate: (table: Table<TData>, exportData?: TData[]) => TExcelSheet[];
|
|
923
|
+
write: (sheets: TExcelSheet[], options: TOptions) => void;
|
|
924
|
+
};
|
|
925
|
+
export const useExcel: <TData extends object>() => TReturn<TData>;
|
|
926
|
+
type TData = any;
|
|
927
|
+
type VisibilityState = Record<string, boolean>;
|
|
928
|
+
export type TTableListProps<TData> = {
|
|
929
|
+
id: string;
|
|
930
|
+
columns: ColumnDef<TData>[];
|
|
931
|
+
data: TData[];
|
|
932
|
+
page: {
|
|
933
|
+
current?: number;
|
|
934
|
+
total: number;
|
|
343
935
|
};
|
|
344
936
|
defaultOrder?: string[];
|
|
345
937
|
defaultVisibility?: string[];
|
|
346
938
|
customControls?: ReactNode | ReactNode[];
|
|
347
|
-
children: ({ min, max, current
|
|
939
|
+
children: ({ min, max, current }: {
|
|
348
940
|
min: number;
|
|
349
941
|
max: number;
|
|
350
942
|
current: number;
|
|
@@ -356,23 +948,22 @@ type TTableListProps$1<TData> = {
|
|
|
356
948
|
hasStickyHeader?: boolean;
|
|
357
949
|
hasVerticalSeparators?: boolean;
|
|
358
950
|
areControlsVisible?: boolean;
|
|
359
|
-
styles?: TTableListStyles
|
|
951
|
+
styles?: TTableListStyles & {
|
|
360
952
|
components: {
|
|
361
|
-
buttonElement: TButtonElementStyles
|
|
362
|
-
dropdownElement: TDropdownElementStyles
|
|
363
|
-
panelPaginationNavigation: TPagePaginationNavigationStyles
|
|
953
|
+
buttonElement: TButtonElementStyles;
|
|
954
|
+
dropdownElement: TDropdownElementStyles;
|
|
955
|
+
panelPaginationNavigation: TPagePaginationNavigationStyles;
|
|
364
956
|
};
|
|
365
957
|
};
|
|
366
958
|
onChange?: ({ sorting, visibility, order, }: {
|
|
367
959
|
sorting: SortingState;
|
|
368
|
-
visibility: VisibilityState
|
|
960
|
+
visibility: VisibilityState;
|
|
369
961
|
order: ColumnOrderState;
|
|
370
962
|
}) => void;
|
|
371
963
|
onPaginate?: (current: number) => void;
|
|
372
964
|
};
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
declare const base$f: {
|
|
965
|
+
export const TableList: FC<TTableListProps<TData>>;
|
|
966
|
+
declare const _base16: {
|
|
376
967
|
container: string;
|
|
377
968
|
head: {
|
|
378
969
|
container: string;
|
|
@@ -426,26 +1017,23 @@ declare const base$f: {
|
|
|
426
1017
|
};
|
|
427
1018
|
};
|
|
428
1019
|
};
|
|
429
|
-
type TTableListStyles
|
|
430
|
-
|
|
431
|
-
type
|
|
432
|
-
type VisibilityState = {
|
|
433
|
-
[key: string]: boolean;
|
|
434
|
-
};
|
|
1020
|
+
export type TTableListStyles = DeepPartialType<typeof _base16>;
|
|
1021
|
+
type _TData1 = any;
|
|
1022
|
+
type _VisibilityState1 = Record<string, boolean>;
|
|
435
1023
|
type Params = {
|
|
436
1024
|
table: Table<any>;
|
|
437
1025
|
sorting: SortingState;
|
|
438
|
-
columnVisibility:
|
|
1026
|
+
columnVisibility: _VisibilityState1;
|
|
439
1027
|
columnOrder: ColumnOrderState;
|
|
440
1028
|
setSorting: Dispatch<SetStateAction<SortingState>>;
|
|
441
|
-
setColumnVisibility: Dispatch<SetStateAction<
|
|
1029
|
+
setColumnVisibility: Dispatch<SetStateAction<_VisibilityState1>>;
|
|
442
1030
|
setColumnOrder: Dispatch<SetStateAction<ColumnOrderState>>;
|
|
443
1031
|
};
|
|
444
|
-
type
|
|
1032
|
+
export type TTableList2Props<_TData1> = {
|
|
445
1033
|
id: string;
|
|
446
1034
|
table: {
|
|
447
|
-
columns: ColumnDef<
|
|
448
|
-
data:
|
|
1035
|
+
columns: ColumnDef<_TData1>[];
|
|
1036
|
+
data: _TData1[];
|
|
449
1037
|
options?: {
|
|
450
1038
|
defaultOrder?: string[];
|
|
451
1039
|
defaultVisibility?: string[];
|
|
@@ -455,6 +1043,8 @@ type TTableListProps<TData> = {
|
|
|
455
1043
|
hasStickyHeader?: boolean;
|
|
456
1044
|
hasVerticalSeparators?: boolean;
|
|
457
1045
|
columnPinning?: {
|
|
1046
|
+
disableShadow?: boolean;
|
|
1047
|
+
customShadow?: string;
|
|
458
1048
|
left?: {
|
|
459
1049
|
name: string;
|
|
460
1050
|
size: number;
|
|
@@ -470,9 +1060,9 @@ type TTableListProps<TData> = {
|
|
|
470
1060
|
head?: (params: Params) => ReactNode;
|
|
471
1061
|
foot?: (params: Params) => ReactNode;
|
|
472
1062
|
leftSide?: (params: Params) => ReactNode;
|
|
473
|
-
onRowClick?: (context: Row<
|
|
1063
|
+
onRowClick?: (context: Row<_TData1>) => void;
|
|
474
1064
|
onChange?: (params: Params) => void;
|
|
475
|
-
styles?:
|
|
1065
|
+
styles?: _TTableListStyles1;
|
|
476
1066
|
dragConfig?: {
|
|
477
1067
|
rowIdentifierKey: string;
|
|
478
1068
|
iconAccessor?: IconName;
|
|
@@ -485,9 +1075,8 @@ type TTableListProps<TData> = {
|
|
|
485
1075
|
}) => void;
|
|
486
1076
|
};
|
|
487
1077
|
};
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
declare const base$e: {
|
|
1078
|
+
export const TableList2: FC<TTableList2Props<_TData1>>;
|
|
1079
|
+
declare const _base17: {
|
|
491
1080
|
container: string;
|
|
492
1081
|
head: string;
|
|
493
1082
|
body: {
|
|
@@ -545,9 +1134,9 @@ declare const base$e: {
|
|
|
545
1134
|
foot: string;
|
|
546
1135
|
leftSide: string;
|
|
547
1136
|
};
|
|
548
|
-
type
|
|
549
|
-
|
|
550
|
-
declare const
|
|
1137
|
+
type _TTableListStyles1 = DeepPartialType<typeof _base17>;
|
|
1138
|
+
export const createColumnHelper: <TData>() => import("@tanstack/react-table").ColumnHelper<TData>;
|
|
1139
|
+
declare const _base18: {
|
|
551
1140
|
container: string;
|
|
552
1141
|
list: string;
|
|
553
1142
|
separator: string;
|
|
@@ -564,96 +1153,94 @@ declare const base$d: {
|
|
|
564
1153
|
link: string;
|
|
565
1154
|
};
|
|
566
1155
|
};
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
type TProps$6 = {
|
|
570
|
-
href: string;
|
|
571
|
-
pages: {
|
|
572
|
-
name: string;
|
|
573
|
-
href: string;
|
|
574
|
-
isCurrent: boolean;
|
|
575
|
-
}[];
|
|
576
|
-
type?: 'slashes' | 'chevrons' | 'panel' | 'bar';
|
|
577
|
-
separator?: ReactNode;
|
|
578
|
-
styles?: TBreadcrumbsNavigationStyles;
|
|
579
|
-
};
|
|
580
|
-
declare const BreadcrumbsNavigation: FC<TProps$6>;
|
|
581
|
-
|
|
582
|
-
declare const base$c: {
|
|
583
|
-
container: string;
|
|
584
|
-
mobile: {
|
|
1156
|
+
export const BreadcrumbsNavigation: {
|
|
1157
|
+
_base18: {
|
|
585
1158
|
container: string;
|
|
586
|
-
|
|
1159
|
+
list: string;
|
|
1160
|
+
separator: string;
|
|
1161
|
+
home: {
|
|
1162
|
+
container: string;
|
|
1163
|
+
content: string;
|
|
1164
|
+
link: string;
|
|
1165
|
+
icon: string;
|
|
1166
|
+
span: string;
|
|
1167
|
+
};
|
|
1168
|
+
page: {
|
|
1169
|
+
container: string;
|
|
1170
|
+
content: string;
|
|
1171
|
+
link: string;
|
|
1172
|
+
};
|
|
587
1173
|
};
|
|
588
|
-
|
|
1174
|
+
slashes: DeepPartialType<{
|
|
589
1175
|
container: string;
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
}
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
type TProps$5 = {
|
|
608
|
-
current?: number;
|
|
609
|
-
min?: number;
|
|
610
|
-
max: number;
|
|
611
|
-
children: ({ min, max, current, }: {
|
|
612
|
-
min: number;
|
|
613
|
-
max: number;
|
|
614
|
-
current: number;
|
|
615
|
-
}) => ReactNode;
|
|
616
|
-
pageSizeOptions?: number[];
|
|
617
|
-
defaultPageSize?: number;
|
|
618
|
-
onChangePageSize?: (pageSize: number) => void;
|
|
619
|
-
styles?: TPanelPaginationNavigationStyles;
|
|
620
|
-
onChange?: (current: number) => void;
|
|
621
|
-
};
|
|
622
|
-
declare const PanelPaginationNavigation: React.FC<TProps$5>;
|
|
623
|
-
|
|
624
|
-
declare const base$b: {
|
|
625
|
-
container: string;
|
|
626
|
-
left: {
|
|
1176
|
+
list: string;
|
|
1177
|
+
separator: string;
|
|
1178
|
+
home: {
|
|
1179
|
+
container: string;
|
|
1180
|
+
content: string;
|
|
1181
|
+
link: string;
|
|
1182
|
+
icon: string;
|
|
1183
|
+
span: string;
|
|
1184
|
+
};
|
|
1185
|
+
page: {
|
|
1186
|
+
container: string;
|
|
1187
|
+
content: string;
|
|
1188
|
+
link: string;
|
|
1189
|
+
};
|
|
1190
|
+
}>;
|
|
1191
|
+
chevrons: DeepPartialType<{
|
|
627
1192
|
container: string;
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
1193
|
+
list: string;
|
|
1194
|
+
separator: string;
|
|
1195
|
+
home: {
|
|
1196
|
+
container: string;
|
|
1197
|
+
content: string;
|
|
1198
|
+
link: string;
|
|
1199
|
+
icon: string;
|
|
1200
|
+
span: string;
|
|
1201
|
+
};
|
|
1202
|
+
page: {
|
|
1203
|
+
container: string;
|
|
1204
|
+
content: string;
|
|
1205
|
+
link: string;
|
|
1206
|
+
};
|
|
1207
|
+
}>;
|
|
1208
|
+
panel: DeepPartialType<{
|
|
632
1209
|
container: string;
|
|
633
|
-
|
|
634
|
-
|
|
1210
|
+
list: string;
|
|
1211
|
+
separator: string;
|
|
1212
|
+
home: {
|
|
1213
|
+
container: string;
|
|
1214
|
+
content: string;
|
|
1215
|
+
link: string;
|
|
1216
|
+
icon: string;
|
|
1217
|
+
span: string;
|
|
1218
|
+
};
|
|
1219
|
+
page: {
|
|
1220
|
+
container: string;
|
|
1221
|
+
content: string;
|
|
1222
|
+
link: string;
|
|
1223
|
+
};
|
|
1224
|
+
}>;
|
|
1225
|
+
bar: DeepPartialType<{
|
|
635
1226
|
container: string;
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
styles?: TPagePaginationNavigationStyles;
|
|
652
|
-
onChange?: (current: number) => void;
|
|
1227
|
+
list: string;
|
|
1228
|
+
separator: string;
|
|
1229
|
+
home: {
|
|
1230
|
+
container: string;
|
|
1231
|
+
content: string;
|
|
1232
|
+
link: string;
|
|
1233
|
+
icon: string;
|
|
1234
|
+
span: string;
|
|
1235
|
+
};
|
|
1236
|
+
page: {
|
|
1237
|
+
container: string;
|
|
1238
|
+
content: string;
|
|
1239
|
+
link: string;
|
|
1240
|
+
};
|
|
1241
|
+
}>;
|
|
653
1242
|
};
|
|
654
|
-
declare const
|
|
655
|
-
|
|
656
|
-
declare const base$a: {
|
|
1243
|
+
declare const _base19: {
|
|
657
1244
|
container: string;
|
|
658
1245
|
list: {
|
|
659
1246
|
container: string;
|
|
@@ -664,95 +1251,65 @@ declare const base$a: {
|
|
|
664
1251
|
navigation: string;
|
|
665
1252
|
};
|
|
666
1253
|
tab: {
|
|
667
|
-
|
|
1254
|
+
_base19: string;
|
|
668
1255
|
active: string;
|
|
669
1256
|
inactive: string;
|
|
670
1257
|
};
|
|
671
1258
|
};
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
};
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
};
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
1259
|
+
export const TabNavigation: {
|
|
1260
|
+
_base19: {
|
|
1261
|
+
container: string;
|
|
1262
|
+
list: {
|
|
1263
|
+
container: string;
|
|
1264
|
+
head: string;
|
|
1265
|
+
body: string;
|
|
1266
|
+
label: string;
|
|
1267
|
+
select: string;
|
|
1268
|
+
navigation: string;
|
|
1269
|
+
};
|
|
1270
|
+
tab: {
|
|
1271
|
+
_base19: string;
|
|
1272
|
+
active: string;
|
|
1273
|
+
inactive: string;
|
|
1274
|
+
};
|
|
1275
|
+
};
|
|
1276
|
+
underline: {
|
|
1277
|
+
tab: {
|
|
1278
|
+
_base19: string;
|
|
1279
|
+
active: string;
|
|
1280
|
+
inactive: string;
|
|
1281
|
+
};
|
|
1282
|
+
};
|
|
1283
|
+
pills: {
|
|
1284
|
+
tab: {
|
|
1285
|
+
_base19: string;
|
|
1286
|
+
active: string;
|
|
1287
|
+
inactive: string;
|
|
1288
|
+
};
|
|
1289
|
+
};
|
|
1290
|
+
buttons: {
|
|
1291
|
+
tab: {
|
|
1292
|
+
_base19: string;
|
|
1293
|
+
active: string;
|
|
1294
|
+
inactive: string;
|
|
1295
|
+
};
|
|
1296
|
+
};
|
|
708
1297
|
};
|
|
709
|
-
|
|
710
|
-
type ContainerStylesType = {
|
|
1298
|
+
export const VerticalNavigation: {
|
|
711
1299
|
container: string;
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
};
|
|
716
|
-
|
|
717
|
-
type TContainerProps = {
|
|
718
|
-
children: ({ active, setActive, }: {
|
|
1300
|
+
list: string;
|
|
1301
|
+
item: {
|
|
1302
|
+
base: string;
|
|
719
1303
|
active: string;
|
|
720
|
-
|
|
721
|
-
}
|
|
722
|
-
styles?: ContainerStylesType;
|
|
723
|
-
};
|
|
724
|
-
type TNavigationProps = {
|
|
725
|
-
children: ReactNode | ReactNode[];
|
|
726
|
-
active: string;
|
|
727
|
-
setActive: Dispatch<SetStateAction<string>>;
|
|
728
|
-
styles?: NavigationStylesType;
|
|
729
|
-
};
|
|
730
|
-
type TNavigationItemProps = {
|
|
731
|
-
accessor: string;
|
|
732
|
-
href?: string;
|
|
733
|
-
type?: string;
|
|
734
|
-
children: ReactNode | ReactNode[];
|
|
735
|
-
linkComponent?: ElementType;
|
|
736
|
-
isCurrent?: boolean;
|
|
737
|
-
isInitial?: boolean;
|
|
738
|
-
onClick?: (accessor: MouseEvent) => void;
|
|
739
|
-
};
|
|
740
|
-
type TViewProps = {
|
|
741
|
-
children: ReactNode;
|
|
742
|
-
};
|
|
743
|
-
declare const VerticalNavigation: {
|
|
744
|
-
Container: React.FC<TContainerProps>;
|
|
745
|
-
List: React.FC<TNavigationProps>;
|
|
746
|
-
Item: React.FC<TNavigationItemProps>;
|
|
747
|
-
View: React.FC<TViewProps>;
|
|
1304
|
+
notActive: string;
|
|
1305
|
+
};
|
|
748
1306
|
};
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
trigger?: ({ handleOpen, handleClose, }: {
|
|
1307
|
+
export type TModalOverlayProps = {
|
|
1308
|
+
trigger?: ({ handleOpen, handleClose }: {
|
|
752
1309
|
handleOpen: () => void;
|
|
753
1310
|
handleClose: () => void;
|
|
754
1311
|
}) => ReactNode;
|
|
755
|
-
children: ({ handleOpen, handleClose
|
|
1312
|
+
children: ({ handleOpen, handleClose }: {
|
|
756
1313
|
handleOpen: () => void;
|
|
757
1314
|
handleClose: () => void;
|
|
758
1315
|
}) => ReactNode;
|
|
@@ -762,9 +1319,215 @@ type TModalOverlayProps = {
|
|
|
762
1319
|
onOpen?: () => void;
|
|
763
1320
|
onClose?: () => void;
|
|
764
1321
|
};
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
1322
|
+
export const ModalOverlay: FC<TModalOverlayProps>;
|
|
1323
|
+
declare const _base20: {
|
|
1324
|
+
container: string;
|
|
1325
|
+
background: {
|
|
1326
|
+
container: string;
|
|
1327
|
+
transition: {
|
|
1328
|
+
enter: string;
|
|
1329
|
+
enterFrom: string;
|
|
1330
|
+
enterTo: string;
|
|
1331
|
+
leave: string;
|
|
1332
|
+
leaveFrom: string;
|
|
1333
|
+
leaveTo: string;
|
|
1334
|
+
};
|
|
1335
|
+
};
|
|
1336
|
+
layout: {
|
|
1337
|
+
container: string;
|
|
1338
|
+
content: string;
|
|
1339
|
+
};
|
|
1340
|
+
panel: {
|
|
1341
|
+
container: string;
|
|
1342
|
+
transition: {
|
|
1343
|
+
enter: string;
|
|
1344
|
+
enterFrom: string;
|
|
1345
|
+
enterTo: string;
|
|
1346
|
+
leave: string;
|
|
1347
|
+
leaveFrom: string;
|
|
1348
|
+
leaveTo: string;
|
|
1349
|
+
};
|
|
1350
|
+
};
|
|
1351
|
+
};
|
|
1352
|
+
type TModalOverlayStyles = DeepPartialType<typeof _base20>;
|
|
1353
|
+
declare const _base21: {
|
|
1354
|
+
container: {
|
|
1355
|
+
outer: string;
|
|
1356
|
+
inner: string;
|
|
1357
|
+
};
|
|
1358
|
+
item: {
|
|
1359
|
+
container: string;
|
|
1360
|
+
layout: {
|
|
1361
|
+
container: string;
|
|
1362
|
+
content: string;
|
|
1363
|
+
inner: string;
|
|
1364
|
+
};
|
|
1365
|
+
panel: {
|
|
1366
|
+
container: string;
|
|
1367
|
+
transition: {
|
|
1368
|
+
enter: string;
|
|
1369
|
+
enterFrom: string;
|
|
1370
|
+
enterTo: string;
|
|
1371
|
+
leave: string;
|
|
1372
|
+
leaveFrom: string;
|
|
1373
|
+
leaveTo: string;
|
|
1374
|
+
};
|
|
1375
|
+
};
|
|
1376
|
+
};
|
|
1377
|
+
};
|
|
1378
|
+
export const NotificationOverlay: {
|
|
1379
|
+
_base21: {
|
|
1380
|
+
container: {
|
|
1381
|
+
outer: string;
|
|
1382
|
+
inner: string;
|
|
1383
|
+
};
|
|
1384
|
+
item: {
|
|
1385
|
+
container: string;
|
|
1386
|
+
layout: {
|
|
1387
|
+
container: string;
|
|
1388
|
+
content: string;
|
|
1389
|
+
inner: string;
|
|
1390
|
+
};
|
|
1391
|
+
panel: {
|
|
1392
|
+
container: string;
|
|
1393
|
+
transition: {
|
|
1394
|
+
enter: string;
|
|
1395
|
+
enterFrom: string;
|
|
1396
|
+
enterTo: string;
|
|
1397
|
+
leave: string;
|
|
1398
|
+
leaveFrom: string;
|
|
1399
|
+
leaveTo: string;
|
|
1400
|
+
};
|
|
1401
|
+
};
|
|
1402
|
+
};
|
|
1403
|
+
};
|
|
1404
|
+
xs: DeepPartialType<{
|
|
1405
|
+
container: {
|
|
1406
|
+
outer: string;
|
|
1407
|
+
inner: string;
|
|
1408
|
+
};
|
|
1409
|
+
item: {
|
|
1410
|
+
container: string;
|
|
1411
|
+
layout: {
|
|
1412
|
+
container: string;
|
|
1413
|
+
content: string;
|
|
1414
|
+
inner: string;
|
|
1415
|
+
};
|
|
1416
|
+
panel: {
|
|
1417
|
+
container: string;
|
|
1418
|
+
transition: {
|
|
1419
|
+
enter: string;
|
|
1420
|
+
enterFrom: string;
|
|
1421
|
+
enterTo: string;
|
|
1422
|
+
leave: string;
|
|
1423
|
+
leaveFrom: string;
|
|
1424
|
+
leaveTo: string;
|
|
1425
|
+
};
|
|
1426
|
+
};
|
|
1427
|
+
};
|
|
1428
|
+
}>;
|
|
1429
|
+
sm: DeepPartialType<{
|
|
1430
|
+
container: {
|
|
1431
|
+
outer: string;
|
|
1432
|
+
inner: string;
|
|
1433
|
+
};
|
|
1434
|
+
item: {
|
|
1435
|
+
container: string;
|
|
1436
|
+
layout: {
|
|
1437
|
+
container: string;
|
|
1438
|
+
content: string;
|
|
1439
|
+
inner: string;
|
|
1440
|
+
};
|
|
1441
|
+
panel: {
|
|
1442
|
+
container: string;
|
|
1443
|
+
transition: {
|
|
1444
|
+
enter: string;
|
|
1445
|
+
enterFrom: string;
|
|
1446
|
+
enterTo: string;
|
|
1447
|
+
leave: string;
|
|
1448
|
+
leaveFrom: string;
|
|
1449
|
+
leaveTo: string;
|
|
1450
|
+
};
|
|
1451
|
+
};
|
|
1452
|
+
};
|
|
1453
|
+
}>;
|
|
1454
|
+
md: DeepPartialType<{
|
|
1455
|
+
container: {
|
|
1456
|
+
outer: string;
|
|
1457
|
+
inner: string;
|
|
1458
|
+
};
|
|
1459
|
+
item: {
|
|
1460
|
+
container: string;
|
|
1461
|
+
layout: {
|
|
1462
|
+
container: string;
|
|
1463
|
+
content: string;
|
|
1464
|
+
inner: string;
|
|
1465
|
+
};
|
|
1466
|
+
panel: {
|
|
1467
|
+
container: string;
|
|
1468
|
+
transition: {
|
|
1469
|
+
enter: string;
|
|
1470
|
+
enterFrom: string;
|
|
1471
|
+
enterTo: string;
|
|
1472
|
+
leave: string;
|
|
1473
|
+
leaveFrom: string;
|
|
1474
|
+
leaveTo: string;
|
|
1475
|
+
};
|
|
1476
|
+
};
|
|
1477
|
+
};
|
|
1478
|
+
}>;
|
|
1479
|
+
lg: DeepPartialType<{
|
|
1480
|
+
container: {
|
|
1481
|
+
outer: string;
|
|
1482
|
+
inner: string;
|
|
1483
|
+
};
|
|
1484
|
+
item: {
|
|
1485
|
+
container: string;
|
|
1486
|
+
layout: {
|
|
1487
|
+
container: string;
|
|
1488
|
+
content: string;
|
|
1489
|
+
inner: string;
|
|
1490
|
+
};
|
|
1491
|
+
panel: {
|
|
1492
|
+
container: string;
|
|
1493
|
+
transition: {
|
|
1494
|
+
enter: string;
|
|
1495
|
+
enterFrom: string;
|
|
1496
|
+
enterTo: string;
|
|
1497
|
+
leave: string;
|
|
1498
|
+
leaveFrom: string;
|
|
1499
|
+
leaveTo: string;
|
|
1500
|
+
};
|
|
1501
|
+
};
|
|
1502
|
+
};
|
|
1503
|
+
}>;
|
|
1504
|
+
xl: DeepPartialType<{
|
|
1505
|
+
container: {
|
|
1506
|
+
outer: string;
|
|
1507
|
+
inner: string;
|
|
1508
|
+
};
|
|
1509
|
+
item: {
|
|
1510
|
+
container: string;
|
|
1511
|
+
layout: {
|
|
1512
|
+
container: string;
|
|
1513
|
+
content: string;
|
|
1514
|
+
inner: string;
|
|
1515
|
+
};
|
|
1516
|
+
panel: {
|
|
1517
|
+
container: string;
|
|
1518
|
+
transition: {
|
|
1519
|
+
enter: string;
|
|
1520
|
+
enterFrom: string;
|
|
1521
|
+
enterTo: string;
|
|
1522
|
+
leave: string;
|
|
1523
|
+
leaveFrom: string;
|
|
1524
|
+
leaveTo: string;
|
|
1525
|
+
};
|
|
1526
|
+
};
|
|
1527
|
+
};
|
|
1528
|
+
}>;
|
|
1529
|
+
};
|
|
1530
|
+
declare const _base22: {
|
|
768
1531
|
container: string;
|
|
769
1532
|
background: {
|
|
770
1533
|
container: string;
|
|
@@ -776,32 +1539,98 @@ declare const base$9: {
|
|
|
776
1539
|
leaveFrom: string;
|
|
777
1540
|
leaveTo: string;
|
|
778
1541
|
};
|
|
779
|
-
};
|
|
780
|
-
layout: {
|
|
781
|
-
container: string;
|
|
782
|
-
content: string;
|
|
783
|
-
|
|
784
|
-
|
|
1542
|
+
};
|
|
1543
|
+
layout: {
|
|
1544
|
+
container: string;
|
|
1545
|
+
content: string;
|
|
1546
|
+
inner: string;
|
|
1547
|
+
};
|
|
1548
|
+
panel: {
|
|
1549
|
+
container: string;
|
|
1550
|
+
transition: {
|
|
1551
|
+
enter: string;
|
|
1552
|
+
enterFrom: string;
|
|
1553
|
+
enterTo: string;
|
|
1554
|
+
leave: string;
|
|
1555
|
+
leaveFrom: string;
|
|
1556
|
+
leaveTo: string;
|
|
1557
|
+
};
|
|
1558
|
+
};
|
|
1559
|
+
};
|
|
1560
|
+
export const SlideOverOverlay: {
|
|
1561
|
+
_base22: {
|
|
1562
|
+
container: string;
|
|
1563
|
+
background: {
|
|
1564
|
+
container: string;
|
|
1565
|
+
transition: {
|
|
1566
|
+
enter: string;
|
|
1567
|
+
enterFrom: string;
|
|
1568
|
+
enterTo: string;
|
|
1569
|
+
leave: string;
|
|
1570
|
+
leaveFrom: string;
|
|
1571
|
+
leaveTo: string;
|
|
1572
|
+
};
|
|
1573
|
+
};
|
|
1574
|
+
layout: {
|
|
1575
|
+
container: string;
|
|
1576
|
+
content: string;
|
|
1577
|
+
inner: string;
|
|
1578
|
+
};
|
|
1579
|
+
panel: {
|
|
1580
|
+
container: string;
|
|
1581
|
+
transition: {
|
|
1582
|
+
enter: string;
|
|
1583
|
+
enterFrom: string;
|
|
1584
|
+
enterTo: string;
|
|
1585
|
+
leave: string;
|
|
1586
|
+
leaveFrom: string;
|
|
1587
|
+
leaveTo: string;
|
|
1588
|
+
};
|
|
1589
|
+
};
|
|
1590
|
+
};
|
|
1591
|
+
xs: DeepPartialType<{
|
|
1592
|
+
container: string;
|
|
1593
|
+
background: {
|
|
1594
|
+
container: string;
|
|
1595
|
+
transition: {
|
|
1596
|
+
enter: string;
|
|
1597
|
+
enterFrom: string;
|
|
1598
|
+
enterTo: string;
|
|
1599
|
+
leave: string;
|
|
1600
|
+
leaveFrom: string;
|
|
1601
|
+
leaveTo: string;
|
|
1602
|
+
};
|
|
1603
|
+
};
|
|
1604
|
+
layout: {
|
|
1605
|
+
container: string;
|
|
1606
|
+
content: string;
|
|
1607
|
+
inner: string;
|
|
1608
|
+
};
|
|
1609
|
+
panel: {
|
|
1610
|
+
container: string;
|
|
1611
|
+
transition: {
|
|
1612
|
+
enter: string;
|
|
1613
|
+
enterFrom: string;
|
|
1614
|
+
enterTo: string;
|
|
1615
|
+
leave: string;
|
|
1616
|
+
leaveFrom: string;
|
|
1617
|
+
leaveTo: string;
|
|
1618
|
+
};
|
|
1619
|
+
};
|
|
1620
|
+
}>;
|
|
1621
|
+
sm: DeepPartialType<{
|
|
785
1622
|
container: string;
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
1623
|
+
background: {
|
|
1624
|
+
container: string;
|
|
1625
|
+
transition: {
|
|
1626
|
+
enter: string;
|
|
1627
|
+
enterFrom: string;
|
|
1628
|
+
enterTo: string;
|
|
1629
|
+
leave: string;
|
|
1630
|
+
leaveFrom: string;
|
|
1631
|
+
leaveTo: string;
|
|
1632
|
+
};
|
|
793
1633
|
};
|
|
794
|
-
};
|
|
795
|
-
};
|
|
796
|
-
type TModalOverlayStyles = DeepPartialType<typeof base$9>;
|
|
797
|
-
|
|
798
|
-
declare const base$8: {
|
|
799
|
-
container: {
|
|
800
|
-
outer: string;
|
|
801
|
-
inner: string;
|
|
802
|
-
};
|
|
803
|
-
item: {
|
|
804
|
-
container: string;
|
|
805
1634
|
layout: {
|
|
806
1635
|
container: string;
|
|
807
1636
|
content: string;
|
|
@@ -818,77 +1647,99 @@ declare const base$8: {
|
|
|
818
1647
|
leaveTo: string;
|
|
819
1648
|
};
|
|
820
1649
|
};
|
|
821
|
-
}
|
|
822
|
-
|
|
823
|
-
type TNotificationOverlayStyles = DeepPartialType<typeof base$8>;
|
|
824
|
-
|
|
825
|
-
type TProps$3 = {
|
|
826
|
-
trigger?: ({ onOpen, onClose, }: {
|
|
827
|
-
onOpen: () => void;
|
|
828
|
-
onClose: () => void;
|
|
829
|
-
}) => ReactNode;
|
|
830
|
-
children: ({ onOpen, onClose, }: {
|
|
831
|
-
onOpen: () => void;
|
|
832
|
-
onClose: () => void;
|
|
833
|
-
}) => ReactNode;
|
|
834
|
-
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
835
|
-
styles?: TNotificationOverlayStyles;
|
|
836
|
-
};
|
|
837
|
-
declare const NotificationOverlay: {
|
|
838
|
-
Container: ({ children, styles: stylesOverrides, }: {
|
|
839
|
-
children: ReactNode;
|
|
840
|
-
styles?: TNotificationOverlayStyles;
|
|
841
|
-
}) => react_jsx_runtime.JSX.Element;
|
|
842
|
-
Item: React.FC<TProps$3>;
|
|
843
|
-
};
|
|
844
|
-
|
|
845
|
-
declare const base$7: {
|
|
846
|
-
container: string;
|
|
847
|
-
background: {
|
|
1650
|
+
}>;
|
|
1651
|
+
md: DeepPartialType<{
|
|
848
1652
|
container: string;
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
1653
|
+
background: {
|
|
1654
|
+
container: string;
|
|
1655
|
+
transition: {
|
|
1656
|
+
enter: string;
|
|
1657
|
+
enterFrom: string;
|
|
1658
|
+
enterTo: string;
|
|
1659
|
+
leave: string;
|
|
1660
|
+
leaveFrom: string;
|
|
1661
|
+
leaveTo: string;
|
|
1662
|
+
};
|
|
856
1663
|
};
|
|
857
|
-
|
|
858
|
-
|
|
1664
|
+
layout: {
|
|
1665
|
+
container: string;
|
|
1666
|
+
content: string;
|
|
1667
|
+
inner: string;
|
|
1668
|
+
};
|
|
1669
|
+
panel: {
|
|
1670
|
+
container: string;
|
|
1671
|
+
transition: {
|
|
1672
|
+
enter: string;
|
|
1673
|
+
enterFrom: string;
|
|
1674
|
+
enterTo: string;
|
|
1675
|
+
leave: string;
|
|
1676
|
+
leaveFrom: string;
|
|
1677
|
+
leaveTo: string;
|
|
1678
|
+
};
|
|
1679
|
+
};
|
|
1680
|
+
}>;
|
|
1681
|
+
lg: DeepPartialType<{
|
|
859
1682
|
container: string;
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
1683
|
+
background: {
|
|
1684
|
+
container: string;
|
|
1685
|
+
transition: {
|
|
1686
|
+
enter: string;
|
|
1687
|
+
enterFrom: string;
|
|
1688
|
+
enterTo: string;
|
|
1689
|
+
leave: string;
|
|
1690
|
+
leaveFrom: string;
|
|
1691
|
+
leaveTo: string;
|
|
1692
|
+
};
|
|
1693
|
+
};
|
|
1694
|
+
layout: {
|
|
1695
|
+
container: string;
|
|
1696
|
+
content: string;
|
|
1697
|
+
inner: string;
|
|
1698
|
+
};
|
|
1699
|
+
panel: {
|
|
1700
|
+
container: string;
|
|
1701
|
+
transition: {
|
|
1702
|
+
enter: string;
|
|
1703
|
+
enterFrom: string;
|
|
1704
|
+
enterTo: string;
|
|
1705
|
+
leave: string;
|
|
1706
|
+
leaveFrom: string;
|
|
1707
|
+
leaveTo: string;
|
|
1708
|
+
};
|
|
1709
|
+
};
|
|
1710
|
+
}>;
|
|
1711
|
+
xl: DeepPartialType<{
|
|
864
1712
|
container: string;
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
1713
|
+
background: {
|
|
1714
|
+
container: string;
|
|
1715
|
+
transition: {
|
|
1716
|
+
enter: string;
|
|
1717
|
+
enterFrom: string;
|
|
1718
|
+
enterTo: string;
|
|
1719
|
+
leave: string;
|
|
1720
|
+
leaveFrom: string;
|
|
1721
|
+
leaveTo: string;
|
|
1722
|
+
};
|
|
872
1723
|
};
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
1724
|
+
layout: {
|
|
1725
|
+
container: string;
|
|
1726
|
+
content: string;
|
|
1727
|
+
inner: string;
|
|
1728
|
+
};
|
|
1729
|
+
panel: {
|
|
1730
|
+
container: string;
|
|
1731
|
+
transition: {
|
|
1732
|
+
enter: string;
|
|
1733
|
+
enterFrom: string;
|
|
1734
|
+
enterTo: string;
|
|
1735
|
+
leave: string;
|
|
1736
|
+
leaveFrom: string;
|
|
1737
|
+
leaveTo: string;
|
|
1738
|
+
};
|
|
1739
|
+
};
|
|
1740
|
+
}>;
|
|
888
1741
|
};
|
|
889
|
-
declare const
|
|
890
|
-
|
|
891
|
-
declare const styles$1: {
|
|
1742
|
+
declare const styles: {
|
|
892
1743
|
controls: {
|
|
893
1744
|
container: string;
|
|
894
1745
|
content: string;
|
|
@@ -907,10 +1758,8 @@ declare const styles$1: {
|
|
|
907
1758
|
label: string;
|
|
908
1759
|
icon: string;
|
|
909
1760
|
};
|
|
910
|
-
|
|
911
|
-
type
|
|
912
|
-
|
|
913
|
-
type TProps$1 = {
|
|
1761
|
+
type TTableColumnOptionsStyles = DeepPartialType<typeof styles>;
|
|
1762
|
+
type _TProps1 = {
|
|
914
1763
|
table: Table<any>;
|
|
915
1764
|
setColumnOrder: Dispatch<SetStateAction<ColumnOrderState>>;
|
|
916
1765
|
trigger: ReactNode;
|
|
@@ -921,94 +1770,22 @@ type TProps$1 = {
|
|
|
921
1770
|
onReset?: () => void;
|
|
922
1771
|
};
|
|
923
1772
|
};
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
type TProps<TData> = {
|
|
1773
|
+
export const TableColumnOptionsCustom: FC<_TProps1>;
|
|
1774
|
+
type _TProps2<TData> = {
|
|
927
1775
|
table: Table<TData>;
|
|
928
1776
|
fileName: string;
|
|
929
|
-
children: ({ handleExport
|
|
1777
|
+
children: ({ handleExport }: {
|
|
930
1778
|
handleExport: (exportData?: TData[]) => void;
|
|
931
1779
|
}) => ReactNode;
|
|
932
1780
|
};
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
type TSelectMenuFormProps = {
|
|
936
|
-
name: string;
|
|
937
|
-
label?: string;
|
|
938
|
-
description?: string;
|
|
939
|
-
placeholder?: {
|
|
940
|
-
select?: string;
|
|
941
|
-
searchInput?: string;
|
|
942
|
-
emptyState?: string;
|
|
943
|
-
};
|
|
944
|
-
options: {
|
|
945
|
-
value: string;
|
|
946
|
-
label: string;
|
|
947
|
-
}[];
|
|
948
|
-
required?: ({ isRequired }: {
|
|
949
|
-
isRequired: boolean;
|
|
950
|
-
}) => string | ReactNode;
|
|
951
|
-
value: {
|
|
952
|
-
label: string;
|
|
953
|
-
value: string;
|
|
954
|
-
disabled?: boolean;
|
|
955
|
-
};
|
|
956
|
-
error?: string | Option | Option[];
|
|
957
|
-
isLoading?: boolean;
|
|
958
|
-
isRequired?: boolean;
|
|
959
|
-
isTouched?: boolean;
|
|
960
|
-
isDisabled?: boolean;
|
|
961
|
-
isClearable?: boolean;
|
|
962
|
-
isSearchable?: boolean;
|
|
963
|
-
isMultiple?: boolean;
|
|
964
|
-
isDarkMode?: boolean;
|
|
965
|
-
isSolo?: boolean;
|
|
966
|
-
onChange?: (value: SelectValue) => void;
|
|
967
|
-
onSearchInputChange?: ((e: ChangeEvent<HTMLInputElement>) => void) | undefined;
|
|
968
|
-
onClear: (name: string) => void;
|
|
969
|
-
onBlur?: any;
|
|
970
|
-
styles?: TSelectMenuFormStyles;
|
|
971
|
-
};
|
|
972
|
-
declare const SelectMenuForm: FC<TSelectMenuFormProps>;
|
|
973
|
-
|
|
974
|
-
declare const base$6: {
|
|
975
|
-
container: string;
|
|
976
|
-
head: string;
|
|
977
|
-
body: string;
|
|
978
|
-
foot: string;
|
|
979
|
-
label: string;
|
|
980
|
-
hint: string;
|
|
981
|
-
leading: string;
|
|
982
|
-
input: string;
|
|
983
|
-
menuButton: string;
|
|
984
|
-
menu: string;
|
|
985
|
-
tagItem: string;
|
|
986
|
-
tagItemText: string;
|
|
987
|
-
tagItemIconContainer: string;
|
|
988
|
-
tagItemIcon: string;
|
|
989
|
-
list: string;
|
|
990
|
-
listGroupLabel: string;
|
|
991
|
-
listItem: string;
|
|
992
|
-
listDisabledItem: string;
|
|
993
|
-
searchContainer: string;
|
|
994
|
-
searchBox: string;
|
|
995
|
-
searchIcon: string;
|
|
996
|
-
closeIcon: string;
|
|
997
|
-
emptyState: string;
|
|
998
|
-
trailing: string;
|
|
999
|
-
description: string;
|
|
1000
|
-
error: string;
|
|
1001
|
-
};
|
|
1002
|
-
type TSelectMenuFormStyles = DeepPartialType<typeof base$6>;
|
|
1003
|
-
|
|
1004
|
-
type TDateMenuFormProps = Omit<TDateRangeMenuFormProps, 'value' | 'isRanged' | 'onChange'> & {
|
|
1781
|
+
export const TableExportCustom: <TData extends object>(props: _TProps2<TData>) => import("react/jsx-runtime").JSX.Element;
|
|
1782
|
+
export type TDateMenuFormProps = Omit<TDateRangeMenuFormProps, 'value' | 'isRanged' | 'onChange'> & {
|
|
1005
1783
|
value?: string;
|
|
1006
1784
|
isRanged?: false;
|
|
1007
1785
|
onChange?: (value: string) => void;
|
|
1008
1786
|
};
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
declare const base$5: {
|
|
1787
|
+
export const DateMenuForm: FC<TDateMenuFormProps>;
|
|
1788
|
+
declare const _base23: {
|
|
1012
1789
|
container: string;
|
|
1013
1790
|
head: string;
|
|
1014
1791
|
body: string;
|
|
@@ -1021,9 +1798,8 @@ declare const base$5: {
|
|
|
1021
1798
|
description: string;
|
|
1022
1799
|
error: string;
|
|
1023
1800
|
};
|
|
1024
|
-
type
|
|
1025
|
-
|
|
1026
|
-
type TDateRangeMenuFormProps = {
|
|
1801
|
+
export type TDateMenuFormStyles = DeepPartialType<typeof _base23>;
|
|
1802
|
+
export type TDateRangeMenuFormProps = {
|
|
1027
1803
|
name: string;
|
|
1028
1804
|
type?: 'normal' | 'inset' | 'overlapping' | 'pill' | 'floored';
|
|
1029
1805
|
size?: 'compact' | 'expanded';
|
|
@@ -1059,11 +1835,10 @@ type TDateRangeMenuFormProps = {
|
|
|
1059
1835
|
onClear?: (name: string) => void;
|
|
1060
1836
|
onBlur?: () => void;
|
|
1061
1837
|
onClick?: MouseEventHandler<HTMLDivElement>;
|
|
1062
|
-
styles?:
|
|
1838
|
+
styles?: TDateMenuFormStyles;
|
|
1063
1839
|
};
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
type TCheckboxInputGroupFormProps = {
|
|
1840
|
+
export const DateRangeMenuForm: FC<TDateRangeMenuFormProps>;
|
|
1841
|
+
export type TCheckboxInputGroupFormProps = {
|
|
1067
1842
|
name: string;
|
|
1068
1843
|
form: FormikProps<FormikValues>;
|
|
1069
1844
|
options: {
|
|
@@ -1076,9 +1851,8 @@ type TCheckboxInputGroupFormProps = {
|
|
|
1076
1851
|
onChange?: (value: string) => void;
|
|
1077
1852
|
styles?: TCheckboxInputGroupFormStyles;
|
|
1078
1853
|
};
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
declare const base$4: {
|
|
1854
|
+
export const __DEPRECATED__CheckboxInputGroupForm: FC<TCheckboxInputGroupFormProps>;
|
|
1855
|
+
declare const _base24: {
|
|
1082
1856
|
container: string;
|
|
1083
1857
|
sr: string;
|
|
1084
1858
|
list: string;
|
|
@@ -1091,9 +1865,8 @@ declare const base$4: {
|
|
|
1091
1865
|
description: string;
|
|
1092
1866
|
};
|
|
1093
1867
|
};
|
|
1094
|
-
type TCheckboxInputGroupFormStyles = DeepPartialType<typeof
|
|
1095
|
-
|
|
1096
|
-
type TCheckboxInputFormProps = {
|
|
1868
|
+
export type TCheckboxInputGroupFormStyles = DeepPartialType<typeof _base24>;
|
|
1869
|
+
export type TCheckboxInputFormProps = {
|
|
1097
1870
|
name: string;
|
|
1098
1871
|
title?: string;
|
|
1099
1872
|
description?: string;
|
|
@@ -1114,9 +1887,8 @@ type TCheckboxInputFormProps = {
|
|
|
1114
1887
|
indeterminableElement?: ReactNode;
|
|
1115
1888
|
isIndeterminable?: true;
|
|
1116
1889
|
});
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
declare const base$3: {
|
|
1890
|
+
export const CheckboxInput: FC<TCheckboxInputFormProps>;
|
|
1891
|
+
declare const _base25: {
|
|
1120
1892
|
container: string;
|
|
1121
1893
|
head: string;
|
|
1122
1894
|
body: string;
|
|
@@ -1126,9 +1898,8 @@ declare const base$3: {
|
|
|
1126
1898
|
label: string;
|
|
1127
1899
|
description: string;
|
|
1128
1900
|
};
|
|
1129
|
-
type TCheckboxInputFormStyles = DeepPartialType<typeof
|
|
1130
|
-
|
|
1131
|
-
type TSwitchFormProps = {
|
|
1901
|
+
export type TCheckboxInputFormStyles = DeepPartialType<typeof _base25>;
|
|
1902
|
+
export type TSwitchFormProps = {
|
|
1132
1903
|
name: string;
|
|
1133
1904
|
label?: string;
|
|
1134
1905
|
description?: string;
|
|
@@ -1150,9 +1921,8 @@ type TSwitchFormProps = {
|
|
|
1150
1921
|
iconAccessorChecked: IconName;
|
|
1151
1922
|
iconAccessorUnchecked: IconName;
|
|
1152
1923
|
});
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
declare const styles: {
|
|
1924
|
+
export const SwitchForm: (props: TSwitchFormProps) => import("react/jsx-runtime").JSX.Element;
|
|
1925
|
+
declare const _styles1: {
|
|
1156
1926
|
base: {
|
|
1157
1927
|
label: string;
|
|
1158
1928
|
container: string;
|
|
@@ -1194,11 +1964,11 @@ declare const styles: {
|
|
|
1194
1964
|
};
|
|
1195
1965
|
toggle: {
|
|
1196
1966
|
base: string;
|
|
1967
|
+
checked: string;
|
|
1197
1968
|
};
|
|
1198
1969
|
};
|
|
1199
1970
|
};
|
|
1200
|
-
type TSwitchStylesForm = DeepPartialType<typeof
|
|
1201
|
-
|
|
1971
|
+
export type TSwitchStylesForm = DeepPartialType<typeof _styles1>;
|
|
1202
1972
|
type TFileType = {
|
|
1203
1973
|
name: string;
|
|
1204
1974
|
size: number;
|
|
@@ -1206,7 +1976,7 @@ type TFileType = {
|
|
|
1206
1976
|
blob: string | ArrayBuffer | null;
|
|
1207
1977
|
file: File;
|
|
1208
1978
|
};
|
|
1209
|
-
type TFileInputGroupFormProps = {
|
|
1979
|
+
export type TFileInputGroupFormProps = {
|
|
1210
1980
|
name: string;
|
|
1211
1981
|
label?: string | ReactNode;
|
|
1212
1982
|
description?: string;
|
|
@@ -1229,9 +1999,8 @@ type TFileInputGroupFormProps = {
|
|
|
1229
1999
|
onBlur: FocusEventHandler<HTMLInputElement>;
|
|
1230
2000
|
styles?: TFileInputGroupFormStyles;
|
|
1231
2001
|
};
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
declare const base$2: {
|
|
2002
|
+
export const FileInputGroupForm: FC<TFileInputGroupFormProps>;
|
|
2003
|
+
declare const _base26: {
|
|
1235
2004
|
container: string;
|
|
1236
2005
|
head: string;
|
|
1237
2006
|
body: string;
|
|
@@ -1244,9 +2013,8 @@ declare const base$2: {
|
|
|
1244
2013
|
description: string;
|
|
1245
2014
|
error: string;
|
|
1246
2015
|
};
|
|
1247
|
-
type TFileInputGroupFormStyles = DeepPartialType<typeof
|
|
1248
|
-
|
|
1249
|
-
type TOpeningsHourInputGroupFormProps = {
|
|
2016
|
+
export type TFileInputGroupFormStyles = DeepPartialType<typeof _base26>;
|
|
2017
|
+
export type TOpeningsHourInputGroupFormProps = {
|
|
1250
2018
|
form: FormikContextType<any>;
|
|
1251
2019
|
name: string;
|
|
1252
2020
|
label?: string | ReactNode;
|
|
@@ -1266,9 +2034,8 @@ type TOpeningsHourInputGroupFormProps = {
|
|
|
1266
2034
|
styles?: TOpeningsHourInputGroupFormStyles;
|
|
1267
2035
|
handleDelete?: (id: string) => void;
|
|
1268
2036
|
};
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
declare const base$1: {
|
|
2037
|
+
export const OpeningsHourInputGroupForm: FC<TOpeningsHourInputGroupFormProps>;
|
|
2038
|
+
declare const _base27: {
|
|
1272
2039
|
container: string;
|
|
1273
2040
|
head: string;
|
|
1274
2041
|
body: string;
|
|
@@ -1281,9 +2048,8 @@ declare const base$1: {
|
|
|
1281
2048
|
description: string;
|
|
1282
2049
|
error: string;
|
|
1283
2050
|
};
|
|
1284
|
-
type TOpeningsHourInputGroupFormStyles = DeepPartialType<typeof
|
|
1285
|
-
|
|
1286
|
-
type TAddressInputGroupFormValue = {
|
|
2051
|
+
export type TOpeningsHourInputGroupFormStyles = DeepPartialType<typeof _base27>;
|
|
2052
|
+
export type TAddressInputGroupFormValue = {
|
|
1287
2053
|
country: string;
|
|
1288
2054
|
city: string;
|
|
1289
2055
|
street: string;
|
|
@@ -1294,7 +2060,7 @@ type TAddressInputGroupFormValue = {
|
|
|
1294
2060
|
lng: number;
|
|
1295
2061
|
info?: string;
|
|
1296
2062
|
} | null;
|
|
1297
|
-
type TAddressInputGroupFormProps = {
|
|
2063
|
+
export type TAddressInputGroupFormProps = {
|
|
1298
2064
|
name: string;
|
|
1299
2065
|
label?: string | ReactNode;
|
|
1300
2066
|
description?: string;
|
|
@@ -1314,9 +2080,8 @@ type TAddressInputGroupFormProps = {
|
|
|
1314
2080
|
onFocus: any;
|
|
1315
2081
|
styles?: TAddressInputGroupFormStyles;
|
|
1316
2082
|
};
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
declare const base: {
|
|
2083
|
+
export const AddressInputGroupForm: FC<TAddressInputGroupFormProps>;
|
|
2084
|
+
declare const _base28: {
|
|
1320
2085
|
container: string;
|
|
1321
2086
|
head: string;
|
|
1322
2087
|
body: string;
|
|
@@ -1334,29 +2099,6 @@ declare const base: {
|
|
|
1334
2099
|
suggestsHiddenClassName: string;
|
|
1335
2100
|
};
|
|
1336
2101
|
};
|
|
1337
|
-
type TAddressInputGroupFormStyles = DeepPartialType<typeof
|
|
1338
|
-
|
|
1339
|
-
type TExcelCell = {
|
|
1340
|
-
value: number | string;
|
|
1341
|
-
type?: 'boolean' | 'number' | 'error' | 'string' | 'date';
|
|
1342
|
-
formula?: string;
|
|
1343
|
-
comments?: string;
|
|
1344
|
-
format?: string;
|
|
1345
|
-
link?: string;
|
|
1346
|
-
style?: string;
|
|
1347
|
-
};
|
|
1348
|
-
type TExcelRow = TExcelCell[];
|
|
1349
|
-
type TExcelSheet = {
|
|
1350
|
-
title: string;
|
|
1351
|
-
rows: TExcelRow[];
|
|
1352
|
-
};
|
|
1353
|
-
type TOptions = {
|
|
1354
|
-
fileName: string;
|
|
1355
|
-
};
|
|
1356
|
-
type TReturn<TData> = {
|
|
1357
|
-
generate: (table: Table<TData>, exportData?: TData[]) => TExcelSheet[];
|
|
1358
|
-
write: (sheets: TExcelSheet[], options: TOptions) => void;
|
|
1359
|
-
};
|
|
1360
|
-
declare const useExcel: <TData extends object>() => TReturn<TData>;
|
|
2102
|
+
export type TAddressInputGroupFormStyles = DeepPartialType<typeof _base28>;
|
|
1361
2103
|
|
|
1362
|
-
|
|
2104
|
+
//# sourceMappingURL=index.d.ts.map
|