@comercti/react-components-hmg 0.0.48 → 0.0.49
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 +77 -76
- package/comerc-style-guide.umd.js +2 -2
- package/index.d.ts +6 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -113,8 +113,8 @@ close: (value: boolean) => any;
|
|
|
113
113
|
onClose?: ((value: boolean) => any) | undefined;
|
|
114
114
|
}>, {
|
|
115
115
|
rounded: boolean;
|
|
116
|
-
position: "top" | "bottom";
|
|
117
116
|
isOpen: boolean;
|
|
117
|
+
position: "top" | "bottom";
|
|
118
118
|
background: "1" | "2";
|
|
119
119
|
showIcon: boolean;
|
|
120
120
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
@@ -465,9 +465,11 @@ declare type __VLS_Props_19 = {
|
|
|
465
465
|
/** Array de opções do menu */
|
|
466
466
|
items: ItensMenu[];
|
|
467
467
|
/** Define se o menu está na home */
|
|
468
|
-
isHome
|
|
468
|
+
isHome?: boolean;
|
|
469
469
|
/** Define se o input de pesquisa será exibido */
|
|
470
|
-
isSearch
|
|
470
|
+
isSearch?: boolean;
|
|
471
|
+
/** Se true inicializa o menu aberto */
|
|
472
|
+
isOpen?: boolean;
|
|
471
473
|
};
|
|
472
474
|
|
|
473
475
|
declare type __VLS_Props_2 = {
|
|
@@ -1644,6 +1646,7 @@ onRedirect?: ((item: SubMenu | ItensMenu) => any) | undefined;
|
|
|
1644
1646
|
}>, {
|
|
1645
1647
|
isHome: boolean;
|
|
1646
1648
|
isSearch: boolean;
|
|
1649
|
+
isOpen: boolean;
|
|
1647
1650
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1648
1651
|
|
|
1649
1652
|
declare const _default_26: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
|