@comercti/react-components-hmg 0.8.6 → 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 +1218 -1189
- package/comerc-style-guide.umd.js +7 -7
- package/index.d.ts +5 -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(): {
|
|
@@ -1716,6 +1715,7 @@ onPaginate?: (value: number) => any;
|
|
|
1716
1715
|
}>, {
|
|
1717
1716
|
totalPages: number;
|
|
1718
1717
|
currentPage: number;
|
|
1718
|
+
itemsPerPage: number;
|
|
1719
1719
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1720
1720
|
|
|
1721
1721
|
declare const _default_20: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
@@ -1870,8 +1870,6 @@ declare interface DropdownProps {
|
|
|
1870
1870
|
itemsMenu?: ItensMenu[];
|
|
1871
1871
|
/** Define os itens do dropdown tipo seleção */
|
|
1872
1872
|
itemsSelection?: ItemsSelection[];
|
|
1873
|
-
/** Define a variante do dropdown */
|
|
1874
|
-
variant?: 'outlined' | 'text';
|
|
1875
1873
|
/** Define o tipo do dropdown */
|
|
1876
1874
|
type?: 'menu' | 'selection';
|
|
1877
1875
|
}
|
|
@@ -2002,6 +2000,8 @@ declare type PaginationProps = {
|
|
|
2002
2000
|
totalPages: number;
|
|
2003
2001
|
/** Página atual */
|
|
2004
2002
|
currentPage: number;
|
|
2003
|
+
/** Itens por página */
|
|
2004
|
+
itemsPerPage: number;
|
|
2005
2005
|
};
|
|
2006
2006
|
|
|
2007
2007
|
export declare const removeCeToast: (id: number) => void;
|