@comercti/react-components-hmg 0.8.7 → 0.8.8
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 +7 -7
- package/comerc-style-guide.es.js +733 -706
- package/comerc-style-guide.umd.js +7 -7
- package/index.d.ts +2 -5
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -243,12 +243,11 @@ onSelected?: (value: Coluna[]) => any;
|
|
|
243
243
|
onRedirect?: (item: ItensMenu_2) => any;
|
|
244
244
|
}>, {
|
|
245
245
|
type: "menu" | "selection";
|
|
246
|
-
variant: "outlined" | "text";
|
|
247
246
|
itemsMenu: ItensMenu_2[];
|
|
248
247
|
itemsSelection: ItemsSelection_2[];
|
|
249
248
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
250
249
|
dropdownRef: HTMLDivElement;
|
|
251
|
-
},
|
|
250
|
+
}, any>;
|
|
252
251
|
|
|
253
252
|
declare const __VLS_component_7: DefineComponent<__VLS_Props_11, {
|
|
254
253
|
/** focus input */
|
|
@@ -1197,7 +1196,7 @@ declare function __VLS_template_6(): {
|
|
|
1197
1196
|
refs: {
|
|
1198
1197
|
dropdownRef: HTMLDivElement;
|
|
1199
1198
|
};
|
|
1200
|
-
rootEl:
|
|
1199
|
+
rootEl: any;
|
|
1201
1200
|
};
|
|
1202
1201
|
|
|
1203
1202
|
declare function __VLS_template_7(): {
|
|
@@ -1871,8 +1870,6 @@ declare interface DropdownProps {
|
|
|
1871
1870
|
itemsMenu?: ItensMenu[];
|
|
1872
1871
|
/** Define os itens do dropdown tipo seleção */
|
|
1873
1872
|
itemsSelection?: ItemsSelection[];
|
|
1874
|
-
/** Define a variante do dropdown */
|
|
1875
|
-
variant?: 'outlined' | 'text';
|
|
1876
1873
|
/** Define o tipo do dropdown */
|
|
1877
1874
|
type?: 'menu' | 'selection';
|
|
1878
1875
|
}
|