@julingbase/jly-arco-design 0.0.3 → 0.0.5
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/README.md +61 -2
- package/dist/arco-vue.js +2442 -2411
- package/dist/arco-vue.js.map +1 -1
- package/dist/arco-vue.min.js +1451 -1447
- package/dist/arco-vue.min.js.map +1 -1
- package/es/_components/picker/input-range.d.ts +2 -2
- package/es/_components/picker/input.d.ts +1 -1
- package/es/date-picker/index.d.ts +2 -2
- package/es/date-picker/picker.d.ts +1 -1
- package/es/date-picker/range-picker.d.ts +2 -2
- package/es/descriptions/descriptions.d.ts +1 -1
- package/es/descriptions/index.d.ts +3 -3
- package/es/drawer/drawer.d.ts +1 -1
- package/es/drawer/index.d.ts +3 -3
- package/es/input/index.d.ts +3933 -3
- package/es/input/input-password.d.ts +1312 -1
- package/es/input/input.d.ts +1312 -1
- package/es/input/input.js +36 -18
- package/es/split/index.d.ts +3 -3
- package/es/split/split.d.ts +1 -1
- package/es/table/index.d.ts +15 -0
- package/es/table/table.d.ts +9 -0
- package/es/table/table.js +16 -2
- package/es/tabs/index.d.ts +3 -3
- package/es/tabs/tabs.d.ts +1 -1
- package/es/time-picker/index.d.ts +6 -6
- package/es/time-picker/time-picker.d.ts +3 -3
- package/es/typography/edit-content.d.ts +11800 -10
- package/json/vetur-attributes.json +1660 -1660
- package/json/vetur-tags.json +688 -688
- package/json/web-types.json +5030 -5030
- package/lib/input/input.js +38 -20
- package/lib/table/table.js +16 -2
- package/package.json +2 -2
package/es/input/input.js
CHANGED
|
@@ -11,8 +11,12 @@ import { isUndefined, isNull, isObject, isFunction } from "../_utils/is.js";
|
|
|
11
11
|
import { useFormItem } from "../_hooks/use-form-item.js";
|
|
12
12
|
import { useSize } from "../_hooks/use-size.js";
|
|
13
13
|
import { useCursor } from "../_hooks/use-cursor.js";
|
|
14
|
+
import Tooltip from "../tooltip/index.js";
|
|
14
15
|
var _Input = defineComponent({
|
|
15
16
|
name: "Input",
|
|
17
|
+
components: {
|
|
18
|
+
Tooltip
|
|
19
|
+
},
|
|
16
20
|
inheritAttrs: false,
|
|
17
21
|
props: {
|
|
18
22
|
modelValue: String,
|
|
@@ -62,7 +66,11 @@ var _Input = defineComponent({
|
|
|
62
66
|
default: "text"
|
|
63
67
|
},
|
|
64
68
|
prepend: String,
|
|
65
|
-
append: String
|
|
69
|
+
append: String,
|
|
70
|
+
enableToolTip: {
|
|
71
|
+
type: Boolean,
|
|
72
|
+
default: false
|
|
73
|
+
}
|
|
66
74
|
},
|
|
67
75
|
emits: {
|
|
68
76
|
"update:modelValue": (value) => true,
|
|
@@ -82,7 +90,8 @@ var _Input = defineComponent({
|
|
|
82
90
|
size,
|
|
83
91
|
disabled,
|
|
84
92
|
error,
|
|
85
|
-
modelValue
|
|
93
|
+
modelValue,
|
|
94
|
+
enableToolTip
|
|
86
95
|
} = toRefs(props);
|
|
87
96
|
const prefixCls = getPrefixCls("input");
|
|
88
97
|
const inputRef = ref();
|
|
@@ -256,6 +265,11 @@ var _Input = defineComponent({
|
|
|
256
265
|
}
|
|
257
266
|
return attrs2;
|
|
258
267
|
});
|
|
268
|
+
const inputToolTipAttrs = computed(() => {
|
|
269
|
+
return enableToolTip.value ? {} : {
|
|
270
|
+
"popup-visible": false
|
|
271
|
+
};
|
|
272
|
+
});
|
|
259
273
|
const renderInput = (hasOuter) => {
|
|
260
274
|
var _a;
|
|
261
275
|
return createVNode("span", mergeProps({
|
|
@@ -263,22 +277,26 @@ var _Input = defineComponent({
|
|
|
263
277
|
"onMousedown": handleMousedown
|
|
264
278
|
}, !hasOuter ? wrapperAttrs.value : void 0), [slots.prefix && createVNode("span", {
|
|
265
279
|
"class": `${prefixCls}-prefix`
|
|
266
|
-
}, [slots.prefix()]), createVNode(
|
|
267
|
-
"
|
|
268
|
-
|
|
269
|
-
"
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
280
|
+
}, [slots.prefix()]), createVNode(Tooltip, mergeProps({
|
|
281
|
+
"content": props.placeholder
|
|
282
|
+
}, inputToolTipAttrs.value), {
|
|
283
|
+
default: () => [createVNode("input", mergeProps({
|
|
284
|
+
"ref": inputRef,
|
|
285
|
+
"class": cls.value,
|
|
286
|
+
"value": computedValue.value,
|
|
287
|
+
"type": props.type,
|
|
288
|
+
"placeholder": props.placeholder,
|
|
289
|
+
"readonly": props.readonly,
|
|
290
|
+
"disabled": mergedDisabled.value,
|
|
291
|
+
"onInput": handleInput,
|
|
292
|
+
"onKeydown": handleKeyDown,
|
|
293
|
+
"onFocus": handleFocus,
|
|
294
|
+
"onBlur": handleBlur,
|
|
295
|
+
"onCompositionstart": handleComposition,
|
|
296
|
+
"onCompositionupdate": handleComposition,
|
|
297
|
+
"onCompositionend": handleComposition
|
|
298
|
+
}, mergeInputAttrs.value), null)]
|
|
299
|
+
}), showClearBtn.value && createVNode(IconHover, {
|
|
282
300
|
"prefix": prefixCls,
|
|
283
301
|
"class": `${prefixCls}-clear-btn`,
|
|
284
302
|
"onClick": handleClear
|
package/es/split/index.d.ts
CHANGED
|
@@ -35,8 +35,8 @@ declare const Split: {
|
|
|
35
35
|
}, import("vue").PublicProps, {
|
|
36
36
|
disabled: boolean;
|
|
37
37
|
size: string | number;
|
|
38
|
-
direction: "horizontal" | "vertical";
|
|
39
38
|
component: string;
|
|
39
|
+
direction: "horizontal" | "vertical";
|
|
40
40
|
defaultSize: string | number;
|
|
41
41
|
}, true, {}, {}, {
|
|
42
42
|
ResizeTrigger: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -111,8 +111,8 @@ declare const Split: {
|
|
|
111
111
|
}, {}, {}, {}, {
|
|
112
112
|
disabled: boolean;
|
|
113
113
|
size: string | number;
|
|
114
|
-
direction: "horizontal" | "vertical";
|
|
115
114
|
component: string;
|
|
115
|
+
direction: "horizontal" | "vertical";
|
|
116
116
|
defaultSize: string | number;
|
|
117
117
|
}>;
|
|
118
118
|
__isFragment?: undefined;
|
|
@@ -151,8 +151,8 @@ declare const Split: {
|
|
|
151
151
|
}, string, {
|
|
152
152
|
disabled: boolean;
|
|
153
153
|
size: string | number;
|
|
154
|
-
direction: "horizontal" | "vertical";
|
|
155
154
|
component: string;
|
|
155
|
+
direction: "horizontal" | "vertical";
|
|
156
156
|
defaultSize: string | number;
|
|
157
157
|
}, {}, string, {}, {
|
|
158
158
|
ResizeTrigger: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
package/es/split/split.d.ts
CHANGED
|
@@ -40,8 +40,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
40
40
|
}>, {
|
|
41
41
|
disabled: boolean;
|
|
42
42
|
size: string | number;
|
|
43
|
-
direction: "horizontal" | "vertical";
|
|
44
43
|
component: string;
|
|
44
|
+
direction: "horizontal" | "vertical";
|
|
45
45
|
defaultSize: string | number;
|
|
46
46
|
}, {}, {
|
|
47
47
|
ResizeTrigger: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
package/es/table/index.d.ts
CHANGED
|
@@ -168,6 +168,10 @@ declare const Table: {
|
|
|
168
168
|
type: BooleanConstructor;
|
|
169
169
|
default: boolean;
|
|
170
170
|
};
|
|
171
|
+
enabledHeaderRowSlot: {
|
|
172
|
+
type: BooleanConstructor;
|
|
173
|
+
default: boolean;
|
|
174
|
+
};
|
|
171
175
|
}>> & Readonly<{
|
|
172
176
|
onSelect?: ((rowKeys: (string | number)[], rowKey: string | number, record: import("./interface").TableData) => any) | undefined;
|
|
173
177
|
onChange?: ((data: import("./interface").TableData[], extra: import("./interface").TableChangeExtra, currentData: import("./interface").TableData[]) => any) | undefined;
|
|
@@ -256,6 +260,7 @@ declare const Table: {
|
|
|
256
260
|
defaultExpandAllRows: boolean;
|
|
257
261
|
stickyHeader: number | boolean;
|
|
258
262
|
showEmptyTree: boolean;
|
|
263
|
+
enabledHeaderRowSlot: boolean;
|
|
259
264
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
260
265
|
P: {};
|
|
261
266
|
B: {};
|
|
@@ -423,6 +428,10 @@ declare const Table: {
|
|
|
423
428
|
type: BooleanConstructor;
|
|
424
429
|
default: boolean;
|
|
425
430
|
};
|
|
431
|
+
enabledHeaderRowSlot: {
|
|
432
|
+
type: BooleanConstructor;
|
|
433
|
+
default: boolean;
|
|
434
|
+
};
|
|
426
435
|
}>> & Readonly<{
|
|
427
436
|
onSelect?: ((rowKeys: (string | number)[], rowKey: string | number, record: import("./interface").TableData) => any) | undefined;
|
|
428
437
|
onChange?: ((data: import("./interface").TableData[], extra: import("./interface").TableChangeExtra, currentData: import("./interface").TableData[]) => any) | undefined;
|
|
@@ -488,6 +497,7 @@ declare const Table: {
|
|
|
488
497
|
defaultExpandAllRows: boolean;
|
|
489
498
|
stickyHeader: number | boolean;
|
|
490
499
|
showEmptyTree: boolean;
|
|
500
|
+
enabledHeaderRowSlot: boolean;
|
|
491
501
|
}>;
|
|
492
502
|
__isFragment?: undefined;
|
|
493
503
|
__isTeleport?: undefined;
|
|
@@ -652,6 +662,10 @@ declare const Table: {
|
|
|
652
662
|
type: BooleanConstructor;
|
|
653
663
|
default: boolean;
|
|
654
664
|
};
|
|
665
|
+
enabledHeaderRowSlot: {
|
|
666
|
+
type: BooleanConstructor;
|
|
667
|
+
default: boolean;
|
|
668
|
+
};
|
|
655
669
|
}>> & Readonly<{
|
|
656
670
|
onSelect?: ((rowKeys: (string | number)[], rowKey: string | number, record: import("./interface").TableData) => any) | undefined;
|
|
657
671
|
onChange?: ((data: import("./interface").TableData[], extra: import("./interface").TableChangeExtra, currentData: import("./interface").TableData[]) => any) | undefined;
|
|
@@ -740,6 +754,7 @@ declare const Table: {
|
|
|
740
754
|
defaultExpandAllRows: boolean;
|
|
741
755
|
stickyHeader: number | boolean;
|
|
742
756
|
showEmptyTree: boolean;
|
|
757
|
+
enabledHeaderRowSlot: boolean;
|
|
743
758
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
|
744
759
|
Thead: import("vue").DefineComponent<{}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
745
760
|
[key: string]: any;
|
package/es/table/table.d.ts
CHANGED
|
@@ -164,6 +164,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
164
164
|
type: BooleanConstructor;
|
|
165
165
|
default: boolean;
|
|
166
166
|
};
|
|
167
|
+
enabledHeaderRowSlot: {
|
|
168
|
+
type: BooleanConstructor;
|
|
169
|
+
default: boolean;
|
|
170
|
+
};
|
|
167
171
|
}>, {
|
|
168
172
|
render: () => import("vue/jsx-runtime").JSX.Element;
|
|
169
173
|
selfExpand: (rowKey: BaseType | BaseType[], expanded?: boolean) => void;
|
|
@@ -366,6 +370,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
366
370
|
type: BooleanConstructor;
|
|
367
371
|
default: boolean;
|
|
368
372
|
};
|
|
373
|
+
enabledHeaderRowSlot: {
|
|
374
|
+
type: BooleanConstructor;
|
|
375
|
+
default: boolean;
|
|
376
|
+
};
|
|
369
377
|
}>> & Readonly<{
|
|
370
378
|
onSelect?: ((rowKeys: (string | number)[], rowKey: string | number, record: TableData) => any) | undefined;
|
|
371
379
|
onChange?: ((data: TableData[], extra: TableChangeExtra, currentData: TableData[]) => any) | undefined;
|
|
@@ -412,5 +420,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
412
420
|
defaultExpandAllRows: boolean;
|
|
413
421
|
stickyHeader: number | boolean;
|
|
414
422
|
showEmptyTree: boolean;
|
|
423
|
+
enabledHeaderRowSlot: boolean;
|
|
415
424
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
416
425
|
export default _default;
|
package/es/table/table.js
CHANGED
|
@@ -183,6 +183,10 @@ var _Table = defineComponent({
|
|
|
183
183
|
showEmptyTree: {
|
|
184
184
|
type: Boolean,
|
|
185
185
|
default: false
|
|
186
|
+
},
|
|
187
|
+
enabledHeaderRowSlot: {
|
|
188
|
+
type: Boolean,
|
|
189
|
+
default: false
|
|
186
190
|
}
|
|
187
191
|
},
|
|
188
192
|
emits: {
|
|
@@ -229,7 +233,8 @@ var _Table = defineComponent({
|
|
|
229
233
|
draggable,
|
|
230
234
|
summarySpanMethod,
|
|
231
235
|
scrollbar,
|
|
232
|
-
showEmptyTree
|
|
236
|
+
showEmptyTree,
|
|
237
|
+
enabledHeaderRowSlot
|
|
233
238
|
} = toRefs(props);
|
|
234
239
|
const prefixCls = getPrefixCls("table");
|
|
235
240
|
const configCtx = inject(configProviderInjectionKey, void 0);
|
|
@@ -1140,7 +1145,16 @@ var _Table = defineComponent({
|
|
|
1140
1145
|
handleDrop(ev);
|
|
1141
1146
|
}
|
|
1142
1147
|
} : {};
|
|
1143
|
-
return createVNode(Fragment, null, [createVNode(Tr,
|
|
1148
|
+
return createVNode(Fragment, null, [enabledHeaderRowSlot.value && createVNode(Tr, null, {
|
|
1149
|
+
default: () => {
|
|
1150
|
+
var _a2;
|
|
1151
|
+
return [(_a2 = slots.headerRow) == null ? void 0 : _a2.call(slots, {
|
|
1152
|
+
record: record.raw,
|
|
1153
|
+
dataColumnLength: dataColumns.value.length,
|
|
1154
|
+
operationColumnLength: operations.value.length
|
|
1155
|
+
})];
|
|
1156
|
+
}
|
|
1157
|
+
}), createVNode(Tr, mergeProps({
|
|
1144
1158
|
"key": currentKey,
|
|
1145
1159
|
"class": [{
|
|
1146
1160
|
[`${prefixCls}-tr-draggable`]: dragType.value === "row",
|
package/es/tabs/index.d.ts
CHANGED
|
@@ -88,8 +88,8 @@ declare const Tabs: {
|
|
|
88
88
|
position: import("./interface").TabsPosition;
|
|
89
89
|
justify: boolean;
|
|
90
90
|
type: import("./interface").TabsType;
|
|
91
|
-
direction: "horizontal" | "vertical";
|
|
92
91
|
animation: boolean;
|
|
92
|
+
direction: "horizontal" | "vertical";
|
|
93
93
|
activeKey: string | number;
|
|
94
94
|
defaultActiveKey: string | number;
|
|
95
95
|
destroyOnHide: boolean;
|
|
@@ -186,8 +186,8 @@ declare const Tabs: {
|
|
|
186
186
|
position: import("./interface").TabsPosition;
|
|
187
187
|
justify: boolean;
|
|
188
188
|
type: import("./interface").TabsType;
|
|
189
|
-
direction: "horizontal" | "vertical";
|
|
190
189
|
animation: boolean;
|
|
190
|
+
direction: "horizontal" | "vertical";
|
|
191
191
|
activeKey: string | number;
|
|
192
192
|
defaultActiveKey: string | number;
|
|
193
193
|
destroyOnHide: boolean;
|
|
@@ -287,8 +287,8 @@ declare const Tabs: {
|
|
|
287
287
|
position: import("./interface").TabsPosition;
|
|
288
288
|
justify: boolean;
|
|
289
289
|
type: import("./interface").TabsType;
|
|
290
|
-
direction: "horizontal" | "vertical";
|
|
291
290
|
animation: boolean;
|
|
291
|
+
direction: "horizontal" | "vertical";
|
|
292
292
|
activeKey: string | number;
|
|
293
293
|
defaultActiveKey: string | number;
|
|
294
294
|
destroyOnHide: boolean;
|
package/es/tabs/tabs.d.ts
CHANGED
|
@@ -153,8 +153,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
153
153
|
position: TabsPosition;
|
|
154
154
|
justify: boolean;
|
|
155
155
|
type: TabsType;
|
|
156
|
-
direction: "horizontal" | "vertical";
|
|
157
156
|
animation: boolean;
|
|
157
|
+
direction: "horizontal" | "vertical";
|
|
158
158
|
activeKey: string | number;
|
|
159
159
|
defaultActiveKey: string | number;
|
|
160
160
|
destroyOnHide: boolean;
|
|
@@ -755,7 +755,7 @@ declare const TimePicker: {
|
|
|
755
755
|
}, {}, {}, {
|
|
756
756
|
focus(): void;
|
|
757
757
|
blur(): void;
|
|
758
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "blur" | "
|
|
758
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "blur" | "change" | "press-enter")[], "clear" | "blur" | "change" | "press-enter", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
759
759
|
size: {
|
|
760
760
|
type: import("vue").PropType<"mini" | "medium" | "large" | "small">;
|
|
761
761
|
};
|
|
@@ -910,7 +910,7 @@ declare const TimePicker: {
|
|
|
910
910
|
}, {}, {}, {
|
|
911
911
|
focus(index?: number | undefined): void;
|
|
912
912
|
blur(): void;
|
|
913
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "
|
|
913
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "focused-index-change" | "update:focusedIndex" | "change" | "press-enter")[], "clear" | "focused-index-change" | "update:focusedIndex" | "change" | "press-enter", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
914
914
|
size: {
|
|
915
915
|
type: import("vue").PropType<"mini" | "medium" | "large" | "small">;
|
|
916
916
|
};
|
|
@@ -951,9 +951,9 @@ declare const TimePicker: {
|
|
|
951
951
|
}>> & Readonly<{
|
|
952
952
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
953
953
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
954
|
-
"onPress-enter"?: ((...args: any[]) => any) | undefined;
|
|
955
954
|
"onFocused-index-change"?: ((...args: any[]) => any) | undefined;
|
|
956
955
|
"onUpdate:focusedIndex"?: ((...args: any[]) => any) | undefined;
|
|
956
|
+
"onPress-enter"?: ((...args: any[]) => any) | undefined;
|
|
957
957
|
}>, {
|
|
958
958
|
disabled: boolean | boolean[];
|
|
959
959
|
placeholder: string[];
|
|
@@ -2925,7 +2925,7 @@ declare const TimePicker: {
|
|
|
2925
2925
|
}, {}, {}, {
|
|
2926
2926
|
focus(): void;
|
|
2927
2927
|
blur(): void;
|
|
2928
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "blur" | "
|
|
2928
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "blur" | "change" | "press-enter")[], "clear" | "blur" | "change" | "press-enter", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2929
2929
|
size: {
|
|
2930
2930
|
type: import("vue").PropType<"mini" | "medium" | "large" | "small">;
|
|
2931
2931
|
};
|
|
@@ -3080,7 +3080,7 @@ declare const TimePicker: {
|
|
|
3080
3080
|
}, {}, {}, {
|
|
3081
3081
|
focus(index?: number | undefined): void;
|
|
3082
3082
|
blur(): void;
|
|
3083
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "
|
|
3083
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "focused-index-change" | "update:focusedIndex" | "change" | "press-enter")[], "clear" | "focused-index-change" | "update:focusedIndex" | "change" | "press-enter", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
3084
3084
|
size: {
|
|
3085
3085
|
type: import("vue").PropType<"mini" | "medium" | "large" | "small">;
|
|
3086
3086
|
};
|
|
@@ -3121,9 +3121,9 @@ declare const TimePicker: {
|
|
|
3121
3121
|
}>> & Readonly<{
|
|
3122
3122
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
3123
3123
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
3124
|
-
"onPress-enter"?: ((...args: any[]) => any) | undefined;
|
|
3125
3124
|
"onFocused-index-change"?: ((...args: any[]) => any) | undefined;
|
|
3126
3125
|
"onUpdate:focusedIndex"?: ((...args: any[]) => any) | undefined;
|
|
3126
|
+
"onPress-enter"?: ((...args: any[]) => any) | undefined;
|
|
3127
3127
|
}>, {
|
|
3128
3128
|
disabled: boolean | boolean[];
|
|
3129
3129
|
placeholder: string[];
|
|
@@ -834,7 +834,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
834
834
|
}, {}, {}, {
|
|
835
835
|
focus(): void;
|
|
836
836
|
blur(): void;
|
|
837
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "blur" | "
|
|
837
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "blur" | "change" | "press-enter")[], "clear" | "blur" | "change" | "press-enter", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
838
838
|
size: {
|
|
839
839
|
type: PropType<"mini" | "medium" | "large" | "small">;
|
|
840
840
|
};
|
|
@@ -989,7 +989,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
989
989
|
}, {}, {}, {
|
|
990
990
|
focus(index?: number | undefined): void;
|
|
991
991
|
blur(): void;
|
|
992
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "
|
|
992
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "focused-index-change" | "update:focusedIndex" | "change" | "press-enter")[], "clear" | "focused-index-change" | "update:focusedIndex" | "change" | "press-enter", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
993
993
|
size: {
|
|
994
994
|
type: PropType<"mini" | "medium" | "large" | "small">;
|
|
995
995
|
};
|
|
@@ -1030,9 +1030,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1030
1030
|
}>> & Readonly<{
|
|
1031
1031
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1032
1032
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
1033
|
-
"onPress-enter"?: ((...args: any[]) => any) | undefined;
|
|
1034
1033
|
"onFocused-index-change"?: ((...args: any[]) => any) | undefined;
|
|
1035
1034
|
"onUpdate:focusedIndex"?: ((...args: any[]) => any) | undefined;
|
|
1035
|
+
"onPress-enter"?: ((...args: any[]) => any) | undefined;
|
|
1036
1036
|
}>, {
|
|
1037
1037
|
disabled: boolean | boolean[];
|
|
1038
1038
|
placeholder: string[];
|