@maxtropy/v-components 0.1.16-beta.5 → 0.1.16-beta.7
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/mx-vcomponents.es.js +2260 -2254
- package/dist/style.css +1 -1
- package/dist/types/components/button/MxButton.vue.d.ts +4 -2
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
3
3
|
type: {
|
|
4
4
|
type: PropType<"" | "default" | "text" | "success" | "warning" | "info" | "primary" | "danger" | "dashed">;
|
|
@@ -122,7 +122,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
122
122
|
autofocus: boolean;
|
|
123
123
|
round: boolean;
|
|
124
124
|
tag: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown>;
|
|
125
|
-
}, {}>, Partial<Record<
|
|
125
|
+
}, {}>, Partial<Record<string, (_: {}) => any>> & {
|
|
126
|
+
default?(_: {}): any;
|
|
127
|
+
}>;
|
|
126
128
|
export default _default;
|
|
127
129
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
128
130
|
new (): {
|