@comercti/react-components-hmg 0.24.7 → 0.25.1
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 +16 -16
- package/comerc-style-guide.es.js +1698 -1681
- package/comerc-style-guide.umd.js +7 -7
- package/index.d.ts +2 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -271,7 +271,7 @@ redirect: (item: ItensMenu_2) => any;
|
|
|
271
271
|
onSelected?: (value: Coluna[]) => any;
|
|
272
272
|
onRedirect?: (item: ItensMenu_2) => any;
|
|
273
273
|
}>, {
|
|
274
|
-
type: "menu" | "selection";
|
|
274
|
+
type: "menu" | "selection" | "button";
|
|
275
275
|
background: "white" | "black";
|
|
276
276
|
itemsMenu: ItensMenu_2[];
|
|
277
277
|
itemsSelection: ItemsSelection[];
|
|
@@ -2128,7 +2128,7 @@ declare interface DropdownProps {
|
|
|
2128
2128
|
/** Define os itens do dropdown tipo seleção */
|
|
2129
2129
|
itemsSelection?: ItemsSelection[];
|
|
2130
2130
|
/** Define o tipo do dropdown */
|
|
2131
|
-
type?: 'menu' | 'selection';
|
|
2131
|
+
type?: 'menu' | 'selection' | 'button';
|
|
2132
2132
|
/** Define a cor de fundo */
|
|
2133
2133
|
background?: 'white' | 'black';
|
|
2134
2134
|
/** Permite redirecionamento */
|