@deot/vc 1.0.51 → 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 +54 -6
- package/dist/index.iife.js +4243 -32
- package/dist/index.js +3 -3
- package/dist/index.umd.cjs +4243 -32
- 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;
|