@deot/vc 1.0.50 → 1.0.52
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/dist/index.cjs +2 -2
- package/dist/index.d.ts +58 -6
- package/dist/index.iife.js +4258 -37
- package/dist/index.js +3 -3
- package/dist/index.umd.cjs +4258 -37
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -79,8 +79,8 @@ const Components = {
|
|
|
79
79
|
MFormItem: vcComponents.MFormItem,
|
|
80
80
|
Fragment: vcComponents.Fragment,
|
|
81
81
|
MFragment: vcComponents.MFragment,
|
|
82
|
-
|
|
83
|
-
|
|
82
|
+
Snapshot: vcComponents.Snapshot,
|
|
83
|
+
MSnapshot: vcComponents.MSnapshot,
|
|
84
84
|
Icon: vcComponents.Icon,
|
|
85
85
|
MIcon: vcComponents.MIcon,
|
|
86
86
|
Image: vcComponents.Image,
|
package/dist/index.d.ts
CHANGED
|
@@ -4102,31 +4102,79 @@ export declare const Components: {
|
|
|
4102
4102
|
MFragment: DefineComponent< {}, () => VNode<RendererNode, RendererElement, {
|
|
4103
4103
|
[key: string]: any;
|
|
4104
4104
|
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
4105
|
-
|
|
4105
|
+
Snapshot: DefineComponent<ExtractPropTypes< {
|
|
4106
4106
|
tag: {
|
|
4107
4107
|
type: StringConstructor;
|
|
4108
4108
|
default: string;
|
|
4109
4109
|
};
|
|
4110
|
-
|
|
4110
|
+
crossOrigin: {
|
|
4111
|
+
type: StringConstructor;
|
|
4112
|
+
default: string;
|
|
4113
|
+
validator: (v: any) => boolean;
|
|
4114
|
+
};
|
|
4115
|
+
transformSource: FunctionConstructor;
|
|
4116
|
+
options: {
|
|
4117
|
+
type: ObjectConstructor;
|
|
4118
|
+
default: () => {};
|
|
4119
|
+
};
|
|
4120
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "ready"[], "ready", PublicProps, Readonly<ExtractPropTypes< {
|
|
4111
4121
|
tag: {
|
|
4112
4122
|
type: StringConstructor;
|
|
4113
4123
|
default: string;
|
|
4114
4124
|
};
|
|
4115
|
-
|
|
4125
|
+
crossOrigin: {
|
|
4126
|
+
type: StringConstructor;
|
|
4127
|
+
default: string;
|
|
4128
|
+
validator: (v: any) => boolean;
|
|
4129
|
+
};
|
|
4130
|
+
transformSource: FunctionConstructor;
|
|
4131
|
+
options: {
|
|
4132
|
+
type: ObjectConstructor;
|
|
4133
|
+
default: () => {};
|
|
4134
|
+
};
|
|
4135
|
+
}>> & Readonly<{
|
|
4136
|
+
onReady?: ((...args: any[]) => any) | undefined;
|
|
4137
|
+
}>, {
|
|
4116
4138
|
tag: string;
|
|
4139
|
+
options: Record<string, any>;
|
|
4140
|
+
crossOrigin: string;
|
|
4117
4141
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
4118
|
-
|
|
4142
|
+
MSnapshot: DefineComponent<ExtractPropTypes< {
|
|
4119
4143
|
tag: {
|
|
4120
4144
|
type: StringConstructor;
|
|
4121
4145
|
default: string;
|
|
4122
4146
|
};
|
|
4123
|
-
|
|
4147
|
+
crossOrigin: {
|
|
4148
|
+
type: StringConstructor;
|
|
4149
|
+
default: string;
|
|
4150
|
+
validator: (v: any) => boolean;
|
|
4151
|
+
};
|
|
4152
|
+
transformSource: FunctionConstructor;
|
|
4153
|
+
options: {
|
|
4154
|
+
type: ObjectConstructor;
|
|
4155
|
+
default: () => {};
|
|
4156
|
+
};
|
|
4157
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "ready"[], "ready", PublicProps, Readonly<ExtractPropTypes< {
|
|
4124
4158
|
tag: {
|
|
4125
4159
|
type: StringConstructor;
|
|
4126
4160
|
default: string;
|
|
4127
4161
|
};
|
|
4128
|
-
|
|
4162
|
+
crossOrigin: {
|
|
4163
|
+
type: StringConstructor;
|
|
4164
|
+
default: string;
|
|
4165
|
+
validator: (v: any) => boolean;
|
|
4166
|
+
};
|
|
4167
|
+
transformSource: FunctionConstructor;
|
|
4168
|
+
options: {
|
|
4169
|
+
type: ObjectConstructor;
|
|
4170
|
+
default: () => {};
|
|
4171
|
+
};
|
|
4172
|
+
}>> & Readonly<{
|
|
4173
|
+
onReady?: ((...args: any[]) => any) | undefined;
|
|
4174
|
+
}>, {
|
|
4129
4175
|
tag: string;
|
|
4176
|
+
options: Record<string, any>;
|
|
4177
|
+
crossOrigin: string;
|
|
4130
4178
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
4131
4179
|
Icon: DefineComponent<ExtractPropTypes< {
|
|
4132
4180
|
type: StringConstructor;
|
|
@@ -8013,6 +8061,8 @@ export declare const Components: {
|
|
|
8013
8061
|
falseValue: string | number | boolean;
|
|
8014
8062
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
8015
8063
|
RadioButton: DefineComponent<ExtractPropTypes< {
|
|
8064
|
+
labelStyle: (ObjectConstructor | StringConstructor)[];
|
|
8065
|
+
labelClass: (ObjectConstructor | StringConstructor)[];
|
|
8016
8066
|
disabled: {
|
|
8017
8067
|
type: BooleanConstructor;
|
|
8018
8068
|
default: boolean;
|
|
@@ -8041,6 +8091,8 @@ export declare const Components: {
|
|
|
8041
8091
|
default: boolean;
|
|
8042
8092
|
};
|
|
8043
8093
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
8094
|
+
labelStyle: (ObjectConstructor | StringConstructor)[];
|
|
8095
|
+
labelClass: (ObjectConstructor | StringConstructor)[];
|
|
8044
8096
|
disabled: {
|
|
8045
8097
|
type: BooleanConstructor;
|
|
8046
8098
|
default: boolean;
|