@partex/one-core 2.0.100 → 2.0.102
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 -7
- package/lib/components/form/interface.d.ts +1 -1
- package/lib/components/table/interface.d.ts +2 -0
- package/lib/one-core.cjs +15 -15
- package/lib/one-core.js +1000 -1002
- package/lib/one-core.umd.cjs +15 -15
- package/package.json +1 -1
|
@@ -49,7 +49,7 @@ declare const _default: DefineComponent<{
|
|
|
49
49
|
label: string | (() => string);
|
|
50
50
|
key: string;
|
|
51
51
|
show?: boolean | undefined;
|
|
52
|
-
placeholder?: string | undefined;
|
|
52
|
+
placeholder?: string | (() => string) | undefined;
|
|
53
53
|
span?: number | undefined;
|
|
54
54
|
disabled?: boolean | undefined;
|
|
55
55
|
readonly?: boolean | undefined;
|
|
@@ -77,7 +77,7 @@ declare const _default: DefineComponent<{
|
|
|
77
77
|
label: string | (() => string);
|
|
78
78
|
key: string;
|
|
79
79
|
show?: boolean | undefined;
|
|
80
|
-
placeholder?: string | undefined;
|
|
80
|
+
placeholder?: string | (() => string) | undefined;
|
|
81
81
|
span?: number | undefined;
|
|
82
82
|
disabled?: boolean | undefined;
|
|
83
83
|
readonly?: boolean | undefined;
|
|
@@ -110,7 +110,7 @@ declare const _default: DefineComponent<{
|
|
|
110
110
|
label: string | (() => string);
|
|
111
111
|
key: string;
|
|
112
112
|
show?: boolean | undefined;
|
|
113
|
-
placeholder?: string | undefined;
|
|
113
|
+
placeholder?: string | (() => string) | undefined;
|
|
114
114
|
span?: number | undefined;
|
|
115
115
|
disabled?: boolean | undefined;
|
|
116
116
|
readonly?: boolean | undefined;
|
|
@@ -150,7 +150,7 @@ declare const _default: DefineComponent<{
|
|
|
150
150
|
label: string | (() => string);
|
|
151
151
|
key: string;
|
|
152
152
|
show?: boolean | undefined;
|
|
153
|
-
placeholder?: string | undefined;
|
|
153
|
+
placeholder?: string | (() => string) | undefined;
|
|
154
154
|
span?: number | undefined;
|
|
155
155
|
disabled?: boolean | undefined;
|
|
156
156
|
readonly?: boolean | undefined;
|
|
@@ -174,7 +174,7 @@ declare const _default: DefineComponent<{
|
|
|
174
174
|
label: string | (() => string);
|
|
175
175
|
key: string;
|
|
176
176
|
show?: boolean | undefined;
|
|
177
|
-
placeholder?: string | undefined;
|
|
177
|
+
placeholder?: string | (() => string) | undefined;
|
|
178
178
|
span?: number | undefined;
|
|
179
179
|
disabled?: boolean | undefined;
|
|
180
180
|
readonly?: boolean | undefined;
|
|
@@ -199,7 +199,7 @@ declare const _default: DefineComponent<{
|
|
|
199
199
|
label: string | (() => string);
|
|
200
200
|
key: string;
|
|
201
201
|
show?: boolean | undefined;
|
|
202
|
-
placeholder?: string | undefined;
|
|
202
|
+
placeholder?: string | (() => string) | undefined;
|
|
203
203
|
span?: number | undefined;
|
|
204
204
|
disabled?: boolean | undefined;
|
|
205
205
|
readonly?: boolean | undefined;
|
|
@@ -222,7 +222,7 @@ declare const _default: DefineComponent<{
|
|
|
222
222
|
label: string | (() => string);
|
|
223
223
|
key: string;
|
|
224
224
|
show?: boolean | undefined;
|
|
225
|
-
placeholder?: string | undefined;
|
|
225
|
+
placeholder?: string | (() => string) | undefined;
|
|
226
226
|
span?: number | undefined;
|
|
227
227
|
disabled?: boolean | undefined;
|
|
228
228
|
readonly?: boolean | undefined;
|