@opentinyvue/vue-card 2.22.0 → 3.22.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/lib/index.js +1 -1
- package/lib/mobile-first.js +321 -222
- package/lib/pc.js +291 -198
- package/package.json +8 -8
- package/src/index.d.ts +132 -2
- package/src/mobile-first.vue.d.ts +81 -1
- package/src/pc.vue.d.ts +84 -1
package/lib/index.js
CHANGED
package/lib/mobile-first.js
CHANGED
|
@@ -6,6 +6,7 @@ import DropdownItem from '@opentinyvue/vue-dropdown-item';
|
|
|
6
6
|
import Checkbox from '@opentinyvue/vue-checkbox';
|
|
7
7
|
import Radio from '@opentinyvue/vue-radio';
|
|
8
8
|
import { IconEllipsis } from '@opentinyvue/vue-icon';
|
|
9
|
+
import { resolveComponent, openBlock, createElementBlock, normalizeClass, createElementVNode, createVNode, createCommentVNode, withCtx, renderSlot, toDisplayString, normalizeStyle, Fragment, renderList, withModifiers, createBlock, resolveDynamicComponent } from 'vue';
|
|
9
10
|
|
|
10
11
|
var classes = {
|
|
11
12
|
"card": "overflow-hidden bg-color-bg-1 border hover:shadow",
|
|
@@ -35,37 +36,40 @@ var classes = {
|
|
|
35
36
|
"options": "w-full px-3 h-11 flex items-center justify-around text-color-text-primary border-t border-t-color-border-separator"
|
|
36
37
|
};
|
|
37
38
|
|
|
38
|
-
function
|
|
39
|
-
var
|
|
40
|
-
if (
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
39
|
+
function _createForOfIteratorHelperLoose(r, e) {
|
|
40
|
+
var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
|
|
41
|
+
if (t) return (t = t.call(r)).next.bind(t);
|
|
42
|
+
if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) {
|
|
43
|
+
t && (r = t);
|
|
44
|
+
var o = 0;
|
|
45
|
+
return function() {
|
|
46
|
+
return o >= r.length ? { done: true } : { done: false, value: r[o++] };
|
|
47
|
+
};
|
|
44
48
|
}
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
var originalRender = options.render;
|
|
53
|
-
options.render = function renderWithStyleInjection(h, context) {
|
|
54
|
-
hook.call(context);
|
|
55
|
-
return originalRender(h, context);
|
|
56
|
-
};
|
|
57
|
-
} else {
|
|
58
|
-
var existing = options.beforeCreate;
|
|
59
|
-
options.beforeCreate = existing ? [].concat(existing, hook) : [hook];
|
|
60
|
-
}
|
|
49
|
+
throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
50
|
+
}
|
|
51
|
+
function _unsupportedIterableToArray(r, a) {
|
|
52
|
+
if (r) {
|
|
53
|
+
if ("string" == typeof r) return _arrayLikeToArray(r, a);
|
|
54
|
+
var t = {}.toString.call(r).slice(8, -1);
|
|
55
|
+
return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0;
|
|
61
56
|
}
|
|
62
|
-
return {
|
|
63
|
-
exports: scriptExports,
|
|
64
|
-
options
|
|
65
|
-
};
|
|
66
57
|
}
|
|
58
|
+
function _arrayLikeToArray(r, a) {
|
|
59
|
+
(null == a || a > r.length) && (a = r.length);
|
|
60
|
+
for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];
|
|
61
|
+
return n;
|
|
62
|
+
}
|
|
63
|
+
var _export_sfc = function _export_sfc2(sfc, props) {
|
|
64
|
+
var target = sfc.__vccOpts || sfc;
|
|
65
|
+
for (var _iterator = _createForOfIteratorHelperLoose(props), _step; !(_step = _iterator()).done; ) {
|
|
66
|
+
var _step$value = _step.value, key = _step$value[0], val = _step$value[1];
|
|
67
|
+
target[key] = val;
|
|
68
|
+
}
|
|
69
|
+
return target;
|
|
70
|
+
};
|
|
67
71
|
|
|
68
|
-
var
|
|
72
|
+
var _sfc_main = defineComponent({
|
|
69
73
|
name: $prefix + "Card",
|
|
70
74
|
emits: ["icon-click", "update:modelValue", "change", "click"],
|
|
71
75
|
components: {
|
|
@@ -87,205 +91,300 @@ var __vue2_script = defineComponent({
|
|
|
87
91
|
});
|
|
88
92
|
}
|
|
89
93
|
});
|
|
90
|
-
var
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
94
|
+
var _hoisted_1 = /* @__PURE__ */ createElementVNode(
|
|
95
|
+
"span",
|
|
96
|
+
null,
|
|
97
|
+
null,
|
|
98
|
+
-1
|
|
99
|
+
/* HOISTED */
|
|
100
|
+
);
|
|
101
|
+
var _hoisted_2 = {
|
|
102
|
+
key: 2,
|
|
103
|
+
"data-tag": "tiny-card-image"
|
|
104
|
+
};
|
|
105
|
+
var _hoisted_3 = ["src"];
|
|
106
|
+
var _hoisted_4 = {
|
|
107
|
+
key: 3,
|
|
108
|
+
"data-tag": "tiny-card-vadio"
|
|
109
|
+
};
|
|
110
|
+
var _hoisted_5 = ["src"];
|
|
111
|
+
var _hoisted_6 = ["src"];
|
|
112
|
+
var _hoisted_7 = {
|
|
113
|
+
key: 0,
|
|
114
|
+
"data-tag": "tiny-card-footer",
|
|
115
|
+
class: "w-full"
|
|
116
|
+
};
|
|
117
|
+
var _hoisted_8 = ["onClick"];
|
|
118
|
+
var _hoisted_9 = {
|
|
119
|
+
key: 0,
|
|
120
|
+
class: "ml-1 align-middle"
|
|
121
|
+
};
|
|
122
|
+
var _hoisted_10 = {
|
|
123
|
+
key: 0,
|
|
124
|
+
class: "ml-1 align-middle"
|
|
125
|
+
};
|
|
126
|
+
var _hoisted_11 = {
|
|
127
|
+
key: 0,
|
|
128
|
+
class: "ml-1 text-color-text-primary"
|
|
129
|
+
};
|
|
130
|
+
var _hoisted_12 = ["onClick"];
|
|
131
|
+
var _hoisted_13 = {
|
|
132
|
+
key: 0
|
|
133
|
+
};
|
|
134
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
135
|
+
var _component_tiny_checkbox = resolveComponent("tiny-checkbox");
|
|
136
|
+
var _component_tiny_radio = resolveComponent("tiny-radio");
|
|
137
|
+
var _component_tiny_dropdown_item = resolveComponent("tiny-dropdown-item");
|
|
138
|
+
var _component_tiny_dropdown_menu = resolveComponent("tiny-dropdown-menu");
|
|
139
|
+
var _component_tiny_dropdown = resolveComponent("tiny-dropdown");
|
|
140
|
+
return openBlock(), createElementBlock(
|
|
141
|
+
"div",
|
|
142
|
+
{
|
|
143
|
+
"data-tag": "tiny-card",
|
|
144
|
+
class: normalizeClass(_ctx.m(_ctx.gcls("card"), _ctx.gcls("size-" + _ctx.state.size), _ctx.gcls("status-" + _ctx.state.status), _ctx.gcls(!_ctx.state.autoWidth && "size-" + _ctx.state.size + "-width"), _ctx.state.itemChecked ? "border-color-brand" : "", _ctx.state.disabled ? "bg-color-bg-2" : "", _ctx.state.customClass)),
|
|
145
|
+
onClick: _cache[3] || (_cache[3] = function($event) {
|
|
146
|
+
return _ctx.$emit("click", $event);
|
|
147
|
+
})
|
|
121
148
|
},
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
149
|
+
[createElementVNode(
|
|
150
|
+
"div",
|
|
151
|
+
{
|
|
152
|
+
"data-tag": "tiny-card-body",
|
|
153
|
+
class: normalizeClass([_ctx.state.type === "text" ? "flex" : "block"])
|
|
126
154
|
},
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
155
|
+
[_ctx.state.checkType === "checkbox" && _ctx.state.type === "text" ? (openBlock(), createElementBlock(
|
|
156
|
+
"div",
|
|
157
|
+
{
|
|
158
|
+
key: 0,
|
|
159
|
+
"data-tag": "tiny-card-checkbox",
|
|
160
|
+
class: normalizeClass(_ctx.gcls("checkbox"))
|
|
161
|
+
},
|
|
162
|
+
[createVNode(_component_tiny_checkbox, {
|
|
163
|
+
modelValue: _ctx.state.model,
|
|
164
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = function($event) {
|
|
165
|
+
return _ctx.state.model = $event;
|
|
166
|
+
}),
|
|
167
|
+
label: _ctx.label,
|
|
168
|
+
disabled: _ctx.state.disabled,
|
|
169
|
+
onChange: _ctx.handleChange
|
|
170
|
+
}, null, 8, ["modelValue", "label", "disabled", "onChange"])],
|
|
171
|
+
2
|
|
172
|
+
/* CLASS */
|
|
173
|
+
)) : createCommentVNode("v-if", true), _ctx.state.checkType === "radio" && _ctx.state.type === "text" ? (openBlock(), createElementBlock(
|
|
174
|
+
"div",
|
|
175
|
+
{
|
|
176
|
+
key: 1,
|
|
177
|
+
"data-tag": "tiny-card-radio",
|
|
178
|
+
class: normalizeClass(_ctx.gcls("radio"))
|
|
179
|
+
},
|
|
180
|
+
[createVNode(_component_tiny_radio, {
|
|
181
|
+
modelValue: _ctx.state.model,
|
|
182
|
+
"onUpdate:modelValue": _cache[1] || (_cache[1] = function($event) {
|
|
183
|
+
return _ctx.state.model = $event;
|
|
184
|
+
}),
|
|
185
|
+
label: _ctx.label,
|
|
186
|
+
disabled: _ctx.state.disabled,
|
|
187
|
+
onChange: _ctx.handleChange
|
|
188
|
+
}, {
|
|
189
|
+
default: withCtx(function() {
|
|
190
|
+
return [_hoisted_1];
|
|
191
|
+
}),
|
|
192
|
+
_: 1
|
|
193
|
+
/* STABLE */
|
|
194
|
+
}, 8, ["modelValue", "label", "disabled", "onChange"])],
|
|
195
|
+
2
|
|
196
|
+
/* CLASS */
|
|
197
|
+
)) : createCommentVNode("v-if", true), _ctx.state.type === "image" ? (openBlock(), createElementBlock("div", _hoisted_2, [createElementVNode("img", {
|
|
198
|
+
src: _ctx.src,
|
|
199
|
+
class: "w-full aspect-video bg-cover"
|
|
200
|
+
}, null, 8, _hoisted_3)])) : createCommentVNode("v-if", true), _ctx.state.type === "video" ? (openBlock(), createElementBlock("div", _hoisted_4, [createElementVNode("video", {
|
|
201
|
+
class: "w-full aspect-video",
|
|
202
|
+
src: _ctx.src,
|
|
203
|
+
controls: ""
|
|
204
|
+
}, null, 8, _hoisted_5)])) : createCommentVNode("v-if", true), createElementVNode(
|
|
205
|
+
"div",
|
|
206
|
+
{
|
|
207
|
+
"data-tag": "tiny-card-logo",
|
|
208
|
+
class: normalizeClass(["flex-1", _ctx.gcls("size-" + _ctx.state.size + "-padding")])
|
|
209
|
+
},
|
|
210
|
+
[_ctx.state.type === "logo" ? (openBlock(), createElementBlock(
|
|
211
|
+
"div",
|
|
212
|
+
{
|
|
213
|
+
key: 0,
|
|
214
|
+
class: normalizeClass(_ctx.gcls("logo"))
|
|
215
|
+
},
|
|
216
|
+
[createElementVNode("img", {
|
|
217
|
+
src: _ctx.src,
|
|
218
|
+
class: "bg-contain"
|
|
219
|
+
}, null, 8, _hoisted_6)],
|
|
220
|
+
2
|
|
221
|
+
/* CLASS */
|
|
222
|
+
)) : createCommentVNode("v-if", true), _ctx.title || _ctx.slots.title ? (openBlock(), createElementBlock(
|
|
223
|
+
"div",
|
|
224
|
+
{
|
|
225
|
+
key: 1,
|
|
226
|
+
"data-tag": "tiny-card-title",
|
|
227
|
+
class: normalizeClass(["flex items-start", [_ctx.state.type === "logo" && "text-center justify-center mb-1"]])
|
|
228
|
+
},
|
|
229
|
+
[renderSlot(_ctx.$slots, "title-left"), renderSlot(_ctx.$slots, "title", {}, function() {
|
|
230
|
+
return [createElementVNode(
|
|
231
|
+
"p",
|
|
232
|
+
{
|
|
233
|
+
class: normalizeClass(_ctx.gcls("title"))
|
|
234
|
+
},
|
|
235
|
+
toDisplayString(_ctx.title),
|
|
236
|
+
3
|
|
237
|
+
/* TEXT, CLASS */
|
|
238
|
+
)];
|
|
239
|
+
}), renderSlot(_ctx.$slots, "title-right")],
|
|
240
|
+
2
|
|
241
|
+
/* CLASS */
|
|
242
|
+
)) : createCommentVNode("v-if", true), createElementVNode(
|
|
243
|
+
"div",
|
|
244
|
+
{
|
|
245
|
+
"data-tag": "tiny-card-main",
|
|
246
|
+
class: normalizeClass(_ctx.m(_ctx.gcls("main"), _ctx.state.type === "logo" ? "text-center pb-2" : "")),
|
|
247
|
+
style: normalizeStyle({
|
|
248
|
+
height: _ctx.state.height
|
|
249
|
+
})
|
|
250
|
+
},
|
|
251
|
+
[renderSlot(_ctx.$slots, "default")],
|
|
252
|
+
6
|
|
253
|
+
/* CLASS, STYLE */
|
|
254
|
+
)],
|
|
255
|
+
2
|
|
256
|
+
/* CLASS */
|
|
257
|
+
)],
|
|
258
|
+
2
|
|
259
|
+
/* CLASS */
|
|
260
|
+
), _ctx.state.effectOptions.length || _ctx.slots.footer ? (openBlock(), createElementBlock("div", _hoisted_7, [_ctx.slots.footer ? (openBlock(), createElementBlock(
|
|
261
|
+
"div",
|
|
262
|
+
{
|
|
263
|
+
key: 0,
|
|
264
|
+
class: normalizeClass(_ctx.gcls("footer"))
|
|
146
265
|
},
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
"
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
attrs: {
|
|
156
|
-
"src": _vm.src
|
|
157
|
-
}
|
|
158
|
-
})]) : _vm._e(), _vm.state.type === "video" ? _c("div", {
|
|
159
|
-
attrs: {
|
|
160
|
-
"data-tag": "tiny-card-vadio"
|
|
161
|
-
}
|
|
162
|
-
}, [_c("video", {
|
|
163
|
-
staticClass: "w-full aspect-video",
|
|
164
|
-
attrs: {
|
|
165
|
-
"src": _vm.src,
|
|
166
|
-
"controls": ""
|
|
167
|
-
}
|
|
168
|
-
})]) : _vm._e(), _c("div", {
|
|
169
|
-
staticClass: "flex-1",
|
|
170
|
-
class: _vm.gcls("size-" + _vm.state.size + "-padding"),
|
|
171
|
-
attrs: {
|
|
172
|
-
"data-tag": "tiny-card-logo"
|
|
173
|
-
}
|
|
174
|
-
}, [_vm.state.type === "logo" ? _c("div", {
|
|
175
|
-
class: _vm.gcls("logo")
|
|
176
|
-
}, [_c("img", {
|
|
177
|
-
staticClass: "bg-contain",
|
|
178
|
-
attrs: {
|
|
179
|
-
"src": _vm.src
|
|
180
|
-
}
|
|
181
|
-
})]) : _vm._e(), _vm.title || _vm.slots.title ? _c("div", {
|
|
182
|
-
staticClass: "flex items-start",
|
|
183
|
-
class: [_vm.state.type === "logo" && "text-center justify-center mb-1"],
|
|
184
|
-
attrs: {
|
|
185
|
-
"data-tag": "tiny-card-title"
|
|
186
|
-
}
|
|
187
|
-
}, [_vm._t("title-left"), _vm._t("title", function() {
|
|
188
|
-
return [_c("p", {
|
|
189
|
-
class: _vm.gcls("title")
|
|
190
|
-
}, [_vm._v(_vm._s(_vm.title))])];
|
|
191
|
-
}), _vm._t("title-right")], 2) : _vm._e(), _c("div", {
|
|
192
|
-
class: _vm.m(_vm.gcls("main"), _vm.state.type === "logo" ? "text-center pb-2" : ""),
|
|
193
|
-
style: {
|
|
194
|
-
height: _vm.state.height
|
|
195
|
-
},
|
|
196
|
-
attrs: {
|
|
197
|
-
"data-tag": "tiny-card-main"
|
|
198
|
-
}
|
|
199
|
-
}, [_vm._t("default")], 2)])]), _vm.state.effectOptions.length || _vm.slots.footer ? _c("div", {
|
|
200
|
-
staticClass: "w-full",
|
|
201
|
-
attrs: {
|
|
202
|
-
"data-tag": "tiny-card-footer"
|
|
203
|
-
}
|
|
204
|
-
}, [_vm.slots.footer ? _c("div", {
|
|
205
|
-
class: _vm.gcls("footer")
|
|
206
|
-
}, [_vm._t("footer")], 2) : _vm._e(), _vm.state.effectOptions.length ? _c("div", {
|
|
207
|
-
class: _vm.gcls("options")
|
|
208
|
-
}, [_vm._l(_vm.state.effectOptions.slice(0, _vm.state.sliceNum), function(item, index) {
|
|
209
|
-
return _c("div", {
|
|
210
|
-
key: item.text + index,
|
|
211
|
-
staticClass: "cursor-pointer",
|
|
212
|
-
class: [item.disabled ? "text-color-text-disabled cursor-not-allowed" : ""],
|
|
213
|
-
on: {
|
|
214
|
-
"click": function click($event) {
|
|
215
|
-
$event.stopPropagation();
|
|
216
|
-
return _vm.handelIconClick(item, index, $event);
|
|
217
|
-
}
|
|
218
|
-
}
|
|
219
|
-
}, [_c(item.icon, {
|
|
220
|
-
tag: "component",
|
|
221
|
-
staticClass: "w-4 h-4",
|
|
222
|
-
class: [item.disabled ? "fill-color-icon-disabled" : ""]
|
|
223
|
-
}), item.text ? _c("span", {
|
|
224
|
-
staticClass: "ml-1 align-middle"
|
|
225
|
-
}, [_vm._v(_vm._s(item.text))]) : _vm._e()], 1);
|
|
226
|
-
}), _vm.state.effectOptions.length === _vm.state.iconNum ? _c("div", {
|
|
227
|
-
staticClass: "cursor-pointer",
|
|
228
|
-
class: [_vm.state.effectOptions[_vm.state.sliceNum].disabled ? "text-color-text-disabled cursor-not-allowed" : ""],
|
|
229
|
-
on: {
|
|
230
|
-
"click": function click($event) {
|
|
231
|
-
$event.stopPropagation();
|
|
232
|
-
return _vm.handelIconClick(_vm.state.effectOptions[_vm.state.sliceNum], _vm.state.sliceNum, $event);
|
|
233
|
-
}
|
|
234
|
-
}
|
|
235
|
-
}, [_c(_vm.state.effectOptions[_vm.state.sliceNum].icon, {
|
|
236
|
-
tag: "component",
|
|
237
|
-
staticClass: "w-4 h-4",
|
|
238
|
-
class: [_vm.state.effectOptions[_vm.state.sliceNum].disabled ? "fill-color-icon-disabled" : ""]
|
|
239
|
-
}), _vm.state.effectOptions[_vm.state.sliceNum].text ? _c("span", {
|
|
240
|
-
staticClass: "ml-1 align-middle"
|
|
241
|
-
}, [_vm._v(_vm._s(_vm.state.effectOptions[_vm.state.sliceNum].text))]) : _vm._e()], 1) : _vm._e(), _vm.state.effectOptions.length > _vm.state.iconNum ? _c("tiny-dropdown", {
|
|
242
|
-
attrs: {
|
|
243
|
-
"show-self-icon": ""
|
|
244
|
-
},
|
|
245
|
-
scopedSlots: _vm._u([{
|
|
246
|
-
key: "dropdown",
|
|
247
|
-
fn: function fn() {
|
|
248
|
-
return [_c("tiny-dropdown-menu", {
|
|
249
|
-
attrs: {
|
|
250
|
-
"placement": "bottom"
|
|
251
|
-
}
|
|
252
|
-
}, _vm._l(_vm.state.effectOptions.slice(_vm.state.sliceNum), function(item, index) {
|
|
253
|
-
return _c("tiny-dropdown-item", {
|
|
254
|
-
key: item.text + index
|
|
255
|
-
}, [_c("div", {
|
|
256
|
-
class: ["px-2", item.disabled ? "text-color-text-disabled cursor-not-allowed" : ""],
|
|
257
|
-
on: {
|
|
258
|
-
"click": function click($event) {
|
|
259
|
-
$event.stopPropagation();
|
|
260
|
-
return _vm.handelIconClick(item, index + _vm.state.sliceNum, $event);
|
|
261
|
-
}
|
|
262
|
-
}
|
|
263
|
-
}, [_c(item.icon, {
|
|
264
|
-
tag: "component",
|
|
265
|
-
staticClass: "w-4 h-4",
|
|
266
|
-
class: [item.disabled ? "fill-color-icon-disabled" : ""]
|
|
267
|
-
}), item.text ? _c("span", [_vm._v(_vm._s(item.text))]) : _vm._e()], 1)]);
|
|
268
|
-
}), 1)];
|
|
266
|
+
[renderSlot(_ctx.$slots, "footer")],
|
|
267
|
+
2
|
|
268
|
+
/* CLASS */
|
|
269
|
+
)) : createCommentVNode("v-if", true), _ctx.state.effectOptions.length ? (openBlock(), createElementBlock(
|
|
270
|
+
"div",
|
|
271
|
+
{
|
|
272
|
+
key: 1,
|
|
273
|
+
class: normalizeClass(_ctx.gcls("options"))
|
|
269
274
|
},
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
275
|
+
[(openBlock(true), createElementBlock(
|
|
276
|
+
Fragment,
|
|
277
|
+
null,
|
|
278
|
+
renderList(_ctx.state.effectOptions.slice(0, _ctx.state.sliceNum), function(item, index) {
|
|
279
|
+
return openBlock(), createElementBlock("div", {
|
|
280
|
+
class: normalizeClass(["cursor-pointer", [item.disabled ? "text-color-text-disabled cursor-not-allowed" : ""]]),
|
|
281
|
+
key: item.text + index,
|
|
282
|
+
onClick: withModifiers(function($event) {
|
|
283
|
+
return _ctx.handelIconClick(item, index, $event);
|
|
284
|
+
}, ["stop"])
|
|
285
|
+
}, [(openBlock(), createBlock(resolveDynamicComponent(item.icon), {
|
|
286
|
+
class: normalizeClass(["w-4 h-4", [item.disabled ? "fill-color-icon-disabled" : ""]])
|
|
287
|
+
}, null, 8, ["class"])), item.text ? (openBlock(), createElementBlock(
|
|
288
|
+
"span",
|
|
289
|
+
_hoisted_9,
|
|
290
|
+
toDisplayString(item.text),
|
|
291
|
+
1
|
|
292
|
+
/* TEXT */
|
|
293
|
+
)) : createCommentVNode("v-if", true)], 10, _hoisted_8);
|
|
294
|
+
}),
|
|
295
|
+
128
|
|
296
|
+
/* KEYED_FRAGMENT */
|
|
297
|
+
)), _ctx.state.effectOptions.length === _ctx.state.iconNum ? (openBlock(), createElementBlock(
|
|
298
|
+
"div",
|
|
299
|
+
{
|
|
300
|
+
key: 0,
|
|
301
|
+
class: normalizeClass(["cursor-pointer", [_ctx.state.effectOptions[_ctx.state.sliceNum].disabled ? "text-color-text-disabled cursor-not-allowed" : ""]]),
|
|
302
|
+
onClick: _cache[2] || (_cache[2] = withModifiers(function($event) {
|
|
303
|
+
return _ctx.handelIconClick(_ctx.state.effectOptions[_ctx.state.sliceNum], _ctx.state.sliceNum, $event);
|
|
304
|
+
}, ["stop"]))
|
|
305
|
+
},
|
|
306
|
+
[(openBlock(), createBlock(resolveDynamicComponent(_ctx.state.effectOptions[_ctx.state.sliceNum].icon), {
|
|
307
|
+
class: normalizeClass(["w-4 h-4", [_ctx.state.effectOptions[_ctx.state.sliceNum].disabled ? "fill-color-icon-disabled" : ""]])
|
|
308
|
+
}, null, 8, ["class"])), _ctx.state.effectOptions[_ctx.state.sliceNum].text ? (openBlock(), createElementBlock(
|
|
309
|
+
"span",
|
|
310
|
+
_hoisted_10,
|
|
311
|
+
toDisplayString(_ctx.state.effectOptions[_ctx.state.sliceNum].text),
|
|
312
|
+
1
|
|
313
|
+
/* TEXT */
|
|
314
|
+
)) : createCommentVNode("v-if", true)],
|
|
315
|
+
2
|
|
316
|
+
/* CLASS */
|
|
317
|
+
)) : createCommentVNode("v-if", true), _ctx.state.effectOptions.length > _ctx.state.iconNum ? (openBlock(), createBlock(_component_tiny_dropdown, {
|
|
318
|
+
key: 1,
|
|
319
|
+
"show-self-icon": ""
|
|
320
|
+
}, {
|
|
321
|
+
dropdown: withCtx(function() {
|
|
322
|
+
return [createVNode(_component_tiny_dropdown_menu, {
|
|
323
|
+
placement: "bottom"
|
|
324
|
+
}, {
|
|
325
|
+
default: withCtx(function() {
|
|
326
|
+
return [(openBlock(true), createElementBlock(
|
|
327
|
+
Fragment,
|
|
328
|
+
null,
|
|
329
|
+
renderList(_ctx.state.effectOptions.slice(_ctx.state.sliceNum), function(item, index) {
|
|
330
|
+
return openBlock(), createBlock(
|
|
331
|
+
_component_tiny_dropdown_item,
|
|
332
|
+
{
|
|
333
|
+
key: item.text + index
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
default: withCtx(function() {
|
|
337
|
+
return [createElementVNode("div", {
|
|
338
|
+
onClick: withModifiers(function($event) {
|
|
339
|
+
return _ctx.handelIconClick(item, index + _ctx.state.sliceNum, $event);
|
|
340
|
+
}, ["stop"]),
|
|
341
|
+
class: normalizeClass(["px-2", item.disabled ? "text-color-text-disabled cursor-not-allowed" : ""])
|
|
342
|
+
}, [(openBlock(), createBlock(resolveDynamicComponent(item.icon), {
|
|
343
|
+
class: normalizeClass(["w-4 h-4", [item.disabled ? "fill-color-icon-disabled" : ""]])
|
|
344
|
+
}, null, 8, ["class"])), item.text ? (openBlock(), createElementBlock(
|
|
345
|
+
"span",
|
|
346
|
+
_hoisted_13,
|
|
347
|
+
toDisplayString(item.text),
|
|
348
|
+
1
|
|
349
|
+
/* TEXT */
|
|
350
|
+
)) : createCommentVNode("v-if", true)], 10, _hoisted_12)];
|
|
351
|
+
}),
|
|
352
|
+
_: 2
|
|
353
|
+
/* DYNAMIC */
|
|
354
|
+
},
|
|
355
|
+
1024
|
|
356
|
+
/* DYNAMIC_SLOTS */
|
|
357
|
+
);
|
|
358
|
+
}),
|
|
359
|
+
128
|
|
360
|
+
/* KEYED_FRAGMENT */
|
|
361
|
+
))];
|
|
362
|
+
}),
|
|
363
|
+
_: 1
|
|
364
|
+
/* STABLE */
|
|
365
|
+
})];
|
|
366
|
+
}),
|
|
367
|
+
default: withCtx(function() {
|
|
368
|
+
return [(openBlock(), createBlock(resolveDynamicComponent(_ctx.iconMore), {
|
|
369
|
+
class: "w-4 h-4"
|
|
370
|
+
})), _ctx.state.effectOptions[0].text ? (openBlock(), createElementBlock(
|
|
371
|
+
"span",
|
|
372
|
+
_hoisted_11,
|
|
373
|
+
toDisplayString(_ctx.t("ui.base.more")),
|
|
374
|
+
1
|
|
375
|
+
/* TEXT */
|
|
376
|
+
)) : createCommentVNode("v-if", true)];
|
|
377
|
+
}),
|
|
378
|
+
_: 1
|
|
379
|
+
/* STABLE */
|
|
380
|
+
})) : createCommentVNode("v-if", true)],
|
|
381
|
+
2
|
|
382
|
+
/* CLASS */
|
|
383
|
+
)) : createCommentVNode("v-if", true)])) : createCommentVNode("v-if", true)],
|
|
384
|
+
2
|
|
385
|
+
/* CLASS */
|
|
386
|
+
);
|
|
286
387
|
}
|
|
287
|
-
var mobileFirst = /* @__PURE__ */
|
|
288
|
-
return __component__.exports;
|
|
289
|
-
}();
|
|
388
|
+
var mobileFirst = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
290
389
|
|
|
291
390
|
export { mobileFirst as default };
|