next-element-vue 0.4.3 → 0.4.6

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.
@@ -60,6 +60,10 @@ export declare const NextDialog: import("../../utils/install").SFCWithInstall<im
60
60
  type: StringConstructor;
61
61
  default: string;
62
62
  };
63
+ nofill: {
64
+ type: BooleanConstructor;
65
+ default: boolean;
66
+ };
63
67
  }, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
64
68
  className: {
65
69
  type: StringConstructor;
@@ -121,6 +125,10 @@ export declare const NextDialog: import("../../utils/install").SFCWithInstall<im
121
125
  type: StringConstructor;
122
126
  default: string;
123
127
  };
128
+ nofill: {
129
+ type: BooleanConstructor;
130
+ default: boolean;
131
+ };
124
132
  }>> & {
125
133
  onClose?: (...args: any[]) => any;
126
134
  }, {
@@ -139,5 +147,6 @@ export declare const NextDialog: import("../../utils/install").SFCWithInstall<im
139
147
  destroyOnClose: boolean;
140
148
  modal: boolean;
141
149
  top: string;
150
+ nofill: boolean;
142
151
  }, {}>> & Record<string, any>;
143
152
  export default NextDialog;
@@ -60,6 +60,10 @@ declare const _default: import("vue").DefineComponent<{
60
60
  type: StringConstructor;
61
61
  default: string;
62
62
  };
63
+ nofill: {
64
+ type: BooleanConstructor;
65
+ default: boolean;
66
+ };
63
67
  }, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
64
68
  className: {
65
69
  type: StringConstructor;
@@ -121,6 +125,10 @@ declare const _default: import("vue").DefineComponent<{
121
125
  type: StringConstructor;
122
126
  default: string;
123
127
  };
128
+ nofill: {
129
+ type: BooleanConstructor;
130
+ default: boolean;
131
+ };
124
132
  }>> & {
125
133
  onClose?: (...args: any[]) => any;
126
134
  }, {
@@ -139,5 +147,6 @@ declare const _default: import("vue").DefineComponent<{
139
147
  destroyOnClose: boolean;
140
148
  modal: boolean;
141
149
  top: string;
150
+ nofill: boolean;
142
151
  }, {}>;
143
152
  export default _default;
@@ -96,6 +96,66 @@ export declare const NextTreeCascader: import("../../utils/install").SFCWithInst
96
96
  disabled: boolean;
97
97
  formParams: Record<string, any>;
98
98
  }, {}>> & Record<string, any>;
99
+ export declare const NextInputTableSelect: import("../../utils/install").SFCWithInstall<import("vue").DefineComponent<{
100
+ modelValue: {
101
+ type: (NumberConstructor | StringConstructor | BooleanConstructor | ObjectConstructor | ArrayConstructor)[];
102
+ default: () => any[];
103
+ };
104
+ column: {
105
+ type: ObjectConstructor;
106
+ default: () => {};
107
+ };
108
+ disabled: {
109
+ type: BooleanConstructor;
110
+ default: boolean;
111
+ };
112
+ closable: {
113
+ type: BooleanConstructor;
114
+ default: boolean;
115
+ };
116
+ formParams: {
117
+ type: ObjectConstructor;
118
+ default: () => {};
119
+ };
120
+ placeholder: {
121
+ type: StringConstructor;
122
+ default: string;
123
+ };
124
+ }, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "select"[], "select", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
125
+ modelValue: {
126
+ type: (NumberConstructor | StringConstructor | BooleanConstructor | ObjectConstructor | ArrayConstructor)[];
127
+ default: () => any[];
128
+ };
129
+ column: {
130
+ type: ObjectConstructor;
131
+ default: () => {};
132
+ };
133
+ disabled: {
134
+ type: BooleanConstructor;
135
+ default: boolean;
136
+ };
137
+ closable: {
138
+ type: BooleanConstructor;
139
+ default: boolean;
140
+ };
141
+ formParams: {
142
+ type: ObjectConstructor;
143
+ default: () => {};
144
+ };
145
+ placeholder: {
146
+ type: StringConstructor;
147
+ default: string;
148
+ };
149
+ }>> & {
150
+ onSelect?: (...args: any[]) => any;
151
+ }, {
152
+ modelValue: string | number | boolean | Record<string, any> | unknown[];
153
+ column: Record<string, any>;
154
+ disabled: boolean;
155
+ formParams: Record<string, any>;
156
+ closable: boolean;
157
+ placeholder: string;
158
+ }, {}>> & Record<string, any>;
99
159
  export declare const NextForm: import("../../utils/install").SFCWithInstall<import("vue").DefineComponent<{
100
160
  options: {
101
161
  type: ObjectConstructor;
@@ -11,6 +11,10 @@ declare const InputTableSelect: import("vue").DefineComponent<{
11
11
  type: BooleanConstructor;
12
12
  default: boolean;
13
13
  };
14
+ closable: {
15
+ type: BooleanConstructor;
16
+ default: boolean;
17
+ };
14
18
  formParams: {
15
19
  type: ObjectConstructor;
16
20
  default: () => {};
@@ -32,6 +36,10 @@ declare const InputTableSelect: import("vue").DefineComponent<{
32
36
  type: BooleanConstructor;
33
37
  default: boolean;
34
38
  };
39
+ closable: {
40
+ type: BooleanConstructor;
41
+ default: boolean;
42
+ };
35
43
  formParams: {
36
44
  type: ObjectConstructor;
37
45
  default: () => {};
@@ -46,6 +54,7 @@ declare const InputTableSelect: import("vue").DefineComponent<{
46
54
  modelValue: string | number | boolean | Record<string, any> | unknown[];
47
55
  column: Record<string, any>;
48
56
  disabled: boolean;
57
+ closable: boolean;
49
58
  formParams: Record<string, any>;
50
59
  placeholder: string;
51
60
  }, {}>;
@@ -20,7 +20,7 @@ export declare const NextUpload: import("../../utils/install").SFCWithInstall<im
20
20
  }, {
21
21
  t: import("../..").Translator;
22
22
  appContext: any;
23
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
23
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "remove" | "preview")[], "change" | "remove" | "preview", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
24
24
  className: {
25
25
  type: StringConstructor;
26
26
  default: string;
@@ -40,6 +40,8 @@ export declare const NextUpload: import("../../utils/install").SFCWithInstall<im
40
40
  };
41
41
  }>> & {
42
42
  onChange?: (...args: any[]) => any;
43
+ onRemove?: (...args: any[]) => any;
44
+ onPreview?: (...args: any[]) => any;
43
45
  }, {
44
46
  className: string;
45
47
  style: import("vue").CSSProperties;
@@ -20,7 +20,7 @@ declare const _default: import("vue").DefineComponent<{
20
20
  }, {
21
21
  t: import("packages/hooks").Translator;
22
22
  appContext: any;
23
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
23
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "remove" | "preview")[], "change" | "remove" | "preview", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
24
24
  className: {
25
25
  type: StringConstructor;
26
26
  default: string;
@@ -40,6 +40,8 @@ declare const _default: import("vue").DefineComponent<{
40
40
  };
41
41
  }>> & {
42
42
  onChange?: (...args: any[]) => any;
43
+ onRemove?: (...args: any[]) => any;
44
+ onPreview?: (...args: any[]) => any;
43
45
  }, {
44
46
  className: string;
45
47
  style: CSSProperties;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-element-vue",
3
- "version": "0.4.3",
3
+ "version": "0.4.6",
4
4
  "author": {
5
5
  "name": "huangteng",
6
6
  "email": "htengweb@163.com"