@comercti/react-components-hmg 0.8.16 → 0.8.18
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 +528 -508
- package/comerc-style-guide.umd.js +4 -4
- package/index.d.ts +18 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -199,7 +199,7 @@ type: "inline" | "centralized" | "highlighted";
|
|
|
199
199
|
|
|
200
200
|
declare const __VLS_component_26: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{}>, {
|
|
201
201
|
openMenu: boolean;
|
|
202
|
-
layout: "default" | "base";
|
|
202
|
+
layout: "default" | "base" | "minimal";
|
|
203
203
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
204
204
|
|
|
205
205
|
declare const __VLS_component_3: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
@@ -684,7 +684,7 @@ declare type __VLS_Props_33 = {
|
|
|
684
684
|
/** Indica se o menu abriu */
|
|
685
685
|
openMenu?: boolean;
|
|
686
686
|
/** Defini o tipo de layout a ser usado */
|
|
687
|
-
layout: 'default' | 'base';
|
|
687
|
+
layout: 'default' | 'base' | 'minimal';
|
|
688
688
|
};
|
|
689
689
|
|
|
690
690
|
declare type __VLS_Props_34 = {
|
|
@@ -1119,6 +1119,14 @@ declare function __VLS_template_26(): {
|
|
|
1119
1119
|
content?: () => VNode[];
|
|
1120
1120
|
/** Adicione conteúdo no footer */
|
|
1121
1121
|
footer?: () => VNode[];
|
|
1122
|
+
/** Adicione conteúdo no nav */
|
|
1123
|
+
nav?: () => VNode[];
|
|
1124
|
+
/** Adicione conteúdo no dividers */
|
|
1125
|
+
dividers?: () => VNode[];
|
|
1126
|
+
/** Adicione conteúdo no filter */
|
|
1127
|
+
filter?: () => VNode[];
|
|
1128
|
+
/** Adicione conteúdo na tabela */
|
|
1129
|
+
table?: () => VNode[];
|
|
1122
1130
|
}> & {
|
|
1123
1131
|
/** Adicione conteúdo no header */
|
|
1124
1132
|
header?: () => VNode[];
|
|
@@ -1128,6 +1136,14 @@ declare function __VLS_template_26(): {
|
|
|
1128
1136
|
content?: () => VNode[];
|
|
1129
1137
|
/** Adicione conteúdo no footer */
|
|
1130
1138
|
footer?: () => VNode[];
|
|
1139
|
+
/** Adicione conteúdo no nav */
|
|
1140
|
+
nav?: () => VNode[];
|
|
1141
|
+
/** Adicione conteúdo no dividers */
|
|
1142
|
+
dividers?: () => VNode[];
|
|
1143
|
+
/** Adicione conteúdo no filter */
|
|
1144
|
+
filter?: () => VNode[];
|
|
1145
|
+
/** Adicione conteúdo na tabela */
|
|
1146
|
+
table?: () => VNode[];
|
|
1131
1147
|
};
|
|
1132
1148
|
refs: {};
|
|
1133
1149
|
rootEl: any;
|