@qikdev/vue-ui 0.2.20 → 0.2.23
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/lib.es.js +406 -83
- package/dist/lib.es.js.map +1 -1
- package/dist/lib.umd.js +3 -3
- package/dist/lib.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/lib.es.js
CHANGED
|
@@ -30,9 +30,9 @@ var __objRest = (source, exclude) => {
|
|
|
30
30
|
}
|
|
31
31
|
return target;
|
|
32
32
|
};
|
|
33
|
-
import { openBlock, createElementBlock, renderSlot, resolveComponent, normalizeClass, Fragment, createVNode, withCtx, renderList, toDisplayString, withDirectives, createBlock, resolveDynamicComponent, vShow, withModifiers, createTextVNode, createCommentVNode, createElementVNode, mergeProps, toHandlers, pushScopeId, popScopeId, normalizeStyle, Teleport, vModelText, vModelSelect, withKeys, TransitionGroup, defineComponent, h, nextTick, vModelDynamic,
|
|
33
|
+
import { openBlock, createElementBlock, renderSlot, resolveComponent, normalizeClass, Fragment, createVNode, withCtx, renderList, toDisplayString, withDirectives, createBlock, resolveDynamicComponent, vShow, withModifiers, createTextVNode, createCommentVNode, createElementVNode, mergeProps, toHandlers, pushScopeId, popScopeId, normalizeStyle, Teleport, vModelText, vModelSelect, withKeys, TransitionGroup, defineComponent, h, nextTick, vModelDynamic, reactive, watch } from "vue";
|
|
34
34
|
import { EventDispatcher } from "@qikdev/sdk";
|
|
35
|
-
const version$1 = "0.2.
|
|
35
|
+
const version$1 = "0.2.23";
|
|
36
36
|
var flexColumn_vue_vue_type_style_index_0_scoped_true_lang = "";
|
|
37
37
|
var _export_sfc = (sfc, props2) => {
|
|
38
38
|
const target = sfc.__vccOpts || sfc;
|
|
@@ -703,16 +703,16 @@ function baseToString$1(value) {
|
|
|
703
703
|
}
|
|
704
704
|
var _baseToString = baseToString$1;
|
|
705
705
|
var baseToString = _baseToString;
|
|
706
|
-
function toString$
|
|
706
|
+
function toString$3(value) {
|
|
707
707
|
return value == null ? "" : baseToString(value);
|
|
708
708
|
}
|
|
709
|
-
var toString_1 = toString$
|
|
710
|
-
var isArray$2 = isArray_1, isKey = _isKey, stringToPath = _stringToPath, toString = toString_1;
|
|
709
|
+
var toString_1 = toString$3;
|
|
710
|
+
var isArray$2 = isArray_1, isKey = _isKey, stringToPath = _stringToPath, toString$2 = toString_1;
|
|
711
711
|
function castPath$1(value, object) {
|
|
712
712
|
if (isArray$2(value)) {
|
|
713
713
|
return value;
|
|
714
714
|
}
|
|
715
|
-
return isKey(value, object) ? [value] : stringToPath(toString(value));
|
|
715
|
+
return isKey(value, object) ? [value] : stringToPath(toString$2(value));
|
|
716
716
|
}
|
|
717
717
|
var _castPath = castPath$1;
|
|
718
718
|
var isSymbol$1 = isSymbol_1;
|
|
@@ -845,7 +845,7 @@ const _sfc_main$17 = {
|
|
|
845
845
|
methods: {
|
|
846
846
|
async clicked() {
|
|
847
847
|
this.processing = true;
|
|
848
|
-
await this.button.action(this.row);
|
|
848
|
+
await this.button.action(this.row, this.column);
|
|
849
849
|
this.processing = false;
|
|
850
850
|
}
|
|
851
851
|
}
|
|
@@ -875,7 +875,7 @@ function _sfc_render$17(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
875
875
|
}, 8, ["color", "size", "loading", "onClick"])
|
|
876
876
|
]);
|
|
877
877
|
}
|
|
878
|
-
var ButtonCell = /* @__PURE__ */ _export_sfc(_sfc_main$17, [["render", _sfc_render$17], ["__scopeId", "data-v-
|
|
878
|
+
var ButtonCell = /* @__PURE__ */ _export_sfc(_sfc_main$17, [["render", _sfc_render$17], ["__scopeId", "data-v-36768853"]]);
|
|
879
879
|
class LuxonError extends Error {
|
|
880
880
|
}
|
|
881
881
|
class InvalidDateTimeError extends LuxonError {
|
|
@@ -4734,13 +4734,13 @@ const _hoisted_1$Q = { class: "table-date-cell" };
|
|
|
4734
4734
|
const _hoisted_2$I = { key: 0 };
|
|
4735
4735
|
const _hoisted_3$A = { class: "off" };
|
|
4736
4736
|
const _hoisted_4$w = { class: "on" };
|
|
4737
|
-
const _hoisted_5$
|
|
4737
|
+
const _hoisted_5$p = { class: "spacer" };
|
|
4738
4738
|
function _sfc_render$16(_ctx, _cache, $props, $setup, $data, $options) {
|
|
4739
4739
|
return openBlock(), createElementBlock("td", _hoisted_1$Q, [
|
|
4740
4740
|
$options.hasValue ? (openBlock(), createElementBlock("div", _hoisted_2$I, [
|
|
4741
4741
|
createElementVNode("span", _hoisted_3$A, toDisplayString($options.readable), 1),
|
|
4742
4742
|
createElementVNode("span", _hoisted_4$w, toDisplayString($options.timeago), 1),
|
|
4743
|
-
createElementVNode("span", _hoisted_5$
|
|
4743
|
+
createElementVNode("span", _hoisted_5$p, toDisplayString($options.readable), 1)
|
|
4744
4744
|
])) : createCommentVNode("", true)
|
|
4745
4745
|
]);
|
|
4746
4746
|
}
|
|
@@ -5419,7 +5419,7 @@ const _hoisted_3$y = {
|
|
|
5419
5419
|
class: "first table-select shrink"
|
|
5420
5420
|
};
|
|
5421
5421
|
const _hoisted_4$v = /* @__PURE__ */ createTextVNode(" Select Page ");
|
|
5422
|
-
const _hoisted_5$
|
|
5422
|
+
const _hoisted_5$o = /* @__PURE__ */ createTextVNode(" Deselect Page ");
|
|
5423
5423
|
const _hoisted_6$j = /* @__PURE__ */ createTextVNode(" Deselect All ");
|
|
5424
5424
|
const _hoisted_7$g = ["onClick"];
|
|
5425
5425
|
const _hoisted_8$9 = {
|
|
@@ -5460,7 +5460,7 @@ function _sfc_render$$(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5460
5460
|
onClick: _cache[1] || (_cache[1] = ($event) => $options.deselectPage())
|
|
5461
5461
|
}, {
|
|
5462
5462
|
default: withCtx(() => [
|
|
5463
|
-
_hoisted_5$
|
|
5463
|
+
_hoisted_5$o
|
|
5464
5464
|
]),
|
|
5465
5465
|
_: 1
|
|
5466
5466
|
})) : createCommentVNode("", true),
|
|
@@ -6816,7 +6816,7 @@ var InputMixin = {
|
|
|
6816
6816
|
val = instance.$sdk.utils.parseURL(val);
|
|
6817
6817
|
break;
|
|
6818
6818
|
case "key":
|
|
6819
|
-
val = instance.$sdk.utils.machineName(val);
|
|
6819
|
+
val = String(instance.$sdk.utils.machineName(val)).trim();
|
|
6820
6820
|
break;
|
|
6821
6821
|
case "integer":
|
|
6822
6822
|
val = parseInt(String(val).replace(/[^0-9-]/g, ""));
|
|
@@ -7092,7 +7092,7 @@ const _hoisted_4$u = {
|
|
|
7092
7092
|
key: 2,
|
|
7093
7093
|
class: "ui-select-button"
|
|
7094
7094
|
};
|
|
7095
|
-
const _hoisted_5$
|
|
7095
|
+
const _hoisted_5$n = ["multiple"];
|
|
7096
7096
|
const _hoisted_6$i = {
|
|
7097
7097
|
key: 0,
|
|
7098
7098
|
value: ""
|
|
@@ -7129,7 +7129,7 @@ function _sfc_render$M(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7129
7129
|
value: option2.value
|
|
7130
7130
|
}, toDisplayString(option2.title), 9, _hoisted_7$f);
|
|
7131
7131
|
}), 256))
|
|
7132
|
-
], 40, _hoisted_5$
|
|
7132
|
+
], 40, _hoisted_5$n), [
|
|
7133
7133
|
[vModelSelect, _ctx.model]
|
|
7134
7134
|
])
|
|
7135
7135
|
], 2);
|
|
@@ -7221,7 +7221,7 @@ const _hoisted_3$w = {
|
|
|
7221
7221
|
class: "ux-field-description"
|
|
7222
7222
|
};
|
|
7223
7223
|
const _hoisted_4$t = { key: 2 };
|
|
7224
|
-
const _hoisted_5$
|
|
7224
|
+
const _hoisted_5$m = /* @__PURE__ */ createTextVNode(" Country Code ");
|
|
7225
7225
|
const _hoisted_6$h = { key: 0 };
|
|
7226
7226
|
const _hoisted_7$e = { key: 1 };
|
|
7227
7227
|
const _hoisted_8$8 = { class: "ux-text-wrap" };
|
|
@@ -7263,7 +7263,7 @@ function _sfc_render$L(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7263
7263
|
createVNode(_component_ux_button, { tag: "a" }, {
|
|
7264
7264
|
default: withCtx(() => [
|
|
7265
7265
|
!entry.countryCode ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
|
|
7266
|
-
_hoisted_5$
|
|
7266
|
+
_hoisted_5$m
|
|
7267
7267
|
], 64)) : (openBlock(), createElementBlock(Fragment, { key: 1 }, [
|
|
7268
7268
|
$data.lookup[entry.countryCode] ? (openBlock(), createElementBlock("div", _hoisted_6$h, toDisplayString($data.lookup[entry.countryCode].emoji) + " - " + toDisplayString($data.lookup[entry.countryCode].alpha2), 1)) : (openBlock(), createElementBlock("div", _hoisted_7$e, "Loading"))
|
|
7269
7269
|
], 64))
|
|
@@ -7922,7 +7922,7 @@ const _hoisted_4$s = {
|
|
|
7922
7922
|
key: 2,
|
|
7923
7923
|
class: "ui-select-button"
|
|
7924
7924
|
};
|
|
7925
|
-
const _hoisted_5$
|
|
7925
|
+
const _hoisted_5$l = ["multiple"];
|
|
7926
7926
|
const _hoisted_6$g = {
|
|
7927
7927
|
key: 0,
|
|
7928
7928
|
value: ""
|
|
@@ -7959,7 +7959,7 @@ function _sfc_render$K(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7959
7959
|
value: option2.value
|
|
7960
7960
|
}, toDisplayString(option2.title), 9, _hoisted_7$d);
|
|
7961
7961
|
}), 256))
|
|
7962
|
-
], 40, _hoisted_5$
|
|
7962
|
+
], 40, _hoisted_5$l), [
|
|
7963
7963
|
[vModelSelect, _ctx.model]
|
|
7964
7964
|
])
|
|
7965
7965
|
], 2);
|
|
@@ -10904,7 +10904,7 @@ const _hoisted_4$r = {
|
|
|
10904
10904
|
key: 1,
|
|
10905
10905
|
class: "items"
|
|
10906
10906
|
};
|
|
10907
|
-
const _hoisted_5$
|
|
10907
|
+
const _hoisted_5$k = /* @__PURE__ */ createTextVNode(" Create ");
|
|
10908
10908
|
function _sfc_render$I(_ctx, _cache, $props, $setup, $data, $options) {
|
|
10909
10909
|
const _component_ux_icon = resolveComponent("ux-icon");
|
|
10910
10910
|
const _component_ux_button = resolveComponent("ux-button");
|
|
@@ -11011,7 +11011,7 @@ function _sfc_render$I(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
11011
11011
|
onClick: $options.create
|
|
11012
11012
|
}, {
|
|
11013
11013
|
default: withCtx(() => [
|
|
11014
|
-
_hoisted_5$
|
|
11014
|
+
_hoisted_5$k,
|
|
11015
11015
|
createVNode(_component_ux_icon, {
|
|
11016
11016
|
right: "",
|
|
11017
11017
|
icon: "fa-plus"
|
|
@@ -11158,7 +11158,7 @@ const _hoisted_4$q = {
|
|
|
11158
11158
|
key: 2,
|
|
11159
11159
|
class: "ui-select-button"
|
|
11160
11160
|
};
|
|
11161
|
-
const _hoisted_5$
|
|
11161
|
+
const _hoisted_5$j = ["multiple"];
|
|
11162
11162
|
const _hoisted_6$f = {
|
|
11163
11163
|
key: 0,
|
|
11164
11164
|
value: ""
|
|
@@ -11195,7 +11195,7 @@ function _sfc_render$H(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
11195
11195
|
value: option2.value
|
|
11196
11196
|
}, toDisplayString(option2.title), 9, _hoisted_7$c);
|
|
11197
11197
|
}), 256))
|
|
11198
|
-
], 40, _hoisted_5$
|
|
11198
|
+
], 40, _hoisted_5$j), [
|
|
11199
11199
|
[vModelSelect, _ctx.model]
|
|
11200
11200
|
])
|
|
11201
11201
|
], 2);
|
|
@@ -11292,7 +11292,7 @@ const _hoisted_3$s = {
|
|
|
11292
11292
|
class: "ux-field-description"
|
|
11293
11293
|
};
|
|
11294
11294
|
const _hoisted_4$p = { key: 2 };
|
|
11295
|
-
const _hoisted_5$
|
|
11295
|
+
const _hoisted_5$i = {
|
|
11296
11296
|
key: 0,
|
|
11297
11297
|
class: "ux-text-prefix"
|
|
11298
11298
|
};
|
|
@@ -11332,7 +11332,7 @@ function _sfc_render$G(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
11332
11332
|
createElementVNode("div", {
|
|
11333
11333
|
class: normalizeClass(["ux-text-wrap", { prefixed: $options.prefix, suffixed: $options.suffix }])
|
|
11334
11334
|
}, [
|
|
11335
|
-
$options.prefix ? (openBlock(), createElementBlock("span", _hoisted_5$
|
|
11335
|
+
$options.prefix ? (openBlock(), createElementBlock("span", _hoisted_5$i, toDisplayString($options.prefix), 1)) : createCommentVNode("", true),
|
|
11336
11336
|
withDirectives((openBlock(), createElementBlock("input", {
|
|
11337
11337
|
class: "ux-field-focus ux-text-input-multiple",
|
|
11338
11338
|
ref_for: true,
|
|
@@ -11495,7 +11495,7 @@ const _hoisted_3$r = {
|
|
|
11495
11495
|
class: "ux-field-description"
|
|
11496
11496
|
};
|
|
11497
11497
|
const _hoisted_4$o = { key: 2 };
|
|
11498
|
-
const _hoisted_5$
|
|
11498
|
+
const _hoisted_5$h = { class: "ux-text-wrap" };
|
|
11499
11499
|
const _hoisted_6$d = {
|
|
11500
11500
|
key: 0,
|
|
11501
11501
|
class: "ux-text-prefix"
|
|
@@ -11540,7 +11540,7 @@ function _sfc_render$F(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
11540
11540
|
default: withCtx(() => [
|
|
11541
11541
|
createVNode(_component_flex_cell, null, {
|
|
11542
11542
|
default: withCtx(() => [
|
|
11543
|
-
createElementVNode("div", _hoisted_5$
|
|
11543
|
+
createElementVNode("div", _hoisted_5$h, [
|
|
11544
11544
|
_ctx.prefix ? (openBlock(), createElementBlock("span", _hoisted_6$d, toDisplayString(_ctx.prefix), 1)) : createCommentVNode("", true),
|
|
11545
11545
|
$options.lazy ? withDirectives((openBlock(), createElementBlock("input", {
|
|
11546
11546
|
key: 1,
|
|
@@ -11675,7 +11675,7 @@ const _hoisted_3$q = {
|
|
|
11675
11675
|
class: "ux-field-description"
|
|
11676
11676
|
};
|
|
11677
11677
|
const _hoisted_4$n = { key: 2 };
|
|
11678
|
-
const _hoisted_5$
|
|
11678
|
+
const _hoisted_5$g = ["onUpdate:modelValue"];
|
|
11679
11679
|
function _sfc_render$E(_ctx, _cache, $props, $setup, $data, $options) {
|
|
11680
11680
|
const _component_flex_cell = resolveComponent("flex-cell");
|
|
11681
11681
|
const _component_ux_icon = resolveComponent("ux-icon");
|
|
@@ -11703,7 +11703,7 @@ function _sfc_render$E(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
11703
11703
|
ref: "input",
|
|
11704
11704
|
"onUpdate:modelValue": ($event) => _ctx.model[index2] = $event,
|
|
11705
11705
|
class: "ux-textarea ux-field-focus ux-text-area-multiple"
|
|
11706
|
-
}, null, 40, _hoisted_5$
|
|
11706
|
+
}, null, 40, _hoisted_5$g), [
|
|
11707
11707
|
[vModelText, _ctx.model[index2]]
|
|
11708
11708
|
])
|
|
11709
11709
|
]),
|
|
@@ -11823,7 +11823,7 @@ const _hoisted_3$p = {
|
|
|
11823
11823
|
class: "ux-field-description"
|
|
11824
11824
|
};
|
|
11825
11825
|
const _hoisted_4$m = { key: 2 };
|
|
11826
|
-
const _hoisted_5$
|
|
11826
|
+
const _hoisted_5$f = ["onUpdate:modelValue"];
|
|
11827
11827
|
function _sfc_render$D(_ctx, _cache, $props, $setup, $data, $options) {
|
|
11828
11828
|
const _component_flex_cell = resolveComponent("flex-cell");
|
|
11829
11829
|
const _component_ux_icon = resolveComponent("ux-icon");
|
|
@@ -11852,7 +11852,7 @@ function _sfc_render$D(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
11852
11852
|
ref: "input",
|
|
11853
11853
|
onKeydown: _cache[1] || (_cache[1] = withKeys(withModifiers(($event) => _ctx.add(), ["stop", "prevent"]), ["enter"])),
|
|
11854
11854
|
"onUpdate:modelValue": ($event) => $options.model[index2] = $event
|
|
11855
|
-
}, null, 40, _hoisted_5$
|
|
11855
|
+
}, null, 40, _hoisted_5$f), [
|
|
11856
11856
|
[vModelText, $options.model[index2]]
|
|
11857
11857
|
])
|
|
11858
11858
|
]),
|
|
@@ -12470,7 +12470,7 @@ const _hoisted_1$r = {
|
|
|
12470
12470
|
const _hoisted_2$o = { key: 0 };
|
|
12471
12471
|
const _hoisted_3$l = { key: 1 };
|
|
12472
12472
|
const _hoisted_4$k = /* @__PURE__ */ createTextVNode(" And ");
|
|
12473
|
-
const _hoisted_5$
|
|
12473
|
+
const _hoisted_5$e = { key: 2 };
|
|
12474
12474
|
const _hoisted_6$c = { key: 3 };
|
|
12475
12475
|
const _hoisted_7$9 = /* @__PURE__ */ createTextVNode(" And ");
|
|
12476
12476
|
const _hoisted_8$5 = { key: 4 };
|
|
@@ -12487,6 +12487,7 @@ function _sfc_render$z(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12487
12487
|
const _component_flex_row = resolveComponent("flex-row");
|
|
12488
12488
|
const _component_date_field = resolveComponent("date-field");
|
|
12489
12489
|
const _component_content_select = resolveComponent("content-select");
|
|
12490
|
+
const _component_ux_switch = resolveComponent("ux-switch");
|
|
12490
12491
|
const _component_ux_icon = resolveComponent("ux-icon");
|
|
12491
12492
|
const _component_ux_button = resolveComponent("ux-button");
|
|
12492
12493
|
return $data.comparators ? (openBlock(), createElementBlock("div", _hoisted_1$r, [
|
|
@@ -12545,7 +12546,7 @@ function _sfc_render$z(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12545
12546
|
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => $data.model.value2 = $event)
|
|
12546
12547
|
}, null, 8, ["field", "modelValue"])
|
|
12547
12548
|
])) : createCommentVNode("", true),
|
|
12548
|
-
$options.inputType == "daterelative" ? (openBlock(), createElementBlock("div", _hoisted_5$
|
|
12549
|
+
$options.inputType == "daterelative" ? (openBlock(), createElementBlock("div", _hoisted_5$e, [
|
|
12549
12550
|
createVNode(_component_flex_row, null, {
|
|
12550
12551
|
default: withCtx(() => [
|
|
12551
12552
|
createVNode(_component_flex_cell, { style: { "width": "80px" } }, {
|
|
@@ -12607,12 +12608,29 @@ function _sfc_render$z(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12607
12608
|
}, null, 8, ["field", "modelValue"])
|
|
12608
12609
|
])) : createCommentVNode("", true),
|
|
12609
12610
|
$options.inputType == "boolean" ? (openBlock(), createElementBlock("div", _hoisted_11$2, [
|
|
12610
|
-
|
|
12611
|
-
|
|
12612
|
-
|
|
12613
|
-
},
|
|
12614
|
-
[
|
|
12615
|
-
|
|
12611
|
+
createVNode(_component_flex_row, {
|
|
12612
|
+
gap: "",
|
|
12613
|
+
center: ""
|
|
12614
|
+
}, {
|
|
12615
|
+
default: withCtx(() => [
|
|
12616
|
+
createVNode(_component_flex_cell, { shrink: "" }, {
|
|
12617
|
+
default: withCtx(() => [
|
|
12618
|
+
createVNode(_component_ux_switch, {
|
|
12619
|
+
onClick: _cache[13] || (_cache[13] = ($event) => $data.model.value = !$data.model.value),
|
|
12620
|
+
value: $data.model.value
|
|
12621
|
+
}, null, 8, ["value"])
|
|
12622
|
+
]),
|
|
12623
|
+
_: 1
|
|
12624
|
+
}),
|
|
12625
|
+
createVNode(_component_flex_cell, null, {
|
|
12626
|
+
default: withCtx(() => [
|
|
12627
|
+
createTextVNode(toDisplayString($data.model.value ? "True" : "False"), 1)
|
|
12628
|
+
]),
|
|
12629
|
+
_: 1
|
|
12630
|
+
})
|
|
12631
|
+
]),
|
|
12632
|
+
_: 1
|
|
12633
|
+
})
|
|
12616
12634
|
])) : createCommentVNode("", true),
|
|
12617
12635
|
$options.inputType == "none" ? (openBlock(), createElementBlock("div", _hoisted_12$2)) : createCommentVNode("", true),
|
|
12618
12636
|
$options.inputType == "number" ? (openBlock(), createElementBlock("div", _hoisted_13$2, [
|
|
@@ -12940,7 +12958,7 @@ const _hoisted_1$q = {
|
|
|
12940
12958
|
const _hoisted_2$n = { class: "top" };
|
|
12941
12959
|
const _hoisted_3$k = { class: "summary" };
|
|
12942
12960
|
const _hoisted_4$j = /* @__PURE__ */ createTextVNode(" Match ");
|
|
12943
|
-
const _hoisted_5$
|
|
12961
|
+
const _hoisted_5$d = /* @__PURE__ */ createTextVNode(" of the following conditions ");
|
|
12944
12962
|
const _hoisted_6$b = /* @__PURE__ */ createElementVNode("span", { class: "line" }, null, -1);
|
|
12945
12963
|
const _hoisted_7$8 = { class: "operator" };
|
|
12946
12964
|
const _hoisted_8$4 = /* @__PURE__ */ createTextVNode(" Add Condition ");
|
|
@@ -12969,7 +12987,7 @@ function _sfc_render$y(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
12969
12987
|
]),
|
|
12970
12988
|
_: 1
|
|
12971
12989
|
}, 8, ["modelValue", "field"]),
|
|
12972
|
-
_hoisted_5$
|
|
12990
|
+
_hoisted_5$d
|
|
12973
12991
|
])
|
|
12974
12992
|
]),
|
|
12975
12993
|
_: 1
|
|
@@ -13154,7 +13172,7 @@ const _hoisted_2$m = {
|
|
|
13154
13172
|
};
|
|
13155
13173
|
const _hoisted_3$j = { class: "summary" };
|
|
13156
13174
|
const _hoisted_4$i = /* @__PURE__ */ createTextVNode(" Match ");
|
|
13157
|
-
const _hoisted_5$
|
|
13175
|
+
const _hoisted_5$c = /* @__PURE__ */ createTextVNode(" of the following rules ");
|
|
13158
13176
|
const _hoisted_6$a = /* @__PURE__ */ createTextVNode("Add Filter Rule");
|
|
13159
13177
|
function _sfc_render$x(_ctx, _cache, $props, $setup, $data, $options) {
|
|
13160
13178
|
const _component_native_select = resolveComponent("native-select");
|
|
@@ -13180,7 +13198,7 @@ function _sfc_render$x(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
13180
13198
|
]),
|
|
13181
13199
|
_: 1
|
|
13182
13200
|
}, 8, ["modelValue", "field"]),
|
|
13183
|
-
_hoisted_5$
|
|
13201
|
+
_hoisted_5$c
|
|
13184
13202
|
])
|
|
13185
13203
|
])) : createCommentVNode("", true),
|
|
13186
13204
|
(openBlock(true), createElementBlock(Fragment, null, renderList($data.model.filters, (rule, index2) => {
|
|
@@ -13665,7 +13683,7 @@ const _hoisted_4$g = {
|
|
|
13665
13683
|
key: 2,
|
|
13666
13684
|
class: "files"
|
|
13667
13685
|
};
|
|
13668
|
-
const _hoisted_5$
|
|
13686
|
+
const _hoisted_5$b = { class: "size" };
|
|
13669
13687
|
const _hoisted_6$9 = /* @__PURE__ */ createTextVNode("Select Files");
|
|
13670
13688
|
const _hoisted_7$7 = /* @__PURE__ */ createTextVNode("Select File");
|
|
13671
13689
|
function _sfc_render$t(_ctx, _cache, $props, $setup, $data, $options) {
|
|
@@ -13692,7 +13710,7 @@ function _sfc_render$t(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
13692
13710
|
createVNode(_component_flex_cell, null, {
|
|
13693
13711
|
default: withCtx(() => [
|
|
13694
13712
|
createElementVNode("strong", null, toDisplayString(file.name), 1),
|
|
13695
|
-
createElementVNode("div", _hoisted_5$
|
|
13713
|
+
createElementVNode("div", _hoisted_5$b, toDisplayString($options.filesize(file.size)), 1),
|
|
13696
13714
|
createVNode(_component_progress_bar, {
|
|
13697
13715
|
value: file.progress
|
|
13698
13716
|
}, null, 8, ["value"])
|
|
@@ -13856,7 +13874,7 @@ const _hoisted_4$f = {
|
|
|
13856
13874
|
key: 0,
|
|
13857
13875
|
class: "ux-required-marker"
|
|
13858
13876
|
};
|
|
13859
|
-
const _hoisted_5$
|
|
13877
|
+
const _hoisted_5$a = {
|
|
13860
13878
|
key: 1,
|
|
13861
13879
|
class: "ux-field-description"
|
|
13862
13880
|
};
|
|
@@ -13889,7 +13907,7 @@ function _sfc_render$s(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
13889
13907
|
createTextVNode(toDisplayString(_ctx.plural || _ctx.title) + " ", 1),
|
|
13890
13908
|
_ctx.required ? (openBlock(), createElementBlock("span", _hoisted_4$f, "*")) : createCommentVNode("", true)
|
|
13891
13909
|
])) : createCommentVNode("", true),
|
|
13892
|
-
_ctx.showDescription ? (openBlock(), createElementBlock("div", _hoisted_5$
|
|
13910
|
+
_ctx.showDescription ? (openBlock(), createElementBlock("div", _hoisted_5$a, toDisplayString(_ctx.description), 1)) : createCommentVNode("", true)
|
|
13893
13911
|
])) : createCommentVNode("", true),
|
|
13894
13912
|
$options.reorderable ? (openBlock(), createBlock(_component_draggable, {
|
|
13895
13913
|
key: 1,
|
|
@@ -13911,10 +13929,14 @@ function _sfc_render$s(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
13911
13929
|
default: withCtx(() => [
|
|
13912
13930
|
$options.reorderable ? (openBlock(), createBlock(_component_flex_cell, {
|
|
13913
13931
|
key: 0,
|
|
13932
|
+
class: "arrows",
|
|
13914
13933
|
shrink: ""
|
|
13915
13934
|
}, {
|
|
13916
13935
|
default: withCtx(() => [
|
|
13917
|
-
createVNode(_component_ux_icon, {
|
|
13936
|
+
createVNode(_component_ux_icon, {
|
|
13937
|
+
left: "",
|
|
13938
|
+
icon: "fa-arrows"
|
|
13939
|
+
})
|
|
13918
13940
|
]),
|
|
13919
13941
|
_: 1
|
|
13920
13942
|
})) : createCommentVNode("", true),
|
|
@@ -14242,7 +14264,7 @@ function _sfc_render$s(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
14242
14264
|
], 64))
|
|
14243
14265
|
], 64));
|
|
14244
14266
|
}
|
|
14245
|
-
var FieldGroup$1 = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["render", _sfc_render$s], ["__scopeId", "data-v-
|
|
14267
|
+
var FieldGroup$1 = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["render", _sfc_render$s], ["__scopeId", "data-v-190cfc06"]]);
|
|
14246
14268
|
const _sfc_main$r = {
|
|
14247
14269
|
props: {
|
|
14248
14270
|
option: {
|
|
@@ -14462,7 +14484,7 @@ const _hoisted_3$d = {
|
|
|
14462
14484
|
class: "ux-field-description"
|
|
14463
14485
|
};
|
|
14464
14486
|
const _hoisted_4$d = { key: 2 };
|
|
14465
|
-
const _hoisted_5$
|
|
14487
|
+
const _hoisted_5$9 = { key: 3 };
|
|
14466
14488
|
function _sfc_render$p(_ctx, _cache, $props, $setup, $data, $options) {
|
|
14467
14489
|
const _component_flex_cell = resolveComponent("flex-cell");
|
|
14468
14490
|
const _component_ux_icon = resolveComponent("ux-icon");
|
|
@@ -14523,7 +14545,7 @@ function _sfc_render$p(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
14523
14545
|
]),
|
|
14524
14546
|
_: 1
|
|
14525
14547
|
})) : createCommentVNode("", true)
|
|
14526
|
-
])) : (openBlock(), createElementBlock("pre", _hoisted_5$
|
|
14548
|
+
])) : (openBlock(), createElementBlock("pre", _hoisted_5$9, toDisplayString(_ctx.model), 1))
|
|
14527
14549
|
], 64);
|
|
14528
14550
|
}
|
|
14529
14551
|
var ObjectField = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["render", _sfc_render$p], ["__scopeId", "data-v-6b3fc2f2"]]);
|
|
@@ -14636,7 +14658,7 @@ const _hoisted_3$c = {
|
|
|
14636
14658
|
class: "ux-field-description"
|
|
14637
14659
|
};
|
|
14638
14660
|
const _hoisted_4$c = { key: 2 };
|
|
14639
|
-
const _hoisted_5$
|
|
14661
|
+
const _hoisted_5$8 = { class: "ux-text-wrap prefixed" };
|
|
14640
14662
|
const _hoisted_6$7 = /* @__PURE__ */ _withScopeId$3(() => /* @__PURE__ */ createElementVNode("span", { class: "ux-text-prefix" }, "Label", -1));
|
|
14641
14663
|
const _hoisted_7$5 = ["onBlur", "on:update:modelValue", "onUpdate:modelValue"];
|
|
14642
14664
|
const _hoisted_8$2 = ["onBlur", "on:update:modelValue", "onUpdate:modelValue"];
|
|
@@ -14668,7 +14690,7 @@ function _sfc_render$o(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
14668
14690
|
default: withCtx(() => [
|
|
14669
14691
|
createVNode(_component_flex_cell, null, {
|
|
14670
14692
|
default: withCtx(() => [
|
|
14671
|
-
createElementVNode("div", _hoisted_5$
|
|
14693
|
+
createElementVNode("div", _hoisted_5$8, [
|
|
14672
14694
|
_hoisted_6$7,
|
|
14673
14695
|
$options.lazy ? withDirectives((openBlock(), createElementBlock("input", {
|
|
14674
14696
|
key: 0,
|
|
@@ -15000,7 +15022,7 @@ const _hoisted_3$b = {
|
|
|
15000
15022
|
class: "ux-field-description"
|
|
15001
15023
|
};
|
|
15002
15024
|
const _hoisted_4$b = { key: 2 };
|
|
15003
|
-
const _hoisted_5$
|
|
15025
|
+
const _hoisted_5$7 = { class: "code-editor-field-wrap" };
|
|
15004
15026
|
const _hoisted_6$6 = {
|
|
15005
15027
|
key: 3,
|
|
15006
15028
|
class: "code-editor-field-wrap"
|
|
@@ -15028,7 +15050,7 @@ function _sfc_render$m(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
15028
15050
|
default: withCtx(() => [
|
|
15029
15051
|
createVNode(_component_flex_cell, null, {
|
|
15030
15052
|
default: withCtx(() => [
|
|
15031
|
-
createElementVNode("div", _hoisted_5$
|
|
15053
|
+
createElementVNode("div", _hoisted_5$7, [
|
|
15032
15054
|
createVNode(_component_code_editor, {
|
|
15033
15055
|
lang: $options.syntax,
|
|
15034
15056
|
onFocus: _ctx.touch,
|
|
@@ -15168,7 +15190,7 @@ const _hoisted_3$a = {
|
|
|
15168
15190
|
class: "ux-field-description"
|
|
15169
15191
|
};
|
|
15170
15192
|
const _hoisted_4$a = { key: 2 };
|
|
15171
|
-
const _hoisted_5$
|
|
15193
|
+
const _hoisted_5$6 = { class: "richtext-field-wrap" };
|
|
15172
15194
|
const _hoisted_6$5 = {
|
|
15173
15195
|
key: 3,
|
|
15174
15196
|
class: "richtext-field-wrap"
|
|
@@ -15194,7 +15216,7 @@ function _sfc_render$k(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
15194
15216
|
default: withCtx(() => [
|
|
15195
15217
|
createVNode(_component_flex_cell, null, {
|
|
15196
15218
|
default: withCtx(() => [
|
|
15197
|
-
createElementVNode("div", _hoisted_5$
|
|
15219
|
+
createElementVNode("div", _hoisted_5$6, [
|
|
15198
15220
|
createVNode(_component_richtext, {
|
|
15199
15221
|
onFocus: _ctx.touch,
|
|
15200
15222
|
ref_for: true,
|
|
@@ -15389,7 +15411,7 @@ const _hoisted_4$9 = {
|
|
|
15389
15411
|
key: 2,
|
|
15390
15412
|
class: "ui-select-button"
|
|
15391
15413
|
};
|
|
15392
|
-
const _hoisted_5$
|
|
15414
|
+
const _hoisted_5$5 = ["multiple"];
|
|
15393
15415
|
const _hoisted_6$4 = {
|
|
15394
15416
|
key: 0,
|
|
15395
15417
|
value: ""
|
|
@@ -15426,7 +15448,7 @@ function _sfc_render$j(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
15426
15448
|
value: option2.value
|
|
15427
15449
|
}, toDisplayString(option2.title), 9, _hoisted_7$4);
|
|
15428
15450
|
}), 256))
|
|
15429
|
-
], 40, _hoisted_5$
|
|
15451
|
+
], 40, _hoisted_5$5), [
|
|
15430
15452
|
[vModelSelect, _ctx.model]
|
|
15431
15453
|
])
|
|
15432
15454
|
], 2);
|
|
@@ -15555,7 +15577,7 @@ const _hoisted_4$8 = {
|
|
|
15555
15577
|
key: 2,
|
|
15556
15578
|
class: "ui-select-button"
|
|
15557
15579
|
};
|
|
15558
|
-
const _hoisted_5$
|
|
15580
|
+
const _hoisted_5$4 = ["multiple"];
|
|
15559
15581
|
const _hoisted_6$3 = {
|
|
15560
15582
|
key: 0,
|
|
15561
15583
|
value: ""
|
|
@@ -15592,7 +15614,7 @@ function _sfc_render$i(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
15592
15614
|
value: option2.value
|
|
15593
15615
|
}, toDisplayString(option2.title), 9, _hoisted_7$3);
|
|
15594
15616
|
}), 256))
|
|
15595
|
-
], 40, _hoisted_5$
|
|
15617
|
+
], 40, _hoisted_5$4), [
|
|
15596
15618
|
[vModelSelect, _ctx.model]
|
|
15597
15619
|
])
|
|
15598
15620
|
], 2);
|
|
@@ -17424,7 +17446,280 @@ function _sfc_render$h(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
17424
17446
|
$options.error && $data.validateResults.message ? (openBlock(), createElementBlock("div", _hoisted_1$c, toDisplayString($data.validateResults.message), 1)) : createCommentVNode("", true)
|
|
17425
17447
|
], 34)) : createCommentVNode("", true);
|
|
17426
17448
|
}
|
|
17427
|
-
var UXFormField = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["render", _sfc_render$h], ["__scopeId", "data-v-
|
|
17449
|
+
var UXFormField = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["render", _sfc_render$h], ["__scopeId", "data-v-299e79b2"]]);
|
|
17450
|
+
function arrayReduce$1(array, iteratee, accumulator, initAccum) {
|
|
17451
|
+
var index2 = -1, length = array == null ? 0 : array.length;
|
|
17452
|
+
if (initAccum && length) {
|
|
17453
|
+
accumulator = array[++index2];
|
|
17454
|
+
}
|
|
17455
|
+
while (++index2 < length) {
|
|
17456
|
+
accumulator = iteratee(accumulator, array[index2], index2, array);
|
|
17457
|
+
}
|
|
17458
|
+
return accumulator;
|
|
17459
|
+
}
|
|
17460
|
+
var _arrayReduce = arrayReduce$1;
|
|
17461
|
+
function basePropertyOf$1(object) {
|
|
17462
|
+
return function(key) {
|
|
17463
|
+
return object == null ? void 0 : object[key];
|
|
17464
|
+
};
|
|
17465
|
+
}
|
|
17466
|
+
var _basePropertyOf = basePropertyOf$1;
|
|
17467
|
+
var basePropertyOf = _basePropertyOf;
|
|
17468
|
+
var deburredLetters = {
|
|
17469
|
+
"\xC0": "A",
|
|
17470
|
+
"\xC1": "A",
|
|
17471
|
+
"\xC2": "A",
|
|
17472
|
+
"\xC3": "A",
|
|
17473
|
+
"\xC4": "A",
|
|
17474
|
+
"\xC5": "A",
|
|
17475
|
+
"\xE0": "a",
|
|
17476
|
+
"\xE1": "a",
|
|
17477
|
+
"\xE2": "a",
|
|
17478
|
+
"\xE3": "a",
|
|
17479
|
+
"\xE4": "a",
|
|
17480
|
+
"\xE5": "a",
|
|
17481
|
+
"\xC7": "C",
|
|
17482
|
+
"\xE7": "c",
|
|
17483
|
+
"\xD0": "D",
|
|
17484
|
+
"\xF0": "d",
|
|
17485
|
+
"\xC8": "E",
|
|
17486
|
+
"\xC9": "E",
|
|
17487
|
+
"\xCA": "E",
|
|
17488
|
+
"\xCB": "E",
|
|
17489
|
+
"\xE8": "e",
|
|
17490
|
+
"\xE9": "e",
|
|
17491
|
+
"\xEA": "e",
|
|
17492
|
+
"\xEB": "e",
|
|
17493
|
+
"\xCC": "I",
|
|
17494
|
+
"\xCD": "I",
|
|
17495
|
+
"\xCE": "I",
|
|
17496
|
+
"\xCF": "I",
|
|
17497
|
+
"\xEC": "i",
|
|
17498
|
+
"\xED": "i",
|
|
17499
|
+
"\xEE": "i",
|
|
17500
|
+
"\xEF": "i",
|
|
17501
|
+
"\xD1": "N",
|
|
17502
|
+
"\xF1": "n",
|
|
17503
|
+
"\xD2": "O",
|
|
17504
|
+
"\xD3": "O",
|
|
17505
|
+
"\xD4": "O",
|
|
17506
|
+
"\xD5": "O",
|
|
17507
|
+
"\xD6": "O",
|
|
17508
|
+
"\xD8": "O",
|
|
17509
|
+
"\xF2": "o",
|
|
17510
|
+
"\xF3": "o",
|
|
17511
|
+
"\xF4": "o",
|
|
17512
|
+
"\xF5": "o",
|
|
17513
|
+
"\xF6": "o",
|
|
17514
|
+
"\xF8": "o",
|
|
17515
|
+
"\xD9": "U",
|
|
17516
|
+
"\xDA": "U",
|
|
17517
|
+
"\xDB": "U",
|
|
17518
|
+
"\xDC": "U",
|
|
17519
|
+
"\xF9": "u",
|
|
17520
|
+
"\xFA": "u",
|
|
17521
|
+
"\xFB": "u",
|
|
17522
|
+
"\xFC": "u",
|
|
17523
|
+
"\xDD": "Y",
|
|
17524
|
+
"\xFD": "y",
|
|
17525
|
+
"\xFF": "y",
|
|
17526
|
+
"\xC6": "Ae",
|
|
17527
|
+
"\xE6": "ae",
|
|
17528
|
+
"\xDE": "Th",
|
|
17529
|
+
"\xFE": "th",
|
|
17530
|
+
"\xDF": "ss",
|
|
17531
|
+
"\u0100": "A",
|
|
17532
|
+
"\u0102": "A",
|
|
17533
|
+
"\u0104": "A",
|
|
17534
|
+
"\u0101": "a",
|
|
17535
|
+
"\u0103": "a",
|
|
17536
|
+
"\u0105": "a",
|
|
17537
|
+
"\u0106": "C",
|
|
17538
|
+
"\u0108": "C",
|
|
17539
|
+
"\u010A": "C",
|
|
17540
|
+
"\u010C": "C",
|
|
17541
|
+
"\u0107": "c",
|
|
17542
|
+
"\u0109": "c",
|
|
17543
|
+
"\u010B": "c",
|
|
17544
|
+
"\u010D": "c",
|
|
17545
|
+
"\u010E": "D",
|
|
17546
|
+
"\u0110": "D",
|
|
17547
|
+
"\u010F": "d",
|
|
17548
|
+
"\u0111": "d",
|
|
17549
|
+
"\u0112": "E",
|
|
17550
|
+
"\u0114": "E",
|
|
17551
|
+
"\u0116": "E",
|
|
17552
|
+
"\u0118": "E",
|
|
17553
|
+
"\u011A": "E",
|
|
17554
|
+
"\u0113": "e",
|
|
17555
|
+
"\u0115": "e",
|
|
17556
|
+
"\u0117": "e",
|
|
17557
|
+
"\u0119": "e",
|
|
17558
|
+
"\u011B": "e",
|
|
17559
|
+
"\u011C": "G",
|
|
17560
|
+
"\u011E": "G",
|
|
17561
|
+
"\u0120": "G",
|
|
17562
|
+
"\u0122": "G",
|
|
17563
|
+
"\u011D": "g",
|
|
17564
|
+
"\u011F": "g",
|
|
17565
|
+
"\u0121": "g",
|
|
17566
|
+
"\u0123": "g",
|
|
17567
|
+
"\u0124": "H",
|
|
17568
|
+
"\u0126": "H",
|
|
17569
|
+
"\u0125": "h",
|
|
17570
|
+
"\u0127": "h",
|
|
17571
|
+
"\u0128": "I",
|
|
17572
|
+
"\u012A": "I",
|
|
17573
|
+
"\u012C": "I",
|
|
17574
|
+
"\u012E": "I",
|
|
17575
|
+
"\u0130": "I",
|
|
17576
|
+
"\u0129": "i",
|
|
17577
|
+
"\u012B": "i",
|
|
17578
|
+
"\u012D": "i",
|
|
17579
|
+
"\u012F": "i",
|
|
17580
|
+
"\u0131": "i",
|
|
17581
|
+
"\u0134": "J",
|
|
17582
|
+
"\u0135": "j",
|
|
17583
|
+
"\u0136": "K",
|
|
17584
|
+
"\u0137": "k",
|
|
17585
|
+
"\u0138": "k",
|
|
17586
|
+
"\u0139": "L",
|
|
17587
|
+
"\u013B": "L",
|
|
17588
|
+
"\u013D": "L",
|
|
17589
|
+
"\u013F": "L",
|
|
17590
|
+
"\u0141": "L",
|
|
17591
|
+
"\u013A": "l",
|
|
17592
|
+
"\u013C": "l",
|
|
17593
|
+
"\u013E": "l",
|
|
17594
|
+
"\u0140": "l",
|
|
17595
|
+
"\u0142": "l",
|
|
17596
|
+
"\u0143": "N",
|
|
17597
|
+
"\u0145": "N",
|
|
17598
|
+
"\u0147": "N",
|
|
17599
|
+
"\u014A": "N",
|
|
17600
|
+
"\u0144": "n",
|
|
17601
|
+
"\u0146": "n",
|
|
17602
|
+
"\u0148": "n",
|
|
17603
|
+
"\u014B": "n",
|
|
17604
|
+
"\u014C": "O",
|
|
17605
|
+
"\u014E": "O",
|
|
17606
|
+
"\u0150": "O",
|
|
17607
|
+
"\u014D": "o",
|
|
17608
|
+
"\u014F": "o",
|
|
17609
|
+
"\u0151": "o",
|
|
17610
|
+
"\u0154": "R",
|
|
17611
|
+
"\u0156": "R",
|
|
17612
|
+
"\u0158": "R",
|
|
17613
|
+
"\u0155": "r",
|
|
17614
|
+
"\u0157": "r",
|
|
17615
|
+
"\u0159": "r",
|
|
17616
|
+
"\u015A": "S",
|
|
17617
|
+
"\u015C": "S",
|
|
17618
|
+
"\u015E": "S",
|
|
17619
|
+
"\u0160": "S",
|
|
17620
|
+
"\u015B": "s",
|
|
17621
|
+
"\u015D": "s",
|
|
17622
|
+
"\u015F": "s",
|
|
17623
|
+
"\u0161": "s",
|
|
17624
|
+
"\u0162": "T",
|
|
17625
|
+
"\u0164": "T",
|
|
17626
|
+
"\u0166": "T",
|
|
17627
|
+
"\u0163": "t",
|
|
17628
|
+
"\u0165": "t",
|
|
17629
|
+
"\u0167": "t",
|
|
17630
|
+
"\u0168": "U",
|
|
17631
|
+
"\u016A": "U",
|
|
17632
|
+
"\u016C": "U",
|
|
17633
|
+
"\u016E": "U",
|
|
17634
|
+
"\u0170": "U",
|
|
17635
|
+
"\u0172": "U",
|
|
17636
|
+
"\u0169": "u",
|
|
17637
|
+
"\u016B": "u",
|
|
17638
|
+
"\u016D": "u",
|
|
17639
|
+
"\u016F": "u",
|
|
17640
|
+
"\u0171": "u",
|
|
17641
|
+
"\u0173": "u",
|
|
17642
|
+
"\u0174": "W",
|
|
17643
|
+
"\u0175": "w",
|
|
17644
|
+
"\u0176": "Y",
|
|
17645
|
+
"\u0177": "y",
|
|
17646
|
+
"\u0178": "Y",
|
|
17647
|
+
"\u0179": "Z",
|
|
17648
|
+
"\u017B": "Z",
|
|
17649
|
+
"\u017D": "Z",
|
|
17650
|
+
"\u017A": "z",
|
|
17651
|
+
"\u017C": "z",
|
|
17652
|
+
"\u017E": "z",
|
|
17653
|
+
"\u0132": "IJ",
|
|
17654
|
+
"\u0133": "ij",
|
|
17655
|
+
"\u0152": "Oe",
|
|
17656
|
+
"\u0153": "oe",
|
|
17657
|
+
"\u0149": "'n",
|
|
17658
|
+
"\u017F": "s"
|
|
17659
|
+
};
|
|
17660
|
+
var deburrLetter$1 = basePropertyOf(deburredLetters);
|
|
17661
|
+
var _deburrLetter = deburrLetter$1;
|
|
17662
|
+
var deburrLetter = _deburrLetter, toString$1 = toString_1;
|
|
17663
|
+
var reLatin = /[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g;
|
|
17664
|
+
var rsComboMarksRange$1 = "\\u0300-\\u036f", reComboHalfMarksRange$1 = "\\ufe20-\\ufe2f", rsComboSymbolsRange$1 = "\\u20d0-\\u20ff", rsComboRange$1 = rsComboMarksRange$1 + reComboHalfMarksRange$1 + rsComboSymbolsRange$1;
|
|
17665
|
+
var rsCombo$1 = "[" + rsComboRange$1 + "]";
|
|
17666
|
+
var reComboMark = RegExp(rsCombo$1, "g");
|
|
17667
|
+
function deburr$1(string) {
|
|
17668
|
+
string = toString$1(string);
|
|
17669
|
+
return string && string.replace(reLatin, deburrLetter).replace(reComboMark, "");
|
|
17670
|
+
}
|
|
17671
|
+
var deburr_1 = deburr$1;
|
|
17672
|
+
var reAsciiWord = /[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g;
|
|
17673
|
+
function asciiWords$1(string) {
|
|
17674
|
+
return string.match(reAsciiWord) || [];
|
|
17675
|
+
}
|
|
17676
|
+
var _asciiWords = asciiWords$1;
|
|
17677
|
+
var reHasUnicodeWord = /[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/;
|
|
17678
|
+
function hasUnicodeWord$1(string) {
|
|
17679
|
+
return reHasUnicodeWord.test(string);
|
|
17680
|
+
}
|
|
17681
|
+
var _hasUnicodeWord = hasUnicodeWord$1;
|
|
17682
|
+
var rsAstralRange = "\\ud800-\\udfff", rsComboMarksRange = "\\u0300-\\u036f", reComboHalfMarksRange = "\\ufe20-\\ufe2f", rsComboSymbolsRange = "\\u20d0-\\u20ff", rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange, rsDingbatRange = "\\u2700-\\u27bf", rsLowerRange = "a-z\\xdf-\\xf6\\xf8-\\xff", rsMathOpRange = "\\xac\\xb1\\xd7\\xf7", rsNonCharRange = "\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf", rsPunctuationRange = "\\u2000-\\u206f", rsSpaceRange = " \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000", rsUpperRange = "A-Z\\xc0-\\xd6\\xd8-\\xde", rsVarRange = "\\ufe0e\\ufe0f", rsBreakRange = rsMathOpRange + rsNonCharRange + rsPunctuationRange + rsSpaceRange;
|
|
17683
|
+
var rsApos$1 = "['\u2019]", rsBreak = "[" + rsBreakRange + "]", rsCombo = "[" + rsComboRange + "]", rsDigits = "\\d+", rsDingbat = "[" + rsDingbatRange + "]", rsLower = "[" + rsLowerRange + "]", rsMisc = "[^" + rsAstralRange + rsBreakRange + rsDigits + rsDingbatRange + rsLowerRange + rsUpperRange + "]", rsFitz = "\\ud83c[\\udffb-\\udfff]", rsModifier = "(?:" + rsCombo + "|" + rsFitz + ")", rsNonAstral = "[^" + rsAstralRange + "]", rsRegional = "(?:\\ud83c[\\udde6-\\uddff]){2}", rsSurrPair = "[\\ud800-\\udbff][\\udc00-\\udfff]", rsUpper = "[" + rsUpperRange + "]", rsZWJ = "\\u200d";
|
|
17684
|
+
var rsMiscLower = "(?:" + rsLower + "|" + rsMisc + ")", rsMiscUpper = "(?:" + rsUpper + "|" + rsMisc + ")", rsOptContrLower = "(?:" + rsApos$1 + "(?:d|ll|m|re|s|t|ve))?", rsOptContrUpper = "(?:" + rsApos$1 + "(?:D|LL|M|RE|S|T|VE))?", reOptMod = rsModifier + "?", rsOptVar = "[" + rsVarRange + "]?", rsOptJoin = "(?:" + rsZWJ + "(?:" + [rsNonAstral, rsRegional, rsSurrPair].join("|") + ")" + rsOptVar + reOptMod + ")*", rsOrdLower = "\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])", rsOrdUpper = "\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])", rsSeq = rsOptVar + reOptMod + rsOptJoin, rsEmoji = "(?:" + [rsDingbat, rsRegional, rsSurrPair].join("|") + ")" + rsSeq;
|
|
17685
|
+
var reUnicodeWord = RegExp([
|
|
17686
|
+
rsUpper + "?" + rsLower + "+" + rsOptContrLower + "(?=" + [rsBreak, rsUpper, "$"].join("|") + ")",
|
|
17687
|
+
rsMiscUpper + "+" + rsOptContrUpper + "(?=" + [rsBreak, rsUpper + rsMiscLower, "$"].join("|") + ")",
|
|
17688
|
+
rsUpper + "?" + rsMiscLower + "+" + rsOptContrLower,
|
|
17689
|
+
rsUpper + "+" + rsOptContrUpper,
|
|
17690
|
+
rsOrdUpper,
|
|
17691
|
+
rsOrdLower,
|
|
17692
|
+
rsDigits,
|
|
17693
|
+
rsEmoji
|
|
17694
|
+
].join("|"), "g");
|
|
17695
|
+
function unicodeWords$1(string) {
|
|
17696
|
+
return string.match(reUnicodeWord) || [];
|
|
17697
|
+
}
|
|
17698
|
+
var _unicodeWords = unicodeWords$1;
|
|
17699
|
+
var asciiWords = _asciiWords, hasUnicodeWord = _hasUnicodeWord, toString = toString_1, unicodeWords = _unicodeWords;
|
|
17700
|
+
function words$1(string, pattern, guard) {
|
|
17701
|
+
string = toString(string);
|
|
17702
|
+
pattern = guard ? void 0 : pattern;
|
|
17703
|
+
if (pattern === void 0) {
|
|
17704
|
+
return hasUnicodeWord(string) ? unicodeWords(string) : asciiWords(string);
|
|
17705
|
+
}
|
|
17706
|
+
return string.match(pattern) || [];
|
|
17707
|
+
}
|
|
17708
|
+
var words_1 = words$1;
|
|
17709
|
+
var arrayReduce = _arrayReduce, deburr = deburr_1, words = words_1;
|
|
17710
|
+
var rsApos = "['\u2019]";
|
|
17711
|
+
var reApos = RegExp(rsApos, "g");
|
|
17712
|
+
function createCompounder$1(callback) {
|
|
17713
|
+
return function(string) {
|
|
17714
|
+
return arrayReduce(words(deburr(string).replace(reApos, "")), callback, "");
|
|
17715
|
+
};
|
|
17716
|
+
}
|
|
17717
|
+
var _createCompounder = createCompounder$1;
|
|
17718
|
+
var createCompounder = _createCompounder;
|
|
17719
|
+
var kebabCase = createCompounder(function(result, word, index2) {
|
|
17720
|
+
return result + (index2 ? "-" : "") + word.toLowerCase();
|
|
17721
|
+
});
|
|
17722
|
+
var kebabCase_1 = kebabCase;
|
|
17428
17723
|
var form_vue_vue_type_style_index_0_scoped_true_lang = "";
|
|
17429
17724
|
const _sfc_main$g = {
|
|
17430
17725
|
props: {
|
|
@@ -17494,6 +17789,13 @@ const _sfc_main$g = {
|
|
|
17494
17789
|
self2.mounted = false;
|
|
17495
17790
|
},
|
|
17496
17791
|
methods: {
|
|
17792
|
+
getFieldKey(field) {
|
|
17793
|
+
const key = kebabCase_1(`${field.title}-${field.key}`);
|
|
17794
|
+
if (field.incrementor) {
|
|
17795
|
+
key = `${key}-${field.incrementor}`;
|
|
17796
|
+
}
|
|
17797
|
+
return key;
|
|
17798
|
+
},
|
|
17497
17799
|
touch() {
|
|
17498
17800
|
(this.childFormElements || []).forEach(function(field) {
|
|
17499
17801
|
field.touch();
|
|
@@ -17640,7 +17942,17 @@ const _sfc_main$g = {
|
|
|
17640
17942
|
}
|
|
17641
17943
|
},
|
|
17642
17944
|
renderFields() {
|
|
17643
|
-
return this.fields.filter(
|
|
17945
|
+
return this.fields.filter(function(entry) {
|
|
17946
|
+
if (!entry) {
|
|
17947
|
+
return;
|
|
17948
|
+
}
|
|
17949
|
+
if (entry.includeIf && typeof entry.includeIf === "function") {
|
|
17950
|
+
return entry.includeIf(entry);
|
|
17951
|
+
} else if (entry.excludeIf && typeof entry.excludeIf === "function") {
|
|
17952
|
+
return !entry.excludeIf(entry);
|
|
17953
|
+
}
|
|
17954
|
+
return true;
|
|
17955
|
+
});
|
|
17644
17956
|
}
|
|
17645
17957
|
}
|
|
17646
17958
|
};
|
|
@@ -17673,13 +17985,13 @@ function _sfc_render$g(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
17673
17985
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $options.formModel = $event),
|
|
17674
17986
|
parentModel: $props.parentModel || $options.formModel,
|
|
17675
17987
|
class: normalizeClass($options.fieldClass),
|
|
17676
|
-
key: `ux-form-field-${field
|
|
17988
|
+
key: `ux-form-field-${$options.getFieldKey(field)}-${index2}`
|
|
17677
17989
|
}, null, 8, ["trail", "submission", "onField:mount", "onField:unmount", "onField:dirty", "onField:invalid", "onField:valid", "onField:error", "onField:focus", "onField:blur", "onField:touched", "field", "modelValue", "parentModel", "class"]);
|
|
17678
17990
|
}), 128))
|
|
17679
17991
|
], true)
|
|
17680
17992
|
], 2);
|
|
17681
17993
|
}
|
|
17682
|
-
var UXForm = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["render", _sfc_render$g], ["__scopeId", "data-v-
|
|
17994
|
+
var UXForm = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["render", _sfc_render$g], ["__scopeId", "data-v-d200c51c"]]);
|
|
17683
17995
|
var submissionform_vue_vue_type_style_index_0_scoped_true_lang = "";
|
|
17684
17996
|
const STATE_READY = "form.ready";
|
|
17685
17997
|
const STATE_PROCESSING = "form.processing";
|
|
@@ -17815,7 +18127,7 @@ const _hoisted_1$b = { class: "ux-submission-form" };
|
|
|
17815
18127
|
const _hoisted_2$9 = /* @__PURE__ */ _withScopeId$2(() => /* @__PURE__ */ createElementVNode("h3", null, "An error occurred", -1));
|
|
17816
18128
|
const _hoisted_3$7 = { key: 0 };
|
|
17817
18129
|
const _hoisted_4$7 = { key: 1 };
|
|
17818
|
-
const _hoisted_5$
|
|
18130
|
+
const _hoisted_5$3 = { key: 2 };
|
|
17819
18131
|
const _hoisted_6$2 = /* @__PURE__ */ createTextVNode(" Try again ");
|
|
17820
18132
|
const _hoisted_7$2 = /* @__PURE__ */ createTextVNode(" Thank you ");
|
|
17821
18133
|
const _hoisted_8$1 = /* @__PURE__ */ createTextVNode(" Back to form ");
|
|
@@ -17836,7 +18148,7 @@ function _sfc_render$f(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
17836
18148
|
key: field.path
|
|
17837
18149
|
}, toDisplayString(field.message), 1);
|
|
17838
18150
|
}), 128))
|
|
17839
|
-
])) : (openBlock(), createElementBlock("pre", _hoisted_5$
|
|
18151
|
+
])) : (openBlock(), createElementBlock("pre", _hoisted_5$3, toDisplayString($data.error), 1)),
|
|
17840
18152
|
createVNode(_component_ux_button, {
|
|
17841
18153
|
color: "primary",
|
|
17842
18154
|
onClick: $options.softReset
|
|
@@ -18191,6 +18503,9 @@ const _sfc_main$c = {
|
|
|
18191
18503
|
};
|
|
18192
18504
|
},
|
|
18193
18505
|
methods: {
|
|
18506
|
+
renderDate(d) {
|
|
18507
|
+
return DateTime.fromJSDate(new Date(d)).toFormat("h:mma - ccc, DD");
|
|
18508
|
+
},
|
|
18194
18509
|
formatCurrency(val) {
|
|
18195
18510
|
return `${this.$sdk.utils.formatCurrency(val, this.field.currency)}`.toUpperCase();
|
|
18196
18511
|
},
|
|
@@ -18364,7 +18679,7 @@ const _hoisted_1$8 = { class: "ux-field-title" };
|
|
|
18364
18679
|
const _hoisted_2$7 = { class: "currency" };
|
|
18365
18680
|
const _hoisted_3$6 = { key: 1 };
|
|
18366
18681
|
const _hoisted_4$6 = { class: "currency" };
|
|
18367
|
-
const _hoisted_5$
|
|
18682
|
+
const _hoisted_5$2 = ["innerHTML"];
|
|
18368
18683
|
const _hoisted_6$1 = ["innerHTML"];
|
|
18369
18684
|
const _hoisted_7$1 = { key: 1 };
|
|
18370
18685
|
const _hoisted_8 = { key: 1 };
|
|
@@ -18432,7 +18747,7 @@ function _sfc_render$c(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
18432
18747
|
], 64)) : createCommentVNode("", true),
|
|
18433
18748
|
$options.type == "string" ? (openBlock(), createElementBlock(Fragment, { key: 1 }, [
|
|
18434
18749
|
$options.multiValue ? (openBlock(true), createElementBlock(Fragment, { key: 0 }, renderList($options.fieldModel, (value, index2) => {
|
|
18435
|
-
return openBlock(), createElementBlock("div", { innerHTML: value }, null, 8, _hoisted_5$
|
|
18750
|
+
return openBlock(), createElementBlock("div", { innerHTML: value }, null, 8, _hoisted_5$2);
|
|
18436
18751
|
}), 256)) : (openBlock(), createElementBlock("div", {
|
|
18437
18752
|
key: 1,
|
|
18438
18753
|
innerHTML: $options.fieldModel
|
|
@@ -18445,8 +18760,8 @@ function _sfc_render$c(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
18445
18760
|
], 64)) : createCommentVNode("", true),
|
|
18446
18761
|
$options.type == "date" ? (openBlock(), createElementBlock(Fragment, { key: 3 }, [
|
|
18447
18762
|
$options.multiValue ? (openBlock(true), createElementBlock(Fragment, { key: 0 }, renderList($options.fieldModel, (value, index2) => {
|
|
18448
|
-
return openBlock(), createElementBlock("div", null, toDisplayString(value), 1);
|
|
18449
|
-
}), 256)) : (openBlock(), createElementBlock("div", _hoisted_8, toDisplayString($options.fieldModel), 1))
|
|
18763
|
+
return openBlock(), createElementBlock("div", null, toDisplayString($options.renderDate(value)), 1);
|
|
18764
|
+
}), 256)) : (openBlock(), createElementBlock("div", _hoisted_8, toDisplayString($options.renderDate($options.fieldModel)), 1))
|
|
18450
18765
|
], 64)) : createCommentVNode("", true),
|
|
18451
18766
|
$options.type == "email" ? (openBlock(), createElementBlock(Fragment, { key: 4 }, [
|
|
18452
18767
|
$options.multiValue ? (openBlock(true), createElementBlock(Fragment, { key: 0 }, renderList($options.fieldModel, (value, index2) => {
|
|
@@ -18478,7 +18793,7 @@ function _sfc_render$c(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
18478
18793
|
], 64))
|
|
18479
18794
|
], 2)) : createCommentVNode("", true);
|
|
18480
18795
|
}
|
|
18481
|
-
var UXRenderField = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["render", _sfc_render$c], ["__scopeId", "data-v-
|
|
18796
|
+
var UXRenderField = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["render", _sfc_render$c], ["__scopeId", "data-v-59217434"]]);
|
|
18482
18797
|
var render_vue_vue_type_style_index_0_scoped_true_lang = "";
|
|
18483
18798
|
const _sfc_main$b = {
|
|
18484
18799
|
props: {
|
|
@@ -19073,6 +19388,10 @@ const _sfc_main$9 = {
|
|
|
19073
19388
|
type: Boolean,
|
|
19074
19389
|
default: false
|
|
19075
19390
|
},
|
|
19391
|
+
enableSelection: {
|
|
19392
|
+
type: Boolean,
|
|
19393
|
+
default: true
|
|
19394
|
+
},
|
|
19076
19395
|
trash: {
|
|
19077
19396
|
type: Boolean,
|
|
19078
19397
|
default: false
|
|
@@ -19553,7 +19872,7 @@ const _sfc_main$9 = {
|
|
|
19553
19872
|
};
|
|
19554
19873
|
}
|
|
19555
19874
|
};
|
|
19556
|
-
const _withScopeId$1 = (n2) => (pushScopeId("data-v-
|
|
19875
|
+
const _withScopeId$1 = (n2) => (pushScopeId("data-v-50180812"), n2 = n2(), popScopeId(), n2);
|
|
19557
19876
|
const _hoisted_1$7 = /* @__PURE__ */ _withScopeId$1(() => /* @__PURE__ */ createElementVNode("p", null, null, -1));
|
|
19558
19877
|
const _hoisted_2$6 = { key: 0 };
|
|
19559
19878
|
const _hoisted_3$5 = /* @__PURE__ */ _withScopeId$1(() => /* @__PURE__ */ createElementVNode("p", null, null, -1));
|
|
@@ -19602,6 +19921,7 @@ function _sfc_render$9(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
19602
19921
|
key: 1,
|
|
19603
19922
|
sort: $data.sort,
|
|
19604
19923
|
"onUpdate:sort": _cache[0] || (_cache[0] = ($event) => $data.sort = $event),
|
|
19924
|
+
enableSelection: $props.enableSelection,
|
|
19605
19925
|
enableActions: $props.enableActions,
|
|
19606
19926
|
total: $options.totalItems,
|
|
19607
19927
|
selectAll: $options.selectAll,
|
|
@@ -19651,7 +19971,7 @@ function _sfc_render$9(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
19651
19971
|
})
|
|
19652
19972
|
]),
|
|
19653
19973
|
_: 1
|
|
19654
|
-
}, 8, ["sort", "enableActions", "total", "selectAll", "deselectAll", "selection", "onClick:row", "onClick:actions", "onSelect:row:toggle", "onSelect:multiple", "onDeselect:multiple", "rows", "columns"]))
|
|
19974
|
+
}, 8, ["sort", "enableSelection", "enableActions", "total", "selectAll", "deselectAll", "selection", "onClick:row", "onClick:actions", "onSelect:row:toggle", "onSelect:multiple", "onDeselect:multiple", "rows", "columns"]))
|
|
19655
19975
|
]),
|
|
19656
19976
|
_: 1
|
|
19657
19977
|
})) : !$data.loading ? (openBlock(), createBlock(_component_flex_column, {
|
|
@@ -19743,7 +20063,7 @@ function _sfc_render$9(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
19743
20063
|
_: 3
|
|
19744
20064
|
})) : createCommentVNode("", true);
|
|
19745
20065
|
}
|
|
19746
|
-
var ContentBrowser = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["render", _sfc_render$9], ["__scopeId", "data-v-
|
|
20066
|
+
var ContentBrowser = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["render", _sfc_render$9], ["__scopeId", "data-v-50180812"]]);
|
|
19747
20067
|
var ScopeItem_vue_vue_type_style_index_0_scoped_true_lang = "";
|
|
19748
20068
|
const _sfc_main$8 = {
|
|
19749
20069
|
props: {
|
|
@@ -20164,9 +20484,10 @@ const _sfc_main$4 = {
|
|
|
20164
20484
|
mixins: [ModalMixin]
|
|
20165
20485
|
};
|
|
20166
20486
|
const _hoisted_1$4 = { class: "padder" };
|
|
20167
|
-
const _hoisted_2$4 =
|
|
20168
|
-
const _hoisted_3$4 =
|
|
20169
|
-
const _hoisted_4$4 = /* @__PURE__ */ createTextVNode("
|
|
20487
|
+
const _hoisted_2$4 = ["innerHTML"];
|
|
20488
|
+
const _hoisted_3$4 = { class: "padder" };
|
|
20489
|
+
const _hoisted_4$4 = /* @__PURE__ */ createTextVNode("Cancel");
|
|
20490
|
+
const _hoisted_5$1 = /* @__PURE__ */ createTextVNode("Confirm");
|
|
20170
20491
|
function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
20171
20492
|
const _component_flex_body = resolveComponent("flex-body");
|
|
20172
20493
|
const _component_ux_button = resolveComponent("ux-button");
|
|
@@ -20180,21 +20501,23 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
20180
20501
|
default: withCtx(() => [
|
|
20181
20502
|
createElementVNode("div", _hoisted_1$4, [
|
|
20182
20503
|
createElementVNode("h5", null, toDisplayString(_ctx.options.title), 1),
|
|
20183
|
-
createElementVNode("div",
|
|
20504
|
+
createElementVNode("div", {
|
|
20505
|
+
innerHTML: _ctx.options.description
|
|
20506
|
+
}, null, 8, _hoisted_2$4)
|
|
20184
20507
|
])
|
|
20185
20508
|
]),
|
|
20186
20509
|
_: 1
|
|
20187
20510
|
}),
|
|
20188
20511
|
createVNode(_component_flex_footer, null, {
|
|
20189
20512
|
default: withCtx(() => [
|
|
20190
|
-
createElementVNode("div",
|
|
20513
|
+
createElementVNode("div", _hoisted_3$4, [
|
|
20191
20514
|
createVNode(_component_flex_row, null, {
|
|
20192
20515
|
default: withCtx(() => [
|
|
20193
20516
|
createVNode(_component_flex_cell, null, {
|
|
20194
20517
|
default: withCtx(() => [
|
|
20195
20518
|
createVNode(_component_ux_button, { onClick: _ctx.dismiss }, {
|
|
20196
20519
|
default: withCtx(() => [
|
|
20197
|
-
|
|
20520
|
+
_hoisted_4$4
|
|
20198
20521
|
]),
|
|
20199
20522
|
_: 1
|
|
20200
20523
|
}, 8, ["onClick"])
|
|
@@ -20205,7 +20528,7 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
20205
20528
|
default: withCtx(() => [
|
|
20206
20529
|
createVNode(_component_ux_button, { onClick: _ctx.close }, {
|
|
20207
20530
|
default: withCtx(() => [
|
|
20208
|
-
|
|
20531
|
+
_hoisted_5$1
|
|
20209
20532
|
]),
|
|
20210
20533
|
_: 1
|
|
20211
20534
|
}, 8, ["onClick"])
|
|
@@ -20223,7 +20546,7 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
20223
20546
|
_: 1
|
|
20224
20547
|
});
|
|
20225
20548
|
}
|
|
20226
|
-
var UxConfirmModal = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["render", _sfc_render$4], ["__scopeId", "data-v-
|
|
20549
|
+
var UxConfirmModal = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["render", _sfc_render$4], ["__scopeId", "data-v-f9a36fea"]]);
|
|
20227
20550
|
var OptionsModal_vue_vue_type_style_index_0_scoped_true_lang = "";
|
|
20228
20551
|
const _sfc_main$3 = {
|
|
20229
20552
|
data() {
|