@comercti/react-components-hmg 0.0.41 → 0.0.42
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 +2 -2
- package/comerc-style-guide.es.js +245 -244
- package/comerc-style-guide.umd.js +2 -2
- package/index.d.ts +11 -5
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -208,8 +208,8 @@ disabled: boolean;
|
|
|
208
208
|
range: boolean;
|
|
209
209
|
rounded: boolean;
|
|
210
210
|
noAlertIcon: boolean;
|
|
211
|
-
slotInUse: boolean;
|
|
212
211
|
modal: boolean;
|
|
212
|
+
slotInUse: boolean;
|
|
213
213
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
214
214
|
rootRef: HTMLDivElement;
|
|
215
215
|
}, any>;
|
|
@@ -809,11 +809,19 @@ declare function __VLS_template_10(): {
|
|
|
809
809
|
declare function __VLS_template_11(): {
|
|
810
810
|
attrs: Partial<{}>;
|
|
811
811
|
slots: Readonly<{
|
|
812
|
-
/**
|
|
812
|
+
/** Adiciona conteúdo na direta do menu */
|
|
813
813
|
addToRight?: (scope: {}) => any;
|
|
814
|
+
/** Adiciona imagem no menu */
|
|
815
|
+
addImg?: (scope: {}) => any;
|
|
816
|
+
/** Adiciona conteúdo no menu */
|
|
817
|
+
addContent?: (scope: {}) => any;
|
|
814
818
|
}> & {
|
|
815
|
-
/**
|
|
819
|
+
/** Adiciona conteúdo na direta do menu */
|
|
816
820
|
addToRight?: (scope: {}) => any;
|
|
821
|
+
/** Adiciona imagem no menu */
|
|
822
|
+
addImg?: (scope: {}) => any;
|
|
823
|
+
/** Adiciona conteúdo no menu */
|
|
824
|
+
addContent?: (scope: {}) => any;
|
|
817
825
|
};
|
|
818
826
|
refs: {};
|
|
819
827
|
rootEl: any;
|
|
@@ -1498,8 +1506,6 @@ declare type DataTableProps = {
|
|
|
1498
1506
|
search?: boolean;
|
|
1499
1507
|
/** Array de objetos que serão exibidos na tabela */
|
|
1500
1508
|
items: Record<string, any>[];
|
|
1501
|
-
/** Indica que os slots estão em uso */
|
|
1502
|
-
slotInUse?: boolean;
|
|
1503
1509
|
};
|
|
1504
1510
|
|
|
1505
1511
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|