@julingbase/jly-arco-design 0.0.5 → 0.0.7
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 +13 -0
- package/dist/arco-vue.js +7 -4
- package/dist/arco-vue.js.map +1 -1
- package/dist/arco-vue.min.js +4 -3
- 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/drawer/drawer.d.ts +1 -1
- package/es/drawer/index.d.ts +3 -3
- package/es/input/index.d.ts +24 -0
- package/es/input/input-password.d.ts +9 -0
- package/es/input/input.d.ts +9 -0
- package/es/input/input.js +6 -3
- package/es/mention/index.d.ts +3 -3
- package/es/mention/mention.d.ts +1 -1
- package/es/message/message.d.ts +1 -1
- package/es/split/index.d.ts +3 -3
- package/es/split/split.d.ts +1 -1
- 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 +72 -0
- package/es/upload/index.d.ts +3 -3
- package/es/upload/upload.d.ts +2 -2
- package/es/upload/upload.js +1 -1
- package/json/vetur-attributes.json +1685 -1685
- package/json/vetur-tags.json +590 -590
- package/json/web-types.json +3733 -3733
- package/lib/input/input.js +6 -3
- package/lib/upload/upload.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
package/dist/arco-vue.js
CHANGED
|
@@ -4124,6 +4124,11 @@
|
|
|
4124
4124
|
enableToolTip: {
|
|
4125
4125
|
type: Boolean,
|
|
4126
4126
|
default: false
|
|
4127
|
+
},
|
|
4128
|
+
toolTipProps: {
|
|
4129
|
+
type: Object,
|
|
4130
|
+
default: () => {
|
|
4131
|
+
}
|
|
4127
4132
|
}
|
|
4128
4133
|
},
|
|
4129
4134
|
emits: {
|
|
@@ -4331,9 +4336,7 @@
|
|
|
4331
4336
|
"onMousedown": handleMousedown
|
|
4332
4337
|
}, !hasOuter ? wrapperAttrs.value : void 0), [slots.prefix && vue.createVNode("span", {
|
|
4333
4338
|
"class": `${prefixCls}-prefix`
|
|
4334
|
-
}, [slots.prefix()]), vue.createVNode(Tooltip, vue.mergeProps({
|
|
4335
|
-
"content": props.placeholder
|
|
4336
|
-
}, inputToolTipAttrs.value), {
|
|
4339
|
+
}, [slots.prefix()]), vue.createVNode(Tooltip, vue.mergeProps(inputToolTipAttrs.value, props.toolTipProps), {
|
|
4337
4340
|
default: () => [vue.createVNode("input", vue.mergeProps({
|
|
4338
4341
|
"ref": inputRef,
|
|
4339
4342
|
"class": cls.value,
|
|
@@ -49032,7 +49035,7 @@
|
|
|
49032
49035
|
for (let i2 = 0; i2 < files.length; i2++) {
|
|
49033
49036
|
const file = files[i2];
|
|
49034
49037
|
if (isFunction$1(props.onBeforeUpload)) {
|
|
49035
|
-
Promise.resolve(props.onBeforeUpload(file)).then((result) => {
|
|
49038
|
+
Promise.resolve(props.onBeforeUpload(file, files.length)).then((result) => {
|
|
49036
49039
|
if (result) {
|
|
49037
49040
|
initUpload(isBoolean$1(result) ? file : result, i2);
|
|
49038
49041
|
}
|