componentes-sinco 1.0.4 → 1.0.5

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.css ADDED
@@ -0,0 +1,43 @@
1
+ /* src/App.css */
2
+ .red-asterisk {
3
+ color: #D14343;
4
+ }
5
+ input[type=number]::-webkit-inner-spin-button,
6
+ input[type=number]::-webkit-outer-spin-button {
7
+ -webkit-appearance: none;
8
+ margin: 0;
9
+ }
10
+ input[type=number] {
11
+ -moz-appearance: textfield;
12
+ }
13
+ body {
14
+ margin: 0px;
15
+ padding: 0px;
16
+ -ms-overflow-style: none;
17
+ }
18
+ body::-ms-scrollbar-track {
19
+ background: #f1f1f1;
20
+ }
21
+ body::-ms-scrollbar-thumb {
22
+ background: #888;
23
+ }
24
+ ::-webkit-scrollbar {
25
+ width: 14px !important;
26
+ height: 14px !important;
27
+ background: #EAEBEC;
28
+ }
29
+ ::-webkit-scrollbar-thumb {
30
+ background-color: #2063A0;
31
+ border: 3.5px solid #EAEBEC;
32
+ border-radius: 17px;
33
+ }
34
+ .APP5PassWord {
35
+ -webkit-text-security: disc;
36
+ }
37
+ input[type=password]::-ms-reveal {
38
+ display: none !important;
39
+ }
40
+ input[type=password]::-ms-clear {
41
+ display: none !important;
42
+ }
43
+ /*# sourceMappingURL=index.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/App.css"],"sourcesContent":[".red-asterisk {\r\n color: #D14343;\r\n}\r\n\r\ninput[type=number]::-webkit-inner-spin-button,\r\ninput[type=number]::-webkit-outer-spin-button {\r\n -webkit-appearance: none;\r\n margin: 0;\r\n}\r\n\r\ninput[type=number] {\r\n -moz-appearance: textfield;\r\n}\r\n\r\n/*CHROME*/\r\n\r\n\r\n/* Estilo para la pista de la barra de desplazamiento */\r\n/*::-webkit-scrollbar-track {\r\n background: #f1f1f1;*/ /* Color de fondo de la pista */\r\n/*border-radius: 10px;*/ /* Bordes redondeados */\r\n/*}*/\r\n\r\n/* Estilo para el pulgar de la barra de desplazamiento */\r\n\r\n\r\n/* Estilo para el pulgar de la barra de desplazamiento al pasar el ratón */\r\n/*::-webkit-scrollbar-thumb:hover {\r\n background: #555;*/ /* Color del pulgar al pasar el ratón */\r\n/*}*/\r\n\r\n/*EDGE*/\r\n\r\n/* Estilo para la barra de desplazamiento */\r\nbody {\r\n margin: 0px;\r\n padding: 0px;\r\n -ms-overflow-style: none; /* Ocultar la barra de desplazamiento predeterminada */\r\n}\r\n\r\n /* Estilo para la pista de la barra de desplazamiento */\r\n body::-ms-scrollbar-track {\r\n background: #f1f1f1; /* Color de fondo de la pista */\r\n }\r\n\r\n /* Estilo para el pulgar de la barra de desplazamiento */\r\n body::-ms-scrollbar-thumb {\r\n background: #888; /* Color del pulgar */\r\n }\r\n/*FIREFOX*/\r\n\r\n::-webkit-scrollbar {\r\n width: 14px !important;\r\n height: 14px !important;\r\n background: #EAEBEC;\r\n}\r\n\r\n::-webkit-scrollbar-thumb {\r\n background-color: #2063A0;\r\n border: 3.5px solid #EAEBEC;\r\n border-radius: 17px;\r\n}\r\n\r\n.APP5PassWord {\r\n -webkit-text-security: disc;\r\n }\r\n\r\n\r\n input[type=\"password\"]::-ms-reveal {\r\n display: none !important;\r\n }\r\n \r\ninput[type=\"password\"]::-ms-clear {\r\n display: none !important;\r\n }\r\n\r\n \r\n \r\n"],"mappings":";AAAA,CAAC;AACC,SAAO;AACT;AAEA,KAAK,CAAC,YAAY;AAClB,KAAK,CAAC,YAAY;AACd,sBAAoB;AACpB,UAAQ;AACZ;AAEA,KAAK,CAAC;AACF,mBAAiB;AACrB;AAsBA;AACI,UAAQ;AACR,WAAS;AACT,sBAAoB;AACxB;AAGI,IAAI;AACA,cAAY;AAChB;AAGA,IAAI;AACA,cAAY;AAChB;AAGJ;AACI,SAAO;AACP,UAAQ;AACR,cAAY;AAChB;AAEA;AACI,oBAAkB;AAClB,UAAQ,MAAM,MAAM;AACpB,iBAAe;AACnB;AAEA,CAAC;AACG,yBAAuB;AACzB;AAGA,KAAK,CAAC,cAAgB;AAChB,WAAS;AACb;AAEJ,KAAK,CAAC,cAAgB;AACd,WAAS;AACb;","names":[]}
@@ -0,0 +1,464 @@
1
+ import * as React$1 from 'react';
2
+ import React__default, { ComponentType, ReactNode } from 'react';
3
+ import * as Muicon from '@mui/icons-material';
4
+ import * as _mui_material_OverridableComponent from '@mui/material/OverridableComponent';
5
+ import * as _mui_material from '@mui/material';
6
+ import { Dayjs } from 'dayjs';
7
+ import * as _mui_material_styles from '@mui/material/styles';
8
+
9
+ type ReplyPalette$1 = "primary" | "secondary" | "warning" | "info" | "success" | "error" | any;
10
+ type ReplyTextPalette = "primary" | "secondary" | "disabled";
11
+ type ReplyVariants = "outlined" | "filled" | "standard";
12
+ type RepplyButtonVariants = "text" | "contained" | "outlined";
13
+
14
+ declare function capitalize(text: string): string;
15
+
16
+ interface ArrayElement<T> {
17
+ data?: T[];
18
+ columnGroup?: string;
19
+ getItemValue?: (item: T) => {
20
+ icon?: any;
21
+ text: string;
22
+ value: string;
23
+ };
24
+ typeFormat?: "normal" | "multiselect";
25
+ checkMassive?: boolean;
26
+ deleteType?: "button" | "icon";
27
+ type?: 'textField' | 'textArea' | 'select' | 'autocomplete' | 'dateRange';
28
+ title?: string;
29
+ iconTitle?: keyof typeof Muicon;
30
+ infoTitle?: {
31
+ text?: string;
32
+ component?: "tooltip" | "popover";
33
+ };
34
+ label?: string;
35
+ labelDateInitial?: string;
36
+ labelDateFinal?: string;
37
+ placeholder?: string;
38
+ infoElement?: {
39
+ text?: string;
40
+ component?: "tooltip" | "popover";
41
+ };
42
+ iconInputStart?: string;
43
+ iconInputEnd?: string;
44
+ maxLength?: number;
45
+ component?: React.ReactNode;
46
+ variant?: ReplyVariants;
47
+ format?: 'int' | 'text' | 'password' | 'decimal';
48
+ disabled?: boolean;
49
+ required?: boolean;
50
+ size?: 'small' | 'medium';
51
+ width?: string;
52
+ rows?: number;
53
+ color?: ReplyPalette$1;
54
+ background?: string;
55
+ setState?: any | React.Dispatch<React.SetStateAction<string>>;
56
+ state?: any;
57
+ onChange?: () => {};
58
+ onBlur?: () => {};
59
+ onKeyDown?: () => {};
60
+ fnAplicar?: () => void | React.ReactNode;
61
+ inputChange?: (value: string) => void;
62
+ }
63
+ interface DrawerProps<T> {
64
+ title?: string;
65
+ arrayElements?: ArrayElement<T>[];
66
+ actions?: {
67
+ text: string;
68
+ fn: () => void;
69
+ disabled?: boolean;
70
+ }[] | boolean;
71
+ buttonDrawer?: {
72
+ type?: 'chip' | 'button';
73
+ icon?: keyof typeof Muicon | any;
74
+ text?: string;
75
+ color?: ReplyPalette$1 | any;
76
+ variant?: 'text' | 'outlined' | 'contained';
77
+ iconPosition?: 'left' | 'right' | undefined;
78
+ };
79
+ colorTitle?: ReplyTextPalette | ReplyPalette$1 | string;
80
+ anchor?: "left" | "right";
81
+ width?: string;
82
+ open?: boolean;
83
+ }
84
+
85
+ type ToastType = 'success' | 'error' | 'warning' | 'info';
86
+ interface ToastBaseProperties {
87
+ type?: ToastType;
88
+ title: string;
89
+ subtitle?: string;
90
+ time?: number;
91
+ listITems?: string[];
92
+ seeMore?: boolean;
93
+ actions?: {
94
+ text: string;
95
+ fn: () => void;
96
+ disabled?: boolean;
97
+ }[];
98
+ }
99
+
100
+ declare const SCToastNotification: (toast: ToastBaseProperties) => React__default.JSX.Element;
101
+
102
+ declare const useProgress: (timeProgress: number, lote?: number) => {
103
+ progress: number;
104
+ };
105
+ declare const ToastProgress: (timeProgress: number) => {
106
+ progressToast: number;
107
+ };
108
+
109
+ declare function SCDrawer<T>({ title, arrayElements, actions, buttonDrawer, colorTitle, anchor, width, open, }: DrawerProps<T>): React__default.JSX.Element;
110
+
111
+ interface FooterActionsProperties {
112
+ label?: React.ReactNode;
113
+ leftContent?: React.ReactNode;
114
+ rightContent?: React.ReactNode;
115
+ variant?: 'standard' | 'float';
116
+ }
117
+
118
+ declare const FooterAction: ({ leftContent, rightContent, label, variant, }: FooterActionsProperties) => React__default.JSX.Element;
119
+
120
+ declare const modalStateConfig: {
121
+ info: {
122
+ color: string;
123
+ defaultDescription: string;
124
+ icon: React__default.JSX.Element;
125
+ };
126
+ delete: {
127
+ color: string;
128
+ defaultDescription: string;
129
+ icon: React__default.JSX.Element;
130
+ };
131
+ warning: {
132
+ color: string;
133
+ defaultDescription: string;
134
+ icon: React__default.JSX.Element;
135
+ };
136
+ };
137
+
138
+ type ModalStates = 'info' | 'delete' | 'warning';
139
+ interface ModalProps {
140
+ title: string;
141
+ description?: string;
142
+ textButton?: string;
143
+ buttonVariant?: RepplyButtonVariants;
144
+ iconPosition?: 'left' | 'right';
145
+ buttonColor?: ReplyPalette$1;
146
+ state: ModalStates;
147
+ open: boolean;
148
+ action?: {
149
+ text: string;
150
+ fn: () => void;
151
+ disabled?: boolean;
152
+ }[];
153
+ buttonModal?: {
154
+ icon?: string;
155
+ text?: string;
156
+ color?: ReplyPalette$1;
157
+ variant?: 'text' | 'outlined' | 'contained';
158
+ iconPosition?: 'left' | 'right';
159
+ size?: "small" | "medium" | "large";
160
+ };
161
+ }
162
+
163
+ declare const getIconComponent: (iconName?: string) => React.ElementType;
164
+ declare const getModalColor: (state: string) => string;
165
+ declare const getButtonColor: (state: string) => 'inherit' | 'info' | 'error' | 'warning';
166
+
167
+ declare const SCModal: ({ buttonModal, state, open, title, description, action, }: ModalProps) => React__default.JSX.Element;
168
+
169
+ interface MultiSelectProps<T> {
170
+ textButton?: string;
171
+ button?: {
172
+ icon?: string;
173
+ text?: string;
174
+ color?: ReplyPalette$1;
175
+ variant?: RepplyButtonVariants;
176
+ iconPosition?: 'left' | 'right';
177
+ size?: "small" | "medium" | "large";
178
+ };
179
+ topPanel?: React.ReactNode;
180
+ dense?: boolean;
181
+ open: boolean;
182
+ selectAll?: boolean;
183
+ items: T[];
184
+ getItemLabel: (item: T) => string;
185
+ actions?: {
186
+ text: string;
187
+ fn: () => void;
188
+ disabled?: boolean;
189
+ }[];
190
+ }
191
+
192
+ declare function useMultiSelectHandlers<T>(): {
193
+ anchorEl: HTMLButtonElement | null;
194
+ open: boolean;
195
+ selectedItems: T[];
196
+ filterValue: string;
197
+ setSelectedItems: React$1.Dispatch<React$1.SetStateAction<T[]>>;
198
+ handleOpen: (e: React.MouseEvent<HTMLButtonElement>) => void;
199
+ handleClose: () => void;
200
+ handleFilterChange: (e: React.ChangeEvent<HTMLInputElement>) => void;
201
+ handleCheckboxToggle: (item: T) => void;
202
+ setOpen: React$1.Dispatch<React$1.SetStateAction<boolean>>;
203
+ };
204
+
205
+ declare function getIconMultiSelect(name: string): _mui_material_OverridableComponent.OverridableComponent<_mui_material.SvgIconTypeMap<{}, "svg">> & {
206
+ muiName: string;
207
+ };
208
+
209
+ declare function useFilteredItems<T>(items: T[], filterValue: string, getItemLabel: (item: T) => string, selectedItems: T[]): {
210
+ filteredItems: T[];
211
+ sortedItems: T[];
212
+ };
213
+
214
+ declare function MultiSelect<T>({ textButton, button, items, topPanel, actions, dense, open, selectAll, getItemLabel }: MultiSelectProps<T>): React__default.JSX.Element;
215
+
216
+ interface PageheaderProperties {
217
+ title: string | React.ReactNode;
218
+ subtitle?: string | React.ReactNode;
219
+ actions?: React.ReactNode;
220
+ buttonBack?: React.ReactNode;
221
+ fixed?: boolean;
222
+ shadow?: boolean;
223
+ }
224
+
225
+ declare const PageHeader: ({ title, subtitle, actions, buttonBack, fixed, shadow, }: PageheaderProperties) => React__default.JSX.Element;
226
+
227
+ interface SCTextAreaProps {
228
+ title?: string;
229
+ iconTitle?: keyof typeof Muicon;
230
+ infoTitle?: {
231
+ text?: string;
232
+ component?: "tooltip" | "popover";
233
+ };
234
+ colorTitle?: ReplyTextPalette;
235
+ placeholder?: string;
236
+ label?: string;
237
+ width?: string;
238
+ required?: boolean;
239
+ background?: string;
240
+ variant?: ReplyVariants;
241
+ disabled?: boolean;
242
+ rows?: number;
243
+ maxLength?: number;
244
+ state: string;
245
+ setState: React.Dispatch<React.SetStateAction<string>>;
246
+ onBlur?: (event: React.FocusEvent<HTMLInputElement | HTMLTextAreaElement>) => void;
247
+ }
248
+
249
+ declare function getIcon(name?: string): ComponentType | null;
250
+
251
+ declare const SCTextArea: ({ title, iconTitle, infoTitle, label, placeholder, maxLength, variant, disabled, required, width, rows, colorTitle, background, setState, state, onBlur, }: SCTextAreaProps) => React__default.JSX.Element;
252
+
253
+ interface SCTextFieldProps {
254
+ title?: string;
255
+ iconTitle?: string;
256
+ infoTitle?: {
257
+ text?: string;
258
+ component?: "tooltip" | "popover";
259
+ };
260
+ label?: string;
261
+ placeholder?: string;
262
+ color?: ReplyPalette$1;
263
+ width?: string;
264
+ background?: string;
265
+ format?: 'int' | 'text' | 'password' | 'decimal';
266
+ iconInputStart?: string;
267
+ iconInputEnd?: string;
268
+ infoElement?: {
269
+ text?: string;
270
+ component?: "tooltip" | "popover";
271
+ };
272
+ size?: "small" | "medium";
273
+ variant?: "outlined" | "filled" | "standard";
274
+ maxLength?: number;
275
+ disabled?: boolean;
276
+ required?: boolean;
277
+ setState: React.Dispatch<React.SetStateAction<string>>;
278
+ state: string;
279
+ onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
280
+ onBlur?: (event: React.FocusEvent<HTMLInputElement>) => void;
281
+ onKeyDown?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
282
+ }
283
+
284
+ declare const SCTextField: ({ title, iconTitle, infoTitle, label, placeholder, infoElement, iconInputStart, iconInputEnd, maxLength, variant, format, disabled, required, size, width, color, background, setState, state, onChange, onBlur, onKeyDown, }: SCTextFieldProps) => React__default.JSX.Element;
285
+
286
+ interface SCAutocompleteProps<T> {
287
+ label?: string;
288
+ data: T[];
289
+ columnGroup?: string;
290
+ getItemValue: (item: T) => {
291
+ icon?: any;
292
+ text: string;
293
+ value: string;
294
+ component?: any;
295
+ };
296
+ typeFormat?: "normal" | "multiselect";
297
+ checkMassive?: boolean;
298
+ deleteType?: "button" | "icon";
299
+ required?: boolean;
300
+ disabled?: boolean;
301
+ background?: string;
302
+ fnAplicar?: () => void | React__default.ReactNode;
303
+ setState: React__default.Dispatch<React__default.SetStateAction<any>>;
304
+ state: {
305
+ hiddenValue: string | string[];
306
+ textValue: string | string[];
307
+ };
308
+ inputChange?: (value: string) => void;
309
+ maxCheck?: number;
310
+ }
311
+ declare function SCAutocomplete<T>({ label, data, columnGroup, getItemValue, typeFormat, checkMassive, deleteType, fnAplicar, required, disabled, background, setState, state, inputChange, maxCheck, }: SCAutocompleteProps<T>): React__default.JSX.Element;
312
+
313
+ interface SCCalendarSwipeableProps {
314
+ background?: string;
315
+ setState: React__default.Dispatch<React__default.SetStateAction<string>>;
316
+ state: string | any;
317
+ }
318
+ declare const SCCalendarSwipeable: ({ background, setState, state, }: SCCalendarSwipeableProps) => React__default.JSX.Element;
319
+
320
+ interface SCDataGridInitialProps {
321
+ data: any;
322
+ columns: any;
323
+ groupColumns?: any;
324
+ rowsTable?: number;
325
+ checkboxSelection?: boolean;
326
+ width?: string | number;
327
+ maxHeight?: number;
328
+ density?: "compact" | "standard" | "comfortable";
329
+ }
330
+ declare const SCDataGridInitial: ({ data, columns, groupColumns, rowsTable, checkboxSelection, width, maxHeight, density }: SCDataGridInitialProps) => React__default.JSX.Element;
331
+ declare const SCDataGrid: React__default.MemoExoticComponent<({ data, columns, groupColumns, rowsTable, checkboxSelection, width, maxHeight, density }: SCDataGridInitialProps) => React__default.JSX.Element>;
332
+
333
+ type EmptyStateStates = 'create' | 'error' | 'noResult' | 'search';
334
+ type EmptyStateSize = 'small' | 'large';
335
+ interface EmptyStateProperties {
336
+ icon?: ReactNode;
337
+ state?: EmptyStateStates;
338
+ size?: EmptyStateSize;
339
+ title: string;
340
+ subtitle?: string;
341
+ actions?: {
342
+ icon?: string;
343
+ text?: string;
344
+ color?: ReplyPalette$1;
345
+ variant?: 'text' | 'outlined' | 'contained';
346
+ iconPosition?: 'left' | 'right';
347
+ size?: "small" | "medium" | "large";
348
+ onClick?: () => void;
349
+ }[];
350
+ containerHeight?: string;
351
+ }
352
+ declare const EmptyState: ({ state, size, title, subtitle, actions, containerHeight, icon, }: EmptyStateProperties) => React__default.JSX.Element;
353
+
354
+ interface SCDateRangeProps {
355
+ labelDateInitial?: string;
356
+ labelDateFinal?: string;
357
+ required?: boolean;
358
+ disabled?: boolean;
359
+ background?: string;
360
+ state: [Dayjs | null, Dayjs | null];
361
+ setState: React__default.Dispatch<React__default.SetStateAction<[Dayjs | null, Dayjs | null]>>;
362
+ }
363
+ declare const SCDateRange: ({ labelDateInitial, labelDateFinal, required, disabled, background, state, setState, }: SCDateRangeProps) => React__default.JSX.Element;
364
+
365
+ type ReplyPalette = "primary" | "secondary" | "warning" | "info" | "success" | "error" | "inherit";
366
+
367
+ interface Action {
368
+ text?: string;
369
+ fn?: () => void;
370
+ icon?: any | React__default.ReactNode | React__default.ReactElement | React__default.ElementType | null;
371
+ disabled?: boolean;
372
+ color?: ReplyPalette;
373
+ }
374
+ interface SCDialogProps {
375
+ title?: string;
376
+ iconTitle?: React__default.ReactNode | React__default.ReactElement | keyof typeof Muicon;
377
+ subtitle?: string;
378
+ content?: any;
379
+ actions?: Action[];
380
+ buttonDialog?: {
381
+ icon?: string;
382
+ text?: string;
383
+ color?: ReplyPalette;
384
+ tooltip?: string;
385
+ variant?: 'text' | 'outlined' | 'contained';
386
+ iconPosition?: 'left' | 'right' | undefined;
387
+ };
388
+ disableClose?: boolean;
389
+ dividers?: boolean;
390
+ widthContent?: 'extra-small' | 'small' | 'medium' | 'large' | 'extra-large';
391
+ heightContent?: string;
392
+ background?: string;
393
+ setShow?: React__default.Dispatch<React__default.SetStateAction<boolean>>;
394
+ show?: boolean | any;
395
+ }
396
+ declare const SCDialog: ({ title, iconTitle, subtitle, content, actions, buttonDialog, disableClose, dividers, widthContent, heightContent, background, setShow, show }: SCDialogProps) => React__default.JSX.Element;
397
+
398
+ interface Option$1 {
399
+ name?: string;
400
+ iconLeft?: any | React__default.ReactNode | React__default.ReactElement | React__default.ElementType | null;
401
+ iconRight?: any | React__default.ReactNode | React__default.ReactElement | React__default.ElementType | null;
402
+ divider?: boolean;
403
+ page: React__default.ReactNode | React__default.ReactElement;
404
+ }
405
+ interface SCMenuProps {
406
+ header?: any;
407
+ options: Option$1[];
408
+ defaultOption?: string;
409
+ disable?: boolean;
410
+ widthMenu?: string;
411
+ heightMenu?: string;
412
+ widthPage?: string;
413
+ }
414
+ declare const SCMenu: ({ header, options, defaultOption, disable, widthMenu, heightMenu, widthPage }: SCMenuProps) => React__default.JSX.Element;
415
+
416
+ interface SCSelectProps<T> {
417
+ label?: string;
418
+ data: T[];
419
+ getItemValue: (item: T) => {
420
+ icon?: any;
421
+ text: string;
422
+ value: string;
423
+ };
424
+ width?: string;
425
+ size?: "small" | "medium";
426
+ variant?: "outlined" | "filled" | "standard";
427
+ deleteType?: "button" | "icon";
428
+ required?: boolean;
429
+ disabled?: boolean;
430
+ background?: string;
431
+ fnAplicar?: () => void | React__default.ReactNode;
432
+ setState: React__default.Dispatch<React__default.SetStateAction<any>>;
433
+ state: {
434
+ hiddenValue: string;
435
+ textValue: string;
436
+ };
437
+ }
438
+ declare function SCSelect<T>({ label, data, getItemValue, width, size, variant, deleteType, required, disabled, background, fnAplicar, setState, state, }: SCSelectProps<T>): React__default.JSX.Element;
439
+
440
+ interface Option {
441
+ name?: string;
442
+ iconOrBadge: string | number | null | undefined | any | React__default.ReactNode | React__default.ReactElement | React__default.ElementType;
443
+ disabled?: boolean;
444
+ page: React__default.ReactNode | React__default.ReactElement;
445
+ }
446
+ interface SCTabsProps {
447
+ options: Option[];
448
+ defaultOption?: string;
449
+ typeIcon?: "badge" | "icon";
450
+ background?: string;
451
+ iconPosition?: "top" | "bottom" | "start" | "end";
452
+ colorTab?: "secondary" | "primary";
453
+ orientation?: "horizontal" | "vertical";
454
+ variant?: "standard" | "fullWidth" | "scrollable";
455
+ scrollButtons?: boolean;
456
+ children?: any;
457
+ }
458
+ declare const SCTabs: ({ options, defaultOption, typeIcon, background, iconPosition, colorTab, orientation, variant, scrollButtons, children }: SCTabsProps) => React__default.JSX.Element;
459
+
460
+ declare const SincoTheme: _mui_material_styles.Theme;
461
+ declare let AdproSincoTheme: _mui_material_styles.Theme;
462
+ declare let ADCSincoTheme: _mui_material_styles.Theme;
463
+
464
+ export { ADCSincoTheme, AdproSincoTheme, EmptyState, type EmptyStateProperties, type EmptyStateSize, type EmptyStateStates, FooterAction, type FooterActionsProperties, type ModalProps, type ModalStates, MultiSelect, type MultiSelectProps, PageHeader, type PageheaderProperties, type ReplyPalette$1 as ReplyPalette, type ReplyTextPalette, type ReplyVariants, type RepplyButtonVariants, SCAutocomplete, SCCalendarSwipeable, SCDataGrid, SCDataGridInitial, SCDateRange, SCDialog, SCDrawer, SCMenu, SCModal, SCSelect, SCTabs, SCTextArea, type SCTextAreaProps, SCTextField, type SCTextFieldProps, SCToastNotification, SincoTheme, type ToastBaseProperties, ToastProgress, type ToastType, capitalize, getButtonColor, getIcon, getIconComponent, getIconMultiSelect, getModalColor, modalStateConfig, useFilteredItems, useMultiSelectHandlers, useProgress };