@comercti/react-components-hmg 0.10.16 → 0.10.19
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 +1677 -1665
- package/comerc-style-guide.umd.js +3 -3
- package/index.d.ts +6 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ expandLine: boolean;
|
|
|
33
33
|
compact: boolean;
|
|
34
34
|
loading: boolean;
|
|
35
35
|
loadingType: "spinner" | "semi-circle" | "dots";
|
|
36
|
+
truncated: boolean;
|
|
36
37
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
37
38
|
rootRef: HTMLDivElement;
|
|
38
39
|
}, HTMLDivElement>;
|
|
@@ -60,6 +61,7 @@ onLogout?: (value: boolean) => any;
|
|
|
60
61
|
}>, {
|
|
61
62
|
itemsMenu: ItensMenu_2[];
|
|
62
63
|
itemsMenuMyService: ItensMenu_2[];
|
|
64
|
+
itemsSearch: ItensMenu_2[];
|
|
63
65
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
64
66
|
|
|
65
67
|
declare const __VLS_component_13: DefineComponent<IBreadcrumbsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
@@ -503,6 +505,8 @@ declare type __VLS_Props_18 = {
|
|
|
503
505
|
name?: string;
|
|
504
506
|
/** Email do usuário */
|
|
505
507
|
email?: string;
|
|
508
|
+
/** Array de opções de pesquisa do menu */
|
|
509
|
+
itemsSearch?: ItensMenu_2[];
|
|
506
510
|
};
|
|
507
511
|
|
|
508
512
|
declare type __VLS_Props_19 = {
|
|
@@ -1663,6 +1667,8 @@ declare type DataTableProps = {
|
|
|
1663
1667
|
loading?: boolean;
|
|
1664
1668
|
/** tipo do loading na tabela */
|
|
1665
1669
|
loadingType?: 'spinner' | 'semi-circle' | 'dots';
|
|
1670
|
+
/** Define se o texto das células será truncado */
|
|
1671
|
+
truncated?: boolean;
|
|
1666
1672
|
};
|
|
1667
1673
|
|
|
1668
1674
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|