@comercti/react-components-hmg 0.0.41 → 0.0.43
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 +27 -25
- package/comerc-style-guide.es.js +1213 -1201
- package/comerc-style-guide.umd.js +24 -22
- package/index.d.ts +13 -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>;
|
|
@@ -453,6 +453,8 @@ declare type __VLS_Props_18 = {
|
|
|
453
453
|
itemsMenuMyService: ItensMenu[];
|
|
454
454
|
/** Array de opções do menuSidebar para versão mobile */
|
|
455
455
|
itemsMenu?: ItensMenu[];
|
|
456
|
+
/** Array de módulos */
|
|
457
|
+
itemsModules?: ItensMenu[];
|
|
456
458
|
/** Nome do usuário */
|
|
457
459
|
name?: string;
|
|
458
460
|
/** Email do usuário */
|
|
@@ -809,11 +811,19 @@ declare function __VLS_template_10(): {
|
|
|
809
811
|
declare function __VLS_template_11(): {
|
|
810
812
|
attrs: Partial<{}>;
|
|
811
813
|
slots: Readonly<{
|
|
812
|
-
/**
|
|
814
|
+
/** Adiciona conteúdo na direta do menu */
|
|
813
815
|
addToRight?: (scope: {}) => any;
|
|
816
|
+
/** Adiciona imagem no menu */
|
|
817
|
+
addImg?: (scope: {}) => any;
|
|
818
|
+
/** Adiciona conteúdo no menu */
|
|
819
|
+
addContent?: (scope: {}) => any;
|
|
814
820
|
}> & {
|
|
815
|
-
/**
|
|
821
|
+
/** Adiciona conteúdo na direta do menu */
|
|
816
822
|
addToRight?: (scope: {}) => any;
|
|
823
|
+
/** Adiciona imagem no menu */
|
|
824
|
+
addImg?: (scope: {}) => any;
|
|
825
|
+
/** Adiciona conteúdo no menu */
|
|
826
|
+
addContent?: (scope: {}) => any;
|
|
817
827
|
};
|
|
818
828
|
refs: {};
|
|
819
829
|
rootEl: any;
|
|
@@ -1498,8 +1508,6 @@ declare type DataTableProps = {
|
|
|
1498
1508
|
search?: boolean;
|
|
1499
1509
|
/** Array de objetos que serão exibidos na tabela */
|
|
1500
1510
|
items: Record<string, any>[];
|
|
1501
|
-
/** Indica que os slots estão em uso */
|
|
1502
|
-
slotInUse?: boolean;
|
|
1503
1511
|
};
|
|
1504
1512
|
|
|
1505
1513
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|