@comercti/vue-components-hmg 0.21.14 → 0.21.15
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 +3 -3
- package/comerc-style-guide.es.js +443 -444
- package/comerc-style-guide.umd.js +4 -4
- package/index.d.ts +3 -0
- 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>;
|
|
@@ -1870,6 +1871,8 @@ declare type DataTableProps = {
|
|
|
1870
1871
|
truncated?: boolean;
|
|
1871
1872
|
/** String com as diretivas tailwind a serem aplicadas ao slot pagination */
|
|
1872
1873
|
paginationStyle?: string;
|
|
1874
|
+
/** Habilita a funcionalidade de copiar o conteúdo da célula ao clicar */
|
|
1875
|
+
copyable?: boolean;
|
|
1873
1876
|
};
|
|
1874
1877
|
|
|
1875
1878
|
export declare const disableCeLoading: () => void;
|