eco-vue-js 0.10.26 → 0.10.27
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/dist/components/Button/WButtonAction.vue.js +2 -2
- package/dist/components/Button/WButtonGroup.vue.d.ts +4 -0
- package/dist/components/Button/WButtonGroup.vue.d.ts.map +1 -1
- package/dist/components/Button/WButtonGroup.vue.js +71 -47
- package/dist/components/Tabs/components/TabTitleButton.vue.js +1 -1
- package/package.json +1 -1
@@ -24,7 +24,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
24
24
|
emits: ["click"],
|
25
25
|
setup(__props) {
|
26
26
|
const semanticTypeStylesMap = {
|
27
|
-
[SemanticType.SECONDARY]: "text-description bg-default dark:bg-default-dark hover:text-primary-default dark:hover:text-primary-dark",
|
27
|
+
[SemanticType.SECONDARY]: "text-description bg-default dark:bg-default-dark [not:(:disabled)]:hover:text-primary-default [not:(:disabled)]:dark:hover:text-primary-dark",
|
28
28
|
[SemanticType.PRIMARY]: "text-default bg-primary-default dark:bg-primary-dark",
|
29
29
|
[SemanticType.POSITIVE]: "text-default dark:text-default-dark bg-positive dark:bg-positive-dark",
|
30
30
|
[SemanticType.WARNING]: "text-default dark:text-default-dark bg-warning dark:bg-warning-dark",
|
@@ -32,7 +32,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
32
32
|
[SemanticType.INFO]: "text-default dark:text-default-dark bg-info dark:bg-info-dark"
|
33
33
|
};
|
34
34
|
const semanticTypeOutlineStylesMap = {
|
35
|
-
[SemanticType.SECONDARY]: "text-description bg-default dark:bg-default-dark hover:text-primary-default dark:hover:text-primary-dark",
|
35
|
+
[SemanticType.SECONDARY]: "text-description bg-default dark:bg-default-dark [not:(:disabled)]:hover:text-primary-default [not:(:disabled)]:dark:hover:text-primary-dark",
|
36
36
|
[SemanticType.PRIMARY]: "text-primary-default text-primary-dark",
|
37
37
|
[SemanticType.POSITIVE]: "text-positive dark:text-positive-dark",
|
38
38
|
[SemanticType.WARNING]: "text-warning dark:text-warning-dark",
|
@@ -10,6 +10,10 @@ declare const _default: <Model extends number | string | null | boolean, Entity
|
|
10
10
|
slots: {
|
11
11
|
title?(_: {}): any;
|
12
12
|
subtitle?(_: {}): any;
|
13
|
+
option?(_: {
|
14
|
+
option: Model | Entity;
|
15
|
+
selected: boolean;
|
16
|
+
}): any;
|
13
17
|
option?(_: {
|
14
18
|
option: ValueGetter extends undefined ? Model : Entity;
|
15
19
|
selected: boolean;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"WButtonGroup.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Button/WButtonGroup.vue"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"WButtonGroup.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Button/WButtonGroup.vue"],"names":[],"mappings":"AAgGA;AA4IA,OAAO,KAAK,EAAC,gBAAgB,EAAC,MAAM,SAAS,CAAA;yBAU5B,KAAK,SAAS,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,OAAO,EAAE,MAAM,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,WAAW,SAAS;IAAC,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,CAAA;CAAC,CAAC,IAAI,CAAC,GAAG,SAAS,GAAG,SAAS,EACpL,aAAa,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,OAAO,CAAC,EAC9D,YAAY,mBAAmB,CAAC,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,OAAO,CAAC,CAAC,EAC3G,eAAe,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,QAAQ,CAAC,EACjE;WAyOO,mBAAmB,CAAC;;yMAAkE,CAAC,4BAA2B;oBACzG,OAAO,KAAK,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI;WAClD,GAAG;;uBAvCgB,GAAG;0BACA,GAAG;;;;YACL,GAAG;;;;YACF,GAAG;uBACJ,GAAG;;cAjMzB,oBAAoB,SAAS,KAAK,KAAG,IAAI;EAwO3C,KACQ,OAAO,KAAK,EAAE,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,OAAO,CAAC,OAAO,WAAW,CAAC,CAAA;CAAE;AApPzE,wBAoP4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
|
@@ -1,8 +1,9 @@
|
|
1
|
-
import { defineComponent, ref, createBlock, openBlock, mergeProps, createSlots, withCtx,
|
1
|
+
import { defineComponent, ref, computed, createBlock, openBlock, mergeProps, createSlots, withCtx, renderSlot, createElementVNode, createElementBlock, createCommentVNode, resolveDynamicComponent, Fragment, createTextVNode, toDisplayString, normalizeClass, renderList, unref } from 'vue';
|
2
2
|
import _sfc_main$1 from '../FieldWrapper/WFieldWrapper.vue.js';
|
3
3
|
import { SemanticType } from '../../utils/SemanticType.js';
|
4
4
|
import _sfc_main$2 from './WButton.vue.js';
|
5
5
|
|
6
|
+
const _hoisted_1 = { class: "flex gap-1" };
|
6
7
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
7
8
|
...{ inheritAttrs: false },
|
8
9
|
__name: "WButtonGroup",
|
@@ -52,6 +53,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
52
53
|
return item;
|
53
54
|
}
|
54
55
|
};
|
56
|
+
const modelValueItem = computed(() => props.list.find((item) => getValue(item) === props.modelValue));
|
55
57
|
const emitUpdateModelValue = (value) => {
|
56
58
|
loadingItem.value = value;
|
57
59
|
emit("update:model-value", value);
|
@@ -63,51 +65,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
63
65
|
return (_ctx, _cache) => {
|
64
66
|
return openBlock(), createBlock(_sfc_main$1, mergeProps(props, {
|
65
67
|
class: _ctx.$attrs.class
|
66
|
-
}), createSlots({
|
67
|
-
field: withCtx(() => [
|
68
|
-
createElementVNode("div", {
|
69
|
-
class: normalizeClass(["flex", {
|
70
|
-
"flex-wrap gap-2": _ctx.wrap,
|
71
|
-
"flex-col gap-2": _ctx.col,
|
72
|
-
"items-start": _ctx.col && !_ctx.stretch
|
73
|
-
}])
|
74
|
-
}, [
|
75
|
-
(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.list, (item, index) => {
|
76
|
-
return openBlock(), createBlock(_sfc_main$2, mergeProps({
|
77
|
-
key: index,
|
78
|
-
ref_for: true
|
79
|
-
}, {
|
80
|
-
...props,
|
81
|
-
semanticType: getValue(item) === _ctx.modelValue ? _ctx.semanticType ?? unref(SemanticType).PRIMARY : unref(SemanticType).SECONDARY,
|
82
|
-
loading: _ctx.loading && getValue(item) === loadingItem.value,
|
83
|
-
disabled: _ctx.disabled || _ctx.loading && getValue(item) !== loadingItem.value,
|
84
|
-
join: !_ctx.wrap && !_ctx.col,
|
85
|
-
tooltipText: void 0
|
86
|
-
}, {
|
87
|
-
class: {
|
88
|
-
"flex-1": _ctx.stretch
|
89
|
-
},
|
90
|
-
onClick: ($event) => updateModelValue(getValue(item))
|
91
|
-
}), {
|
92
|
-
default: withCtx(() => [
|
93
|
-
renderSlot(_ctx.$slots, "option", {
|
94
|
-
option: item,
|
95
|
-
selected: getValue(item) === _ctx.modelValue
|
96
|
-
}, () => [
|
97
|
-
_ctx.optionComponent ? (openBlock(), createBlock(resolveDynamicComponent(_ctx.optionComponent), {
|
98
|
-
key: 0,
|
99
|
-
option: item,
|
100
|
-
selected: getValue(item) === _ctx.modelValue
|
101
|
-
}, null, 8, ["option", "selected"])) : createCommentVNode("", true)
|
102
|
-
])
|
103
|
-
]),
|
104
|
-
_: 2
|
105
|
-
}, 1040, ["class", "onClick"]);
|
106
|
-
}), 128))
|
107
|
-
], 2)
|
108
|
-
]),
|
109
|
-
_: 2
|
110
|
-
}, [
|
68
|
+
}), createSlots({ _: 2 }, [
|
111
69
|
_ctx.$slots.title ? {
|
112
70
|
name: "title",
|
113
71
|
fn: withCtx(() => [
|
@@ -122,12 +80,78 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
122
80
|
]),
|
123
81
|
key: "1"
|
124
82
|
} : void 0,
|
83
|
+
_ctx.readonly ? {
|
84
|
+
name: "default",
|
85
|
+
fn: withCtx(() => [
|
86
|
+
createElementVNode("div", _hoisted_1, [
|
87
|
+
modelValueItem.value !== void 0 ? renderSlot(_ctx.$slots, "option", {
|
88
|
+
key: 0,
|
89
|
+
option: modelValueItem.value,
|
90
|
+
selected: true
|
91
|
+
}, () => [
|
92
|
+
_ctx.optionComponent ? (openBlock(), createBlock(resolveDynamicComponent(_ctx.optionComponent), {
|
93
|
+
key: 0,
|
94
|
+
option: modelValueItem.value,
|
95
|
+
selected: true
|
96
|
+
}, null, 8, ["option"])) : createCommentVNode("", true)
|
97
|
+
]) : (openBlock(), createElementBlock(Fragment, { key: 1 }, [
|
98
|
+
createTextVNode(toDisplayString(_ctx.emptyValue), 1)
|
99
|
+
], 64))
|
100
|
+
])
|
101
|
+
]),
|
102
|
+
key: "2"
|
103
|
+
} : {
|
104
|
+
name: "field",
|
105
|
+
fn: withCtx(() => [
|
106
|
+
createElementVNode("div", {
|
107
|
+
class: normalizeClass(["flex", {
|
108
|
+
"flex-wrap gap-2": _ctx.wrap,
|
109
|
+
"flex-col gap-2": _ctx.col,
|
110
|
+
"items-start": _ctx.col && !_ctx.stretch
|
111
|
+
}])
|
112
|
+
}, [
|
113
|
+
(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.list, (item, index) => {
|
114
|
+
return openBlock(), createBlock(_sfc_main$2, mergeProps({
|
115
|
+
key: index,
|
116
|
+
ref_for: true
|
117
|
+
}, {
|
118
|
+
...props,
|
119
|
+
semanticType: getValue(item) === _ctx.modelValue ? _ctx.semanticType ?? unref(SemanticType).PRIMARY : unref(SemanticType).SECONDARY,
|
120
|
+
loading: _ctx.loading && getValue(item) === loadingItem.value,
|
121
|
+
disabled: _ctx.disabled || _ctx.loading && getValue(item) !== loadingItem.value,
|
122
|
+
join: !_ctx.wrap && !_ctx.col,
|
123
|
+
tooltipText: void 0
|
124
|
+
}, {
|
125
|
+
class: {
|
126
|
+
"flex-1": _ctx.stretch
|
127
|
+
},
|
128
|
+
onClick: ($event) => updateModelValue(getValue(item))
|
129
|
+
}), {
|
130
|
+
default: withCtx(() => [
|
131
|
+
renderSlot(_ctx.$slots, "option", {
|
132
|
+
option: item,
|
133
|
+
selected: getValue(item) === _ctx.modelValue
|
134
|
+
}, () => [
|
135
|
+
_ctx.optionComponent ? (openBlock(), createBlock(resolveDynamicComponent(_ctx.optionComponent), {
|
136
|
+
key: 0,
|
137
|
+
option: item,
|
138
|
+
selected: getValue(item) === _ctx.modelValue
|
139
|
+
}, null, 8, ["option", "selected"])) : createCommentVNode("", true)
|
140
|
+
])
|
141
|
+
]),
|
142
|
+
_: 2
|
143
|
+
}, 1040, ["class", "onClick"]);
|
144
|
+
}), 128))
|
145
|
+
], 2)
|
146
|
+
]),
|
147
|
+
key: "3"
|
148
|
+
},
|
125
149
|
_ctx.$slots.right ? {
|
126
150
|
name: "right",
|
127
151
|
fn: withCtx(() => [
|
128
152
|
renderSlot(_ctx.$slots, "right")
|
129
153
|
]),
|
130
|
-
key: "
|
154
|
+
key: "4"
|
131
155
|
} : void 0
|
132
156
|
]), 1040, ["class"]);
|
133
157
|
};
|
@@ -122,7 +122,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
122
122
|
], 2)
|
123
123
|
])) : createCommentVNode("", true),
|
124
124
|
createElementVNode("div", {
|
125
|
-
class: normalizeClass(["relative col-start-2", {
|
125
|
+
class: normalizeClass(["relative col-start-2 self-start", {
|
126
126
|
"mt-3": _ctx.stepper,
|
127
127
|
"w-ripple w-ripple-hover": !_ctx.disabled
|
128
128
|
}])
|