@bscomp/ep-ui 0.2.3 → 0.2.4

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.
@@ -1,5 +1,6 @@
1
1
  declare const EPDialog: ({
2
2
  new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
3
+ submitLoading: import('vue').PropType<any>;
3
4
  modelValue: import('vue').PropType<any>;
4
5
  params: import('vue').PropType<any>;
5
6
  title: {
@@ -38,7 +39,11 @@ declare const EPDialog: ({
38
39
  onClose?: ((...args: any[]) => any) | undefined;
39
40
  onHandleCancel?: ((...args: any[]) => any) | undefined;
40
41
  onHandleSubmit?: ((...args: any[]) => any) | undefined;
41
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
42
+ }>, {
43
+ formRef: import('vue').Ref<any, any>;
44
+ dialogRef: import('vue').Ref<any, any>;
45
+ clearValidate: () => void;
46
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
42
47
  close: (...args: any[]) => void;
43
48
  handleCancel: (...args: any[]) => void;
44
49
  handleSubmit: (...args: any[]) => void;
@@ -57,6 +62,7 @@ declare const EPDialog: ({
57
62
  M: {};
58
63
  Defaults: {};
59
64
  }, Readonly<import('vue').ExtractPropTypes<{
65
+ submitLoading: import('vue').PropType<any>;
60
66
  modelValue: import('vue').PropType<any>;
61
67
  params: import('vue').PropType<any>;
62
68
  title: {
@@ -95,7 +101,11 @@ declare const EPDialog: ({
95
101
  onClose?: ((...args: any[]) => any) | undefined;
96
102
  onHandleCancel?: ((...args: any[]) => any) | undefined;
97
103
  onHandleSubmit?: ((...args: any[]) => any) | undefined;
98
- }>, {}, {}, {}, {}, {
104
+ }>, {
105
+ formRef: import('vue').Ref<any, any>;
106
+ dialogRef: import('vue').Ref<any, any>;
107
+ clearValidate: () => void;
108
+ }, {}, {}, {}, {
99
109
  title: string;
100
110
  formProps: any;
101
111
  cancelText: string;
@@ -107,6 +117,7 @@ declare const EPDialog: ({
107
117
  __isTeleport?: undefined;
108
118
  __isSuspense?: undefined;
109
119
  } & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
120
+ submitLoading: import('vue').PropType<any>;
110
121
  modelValue: import('vue').PropType<any>;
111
122
  params: import('vue').PropType<any>;
112
123
  title: {
@@ -145,7 +156,11 @@ declare const EPDialog: ({
145
156
  onClose?: ((...args: any[]) => any) | undefined;
146
157
  onHandleCancel?: ((...args: any[]) => any) | undefined;
147
158
  onHandleSubmit?: ((...args: any[]) => any) | undefined;
148
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
159
+ }>, {
160
+ formRef: import('vue').Ref<any, any>;
161
+ dialogRef: import('vue').Ref<any, any>;
162
+ clearValidate: () => void;
163
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
149
164
  close: (...args: any[]) => void;
150
165
  handleCancel: (...args: any[]) => void;
151
166
  handleSubmit: (...args: any[]) => void;
@@ -1,4 +1,5 @@
1
1
  declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ submitLoading: import('vue').PropType<any>;
2
3
  modelValue: import('vue').PropType<any>;
3
4
  params: import('vue').PropType<any>;
4
5
  title: {
@@ -33,11 +34,16 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
33
34
  height: {
34
35
  type: import('vue').PropType<string>;
35
36
  };
36
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
37
+ }>, {
38
+ formRef: import('vue').Ref<any, any>;
39
+ dialogRef: import('vue').Ref<any, any>;
40
+ clearValidate: () => void;
41
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
37
42
  close: (...args: any[]) => void;
38
43
  handleCancel: (...args: any[]) => void;
39
44
  handleSubmit: (...args: any[]) => void;
40
45
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
46
+ submitLoading: import('vue').PropType<any>;
41
47
  modelValue: import('vue').PropType<any>;
42
48
  params: import('vue').PropType<any>;
43
49
  title: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bscomp/ep-ui",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "Vue3 中基于Element-plus二次封装基础组件文档",
5
5
  "author": "bishang",
6
6
  "license": "MIT",