next-element-vue 0.3.9 → 0.4.1

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,13 @@
1
1
  import './src/index.scss';
2
2
  export declare const NextDialog: import("../../utils/install").SFCWithInstall<import("vue").DefineComponent<{
3
+ className: {
4
+ type: StringConstructor;
5
+ default: string;
6
+ };
7
+ style: {
8
+ type: import("vue").PropType<import("vue").CSSProperties>;
9
+ default: () => {};
10
+ };
3
11
  modelValue: {
4
12
  type: BooleanConstructor;
5
13
  default: boolean;
@@ -53,6 +61,14 @@ export declare const NextDialog: import("../../utils/install").SFCWithInstall<im
53
61
  default: string;
54
62
  };
55
63
  }, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
64
+ className: {
65
+ type: StringConstructor;
66
+ default: string;
67
+ };
68
+ style: {
69
+ type: import("vue").PropType<import("vue").CSSProperties>;
70
+ default: () => {};
71
+ };
56
72
  modelValue: {
57
73
  type: BooleanConstructor;
58
74
  default: boolean;
@@ -108,6 +124,8 @@ export declare const NextDialog: import("../../utils/install").SFCWithInstall<im
108
124
  }>> & {
109
125
  onClose?: (...args: any[]) => any;
110
126
  }, {
127
+ className: string;
128
+ style: import("vue").CSSProperties;
111
129
  modelValue: boolean;
112
130
  title: string;
113
131
  fullscreen: boolean;
@@ -1,4 +1,13 @@
1
+ import type { PropType, CSSProperties } from 'vue';
1
2
  declare const _default: import("vue").DefineComponent<{
3
+ className: {
4
+ type: StringConstructor;
5
+ default: string;
6
+ };
7
+ style: {
8
+ type: PropType<CSSProperties>;
9
+ default: () => {};
10
+ };
2
11
  modelValue: {
3
12
  type: BooleanConstructor;
4
13
  default: boolean;
@@ -52,6 +61,14 @@ declare const _default: import("vue").DefineComponent<{
52
61
  default: string;
53
62
  };
54
63
  }, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
64
+ className: {
65
+ type: StringConstructor;
66
+ default: string;
67
+ };
68
+ style: {
69
+ type: PropType<CSSProperties>;
70
+ default: () => {};
71
+ };
55
72
  modelValue: {
56
73
  type: BooleanConstructor;
57
74
  default: boolean;
@@ -107,6 +124,8 @@ declare const _default: import("vue").DefineComponent<{
107
124
  }>> & {
108
125
  onClose?: (...args: any[]) => any;
109
126
  }, {
127
+ className: string;
128
+ style: CSSProperties;
110
129
  modelValue: boolean;
111
130
  title: string;
112
131
  fullscreen: boolean;
@@ -48,6 +48,54 @@ export declare const NextTreeSelect: import("../../utils/install").SFCWithInstal
48
48
  disabled: boolean;
49
49
  formParams: Record<string, any>;
50
50
  }, {}>> & Record<string, any>;
51
+ export declare const NextTreeCascader: import("../../utils/install").SFCWithInstall<import("vue").DefineComponent<{
52
+ modelValue: {
53
+ type: (NumberConstructor | StringConstructor | BooleanConstructor | ObjectConstructor | ArrayConstructor)[];
54
+ default: string;
55
+ };
56
+ column: {
57
+ type: ObjectConstructor;
58
+ default: () => {};
59
+ };
60
+ disabled: {
61
+ type: BooleanConstructor;
62
+ default: boolean;
63
+ };
64
+ formParams: {
65
+ type: ObjectConstructor;
66
+ default: () => {};
67
+ };
68
+ }, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "clear" | "expand-change" | "visible-change" | "remove-tag" | "blur" | "focus")[], "change" | "clear" | "expand-change" | "visible-change" | "remove-tag" | "blur" | "focus", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
69
+ modelValue: {
70
+ type: (NumberConstructor | StringConstructor | BooleanConstructor | ObjectConstructor | ArrayConstructor)[];
71
+ default: string;
72
+ };
73
+ column: {
74
+ type: ObjectConstructor;
75
+ default: () => {};
76
+ };
77
+ disabled: {
78
+ type: BooleanConstructor;
79
+ default: boolean;
80
+ };
81
+ formParams: {
82
+ type: ObjectConstructor;
83
+ default: () => {};
84
+ };
85
+ }>> & {
86
+ onChange?: (...args: any[]) => any;
87
+ onClear?: (...args: any[]) => any;
88
+ "onExpand-change"?: (...args: any[]) => any;
89
+ "onVisible-change"?: (...args: any[]) => any;
90
+ "onRemove-tag"?: (...args: any[]) => any;
91
+ onBlur?: (...args: any[]) => any;
92
+ onFocus?: (...args: any[]) => any;
93
+ }, {
94
+ modelValue: string | number | boolean | Record<string, any> | unknown[];
95
+ column: Record<string, any>;
96
+ disabled: boolean;
97
+ formParams: Record<string, any>;
98
+ }, {}>> & Record<string, any>;
51
99
  export declare const NextForm: import("../../utils/install").SFCWithInstall<import("vue").DefineComponent<{
52
100
  options: {
53
101
  type: ObjectConstructor;
@@ -0,0 +1,49 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ modelValue: {
3
+ type: (NumberConstructor | StringConstructor | BooleanConstructor | ObjectConstructor | ArrayConstructor)[];
4
+ default: string;
5
+ };
6
+ column: {
7
+ type: ObjectConstructor;
8
+ default: () => {};
9
+ };
10
+ disabled: {
11
+ type: BooleanConstructor;
12
+ default: boolean;
13
+ };
14
+ formParams: {
15
+ type: ObjectConstructor;
16
+ default: () => {};
17
+ };
18
+ }, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "clear" | "expand-change" | "visible-change" | "remove-tag" | "blur" | "focus")[], "change" | "clear" | "expand-change" | "visible-change" | "remove-tag" | "blur" | "focus", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
19
+ modelValue: {
20
+ type: (NumberConstructor | StringConstructor | BooleanConstructor | ObjectConstructor | ArrayConstructor)[];
21
+ default: string;
22
+ };
23
+ column: {
24
+ type: ObjectConstructor;
25
+ default: () => {};
26
+ };
27
+ disabled: {
28
+ type: BooleanConstructor;
29
+ default: boolean;
30
+ };
31
+ formParams: {
32
+ type: ObjectConstructor;
33
+ default: () => {};
34
+ };
35
+ }>> & {
36
+ onChange?: (...args: any[]) => any;
37
+ onClear?: (...args: any[]) => any;
38
+ "onExpand-change"?: (...args: any[]) => any;
39
+ "onVisible-change"?: (...args: any[]) => any;
40
+ "onRemove-tag"?: (...args: any[]) => any;
41
+ onBlur?: (...args: any[]) => any;
42
+ onFocus?: (...args: any[]) => any;
43
+ }, {
44
+ modelValue: string | number | boolean | Record<string, any> | unknown[];
45
+ column: Record<string, any>;
46
+ disabled: boolean;
47
+ formParams: Record<string, any>;
48
+ }, {}>;
49
+ export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-element-vue",
3
- "version": "0.3.9",
3
+ "version": "0.4.1",
4
4
  "author": {
5
5
  "name": "huangteng",
6
6
  "email": "htengweb@163.com"