cosey 0.4.50 → 0.4.51
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent, computed, ref, watch, resolveComponent, createElementBlock, openBlock, createBlock, createCommentVNode, withDirectives,
|
|
1
|
+
import { defineComponent, computed, ref, watch, resolveComponent, createElementBlock, openBlock, createBlock, createCommentVNode, withDirectives, mergeProps, withCtx, createElementVNode, normalizeStyle, createTextVNode, toDisplayString, createVNode, unref, renderSlot, vShow } from 'vue';
|
|
2
2
|
import { reactivePick, reactiveOmit } from '@vueuse/core';
|
|
3
3
|
import stdin_default$1 from '../icon/icon.vue.js';
|
|
4
4
|
import { omitUndefined } from '../../utils/object.js';
|
|
@@ -79,7 +79,7 @@ var stdin_default = /* @__PURE__ */defineComponent({
|
|
|
79
79
|
}) {
|
|
80
80
|
const props = __props;
|
|
81
81
|
const emit = __emit;
|
|
82
|
-
const dividerPropsKeys = ["
|
|
82
|
+
const dividerPropsKeys = ["borderStyle", "contentPosition"];
|
|
83
83
|
const dividerProps = computed(() => {
|
|
84
84
|
return {
|
|
85
85
|
contentPosition: "left",
|
|
@@ -102,9 +102,11 @@ var stdin_default = /* @__PURE__ */defineComponent({
|
|
|
102
102
|
return (_ctx, _cache) => {
|
|
103
103
|
const _component_el_divider = resolveComponent("el-divider");
|
|
104
104
|
const _component_el_space = resolveComponent("el-space");
|
|
105
|
-
return openBlock(), createElementBlock("div", null, [_ctx.title ? (openBlock(), createBlock(_component_el_divider,
|
|
105
|
+
return openBlock(), createElementBlock("div", null, [_ctx.title ? (openBlock(), createBlock(_component_el_divider, mergeProps({
|
|
106
106
|
key: 0
|
|
107
|
-
}, dividerProps.value
|
|
107
|
+
}, dividerProps.value, {
|
|
108
|
+
direction: "horizontal"
|
|
109
|
+
}), {
|
|
108
110
|
default: withCtx(() => [createElementVNode("div", {
|
|
109
111
|
style: normalizeStyle({
|
|
110
112
|
display: "inline-flex",
|