@comercti/vue-components-hmg 0.32.9 → 0.32.10
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 +8 -8
- package/comerc-style-guide.es.js +937 -877
- package/comerc-style-guide.umd.js +8 -8
- package/index.d.ts +12 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1987,6 +1987,10 @@ contoured: boolean;
|
|
|
1987
1987
|
|
|
1988
1988
|
export declare const CeTooltip: __VLS_WithTemplateSlots_25<typeof __VLS_component_25, __VLS_TemplateResult_25["slots"]>;
|
|
1989
1989
|
|
|
1990
|
+
export declare const CeTruncated: DefineComponent<Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props_2> & Readonly<{}>, {
|
|
1991
|
+
maxLength: number;
|
|
1992
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1993
|
+
|
|
1990
1994
|
declare interface Coluna {
|
|
1991
1995
|
text: string;
|
|
1992
1996
|
value: string;
|
|
@@ -2291,6 +2295,13 @@ declare interface Props {
|
|
|
2291
2295
|
clearButton?: boolean;
|
|
2292
2296
|
}
|
|
2293
2297
|
|
|
2298
|
+
declare interface Props_2 {
|
|
2299
|
+
text: string;
|
|
2300
|
+
indexItem?: number;
|
|
2301
|
+
indexHeader?: number;
|
|
2302
|
+
maxLength?: number;
|
|
2303
|
+
}
|
|
2304
|
+
|
|
2294
2305
|
export declare const removeCeToast: (id: number) => void;
|
|
2295
2306
|
|
|
2296
2307
|
declare interface SelectOption {
|
|
@@ -2376,6 +2387,7 @@ declare module 'vue' {
|
|
|
2376
2387
|
'ce-button-pagination': typeof ButtonPaginationComponent;
|
|
2377
2388
|
'ce-textarea': typeof TextareaComponent;
|
|
2378
2389
|
'ce-code-input': typeof CodeInputComponent;
|
|
2390
|
+
'ce-truncated': typeof TruncatedComponent;
|
|
2379
2391
|
}
|
|
2380
2392
|
}
|
|
2381
2393
|
|