vue-devui 1.5.15 → 1.6.0
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/button/index.es.js +8 -2
- package/button/index.umd.js +9 -9
- package/code-review/index.es.js +3 -1
- package/code-review/index.umd.js +9 -9
- package/code-review/style.css +10 -1
- package/date-picker-pro/index.es.js +8 -2
- package/date-picker-pro/index.umd.js +10 -10
- package/editable-select/index.es.js +2 -1
- package/editable-select/index.umd.js +1 -1
- package/editor-md/index.es.js +16 -11
- package/editor-md/index.umd.js +33 -33
- package/editor-md/style.css +1 -1
- package/package.json +5 -2
- package/pagination/index.es.js +14 -3
- package/pagination/index.umd.js +17 -17
- package/select/index.es.js +2 -1
- package/select/index.umd.js +2 -2
- package/splitter/index.es.js +1 -3
- package/splitter/index.umd.js +1 -1
- package/style.css +10 -1
- package/table/index.es.js +9 -5
- package/table/index.umd.js +3 -3
- package/time-picker/index.es.js +8 -2
- package/time-picker/index.umd.js +6 -6
- package/time-select/index.es.js +2 -1
- package/time-select/index.umd.js +2 -2
- package/tooltip/index.es.js +1 -3
- package/tooltip/index.umd.js +4 -4
- package/types/button/src/button-types.d.ts +5 -0
- package/types/editable-select/src/editable-select.d.ts +1 -1
- package/types/pagination/src/pagination-types.d.ts +4 -0
- package/types/pagination/src/pagination.d.ts +9 -0
- package/types/select/src/select.d.ts +1 -1
- package/vue-devui.es.js +44 -19
- package/vue-devui.umd.js +33 -33
package/time-picker/index.es.js
CHANGED
|
@@ -1184,6 +1184,10 @@ const buttonProps = {
|
|
|
1184
1184
|
},
|
|
1185
1185
|
shape: {
|
|
1186
1186
|
type: String
|
|
1187
|
+
},
|
|
1188
|
+
nativeType: {
|
|
1189
|
+
type: String,
|
|
1190
|
+
default: "button"
|
|
1187
1191
|
}
|
|
1188
1192
|
};
|
|
1189
1193
|
const buttonGroupProps = {
|
|
@@ -6653,7 +6657,8 @@ var Button = defineComponent({
|
|
|
6653
6657
|
const {
|
|
6654
6658
|
icon: icon2,
|
|
6655
6659
|
disabled,
|
|
6656
|
-
loading: loading2
|
|
6660
|
+
loading: loading2,
|
|
6661
|
+
nativeType
|
|
6657
6662
|
} = toRefs(props);
|
|
6658
6663
|
const {
|
|
6659
6664
|
classes,
|
|
@@ -6670,7 +6675,8 @@ var Button = defineComponent({
|
|
|
6670
6675
|
return createVNode("button", {
|
|
6671
6676
|
"class": classes.value,
|
|
6672
6677
|
"disabled": disabled.value,
|
|
6673
|
-
"onClick": onClick
|
|
6678
|
+
"onClick": onClick,
|
|
6679
|
+
"type": nativeType.value
|
|
6674
6680
|
}, [icon2.value && createVNode(Icon, {
|
|
6675
6681
|
"name": icon2.value,
|
|
6676
6682
|
"size": "var(--devui-font-size, 12px)",
|