@comercti/react-components-hmg 0.3.3 → 0.3.5
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 +25 -25
- package/comerc-style-guide.es.js +1309 -1302
- package/comerc-style-guide.umd.js +25 -25
- package/index.d.ts +3 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -239,7 +239,7 @@ onRedirect?: (item: ItensMenu_2) => any;
|
|
|
239
239
|
}>, {
|
|
240
240
|
type: "menu" | "selection";
|
|
241
241
|
variant: "outlined" | "text";
|
|
242
|
-
}, {}, {}, {}, string, ComponentProvideOptions,
|
|
242
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
243
243
|
|
|
244
244
|
declare const __VLS_component_7: DefineComponent<__VLS_Props_11, {
|
|
245
245
|
/** focus input */
|
|
@@ -1850,7 +1850,7 @@ export declare const disableCeLoading: () => void;
|
|
|
1850
1850
|
|
|
1851
1851
|
declare interface DropdownProps {
|
|
1852
1852
|
/** Define os itens do dropdown tipo menu */
|
|
1853
|
-
itemsMenu
|
|
1853
|
+
itemsMenu?: ItensMenu[];
|
|
1854
1854
|
/** Define os itens do dropdown tipo seleção */
|
|
1855
1855
|
itemsSelection?: ItemsSelection[];
|
|
1856
1856
|
/** Define a variante do dropdown */
|
|
@@ -1941,7 +1941,7 @@ declare interface ITabsProps {
|
|
|
1941
1941
|
declare interface ItemsSelection {
|
|
1942
1942
|
text: string;
|
|
1943
1943
|
value: string;
|
|
1944
|
-
|
|
1944
|
+
visible: boolean;
|
|
1945
1945
|
subtext?: string;
|
|
1946
1946
|
icon?: string;
|
|
1947
1947
|
}
|