@comercti/react-components 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/comerc-style-guide.cjs.js +28 -25
- package/comerc-style-guide.es.js +2183 -2080
- package/comerc-style-guide.umd.js +29 -26
- package/index.d.ts +294 -222
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { ComponentProvideOptions } from 'vue';
|
|
|
3
3
|
import { default as default_2 } from 'react';
|
|
4
4
|
import { DefineComponent } from 'vue';
|
|
5
5
|
import { IData } from './toast/interfaces';
|
|
6
|
-
import { ItensMenu
|
|
6
|
+
import { ItensMenu } from '../../../../../../../../../src/components/menu/interfaces';
|
|
7
7
|
import { IVariants as IVariants_2 } from './interfaces';
|
|
8
8
|
import { PublicProps } from 'vue';
|
|
9
9
|
import { Ref } from 'vue';
|
|
@@ -12,11 +12,17 @@ import { VNode } from 'vue';
|
|
|
12
12
|
declare const __VLS_component: DefineComponent<DataTableProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
13
13
|
"update:modelValue": (value: Record<string, any>[]) => any;
|
|
14
14
|
updateSelected: (value: Record<string, any>[]) => any;
|
|
15
|
-
orderBy: (value:
|
|
15
|
+
orderBy: (value: {
|
|
16
|
+
key: string;
|
|
17
|
+
order: "asc" | "desc";
|
|
18
|
+
}) => any;
|
|
16
19
|
}, string, PublicProps, Readonly<DataTableProps> & Readonly<{
|
|
17
20
|
"onUpdate:modelValue"?: (value: Record<string, any>[]) => any;
|
|
18
21
|
onUpdateSelected?: (value: Record<string, any>[]) => any;
|
|
19
|
-
onOrderBy?: (value:
|
|
22
|
+
onOrderBy?: (value: {
|
|
23
|
+
key: string;
|
|
24
|
+
order: "asc" | "desc";
|
|
25
|
+
}) => any;
|
|
20
26
|
}>, {
|
|
21
27
|
search: boolean;
|
|
22
28
|
selectable: boolean;
|
|
@@ -27,25 +33,32 @@ expandLine: boolean;
|
|
|
27
33
|
rootRef: HTMLDivElement;
|
|
28
34
|
}, HTMLDivElement>;
|
|
29
35
|
|
|
30
|
-
declare const __VLS_component_10: DefineComponent<
|
|
36
|
+
declare const __VLS_component_10: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{}>, {
|
|
37
|
+
tag: string;
|
|
38
|
+
noGutters: boolean;
|
|
39
|
+
dense: boolean;
|
|
40
|
+
noCols: boolean;
|
|
41
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
42
|
+
|
|
43
|
+
declare const __VLS_component_11: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{}>, {
|
|
31
44
|
block: boolean;
|
|
32
45
|
tag: string;
|
|
33
46
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
34
47
|
|
|
35
|
-
declare const
|
|
36
|
-
redirect: (item: SubMenu |
|
|
48
|
+
declare const __VLS_component_12: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
49
|
+
redirect: (item: SubMenu | ItensMenu_2) => any;
|
|
37
50
|
backToHome: (value: boolean) => any;
|
|
38
51
|
logout: (value: boolean) => any;
|
|
39
52
|
}, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{
|
|
40
|
-
onRedirect?: (item: SubMenu |
|
|
53
|
+
onRedirect?: (item: SubMenu | ItensMenu_2) => any;
|
|
41
54
|
onBackToHome?: (value: boolean) => any;
|
|
42
55
|
onLogout?: (value: boolean) => any;
|
|
43
56
|
}>, {
|
|
44
|
-
|
|
45
|
-
|
|
57
|
+
itemsMenu: ItensMenu_2[];
|
|
58
|
+
itemsMenuMyService: ItensMenu_2[];
|
|
46
59
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
47
60
|
|
|
48
|
-
declare const
|
|
61
|
+
declare const __VLS_component_13: DefineComponent<IBreadcrumbsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
49
62
|
"update:modelValue": (path: string) => any;
|
|
50
63
|
redirect: (path: string) => any;
|
|
51
64
|
}, string, PublicProps, Readonly<IBreadcrumbsProps> & Readonly<{
|
|
@@ -57,7 +70,7 @@ home: string;
|
|
|
57
70
|
divider: "/" | ">";
|
|
58
71
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
59
72
|
|
|
60
|
-
declare const
|
|
73
|
+
declare const __VLS_component_14: DefineComponent<ITabsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
61
74
|
updateValue: (value: string) => any;
|
|
62
75
|
}, string, PublicProps, Readonly<ITabsProps> & Readonly<{
|
|
63
76
|
onUpdateValue?: (value: string) => any;
|
|
@@ -67,9 +80,9 @@ initialTab: string;
|
|
|
67
80
|
inactivate: boolean;
|
|
68
81
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
69
82
|
|
|
70
|
-
declare const
|
|
83
|
+
declare const __VLS_component_15: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
71
84
|
|
|
72
|
-
declare const
|
|
85
|
+
declare const __VLS_component_16: DefineComponent<__VLS_Props_21, {
|
|
73
86
|
rootRef: Ref<HTMLElement, HTMLElement>;
|
|
74
87
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
75
88
|
click: (event: MouseEvent) => any;
|
|
@@ -86,7 +99,7 @@ badgeOffsetBottom: number;
|
|
|
86
99
|
rootRef: HTMLDivElement;
|
|
87
100
|
}, any>;
|
|
88
101
|
|
|
89
|
-
declare const
|
|
102
|
+
declare const __VLS_component_17: DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
90
103
|
submit: () => any;
|
|
91
104
|
clear: () => any;
|
|
92
105
|
}, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{
|
|
@@ -104,7 +117,7 @@ disabledClear: boolean;
|
|
|
104
117
|
menuRef: HTMLDivElement;
|
|
105
118
|
}, HTMLDivElement>;
|
|
106
119
|
|
|
107
|
-
declare const
|
|
120
|
+
declare const __VLS_component_18: DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{}>, {
|
|
108
121
|
color: "primary" | "secondary" | "success" | "danger" | "warning";
|
|
109
122
|
size: "sm" | "md" | "lg";
|
|
110
123
|
rounded: "sm" | "md" | "lg";
|
|
@@ -112,7 +125,7 @@ variant: "solid" | "outline" | "ghost";
|
|
|
112
125
|
status: boolean;
|
|
113
126
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
114
127
|
|
|
115
|
-
declare const
|
|
128
|
+
declare const __VLS_component_19: DefineComponent<__VLS_Props_24, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
116
129
|
close: (value: boolean) => any;
|
|
117
130
|
}, string, PublicProps, Readonly<__VLS_Props_24> & Readonly<{
|
|
118
131
|
onClose?: (value: boolean) => any;
|
|
@@ -124,23 +137,12 @@ background: "1" | "2";
|
|
|
124
137
|
showIcon: boolean;
|
|
125
138
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
126
139
|
|
|
127
|
-
declare const
|
|
128
|
-
close: (value: boolean) => any;
|
|
129
|
-
}, string, PublicProps, Readonly<__VLS_Props_25> & Readonly<{
|
|
130
|
-
onClose?: (value: boolean) => any;
|
|
131
|
-
}>, {
|
|
132
|
-
isOpen: boolean;
|
|
133
|
-
background: "1" | "2";
|
|
134
|
-
closeOutside: boolean;
|
|
135
|
-
showCloseButton: boolean;
|
|
136
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
137
|
-
|
|
138
|
-
declare const __VLS_component_2: DefineComponent<__VLS_Props_3, {
|
|
140
|
+
declare const __VLS_component_2: DefineComponent<__VLS_Props_4, {
|
|
139
141
|
/** Focus button */
|
|
140
142
|
focus: () => void;
|
|
141
143
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
142
144
|
click: (event: MouseEvent) => any;
|
|
143
|
-
}, string, PublicProps, Readonly<
|
|
145
|
+
}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{
|
|
144
146
|
onClick?: (event: MouseEvent) => any;
|
|
145
147
|
}>, {
|
|
146
148
|
disabled: boolean;
|
|
@@ -152,12 +154,23 @@ variant: tipoVariante;
|
|
|
152
154
|
buttonRef: unknown;
|
|
153
155
|
}, any>;
|
|
154
156
|
|
|
155
|
-
declare const __VLS_component_20: DefineComponent<
|
|
157
|
+
declare const __VLS_component_20: DefineComponent<__VLS_Props_25, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
158
|
+
close: (value: boolean) => any;
|
|
159
|
+
}, string, PublicProps, Readonly<__VLS_Props_25> & Readonly<{
|
|
160
|
+
onClose?: (value: boolean) => any;
|
|
161
|
+
}>, {
|
|
162
|
+
isOpen: boolean;
|
|
163
|
+
background: "1" | "2";
|
|
164
|
+
closeOutside: boolean;
|
|
165
|
+
showCloseButton: boolean;
|
|
166
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
167
|
+
|
|
168
|
+
declare const __VLS_component_21: DefineComponent<__VLS_Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{}>, {
|
|
156
169
|
focus: boolean;
|
|
157
170
|
location: "left" | "top" | "right" | "bottom";
|
|
158
171
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
159
172
|
|
|
160
|
-
declare const
|
|
173
|
+
declare const __VLS_component_22: DefineComponent<__VLS_Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{}>, {
|
|
161
174
|
color: number;
|
|
162
175
|
rounded: boolean;
|
|
163
176
|
tag: string;
|
|
@@ -169,29 +182,29 @@ responsive: boolean;
|
|
|
169
182
|
rootRef: unknown;
|
|
170
183
|
}, any>;
|
|
171
184
|
|
|
172
|
-
declare const
|
|
185
|
+
declare const __VLS_component_23: DefineComponent<__VLS_Props_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_29> & Readonly<{}>, {
|
|
173
186
|
tag: string;
|
|
174
187
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
175
188
|
|
|
176
|
-
declare const
|
|
189
|
+
declare const __VLS_component_24: DefineComponent<__VLS_Props_30, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_30> & Readonly<{}>, {
|
|
177
190
|
tag: string;
|
|
178
191
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
179
192
|
|
|
180
|
-
declare const
|
|
193
|
+
declare const __VLS_component_25: DefineComponent<__VLS_Props_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_31> & Readonly<{}>, {
|
|
181
194
|
type: "inline" | "centralized" | "highlighted";
|
|
182
195
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
183
196
|
|
|
184
|
-
declare const
|
|
197
|
+
declare const __VLS_component_26: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{}>, {
|
|
185
198
|
openMenu: boolean;
|
|
186
199
|
layout: "default" | "base";
|
|
187
200
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
188
201
|
|
|
189
202
|
declare const __VLS_component_3: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
190
203
|
|
|
191
|
-
declare const __VLS_component_4: DefineComponent<
|
|
204
|
+
declare const __VLS_component_4: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
192
205
|
"update:modelValue": (value: boolean | CustomEvent<any>) => any;
|
|
193
206
|
change: (value: boolean | CustomEvent<any>) => any;
|
|
194
|
-
}, string, PublicProps, Readonly<
|
|
207
|
+
}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{
|
|
195
208
|
"onUpdate:modelValue"?: (value: boolean | CustomEvent<any>) => any;
|
|
196
209
|
onChange?: (value: boolean | CustomEvent<any>) => any;
|
|
197
210
|
}>, {
|
|
@@ -202,11 +215,11 @@ disabled: boolean;
|
|
|
202
215
|
rootRef: HTMLDivElement;
|
|
203
216
|
}, any>;
|
|
204
217
|
|
|
205
|
-
declare const __VLS_component_5: DefineComponent<
|
|
218
|
+
declare const __VLS_component_5: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
206
219
|
"update:modelValue": (value: CustomEvent<any> | Date) => any;
|
|
207
220
|
"update:start": (value: CustomEvent<any> | Date) => any;
|
|
208
221
|
"update:end": (value: CustomEvent<any> | Date) => any;
|
|
209
|
-
}, string, PublicProps, Readonly<
|
|
222
|
+
}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{
|
|
210
223
|
"onUpdate:modelValue"?: (value: CustomEvent<any> | Date) => any;
|
|
211
224
|
"onUpdate:start"?: (value: CustomEvent<any> | Date) => any;
|
|
212
225
|
"onUpdate:end"?: (value: CustomEvent<any> | Date) => any;
|
|
@@ -221,7 +234,22 @@ modal: boolean;
|
|
|
221
234
|
rootRef: HTMLDivElement;
|
|
222
235
|
}, any>;
|
|
223
236
|
|
|
224
|
-
declare const __VLS_component_6: DefineComponent<
|
|
237
|
+
declare const __VLS_component_6: DefineComponent<DropdownProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
238
|
+
"update:modelValue": (value: IReturn | Coluna[]) => any;
|
|
239
|
+
selected: (value: Coluna[]) => any;
|
|
240
|
+
redirect: (item: ItensMenu_2) => any;
|
|
241
|
+
}, string, PublicProps, Readonly<DropdownProps> & Readonly<{
|
|
242
|
+
"onUpdate:modelValue"?: (value: IReturn | Coluna[]) => any;
|
|
243
|
+
onSelected?: (value: Coluna[]) => any;
|
|
244
|
+
onRedirect?: (item: ItensMenu_2) => any;
|
|
245
|
+
}>, {
|
|
246
|
+
type: "menu" | "selection";
|
|
247
|
+
variant: "outlined" | "text";
|
|
248
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
249
|
+
dropdownRef: HTMLDivElement;
|
|
250
|
+
}, HTMLDivElement>;
|
|
251
|
+
|
|
252
|
+
declare const __VLS_component_7: DefineComponent<__VLS_Props_11, {
|
|
225
253
|
/** focus input */
|
|
226
254
|
focus: () => void;
|
|
227
255
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
@@ -246,7 +274,7 @@ rootRef: HTMLDivElement;
|
|
|
246
274
|
inputRef: HTMLInputElement;
|
|
247
275
|
}, any>;
|
|
248
276
|
|
|
249
|
-
declare const
|
|
277
|
+
declare const __VLS_component_8: DefineComponent<CeSelectFieldProps, {
|
|
250
278
|
/** Focus select */
|
|
251
279
|
focus: () => void;
|
|
252
280
|
/** Abre/Fecha dropdown do select */
|
|
@@ -275,18 +303,11 @@ inputRef: HTMLDivElement;
|
|
|
275
303
|
searchInputRef: HTMLInputElement;
|
|
276
304
|
}, any>;
|
|
277
305
|
|
|
278
|
-
declare const
|
|
306
|
+
declare const __VLS_component_9: DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{}>, {
|
|
279
307
|
cols: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto";
|
|
280
308
|
tag: string;
|
|
281
309
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
282
310
|
|
|
283
|
-
declare const __VLS_component_9: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{}>, {
|
|
284
|
-
tag: string;
|
|
285
|
-
noGutters: boolean;
|
|
286
|
-
dense: boolean;
|
|
287
|
-
noCols: boolean;
|
|
288
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
289
|
-
|
|
290
311
|
declare type __VLS_Props = {
|
|
291
312
|
/** Indica o progresso */
|
|
292
313
|
progress: number;
|
|
@@ -374,6 +395,8 @@ declare type __VLS_Props_13 = {
|
|
|
374
395
|
id: string;
|
|
375
396
|
/** Informa que está invalido */
|
|
376
397
|
invalid?: boolean;
|
|
398
|
+
/** Label do toggle */
|
|
399
|
+
label?: string;
|
|
377
400
|
};
|
|
378
401
|
|
|
379
402
|
declare type __VLS_Props_14 = {
|
|
@@ -462,11 +485,11 @@ declare type __VLS_Props_17 = {
|
|
|
462
485
|
|
|
463
486
|
declare type __VLS_Props_18 = {
|
|
464
487
|
/** Array de opções do menu meu serviços */
|
|
465
|
-
itemsMenuMyService:
|
|
488
|
+
itemsMenuMyService: ItensMenu_2[];
|
|
466
489
|
/** Array de opções do menuSidebar para versão mobile */
|
|
467
|
-
itemsMenu?:
|
|
490
|
+
itemsMenu?: ItensMenu_2[];
|
|
468
491
|
/** Array de módulos */
|
|
469
|
-
itemsModules?:
|
|
492
|
+
itemsModules?: ItensMenu_2[];
|
|
470
493
|
/** Nome do usuário */
|
|
471
494
|
name?: string;
|
|
472
495
|
/** Email do usuário */
|
|
@@ -475,7 +498,7 @@ declare type __VLS_Props_18 = {
|
|
|
475
498
|
|
|
476
499
|
declare type __VLS_Props_19 = {
|
|
477
500
|
/** Array de opções do menu */
|
|
478
|
-
items:
|
|
501
|
+
items: ItensMenu_2[];
|
|
479
502
|
/** Define se o menu está na home */
|
|
480
503
|
isHome?: boolean;
|
|
481
504
|
/** Define se o input de pesquisa será exibido */
|
|
@@ -485,12 +508,14 @@ declare type __VLS_Props_19 = {
|
|
|
485
508
|
};
|
|
486
509
|
|
|
487
510
|
declare type __VLS_Props_2 = {
|
|
488
|
-
/**
|
|
489
|
-
|
|
490
|
-
/**
|
|
491
|
-
|
|
492
|
-
/**
|
|
493
|
-
|
|
511
|
+
/** Define o label do componente */
|
|
512
|
+
label: string;
|
|
513
|
+
/** Define os valores exibidos no select */
|
|
514
|
+
options: number[];
|
|
515
|
+
/** Desabilita o componente */
|
|
516
|
+
disabled?: boolean;
|
|
517
|
+
/** Define a direção do texto */
|
|
518
|
+
textDirection?: 'left' | 'right';
|
|
494
519
|
};
|
|
495
520
|
|
|
496
521
|
declare type __VLS_Props_20 = {
|
|
@@ -624,18 +649,12 @@ declare type __VLS_Props_29 = {
|
|
|
624
649
|
};
|
|
625
650
|
|
|
626
651
|
declare type __VLS_Props_3 = {
|
|
627
|
-
/**
|
|
628
|
-
|
|
629
|
-
/**
|
|
630
|
-
|
|
631
|
-
/**
|
|
632
|
-
|
|
633
|
-
/** ID única do button */
|
|
634
|
-
id?: string;
|
|
635
|
-
/** Abrange toda a largura de um elemento para o button */
|
|
636
|
-
block?: boolean;
|
|
637
|
-
/** Desativa o button */
|
|
638
|
-
disabled?: boolean;
|
|
652
|
+
/** Array de string com as opções do menu */
|
|
653
|
+
items: string[];
|
|
654
|
+
/** texto para o placeholder */
|
|
655
|
+
placeholder: string;
|
|
656
|
+
/** Valor para two-way binding (v-model) */
|
|
657
|
+
modelValue?: string;
|
|
639
658
|
};
|
|
640
659
|
|
|
641
660
|
declare type __VLS_Props_30 = {
|
|
@@ -651,7 +670,7 @@ declare type __VLS_Props_31 = {
|
|
|
651
670
|
declare type __VLS_Props_32 = {
|
|
652
671
|
variant: '1' | '2' | '3' | '4' | '5';
|
|
653
672
|
background: 'white' | 'green';
|
|
654
|
-
items?:
|
|
673
|
+
items?: ItensMenu[];
|
|
655
674
|
socialMedia?: ISocialMedia[];
|
|
656
675
|
};
|
|
657
676
|
|
|
@@ -671,6 +690,21 @@ declare type __VLS_Props_34 = {
|
|
|
671
690
|
};
|
|
672
691
|
|
|
673
692
|
declare type __VLS_Props_4 = {
|
|
693
|
+
/** Tipo do button (`attrs:to` ou `attrs:href` podem sobrepor essa regra) */
|
|
694
|
+
type?: 'button' | 'submit' | 'a';
|
|
695
|
+
/** Variante de cores do button */
|
|
696
|
+
variant?: tipoVariante;
|
|
697
|
+
/** Arredondamento do button */
|
|
698
|
+
rounded?: 'small' | 'medium' | 'large';
|
|
699
|
+
/** ID única do button */
|
|
700
|
+
id?: string;
|
|
701
|
+
/** Abrange toda a largura de um elemento para o button */
|
|
702
|
+
block?: boolean;
|
|
703
|
+
/** Desativa o button */
|
|
704
|
+
disabled?: boolean;
|
|
705
|
+
};
|
|
706
|
+
|
|
707
|
+
declare type __VLS_Props_5 = {
|
|
674
708
|
/** Define o id do botão */
|
|
675
709
|
id: string | number;
|
|
676
710
|
/** Define o texto do botão */
|
|
@@ -683,7 +717,7 @@ declare type __VLS_Props_4 = {
|
|
|
683
717
|
disabled?: boolean;
|
|
684
718
|
};
|
|
685
719
|
|
|
686
|
-
declare type
|
|
720
|
+
declare type __VLS_Props_6 = {
|
|
687
721
|
/** Define o total de páginas */
|
|
688
722
|
totalPage: number;
|
|
689
723
|
/** Define a página atual */
|
|
@@ -692,7 +726,7 @@ declare type __VLS_Props_5 = {
|
|
|
692
726
|
modelValue?: number;
|
|
693
727
|
};
|
|
694
728
|
|
|
695
|
-
declare type
|
|
729
|
+
declare type __VLS_Props_7 = {
|
|
696
730
|
/** Valor do checkbox para two-way binding (v-model) */
|
|
697
731
|
modelValue?: ModelValueType;
|
|
698
732
|
/** ID única do checkbox */
|
|
@@ -717,7 +751,7 @@ declare type __VLS_Props_6 = {
|
|
|
717
751
|
indeterminate?: boolean;
|
|
718
752
|
};
|
|
719
753
|
|
|
720
|
-
declare type
|
|
754
|
+
declare type __VLS_Props_8 = {
|
|
721
755
|
/** Valor para two-way binding (v-model) */
|
|
722
756
|
modelValue?: boolean;
|
|
723
757
|
/** ID única do input */
|
|
@@ -732,7 +766,7 @@ declare type __VLS_Props_7 = {
|
|
|
732
766
|
disabled?: boolean;
|
|
733
767
|
};
|
|
734
768
|
|
|
735
|
-
declare type
|
|
769
|
+
declare type __VLS_Props_9 = {
|
|
736
770
|
modelValue?: Date | string | null;
|
|
737
771
|
start?: Date | string | null;
|
|
738
772
|
end?: Date | string | null;
|
|
@@ -760,19 +794,6 @@ declare type __VLS_Props_8 = {
|
|
|
760
794
|
noAlertIcon?: boolean;
|
|
761
795
|
};
|
|
762
796
|
|
|
763
|
-
declare type __VLS_Props_9 = {
|
|
764
|
-
/** Array de itens para o dropdown */
|
|
765
|
-
items: ItensMenu[];
|
|
766
|
-
/** Define o layout do botão */
|
|
767
|
-
variant?: 'default' | 'outlined' | 'text';
|
|
768
|
-
/** Define a cor do botão */
|
|
769
|
-
color?: string;
|
|
770
|
-
/** Define o texto do botão */
|
|
771
|
-
text: string;
|
|
772
|
-
/** Valor para two-way binding (v-model) */
|
|
773
|
-
modelValue?: boolean;
|
|
774
|
-
};
|
|
775
|
-
|
|
776
797
|
declare function __VLS_template(): {
|
|
777
798
|
attrs: Partial<{}>;
|
|
778
799
|
slots: Readonly<NonNullable<{
|
|
@@ -821,6 +842,19 @@ declare function __VLS_template(): {
|
|
|
821
842
|
};
|
|
822
843
|
|
|
823
844
|
declare function __VLS_template_10(): {
|
|
845
|
+
attrs: Partial<{}>;
|
|
846
|
+
slots: Readonly<{
|
|
847
|
+
/** Adicione conteúdo dentro do row */
|
|
848
|
+
default?: () => VNode[];
|
|
849
|
+
}> & {
|
|
850
|
+
/** Adicione conteúdo dentro do row */
|
|
851
|
+
default?: () => VNode[];
|
|
852
|
+
};
|
|
853
|
+
refs: {};
|
|
854
|
+
rootEl: any;
|
|
855
|
+
};
|
|
856
|
+
|
|
857
|
+
declare function __VLS_template_11(): {
|
|
824
858
|
attrs: Partial<{}>;
|
|
825
859
|
slots: Readonly<{
|
|
826
860
|
/** Adicione conteúdo dentro do container */
|
|
@@ -837,7 +871,7 @@ declare function __VLS_template_10(): {
|
|
|
837
871
|
rootEl: any;
|
|
838
872
|
};
|
|
839
873
|
|
|
840
|
-
declare function
|
|
874
|
+
declare function __VLS_template_12(): {
|
|
841
875
|
attrs: Partial<{}>;
|
|
842
876
|
slots: Readonly<{
|
|
843
877
|
/** Adiciona conteúdo na direta do menu */
|
|
@@ -858,7 +892,7 @@ declare function __VLS_template_11(): {
|
|
|
858
892
|
rootEl: any;
|
|
859
893
|
};
|
|
860
894
|
|
|
861
|
-
declare function
|
|
895
|
+
declare function __VLS_template_13(): {
|
|
862
896
|
attrs: Partial<{}>;
|
|
863
897
|
slots: Readonly<{
|
|
864
898
|
/** Define o slot de ícone */
|
|
@@ -871,7 +905,7 @@ declare function __VLS_template_12(): {
|
|
|
871
905
|
rootEl: HTMLDivElement;
|
|
872
906
|
};
|
|
873
907
|
|
|
874
|
-
declare function
|
|
908
|
+
declare function __VLS_template_14(): {
|
|
875
909
|
attrs: Partial<{}>;
|
|
876
910
|
slots: {
|
|
877
911
|
default?(_: {}): any;
|
|
@@ -880,7 +914,7 @@ declare function __VLS_template_13(): {
|
|
|
880
914
|
rootEl: any;
|
|
881
915
|
};
|
|
882
916
|
|
|
883
|
-
declare function
|
|
917
|
+
declare function __VLS_template_15(): {
|
|
884
918
|
attrs: Partial<{}>;
|
|
885
919
|
slots: {
|
|
886
920
|
default?(_: {}): any;
|
|
@@ -889,7 +923,7 @@ declare function __VLS_template_14(): {
|
|
|
889
923
|
rootEl: any;
|
|
890
924
|
};
|
|
891
925
|
|
|
892
|
-
declare function
|
|
926
|
+
declare function __VLS_template_16(): {
|
|
893
927
|
attrs: Partial<{}>;
|
|
894
928
|
slots: Readonly<{
|
|
895
929
|
/** Adicione conteúdo no slot do Avatar */
|
|
@@ -908,7 +942,7 @@ declare function __VLS_template_15(): {
|
|
|
908
942
|
rootEl: any;
|
|
909
943
|
};
|
|
910
944
|
|
|
911
|
-
declare function
|
|
945
|
+
declare function __VLS_template_17(): {
|
|
912
946
|
attrs: Partial<{}>;
|
|
913
947
|
slots: Readonly<{
|
|
914
948
|
/** Slot para o conteúdo do filtro */
|
|
@@ -923,7 +957,7 @@ declare function __VLS_template_16(): {
|
|
|
923
957
|
rootEl: HTMLDivElement;
|
|
924
958
|
};
|
|
925
959
|
|
|
926
|
-
declare function
|
|
960
|
+
declare function __VLS_template_18(): {
|
|
927
961
|
attrs: Partial<{}>;
|
|
928
962
|
slots: Readonly<{
|
|
929
963
|
/** Adicione conteúdo dentro do badge */
|
|
@@ -936,7 +970,7 @@ declare function __VLS_template_17(): {
|
|
|
936
970
|
rootEl: any;
|
|
937
971
|
};
|
|
938
972
|
|
|
939
|
-
declare function
|
|
973
|
+
declare function __VLS_template_19(): {
|
|
940
974
|
attrs: Partial<{}>;
|
|
941
975
|
slots: Readonly<{
|
|
942
976
|
/** Slot para o icone do banner */
|
|
@@ -953,15 +987,6 @@ declare function __VLS_template_18(): {
|
|
|
953
987
|
rootEl: any;
|
|
954
988
|
};
|
|
955
989
|
|
|
956
|
-
declare function __VLS_template_19(): {
|
|
957
|
-
attrs: Partial<{}>;
|
|
958
|
-
slots: {
|
|
959
|
-
default?(_: {}): any;
|
|
960
|
-
};
|
|
961
|
-
refs: {};
|
|
962
|
-
rootEl: any;
|
|
963
|
-
};
|
|
964
|
-
|
|
965
990
|
declare function __VLS_template_2(): {
|
|
966
991
|
attrs: Partial<{}>;
|
|
967
992
|
slots: Readonly<{
|
|
@@ -978,6 +1003,15 @@ declare function __VLS_template_2(): {
|
|
|
978
1003
|
};
|
|
979
1004
|
|
|
980
1005
|
declare function __VLS_template_20(): {
|
|
1006
|
+
attrs: Partial<{}>;
|
|
1007
|
+
slots: {
|
|
1008
|
+
default?(_: {}): any;
|
|
1009
|
+
};
|
|
1010
|
+
refs: {};
|
|
1011
|
+
rootEl: any;
|
|
1012
|
+
};
|
|
1013
|
+
|
|
1014
|
+
declare function __VLS_template_21(): {
|
|
981
1015
|
attrs: Partial<{}>;
|
|
982
1016
|
slots: Readonly<{
|
|
983
1017
|
/** Permite passar qualquer elemento como ativador do tooltip */
|
|
@@ -990,7 +1024,7 @@ declare function __VLS_template_20(): {
|
|
|
990
1024
|
rootEl: HTMLDivElement;
|
|
991
1025
|
};
|
|
992
1026
|
|
|
993
|
-
declare function
|
|
1027
|
+
declare function __VLS_template_22(): {
|
|
994
1028
|
attrs: Partial<{}>;
|
|
995
1029
|
slots: Readonly<{
|
|
996
1030
|
/** Conteúdo principal do card */
|
|
@@ -1033,7 +1067,7 @@ declare function __VLS_template_21(): {
|
|
|
1033
1067
|
rootEl: any;
|
|
1034
1068
|
};
|
|
1035
1069
|
|
|
1036
|
-
declare function
|
|
1070
|
+
declare function __VLS_template_23(): {
|
|
1037
1071
|
attrs: Partial<{}>;
|
|
1038
1072
|
slots: Readonly<{
|
|
1039
1073
|
/** Adicione conteúdo dentro do root element */
|
|
@@ -1046,7 +1080,7 @@ declare function __VLS_template_22(): {
|
|
|
1046
1080
|
rootEl: any;
|
|
1047
1081
|
};
|
|
1048
1082
|
|
|
1049
|
-
declare function
|
|
1083
|
+
declare function __VLS_template_24(): {
|
|
1050
1084
|
attrs: Partial<{}>;
|
|
1051
1085
|
slots: Readonly<{
|
|
1052
1086
|
/** Adicione conteúdo dentro do root element */
|
|
@@ -1059,7 +1093,7 @@ declare function __VLS_template_23(): {
|
|
|
1059
1093
|
rootEl: any;
|
|
1060
1094
|
};
|
|
1061
1095
|
|
|
1062
|
-
declare function
|
|
1096
|
+
declare function __VLS_template_25(): {
|
|
1063
1097
|
attrs: Partial<{}>;
|
|
1064
1098
|
slots: {
|
|
1065
1099
|
default?(_: {}): any;
|
|
@@ -1068,7 +1102,7 @@ declare function __VLS_template_24(): {
|
|
|
1068
1102
|
rootEl: HTMLDivElement;
|
|
1069
1103
|
};
|
|
1070
1104
|
|
|
1071
|
-
declare function
|
|
1105
|
+
declare function __VLS_template_26(): {
|
|
1072
1106
|
attrs: Partial<{}>;
|
|
1073
1107
|
slots: Readonly<{
|
|
1074
1108
|
/** Adicione conteúdo no header */
|
|
@@ -1149,6 +1183,19 @@ declare function __VLS_template_5(): {
|
|
|
1149
1183
|
};
|
|
1150
1184
|
|
|
1151
1185
|
declare function __VLS_template_6(): {
|
|
1186
|
+
attrs: Partial<{}>;
|
|
1187
|
+
slots: Readonly<{
|
|
1188
|
+
default: () => VNode[];
|
|
1189
|
+
}> & {
|
|
1190
|
+
default: () => VNode[];
|
|
1191
|
+
};
|
|
1192
|
+
refs: {
|
|
1193
|
+
dropdownRef: HTMLDivElement;
|
|
1194
|
+
};
|
|
1195
|
+
rootEl: HTMLDivElement;
|
|
1196
|
+
};
|
|
1197
|
+
|
|
1198
|
+
declare function __VLS_template_7(): {
|
|
1152
1199
|
attrs: Partial<{}>;
|
|
1153
1200
|
slots: Readonly<{
|
|
1154
1201
|
/** Adicione conteúdo na esquerda do Input */
|
|
@@ -1168,7 +1215,7 @@ declare function __VLS_template_6(): {
|
|
|
1168
1215
|
rootEl: any;
|
|
1169
1216
|
};
|
|
1170
1217
|
|
|
1171
|
-
declare function
|
|
1218
|
+
declare function __VLS_template_8(): {
|
|
1172
1219
|
attrs: Partial<{}>;
|
|
1173
1220
|
slots: Readonly<{
|
|
1174
1221
|
/** Slot para adicionar conteúdo antes das opções */
|
|
@@ -1205,7 +1252,7 @@ declare function __VLS_template_7(): {
|
|
|
1205
1252
|
rootEl: any;
|
|
1206
1253
|
};
|
|
1207
1254
|
|
|
1208
|
-
declare function
|
|
1255
|
+
declare function __VLS_template_9(): {
|
|
1209
1256
|
attrs: Partial<{}>;
|
|
1210
1257
|
slots: Readonly<{
|
|
1211
1258
|
/** Adicione conteúdo dentro do col */
|
|
@@ -1222,19 +1269,6 @@ declare function __VLS_template_8(): {
|
|
|
1222
1269
|
rootEl: any;
|
|
1223
1270
|
};
|
|
1224
1271
|
|
|
1225
|
-
declare function __VLS_template_9(): {
|
|
1226
|
-
attrs: Partial<{}>;
|
|
1227
|
-
slots: Readonly<{
|
|
1228
|
-
/** Adicione conteúdo dentro do row */
|
|
1229
|
-
default?: () => VNode[];
|
|
1230
|
-
}> & {
|
|
1231
|
-
/** Adicione conteúdo dentro do row */
|
|
1232
|
-
default?: () => VNode[];
|
|
1233
|
-
};
|
|
1234
|
-
refs: {};
|
|
1235
|
-
rootEl: any;
|
|
1236
|
-
};
|
|
1237
|
-
|
|
1238
1272
|
declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
1239
1273
|
|
|
1240
1274
|
declare type __VLS_TemplateResult_10 = ReturnType<typeof __VLS_template_10>;
|
|
@@ -1271,6 +1305,8 @@ declare type __VLS_TemplateResult_24 = ReturnType<typeof __VLS_template_24>;
|
|
|
1271
1305
|
|
|
1272
1306
|
declare type __VLS_TemplateResult_25 = ReturnType<typeof __VLS_template_25>;
|
|
1273
1307
|
|
|
1308
|
+
declare type __VLS_TemplateResult_26 = ReturnType<typeof __VLS_template_26>;
|
|
1309
|
+
|
|
1274
1310
|
declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
|
|
1275
1311
|
|
|
1276
1312
|
declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
|
|
@@ -1393,6 +1429,12 @@ declare type __VLS_WithTemplateSlots_25<T, S> = T & {
|
|
|
1393
1429
|
};
|
|
1394
1430
|
};
|
|
1395
1431
|
|
|
1432
|
+
declare type __VLS_WithTemplateSlots_26<T, S> = T & {
|
|
1433
|
+
new (): {
|
|
1434
|
+
$slots: S;
|
|
1435
|
+
};
|
|
1436
|
+
};
|
|
1437
|
+
|
|
1396
1438
|
declare type __VLS_WithTemplateSlots_3<T, S> = T & {
|
|
1397
1439
|
new (): {
|
|
1398
1440
|
$slots: S;
|
|
@@ -1439,39 +1481,39 @@ export declare const activateCeLoading: () => void;
|
|
|
1439
1481
|
|
|
1440
1482
|
export declare const addCeToast: (title: string, message: string, type: "success" | "error" | "warn" | "info", duration?: number, data?: IData | null) => void;
|
|
1441
1483
|
|
|
1442
|
-
export declare const CeAutocomplete: default_2.ComponentType<typeof
|
|
1484
|
+
export declare const CeAutocomplete: default_2.ComponentType<typeof _default_6>;
|
|
1443
1485
|
|
|
1444
|
-
export declare const CeAvatar: default_2.ComponentType<typeof
|
|
1486
|
+
export declare const CeAvatar: default_2.ComponentType<typeof _default_30>;
|
|
1445
1487
|
|
|
1446
|
-
export declare const CeBadge: default_2.ComponentType<typeof
|
|
1488
|
+
export declare const CeBadge: default_2.ComponentType<typeof _default_32>;
|
|
1447
1489
|
|
|
1448
|
-
export declare const CeBanners: default_2.ComponentType<typeof
|
|
1490
|
+
export declare const CeBanners: default_2.ComponentType<typeof _default_34>;
|
|
1449
1491
|
|
|
1450
|
-
export declare const CeBreadcrumbs: default_2.ComponentType<typeof
|
|
1492
|
+
export declare const CeBreadcrumbs: default_2.ComponentType<typeof _default_27>;
|
|
1451
1493
|
|
|
1452
|
-
export declare const CeButton: default_2.ComponentType<typeof
|
|
1494
|
+
export declare const CeButton: default_2.ComponentType<typeof _default_7>;
|
|
1453
1495
|
|
|
1454
|
-
export declare const CeButtonGroup: default_2.ComponentType<typeof
|
|
1496
|
+
export declare const CeButtonGroup: default_2.ComponentType<typeof _default_8>;
|
|
1455
1497
|
|
|
1456
|
-
export declare const CeButtonPagination: default_2.ComponentType<typeof
|
|
1498
|
+
export declare const CeButtonPagination: default_2.ComponentType<typeof _default_9>;
|
|
1457
1499
|
|
|
1458
|
-
export declare const CeButtonWrapper: default_2.ComponentType<typeof
|
|
1500
|
+
export declare const CeButtonWrapper: default_2.ComponentType<typeof _default_10>;
|
|
1459
1501
|
|
|
1460
|
-
export declare const CeCard: default_2.ComponentType<typeof
|
|
1502
|
+
export declare const CeCard: default_2.ComponentType<typeof _default_38>;
|
|
1461
1503
|
|
|
1462
|
-
export declare const CeCardHeader: default_2.ComponentType<typeof
|
|
1504
|
+
export declare const CeCardHeader: default_2.ComponentType<typeof _default_39>;
|
|
1463
1505
|
|
|
1464
|
-
export declare const CeCardText: default_2.ComponentType<typeof
|
|
1506
|
+
export declare const CeCardText: default_2.ComponentType<typeof _default_40>;
|
|
1465
1507
|
|
|
1466
|
-
export declare const CeCheckbox: default_2.ComponentType<typeof
|
|
1508
|
+
export declare const CeCheckbox: default_2.ComponentType<typeof _default_11>;
|
|
1467
1509
|
|
|
1468
|
-
export declare const CeCheckboxGroup: default_2.ComponentType<typeof
|
|
1510
|
+
export declare const CeCheckboxGroup: default_2.ComponentType<typeof _default_12>;
|
|
1469
1511
|
|
|
1470
|
-
export declare const CeCol: default_2.ComponentType<typeof
|
|
1512
|
+
export declare const CeCol: default_2.ComponentType<typeof _default_21>;
|
|
1471
1513
|
|
|
1472
|
-
export declare const CeContainer: default_2.ComponentType<typeof
|
|
1514
|
+
export declare const CeContainer: default_2.ComponentType<typeof _default_23>;
|
|
1473
1515
|
|
|
1474
|
-
export declare const CeContentDivider: default_2.ComponentType<typeof
|
|
1516
|
+
export declare const CeContentDivider: default_2.ComponentType<typeof _default_41>;
|
|
1475
1517
|
|
|
1476
1518
|
export declare const CeDataTable: default_2.ComponentType<typeof _default & CeDataTableVueSlots>;
|
|
1477
1519
|
|
|
@@ -1479,27 +1521,29 @@ declare type CeDataTableVueSlots = {
|
|
|
1479
1521
|
[slotName: string]: ((ctx: any) => default_2.ReactNode) | default_2.ReactNode;
|
|
1480
1522
|
};
|
|
1481
1523
|
|
|
1482
|
-
export declare const CeDatePicker: default_2.ComponentType<typeof
|
|
1524
|
+
export declare const CeDatePicker: default_2.ComponentType<typeof _default_13>;
|
|
1483
1525
|
|
|
1484
|
-
export declare const CeDropdown: default_2.ComponentType<typeof
|
|
1526
|
+
export declare const CeDropdown: default_2.ComponentType<typeof _default_14>;
|
|
1485
1527
|
|
|
1486
|
-
export declare const CeFileUpload: default_2.ComponentType<typeof
|
|
1528
|
+
export declare const CeFileUpload: default_2.ComponentType<typeof _default_15>;
|
|
1487
1529
|
|
|
1488
|
-
export declare const CeFilterGroup: default_2.ComponentType<typeof
|
|
1530
|
+
export declare const CeFilterGroup: default_2.ComponentType<typeof _default_31>;
|
|
1489
1531
|
|
|
1490
|
-
export declare const CeFooter: default_2.ComponentType<typeof
|
|
1532
|
+
export declare const CeFooter: default_2.ComponentType<typeof _default_42>;
|
|
1491
1533
|
|
|
1492
|
-
export declare const CeInput: default_2.ComponentType<typeof
|
|
1534
|
+
export declare const CeInput: default_2.ComponentType<typeof _default_16>;
|
|
1493
1535
|
|
|
1494
|
-
export declare const
|
|
1536
|
+
export declare const CeItemsPerPage: default_2.ComponentType<typeof _default_5>;
|
|
1495
1537
|
|
|
1496
|
-
export declare const
|
|
1538
|
+
export declare const CeLayout: default_2.ComponentType<typeof _default_43>;
|
|
1497
1539
|
|
|
1498
|
-
export declare const
|
|
1540
|
+
export declare const CeLoading: default_2.ComponentType<typeof _default_37>;
|
|
1499
1541
|
|
|
1500
|
-
export declare const
|
|
1542
|
+
export declare const CeMenuHeader: default_2.ComponentType<typeof _default_25>;
|
|
1501
1543
|
|
|
1502
|
-
export declare const
|
|
1544
|
+
export declare const CeMenuSidebar: default_2.ComponentType<typeof _default_26>;
|
|
1545
|
+
|
|
1546
|
+
export declare const CeModal: default_2.ComponentType<typeof _default_35>;
|
|
1503
1547
|
|
|
1504
1548
|
export declare const CePagination: default_2.ComponentType<typeof _default_2>;
|
|
1505
1549
|
|
|
@@ -1507,13 +1551,13 @@ export declare const CeProgressIndicator: default_2.ComponentType<typeof _defaul
|
|
|
1507
1551
|
|
|
1508
1552
|
export declare const CeProgressSteps: default_2.ComponentType<typeof _default_4>;
|
|
1509
1553
|
|
|
1510
|
-
export declare const CeRadioGroup: default_2.ComponentType<typeof
|
|
1554
|
+
export declare const CeRadioGroup: default_2.ComponentType<typeof _default_17>;
|
|
1511
1555
|
|
|
1512
|
-
export declare const CeRow: default_2.ComponentType<typeof
|
|
1556
|
+
export declare const CeRow: default_2.ComponentType<typeof _default_22>;
|
|
1513
1557
|
|
|
1514
|
-
export declare const CeSectionFooter: default_2.ComponentType<typeof
|
|
1558
|
+
export declare const CeSectionFooter: default_2.ComponentType<typeof _default_44>;
|
|
1515
1559
|
|
|
1516
|
-
export declare const CeSelect: default_2.ComponentType<typeof
|
|
1560
|
+
export declare const CeSelect: default_2.ComponentType<typeof _default_18>;
|
|
1517
1561
|
|
|
1518
1562
|
declare interface CeSelectFieldProps {
|
|
1519
1563
|
/** Valor do select para two-way binding (v-model) */
|
|
@@ -1542,19 +1586,24 @@ declare interface CeSelectFieldProps {
|
|
|
1542
1586
|
closeChip?: boolean;
|
|
1543
1587
|
}
|
|
1544
1588
|
|
|
1545
|
-
export declare const CeSlider: default_2.ComponentType<typeof
|
|
1589
|
+
export declare const CeSlider: default_2.ComponentType<typeof _default_19>;
|
|
1590
|
+
|
|
1591
|
+
export declare const CeSvgIcon: default_2.ComponentType<typeof _default_24>;
|
|
1546
1592
|
|
|
1547
|
-
export declare const
|
|
1593
|
+
export declare const CeTab: default_2.ComponentType<typeof _default_28>;
|
|
1548
1594
|
|
|
1549
|
-
export declare const
|
|
1595
|
+
export declare const CeTabItem: default_2.ComponentType<typeof _default_29>;
|
|
1550
1596
|
|
|
1551
|
-
export declare const
|
|
1597
|
+
export declare const CeToast: default_2.ComponentType<typeof _default_33>;
|
|
1552
1598
|
|
|
1553
|
-
export declare const
|
|
1599
|
+
export declare const CeToggle: default_2.ComponentType<typeof _default_20>;
|
|
1554
1600
|
|
|
1555
|
-
export declare const
|
|
1601
|
+
export declare const CeTooltip: default_2.ComponentType<typeof _default_36>;
|
|
1556
1602
|
|
|
1557
|
-
|
|
1603
|
+
declare interface Coluna {
|
|
1604
|
+
text: string;
|
|
1605
|
+
value: string;
|
|
1606
|
+
}
|
|
1558
1607
|
|
|
1559
1608
|
declare type DataTableProps = {
|
|
1560
1609
|
/** Array utilizado no header da tabela */
|
|
@@ -1575,13 +1624,15 @@ declare type DataTableProps = {
|
|
|
1575
1624
|
|
|
1576
1625
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
1577
1626
|
|
|
1578
|
-
declare const _default_10:
|
|
1627
|
+
declare const _default_10: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
1628
|
+
|
|
1629
|
+
declare const _default_11: DefineComponent<__VLS_Props_7, {
|
|
1579
1630
|
/** Focus checkbox input */
|
|
1580
1631
|
focus: () => void;
|
|
1581
1632
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1582
1633
|
"update:modelValue": (value: ModelValueType | CustomEvent<any>) => any;
|
|
1583
1634
|
change: (value: ModelValueType | CustomEvent<any>) => any;
|
|
1584
|
-
}, string, PublicProps, Readonly<
|
|
1635
|
+
}, string, PublicProps, Readonly<__VLS_Props_7> & Readonly<{
|
|
1585
1636
|
"onUpdate:modelValue"?: (value: ModelValueType | CustomEvent<any>) => any;
|
|
1586
1637
|
onChange?: (value: ModelValueType | CustomEvent<any>) => any;
|
|
1587
1638
|
}>, {
|
|
@@ -1595,23 +1646,13 @@ indeterminate: boolean;
|
|
|
1595
1646
|
inputRef: HTMLInputElement;
|
|
1596
1647
|
}, any>;
|
|
1597
1648
|
|
|
1598
|
-
declare const
|
|
1649
|
+
declare const _default_12: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
1599
1650
|
|
|
1600
|
-
declare const
|
|
1651
|
+
declare const _default_13: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
1601
1652
|
|
|
1602
|
-
declare const
|
|
1603
|
-
"update:modelValue": (value: IReturn) => any;
|
|
1604
|
-
redirect: (item: ItensMenu) => any;
|
|
1605
|
-
}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{
|
|
1606
|
-
"onUpdate:modelValue"?: (value: IReturn) => any;
|
|
1607
|
-
onRedirect?: (item: ItensMenu) => any;
|
|
1608
|
-
}>, {
|
|
1609
|
-
color: string;
|
|
1610
|
-
items: ItensMenu[];
|
|
1611
|
-
variant: "default" | "outlined" | "text";
|
|
1612
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1653
|
+
declare const _default_14: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
|
|
1613
1654
|
|
|
1614
|
-
declare const
|
|
1655
|
+
declare const _default_15: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1615
1656
|
"update:modelValue": (file: FileItem[]) => any;
|
|
1616
1657
|
updateFiles: (file: FileItem[]) => any;
|
|
1617
1658
|
}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{
|
|
@@ -1627,9 +1668,9 @@ selectAll: boolean;
|
|
|
1627
1668
|
clear: boolean;
|
|
1628
1669
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1629
1670
|
|
|
1630
|
-
declare const
|
|
1671
|
+
declare const _default_16: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
|
|
1631
1672
|
|
|
1632
|
-
declare const
|
|
1673
|
+
declare const _default_17: DefineComponent<__VLS_Props_12, {
|
|
1633
1674
|
/** Focus radio input */
|
|
1634
1675
|
focus: (id?: string) => void;
|
|
1635
1676
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
@@ -1644,9 +1685,9 @@ disabled: boolean;
|
|
|
1644
1685
|
block: boolean;
|
|
1645
1686
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1646
1687
|
|
|
1647
|
-
declare const
|
|
1688
|
+
declare const _default_18: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
|
|
1648
1689
|
|
|
1649
|
-
declare const
|
|
1690
|
+
declare const _default_19: DefineComponent<SliderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1650
1691
|
"update:modelValue": (value: number | number[]) => any;
|
|
1651
1692
|
sendValue: (value: number | number[]) => any;
|
|
1652
1693
|
}, string, PublicProps, Readonly<SliderProps> & Readonly<{
|
|
@@ -1661,18 +1702,6 @@ maxValue: number;
|
|
|
1661
1702
|
showValue: boolean;
|
|
1662
1703
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
1663
1704
|
|
|
1664
|
-
declare const _default_19: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1665
|
-
"update:modelValue": (value: boolean) => any;
|
|
1666
|
-
change: (value: boolean | CustomEvent<any>) => any;
|
|
1667
|
-
}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{
|
|
1668
|
-
"onUpdate:modelValue"?: (value: boolean) => any;
|
|
1669
|
-
onChange?: (value: boolean | CustomEvent<any>) => any;
|
|
1670
|
-
}>, {
|
|
1671
|
-
invalid: boolean;
|
|
1672
|
-
disabled: boolean;
|
|
1673
|
-
contoured: boolean;
|
|
1674
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1675
|
-
|
|
1676
1705
|
declare const _default_2: DefineComponent<PaginationProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1677
1706
|
"update:modelValue": (value: number) => any;
|
|
1678
1707
|
paginate: (value: number) => any;
|
|
@@ -1684,34 +1713,44 @@ totalPages: number;
|
|
|
1684
1713
|
currentPage: number;
|
|
1685
1714
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1686
1715
|
|
|
1687
|
-
declare const _default_20:
|
|
1716
|
+
declare const _default_20: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1717
|
+
"update:modelValue": (value: boolean) => any;
|
|
1718
|
+
change: (value: boolean | CustomEvent<any>) => any;
|
|
1719
|
+
}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{
|
|
1720
|
+
"onUpdate:modelValue"?: (value: boolean) => any;
|
|
1721
|
+
onChange?: (value: boolean | CustomEvent<any>) => any;
|
|
1722
|
+
}>, {
|
|
1723
|
+
invalid: boolean;
|
|
1724
|
+
disabled: boolean;
|
|
1725
|
+
contoured: boolean;
|
|
1726
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1688
1727
|
|
|
1689
1728
|
declare const _default_21: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
|
|
1690
1729
|
|
|
1691
1730
|
declare const _default_22: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
|
|
1692
1731
|
|
|
1693
|
-
declare const _default_23:
|
|
1732
|
+
declare const _default_23: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
|
|
1733
|
+
|
|
1734
|
+
declare const _default_24: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{}>, {
|
|
1694
1735
|
fill: string;
|
|
1695
1736
|
color: string;
|
|
1696
1737
|
size: number | string;
|
|
1697
1738
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1698
1739
|
|
|
1699
|
-
declare const
|
|
1740
|
+
declare const _default_25: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
|
|
1700
1741
|
|
|
1701
|
-
declare const
|
|
1742
|
+
declare const _default_26: DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1702
1743
|
toggleMenu: (clicado: boolean) => any;
|
|
1703
|
-
redirect: (item: SubMenu |
|
|
1744
|
+
redirect: (item: SubMenu | ItensMenu_2) => any;
|
|
1704
1745
|
}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{
|
|
1705
1746
|
onToggleMenu?: (clicado: boolean) => any;
|
|
1706
|
-
onRedirect?: (item: SubMenu |
|
|
1747
|
+
onRedirect?: (item: SubMenu | ItensMenu_2) => any;
|
|
1707
1748
|
}>, {
|
|
1708
1749
|
isHome: boolean;
|
|
1709
1750
|
isSearch: boolean;
|
|
1710
1751
|
isOpen: boolean;
|
|
1711
1752
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1712
1753
|
|
|
1713
|
-
declare const _default_26: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
|
|
1714
|
-
|
|
1715
1754
|
declare const _default_27: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
|
|
1716
1755
|
|
|
1717
1756
|
declare const _default_28: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
|
|
@@ -1724,7 +1763,9 @@ declare const _default_30: __VLS_WithTemplateSlots_16<typeof __VLS_component_16,
|
|
|
1724
1763
|
|
|
1725
1764
|
declare const _default_31: __VLS_WithTemplateSlots_17<typeof __VLS_component_17, __VLS_TemplateResult_17["slots"]>;
|
|
1726
1765
|
|
|
1727
|
-
declare const _default_32:
|
|
1766
|
+
declare const _default_32: __VLS_WithTemplateSlots_18<typeof __VLS_component_18, __VLS_TemplateResult_18["slots"]>;
|
|
1767
|
+
|
|
1768
|
+
declare const _default_33: DefineComponent<IToastProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1728
1769
|
sendData: (data: IData_2<unknown>) => any;
|
|
1729
1770
|
}, string, PublicProps, Readonly<IToastProps> & Readonly<{
|
|
1730
1771
|
onSendData?: (data: IData_2<unknown>) => any;
|
|
@@ -1736,20 +1777,18 @@ showActionButton: boolean;
|
|
|
1736
1777
|
textButton: string;
|
|
1737
1778
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1738
1779
|
|
|
1739
|
-
declare const _default_33: __VLS_WithTemplateSlots_18<typeof __VLS_component_18, __VLS_TemplateResult_18["slots"]>;
|
|
1740
|
-
|
|
1741
1780
|
declare const _default_34: __VLS_WithTemplateSlots_19<typeof __VLS_component_19, __VLS_TemplateResult_19["slots"]>;
|
|
1742
1781
|
|
|
1743
1782
|
declare const _default_35: __VLS_WithTemplateSlots_20<typeof __VLS_component_20, __VLS_TemplateResult_20["slots"]>;
|
|
1744
1783
|
|
|
1745
|
-
declare const _default_36:
|
|
1784
|
+
declare const _default_36: __VLS_WithTemplateSlots_21<typeof __VLS_component_21, __VLS_TemplateResult_21["slots"]>;
|
|
1785
|
+
|
|
1786
|
+
declare const _default_37: DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{}>, {
|
|
1746
1787
|
type: "spinner" | "semi-circle" | "dots";
|
|
1747
1788
|
background: "smoky" | "transparent";
|
|
1748
1789
|
showLoading: boolean;
|
|
1749
1790
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1750
1791
|
|
|
1751
|
-
declare const _default_37: __VLS_WithTemplateSlots_21<typeof __VLS_component_21, __VLS_TemplateResult_21["slots"]>;
|
|
1752
|
-
|
|
1753
1792
|
declare const _default_38: __VLS_WithTemplateSlots_22<typeof __VLS_component_22, __VLS_TemplateResult_22["slots"]>;
|
|
1754
1793
|
|
|
1755
1794
|
declare const _default_39: __VLS_WithTemplateSlots_23<typeof __VLS_component_23, __VLS_TemplateResult_23["slots"]>;
|
|
@@ -1758,7 +1797,9 @@ declare const _default_4: DefineComponent<IProgressStepsProps, {}, {}, {}, {}, C
|
|
|
1758
1797
|
|
|
1759
1798
|
declare const _default_40: __VLS_WithTemplateSlots_24<typeof __VLS_component_24, __VLS_TemplateResult_24["slots"]>;
|
|
1760
1799
|
|
|
1761
|
-
declare const _default_41:
|
|
1800
|
+
declare const _default_41: __VLS_WithTemplateSlots_25<typeof __VLS_component_25, __VLS_TemplateResult_25["slots"]>;
|
|
1801
|
+
|
|
1802
|
+
declare const _default_42: DefineComponent<__VLS_Props_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1762
1803
|
redirect: (valor?: string) => any;
|
|
1763
1804
|
}, string, PublicProps, Readonly<__VLS_Props_32> & Readonly<{
|
|
1764
1805
|
onRedirect?: (valor?: string) => any;
|
|
@@ -1767,25 +1808,38 @@ variant: "1" | "2" | "3" | "4" | "5";
|
|
|
1767
1808
|
background: "white" | "green";
|
|
1768
1809
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1769
1810
|
|
|
1770
|
-
declare const
|
|
1811
|
+
declare const _default_43: __VLS_WithTemplateSlots_26<typeof __VLS_component_26, __VLS_TemplateResult_26["slots"]>;
|
|
1771
1812
|
|
|
1772
|
-
declare const
|
|
1813
|
+
declare const _default_44: DefineComponent<__VLS_Props_34, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_34> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1773
1814
|
|
|
1774
1815
|
declare const _default_5: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1816
|
+
"update:modelValue": (value: number) => any;
|
|
1817
|
+
updatePerPage: (value: number) => any;
|
|
1818
|
+
}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{
|
|
1819
|
+
"onUpdate:modelValue"?: (value: number) => any;
|
|
1820
|
+
onUpdatePerPage?: (value: number) => any;
|
|
1821
|
+
}>, {
|
|
1822
|
+
disabled: boolean;
|
|
1823
|
+
textDirection: "left" | "right";
|
|
1824
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1825
|
+
menuRef: HTMLDivElement;
|
|
1826
|
+
}, HTMLDivElement>;
|
|
1827
|
+
|
|
1828
|
+
declare const _default_6: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1775
1829
|
"update:modelValue": (value: string | CustomEvent<any>) => any;
|
|
1776
1830
|
filterList: (value: string | CustomEvent<any>) => any;
|
|
1777
1831
|
clearFilter: () => any;
|
|
1778
1832
|
"input:focus": () => any;
|
|
1779
|
-
}, string, PublicProps, Readonly<
|
|
1833
|
+
}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{
|
|
1780
1834
|
"onUpdate:modelValue"?: (value: string | CustomEvent<any>) => any;
|
|
1781
1835
|
onFilterList?: (value: string | CustomEvent<any>) => any;
|
|
1782
1836
|
onClearFilter?: () => any;
|
|
1783
1837
|
"onInput:focus"?: () => any;
|
|
1784
1838
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1785
1839
|
|
|
1786
|
-
declare const
|
|
1840
|
+
declare const _default_7: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
|
|
1787
1841
|
|
|
1788
|
-
declare const
|
|
1842
|
+
declare const _default_8: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{}>, {
|
|
1789
1843
|
id: string | number;
|
|
1790
1844
|
disabled: boolean;
|
|
1791
1845
|
text: string;
|
|
@@ -1793,10 +1847,10 @@ variant: "text" | "radio";
|
|
|
1793
1847
|
selected: number;
|
|
1794
1848
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
1795
1849
|
|
|
1796
|
-
declare const
|
|
1850
|
+
declare const _default_9: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1797
1851
|
"update:modelValue": (value: number | CustomEvent<any>) => any;
|
|
1798
1852
|
updateCurrentPage: (page: number) => any;
|
|
1799
|
-
}, string, PublicProps, Readonly<
|
|
1853
|
+
}, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{
|
|
1800
1854
|
"onUpdate:modelValue"?: (value: number | CustomEvent<any>) => any;
|
|
1801
1855
|
onUpdateCurrentPage?: (page: number) => any;
|
|
1802
1856
|
}>, {
|
|
@@ -1804,10 +1858,19 @@ currentPage: number;
|
|
|
1804
1858
|
totalPage: number;
|
|
1805
1859
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1806
1860
|
|
|
1807
|
-
declare const _default_9: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
1808
|
-
|
|
1809
1861
|
export declare const disableCeLoading: () => void;
|
|
1810
1862
|
|
|
1863
|
+
declare interface DropdownProps {
|
|
1864
|
+
/** Define os itens do dropdown tipo menu */
|
|
1865
|
+
itemsMenu?: ItensMenu[];
|
|
1866
|
+
/** Define os itens do dropdown tipo seleção */
|
|
1867
|
+
itemsSelection?: ItemsSelection[];
|
|
1868
|
+
/** Define a variante do dropdown */
|
|
1869
|
+
variant?: 'outlined' | 'text';
|
|
1870
|
+
/** Define o tipo do dropdown */
|
|
1871
|
+
type?: 'menu' | 'selection';
|
|
1872
|
+
}
|
|
1873
|
+
|
|
1811
1874
|
declare interface FileItem {
|
|
1812
1875
|
file: File;
|
|
1813
1876
|
progress: number;
|
|
@@ -1887,7 +1950,15 @@ declare interface ITabsProps {
|
|
|
1887
1950
|
inactivate?: boolean;
|
|
1888
1951
|
}
|
|
1889
1952
|
|
|
1890
|
-
declare interface
|
|
1953
|
+
declare interface ItemsSelection {
|
|
1954
|
+
text: string;
|
|
1955
|
+
value: string;
|
|
1956
|
+
visible: boolean;
|
|
1957
|
+
subtext?: string;
|
|
1958
|
+
icon?: string;
|
|
1959
|
+
}
|
|
1960
|
+
|
|
1961
|
+
declare interface ItensMenu_2 {
|
|
1891
1962
|
text: string;
|
|
1892
1963
|
path?: string;
|
|
1893
1964
|
icon?: string;
|
|
@@ -2059,6 +2130,7 @@ declare module 'vue' {
|
|
|
2059
2130
|
'ce-progress-indicator': typeof ProgressIndicatorComponent;
|
|
2060
2131
|
'ce-progress-steps': typeof ProgressStepsComponent;
|
|
2061
2132
|
'ce-data-table': typeof DataTableComponent;
|
|
2133
|
+
'ce-items-per-page': typeof ItemsPerPageComponent;
|
|
2062
2134
|
}
|
|
2063
2135
|
}
|
|
2064
2136
|
|