vue3-beak-ui-framework 1.0.35 → 1.0.37
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.
|
@@ -8686,7 +8686,7 @@ const _withScopeId$6 = (e) => (pushScopeId("data-v-c342282a"), e = e(), popScope
|
|
|
8686
8686
|
setup(e, { emit: n }) {
|
|
8687
8687
|
const a = e;
|
|
8688
8688
|
useCssVars((de) => ({
|
|
8689
|
-
|
|
8689
|
+
c55a1e0a: unref(s)
|
|
8690
8690
|
}));
|
|
8691
8691
|
const s = computed$1(() => {
|
|
8692
8692
|
let de = "16px";
|
|
@@ -8705,7 +8705,7 @@ const _withScopeId$6 = (e) => (pushScopeId("data-v-c342282a"), e = e(), popScope
|
|
|
8705
8705
|
value: a.value,
|
|
8706
8706
|
onChange: ue
|
|
8707
8707
|
}, null, 40, _hoisted_1$n),
|
|
8708
|
-
createElementVNode("
|
|
8708
|
+
createElementVNode("span", {
|
|
8709
8709
|
class: normalizeClass(["checkbox-body", [
|
|
8710
8710
|
a.solid ? "is-solid" : "",
|
|
8711
8711
|
a.circle && "is-circle",
|
|
@@ -8716,7 +8716,7 @@ const _withScopeId$6 = (e) => (pushScopeId("data-v-c342282a"), e = e(), popScope
|
|
|
8716
8716
|
createTextVNode(" " + toDisplayString$1(a.label), 1)
|
|
8717
8717
|
], 2));
|
|
8718
8718
|
}
|
|
8719
|
-
}),
|
|
8719
|
+
}), VCheckbox_vue_vue_type_style_index_0_scoped_10c6411c_lang = "", BWCheckbox = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__scopeId", "data-v-10c6411c"]]);
|
|
8720
8720
|
function _objectWithoutPropertiesLoose(e, n) {
|
|
8721
8721
|
if (e == null)
|
|
8722
8722
|
return {};
|
|
@@ -10571,7 +10571,7 @@ const _hoisted_1$m = ["value"], _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
|
10571
10571
|
}
|
|
10572
10572
|
}), _hoisted_1$l = { class: "mpcontainer" }, _hoisted_2$g = { class: "minusplusnumber" }, _hoisted_3$b = /* @__PURE__ */ createElementVNode("i", { class: "lnil lnil-minus" }, null, -1), _hoisted_4$9 = [
|
|
10573
10573
|
_hoisted_3$b
|
|
10574
|
-
], _hoisted_5$7 = { id: "field_container" }, _hoisted_6$5 = ["min", "max", "placeholder"], _hoisted_7$4 = /* @__PURE__ */ createElementVNode("i", { class: "lnil lnil-plus" }, null, -1), _hoisted_8$4 = [
|
|
10574
|
+
], _hoisted_5$7 = { id: "field_container" }, _hoisted_6$5 = ["min", "max", "placeholder", "disabled", "readonly"], _hoisted_7$4 = /* @__PURE__ */ createElementVNode("i", { class: "lnil lnil-plus" }, null, -1), _hoisted_8$4 = [
|
|
10575
10575
|
_hoisted_7$4
|
|
10576
10576
|
], _sfc_main$m = /* @__PURE__ */ defineComponent({
|
|
10577
10577
|
__name: "V-PlusMinusInput",
|
|
@@ -10600,15 +10600,35 @@ const _hoisted_1$m = ["value"], _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
|
10600
10600
|
type: String,
|
|
10601
10601
|
default: "primary",
|
|
10602
10602
|
validator: function(e) {
|
|
10603
|
-
return [void 0, "primary", "info", "success", "warning", "danger"].indexOf(
|
|
10603
|
+
return [void 0, "primary", "info", "success", "warning", "danger"].indexOf(
|
|
10604
|
+
e
|
|
10605
|
+
) === -1 ? (console.warn(
|
|
10606
|
+
`V-Button: invalid "${e}" color. Should be primary, info, success, warning, danger, or undefined`
|
|
10607
|
+
), !1) : !0;
|
|
10604
10608
|
}
|
|
10605
10609
|
},
|
|
10606
10610
|
minusColor: {
|
|
10607
10611
|
type: String,
|
|
10608
10612
|
default: "primary",
|
|
10609
10613
|
validator: function(e) {
|
|
10610
|
-
return [void 0, "primary", "info", "success", "warning", "danger"].indexOf(
|
|
10614
|
+
return [void 0, "primary", "info", "success", "warning", "danger"].indexOf(
|
|
10615
|
+
e
|
|
10616
|
+
) === -1 ? (console.warn(
|
|
10617
|
+
`V-Button: invalid "${e}" color. Should be primary, info, success, warning, danger, or undefined`
|
|
10618
|
+
), !1) : !0;
|
|
10611
10619
|
}
|
|
10620
|
+
},
|
|
10621
|
+
readonly: {
|
|
10622
|
+
type: Boolean,
|
|
10623
|
+
default: !0
|
|
10624
|
+
},
|
|
10625
|
+
inputtable: {
|
|
10626
|
+
type: Boolean,
|
|
10627
|
+
default: !0
|
|
10628
|
+
},
|
|
10629
|
+
disabled: {
|
|
10630
|
+
type: Boolean,
|
|
10631
|
+
default: !0
|
|
10612
10632
|
}
|
|
10613
10633
|
},
|
|
10614
10634
|
emits: ["update:modelValue"],
|
|
@@ -10640,7 +10660,8 @@ const _hoisted_1$m = ["value"], _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
|
10640
10660
|
min: e.min,
|
|
10641
10661
|
max: e.max,
|
|
10642
10662
|
placeholder: e.placeholder,
|
|
10643
|
-
disabled:
|
|
10663
|
+
disabled: e.disabled,
|
|
10664
|
+
readonly: e.readonly
|
|
10644
10665
|
}, null, 8, _hoisted_6$5), [
|
|
10645
10666
|
[vModelText, s.value]
|
|
10646
10667
|
])
|
|
@@ -66895,7 +66916,7 @@ class Columns {
|
|
|
66895
66916
|
const me = o.headings[n], t = [];
|
|
66896
66917
|
if (me.getAttribute("data-type") === "date") {
|
|
66897
66918
|
let i = !1;
|
|
66898
|
-
me.hasAttribute("data-format") && (i = me.getAttribute("data-format")), t.push(import("./date.
|
|
66919
|
+
me.hasAttribute("data-format") && (i = me.getAttribute("data-format")), t.push(import("./date.ef0ce3de.js").then(({ parseDate: Ie }) => (ke) => Ie(ke, i)));
|
|
66899
66920
|
}
|
|
66900
66921
|
Promise.all(t).then((i) => {
|
|
66901
66922
|
const ve = i[0];
|