@comercti/react-components-hmg 0.24.6 → 0.24.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 +5 -5
- package/comerc-style-guide.es.js +1001 -977
- package/comerc-style-guide.umd.js +7 -7
- package/index.d.ts +3 -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 */
|
|
@@ -2387,6 +2387,7 @@ declare interface SliderProps {
|
|
|
2387
2387
|
showValue?: boolean;
|
|
2388
2388
|
size?: 'small' | 'large';
|
|
2389
2389
|
modelValue?: number | number[];
|
|
2390
|
+
showPercentage?: boolean;
|
|
2390
2391
|
}
|
|
2391
2392
|
|
|
2392
2393
|
declare interface SubMenu {
|