@comercti/vue-components 0.18.0 → 0.20.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 +27 -24
- package/comerc-style-guide.es.js +2549 -2449
- package/comerc-style-guide.umd.js +28 -25
- package/index.d.ts +14 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ compact: boolean;
|
|
|
33
33
|
loading: boolean;
|
|
34
34
|
loadingType: "spinner" | "semi-circle" | "dots";
|
|
35
35
|
truncated: boolean;
|
|
36
|
+
copyable: boolean;
|
|
36
37
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
37
38
|
rootRef: HTMLDivElement;
|
|
38
39
|
}, HTMLDivElement>;
|
|
@@ -336,6 +337,8 @@ declare type __VLS_Props_10 = {
|
|
|
336
337
|
maxFileSize?: number;
|
|
337
338
|
/** habilita a opção de selecionar múltiplos arquivos */
|
|
338
339
|
selectAll?: boolean;
|
|
340
|
+
/** Mensagem personalizada de tipos de arquivos */
|
|
341
|
+
customMessage?: string[];
|
|
339
342
|
/** limpa a lista de arquivos */
|
|
340
343
|
clear: boolean;
|
|
341
344
|
};
|
|
@@ -460,6 +463,8 @@ declare type __VLS_Props_16 = {
|
|
|
460
463
|
isSearch?: boolean;
|
|
461
464
|
/** Se true inicializa o menu aberto */
|
|
462
465
|
isOpen?: boolean;
|
|
466
|
+
/** Título do menu */
|
|
467
|
+
title?: string;
|
|
463
468
|
};
|
|
464
469
|
|
|
465
470
|
declare type __VLS_Props_17 = {
|
|
@@ -1578,7 +1583,10 @@ multiple: boolean;
|
|
|
1578
1583
|
maxFile: number;
|
|
1579
1584
|
maxFileSize: number;
|
|
1580
1585
|
selectAll: boolean;
|
|
1581
|
-
|
|
1586
|
+
customMessage: string[];
|
|
1587
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1588
|
+
inputFile: HTMLInputElement;
|
|
1589
|
+
}, HTMLDivElement>;
|
|
1582
1590
|
|
|
1583
1591
|
export declare const CeFilterGroup: __VLS_WithTemplateSlots_24<typeof __VLS_component_24, __VLS_TemplateResult_24["slots"]>;
|
|
1584
1592
|
|
|
@@ -1624,6 +1632,7 @@ toggleMenu: (clicado: boolean) => any;
|
|
|
1624
1632
|
onRedirect?: (item: SubMenu | ItensMenu_2) => any;
|
|
1625
1633
|
onToggleMenu?: (clicado: boolean) => any;
|
|
1626
1634
|
}>, {
|
|
1635
|
+
title: string;
|
|
1627
1636
|
itemsSearch: ItensMenu_2[];
|
|
1628
1637
|
isHome: boolean;
|
|
1629
1638
|
isSearch: boolean;
|
|
@@ -1802,6 +1811,10 @@ declare type DataTableProps = {
|
|
|
1802
1811
|
loadingType?: 'spinner' | 'semi-circle' | 'dots';
|
|
1803
1812
|
/** Define se o texto das células será truncado */
|
|
1804
1813
|
truncated?: boolean;
|
|
1814
|
+
/** String com as diretivas tailwind a serem aplicadas ao slot pagination */
|
|
1815
|
+
paginationStyle?: string;
|
|
1816
|
+
/** Habilita a funcionalidade de copiar o conteúdo da célula ao clicar nela */
|
|
1817
|
+
copyable?: boolean;
|
|
1805
1818
|
};
|
|
1806
1819
|
|
|
1807
1820
|
export declare const disableCeLoading: () => void;
|