@comercti/vue-components-hmg 0.43.10 → 0.43.11
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 +1 -1
- package/comerc-style-guide.es.js +595 -586
- package/comerc-style-guide.umd.js +2 -2
- package/index.d.ts +3 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2352,7 +2352,9 @@ declare interface IVariants {
|
|
|
2352
2352
|
declare type MenuItem = {
|
|
2353
2353
|
label: string;
|
|
2354
2354
|
value: string;
|
|
2355
|
-
disabled
|
|
2355
|
+
disabled?: boolean;
|
|
2356
|
+
icon?: string;
|
|
2357
|
+
color?: string;
|
|
2356
2358
|
};
|
|
2357
2359
|
|
|
2358
2360
|
declare type ModelValueType = string | number | boolean | (string | number | boolean)[];
|