@julingbase/jly-arco-design 0.0.5 → 0.0.6
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 +7 -0
- package/dist/arco-vue.js +6 -3
- package/dist/arco-vue.js.map +1 -1
- package/dist/arco-vue.min.js +3 -2
- package/dist/arco-vue.min.js.map +1 -1
- package/es/_utils/style.d.ts +1 -1
- package/es/date-picker/index.d.ts +1 -1
- package/es/date-picker/picker.d.ts +1 -1
- package/es/date-picker/range-picker.d.ts +1 -1
- package/es/drawer/drawer.d.ts +1 -1
- package/es/drawer/index.d.ts +3 -3
- package/es/input/index.d.ts +28 -4
- package/es/input/input-password.d.ts +10 -1
- package/es/input/input.d.ts +10 -1
- package/es/input/input.js +6 -3
- package/es/mention/index.d.ts +6 -6
- package/es/mention/mention.d.ts +2 -2
- package/es/radio/index.d.ts +4 -4
- package/es/radio/radio-group.d.ts +1 -1
- package/es/radio/radio.d.ts +1 -1
- package/es/split/index.d.ts +3 -3
- package/es/split/split.d.ts +1 -1
- package/es/switch/index.d.ts +3 -3
- package/es/switch/switch.d.ts +1 -1
- package/es/table/table-operation-td.d.ts +4 -4
- package/es/tabs/index.d.ts +3 -3
- package/es/tabs/tabs.d.ts +1 -1
- package/es/time-picker/index.d.ts +3 -3
- package/es/time-picker/time-picker.d.ts +1 -1
- package/es/typography/edit-content.d.ts +84 -12
- package/json/vetur-attributes.json +1336 -1336
- package/json/vetur-tags.json +556 -556
- package/json/web-types.json +3420 -3420
- package/lib/input/input.js +6 -3
- package/package.json +2 -2
package/lib/input/input.js
CHANGED
|
@@ -71,6 +71,11 @@ var _Input = vue.defineComponent({
|
|
|
71
71
|
enableToolTip: {
|
|
72
72
|
type: Boolean,
|
|
73
73
|
default: false
|
|
74
|
+
},
|
|
75
|
+
toolTipProps: {
|
|
76
|
+
type: Object,
|
|
77
|
+
default: () => {
|
|
78
|
+
}
|
|
74
79
|
}
|
|
75
80
|
},
|
|
76
81
|
emits: {
|
|
@@ -278,9 +283,7 @@ var _Input = vue.defineComponent({
|
|
|
278
283
|
"onMousedown": handleMousedown
|
|
279
284
|
}, !hasOuter ? wrapperAttrs.value : void 0), [slots.prefix && vue.createVNode("span", {
|
|
280
285
|
"class": `${prefixCls}-prefix`
|
|
281
|
-
}, [slots.prefix()]), vue.createVNode(index, vue.mergeProps({
|
|
282
|
-
"content": props.placeholder
|
|
283
|
-
}, inputToolTipAttrs.value), {
|
|
286
|
+
}, [slots.prefix()]), vue.createVNode(index, vue.mergeProps(inputToolTipAttrs.value, props.toolTipProps), {
|
|
284
287
|
default: () => [vue.createVNode("input", vue.mergeProps({
|
|
285
288
|
"ref": inputRef,
|
|
286
289
|
"class": cls.value,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@julingbase/jly-arco-design",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "基于arco-design-vue的二次封装组件库",
|
|
5
5
|
"author": "lzh",
|
|
6
6
|
"license": "MIT",
|
|
@@ -97,5 +97,5 @@
|
|
|
97
97
|
"scroll-into-view-if-needed": "^2.2.31",
|
|
98
98
|
"vue": "^3.1.0"
|
|
99
99
|
},
|
|
100
|
-
"gitHead": "
|
|
100
|
+
"gitHead": "04edb9aff7455d1a8e37bb80098276f78fd3f348"
|
|
101
101
|
}
|