@comercti/react-components-hmg 0.18.1 → 0.18.2
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 +26 -23
- package/comerc-style-guide.es.js +1700 -1655
- package/comerc-style-guide.umd.js +25 -22
- package/index.d.ts +11 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ compact: boolean;
|
|
|
34
34
|
loading: boolean;
|
|
35
35
|
loadingType: "spinner" | "semi-circle" | "dots";
|
|
36
36
|
truncated: boolean;
|
|
37
|
+
copyable: boolean;
|
|
37
38
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
38
39
|
rootRef: HTMLDivElement;
|
|
39
40
|
}, HTMLDivElement>;
|
|
@@ -339,6 +340,8 @@ declare type __VLS_Props_10 = {
|
|
|
339
340
|
maxFileSize?: number;
|
|
340
341
|
/** habilita a opção de selecionar múltiplos arquivos */
|
|
341
342
|
selectAll?: boolean;
|
|
343
|
+
/** Mensagem personalizada de tipos de arquivos */
|
|
344
|
+
customMessage?: string[];
|
|
342
345
|
/** limpa a lista de arquivos */
|
|
343
346
|
clear: boolean;
|
|
344
347
|
};
|
|
@@ -1685,6 +1688,10 @@ declare type DataTableProps = {
|
|
|
1685
1688
|
loadingType?: 'spinner' | 'semi-circle' | 'dots';
|
|
1686
1689
|
/** Define se o texto das células será truncado */
|
|
1687
1690
|
truncated?: boolean;
|
|
1691
|
+
/** String com as diretivas tailwind a serem aplicadas ao slot pagination */
|
|
1692
|
+
paginationStyle?: string;
|
|
1693
|
+
/** Habilita a funcionalidade de copiar o conteúdo da célula ao clicar nela */
|
|
1694
|
+
copyable?: boolean;
|
|
1688
1695
|
};
|
|
1689
1696
|
|
|
1690
1697
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -1743,7 +1750,10 @@ multiple: boolean;
|
|
|
1743
1750
|
maxFile: number;
|
|
1744
1751
|
maxFileSize: number;
|
|
1745
1752
|
selectAll: boolean;
|
|
1746
|
-
|
|
1753
|
+
customMessage: string[];
|
|
1754
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1755
|
+
inputFile: HTMLInputElement;
|
|
1756
|
+
}, HTMLDivElement>;
|
|
1747
1757
|
|
|
1748
1758
|
declare const _default_17: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
|
|
1749
1759
|
|