vue-devui 1.6.16 → 1.6.18
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/auto-complete/index.es.js +12 -13
- package/auto-complete/index.umd.js +16 -16
- package/auto-complete/style.css +1 -1
- package/breadcrumb/index.es.js +1 -7
- package/breadcrumb/index.umd.js +1 -1
- package/category-search/index.es.js +13 -18
- package/category-search/index.umd.js +14 -14
- package/category-search/style.css +1 -1
- package/checkbox/index.es.js +11 -10
- package/checkbox/index.umd.js +7 -7
- package/checkbox/style.css +1 -1
- package/code-review/index.es.js +4 -9
- package/code-review/index.umd.js +17 -17
- package/data-grid/index.es.js +12 -17
- package/data-grid/index.umd.js +15 -15
- package/data-grid/style.css +1 -1
- package/date-picker-pro/index.es.js +16 -31
- package/date-picker-pro/index.umd.js +12 -12
- package/date-picker-pro/style.css +1 -1
- package/dropdown/index.es.js +1 -7
- package/dropdown/index.umd.js +1 -1
- package/editable-select/index.es.js +2 -6
- package/editable-select/index.umd.js +10 -10
- package/editor-md/index.es.js +2 -14
- package/editor-md/index.umd.js +22 -22
- package/form/index.es.js +11 -10
- package/form/index.umd.js +8 -8
- package/form/style.css +1 -1
- package/input/index.es.js +11 -10
- package/input/index.umd.js +9 -9
- package/input/style.css +1 -1
- package/input-number/index.es.js +11 -10
- package/input-number/index.umd.js +16 -16
- package/input-number/style.css +1 -1
- package/mention/index.es.js +11 -10
- package/mention/index.umd.js +15 -15
- package/mention/style.css +1 -1
- package/package.json +1 -1
- package/pagination/index.es.js +18 -21
- package/pagination/index.umd.js +16 -16
- package/pagination/style.css +1 -1
- package/popover/index.es.js +4 -9
- package/popover/index.umd.js +10 -10
- package/radio/index.es.js +11 -10
- package/radio/index.umd.js +14 -14
- package/radio/style.css +1 -1
- package/search/index.es.js +11 -10
- package/search/index.umd.js +8 -8
- package/search/style.css +1 -1
- package/select/index.es.js +16 -13
- package/select/index.umd.js +14 -14
- package/select/style.css +1 -1
- package/splitter/index.es.js +1 -7
- package/splitter/index.umd.js +9 -9
- package/style.css +1 -1
- package/switch/index.es.js +11 -10
- package/switch/index.umd.js +10 -10
- package/switch/style.css +1 -1
- package/table/index.es.js +13 -24
- package/table/index.umd.js +12 -12
- package/table/style.css +1 -1
- package/textarea/index.es.js +11 -10
- package/textarea/index.umd.js +11 -11
- package/textarea/style.css +1 -1
- package/time-picker/index.es.js +16 -13
- package/time-picker/index.umd.js +16 -16
- package/time-picker/style.css +1 -1
- package/time-select/index.es.js +16 -13
- package/time-select/index.umd.js +13 -13
- package/time-select/style.css +1 -1
- package/tooltip/index.es.js +1 -7
- package/tooltip/index.umd.js +11 -11
- package/tree/index.es.js +11 -10
- package/tree/index.umd.js +9 -9
- package/tree/style.css +1 -1
- package/types/auto-complete/src/auto-complete-types.d.ts +1 -1
- package/types/dropdown/src/dropdown-types.d.ts +1 -6
- package/types/dropdown/src/dropdown.d.ts +2 -11
- package/types/editable-select/src/editable-select-types.d.ts +1 -1
- package/types/form/src/components/form-item/form-item-types.d.ts +2 -1
- package/types/form/src/form-types.d.ts +5 -0
- package/types/popover/src/popover-types.d.ts +1 -6
- package/types/popover/src/popover.d.ts +2 -11
- package/types/select/src/select-types.d.ts +5 -0
- package/types/time-picker/src/components/time-scroll/index.d.ts +9 -0
- package/types/time-picker/src/time-picker-types.d.ts +5 -0
- package/types/tooltip/src/tooltip-types.d.ts +1 -6
- package/types/tooltip/src/tooltip.d.ts +2 -11
- package/vue-devui.es.js +30 -64
- package/vue-devui.umd.js +39 -39
package/editor-md/index.es.js
CHANGED
|
@@ -7731,11 +7731,7 @@ const dropdownProps = {
|
|
|
7731
7731
|
},
|
|
7732
7732
|
position: {
|
|
7733
7733
|
type: Array,
|
|
7734
|
-
default: ["bottom"]
|
|
7735
|
-
},
|
|
7736
|
-
align: {
|
|
7737
|
-
type: String,
|
|
7738
|
-
default: null
|
|
7734
|
+
default: () => ["bottom", "top", "left", "right"]
|
|
7739
7735
|
},
|
|
7740
7736
|
offset: {
|
|
7741
7737
|
type: [Number, Object],
|
|
@@ -8260,7 +8256,6 @@ var Dropdown = defineComponent({
|
|
|
8260
8256
|
const {
|
|
8261
8257
|
visible,
|
|
8262
8258
|
position,
|
|
8263
|
-
align,
|
|
8264
8259
|
offset: offset2,
|
|
8265
8260
|
destroyOnHide,
|
|
8266
8261
|
shiftOffset,
|
|
@@ -8318,7 +8313,6 @@ var Dropdown = defineComponent({
|
|
|
8318
8313
|
"ref": overlayRef,
|
|
8319
8314
|
"origin": origin.value,
|
|
8320
8315
|
"position": position.value,
|
|
8321
|
-
"align": align.value,
|
|
8322
8316
|
"offset": offset2.value,
|
|
8323
8317
|
"shiftOffset": shiftOffset == null ? void 0 : shiftOffset.value,
|
|
8324
8318
|
"onPositionChange": handlePositionChange,
|
|
@@ -8443,11 +8437,7 @@ const tooltipProps = {
|
|
|
8443
8437
|
},
|
|
8444
8438
|
position: {
|
|
8445
8439
|
type: [String, Array],
|
|
8446
|
-
default: "top"
|
|
8447
|
-
},
|
|
8448
|
-
align: {
|
|
8449
|
-
type: String,
|
|
8450
|
-
default: null
|
|
8440
|
+
default: () => ["top", "right", "bottom", "left"]
|
|
8451
8441
|
},
|
|
8452
8442
|
showAnimation: {
|
|
8453
8443
|
type: Boolean,
|
|
@@ -8560,7 +8550,6 @@ var Tooltip = defineComponent({
|
|
|
8560
8550
|
const {
|
|
8561
8551
|
showAnimation,
|
|
8562
8552
|
content,
|
|
8563
|
-
align,
|
|
8564
8553
|
overlayClass,
|
|
8565
8554
|
teleport
|
|
8566
8555
|
} = toRefs(props);
|
|
@@ -8601,7 +8590,6 @@ var Tooltip = defineComponent({
|
|
|
8601
8590
|
"class": className.value,
|
|
8602
8591
|
"origin": origin.value,
|
|
8603
8592
|
"position": positionArr.value,
|
|
8604
|
-
"align": align.value,
|
|
8605
8593
|
"offset": 6,
|
|
8606
8594
|
"show-arrow": true,
|
|
8607
8595
|
"style": overlayStyles.value,
|