quasar-ui-sellmate-ui-kit 3.14.13 → 3.14.15
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/index.common.js +2 -2
- package/dist/index.css +2861 -2861
- package/dist/index.esm.js +2 -2
- package/dist/index.min.css +2 -2
- package/dist/index.rtl.css +2861 -2861
- package/dist/index.rtl.min.css +2 -2
- package/dist/index.umd.js +431 -414
- package/dist/index.umd.min.js +2 -2
- package/package.json +1 -1
- package/src/components/InputWithSearchIcon.vue +2 -2
- package/src/components/SBadge.vue +5 -5
- package/src/components/SBreadcrumbs.vue +26 -30
- package/src/components/SButton.vue +4 -4
- package/src/components/SButtonGroup.vue +21 -26
- package/src/components/SButtonToggle.vue +3 -3
- package/src/components/SCaution.vue +92 -98
- package/src/components/SCheckbox.vue +86 -87
- package/src/components/SChip.vue +63 -63
- package/src/components/SDate.vue +15 -15
- package/src/components/SDateAutoRangePicker.vue +101 -98
- package/src/components/SDatePicker.vue +19 -19
- package/src/components/SDateRange.vue +15 -25
- package/src/components/SDateRangePicker.vue +19 -20
- package/src/components/SDateTimePicker.vue +15 -23
- package/src/components/SDialog.vue +145 -169
- package/src/components/SDropdown.vue +6 -6
- package/src/components/SEditor.vue +2 -2
- package/src/components/SFilePicker.vue +10 -10
- package/src/components/SHelp.vue +4 -4
- package/src/components/SInput.vue +19 -19
- package/src/components/SInputNumber.vue +12 -12
- package/src/components/SMarkupTable.vue +89 -88
- package/src/components/SPagination.vue +11 -11
- package/src/components/SRadio.vue +52 -52
- package/src/components/SRouteTab.vue +3 -3
- package/src/components/SSelect.vue +9 -9
- package/src/components/SSelectCheckbox.vue +5 -5
- package/src/components/SSelectGroupCheckbox.vue +7 -7
- package/src/components/SSelectSearch.vue +2 -2
- package/src/components/SSelectSearchCheckbox.vue +5 -5
- package/src/components/STab.vue +6 -6
- package/src/components/STable.vue +9 -9
- package/src/components/STableTree.vue +10 -10
- package/src/components/STag.vue +17 -17
- package/src/components/STimePicker.vue +9 -9
- package/src/components/SToggle.vue +44 -45
- package/src/components/STooltip.vue +144 -142
- package/src/components/SYearMonthPicker.vue +8 -8
- package/src/components/TableTreeNode.vue +4 -4
- package/src/components/TimePickerCard.vue +11 -11
- package/src/composables/table/use-resizable.js +14 -4
- package/src/css/app.scss +8 -7
- package/src/css/default.scss +172 -141
- package/src/css/extends.scss +13 -13
- package/src/css/quasar.variables.scss +133 -121
package/dist/index.umd.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* quasar-ui-sellmate-ui-kit v3.14.
|
|
2
|
+
* quasar-ui-sellmate-ui-kit v3.14.14
|
|
3
3
|
* (c) 2025 Sellmate Dev Team <dev@sellmate.co.kr>
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -11,15 +11,15 @@
|
|
|
11
11
|
})(this, (function (vue, quasar) { 'use strict';
|
|
12
12
|
|
|
13
13
|
var script$J = vue.defineComponent({
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
14
|
+
name: 'SBreadcrumbs',
|
|
15
|
+
components: {
|
|
16
|
+
QBreadcrumbs: quasar.QBreadcrumbs,
|
|
17
|
+
QBreadcrumbsEl: quasar.QBreadcrumbsEl,
|
|
18
|
+
},
|
|
19
|
+
props: {
|
|
20
|
+
labels: Array,
|
|
21
|
+
},
|
|
22
|
+
});
|
|
23
23
|
|
|
24
24
|
function render$J(_ctx, _cache, $props, $setup, $data, $options) {
|
|
25
25
|
var _component_q_breadcrumbs_el = vue.resolveComponent("q-breadcrumbs-el");
|
|
@@ -27,14 +27,14 @@
|
|
|
27
27
|
|
|
28
28
|
return (vue.openBlock(), vue.createBlock(_component_q_breadcrumbs, {
|
|
29
29
|
class: "s-breadcrumbs",
|
|
30
|
-
"separator-color": "
|
|
31
|
-
"active-color": "
|
|
30
|
+
"separator-color": "grey_95",
|
|
31
|
+
"active-color": "grey_95"
|
|
32
32
|
}, {
|
|
33
33
|
default: vue.withCtx(function () { return [
|
|
34
34
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.labels, function (item, i) {
|
|
35
35
|
return (vue.openBlock(), vue.createBlock(_component_q_breadcrumbs_el, {
|
|
36
36
|
key: i,
|
|
37
|
-
class: "text-
|
|
37
|
+
class: "text-grey_95 s-breadcrumbs-el",
|
|
38
38
|
to: item.link ? undefined : item.path,
|
|
39
39
|
tag: item.link ? 'a' : 'button',
|
|
40
40
|
href: item.link,
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
},
|
|
95
95
|
color: {
|
|
96
96
|
type: String,
|
|
97
|
-
default: '
|
|
97
|
+
default: 'oceanblue_75',
|
|
98
98
|
},
|
|
99
99
|
noHover: {
|
|
100
100
|
type: Boolean,
|
|
@@ -146,17 +146,17 @@
|
|
|
146
146
|
script$I.render = render$I;
|
|
147
147
|
|
|
148
148
|
var script$H = vue.defineComponent({
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
},
|
|
153
|
-
props: {
|
|
154
|
-
noHover: {
|
|
155
|
-
type: Boolean,
|
|
156
|
-
default: false,
|
|
149
|
+
name: 'SButtonGroup',
|
|
150
|
+
components: {
|
|
151
|
+
QBtnGroup: quasar.QBtnGroup,
|
|
157
152
|
},
|
|
158
|
-
|
|
159
|
-
|
|
153
|
+
props: {
|
|
154
|
+
noHover: {
|
|
155
|
+
type: Boolean,
|
|
156
|
+
default: false,
|
|
157
|
+
},
|
|
158
|
+
},
|
|
159
|
+
});
|
|
160
160
|
|
|
161
161
|
function render$H(_ctx, _cache, $props, $setup, $data, $options) {
|
|
162
162
|
var _component_q_btn_group = vue.resolveComponent("q-btn-group");
|
|
@@ -223,8 +223,8 @@
|
|
|
223
223
|
outline: "",
|
|
224
224
|
unelevated: "",
|
|
225
225
|
ripple: false,
|
|
226
|
-
color: "
|
|
227
|
-
"text-color": "
|
|
226
|
+
color: "grey_45",
|
|
227
|
+
"text-color": "grey_45",
|
|
228
228
|
"toggle-color": "positive",
|
|
229
229
|
"toggle-text-color": "positive",
|
|
230
230
|
class: vue.normalizeClass(["s-btn-toggle", _ctx.size === 'md' ? 's-btn-toggle-md' : 's-btn-toggle-sm'])
|
|
@@ -288,44 +288,43 @@
|
|
|
288
288
|
'M1.16669 5H8.83335@@stroke:currentColor;stroke-width:0.8;stroke-linecap:round; | 0 0 10 10';
|
|
289
289
|
|
|
290
290
|
var script$F = vue.defineComponent({
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
},
|
|
295
|
-
props: {
|
|
296
|
-
label: {
|
|
297
|
-
type: String,
|
|
298
|
-
default: '주의사항',
|
|
299
|
-
},
|
|
300
|
-
/**
|
|
301
|
-
* @description icon 영역 없앰
|
|
302
|
-
*/
|
|
303
|
-
noIcon: {
|
|
304
|
-
type: Boolean,
|
|
305
|
-
default: false,
|
|
291
|
+
components: {
|
|
292
|
+
QBanner: quasar.QBanner,
|
|
293
|
+
QIcon: quasar.QIcon,
|
|
306
294
|
},
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
295
|
+
props: {
|
|
296
|
+
label: {
|
|
297
|
+
type: String,
|
|
298
|
+
default: '주의사항',
|
|
299
|
+
},
|
|
300
|
+
/**
|
|
301
|
+
* @description icon 영역 없앰
|
|
302
|
+
*/
|
|
303
|
+
noIcon: {
|
|
304
|
+
type: Boolean,
|
|
305
|
+
default: false,
|
|
306
|
+
},
|
|
307
|
+
/**
|
|
308
|
+
* @description 모달 주의사항
|
|
309
|
+
*/
|
|
310
|
+
useModal: {
|
|
311
|
+
type: Boolean,
|
|
312
|
+
default: false,
|
|
313
|
+
},
|
|
314
|
+
/**
|
|
315
|
+
* @description 모달 안내사항 (회색)
|
|
316
|
+
*/
|
|
317
|
+
useNotice: {
|
|
318
|
+
type: Boolean,
|
|
319
|
+
default: false,
|
|
320
|
+
},
|
|
313
321
|
},
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
type: Boolean,
|
|
319
|
-
default: false,
|
|
322
|
+
setup: function setup() {
|
|
323
|
+
return {
|
|
324
|
+
cautionOutlineIcon: cautionOutlineIcon,
|
|
325
|
+
};
|
|
320
326
|
},
|
|
321
|
-
|
|
322
|
-
},
|
|
323
|
-
setup: function setup() {
|
|
324
|
-
return {
|
|
325
|
-
cautionOutlineIcon: cautionOutlineIcon,
|
|
326
|
-
};
|
|
327
|
-
},
|
|
328
|
-
});
|
|
327
|
+
});
|
|
329
328
|
|
|
330
329
|
var _hoisted_1$s = { class: "s-caution__icon--title q-mt-xs text-white block font-16-700" };
|
|
331
330
|
|
|
@@ -336,15 +335,12 @@
|
|
|
336
335
|
return (vue.openBlock(), vue.createBlock(_component_q_banner, {
|
|
337
336
|
dense: "",
|
|
338
337
|
rounded: "",
|
|
339
|
-
class: vue.normalizeClass(["s-caution text-
|
|
338
|
+
class: vue.normalizeClass(["s-caution text-grey_90 flex s-border-radius-sm", [
|
|
340
339
|
{
|
|
341
340
|
's-caution--no-icon': _ctx.noIcon,
|
|
342
341
|
's-caution--modal': _ctx.useModal || _ctx.useNotice,
|
|
343
342
|
},
|
|
344
|
-
_ctx.useModal
|
|
345
|
-
? (_ctx.useNotice ? 'bg-Grey_Lighten-6' : 'bg-Red_Lighten-6')
|
|
346
|
-
: 'bg-Red_Lighten-6 s-border-Red_Lighten-3'
|
|
347
|
-
]])
|
|
343
|
+
_ctx.useModal ? (_ctx.useNotice ? 'bg-grey_05' : 'bg-red_15') : 'bg-red_15 s-border-red_45' ]])
|
|
348
344
|
}, vue.createSlots({
|
|
349
345
|
default: vue.withCtx(function () { return [
|
|
350
346
|
vue.createElementVNode("ul", null, [
|
|
@@ -360,7 +356,7 @@
|
|
|
360
356
|
vue.createVNode(_component_q_icon, {
|
|
361
357
|
class: "s-caution-icon",
|
|
362
358
|
size: "24px",
|
|
363
|
-
color: "
|
|
359
|
+
color: "red_70",
|
|
364
360
|
name: _ctx.cautionOutlineIcon
|
|
365
361
|
}, null, 8, ["name"]),
|
|
366
362
|
vue.createElementVNode("strong", _hoisted_1$s, vue.toDisplayString(_ctx.label), 1)
|
|
@@ -371,24 +367,24 @@
|
|
|
371
367
|
]), 1032, ["class"]))
|
|
372
368
|
}
|
|
373
369
|
|
|
374
|
-
var css_248z$E = ".s-caution[data-v-
|
|
370
|
+
var css_248z$E = ".s-caution[data-v-17179415] {\n padding: 0;\n overflow: hidden;\n max-height: 100%;\n max-width: 100%;\n}\n.s-caution[data-v-17179415] .q-banner__avatar {\n flex-direction: column;\n min-width: 104px !important;\n max-width: 104px !important;\n margin: 0 !important;\n background-color: #fb4444;\n padding: 0 24px;\n line-height: 26px;\n align-self: stretch;\n justify-content: center;\n}\n.s-caution[data-v-17179415] .q-banner__content {\n padding: 0 !important;\n margin: 20px 32px 20px 48px;\n}\n.s-caution[data-v-17179415] .q-banner__content > ul {\n padding: 0;\n margin: 0;\n}\n.s-caution[data-v-17179415] .q-banner__content > ul > li {\n list-style: none;\n font-size: 12px;\n line-height: 22px;\n text-indent: -18px !important;\n}\n.s-caution[data-v-17179415] .q-banner__content > ul > li:before {\n content: \"-\";\n font-size: 12px;\n line-height: 22px;\n margin-right: 12px;\n}\n.s-caution--no-icon[data-v-17179415] .q-banner__avatar {\n display: none;\n}\n.s-caution--modal[data-v-17179415] .q-banner__content {\n margin: 12px 24px 12px 40px;\n}\n.s-caution--modal[data-v-17179415] .q-banner__content ul li {\n text-indent: -14px !important;\n}\n.s-caution--modal[data-v-17179415] .q-banner__content ul li:before {\n margin-right: 8px;\n}";
|
|
375
371
|
styleInject(css_248z$E);
|
|
376
372
|
|
|
377
373
|
script$F.render = render$F;
|
|
378
|
-
script$F.__scopeId = "data-v-
|
|
374
|
+
script$F.__scopeId = "data-v-17179415";
|
|
379
375
|
|
|
380
376
|
var script$E = vue.defineComponent({
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
377
|
+
name: 'SCheckbox',
|
|
378
|
+
components: {
|
|
379
|
+
QCheckbox: quasar.QCheckbox,
|
|
380
|
+
},
|
|
381
|
+
props: {
|
|
382
|
+
length: Number,
|
|
383
|
+
},
|
|
384
|
+
setup: function setup() {
|
|
385
|
+
return {};
|
|
386
|
+
},
|
|
387
|
+
});
|
|
392
388
|
|
|
393
389
|
function render$E(_ctx, _cache, $props, $setup, $data, $options) {
|
|
394
390
|
var _component_q_checkbox = vue.resolveComponent("q-checkbox");
|
|
@@ -406,36 +402,36 @@
|
|
|
406
402
|
script$E.render = render$E;
|
|
407
403
|
|
|
408
404
|
var script$D = vue.defineComponent({
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
405
|
+
name: 'SChip',
|
|
406
|
+
components: { QChip: quasar.QChip },
|
|
407
|
+
props: {
|
|
408
|
+
input: { type: String, default: '' },
|
|
409
|
+
},
|
|
410
|
+
setup: function setup(props, ref$1) {
|
|
411
|
+
var emit = ref$1.emit;
|
|
416
412
|
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
413
|
+
var inputValue = vue.ref(props.input);
|
|
414
|
+
vue.watch(
|
|
415
|
+
function () { return props.input; },
|
|
416
|
+
function (val) {
|
|
417
|
+
inputValue.value = val;
|
|
418
|
+
}
|
|
419
|
+
);
|
|
420
|
+
function handleInput(event) {
|
|
421
|
+
inputValue.value = event.target.outerText;
|
|
422
|
+
if (event.key === 'Enter') {
|
|
423
|
+
event.preventDefault();
|
|
424
|
+
event.target.blur();
|
|
425
|
+
emit('update:input', inputValue.value);
|
|
426
|
+
}
|
|
430
427
|
}
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
}
|
|
437
|
-
}
|
|
438
|
-
});
|
|
428
|
+
return {
|
|
429
|
+
chipRemoveIcon: chipRemoveIcon,
|
|
430
|
+
inputValue: inputValue,
|
|
431
|
+
handleInput: handleInput,
|
|
432
|
+
};
|
|
433
|
+
},
|
|
434
|
+
});
|
|
439
435
|
|
|
440
436
|
var _hoisted_1$r = ["contenteditable"];
|
|
441
437
|
|
|
@@ -443,13 +439,13 @@
|
|
|
443
439
|
var _component_q_chip = vue.resolveComponent("q-chip");
|
|
444
440
|
|
|
445
441
|
return (vue.openBlock(), vue.createBlock(_component_q_chip, {
|
|
446
|
-
class: "no-hover row items-center text-color-
|
|
442
|
+
class: "no-hover row items-center text-color-grey_90 s-chip",
|
|
447
443
|
square: "",
|
|
448
444
|
removable: "",
|
|
449
445
|
outline: "",
|
|
450
446
|
dense: "",
|
|
451
447
|
clickable: !!_ctx.inputValue,
|
|
452
|
-
color: "
|
|
448
|
+
color: "grey_65",
|
|
453
449
|
ripple: false,
|
|
454
450
|
"icon-remove": _ctx.chipRemoveIcon
|
|
455
451
|
}, {
|
|
@@ -685,7 +681,7 @@
|
|
|
685
681
|
outlined: "",
|
|
686
682
|
class: vue.normalizeClass([{
|
|
687
683
|
's-date-picker-range': _ctx.range,
|
|
688
|
-
'text-
|
|
684
|
+
'text-grey_65 bg-grey_10': _ctx.isDisable,
|
|
689
685
|
's-date-picker-inside': _ctx.insideLabel,
|
|
690
686
|
}, "q-pa-none s-date-picker"]),
|
|
691
687
|
readonly: "",
|
|
@@ -703,7 +699,7 @@
|
|
|
703
699
|
dense: "",
|
|
704
700
|
ripple: false,
|
|
705
701
|
flat: "",
|
|
706
|
-
color: "
|
|
702
|
+
color: "grey_90",
|
|
707
703
|
class: "q-pa-none no-hover",
|
|
708
704
|
"aria-label": "date-button"
|
|
709
705
|
}, {
|
|
@@ -755,7 +751,7 @@
|
|
|
755
751
|
vue.createVNode(_component_q_icon, {
|
|
756
752
|
name: _ctx.closeIcon,
|
|
757
753
|
size: "16px",
|
|
758
|
-
color: "
|
|
754
|
+
color: "grey_55",
|
|
759
755
|
class: "cursor-pointer",
|
|
760
756
|
onClick: _ctx.deleteDate,
|
|
761
757
|
"aria-label": "close-button"
|
|
@@ -924,8 +920,8 @@
|
|
|
924
920
|
},
|
|
925
921
|
locale: {
|
|
926
922
|
type: Object,
|
|
927
|
-
default: initLocaleObj
|
|
928
|
-
}
|
|
923
|
+
default: initLocaleObj,
|
|
924
|
+
},
|
|
929
925
|
},
|
|
930
926
|
setup: function setup(props, ref$1) {
|
|
931
927
|
var emit = ref$1.emit;
|
|
@@ -1038,7 +1034,7 @@
|
|
|
1038
1034
|
var _hoisted_2$i = { class: "flex no-wrap items-center" };
|
|
1039
1035
|
var _hoisted_3$b = {
|
|
1040
1036
|
key: 1,
|
|
1041
|
-
class: "text-center text-
|
|
1037
|
+
class: "text-center text-grey_90 date-str"
|
|
1042
1038
|
};
|
|
1043
1039
|
var _hoisted_4$8 = /*#__PURE__*/vue.createElementVNode("span", {
|
|
1044
1040
|
class: "q-mx-xs",
|
|
@@ -1046,7 +1042,7 @@
|
|
|
1046
1042
|
}, "~", -1);
|
|
1047
1043
|
var _hoisted_5$7 = {
|
|
1048
1044
|
key: 3,
|
|
1049
|
-
class: "text-center text-
|
|
1045
|
+
class: "text-center text-grey_90 date-str"
|
|
1050
1046
|
};
|
|
1051
1047
|
|
|
1052
1048
|
function render$B(_ctx, _cache, $props, $setup, $data, $options) {
|
|
@@ -1061,7 +1057,7 @@
|
|
|
1061
1057
|
dense: "",
|
|
1062
1058
|
outlined: "",
|
|
1063
1059
|
class: vue.normalizeClass([{
|
|
1064
|
-
'text-
|
|
1060
|
+
'text-grey_65 bg-grey_10': _ctx.isDisable,
|
|
1065
1061
|
's-date-range-picker--inside': _ctx.insideLabel,
|
|
1066
1062
|
}, "q-pa-none s-date-range-picker bg-white"]),
|
|
1067
1063
|
readonly: "",
|
|
@@ -1078,7 +1074,7 @@
|
|
|
1078
1074
|
ripple: false,
|
|
1079
1075
|
flat: "",
|
|
1080
1076
|
class: "q-pa-none no-hover",
|
|
1081
|
-
color: "
|
|
1077
|
+
color: "grey_90"
|
|
1082
1078
|
}, {
|
|
1083
1079
|
default: vue.withCtx(function () { return [
|
|
1084
1080
|
vue.createVNode(_component_q_menu, {
|
|
@@ -1196,74 +1192,74 @@
|
|
|
1196
1192
|
script$B.render = render$B;
|
|
1197
1193
|
|
|
1198
1194
|
var script$A = vue.defineComponent({
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
},
|
|
1208
|
-
props: {
|
|
1209
|
-
withHeaderIcon: {
|
|
1210
|
-
type: Boolean,
|
|
1211
|
-
default: false,
|
|
1212
|
-
},
|
|
1213
|
-
title: {
|
|
1214
|
-
type: String,
|
|
1215
|
-
default: '',
|
|
1216
|
-
},
|
|
1217
|
-
content: {
|
|
1218
|
-
type: String,
|
|
1219
|
-
default: '',
|
|
1220
|
-
},
|
|
1221
|
-
type: {
|
|
1222
|
-
type: String,
|
|
1223
|
-
default: 'info',
|
|
1224
|
-
},
|
|
1225
|
-
buttonLabel: {
|
|
1226
|
-
type: String,
|
|
1227
|
-
default: '',
|
|
1228
|
-
},
|
|
1229
|
-
twoButtons: {
|
|
1230
|
-
type: Boolean,
|
|
1231
|
-
default: false,
|
|
1232
|
-
},
|
|
1233
|
-
secondButtonLabel: {
|
|
1234
|
-
type: String,
|
|
1235
|
-
default: '',
|
|
1236
|
-
},
|
|
1237
|
-
firstBtnColor: {
|
|
1238
|
-
type: String,
|
|
1239
|
-
default: '',
|
|
1240
|
-
},
|
|
1241
|
-
secondBtnColor: {
|
|
1242
|
-
type: String,
|
|
1243
|
-
default: '',
|
|
1244
|
-
},
|
|
1245
|
-
firstBtnOutLine: {
|
|
1246
|
-
type: Boolean,
|
|
1247
|
-
default: false,
|
|
1195
|
+
name: 'SConfirm',
|
|
1196
|
+
components: {
|
|
1197
|
+
QDialog: quasar.QDialog,
|
|
1198
|
+
QCard: quasar.QCard,
|
|
1199
|
+
QCardSection: quasar.QCardSection,
|
|
1200
|
+
QCardActions: quasar.QCardActions,
|
|
1201
|
+
QBtn: quasar.QBtn,
|
|
1202
|
+
QIcon: quasar.QIcon,
|
|
1248
1203
|
},
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1204
|
+
props: {
|
|
1205
|
+
withHeaderIcon: {
|
|
1206
|
+
type: Boolean,
|
|
1207
|
+
default: false,
|
|
1208
|
+
},
|
|
1209
|
+
title: {
|
|
1210
|
+
type: String,
|
|
1211
|
+
default: '',
|
|
1212
|
+
},
|
|
1213
|
+
content: {
|
|
1214
|
+
type: String,
|
|
1215
|
+
default: '',
|
|
1216
|
+
},
|
|
1217
|
+
type: {
|
|
1218
|
+
type: String,
|
|
1219
|
+
default: 'info',
|
|
1220
|
+
},
|
|
1221
|
+
buttonLabel: {
|
|
1222
|
+
type: String,
|
|
1223
|
+
default: '',
|
|
1224
|
+
},
|
|
1225
|
+
twoButtons: {
|
|
1226
|
+
type: Boolean,
|
|
1227
|
+
default: false,
|
|
1228
|
+
},
|
|
1229
|
+
secondButtonLabel: {
|
|
1230
|
+
type: String,
|
|
1231
|
+
default: '',
|
|
1232
|
+
},
|
|
1233
|
+
firstBtnColor: {
|
|
1234
|
+
type: String,
|
|
1235
|
+
default: '',
|
|
1236
|
+
},
|
|
1237
|
+
secondBtnColor: {
|
|
1238
|
+
type: String,
|
|
1239
|
+
default: '',
|
|
1240
|
+
},
|
|
1241
|
+
firstBtnOutLine: {
|
|
1242
|
+
type: Boolean,
|
|
1243
|
+
default: false,
|
|
1244
|
+
},
|
|
1245
|
+
secondBtnOutLine: {
|
|
1246
|
+
type: Boolean,
|
|
1247
|
+
default: false,
|
|
1248
|
+
},
|
|
1249
|
+
btnVertical: {
|
|
1250
|
+
type: Boolean,
|
|
1251
|
+
default: false,
|
|
1252
|
+
},
|
|
1252
1253
|
},
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1254
|
+
emits: ['handleClose', 'handleFirst', 'handleSecond'],
|
|
1255
|
+
setup: function setup() {
|
|
1256
|
+
return {
|
|
1257
|
+
infoOutlineIcon: infoOutlineIcon,
|
|
1258
|
+
warningOutlineIcon: warningOutlineIcon,
|
|
1259
|
+
closeIcon: closeIcon,
|
|
1260
|
+
};
|
|
1256
1261
|
},
|
|
1257
|
-
}
|
|
1258
|
-
emits: ['handleClose', 'handleFirst', 'handleSecond'],
|
|
1259
|
-
setup: function setup() {
|
|
1260
|
-
return {
|
|
1261
|
-
infoOutlineIcon: infoOutlineIcon,
|
|
1262
|
-
warningOutlineIcon: warningOutlineIcon,
|
|
1263
|
-
closeIcon: closeIcon,
|
|
1264
|
-
};
|
|
1265
|
-
},
|
|
1266
|
-
});
|
|
1262
|
+
});
|
|
1267
1263
|
|
|
1268
1264
|
var _hoisted_1$o = {
|
|
1269
1265
|
key: 0,
|
|
@@ -1290,7 +1286,7 @@
|
|
|
1290
1286
|
flat: "",
|
|
1291
1287
|
round: "",
|
|
1292
1288
|
dense: "",
|
|
1293
|
-
color: "
|
|
1289
|
+
color: "grey_65",
|
|
1294
1290
|
ripple: false,
|
|
1295
1291
|
onClick: _cache[0] || (_cache[0] = function ($event) { return (_ctx.$emit('handleClose')); })
|
|
1296
1292
|
}, null, 8, ["icon"]), [
|
|
@@ -1437,7 +1433,7 @@
|
|
|
1437
1433
|
return (vue.openBlock(), vue.createBlock(_component_q_btn, {
|
|
1438
1434
|
outline: "",
|
|
1439
1435
|
split: "",
|
|
1440
|
-
color: _ctx.$attrs.color || '
|
|
1436
|
+
color: _ctx.$attrs.color || 'grey_65',
|
|
1441
1437
|
"no-caps": "",
|
|
1442
1438
|
"no-wrap": "",
|
|
1443
1439
|
unelevated: "",
|
|
@@ -2083,7 +2079,7 @@
|
|
|
2083
2079
|
vue.createVNode(_component_q_icon, { name: "image" }),
|
|
2084
2080
|
vue.createVNode(_component_q_menu, null, {
|
|
2085
2081
|
default: vue.withCtx(function () { return [
|
|
2086
|
-
vue.createVNode(_component_q_card, { class: "q-pa-sm bg-
|
|
2082
|
+
vue.createVNode(_component_q_card, { class: "q-pa-sm bg-grey_10" }, {
|
|
2087
2083
|
default: vue.withCtx(function () { return [
|
|
2088
2084
|
vue.createVNode(_component_q_card_section, { class: "q-pa-none" }, {
|
|
2089
2085
|
default: vue.withCtx(function () { return [
|
|
@@ -2103,7 +2099,7 @@
|
|
|
2103
2099
|
outline: "",
|
|
2104
2100
|
label: _ctx.imgUploadBtnLabel,
|
|
2105
2101
|
onClick: _ctx.onOkClick,
|
|
2106
|
-
color: "
|
|
2102
|
+
color: "oceanblue_75",
|
|
2107
2103
|
class: "bg-white"
|
|
2108
2104
|
}, null, 8, ["label", "onClick"]), [
|
|
2109
2105
|
[_directive_close_popup]
|
|
@@ -2210,13 +2206,13 @@
|
|
|
2210
2206
|
vue.createVNode(_component_q_icon, {
|
|
2211
2207
|
name: _ctx.attachFileIcon20,
|
|
2212
2208
|
size: "20px",
|
|
2213
|
-
color: "
|
|
2209
|
+
color: "grey_70",
|
|
2214
2210
|
onClick: _cache[0] || (_cache[0] = vue.withModifiers(function () {}, ["stop"]))
|
|
2215
2211
|
}, null, 8, ["name"]),
|
|
2216
2212
|
(_ctx.displayPlaceholder)
|
|
2217
2213
|
? (vue.openBlock(), vue.createElementBlock("div", {
|
|
2218
2214
|
key: 0,
|
|
2219
|
-
class: "file-placeholder text-
|
|
2215
|
+
class: "file-placeholder text-grey_45",
|
|
2220
2216
|
onClick: _cache[1] || (_cache[1] = vue.withModifiers(function () {}, ["stop"]))
|
|
2221
2217
|
}, vue.toDisplayString(_ctx.placeholder), 1))
|
|
2222
2218
|
: vue.createCommentVNode("", true)
|
|
@@ -2359,7 +2355,7 @@
|
|
|
2359
2355
|
dense: "",
|
|
2360
2356
|
ripple: false,
|
|
2361
2357
|
icon: _ctx.closeIcon,
|
|
2362
|
-
color: "
|
|
2358
|
+
color: "grey_65",
|
|
2363
2359
|
onClick: _cache[0] || (_cache[0] = function ($event) { return (_ctx.helpPopup = false); }),
|
|
2364
2360
|
class: "close-btn q-pa-none",
|
|
2365
2361
|
size: "20px"
|
|
@@ -2495,7 +2491,7 @@
|
|
|
2495
2491
|
};
|
|
2496
2492
|
var _hoisted_2$f = {
|
|
2497
2493
|
key: 1,
|
|
2498
|
-
class: "input-addon bg-
|
|
2494
|
+
class: "input-addon bg-grey_10"
|
|
2499
2495
|
};
|
|
2500
2496
|
var _hoisted_3$9 = {
|
|
2501
2497
|
key: 0,
|
|
@@ -2671,7 +2667,7 @@
|
|
|
2671
2667
|
dense: "",
|
|
2672
2668
|
unelevated: "",
|
|
2673
2669
|
ripple: false,
|
|
2674
|
-
color: "
|
|
2670
|
+
color: "grey_20",
|
|
2675
2671
|
icon: _ctx.minusIcon,
|
|
2676
2672
|
onClick: _ctx.minusNumber
|
|
2677
2673
|
}, null, 8, ["icon", "onClick"]),
|
|
@@ -2680,7 +2676,7 @@
|
|
|
2680
2676
|
dense: "",
|
|
2681
2677
|
unelevated: "",
|
|
2682
2678
|
ripple: false,
|
|
2683
|
-
color: "
|
|
2679
|
+
color: "grey_20",
|
|
2684
2680
|
icon: _ctx.plusIcon,
|
|
2685
2681
|
onClick: _ctx.plusNumber
|
|
2686
2682
|
}, null, 8, ["icon", "onClick"])
|
|
@@ -2793,28 +2789,29 @@
|
|
|
2793
2789
|
script$r.render = render$r;
|
|
2794
2790
|
|
|
2795
2791
|
var script$q = vue.defineComponent({
|
|
2796
|
-
|
|
2797
|
-
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
props: {
|
|
2801
|
-
separator: {
|
|
2802
|
-
type: String,
|
|
2803
|
-
default: 'Horizontal',
|
|
2792
|
+
name: 'SMarkupTable',
|
|
2793
|
+
components: {
|
|
2794
|
+
QMarkupTable: quasar.QMarkupTable,
|
|
2795
|
+
QInnerLoading: quasar.QInnerLoading,
|
|
2804
2796
|
},
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
|
|
2797
|
+
props: {
|
|
2798
|
+
separator: {
|
|
2799
|
+
type: String,
|
|
2800
|
+
default: 'Horizontal',
|
|
2801
|
+
},
|
|
2802
|
+
header: {
|
|
2803
|
+
type: String,
|
|
2804
|
+
default: 'top',
|
|
2805
|
+
},
|
|
2806
|
+
noHover: {
|
|
2807
|
+
type: Boolean,
|
|
2808
|
+
default: false,
|
|
2809
|
+
},
|
|
2808
2810
|
},
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
default: false,
|
|
2811
|
+
setup: function setup() {
|
|
2812
|
+
return {};
|
|
2812
2813
|
},
|
|
2813
|
-
}
|
|
2814
|
-
setup: function setup() {
|
|
2815
|
-
return {};
|
|
2816
|
-
},
|
|
2817
|
-
});
|
|
2814
|
+
});
|
|
2818
2815
|
|
|
2819
2816
|
function render$q(_ctx, _cache, $props, $setup, $data, $options) {
|
|
2820
2817
|
var _component_q_inner_loading = vue.resolveComponent("q-inner-loading");
|
|
@@ -2844,11 +2841,11 @@
|
|
|
2844
2841
|
}, 8, ["separator", "class"]))
|
|
2845
2842
|
}
|
|
2846
2843
|
|
|
2847
|
-
var css_248z$q = ".s-markup-table[data-v-
|
|
2844
|
+
var css_248z$q = ".s-markup-table[data-v-d0e43bbc] {\n border-radius: 8px !important;\n border: 1px solid #e1e1e1;\n}\n.s-markup-table[data-v-d0e43bbc] > .q-table > thead {\n min-height: 0;\n}\n.s-markup-table[data-v-d0e43bbc] > .q-table > thead > tr {\n height: 40px;\n}\n.s-markup-table[data-v-d0e43bbc] > .q-table > thead > tr > th {\n padding: 0 16px;\n font-size: 12px;\n font-weight: 500;\n word-break: keep-all;\n white-space: nowrap;\n}\n.s-markup-table[data-v-d0e43bbc] > .q-table > tbody > tr {\n min-height: 0px;\n height: 40px;\n}\n.s-markup-table[data-v-d0e43bbc] > .q-table > tbody > tr > th {\n font-size: 12px;\n}\n.s-markup-table[data-v-d0e43bbc] > .q-table > tbody > tr > td {\n height: 40px;\n padding: 0 12px;\n font-size: 12px;\n}\n.s-markup-table[data-v-d0e43bbc] > .q-table > tbody > tr > td:before {\n background: none;\n}\n.s-markup-table[data-v-d0e43bbc] > .q-table > tbody > tr:hover {\n background-color: #f9f9f9;\n}\n.s-markup-table.header-top[data-v-d0e43bbc] > .q-table thead {\n background: #f5faff;\n}\n.s-markup-table.header-left[data-v-d0e43bbc] > .q-table > tbody > tr > th {\n background: #f5faff;\n font-weight: 700;\n border-bottom: 1px solid #e1e1e1;\n padding: 0 16px;\n}\n.s-markup-table.header-left[data-v-d0e43bbc] > .q-table > tbody > tr > th:not(:first-of-type) {\n border-left: 1px solid #e1e1e1;\n}\n.s-markup-table.header-left[data-v-d0e43bbc] > .q-table > tbody > tr > th:not(:first-of-type) {\n border-left: 1px solid #e1e1e1;\n}\n.s-markup-table.header-left[data-v-d0e43bbc] > .q-table > tbody > tr:last-of-type > th {\n border-bottom: none;\n}\n.s-markup-table.header-left[data-v-d0e43bbc] > .q-table > tbody > tr > td {\n padding: 0 12px;\n}\n.s-markup-table.tr-no-hover[data-v-d0e43bbc] > .q-table > tbody > tr:hover {\n background-color: transparent;\n}\n.s-markup-table.tr-no-hover[data-v-d0e43bbc] > .q-table > tbody > tr:hover > td:before {\n background-color: transparent;\n}";
|
|
2848
2845
|
styleInject(css_248z$q);
|
|
2849
2846
|
|
|
2850
2847
|
script$q.render = render$q;
|
|
2851
|
-
script$q.__scopeId = "data-v-
|
|
2848
|
+
script$q.__scopeId = "data-v-d0e43bbc";
|
|
2852
2849
|
|
|
2853
2850
|
var script$p = vue.defineComponent({
|
|
2854
2851
|
name: 'SPagination',
|
|
@@ -2994,7 +2991,7 @@
|
|
|
2994
2991
|
type: "button",
|
|
2995
2992
|
align: "center",
|
|
2996
2993
|
class: "bg-transparent first-btn",
|
|
2997
|
-
"text-color": "
|
|
2994
|
+
"text-color": "grey_80",
|
|
2998
2995
|
icon: _ctx.paginationFirstIcon,
|
|
2999
2996
|
onClick: _cache[0] || (_cache[0] = function ($event) { return (_ctx.updateModelValue('goFirst')); })
|
|
3000
2997
|
}, null, 8, ["icon"]),
|
|
@@ -3007,7 +3004,7 @@
|
|
|
3007
3004
|
type: "button",
|
|
3008
3005
|
align: "center",
|
|
3009
3006
|
class: "left-btn",
|
|
3010
|
-
"text-color": "
|
|
3007
|
+
"text-color": "grey_80",
|
|
3011
3008
|
icon: _ctx.paginationLeftIcon,
|
|
3012
3009
|
onClick: _cache[1] || (_cache[1] = function ($event) { return (_ctx.updateModelValue('goLeft')); })
|
|
3013
3010
|
}, null, 8, ["icon"])
|
|
@@ -3023,7 +3020,7 @@
|
|
|
3023
3020
|
unelevated: "",
|
|
3024
3021
|
ripple: false,
|
|
3025
3022
|
label: pageNumber,
|
|
3026
|
-
"text-color": "
|
|
3023
|
+
"text-color": "grey_80",
|
|
3027
3024
|
type: "button",
|
|
3028
3025
|
align: "center",
|
|
3029
3026
|
onClick: function ($event) { return (_ctx.perPage > 1 ? _ctx.updateModelValue(pageNumber) : null); },
|
|
@@ -3054,7 +3051,7 @@
|
|
|
3054
3051
|
type: "button",
|
|
3055
3052
|
align: "center",
|
|
3056
3053
|
class: "right-btn",
|
|
3057
|
-
"text-color": "
|
|
3054
|
+
"text-color": "grey_80",
|
|
3058
3055
|
icon: _ctx.paginationRightIcon,
|
|
3059
3056
|
onClick: _cache[2] || (_cache[2] = function ($event) { return (_ctx.updateModelValue('goRight')); })
|
|
3060
3057
|
}, null, 8, ["icon"]),
|
|
@@ -3067,7 +3064,7 @@
|
|
|
3067
3064
|
type: "button",
|
|
3068
3065
|
align: "center",
|
|
3069
3066
|
class: "last-btn",
|
|
3070
|
-
"text-color": "
|
|
3067
|
+
"text-color": "grey_80",
|
|
3071
3068
|
icon: _ctx.paginationLastIcon,
|
|
3072
3069
|
onClick: _cache[3] || (_cache[3] = function ($event) { return (_ctx.updateModelValue('goLast')); })
|
|
3073
3070
|
}, null, 8, ["icon"])
|
|
@@ -3081,14 +3078,14 @@
|
|
|
3081
3078
|
script$p.render = render$p;
|
|
3082
3079
|
|
|
3083
3080
|
var script$o = vue.defineComponent({
|
|
3084
|
-
|
|
3085
|
-
|
|
3086
|
-
|
|
3087
|
-
|
|
3088
|
-
|
|
3089
|
-
|
|
3090
|
-
|
|
3091
|
-
|
|
3081
|
+
name: 'SRadio',
|
|
3082
|
+
components: {
|
|
3083
|
+
QRadio: quasar.QRadio,
|
|
3084
|
+
},
|
|
3085
|
+
props: {
|
|
3086
|
+
length: Number,
|
|
3087
|
+
},
|
|
3088
|
+
});
|
|
3092
3089
|
|
|
3093
3090
|
function render$o(_ctx, _cache, $props, $setup, $data, $options) {
|
|
3094
3091
|
var _component_q_radio = vue.resolveComponent("q-radio");
|
|
@@ -3612,7 +3609,7 @@
|
|
|
3612
3609
|
(opt[_ctx.optionGroup])
|
|
3613
3610
|
? (vue.openBlock(), vue.createBlock(_component_q_item_section, {
|
|
3614
3611
|
key: 1,
|
|
3615
|
-
class: "text-
|
|
3612
|
+
class: "text-grey_90 group-title"
|
|
3616
3613
|
}, {
|
|
3617
3614
|
default: vue.withCtx(function () { return [
|
|
3618
3615
|
vue.createTextVNode(vue.toDisplayString(opt[_ctx.optionGroup]), 1)
|
|
@@ -3726,7 +3723,7 @@
|
|
|
3726
3723
|
name: vue.unref(closeIcon12),
|
|
3727
3724
|
size: "12px",
|
|
3728
3725
|
class: "q-pa-sm cursor-pointer",
|
|
3729
|
-
color: "
|
|
3726
|
+
color: "grey_65",
|
|
3730
3727
|
onClick: _cache[1] || (_cache[1] = function ($event) { return (_ctx.$emit('onDelete')); })
|
|
3731
3728
|
}, null, 8, ["name"]))
|
|
3732
3729
|
: vue.createCommentVNode("", true)
|
|
@@ -3736,10 +3733,10 @@
|
|
|
3736
3733
|
|
|
3737
3734
|
};
|
|
3738
3735
|
|
|
3739
|
-
var css_248z$k = ".search-input-form[data-v-
|
|
3736
|
+
var css_248z$k = ".search-input-form[data-v-38fcd424] {\n height: 28px;\n display: flex;\n align-items: center;\n padding-left: 8px;\n position: relative;\n border-radius: 2px;\n border: 1px solid #aaaaaa;\n background-color: white;\n position: sticky;\n top: 0;\n z-index: 1;\n margin: 4px;\n}\n.search-input-form[data-v-38fcd424]::after {\n content: \"\";\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n pointer-events: none;\n border: 1px solid transparent;\n border-radius: inherit;\n}\n.search-input-form[data-v-38fcd424]:hover::after, .search-input-form[data-v-38fcd424]:focus-within::after {\n border-color: #0075ff;\n box-shadow: 0 0 4px #0075ff;\n transition: border-color 0.36s cubic-bezier(0.4, 0, 0.2, 1);\n}\n.search-input-form .search-input[data-v-38fcd424] {\n font-size: 12px;\n margin-left: 8px;\n flex-grow: 1;\n border: none;\n outline: none;\n}";
|
|
3740
3737
|
styleInject(css_248z$k);
|
|
3741
3738
|
|
|
3742
|
-
script$k.__scopeId = "data-v-
|
|
3739
|
+
script$k.__scopeId = "data-v-38fcd424";
|
|
3743
3740
|
|
|
3744
3741
|
var script$j = vue.defineComponent({
|
|
3745
3742
|
name: 'SSelectSearch',
|
|
@@ -4269,7 +4266,7 @@
|
|
|
4269
4266
|
(opt[_ctx.optionGroup])
|
|
4270
4267
|
? (vue.openBlock(), vue.createBlock(_component_q_item_section, {
|
|
4271
4268
|
key: 1,
|
|
4272
|
-
class: "text-
|
|
4269
|
+
class: "text-grey_90"
|
|
4273
4270
|
}, {
|
|
4274
4271
|
default: vue.withCtx(function () { return [
|
|
4275
4272
|
vue.createTextVNode(vue.toDisplayString(opt[_ctx.optionGroup]), 1)
|
|
@@ -4284,7 +4281,7 @@
|
|
|
4284
4281
|
}, {
|
|
4285
4282
|
default: vue.withCtx(function () { return [
|
|
4286
4283
|
vue.createVNode(_component_q_img, {
|
|
4287
|
-
class: "q-pa-none bg-
|
|
4284
|
+
class: "q-pa-none bg-grey_10",
|
|
4288
4285
|
src: opt.logo,
|
|
4289
4286
|
width: "60px",
|
|
4290
4287
|
height: "22px"
|
|
@@ -4638,7 +4635,7 @@
|
|
|
4638
4635
|
}, {
|
|
4639
4636
|
default: vue.withCtx(function () { return [
|
|
4640
4637
|
vue.createVNode(_component_q_item_section, {
|
|
4641
|
-
class: "s-px-sm s-py-xxs flex row s-gap-10 justify-start text-
|
|
4638
|
+
class: "s-px-sm s-py-xxs flex row s-gap-10 justify-start text-grey_90 cursor-pointer",
|
|
4642
4639
|
onClick: _cache[2] || (_cache[2] = function ($event) { return (_ctx.toggleTotalOption(!_ctx.isAllChecked)); })
|
|
4643
4640
|
}, {
|
|
4644
4641
|
default: vue.withCtx(function () { return [
|
|
@@ -4665,7 +4662,7 @@
|
|
|
4665
4662
|
}, {
|
|
4666
4663
|
default: vue.withCtx(function () { return [
|
|
4667
4664
|
vue.createVNode(_component_q_item_section, {
|
|
4668
|
-
class: vue.normalizeClass(["s-px-sm s-py-xxs flex row justify-start text-
|
|
4665
|
+
class: vue.normalizeClass(["s-px-sm s-py-xxs flex row justify-start text-grey_90 cursor-pointer", opt[_ctx.optionGroup] ? 'group-title' : 'group-content']),
|
|
4669
4666
|
onClick: function ($event) { return (_ctx.toggleItem(opt)); }
|
|
4670
4667
|
}, {
|
|
4671
4668
|
default: vue.withCtx(function () { return [
|
|
@@ -5110,36 +5107,36 @@
|
|
|
5110
5107
|
|
|
5111
5108
|
var colorStatusList = {
|
|
5112
5109
|
Grey: {
|
|
5113
|
-
color: '
|
|
5114
|
-
textColor: '
|
|
5110
|
+
color: 'grey_20',
|
|
5111
|
+
textColor: 'grey_70',
|
|
5115
5112
|
},
|
|
5116
5113
|
Red: {
|
|
5117
|
-
color: '
|
|
5118
|
-
textColor: '
|
|
5114
|
+
color: 'red_15',
|
|
5115
|
+
textColor: 'red_70',
|
|
5119
5116
|
},
|
|
5120
5117
|
Orange: {
|
|
5121
|
-
color: '
|
|
5122
|
-
textColor: '
|
|
5118
|
+
color: 'orange_10',
|
|
5119
|
+
textColor: 'orange_65',
|
|
5123
5120
|
},
|
|
5124
5121
|
Yellow: {
|
|
5125
|
-
color: '
|
|
5126
|
-
textColor: '
|
|
5122
|
+
color: 'yellow_10',
|
|
5123
|
+
textColor: 'yellow_60',
|
|
5127
5124
|
},
|
|
5128
5125
|
Green: {
|
|
5129
|
-
color: '
|
|
5130
|
-
textColor: '
|
|
5126
|
+
color: 'green_15',
|
|
5127
|
+
textColor: 'green_70',
|
|
5131
5128
|
},
|
|
5132
5129
|
Blue: {
|
|
5133
|
-
color: '
|
|
5134
|
-
textColor: '
|
|
5130
|
+
color: 'brilliantblue_20',
|
|
5131
|
+
textColor: 'brilliantblue_75',
|
|
5135
5132
|
},
|
|
5136
5133
|
Darkblue: {
|
|
5137
|
-
color: '
|
|
5138
|
-
textColor: '
|
|
5134
|
+
color: 'oceanblue_15',
|
|
5135
|
+
textColor: 'oceanblue_70',
|
|
5139
5136
|
},
|
|
5140
5137
|
Indigo: {
|
|
5141
|
-
color: '
|
|
5142
|
-
textColor: '
|
|
5138
|
+
color: 'brilliantblue_10',
|
|
5139
|
+
textColor: 'brilliantblue_85',
|
|
5143
5140
|
},
|
|
5144
5141
|
};
|
|
5145
5142
|
|
|
@@ -5157,7 +5154,7 @@
|
|
|
5157
5154
|
},
|
|
5158
5155
|
color: {
|
|
5159
5156
|
type: String,
|
|
5160
|
-
default: '
|
|
5157
|
+
default: 'brilliantblue_20',
|
|
5161
5158
|
},
|
|
5162
5159
|
textColor: {
|
|
5163
5160
|
type: String,
|
|
@@ -5229,11 +5226,11 @@
|
|
|
5229
5226
|
}, 8, ["class", "color", "text-color"]))
|
|
5230
5227
|
}
|
|
5231
5228
|
|
|
5232
|
-
var css_248z$e = ".s-tag[data-v-
|
|
5229
|
+
var css_248z$e = ".s-tag[data-v-4dca9e42] {\n border-radius: 4px;\n box-sizing: border-box;\n}\n.s-tag__sm[data-v-4dca9e42] {\n padding: 1px 6px;\n height: 20px;\n}\n.s-tag__sm > span[data-v-4dca9e42] {\n line-height: 18px;\n font-size: 11px;\n}\n.s-tag__md[data-v-4dca9e42] {\n padding: 2px 8px;\n height: 24px;\n}\n.s-tag__md > span[data-v-4dca9e42] {\n line-height: 20px;\n font-size: 12px;\n font-weight: 700;\n}\n.s-tag__lg[data-v-4dca9e42] {\n padding: 4px 16px;\n height: 48px;\n}\n.s-tag__lg > span[data-v-4dca9e42] {\n line-height: 40px;\n font-size: 24px;\n font-weight: 700;\n}\n.s-tag__rounded[data-v-4dca9e42] {\n border-radius: 20px;\n}";
|
|
5233
5230
|
styleInject(css_248z$e);
|
|
5234
5231
|
|
|
5235
5232
|
script$e.render = render$f;
|
|
5236
|
-
script$e.__scopeId = "data-v-
|
|
5233
|
+
script$e.__scopeId = "data-v-4dca9e42";
|
|
5237
5234
|
|
|
5238
5235
|
var script$d = vue.defineComponent({
|
|
5239
5236
|
name: 'STab',
|
|
@@ -5357,7 +5354,12 @@
|
|
|
5357
5354
|
var calcWidth = isStickyLeft ? curColWidth + diffX : curColWidth - diffX;
|
|
5358
5355
|
|
|
5359
5356
|
var computedStyles = window.getComputedStyle(curCol);
|
|
5360
|
-
var min = parseInt(
|
|
5357
|
+
var min = parseInt(
|
|
5358
|
+
computedStyles.minWidth === '0px'
|
|
5359
|
+
? MIN_COL_WIDTH
|
|
5360
|
+
: computedStyles.minWidth || MIN_COL_WIDTH,
|
|
5361
|
+
10
|
|
5362
|
+
);
|
|
5361
5363
|
var max = parseInt(
|
|
5362
5364
|
computedStyles.maxWidth === 'none' ? '9999' : computedStyles.maxWidth || '9999',
|
|
5363
5365
|
10
|
|
@@ -5441,11 +5443,16 @@
|
|
|
5441
5443
|
if (isLeftSticky || isRightSticky) { return; }
|
|
5442
5444
|
|
|
5443
5445
|
var shouldAddResizable = (function () {
|
|
5444
|
-
if (isSelectTable) {
|
|
5445
|
-
|
|
5446
|
+
if (!useLastCellResizable && !isSelectTable) {
|
|
5447
|
+
return !isLastCol;
|
|
5448
|
+
}
|
|
5449
|
+
if (!useLastCellResizable && isSelectTable) {
|
|
5446
5450
|
return !isFirstCol && !isLastCol;
|
|
5447
5451
|
}
|
|
5448
|
-
|
|
5452
|
+
if (useLastCellResizable && isSelectTable) {
|
|
5453
|
+
return !isFirstCol;
|
|
5454
|
+
}
|
|
5455
|
+
return true;
|
|
5449
5456
|
})();
|
|
5450
5457
|
|
|
5451
5458
|
if (shouldAddResizable) {
|
|
@@ -5924,7 +5931,7 @@
|
|
|
5924
5931
|
key: 0,
|
|
5925
5932
|
size: "16px",
|
|
5926
5933
|
name: _ctx.editIcon,
|
|
5927
|
-
color: "
|
|
5934
|
+
color: "oceanblue_70",
|
|
5928
5935
|
class: "q-ml-xs"
|
|
5929
5936
|
}, null, 8, ["name"]))
|
|
5930
5937
|
: vue.createCommentVNode("", true)
|
|
@@ -5968,7 +5975,7 @@
|
|
|
5968
5975
|
_ctx.updatePagination
|
|
5969
5976
|
],
|
|
5970
5977
|
lastPage: _ctx.pagesNumber,
|
|
5971
|
-
class: "bg-
|
|
5978
|
+
class: "bg-grey_05 s-border-radius-sm s-border-top-none s-border-grey_30"
|
|
5972
5979
|
}, null, 8, ["modelValue", "lastPage", "onUpdate:modelValue"]))
|
|
5973
5980
|
: vue.createCommentVNode("", true)
|
|
5974
5981
|
], 64))
|
|
@@ -6249,13 +6256,13 @@
|
|
|
6249
6256
|
vue.createVNode(_component_s_button, {
|
|
6250
6257
|
label: $props.locale[$props.lang].am,
|
|
6251
6258
|
outline: !$setup.isAm,
|
|
6252
|
-
color: $setup.isAm ? 'positive' : '
|
|
6259
|
+
color: $setup.isAm ? 'positive' : 'grey_65',
|
|
6253
6260
|
onClick: _cache[0] || (_cache[0] = function ($event) { return ($setup.onClickAmPm($props.locale[$props.lang].am)); })
|
|
6254
6261
|
}, null, 8, ["label", "outline", "color"]),
|
|
6255
6262
|
vue.createVNode(_component_s_button, {
|
|
6256
6263
|
label: $props.locale[$props.lang].pm,
|
|
6257
6264
|
outline: $setup.isAm,
|
|
6258
|
-
color: !$setup.isAm ? 'positive' : '
|
|
6265
|
+
color: !$setup.isAm ? 'positive' : 'grey_65',
|
|
6259
6266
|
class: "q-mt-sm",
|
|
6260
6267
|
onClick: _cache[1] || (_cache[1] = function ($event) { return ($setup.onClickAmPm($props.locale[$props.lang].pm)); })
|
|
6261
6268
|
}, null, 8, ["label", "outline", "color"])
|
|
@@ -6264,7 +6271,7 @@
|
|
|
6264
6271
|
}),
|
|
6265
6272
|
vue.createVNode(_component_q_separator, {
|
|
6266
6273
|
vertical: "",
|
|
6267
|
-
color: "
|
|
6274
|
+
color: "grey_20"
|
|
6268
6275
|
})
|
|
6269
6276
|
], 64))
|
|
6270
6277
|
: vue.createCommentVNode("", true),
|
|
@@ -6274,7 +6281,7 @@
|
|
|
6274
6281
|
vue.createVNode(_component_s_button, {
|
|
6275
6282
|
flat: "",
|
|
6276
6283
|
icon: $setup.arrowUpIcon,
|
|
6277
|
-
color: "
|
|
6284
|
+
color: "grey_45",
|
|
6278
6285
|
class: "no-hover",
|
|
6279
6286
|
onClick: _cache[2] || (_cache[2] = function ($event) { return ($setup.onClickUp('hh')); })
|
|
6280
6287
|
}, null, 8, ["icon"]),
|
|
@@ -6303,7 +6310,7 @@
|
|
|
6303
6310
|
vue.createVNode(_component_s_button, {
|
|
6304
6311
|
flat: "",
|
|
6305
6312
|
icon: $setup.arrowDownIcon,
|
|
6306
|
-
color: "
|
|
6313
|
+
color: "grey_45",
|
|
6307
6314
|
class: "no-hover",
|
|
6308
6315
|
onClick: _cache[8] || (_cache[8] = function ($event) { return ($setup.onClickDown('hh')); })
|
|
6309
6316
|
}, null, 8, ["icon"])
|
|
@@ -6313,7 +6320,7 @@
|
|
|
6313
6320
|
vue.createVNode(_component_s_button, {
|
|
6314
6321
|
flat: "",
|
|
6315
6322
|
icon: $setup.arrowUpIcon,
|
|
6316
|
-
color: "
|
|
6323
|
+
color: "grey_45",
|
|
6317
6324
|
class: "no-hover",
|
|
6318
6325
|
onClick: _cache[9] || (_cache[9] = function ($event) { return ($setup.onClickUp('mm')); })
|
|
6319
6326
|
}, null, 8, ["icon"]),
|
|
@@ -6342,7 +6349,7 @@
|
|
|
6342
6349
|
vue.createVNode(_component_s_button, {
|
|
6343
6350
|
flat: "",
|
|
6344
6351
|
icon: $setup.arrowDownIcon,
|
|
6345
|
-
color: "
|
|
6352
|
+
color: "grey_45",
|
|
6346
6353
|
class: "no-hover",
|
|
6347
6354
|
onClick: _cache[15] || (_cache[15] = function ($event) { return ($setup.onClickDown('mm')); })
|
|
6348
6355
|
}, null, 8, ["icon"])
|
|
@@ -6354,7 +6361,7 @@
|
|
|
6354
6361
|
vue.createVNode(_component_s_button, {
|
|
6355
6362
|
flat: "",
|
|
6356
6363
|
icon: $setup.arrowUpIcon,
|
|
6357
|
-
color: "
|
|
6364
|
+
color: "grey_45",
|
|
6358
6365
|
class: "no-hover",
|
|
6359
6366
|
onClick: _cache[16] || (_cache[16] = function ($event) { return ($setup.onClickUp('ss')); })
|
|
6360
6367
|
}, null, 8, ["icon"]),
|
|
@@ -6383,7 +6390,7 @@
|
|
|
6383
6390
|
vue.createVNode(_component_s_button, {
|
|
6384
6391
|
flat: "",
|
|
6385
6392
|
icon: $setup.arrowDownIcon,
|
|
6386
|
-
color: "
|
|
6393
|
+
color: "grey_45",
|
|
6387
6394
|
class: "no-hover",
|
|
6388
6395
|
onClick: _cache[22] || (_cache[22] = function ($event) { return ($setup.onClickDown('ss')); })
|
|
6389
6396
|
}, null, 8, ["icon"])
|
|
@@ -6492,7 +6499,7 @@
|
|
|
6492
6499
|
|
|
6493
6500
|
var _hoisted_1$8 = {
|
|
6494
6501
|
key: 0,
|
|
6495
|
-
class: "inside-label bg-
|
|
6502
|
+
class: "inside-label bg-grey_10 full-height flex flex-center"
|
|
6496
6503
|
};
|
|
6497
6504
|
var _hoisted_2$6 = {
|
|
6498
6505
|
key: 0,
|
|
@@ -6518,13 +6525,13 @@
|
|
|
6518
6525
|
? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$8, vue.toDisplayString(_ctx.insideLabel), 1))
|
|
6519
6526
|
: vue.createCommentVNode("", true),
|
|
6520
6527
|
vue.createElementVNode("div", {
|
|
6521
|
-
class: "time-picker full-width flex no-wrap items-center text-
|
|
6528
|
+
class: "time-picker full-width flex no-wrap items-center text-grey_90 q-pr-md",
|
|
6522
6529
|
style: vue.normalizeStyle(_ctx.range ? 'min-width: 170px' : 'min-width: 121px;')
|
|
6523
6530
|
}, [
|
|
6524
6531
|
vue.createVNode(_component_q_icon, {
|
|
6525
6532
|
name: _ctx.clockIcon,
|
|
6526
6533
|
size: "20px",
|
|
6527
|
-
color: "
|
|
6534
|
+
color: "grey_70",
|
|
6528
6535
|
class: "q-mx-sm"
|
|
6529
6536
|
}, null, 8, ["name"]),
|
|
6530
6537
|
(_ctx.range)
|
|
@@ -6616,11 +6623,11 @@
|
|
|
6616
6623
|
script$9.render = render$a;
|
|
6617
6624
|
|
|
6618
6625
|
var script$8 = vue.defineComponent({
|
|
6619
|
-
|
|
6620
|
-
|
|
6621
|
-
|
|
6622
|
-
|
|
6623
|
-
|
|
6626
|
+
name: 'SToggle',
|
|
6627
|
+
components: {
|
|
6628
|
+
QToggle: quasar.QToggle,
|
|
6629
|
+
},
|
|
6630
|
+
});
|
|
6624
6631
|
|
|
6625
6632
|
function render$9(_ctx, _cache, $props, $setup, $data, $options) {
|
|
6626
6633
|
var _component_q_toggle = vue.resolveComponent("q-toggle");
|
|
@@ -6638,80 +6645,83 @@
|
|
|
6638
6645
|
script$8.render = render$9;
|
|
6639
6646
|
|
|
6640
6647
|
var script$7 = vue.defineComponent({
|
|
6641
|
-
|
|
6642
|
-
|
|
6643
|
-
|
|
6644
|
-
|
|
6645
|
-
|
|
6646
|
-
|
|
6647
|
-
},
|
|
6648
|
-
props: {
|
|
6649
|
-
modelValue: Boolean,
|
|
6650
|
-
textColor: {
|
|
6651
|
-
type: String,
|
|
6652
|
-
default: '',
|
|
6653
|
-
},
|
|
6654
|
-
toggleColor: {
|
|
6655
|
-
type: String,
|
|
6656
|
-
default: '',
|
|
6657
|
-
},
|
|
6658
|
-
needToggle: {
|
|
6659
|
-
type: Boolean,
|
|
6660
|
-
default: false,
|
|
6661
|
-
},
|
|
6662
|
-
toggle: {
|
|
6663
|
-
type: Boolean,
|
|
6664
|
-
default: false,
|
|
6665
|
-
},
|
|
6666
|
-
noHover: {
|
|
6667
|
-
type: Boolean,
|
|
6668
|
-
default: false,
|
|
6669
|
-
},
|
|
6670
|
-
boxAnchor: {
|
|
6671
|
-
type: String,
|
|
6672
|
-
required: true,
|
|
6673
|
-
},
|
|
6674
|
-
boxSelf: {
|
|
6675
|
-
type: String,
|
|
6676
|
-
required: true,
|
|
6677
|
-
},
|
|
6678
|
-
boxOffset: {
|
|
6679
|
-
type: Array,
|
|
6680
|
-
required: true,
|
|
6681
|
-
},
|
|
6682
|
-
arrowAnchor: {
|
|
6683
|
-
type: String,
|
|
6684
|
-
required: true,
|
|
6685
|
-
},
|
|
6686
|
-
arrowSelf: {
|
|
6687
|
-
type: String,
|
|
6688
|
-
required: true,
|
|
6689
|
-
},
|
|
6690
|
-
arrowOffset: {
|
|
6691
|
-
type: Array,
|
|
6692
|
-
required: true,
|
|
6693
|
-
},
|
|
6694
|
-
arrowStyle: {
|
|
6695
|
-
type: String,
|
|
6696
|
-
required: true,
|
|
6648
|
+
name: 'STooltip',
|
|
6649
|
+
components: {
|
|
6650
|
+
QTooltip: quasar.QTooltip,
|
|
6651
|
+
QBtn: quasar.QBtn,
|
|
6652
|
+
QMenu: quasar.QMenu,
|
|
6653
|
+
QIcon: quasar.QIcon,
|
|
6697
6654
|
},
|
|
6698
|
-
|
|
6699
|
-
|
|
6700
|
-
|
|
6655
|
+
props: {
|
|
6656
|
+
modelValue: Boolean,
|
|
6657
|
+
textColor: {
|
|
6658
|
+
type: String,
|
|
6659
|
+
default: '',
|
|
6660
|
+
},
|
|
6661
|
+
toggleColor: {
|
|
6662
|
+
type: String,
|
|
6663
|
+
default: '',
|
|
6664
|
+
},
|
|
6665
|
+
needToggle: {
|
|
6666
|
+
type: Boolean,
|
|
6667
|
+
default: false,
|
|
6668
|
+
},
|
|
6669
|
+
toggle: {
|
|
6670
|
+
type: Boolean,
|
|
6671
|
+
default: false,
|
|
6672
|
+
},
|
|
6673
|
+
noHover: {
|
|
6674
|
+
type: Boolean,
|
|
6675
|
+
default: false,
|
|
6676
|
+
},
|
|
6677
|
+
boxAnchor: {
|
|
6678
|
+
type: String,
|
|
6679
|
+
required: true,
|
|
6680
|
+
},
|
|
6681
|
+
boxSelf: {
|
|
6682
|
+
type: String,
|
|
6683
|
+
required: true,
|
|
6684
|
+
},
|
|
6685
|
+
boxOffset: {
|
|
6686
|
+
type: Array,
|
|
6687
|
+
required: true,
|
|
6688
|
+
},
|
|
6689
|
+
arrowAnchor: {
|
|
6690
|
+
type: String,
|
|
6691
|
+
required: true,
|
|
6692
|
+
},
|
|
6693
|
+
arrowSelf: {
|
|
6694
|
+
type: String,
|
|
6695
|
+
required: true,
|
|
6696
|
+
},
|
|
6697
|
+
arrowOffset: {
|
|
6698
|
+
type: Array,
|
|
6699
|
+
required: true,
|
|
6700
|
+
},
|
|
6701
|
+
arrowStyle: {
|
|
6702
|
+
type: String,
|
|
6703
|
+
required: true,
|
|
6704
|
+
},
|
|
6705
|
+
menuClass: {
|
|
6706
|
+
type: String,
|
|
6707
|
+
default: '',
|
|
6708
|
+
},
|
|
6701
6709
|
},
|
|
6702
|
-
|
|
6703
|
-
|
|
6704
|
-
var isToggled = vue.ref(props.toggle);
|
|
6710
|
+
setup: function setup(props) {
|
|
6711
|
+
var isToggled = vue.ref(props.toggle);
|
|
6705
6712
|
|
|
6706
|
-
|
|
6707
|
-
|
|
6708
|
-
|
|
6709
|
-
|
|
6710
|
-
|
|
6711
|
-
|
|
6712
|
-
|
|
6713
|
-
|
|
6714
|
-
|
|
6713
|
+
vue.watch(
|
|
6714
|
+
function () { return props.toggle; },
|
|
6715
|
+
function (val) {
|
|
6716
|
+
isToggled.value = val;
|
|
6717
|
+
}
|
|
6718
|
+
);
|
|
6719
|
+
return {
|
|
6720
|
+
isToggled: isToggled,
|
|
6721
|
+
closeIcon: closeIcon,
|
|
6722
|
+
};
|
|
6723
|
+
},
|
|
6724
|
+
});
|
|
6715
6725
|
|
|
6716
6726
|
var _hoisted_1$7 = { class: "tooltip-close-icon cursor-pointer" };
|
|
6717
6727
|
var _hoisted_2$5 = { class: "q-py-sm q-px-md" };
|
|
@@ -6729,8 +6739,8 @@
|
|
|
6729
6739
|
unelevated: "",
|
|
6730
6740
|
ripple: false,
|
|
6731
6741
|
class: vue.normalizeClass(["s-tooltip-btn q-pa-none", { 'no-hover': _ctx.noHover }]),
|
|
6732
|
-
onMouseenter: _cache[4] || (_cache[4] = function () { return _ctx.isToggled = true; }),
|
|
6733
|
-
onClick: _cache[5] || (_cache[5] = function () { return _ctx.isToggled = false; }),
|
|
6742
|
+
onMouseenter: _cache[4] || (_cache[4] = function () { return (_ctx.isToggled = true); }),
|
|
6743
|
+
onClick: _cache[5] || (_cache[5] = function () { return (_ctx.isToggled = false); }),
|
|
6734
6744
|
"text-color": _ctx.needToggle && _ctx.isToggled && _ctx.toggleColor ? _ctx.toggleColor : _ctx.textColor
|
|
6735
6745
|
}, {
|
|
6736
6746
|
default: vue.withCtx(function () { return [
|
|
@@ -6743,14 +6753,14 @@
|
|
|
6743
6753
|
modelValue: _ctx.isToggled,
|
|
6744
6754
|
"no-parent-event": "",
|
|
6745
6755
|
persistent: "",
|
|
6746
|
-
class: vue.normalizeClass([_ctx.menuClass, "bg-
|
|
6756
|
+
class: vue.normalizeClass([_ctx.menuClass, "bg-oceanblue_85 text-white s-tooltip"])
|
|
6747
6757
|
}, {
|
|
6748
6758
|
default: vue.withCtx(function () { return [
|
|
6749
6759
|
vue.createElementVNode("div", _hoisted_1$7, [
|
|
6750
6760
|
vue.createVNode(_component_q_icon, {
|
|
6751
6761
|
name: _ctx.closeIcon,
|
|
6752
6762
|
size: "16px",
|
|
6753
|
-
onClick: _cache[0] || (_cache[0] = function () { return _ctx.isToggled = false; })
|
|
6763
|
+
onClick: _cache[0] || (_cache[0] = function () { return (_ctx.isToggled = false); })
|
|
6754
6764
|
}, null, 8, ["name"])
|
|
6755
6765
|
]),
|
|
6756
6766
|
vue.createElementVNode("div", _hoisted_2$5, [
|
|
@@ -6765,10 +6775,12 @@
|
|
|
6765
6775
|
offset: _ctx.$props.arrowOffset,
|
|
6766
6776
|
class: vue.normalizeClass([_ctx.$props.arrowStyle, "tooltip-triangle"]),
|
|
6767
6777
|
"model-value": _ctx.isToggled,
|
|
6768
|
-
"onUpdate:modelValue": _cache[1] || (_cache[1] =
|
|
6769
|
-
|
|
6770
|
-
|
|
6771
|
-
|
|
6778
|
+
"onUpdate:modelValue": _cache[1] || (_cache[1] =
|
|
6779
|
+
function (val) {
|
|
6780
|
+
_ctx.isToggled = val;
|
|
6781
|
+
_ctx.$emit('update:modelValue', val);
|
|
6782
|
+
}
|
|
6783
|
+
),
|
|
6772
6784
|
"no-parent-event": "",
|
|
6773
6785
|
persistent: ""
|
|
6774
6786
|
}, null, 8, ["anchor", "self", "offset", "class", "model-value"])
|
|
@@ -6778,7 +6790,7 @@
|
|
|
6778
6790
|
anchor: _ctx.$props.boxAnchor,
|
|
6779
6791
|
self: _ctx.$props.boxSelf,
|
|
6780
6792
|
offset: _ctx.$props.boxOffset,
|
|
6781
|
-
class: "bg-
|
|
6793
|
+
class: "bg-oceanblue_85 text-white s-tooltip",
|
|
6782
6794
|
modelValue: _ctx.modelValue,
|
|
6783
6795
|
onHide: _cache[2] || (_cache[2] = function ($event) { return (_ctx.$emit('update:modelValue', false)); }),
|
|
6784
6796
|
onShow: _cache[3] || (_cache[3] = function ($event) { return (_ctx.$emit('update:modelValue', true)); })
|
|
@@ -6835,8 +6847,7 @@
|
|
|
6835
6847
|
locale: {
|
|
6836
6848
|
type: Object,
|
|
6837
6849
|
default: initLocaleObj,
|
|
6838
|
-
}
|
|
6839
|
-
|
|
6850
|
+
},
|
|
6840
6851
|
},
|
|
6841
6852
|
setup: function setup(props, ref$1) {
|
|
6842
6853
|
var emit = ref$1.emit;
|
|
@@ -6860,11 +6871,11 @@
|
|
|
6860
6871
|
|
|
6861
6872
|
var matchedInput = val.match(/\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}/);
|
|
6862
6873
|
|
|
6863
|
-
if (!matchedInput) {
|
|
6874
|
+
if (!matchedInput) {
|
|
6875
|
+
return;
|
|
6876
|
+
}
|
|
6864
6877
|
var validInput = matchedInput[0];
|
|
6865
|
-
if (
|
|
6866
|
-
Number.isNaN(+new Date(validInput.match(/\d{4}-\d{2}-\d{2}/)[0]))
|
|
6867
|
-
) {
|
|
6878
|
+
if (Number.isNaN(+new Date(validInput.match(/\d{4}-\d{2}-\d{2}/)[0]))) {
|
|
6868
6879
|
dateValue.value = quasar.date.formatDate(new Date(), 'YYYY-MM-DD');
|
|
6869
6880
|
inputValue.value = (dateValue.value) + " " + (timeValue.value);
|
|
6870
6881
|
} else {
|
|
@@ -6926,7 +6937,7 @@
|
|
|
6926
6937
|
dense: "",
|
|
6927
6938
|
outlined: "",
|
|
6928
6939
|
class: vue.normalizeClass([{
|
|
6929
|
-
'text-
|
|
6940
|
+
'text-grey_65 bg-grey_10': $props.isDisable,
|
|
6930
6941
|
}, "q-pa-none s-date-time-picker"]),
|
|
6931
6942
|
placeholder: $props.modelValue,
|
|
6932
6943
|
modelValue: $setup.inputValue,
|
|
@@ -6971,7 +6982,7 @@
|
|
|
6971
6982
|
options: $setup.optionsFn,
|
|
6972
6983
|
noUnset: ""
|
|
6973
6984
|
}, null, 8, ["modelValue", "locale", "options"]),
|
|
6974
|
-
vue.createVNode(_component_q_separator, { color: "
|
|
6985
|
+
vue.createVNode(_component_q_separator, { color: "grey_20" }),
|
|
6975
6986
|
vue.createVNode(_component_time_picker_card, {
|
|
6976
6987
|
modelValue: $setup.timeValue,
|
|
6977
6988
|
"onUpdate:modelValue": _cache[2] || (_cache[2] = function ($event) { return (($setup.timeValue) = $event); }),
|
|
@@ -7029,10 +7040,10 @@
|
|
|
7029
7040
|
type: Object,
|
|
7030
7041
|
default: function () { return ({ from: '', to: '' }); },
|
|
7031
7042
|
},
|
|
7032
|
-
locale
|
|
7043
|
+
locale: {
|
|
7033
7044
|
type: Object,
|
|
7034
|
-
default: initLocaleObj
|
|
7035
|
-
}
|
|
7045
|
+
default: initLocaleObj,
|
|
7046
|
+
},
|
|
7036
7047
|
},
|
|
7037
7048
|
|
|
7038
7049
|
setup: function setup(props, ref$1) {
|
|
@@ -7159,7 +7170,7 @@
|
|
|
7159
7170
|
vue.createVNode(_component_q_icon, {
|
|
7160
7171
|
name: $setup.dateRangeIcon,
|
|
7161
7172
|
size: "20px",
|
|
7162
|
-
color: "
|
|
7173
|
+
color: "grey_70",
|
|
7163
7174
|
class: "cursor-pointer"
|
|
7164
7175
|
}, null, 8, ["name"])
|
|
7165
7176
|
]; }),
|
|
@@ -7176,7 +7187,7 @@
|
|
|
7176
7187
|
class: "reset-btn no-hover",
|
|
7177
7188
|
flat: "",
|
|
7178
7189
|
label: $props.locale[$props.lang].today,
|
|
7179
|
-
"text-color": "
|
|
7190
|
+
"text-color": "grey_90",
|
|
7180
7191
|
ripple: false,
|
|
7181
7192
|
onClick: _cache[0] || (_cache[0] = function ($event) { return ($setup.resetDate('from')); })
|
|
7182
7193
|
}, null, 8, ["label"])
|
|
@@ -7218,7 +7229,7 @@
|
|
|
7218
7229
|
vue.createVNode(_component_q_icon, {
|
|
7219
7230
|
name: $setup.dateRangeIcon,
|
|
7220
7231
|
size: "20px",
|
|
7221
|
-
color: "
|
|
7232
|
+
color: "grey_70",
|
|
7222
7233
|
class: "cursor-pointer"
|
|
7223
7234
|
}, null, 8, ["name"])
|
|
7224
7235
|
]; }),
|
|
@@ -7235,7 +7246,7 @@
|
|
|
7235
7246
|
class: "reset-btn no-hover",
|
|
7236
7247
|
flat: "",
|
|
7237
7248
|
label: $props.locale[$props.lang].today,
|
|
7238
|
-
"text-color": "
|
|
7249
|
+
"text-color": "grey_90",
|
|
7239
7250
|
ripple: false,
|
|
7240
7251
|
onClick: _cache[4] || (_cache[4] = function ($event) { return ($setup.resetDate('to')); })
|
|
7241
7252
|
}, null, 8, ["label"])
|
|
@@ -7328,7 +7339,7 @@
|
|
|
7328
7339
|
},
|
|
7329
7340
|
locale: {
|
|
7330
7341
|
type: Object,
|
|
7331
|
-
default: initLocaleObj
|
|
7342
|
+
default: initLocaleObj,
|
|
7332
7343
|
},
|
|
7333
7344
|
useDelete: {
|
|
7334
7345
|
type: Boolean,
|
|
@@ -7601,7 +7612,7 @@
|
|
|
7601
7612
|
style: {"flex-grow":"1","justify-content":"center"}
|
|
7602
7613
|
};
|
|
7603
7614
|
var _hoisted_3$2 = { class: "reset-btn-area flex justify-end" };
|
|
7604
|
-
var _hoisted_4$1 = /*#__PURE__*/vue.createElementVNode("span", { class: "q-mx-sm text-
|
|
7615
|
+
var _hoisted_4$1 = /*#__PURE__*/vue.createElementVNode("span", { class: "q-mx-sm text-grey_90" }, "~", -1);
|
|
7605
7616
|
var _hoisted_5$1 = { class: "reset-btn-area flex justify-end" };
|
|
7606
7617
|
var _hoisted_6$1 = { class: "reset-btn-area flex justify-end" };
|
|
7607
7618
|
|
|
@@ -7640,7 +7651,7 @@
|
|
|
7640
7651
|
vue.createVNode(_component_q_icon, {
|
|
7641
7652
|
name: $setup.dateRangeIcon,
|
|
7642
7653
|
size: "20px",
|
|
7643
|
-
color: "
|
|
7654
|
+
color: "grey_70",
|
|
7644
7655
|
class: "cursor-pointer",
|
|
7645
7656
|
onClick: _cache[0] || (_cache[0] = function ($event) { return ($setup.fromMenuRef[$setup.menuModel.from ? 'hide' : 'show']()); })
|
|
7646
7657
|
}, null, 8, ["name"])
|
|
@@ -7663,7 +7674,7 @@
|
|
|
7663
7674
|
class: "reset-btn no-hover",
|
|
7664
7675
|
flat: "",
|
|
7665
7676
|
label: $props.lang ? $props.locale[$props.lang].today : '오늘',
|
|
7666
|
-
"text-color": "
|
|
7677
|
+
"text-color": "grey_90",
|
|
7667
7678
|
ripple: false,
|
|
7668
7679
|
onClick: _cache[1] || (_cache[1] = function ($event) { return ($setup.resetDate('from')); })
|
|
7669
7680
|
}, null, 8, ["label"])
|
|
@@ -7706,7 +7717,7 @@
|
|
|
7706
7717
|
vue.createVNode(_component_q_icon, {
|
|
7707
7718
|
name: $setup.dateRangeIcon,
|
|
7708
7719
|
size: "20px",
|
|
7709
|
-
color: "
|
|
7720
|
+
color: "grey_70",
|
|
7710
7721
|
class: "cursor-pointer",
|
|
7711
7722
|
onClick: _cache[9] || (_cache[9] = function ($event) { return ($setup.toMenuRef[$setup.menuModel.to ? 'hide' : 'show']()); })
|
|
7712
7723
|
}, null, 8, ["name"])
|
|
@@ -7729,7 +7740,7 @@
|
|
|
7729
7740
|
class: "reset-btn no-hover",
|
|
7730
7741
|
flat: "",
|
|
7731
7742
|
label: $props.lang ? $props.locale[$props.lang].today : '오늘',
|
|
7732
|
-
"text-color": "
|
|
7743
|
+
"text-color": "grey_90",
|
|
7733
7744
|
ripple: false,
|
|
7734
7745
|
onClick: _cache[10] || (_cache[10] = function ($event) { return ($setup.resetDate('to')); })
|
|
7735
7746
|
}, null, 8, ["label"])
|
|
@@ -7773,7 +7784,7 @@
|
|
|
7773
7784
|
vue.createVNode(_component_q_icon, {
|
|
7774
7785
|
name: $setup.dateRangeIcon,
|
|
7775
7786
|
size: "20px",
|
|
7776
|
-
color: "
|
|
7787
|
+
color: "grey_70",
|
|
7777
7788
|
class: "cursor-pointer",
|
|
7778
7789
|
onClick: _cache[18] || (_cache[18] = function ($event) { return ($setup.singleMenuRef[$setup.menuModel.single ? 'hide' : 'show']()); })
|
|
7779
7790
|
}, null, 8, ["name"])
|
|
@@ -7796,7 +7807,7 @@
|
|
|
7796
7807
|
class: "reset-btn no-hover",
|
|
7797
7808
|
flat: "",
|
|
7798
7809
|
label: $props.lang ? $props.locale[$props.lang].today : '오늘',
|
|
7799
|
-
"text-color": "
|
|
7810
|
+
"text-color": "grey_90",
|
|
7800
7811
|
ripple: false,
|
|
7801
7812
|
onClick: _cache[19] || (_cache[19] = function ($event) { return ($setup.resetDate()); })
|
|
7802
7813
|
}, null, 8, ["label"])
|
|
@@ -7881,7 +7892,7 @@
|
|
|
7881
7892
|
type: Object,
|
|
7882
7893
|
/**
|
|
7883
7894
|
* @returns {{ from: null | string; to: null | string; }}
|
|
7884
|
-
|
|
7895
|
+
*/
|
|
7885
7896
|
default: function () { return ({ from: null, to: null }); },
|
|
7886
7897
|
require: true,
|
|
7887
7898
|
},
|
|
@@ -7898,7 +7909,7 @@
|
|
|
7898
7909
|
/**
|
|
7899
7910
|
* number 일 경우, 기본 값 date
|
|
7900
7911
|
* @returns {null | number | { ['date' | 'month' | 'year']: number; }}
|
|
7901
|
-
|
|
7912
|
+
*/
|
|
7902
7913
|
default: null,
|
|
7903
7914
|
},
|
|
7904
7915
|
width: {
|
|
@@ -7916,9 +7927,13 @@
|
|
|
7916
7927
|
var todayReset = quasar.date.formatDate(new Date(), 'YYYY/MM/DD');
|
|
7917
7928
|
|
|
7918
7929
|
var dateModel = vue.ref({ from: todayReset, to: todayReset });
|
|
7919
|
-
vue.watch(
|
|
7920
|
-
|
|
7921
|
-
|
|
7930
|
+
vue.watch(
|
|
7931
|
+
function () { return props.modelValue; },
|
|
7932
|
+
function (newValue) {
|
|
7933
|
+
dateModel.value = newValue;
|
|
7934
|
+
},
|
|
7935
|
+
{ immediate: true }
|
|
7936
|
+
);
|
|
7922
7937
|
|
|
7923
7938
|
function resetDate() {
|
|
7924
7939
|
dateModel.value.from = quasar.date.formatDate(todayReset, 'YYYY-MM-DD');
|
|
@@ -7933,9 +7948,13 @@
|
|
|
7933
7948
|
function optionsStartFn() {
|
|
7934
7949
|
if (dateModel.value.from && props.dateLimit) {
|
|
7935
7950
|
limit.value = '';
|
|
7936
|
-
limit.value = quasar.date.formatDate(
|
|
7937
|
-
|
|
7938
|
-
|
|
7951
|
+
limit.value = quasar.date.formatDate(
|
|
7952
|
+
quasar.date.addToDate(
|
|
7953
|
+
new Date(dateModel.value.from),
|
|
7954
|
+
typeof props.dateLimit === 'number' ? { date: props.dateLimit } : props.dateLimit
|
|
7955
|
+
),
|
|
7956
|
+
'YYYY-MM-DD'
|
|
7957
|
+
);
|
|
7939
7958
|
}
|
|
7940
7959
|
return true;
|
|
7941
7960
|
}
|
|
@@ -7957,7 +7976,7 @@
|
|
|
7957
7976
|
/**
|
|
7958
7977
|
* @param {string} model
|
|
7959
7978
|
* @param {'from' | 'to'} position
|
|
7960
|
-
|
|
7979
|
+
*/
|
|
7961
7980
|
function updateDate(model, position) {
|
|
7962
7981
|
if ( position === void 0 ) position = 'from';
|
|
7963
7982
|
|
|
@@ -7989,7 +8008,7 @@
|
|
|
7989
8008
|
});
|
|
7990
8009
|
var __injectCSSVars__ = function () {
|
|
7991
8010
|
vue.useCssVars(function (_ctx) { return ({
|
|
7992
|
-
"
|
|
8011
|
+
"8d30883a": (_ctx.dateWidth)
|
|
7993
8012
|
}); });};
|
|
7994
8013
|
var __setup__ = __default__.setup;
|
|
7995
8014
|
__default__.setup = __setup__
|
|
@@ -8011,7 +8030,7 @@
|
|
|
8011
8030
|
dense: "",
|
|
8012
8031
|
outlined: "",
|
|
8013
8032
|
class: vue.normalizeClass([{
|
|
8014
|
-
'text-
|
|
8033
|
+
'text-grey_65 bg-grey_10': _ctx.disable,
|
|
8015
8034
|
's-date-auto-range-picker--inside': _ctx.insideLabel,
|
|
8016
8035
|
's-date-auto-range-picker--use-icon': _ctx.useDelete,
|
|
8017
8036
|
}, "q-pa-none s-date-auto-range-picker bg-white"]),
|
|
@@ -8027,7 +8046,7 @@
|
|
|
8027
8046
|
name: _ctx.dateRangeIcon,
|
|
8028
8047
|
class: "cursor-pointer q-pa-none no-hover",
|
|
8029
8048
|
size: "20px",
|
|
8030
|
-
color: _ctx.disable ? '
|
|
8049
|
+
color: _ctx.disable ? 'grey_65' : 'grey_70'
|
|
8031
8050
|
}, {
|
|
8032
8051
|
default: vue.withCtx(function () { return [
|
|
8033
8052
|
vue.createVNode(_component_q_menu, {
|
|
@@ -8097,9 +8116,7 @@
|
|
|
8097
8116
|
name: "before",
|
|
8098
8117
|
fn: vue.withCtx(function () { return [
|
|
8099
8118
|
vue.createElementVNode("div", {
|
|
8100
|
-
class: vue.normalizeClass(["date-picker-label s-px-sm q-py-xs text-
|
|
8101
|
-
? 's-border-Grey_Lighten-2'
|
|
8102
|
-
: 's-border-Grey_Lighten-1'])
|
|
8119
|
+
class: vue.normalizeClass(["date-picker-label s-px-sm q-py-xs text-grey_90 bg-grey_10", _ctx.disable ? 's-border-grey_45' : 's-border-grey_55'])
|
|
8103
8120
|
}, vue.toDisplayString(_ctx.insideLabel), 3)
|
|
8104
8121
|
]; }),
|
|
8105
8122
|
key: "0"
|
|
@@ -8123,7 +8140,7 @@
|
|
|
8123
8140
|
]), 1032, ["class", "disable", "modelValue"]))
|
|
8124
8141
|
}
|
|
8125
8142
|
|
|
8126
|
-
var css_248z$4 = ".s-date-auto-range-picker {\n width: var(--
|
|
8143
|
+
var css_248z$4 = ".s-date-auto-range-picker {\n width: var(--8d30883a);\n}\n.s-date-auto-range-picker .q-field__control {\n max-height: 28px;\n height: 28px;\n padding: 0;\n}\n.s-date-auto-range-picker .q-field__control:before {\n border: 1px solid #aaaaaa !important;\n}\n.s-date-auto-range-picker .q-field__control:after {\n border-color: transparent !important;\n box-shadow: none !important;\n}\n.s-date-auto-range-picker .q-field__control:hover, .s-date-auto-range-picker .q-field__control:active {\n box-sizing: none;\n background-color: #f6f6f6;\n}\n.s-date-auto-range-picker .q-field__control .q-field__prepend {\n padding: 0;\n margin: 0 4px 0 8px;\n height: 28px;\n width: 20px;\n}\n.s-date-auto-range-picker .q-field__control-container {\n align-items: center;\n padding: 0;\n margin: 0 16px 0 8px;\n}\n.s-date-auto-range-picker .q-field__control-container .q-field__native {\n display: none;\n}\n.s-date-auto-range-picker .q-field__control-container .date-str {\n min-width: 66px;\n line-height: 28px;\n font-size: 12px;\n display: block;\n color: #333333;\n height: 100%;\n user-select: none;\n}\n.s-date-auto-range-picker .q-field__control-container .date-str:first-of-type {\n margin-right: 4px;\n}\n.s-date-auto-range-picker .q-field__control-container .date-str:last-of-type {\n margin-left: 4px;\n}\n.s-date-auto-range-picker .q-field__control .q-field__append {\n height: 28px;\n padding: 0;\n margin: 0 8px 0 0;\n}\n.s-date-auto-range-picker.q-field--disabled .q-field__control:before {\n border: 1px solid #cccccc !important;\n}\n.s-date-auto-range-picker.q-field--disabled .q-field__control-container .date-str {\n color: #888888;\n}\n.s-date-auto-range-picker--inside .q-field__before {\n height: 28px;\n line-height: 20px;\n padding: 0;\n}\n.s-date-auto-range-picker--inside .q-field__before .date-picker-label {\n border-right: none !important;\n border-radius: 2px 0 0 2px;\n height: 28px;\n font-size: 12px;\n}\n.s-date-auto-range-picker--inside .q-field__control {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n.s-date-auto-range-picker--use-icon .q-field__control-container {\n margin: 0 8px 0 4px;\n}";
|
|
8127
8144
|
styleInject(css_248z$4);
|
|
8128
8145
|
|
|
8129
8146
|
__default__.render = render$4;
|
|
@@ -8207,7 +8224,7 @@
|
|
|
8207
8224
|
vue.createVNode(_component_q_icon, {
|
|
8208
8225
|
name: $setup.dateRangeIcon,
|
|
8209
8226
|
size: "20px",
|
|
8210
|
-
color: "
|
|
8227
|
+
color: "grey_70",
|
|
8211
8228
|
class: "cursor-pointer",
|
|
8212
8229
|
onClick: _cache[0] || (_cache[0] = function ($event) { return ($setup.openMenu = true); })
|
|
8213
8230
|
}, null, 8, ["name"])
|
|
@@ -8259,11 +8276,11 @@
|
|
|
8259
8276
|
]), 1032, ["class", "disable", "modelValue"]))
|
|
8260
8277
|
}
|
|
8261
8278
|
|
|
8262
|
-
var css_248z$3 = ".s-year-picker[data-v-
|
|
8279
|
+
var css_248z$3 = ".s-year-picker[data-v-871d89cc] {\n width: fit-content;\n height: 28px;\n border-radius: 4px;\n}\n.s-year-picker.has-label[data-v-871d89cc] .q-field__inner .q-field__control {\n border-radius: 0 2px 2px 0 !important;\n}\n.s-year-picker.has-label[data-v-871d89cc] .q-field__before {\n height: 100%;\n padding: 4px 12px !important;\n border: 1px solid #aaaaaa;\n border-right: none;\n border-radius: 2px 0 0 2px;\n background: #f6f6f6;\n}\n.s-year-picker.has-label[data-v-871d89cc] .q-field__before .year-month-picker-label {\n font-size: 12px;\n font-weight: 400;\n color: #333333;\n}\n.s-year-picker.q-field--disabled[data-v-871d89cc] .q-field__before {\n border: 1px solid #cccccc;\n border-right: none;\n}\n.s-year-picker.q-field--disabled[data-v-871d89cc] .q-field__inner .q-field__control:after {\n border: 1px solid #cccccc;\n}\n.s-year-picker[data-v-871d89cc] .q-field__bottom {\n display: none;\n}\n.s-year-picker[data-v-871d89cc] .q-field__inner .q-field__control {\n padding: 4px 16px 4px 8px !important;\n height: 100%;\n}\n.s-year-picker[data-v-871d89cc] .q-field__inner .q-field__control .q-field__control-container .q-field__native {\n text-align: center;\n}\n.s-year-picker[data-v-871d89cc] .q-field__inner .q-field__control:before {\n border-style: solid;\n}\n.s-year-picker[data-v-871d89cc] .q-field__inner .q-field__control:after {\n border: 1px solid #aaaaaa;\n box-shadow: none;\n}\n.s-year-picker[data-v-871d89cc] .q-field__inner .q-field__control:hover, .s-year-picker[data-v-871d89cc] .q-field__inner .q-field__control:active {\n background: #f6f6f6 !important;\n}\n.s-year-picker[data-v-871d89cc] .q-field__inner .q-field__control .q-field__prepend {\n height: 20px;\n}\n.s-year-picker[data-v-871d89cc] .q-field__inner .q-field__control .q-field__append {\n height: 20px;\n}\n.s-year-picker[data-v-871d89cc] .q-field__inner .q-field__control .q-field__append .q-icon {\n margin-right: -8px;\n}\n.s-date-menu[data-v-871d89cc] {\n border-radius: 8px;\n}";
|
|
8263
8280
|
styleInject(css_248z$3);
|
|
8264
8281
|
|
|
8265
8282
|
script$3.render = render$3;
|
|
8266
|
-
script$3.__scopeId = "data-v-
|
|
8283
|
+
script$3.__scopeId = "data-v-871d89cc";
|
|
8267
8284
|
|
|
8268
8285
|
var Directive = {
|
|
8269
8286
|
name: 'sellmate',
|
|
@@ -8283,18 +8300,18 @@
|
|
|
8283
8300
|
default: function () { return ({
|
|
8284
8301
|
success: {
|
|
8285
8302
|
label: '성공',
|
|
8286
|
-
color: '
|
|
8303
|
+
color: 'brilliantblue_20',
|
|
8287
8304
|
textColor: 'positive',
|
|
8288
8305
|
},
|
|
8289
8306
|
fail: {
|
|
8290
8307
|
label: '실패',
|
|
8291
|
-
color: '
|
|
8292
|
-
textColor: '
|
|
8308
|
+
color: 'red_15',
|
|
8309
|
+
textColor: 'red_70',
|
|
8293
8310
|
},
|
|
8294
8311
|
total: {
|
|
8295
8312
|
label: '전체',
|
|
8296
|
-
color: '
|
|
8297
|
-
textColor: '
|
|
8313
|
+
color: 'grey_10',
|
|
8314
|
+
textColor: 'grey_70',
|
|
8298
8315
|
},
|
|
8299
8316
|
}); },
|
|
8300
8317
|
},
|
|
@@ -8322,11 +8339,11 @@
|
|
|
8322
8339
|
}, null, 8, ["class", "label", "color", "text-color"]))
|
|
8323
8340
|
}
|
|
8324
8341
|
|
|
8325
|
-
var css_248z$2 = ".s-badge[data-v-
|
|
8342
|
+
var css_248z$2 = ".s-badge[data-v-1b5af314] {\n border-radius: 4px;\n line-height: 20px;\n}\n.s-badge__sm[data-v-1b5af314] {\n padding: 1px 8px;\n height: 20px;\n font-size: 11px;\n font-weight: 400;\n}\n.s-badge__md[data-v-1b5af314] {\n padding: 2px 12px;\n height: 24px;\n font-size: 12px;\n font-weight: 700;\n}";
|
|
8326
8343
|
styleInject(css_248z$2);
|
|
8327
8344
|
|
|
8328
8345
|
script$2.render = render$2;
|
|
8329
|
-
script$2.__scopeId = "data-v-
|
|
8346
|
+
script$2.__scopeId = "data-v-1b5af314";
|
|
8330
8347
|
|
|
8331
8348
|
var script$1 = vue.defineComponent({
|
|
8332
8349
|
name: 'TableTreeNode',
|
|
@@ -8396,7 +8413,7 @@
|
|
|
8396
8413
|
key: i,
|
|
8397
8414
|
class: vue.normalizeClass(( obj = {
|
|
8398
8415
|
'bg-white': i === 0 && !_ctx.isLastDepth,
|
|
8399
|
-
'bg-
|
|
8416
|
+
'bg-grey_10': _ctx.isLastDepth
|
|
8400
8417
|
}, obj[("td-" + (i + 1) + " text-" + (column.align))] = i >= 0, obj )),
|
|
8401
8418
|
style: vue.normalizeStyle([i === 0 && ("padding-left: " + (_ctx.row.leftPadding) + "px"), ("width: " + (column.width) + "px")])
|
|
8402
8419
|
}, [
|
|
@@ -8408,7 +8425,7 @@
|
|
|
8408
8425
|
icon: _ctx.row.isExpand ? _ctx.minusIcon10 : _ctx.addIcon10,
|
|
8409
8426
|
outline: "",
|
|
8410
8427
|
round: "",
|
|
8411
|
-
color: _ctx.row.isExpand ? '
|
|
8428
|
+
color: _ctx.row.isExpand ? 'brilliantblue_50' : 'grey_65',
|
|
8412
8429
|
class: vue.normalizeClass(["expand-btn q-mr-sm", { 'not-expand-btn': !_ctx.row.isExpand }]),
|
|
8413
8430
|
onClick: _cache[0] || (_cache[0] = function ($event) { return (_ctx.handleExpand(_ctx.row)); })
|
|
8414
8431
|
}, null, 8, ["icon", "color", "class"]))
|
|
@@ -8459,11 +8476,11 @@
|
|
|
8459
8476
|
], 2))
|
|
8460
8477
|
}
|
|
8461
8478
|
|
|
8462
|
-
var css_248z$1 = ".table-tree-node[data-v-
|
|
8479
|
+
var css_248z$1 = ".table-tree-node[data-v-9f25f5fc] {\n border-top: 1px solid #e1e1e1 !important;\n box-sizing: border-box;\n}\n.table-tree-node.root_node_0[data-v-9f25f5fc] {\n border-top: 0 !important;\n}\n.table-tree-node .tr[data-v-9f25f5fc] {\n vertical-align: middle;\n}\n.table-tree-node .tr td[data-v-9f25f5fc] {\n height: 48px;\n padding: 0 16px;\n}\n.table-tree-node td[data-v-9f25f5fc],\n.table-tree-node th[data-v-9f25f5fc] {\n width: 100%;\n}\n.table-tree-node td[data-v-9f25f5fc]:not(:first-of-type),\n.table-tree-node th[data-v-9f25f5fc]:not(:first-of-type) {\n word-break: keep-all;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.table-tree-node table[data-v-9f25f5fc] {\n width: 100%;\n table-layout: fixed;\n border-collapse: collapse;\n}\n.table-tree-node table tbody tr td[data-v-9f25f5fc] {\n height: 44px;\n padding: 0 16px;\n font-weight: 400;\n}\n.table-tree-node table tbody tr td .expand-btn[data-v-9f25f5fc] {\n min-width: 20px;\n min-height: 20px;\n padding: 0 !important;\n}\n.table-tree-node table tbody tr td .expand-btn.not-expand-btn[data-v-9f25f5fc]:before {\n border-color: #e1e1e1;\n}\n.table-tree-node table tbody tr td .expand-btn.s-button-sm.q-btn[data-v-9f25f5fc] {\n height: 20px;\n}\n.table-tree-node table tbody tr td .expand-btn[data-v-9f25f5fc] .q-btn__content .q-icon {\n font-size: 12px;\n}\n.table-tree-node table tbody tr td .cell-content[data-v-9f25f5fc] {\n display: inline-block;\n}\n.table-tree-node table .td-1 .is-root[data-v-9f25f5fc] {\n font-weight: 700;\n}\n.table-tree-node table .td-1[data-v-9f25f5fc] :not(.is-root) {\n font-weight: 400;\n}";
|
|
8463
8480
|
styleInject(css_248z$1);
|
|
8464
8481
|
|
|
8465
8482
|
script$1.render = render$1;
|
|
8466
|
-
script$1.__scopeId = "data-v-
|
|
8483
|
+
script$1.__scopeId = "data-v-9f25f5fc";
|
|
8467
8484
|
|
|
8468
8485
|
function createDiv(val) {
|
|
8469
8486
|
var div = document.createElement('div');
|
|
@@ -8862,15 +8879,15 @@
|
|
|
8862
8879
|
], 2))
|
|
8863
8880
|
}
|
|
8864
8881
|
|
|
8865
|
-
var css_248z = ".s-table-tree[data-v-
|
|
8882
|
+
var css_248z = ".s-table-tree[data-v-48e7c7f6] {\n border: 1px solid #cccccc;\n border-radius: 8px !important;\n overflow: hidden;\n position: relative;\n box-sizing: border-box;\n color: #222222;\n}\n.s-table-tree .q-inner-loading[data-v-48e7c7f6] {\n z-index: 1;\n}\n.s-table-tree .s-table-tree__inner[data-v-48e7c7f6] {\n overflow: auto;\n}\n.s-table-tree .s-table-tree__inner td[data-v-48e7c7f6],\n.s-table-tree .s-table-tree__inner th[data-v-48e7c7f6] {\n width: 100%;\n}\n.s-table-tree .s-table-tree__inner td[data-v-48e7c7f6]:not(:first-of-type),\n.s-table-tree .s-table-tree__inner th[data-v-48e7c7f6]:not(:first-of-type) {\n word-break: keep-all;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.s-table-tree .s-table-tree__inner table[data-v-48e7c7f6] {\n width: 100%;\n border-collapse: collapse;\n border-spacing: 0;\n table-layout: fixed;\n}\n.s-table-tree .s-table-tree__inner table thead[data-v-48e7c7f6] {\n background: #f5faff;\n}\n.s-table-tree .s-table-tree__inner table thead tr[data-v-48e7c7f6] {\n height: 36px;\n}\n.s-table-tree .s-table-tree__inner table thead tr th[data-v-48e7c7f6] {\n border-bottom: 1px solid #e1e1e1;\n padding: 0 16px;\n font-weight: 500;\n color: rgb(34, 34, 34);\n}\n.s-table-tree .s-table-tree__inner table tbody > tr td[data-v-48e7c7f6] {\n height: 44px;\n}\n.s-table-tree .s-table-tree__inner table tbody > tr > .body-td[data-v-48e7c7f6] {\n padding: 0;\n}\n.s-table-tree .s-table-tree__inner table tfoot[data-v-48e7c7f6] {\n border-top: 2px solid #e1e1e1 !important;\n}\n.s-table-tree .s-table-tree__inner table tfoot tr[data-v-48e7c7f6]:last-of-type {\n background: rgb(245, 250, 255);\n}\n.s-table-tree .s-table-tree__inner table tfoot tr:last-of-type .td-1[data-v-48e7c7f6] {\n color: #1f8ae1;\n}\n.s-table-tree .s-table-tree__inner table tfoot tr td[data-v-48e7c7f6] {\n border-top: 1px solid #e1e1e1 !important;\n height: 52px;\n padding: 0 16px;\n}\n.s-table-tree .s-table-tree__inner table tfoot tr td.td-1[data-v-48e7c7f6] {\n padding: 0 20px;\n font-weight: 700;\n color: #005cc9;\n}\n.s-table-tree.sticky-table-tree .s-table-tree__inner td[data-v-48e7c7f6],\n.s-table-tree.sticky-table-tree .s-table-tree__inner th[data-v-48e7c7f6] {\n width: 100%;\n}\n.s-table-tree.sticky-table-tree .s-table-tree__inner td[data-v-48e7c7f6]:not(:first-of-type),\n.s-table-tree.sticky-table-tree .s-table-tree__inner th[data-v-48e7c7f6]:not(:first-of-type) {\n word-break: keep-all;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n}\n.s-table-tree.sticky-table-tree .s-table-tree__inner table[data-v-48e7c7f6] {\n border-collapse: collapse !important;\n}\n.s-table-tree.sticky-table-tree .s-table-tree__inner table thead tr th[data-v-48e7c7f6]:first-of-type {\n position: sticky;\n left: 0;\n background: #f5faff;\n z-index: 10;\n}\n.s-table-tree.sticky-table-tree .s-table-tree__inner table thead tr th[data-v-48e7c7f6]:first-of-type:before {\n content: \"\";\n position: absolute;\n width: 20px;\n height: 100%;\n right: -20px;\n top: 0;\n box-shadow: inset 17px 0 26px -29px rgba(0, 0, 0, 0.2);\n background: none !important;\n}\n.s-table-tree.sticky-table-tree .s-table-tree__inner table > tbody > tr > td[data-v-48e7c7f6] .table-tree-node table tr td:first-of-type {\n position: sticky;\n left: 0;\n}\n.s-table-tree.sticky-table-tree .s-table-tree__inner table > tbody > tr > td[data-v-48e7c7f6] .table-tree-node table tr td:first-of-type:before {\n content: \"\";\n position: absolute;\n width: 20px;\n height: 100%;\n right: -20px;\n top: 0;\n box-shadow: inset 17px 0 26px -29px rgba(0, 0, 0, 0.3);\n background: none !important;\n}\n.s-table-tree.sticky-table-tree .s-table-tree__inner table tfoot[data-v-48e7c7f6] {\n border-top: 2px solid #e1e1e1 !important;\n}\n.s-table-tree.sticky-table-tree .s-table-tree__inner table tfoot tr td[data-v-48e7c7f6]:first-of-type {\n position: sticky;\n left: 0;\n background: white;\n}\n.s-table-tree.sticky-table-tree .s-table-tree__inner table tfoot tr td[data-v-48e7c7f6]:first-of-type:before {\n content: \"\";\n position: absolute;\n width: 20px;\n height: 100%;\n right: -20px;\n top: 0;\n box-shadow: inset 17px 0 26px -29px rgba(0, 0, 0, 0.3);\n background: none !important;\n}\n.s-table-tree.sticky-table-tree .s-table-tree__inner table tfoot tr[data-v-48e7c7f6]:last-of-type {\n background: rgb(245, 250, 255);\n}\n.s-table-tree.sticky-table-tree .s-table-tree__inner table tfoot tr:last-of-type .td-1[data-v-48e7c7f6] {\n color: #1f8ae1;\n background: rgb(245, 250, 255);\n}\n.s-table-tree.sticky-table-tree .s-table-tree__inner.no-before table thead tr th[data-v-48e7c7f6]:first-of-type::before {\n display: none;\n}\n.s-table-tree.sticky-table-tree .s-table-tree__inner.no-before table > tbody > tr > td[data-v-48e7c7f6] .table-tree-node table tr td:first-of-type::before {\n display: none;\n}\n.s-table-tree.sticky-table-tree .s-table-tree__inner.no-before table tfoot tr td[data-v-48e7c7f6]:first-of-type::before {\n display: none;\n}\n.s-table-tree.no-data-table-tree .s-table-tree__inner[data-v-48e7c7f6] {\n overflow: hidden;\n}\n.s-table-tree.no-data-table-tree .s-table-tree__inner table thead[data-v-48e7c7f6] {\n opacity: 0.4;\n}\n.s-table-tree.no-data-table-tree .s-table-tree__inner table tbody tr td[data-v-48e7c7f6] {\n height: 240px;\n padding: 0;\n}\n.s-table-tree.no-data-table-tree .s-table-tree__inner table tbody tr td > div[data-v-48e7c7f6] {\n padding-top: 80px;\n height: 240px;\n text-align: center;\n position: absolute;\n width: 100%;\n top: 36px;\n left: 0;\n color: #888888;\n}";
|
|
8866
8883
|
styleInject(css_248z);
|
|
8867
8884
|
|
|
8868
8885
|
script.render = render;
|
|
8869
|
-
script.__scopeId = "data-v-
|
|
8886
|
+
script.__scopeId = "data-v-48e7c7f6";
|
|
8870
8887
|
|
|
8871
8888
|
/* eslint-disable no-multiple-empty-lines */
|
|
8872
8889
|
|
|
8873
|
-
var version = '3.14.
|
|
8890
|
+
var version = '3.14.14';
|
|
8874
8891
|
|
|
8875
8892
|
function install(app) {
|
|
8876
8893
|
app.component('s-badge', script$2);
|