@comercti/vue-components-hmg 0.32.9 → 0.32.11
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 +1358 -1297
- package/comerc-style-guide.umd.js +8 -8
- package/index.d.ts +16 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1987,6 +1987,13 @@ 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
|
+
reserveSpaceFeedback: boolean;
|
|
1992
|
+
indexItem: number;
|
|
1993
|
+
indexHeader: number;
|
|
1994
|
+
maxLength: number;
|
|
1995
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1996
|
+
|
|
1990
1997
|
declare interface Coluna {
|
|
1991
1998
|
text: string;
|
|
1992
1999
|
value: string;
|
|
@@ -2291,6 +2298,14 @@ declare interface Props {
|
|
|
2291
2298
|
clearButton?: boolean;
|
|
2292
2299
|
}
|
|
2293
2300
|
|
|
2301
|
+
declare interface Props_2 {
|
|
2302
|
+
text: string;
|
|
2303
|
+
indexItem?: number;
|
|
2304
|
+
indexHeader?: number;
|
|
2305
|
+
maxLength?: number;
|
|
2306
|
+
reserveSpaceFeedback?: boolean;
|
|
2307
|
+
}
|
|
2308
|
+
|
|
2294
2309
|
export declare const removeCeToast: (id: number) => void;
|
|
2295
2310
|
|
|
2296
2311
|
declare interface SelectOption {
|
|
@@ -2376,6 +2391,7 @@ declare module 'vue' {
|
|
|
2376
2391
|
'ce-button-pagination': typeof ButtonPaginationComponent;
|
|
2377
2392
|
'ce-textarea': typeof TextareaComponent;
|
|
2378
2393
|
'ce-code-input': typeof CodeInputComponent;
|
|
2394
|
+
'ce-truncated': typeof TruncatedComponent;
|
|
2379
2395
|
}
|
|
2380
2396
|
}
|
|
2381
2397
|
|