@comercti/vue-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 +5 -5
- package/comerc-style-guide.es.js +1611 -1594
- package/comerc-style-guide.umd.js +5 -5
- package/index.d.ts +2 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -294,7 +294,7 @@ redirect: (item: ItensMenu_2) => any;
|
|
|
294
294
|
onSelected?: (value: Coluna[]) => any;
|
|
295
295
|
onRedirect?: (item: ItensMenu_2) => any;
|
|
296
296
|
}>, {
|
|
297
|
-
type: "menu" | "selection";
|
|
297
|
+
type: "menu" | "selection" | "button";
|
|
298
298
|
background: "white" | "black";
|
|
299
299
|
itemsMenu: ItensMenu_2[];
|
|
300
300
|
itemsSelection: ItemsSelection[];
|
|
@@ -2029,7 +2029,7 @@ declare interface DropdownProps {
|
|
|
2029
2029
|
/** Define os itens do dropdown tipo seleção */
|
|
2030
2030
|
itemsSelection?: ItemsSelection[];
|
|
2031
2031
|
/** Define o tipo do dropdown */
|
|
2032
|
-
type?: 'menu' | 'selection';
|
|
2032
|
+
type?: 'menu' | 'selection' | 'button';
|
|
2033
2033
|
/** Define a cor de fundo */
|
|
2034
2034
|
background?: 'white' | 'black';
|
|
2035
2035
|
/** Permite redirecionamento */
|