@partex/one-core 2.0.44 → 2.0.46
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/lib/components/form/index.vue.d.ts +7 -0
- package/lib/components/form/interface.d.ts +2 -0
- package/lib/one-core.cjs +1 -1
- package/lib/one-core.js +1134 -1136
- package/lib/one-core.umd.cjs +1 -1
- package/package.json +1 -1
|
@@ -48,6 +48,7 @@ declare const _default: DefineComponent<{
|
|
|
48
48
|
rows?: number | null | undefined;
|
|
49
49
|
label: string;
|
|
50
50
|
key: string;
|
|
51
|
+
show?: boolean | undefined;
|
|
51
52
|
placeholder?: string | undefined;
|
|
52
53
|
span?: number | undefined;
|
|
53
54
|
disabled?: boolean | undefined;
|
|
@@ -75,6 +76,7 @@ declare const _default: DefineComponent<{
|
|
|
75
76
|
precision?: number | null | undefined;
|
|
76
77
|
label: string;
|
|
77
78
|
key: string;
|
|
79
|
+
show?: boolean | undefined;
|
|
78
80
|
placeholder?: string | undefined;
|
|
79
81
|
span?: number | undefined;
|
|
80
82
|
disabled?: boolean | undefined;
|
|
@@ -100,6 +102,7 @@ declare const _default: DefineComponent<{
|
|
|
100
102
|
isDateDisabled: string | ((ts: number, detail: ObjectKey) => boolean);
|
|
101
103
|
label: string;
|
|
102
104
|
key: string;
|
|
105
|
+
show?: boolean | undefined;
|
|
103
106
|
placeholder?: string | undefined;
|
|
104
107
|
span?: number | undefined;
|
|
105
108
|
disabled?: boolean | undefined;
|
|
@@ -127,6 +130,7 @@ declare const _default: DefineComponent<{
|
|
|
127
130
|
maxTagCount?: number | "responsive" | null | undefined;
|
|
128
131
|
label: string;
|
|
129
132
|
key: string;
|
|
133
|
+
show?: boolean | undefined;
|
|
130
134
|
placeholder?: string | undefined;
|
|
131
135
|
span?: number | undefined;
|
|
132
136
|
disabled?: boolean | undefined;
|
|
@@ -150,6 +154,7 @@ declare const _default: DefineComponent<{
|
|
|
150
154
|
format?: string | undefined;
|
|
151
155
|
label: string;
|
|
152
156
|
key: string;
|
|
157
|
+
show?: boolean | undefined;
|
|
153
158
|
placeholder?: string | undefined;
|
|
154
159
|
span?: number | undefined;
|
|
155
160
|
disabled?: boolean | undefined;
|
|
@@ -174,6 +179,7 @@ declare const _default: DefineComponent<{
|
|
|
174
179
|
max?: number | null | undefined;
|
|
175
180
|
label: string;
|
|
176
181
|
key: string;
|
|
182
|
+
show?: boolean | undefined;
|
|
177
183
|
placeholder?: string | undefined;
|
|
178
184
|
span?: number | undefined;
|
|
179
185
|
disabled?: boolean | undefined;
|
|
@@ -196,6 +202,7 @@ declare const _default: DefineComponent<{
|
|
|
196
202
|
input: "switch";
|
|
197
203
|
label: string;
|
|
198
204
|
key: string;
|
|
205
|
+
show?: boolean | undefined;
|
|
199
206
|
placeholder?: string | undefined;
|
|
200
207
|
span?: number | undefined;
|
|
201
208
|
disabled?: boolean | undefined;
|
|
@@ -4,6 +4,7 @@ type RuleTrigger = 'input' | 'change' | 'blur' | 'focus';
|
|
|
4
4
|
interface IFormItemBase {
|
|
5
5
|
label: string;
|
|
6
6
|
key: string;
|
|
7
|
+
show?: boolean;
|
|
7
8
|
placeholder?: string;
|
|
8
9
|
span?: number;
|
|
9
10
|
disabled?: boolean;
|
|
@@ -69,6 +70,7 @@ export type IFormItemEdit = Required<IFormItemInput> | Required<IFormItemNumber>
|
|
|
69
70
|
label: string;
|
|
70
71
|
key: string;
|
|
71
72
|
input: '';
|
|
73
|
+
show: boolean;
|
|
72
74
|
placeholder: string;
|
|
73
75
|
span: number;
|
|
74
76
|
disabled: boolean;
|