@bagelink/vue 0.0.83 → 0.0.85
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.cjs +43 -82
- package/dist/index.mjs +43 -82
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -566,7 +566,7 @@ class MutableReactiveHandler extends BaseReactiveHandler {
|
|
|
566
566
|
return false;
|
|
567
567
|
}
|
|
568
568
|
if (!this._shallow) {
|
|
569
|
-
if (!isShallow
|
|
569
|
+
if (!isShallow(value) && !isReadonly(value)) {
|
|
570
570
|
oldValue = toRaw(oldValue);
|
|
571
571
|
value = toRaw(value);
|
|
572
572
|
}
|
|
@@ -639,7 +639,7 @@ const readonlyHandlers = /* @__PURE__ */ new ReadonlyReactiveHandler();
|
|
|
639
639
|
const shallowReadonlyHandlers = /* @__PURE__ */ new ReadonlyReactiveHandler(true);
|
|
640
640
|
const toShallow = (value) => value;
|
|
641
641
|
const getProto = (v) => Reflect.getPrototypeOf(v);
|
|
642
|
-
function get(target, key, isReadonly2 = false,
|
|
642
|
+
function get(target, key, isReadonly2 = false, isShallow3 = false) {
|
|
643
643
|
target = target["__v_raw"];
|
|
644
644
|
const rawTarget = toRaw(target);
|
|
645
645
|
const rawKey = toRaw(key);
|
|
@@ -650,7 +650,7 @@ function get(target, key, isReadonly2 = false, isShallow2 = false) {
|
|
|
650
650
|
track(rawTarget, "get", rawKey);
|
|
651
651
|
}
|
|
652
652
|
const { has: has2 } = getProto(rawTarget);
|
|
653
|
-
const wrap2 =
|
|
653
|
+
const wrap2 = isShallow3 ? toShallow : isReadonly2 ? toReadonly : toReactive;
|
|
654
654
|
if (has2.call(rawTarget, key)) {
|
|
655
655
|
return wrap2(target.get(key));
|
|
656
656
|
} else if (has2.call(rawTarget, rawKey)) {
|
|
@@ -734,19 +734,19 @@ function clear() {
|
|
|
734
734
|
}
|
|
735
735
|
return result;
|
|
736
736
|
}
|
|
737
|
-
function createForEach(isReadonly2,
|
|
737
|
+
function createForEach(isReadonly2, isShallow3) {
|
|
738
738
|
return function forEach3(callback, thisArg) {
|
|
739
739
|
const observed = this;
|
|
740
740
|
const target = observed["__v_raw"];
|
|
741
741
|
const rawTarget = toRaw(target);
|
|
742
|
-
const wrap2 =
|
|
742
|
+
const wrap2 = isShallow3 ? toShallow : isReadonly2 ? toReadonly : toReactive;
|
|
743
743
|
!isReadonly2 && track(rawTarget, "iterate", ITERATE_KEY);
|
|
744
744
|
return target.forEach((value, key) => {
|
|
745
745
|
return callback.call(thisArg, wrap2(value), wrap2(key), observed);
|
|
746
746
|
});
|
|
747
747
|
};
|
|
748
748
|
}
|
|
749
|
-
function createIterableMethod(method, isReadonly2,
|
|
749
|
+
function createIterableMethod(method, isReadonly2, isShallow3) {
|
|
750
750
|
return function(...args) {
|
|
751
751
|
const target = this["__v_raw"];
|
|
752
752
|
const rawTarget = toRaw(target);
|
|
@@ -754,7 +754,7 @@ function createIterableMethod(method, isReadonly2, isShallow2) {
|
|
|
754
754
|
const isPair = method === "entries" || method === Symbol.iterator && targetIsMap;
|
|
755
755
|
const isKeyOnly = method === "keys" && targetIsMap;
|
|
756
756
|
const innerIterator = target[method](...args);
|
|
757
|
-
const wrap2 =
|
|
757
|
+
const wrap2 = isShallow3 ? toShallow : isReadonly2 ? toReadonly : toReactive;
|
|
758
758
|
!isReadonly2 && track(
|
|
759
759
|
rawTarget,
|
|
760
760
|
"iterate",
|
|
@@ -1005,7 +1005,7 @@ function isReactive(value) {
|
|
|
1005
1005
|
function isReadonly(value) {
|
|
1006
1006
|
return !!(value && value["__v_isReadonly"]);
|
|
1007
1007
|
}
|
|
1008
|
-
function isShallow
|
|
1008
|
+
function isShallow(value) {
|
|
1009
1009
|
return !!(value && value["__v_isShallow"]);
|
|
1010
1010
|
}
|
|
1011
1011
|
function isProxy(value) {
|
|
@@ -1076,7 +1076,7 @@ class RefImpl {
|
|
|
1076
1076
|
return this._value;
|
|
1077
1077
|
}
|
|
1078
1078
|
set value(newVal) {
|
|
1079
|
-
const useDirectValue = this.__v_isShallow || isShallow
|
|
1079
|
+
const useDirectValue = this.__v_isShallow || isShallow(newVal) || isReadonly(newVal);
|
|
1080
1080
|
newVal = useDirectValue ? newVal : toRaw(newVal);
|
|
1081
1081
|
if (hasChanged(newVal, this._rawValue)) {
|
|
1082
1082
|
this._rawValue = newVal;
|
|
@@ -1743,9 +1743,9 @@ function queueEffectWithSuspense(fn, suspense) {
|
|
|
1743
1743
|
queuePostFlushCb(fn);
|
|
1744
1744
|
}
|
|
1745
1745
|
}
|
|
1746
|
-
function watchPostEffect(
|
|
1746
|
+
function watchPostEffect(effect2, options) {
|
|
1747
1747
|
return doWatch(
|
|
1748
|
-
|
|
1748
|
+
effect2,
|
|
1749
1749
|
null,
|
|
1750
1750
|
!!(process.env.NODE_ENV !== "production") ? extend$4({}, options, { flush: "post" }) : { flush: "post" }
|
|
1751
1751
|
);
|
|
@@ -1786,13 +1786,13 @@ function doWatch(source, cb, { immediate, deep, flush, onTrack, onTrigger } = EM
|
|
|
1786
1786
|
let isMultiSource = false;
|
|
1787
1787
|
if (isRef(source)) {
|
|
1788
1788
|
getter = () => source.value;
|
|
1789
|
-
forceTrigger = isShallow
|
|
1789
|
+
forceTrigger = isShallow(source);
|
|
1790
1790
|
} else if (isReactive(source)) {
|
|
1791
1791
|
getter = () => source;
|
|
1792
1792
|
deep = true;
|
|
1793
1793
|
} else if (isArray$1(source)) {
|
|
1794
1794
|
isMultiSource = true;
|
|
1795
|
-
forceTrigger = source.some((s) => isReactive(s) || isShallow
|
|
1795
|
+
forceTrigger = source.some((s) => isReactive(s) || isShallow(s));
|
|
1796
1796
|
getter = () => source.map((s) => {
|
|
1797
1797
|
if (isRef(s)) {
|
|
1798
1798
|
return s.value;
|
|
@@ -1833,7 +1833,7 @@ function doWatch(source, cb, { immediate, deep, flush, onTrack, onTrigger } = EM
|
|
|
1833
1833
|
}
|
|
1834
1834
|
let cleanup;
|
|
1835
1835
|
let onCleanup = (fn) => {
|
|
1836
|
-
cleanup =
|
|
1836
|
+
cleanup = effect2.onStop = () => {
|
|
1837
1837
|
callWithErrorHandling(fn, instance, 4);
|
|
1838
1838
|
};
|
|
1839
1839
|
};
|
|
@@ -1858,11 +1858,11 @@ function doWatch(source, cb, { immediate, deep, flush, onTrack, onTrigger } = EM
|
|
|
1858
1858
|
}
|
|
1859
1859
|
let oldValue = isMultiSource ? new Array(source.length).fill(INITIAL_WATCHER_VALUE) : INITIAL_WATCHER_VALUE;
|
|
1860
1860
|
const job = () => {
|
|
1861
|
-
if (!
|
|
1861
|
+
if (!effect2.active) {
|
|
1862
1862
|
return;
|
|
1863
1863
|
}
|
|
1864
1864
|
if (cb) {
|
|
1865
|
-
const newValue =
|
|
1865
|
+
const newValue = effect2.run();
|
|
1866
1866
|
if (deep || forceTrigger || (isMultiSource ? newValue.some((v, i) => hasChanged(v, oldValue[i])) : hasChanged(newValue, oldValue)) || false) {
|
|
1867
1867
|
if (cleanup) {
|
|
1868
1868
|
cleanup();
|
|
@@ -1876,7 +1876,7 @@ function doWatch(source, cb, { immediate, deep, flush, onTrack, onTrigger } = EM
|
|
|
1876
1876
|
oldValue = newValue;
|
|
1877
1877
|
}
|
|
1878
1878
|
} else {
|
|
1879
|
-
|
|
1879
|
+
effect2.run();
|
|
1880
1880
|
}
|
|
1881
1881
|
};
|
|
1882
1882
|
job.allowRecurse = !!cb;
|
|
@@ -1891,29 +1891,29 @@ function doWatch(source, cb, { immediate, deep, flush, onTrack, onTrigger } = EM
|
|
|
1891
1891
|
job.id = instance.uid;
|
|
1892
1892
|
scheduler = () => queueJob(job);
|
|
1893
1893
|
}
|
|
1894
|
-
const
|
|
1894
|
+
const effect2 = new ReactiveEffect(getter, scheduler);
|
|
1895
1895
|
if (!!(process.env.NODE_ENV !== "production")) {
|
|
1896
|
-
|
|
1897
|
-
|
|
1896
|
+
effect2.onTrack = onTrack;
|
|
1897
|
+
effect2.onTrigger = onTrigger;
|
|
1898
1898
|
}
|
|
1899
1899
|
if (cb) {
|
|
1900
1900
|
if (immediate) {
|
|
1901
1901
|
job();
|
|
1902
1902
|
} else {
|
|
1903
|
-
oldValue =
|
|
1903
|
+
oldValue = effect2.run();
|
|
1904
1904
|
}
|
|
1905
1905
|
} else if (flush === "post") {
|
|
1906
1906
|
queuePostRenderEffect(
|
|
1907
|
-
|
|
1907
|
+
effect2.run.bind(effect2),
|
|
1908
1908
|
instance && instance.suspense
|
|
1909
1909
|
);
|
|
1910
1910
|
} else {
|
|
1911
|
-
|
|
1911
|
+
effect2.run();
|
|
1912
1912
|
}
|
|
1913
1913
|
const unwatch = () => {
|
|
1914
|
-
|
|
1914
|
+
effect2.stop();
|
|
1915
1915
|
if (instance && instance.scope) {
|
|
1916
|
-
remove(instance.scope.effects,
|
|
1916
|
+
remove(instance.scope.effects, effect2);
|
|
1917
1917
|
}
|
|
1918
1918
|
};
|
|
1919
1919
|
if (ssrCleanup)
|
|
@@ -3164,14 +3164,14 @@ const createVNodeWithArgsTransform = (...args) => {
|
|
|
3164
3164
|
const InternalObjectKey = `__vInternal`;
|
|
3165
3165
|
const normalizeKey = ({ key }) => key != null ? key : null;
|
|
3166
3166
|
const normalizeRef = ({
|
|
3167
|
-
ref:
|
|
3167
|
+
ref: ref3,
|
|
3168
3168
|
ref_key,
|
|
3169
3169
|
ref_for
|
|
3170
3170
|
}) => {
|
|
3171
|
-
if (typeof
|
|
3172
|
-
|
|
3171
|
+
if (typeof ref3 === "number") {
|
|
3172
|
+
ref3 = "" + ref3;
|
|
3173
3173
|
}
|
|
3174
|
-
return
|
|
3174
|
+
return ref3 != null ? isString$1(ref3) || isRef(ref3) || isFunction$1(ref3) ? { i: currentRenderingInstance, r: ref3, k: ref_key, f: !!ref_for } : ref3 : null;
|
|
3175
3175
|
};
|
|
3176
3176
|
function createBaseVNode(type, props2 = null, children = null, patchFlag = 0, dynamicProps = null, shapeFlag = type === Fragment$1 ? 0 : 1, isBlockNode2 = false, needFullChildrenNormalization = false) {
|
|
3177
3177
|
const vnode = {
|
|
@@ -3297,7 +3297,7 @@ function guardReactiveProps(props2) {
|
|
|
3297
3297
|
return isProxy(props2) || InternalObjectKey in props2 ? extend$4({}, props2) : props2;
|
|
3298
3298
|
}
|
|
3299
3299
|
function cloneVNode(vnode, extraProps, mergeRef = false) {
|
|
3300
|
-
const { props: props2, ref:
|
|
3300
|
+
const { props: props2, ref: ref3, patchFlag, children } = vnode;
|
|
3301
3301
|
const mergedProps = extraProps ? mergeProps(props2 || {}, extraProps) : props2;
|
|
3302
3302
|
const cloned = {
|
|
3303
3303
|
__v_isVNode: true,
|
|
@@ -3309,8 +3309,8 @@ function cloneVNode(vnode, extraProps, mergeRef = false) {
|
|
|
3309
3309
|
// #2078 in the case of <component :is="vnode" ref="extra"/>
|
|
3310
3310
|
// if the vnode itself already has a ref, cloneVNode will need to merge
|
|
3311
3311
|
// the refs so the single vnode can be set on multiple refs
|
|
3312
|
-
mergeRef &&
|
|
3313
|
-
) :
|
|
3312
|
+
mergeRef && ref3 ? isArray$1(ref3) ? ref3.concat(normalizeRef(extraProps)) : [ref3, normalizeRef(extraProps)] : normalizeRef(extraProps)
|
|
3313
|
+
) : ref3,
|
|
3314
3314
|
scopeId: vnode.scopeId,
|
|
3315
3315
|
slotScopeIds: vnode.slotScopeIds,
|
|
3316
3316
|
children: !!(process.env.NODE_ENV !== "production") && patchFlag === -1 && isArray$1(children) ? children.map(deepCloneVNode) : children,
|
|
@@ -3619,7 +3619,7 @@ const useSSRContext = () => {
|
|
|
3619
3619
|
return ctx;
|
|
3620
3620
|
}
|
|
3621
3621
|
};
|
|
3622
|
-
function
|
|
3622
|
+
function isShallow2(value) {
|
|
3623
3623
|
return !!(value && value["__v_isShallow"]);
|
|
3624
3624
|
}
|
|
3625
3625
|
function initCustomFormatter() {
|
|
@@ -3650,7 +3650,7 @@ function initCustomFormatter() {
|
|
|
3650
3650
|
return [
|
|
3651
3651
|
"div",
|
|
3652
3652
|
{},
|
|
3653
|
-
["span", vueStyle,
|
|
3653
|
+
["span", vueStyle, isShallow2(obj) ? "ShallowReactive" : "Reactive"],
|
|
3654
3654
|
"<",
|
|
3655
3655
|
formatValue(obj),
|
|
3656
3656
|
`>${isReadonly(obj) ? ` (readonly)` : ``}`
|
|
@@ -3659,7 +3659,7 @@ function initCustomFormatter() {
|
|
|
3659
3659
|
return [
|
|
3660
3660
|
"div",
|
|
3661
3661
|
{},
|
|
3662
|
-
["span", vueStyle,
|
|
3662
|
+
["span", vueStyle, isShallow2(obj) ? "ShallowReadonly" : "Readonly"],
|
|
3663
3663
|
"<",
|
|
3664
3664
|
formatValue(obj),
|
|
3665
3665
|
">"
|
|
@@ -3783,7 +3783,7 @@ function initCustomFormatter() {
|
|
|
3783
3783
|
}
|
|
3784
3784
|
}
|
|
3785
3785
|
function genRefFlag(v) {
|
|
3786
|
-
if (
|
|
3786
|
+
if (isShallow2(v)) {
|
|
3787
3787
|
return `ShallowRef`;
|
|
3788
3788
|
}
|
|
3789
3789
|
if (v.effect) {
|
|
@@ -4542,7 +4542,7 @@ function bind$1(fn, thisArg) {
|
|
|
4542
4542
|
}
|
|
4543
4543
|
const { toString } = Object.prototype;
|
|
4544
4544
|
const { getPrototypeOf } = Object;
|
|
4545
|
-
const kindOf = ((cache) => (thing) => {
|
|
4545
|
+
const kindOf = /* @__PURE__ */ ((cache) => (thing) => {
|
|
4546
4546
|
const str = toString.call(thing);
|
|
4547
4547
|
return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase());
|
|
4548
4548
|
})(/* @__PURE__ */ Object.create(null));
|
|
@@ -4721,7 +4721,7 @@ const toArray = (thing) => {
|
|
|
4721
4721
|
}
|
|
4722
4722
|
return arr;
|
|
4723
4723
|
};
|
|
4724
|
-
const isTypedArray = ((TypedArray) => {
|
|
4724
|
+
const isTypedArray = /* @__PURE__ */ ((TypedArray) => {
|
|
4725
4725
|
return (thing) => {
|
|
4726
4726
|
return TypedArray && thing instanceof TypedArray;
|
|
4727
4727
|
};
|
|
@@ -5767,7 +5767,7 @@ const isURLSameOrigin = platform.hasStandardBrowserEnv ? (
|
|
|
5767
5767
|
}()
|
|
5768
5768
|
) : (
|
|
5769
5769
|
// Non standard browser envs (web workers, react-native) lack needed support.
|
|
5770
|
-
function nonStandardBrowserEnv() {
|
|
5770
|
+
/* @__PURE__ */ function nonStandardBrowserEnv() {
|
|
5771
5771
|
return function isURLSameOrigin2() {
|
|
5772
5772
|
return true;
|
|
5773
5773
|
};
|
|
@@ -18985,7 +18985,6 @@ const _sfc_main$K = /* @__PURE__ */ defineComponent({
|
|
|
18985
18985
|
};
|
|
18986
18986
|
}
|
|
18987
18987
|
});
|
|
18988
|
-
const RTXEditor_vue_vue_type_style_index_0_lang = "";
|
|
18989
18988
|
const RTXEditor = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
18990
18989
|
__proto__: null,
|
|
18991
18990
|
default: _sfc_main$K
|
|
@@ -19069,7 +19068,6 @@ const _sfc_main$I = /* @__PURE__ */ defineComponent({
|
|
|
19069
19068
|
};
|
|
19070
19069
|
}
|
|
19071
19070
|
});
|
|
19072
|
-
const NavBar_vue_vue_type_style_index_0_lang = "";
|
|
19073
19071
|
const NavBar = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
19074
19072
|
__proto__: null,
|
|
19075
19073
|
default: _sfc_main$I
|
|
@@ -19138,7 +19136,6 @@ const _sfc_main$H = /* @__PURE__ */ defineComponent({
|
|
|
19138
19136
|
};
|
|
19139
19137
|
}
|
|
19140
19138
|
});
|
|
19141
|
-
const Btn_vue_vue_type_style_index_0_scoped_4e57112f_lang = "";
|
|
19142
19139
|
const _export_sfc = (sfc, props2) => {
|
|
19143
19140
|
const target = sfc.__vccOpts || sfc;
|
|
19144
19141
|
for (const [key, val] of props2) {
|
|
@@ -19151,7 +19148,6 @@ const Btn$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.definePropert
|
|
|
19151
19148
|
__proto__: null,
|
|
19152
19149
|
default: Btn
|
|
19153
19150
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
19154
|
-
const modal = "";
|
|
19155
19151
|
const _hoisted_1$C = ["onKeydown"];
|
|
19156
19152
|
const _hoisted_2$x = { class: "tool-bar" };
|
|
19157
19153
|
const _hoisted_3$u = { class: "modal-title" };
|
|
@@ -19330,7 +19326,6 @@ const _sfc_main$F = /* @__PURE__ */ defineComponent({
|
|
|
19330
19326
|
};
|
|
19331
19327
|
}
|
|
19332
19328
|
});
|
|
19333
|
-
const BarChart_vue_vue_type_style_index_0_scoped_f7af54ed_lang = "";
|
|
19334
19329
|
const BarChart = /* @__PURE__ */ _export_sfc(_sfc_main$F, [["__scopeId", "data-v-f7af54ed"]]);
|
|
19335
19330
|
const BarChart$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
19336
19331
|
__proto__: null,
|
|
@@ -19381,7 +19376,6 @@ const _sfc_main$E = /* @__PURE__ */ defineComponent({
|
|
|
19381
19376
|
};
|
|
19382
19377
|
}
|
|
19383
19378
|
});
|
|
19384
|
-
const DropDown_vue_vue_type_style_index_0_lang = "";
|
|
19385
19379
|
const DropDown = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
19386
19380
|
__proto__: null,
|
|
19387
19381
|
default: _sfc_main$E
|
|
@@ -19482,7 +19476,6 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent({
|
|
|
19482
19476
|
};
|
|
19483
19477
|
}
|
|
19484
19478
|
});
|
|
19485
|
-
const ListView_vue_vue_type_style_index_0_lang = "";
|
|
19486
19479
|
const ListView = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
19487
19480
|
__proto__: null,
|
|
19488
19481
|
default: _sfc_main$D
|
|
@@ -19576,7 +19569,6 @@ const _sfc_main$B = /* @__PURE__ */ defineComponent({
|
|
|
19576
19569
|
};
|
|
19577
19570
|
}
|
|
19578
19571
|
});
|
|
19579
|
-
const TabbedLayout_vue_vue_type_style_index_0_scoped_4ac29f1d_lang = "";
|
|
19580
19572
|
const TabbedLayout = /* @__PURE__ */ _export_sfc(_sfc_main$B, [["__scopeId", "data-v-4ac29f1d"]]);
|
|
19581
19573
|
const TabbedLayout$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
19582
19574
|
__proto__: null,
|
|
@@ -19704,7 +19696,6 @@ const _sfc_main$A = /* @__PURE__ */ defineComponent({
|
|
|
19704
19696
|
};
|
|
19705
19697
|
}
|
|
19706
19698
|
});
|
|
19707
|
-
const Comments_vue_vue_type_style_index_0_scoped_36ddbe63_lang = "";
|
|
19708
19699
|
const Comments = /* @__PURE__ */ _export_sfc(_sfc_main$A, [["__scopeId", "data-v-36ddbe63"]]);
|
|
19709
19700
|
const Comments$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
19710
19701
|
__proto__: null,
|
|
@@ -19822,7 +19813,6 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
|
|
|
19822
19813
|
};
|
|
19823
19814
|
}
|
|
19824
19815
|
});
|
|
19825
|
-
const ModalForm_vue_vue_type_style_index_0_scoped_25f14815_lang = "";
|
|
19826
19816
|
const ModalForm = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["__scopeId", "data-v-25f14815"]]);
|
|
19827
19817
|
const ModalForm$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
19828
19818
|
__proto__: null,
|
|
@@ -19950,7 +19940,6 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
|
|
|
19950
19940
|
};
|
|
19951
19941
|
}
|
|
19952
19942
|
});
|
|
19953
|
-
const DataPreview_vue_vue_type_style_index_0_scoped_eadd1885_lang = "";
|
|
19954
19943
|
const DataPreview = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__scopeId", "data-v-eadd1885"]]);
|
|
19955
19944
|
const DataPreview$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
19956
19945
|
__proto__: null,
|
|
@@ -20029,7 +20018,6 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
|
20029
20018
|
};
|
|
20030
20019
|
}
|
|
20031
20020
|
});
|
|
20032
|
-
const FormSchema_vue_vue_type_style_index_0_lang = "";
|
|
20033
20021
|
const _hoisted_1$r = { class: "table-list-wrap h-100" };
|
|
20034
20022
|
const _hoisted_2$m = { class: "infinite-wrapper" };
|
|
20035
20023
|
const _hoisted_3$l = { class: "row first-row" };
|
|
@@ -20150,7 +20138,6 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
|
|
|
20150
20138
|
};
|
|
20151
20139
|
}
|
|
20152
20140
|
});
|
|
20153
|
-
const TableSchema_vue_vue_type_style_index_0_scoped_31ab7183_lang = "";
|
|
20154
20141
|
const TableSchema = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__scopeId", "data-v-31ab7183"]]);
|
|
20155
20142
|
const TableSchema$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
20156
20143
|
__proto__: null,
|
|
@@ -20272,15 +20259,15 @@ const ModalPlugin = {
|
|
|
20272
20259
|
};
|
|
20273
20260
|
},
|
|
20274
20261
|
render() {
|
|
20275
|
-
return modalStack.value.map((
|
|
20276
|
-
const renderComponent =
|
|
20262
|
+
return modalStack.value.map((modal, index2) => {
|
|
20263
|
+
const renderComponent = modal.isModalForm ? ModalForm$1 : Modal;
|
|
20277
20264
|
return h(
|
|
20278
20265
|
renderComponent,
|
|
20279
20266
|
{
|
|
20280
|
-
...
|
|
20267
|
+
...modal.modalOptions,
|
|
20281
20268
|
"onUpdate:isModalVisible": () => hideModal(index2)
|
|
20282
20269
|
},
|
|
20283
|
-
|
|
20270
|
+
modal.componentSlots
|
|
20284
20271
|
);
|
|
20285
20272
|
});
|
|
20286
20273
|
}
|
|
@@ -21582,7 +21569,6 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent({
|
|
|
21582
21569
|
};
|
|
21583
21570
|
}
|
|
21584
21571
|
});
|
|
21585
|
-
const Checkbox_vue_vue_type_style_index_0_scoped_b85dbec6_lang = "";
|
|
21586
21572
|
const Checkbox = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__scopeId", "data-v-b85dbec6"]]);
|
|
21587
21573
|
const _hoisted_1$n = { class: "bagel-input" };
|
|
21588
21574
|
const _hoisted_2$l = { class: "mt-1" };
|
|
@@ -21729,7 +21715,6 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
|
21729
21715
|
};
|
|
21730
21716
|
}
|
|
21731
21717
|
});
|
|
21732
|
-
const ContactArrayFormKit_vue_vue_type_style_index_0_scoped_3ab41ef8_lang = "";
|
|
21733
21718
|
const ContactArrayFormKit = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["__scopeId", "data-v-3ab41ef8"]]);
|
|
21734
21719
|
const _hoisted_1$m = { class: "bagel-input" };
|
|
21735
21720
|
const _hoisted_2$k = { class: "mt-1" };
|
|
@@ -21903,8 +21888,6 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
|
21903
21888
|
};
|
|
21904
21889
|
}
|
|
21905
21890
|
});
|
|
21906
|
-
const AddressArray_vue_vue_type_style_index_0_lang = "";
|
|
21907
|
-
const AddressArray_vue_vue_type_style_index_1_scoped_c08347ee_lang = "";
|
|
21908
21891
|
const AddressArray = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__scopeId", "data-v-c08347ee"]]);
|
|
21909
21892
|
const _hoisted_1$l = { class: "bagel-input" };
|
|
21910
21893
|
const _hoisted_2$j = { class: "mt-1" };
|
|
@@ -22111,8 +22094,6 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
|
22111
22094
|
};
|
|
22112
22095
|
}
|
|
22113
22096
|
});
|
|
22114
|
-
const BankDetailsArray_vue_vue_type_style_index_0_lang = "";
|
|
22115
|
-
const BankDetailsArray_vue_vue_type_style_index_1_scoped_4602df64_lang = "";
|
|
22116
22097
|
const BankDetailsArray = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__scopeId", "data-v-4602df64"]]);
|
|
22117
22098
|
const _hoisted_1$k = { class: "misc-wrap" };
|
|
22118
22099
|
const _sfc_main$m = /* @__PURE__ */ defineComponent({
|
|
@@ -22160,7 +22141,6 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
|
|
|
22160
22141
|
};
|
|
22161
22142
|
}
|
|
22162
22143
|
});
|
|
22163
|
-
const MiscFields_vue_vue_type_style_index_0_scoped_6bad8515_lang = "";
|
|
22164
22144
|
const MiscFieldsBtns = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-6bad8515"]]);
|
|
22165
22145
|
const _withScopeId$1 = (n) => (pushScopeId("data-v-d12598ff"), n = n(), popScopeId(), n);
|
|
22166
22146
|
const _hoisted_1$j = ["title"];
|
|
@@ -22209,8 +22189,6 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
|
|
|
22209
22189
|
};
|
|
22210
22190
|
}
|
|
22211
22191
|
});
|
|
22212
|
-
const Toggle_vue_vue_type_style_index_0_lang = "";
|
|
22213
|
-
const Toggle_vue_vue_type_style_index_1_scoped_d12598ff_lang = "";
|
|
22214
22192
|
const Toggle = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__scopeId", "data-v-d12598ff"]]);
|
|
22215
22193
|
const _hoisted_1$i = { class: "files-wrapper flex" };
|
|
22216
22194
|
const _hoisted_2$h = ["onDrop"];
|
|
@@ -22429,8 +22407,6 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
|
|
|
22429
22407
|
};
|
|
22430
22408
|
}
|
|
22431
22409
|
});
|
|
22432
|
-
const FileUploader_vue_vue_type_style_index_0_lang = "";
|
|
22433
|
-
const FileUploader_vue_vue_type_style_index_1_lang = "";
|
|
22434
22410
|
const _hoisted_1$h = {
|
|
22435
22411
|
key: 0,
|
|
22436
22412
|
class: "person-card-edit flex gap-2"
|
|
@@ -22533,7 +22509,6 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
|
|
|
22533
22509
|
};
|
|
22534
22510
|
}
|
|
22535
22511
|
});
|
|
22536
|
-
const PersonPreviewFormkit_vue_vue_type_style_index_0_lang = "";
|
|
22537
22512
|
const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
22538
22513
|
__name: "TextVariableExamples",
|
|
22539
22514
|
props: {
|
|
@@ -22684,7 +22659,6 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
|
22684
22659
|
};
|
|
22685
22660
|
}
|
|
22686
22661
|
});
|
|
22687
|
-
const CheckInput_vue_vue_type_style_index_0_scoped_6a5478c3_lang = "";
|
|
22688
22662
|
const CheckInput = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["__scopeId", "data-v-6a5478c3"]]);
|
|
22689
22663
|
const CheckInput$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
22690
22664
|
__proto__: null,
|
|
@@ -22811,7 +22785,6 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
|
|
|
22811
22785
|
};
|
|
22812
22786
|
}
|
|
22813
22787
|
});
|
|
22814
|
-
const CurrencyInput_vue_vue_type_style_index_0_scoped_4cb01bfc_lang = "";
|
|
22815
22788
|
const CurrencyInput = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__scopeId", "data-v-4cb01bfc"]]);
|
|
22816
22789
|
const CurrencyInput$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
22817
22790
|
__proto__: null,
|
|
@@ -22858,7 +22831,6 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
|
|
|
22858
22831
|
};
|
|
22859
22832
|
}
|
|
22860
22833
|
});
|
|
22861
|
-
const DateInput_vue_vue_type_style_index_0_scoped_d725a376_lang = "";
|
|
22862
22834
|
const DateInput = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["__scopeId", "data-v-d725a376"]]);
|
|
22863
22835
|
const DateInput$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
22864
22836
|
__proto__: null,
|
|
@@ -22952,7 +22924,6 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
|
|
|
22952
22924
|
};
|
|
22953
22925
|
}
|
|
22954
22926
|
});
|
|
22955
|
-
const EmailInput_vue_vue_type_style_index_0_scoped_ed81a514_lang = "";
|
|
22956
22927
|
const EmailInput = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["__scopeId", "data-v-ed81a514"]]);
|
|
22957
22928
|
const EmailInput$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
22958
22929
|
__proto__: null,
|
|
@@ -23093,7 +23064,6 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
|
23093
23064
|
};
|
|
23094
23065
|
}
|
|
23095
23066
|
});
|
|
23096
|
-
const JSONInput_vue_vue_type_style_index_0_scoped_1fc4f739_lang = "";
|
|
23097
23067
|
const JSONInput = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["__scopeId", "data-v-1fc4f739"]]);
|
|
23098
23068
|
const JSONInput$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23099
23069
|
__proto__: null,
|
|
@@ -23302,7 +23272,6 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
|
|
|
23302
23272
|
};
|
|
23303
23273
|
}
|
|
23304
23274
|
});
|
|
23305
|
-
const LinkField_vue_vue_type_style_index_0_scoped_81840a60_lang = "";
|
|
23306
23275
|
const LinkField = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-81840a60"]]);
|
|
23307
23276
|
const LinkField$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23308
23277
|
__proto__: null,
|
|
@@ -23366,7 +23335,6 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
23366
23335
|
};
|
|
23367
23336
|
}
|
|
23368
23337
|
});
|
|
23369
|
-
const PasswordInput_vue_vue_type_style_index_0_scoped_eec3e237_lang = "";
|
|
23370
23338
|
const PasswordInput = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__scopeId", "data-v-eec3e237"]]);
|
|
23371
23339
|
const PasswordInput$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23372
23340
|
__proto__: null,
|
|
@@ -23427,7 +23395,6 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
|
23427
23395
|
};
|
|
23428
23396
|
}
|
|
23429
23397
|
});
|
|
23430
|
-
const Password_vue_vue_type_style_index_0_scoped_c0d14aa1_lang = "";
|
|
23431
23398
|
const Password = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__scopeId", "data-v-c0d14aa1"]]);
|
|
23432
23399
|
const Password$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23433
23400
|
__proto__: null,
|
|
@@ -23454,7 +23421,6 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
|
|
|
23454
23421
|
};
|
|
23455
23422
|
}
|
|
23456
23423
|
});
|
|
23457
|
-
const ReadOnlyInput_vue_vue_type_style_index_0_scoped_92851182_lang = "";
|
|
23458
23424
|
const ReadOnlyInput = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["__scopeId", "data-v-92851182"]]);
|
|
23459
23425
|
const ReadOnlyInput$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23460
23426
|
__proto__: null,
|
|
@@ -23475,7 +23441,6 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
|
|
|
23475
23441
|
};
|
|
23476
23442
|
}
|
|
23477
23443
|
});
|
|
23478
|
-
const LangText_vue_vue_type_style_index_0_lang = "";
|
|
23479
23444
|
const _hoisted_1$3 = ["title"];
|
|
23480
23445
|
const _hoisted_2$3 = ["onClick"];
|
|
23481
23446
|
const _hoisted_3$3 = ["onClick"];
|
|
@@ -23648,7 +23613,6 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
23648
23613
|
};
|
|
23649
23614
|
}
|
|
23650
23615
|
});
|
|
23651
|
-
const SelectField_vue_vue_type_style_index_0_scoped_0b2eccce_lang = "";
|
|
23652
23616
|
const SelectField = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__scopeId", "data-v-0b2eccce"]]);
|
|
23653
23617
|
const SelectField$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23654
23618
|
__proto__: null,
|
|
@@ -23693,7 +23657,6 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
|
23693
23657
|
};
|
|
23694
23658
|
}
|
|
23695
23659
|
});
|
|
23696
|
-
const RichTextEditor_vue_vue_type_style_index_0_scoped_69a60381_lang = "";
|
|
23697
23660
|
const RichTextEditor = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["__scopeId", "data-v-69a60381"]]);
|
|
23698
23661
|
const RichTextEditor$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23699
23662
|
__proto__: null,
|
|
@@ -26386,8 +26349,6 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
26386
26349
|
};
|
|
26387
26350
|
}
|
|
26388
26351
|
});
|
|
26389
|
-
const TableField_vue_vue_type_style_index_0_scoped_c5cacca2_lang = "";
|
|
26390
|
-
const TableField_vue_vue_type_style_index_1_lang = "";
|
|
26391
26352
|
const TableField = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-c5cacca2"]]);
|
|
26392
26353
|
const TableField$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
26393
26354
|
__proto__: null,
|
package/dist/index.mjs
CHANGED
|
@@ -564,7 +564,7 @@ class MutableReactiveHandler extends BaseReactiveHandler {
|
|
|
564
564
|
return false;
|
|
565
565
|
}
|
|
566
566
|
if (!this._shallow) {
|
|
567
|
-
if (!isShallow
|
|
567
|
+
if (!isShallow(value) && !isReadonly(value)) {
|
|
568
568
|
oldValue = toRaw(oldValue);
|
|
569
569
|
value = toRaw(value);
|
|
570
570
|
}
|
|
@@ -637,7 +637,7 @@ const readonlyHandlers = /* @__PURE__ */ new ReadonlyReactiveHandler();
|
|
|
637
637
|
const shallowReadonlyHandlers = /* @__PURE__ */ new ReadonlyReactiveHandler(true);
|
|
638
638
|
const toShallow = (value) => value;
|
|
639
639
|
const getProto = (v) => Reflect.getPrototypeOf(v);
|
|
640
|
-
function get(target, key, isReadonly2 = false,
|
|
640
|
+
function get(target, key, isReadonly2 = false, isShallow3 = false) {
|
|
641
641
|
target = target["__v_raw"];
|
|
642
642
|
const rawTarget = toRaw(target);
|
|
643
643
|
const rawKey = toRaw(key);
|
|
@@ -648,7 +648,7 @@ function get(target, key, isReadonly2 = false, isShallow2 = false) {
|
|
|
648
648
|
track(rawTarget, "get", rawKey);
|
|
649
649
|
}
|
|
650
650
|
const { has: has2 } = getProto(rawTarget);
|
|
651
|
-
const wrap2 =
|
|
651
|
+
const wrap2 = isShallow3 ? toShallow : isReadonly2 ? toReadonly : toReactive;
|
|
652
652
|
if (has2.call(rawTarget, key)) {
|
|
653
653
|
return wrap2(target.get(key));
|
|
654
654
|
} else if (has2.call(rawTarget, rawKey)) {
|
|
@@ -732,19 +732,19 @@ function clear() {
|
|
|
732
732
|
}
|
|
733
733
|
return result;
|
|
734
734
|
}
|
|
735
|
-
function createForEach(isReadonly2,
|
|
735
|
+
function createForEach(isReadonly2, isShallow3) {
|
|
736
736
|
return function forEach3(callback, thisArg) {
|
|
737
737
|
const observed = this;
|
|
738
738
|
const target = observed["__v_raw"];
|
|
739
739
|
const rawTarget = toRaw(target);
|
|
740
|
-
const wrap2 =
|
|
740
|
+
const wrap2 = isShallow3 ? toShallow : isReadonly2 ? toReadonly : toReactive;
|
|
741
741
|
!isReadonly2 && track(rawTarget, "iterate", ITERATE_KEY);
|
|
742
742
|
return target.forEach((value, key) => {
|
|
743
743
|
return callback.call(thisArg, wrap2(value), wrap2(key), observed);
|
|
744
744
|
});
|
|
745
745
|
};
|
|
746
746
|
}
|
|
747
|
-
function createIterableMethod(method, isReadonly2,
|
|
747
|
+
function createIterableMethod(method, isReadonly2, isShallow3) {
|
|
748
748
|
return function(...args) {
|
|
749
749
|
const target = this["__v_raw"];
|
|
750
750
|
const rawTarget = toRaw(target);
|
|
@@ -752,7 +752,7 @@ function createIterableMethod(method, isReadonly2, isShallow2) {
|
|
|
752
752
|
const isPair = method === "entries" || method === Symbol.iterator && targetIsMap;
|
|
753
753
|
const isKeyOnly = method === "keys" && targetIsMap;
|
|
754
754
|
const innerIterator = target[method](...args);
|
|
755
|
-
const wrap2 =
|
|
755
|
+
const wrap2 = isShallow3 ? toShallow : isReadonly2 ? toReadonly : toReactive;
|
|
756
756
|
!isReadonly2 && track(
|
|
757
757
|
rawTarget,
|
|
758
758
|
"iterate",
|
|
@@ -1003,7 +1003,7 @@ function isReactive(value) {
|
|
|
1003
1003
|
function isReadonly(value) {
|
|
1004
1004
|
return !!(value && value["__v_isReadonly"]);
|
|
1005
1005
|
}
|
|
1006
|
-
function isShallow
|
|
1006
|
+
function isShallow(value) {
|
|
1007
1007
|
return !!(value && value["__v_isShallow"]);
|
|
1008
1008
|
}
|
|
1009
1009
|
function isProxy(value) {
|
|
@@ -1074,7 +1074,7 @@ class RefImpl {
|
|
|
1074
1074
|
return this._value;
|
|
1075
1075
|
}
|
|
1076
1076
|
set value(newVal) {
|
|
1077
|
-
const useDirectValue = this.__v_isShallow || isShallow
|
|
1077
|
+
const useDirectValue = this.__v_isShallow || isShallow(newVal) || isReadonly(newVal);
|
|
1078
1078
|
newVal = useDirectValue ? newVal : toRaw(newVal);
|
|
1079
1079
|
if (hasChanged(newVal, this._rawValue)) {
|
|
1080
1080
|
this._rawValue = newVal;
|
|
@@ -1741,9 +1741,9 @@ function queueEffectWithSuspense(fn, suspense) {
|
|
|
1741
1741
|
queuePostFlushCb(fn);
|
|
1742
1742
|
}
|
|
1743
1743
|
}
|
|
1744
|
-
function watchPostEffect(
|
|
1744
|
+
function watchPostEffect(effect2, options) {
|
|
1745
1745
|
return doWatch(
|
|
1746
|
-
|
|
1746
|
+
effect2,
|
|
1747
1747
|
null,
|
|
1748
1748
|
!!(process.env.NODE_ENV !== "production") ? extend$4({}, options, { flush: "post" }) : { flush: "post" }
|
|
1749
1749
|
);
|
|
@@ -1784,13 +1784,13 @@ function doWatch(source, cb, { immediate, deep, flush, onTrack, onTrigger } = EM
|
|
|
1784
1784
|
let isMultiSource = false;
|
|
1785
1785
|
if (isRef(source)) {
|
|
1786
1786
|
getter = () => source.value;
|
|
1787
|
-
forceTrigger = isShallow
|
|
1787
|
+
forceTrigger = isShallow(source);
|
|
1788
1788
|
} else if (isReactive(source)) {
|
|
1789
1789
|
getter = () => source;
|
|
1790
1790
|
deep = true;
|
|
1791
1791
|
} else if (isArray$1(source)) {
|
|
1792
1792
|
isMultiSource = true;
|
|
1793
|
-
forceTrigger = source.some((s) => isReactive(s) || isShallow
|
|
1793
|
+
forceTrigger = source.some((s) => isReactive(s) || isShallow(s));
|
|
1794
1794
|
getter = () => source.map((s) => {
|
|
1795
1795
|
if (isRef(s)) {
|
|
1796
1796
|
return s.value;
|
|
@@ -1831,7 +1831,7 @@ function doWatch(source, cb, { immediate, deep, flush, onTrack, onTrigger } = EM
|
|
|
1831
1831
|
}
|
|
1832
1832
|
let cleanup;
|
|
1833
1833
|
let onCleanup = (fn) => {
|
|
1834
|
-
cleanup =
|
|
1834
|
+
cleanup = effect2.onStop = () => {
|
|
1835
1835
|
callWithErrorHandling(fn, instance, 4);
|
|
1836
1836
|
};
|
|
1837
1837
|
};
|
|
@@ -1856,11 +1856,11 @@ function doWatch(source, cb, { immediate, deep, flush, onTrack, onTrigger } = EM
|
|
|
1856
1856
|
}
|
|
1857
1857
|
let oldValue = isMultiSource ? new Array(source.length).fill(INITIAL_WATCHER_VALUE) : INITIAL_WATCHER_VALUE;
|
|
1858
1858
|
const job = () => {
|
|
1859
|
-
if (!
|
|
1859
|
+
if (!effect2.active) {
|
|
1860
1860
|
return;
|
|
1861
1861
|
}
|
|
1862
1862
|
if (cb) {
|
|
1863
|
-
const newValue =
|
|
1863
|
+
const newValue = effect2.run();
|
|
1864
1864
|
if (deep || forceTrigger || (isMultiSource ? newValue.some((v, i) => hasChanged(v, oldValue[i])) : hasChanged(newValue, oldValue)) || false) {
|
|
1865
1865
|
if (cleanup) {
|
|
1866
1866
|
cleanup();
|
|
@@ -1874,7 +1874,7 @@ function doWatch(source, cb, { immediate, deep, flush, onTrack, onTrigger } = EM
|
|
|
1874
1874
|
oldValue = newValue;
|
|
1875
1875
|
}
|
|
1876
1876
|
} else {
|
|
1877
|
-
|
|
1877
|
+
effect2.run();
|
|
1878
1878
|
}
|
|
1879
1879
|
};
|
|
1880
1880
|
job.allowRecurse = !!cb;
|
|
@@ -1889,29 +1889,29 @@ function doWatch(source, cb, { immediate, deep, flush, onTrack, onTrigger } = EM
|
|
|
1889
1889
|
job.id = instance.uid;
|
|
1890
1890
|
scheduler = () => queueJob(job);
|
|
1891
1891
|
}
|
|
1892
|
-
const
|
|
1892
|
+
const effect2 = new ReactiveEffect(getter, scheduler);
|
|
1893
1893
|
if (!!(process.env.NODE_ENV !== "production")) {
|
|
1894
|
-
|
|
1895
|
-
|
|
1894
|
+
effect2.onTrack = onTrack;
|
|
1895
|
+
effect2.onTrigger = onTrigger;
|
|
1896
1896
|
}
|
|
1897
1897
|
if (cb) {
|
|
1898
1898
|
if (immediate) {
|
|
1899
1899
|
job();
|
|
1900
1900
|
} else {
|
|
1901
|
-
oldValue =
|
|
1901
|
+
oldValue = effect2.run();
|
|
1902
1902
|
}
|
|
1903
1903
|
} else if (flush === "post") {
|
|
1904
1904
|
queuePostRenderEffect(
|
|
1905
|
-
|
|
1905
|
+
effect2.run.bind(effect2),
|
|
1906
1906
|
instance && instance.suspense
|
|
1907
1907
|
);
|
|
1908
1908
|
} else {
|
|
1909
|
-
|
|
1909
|
+
effect2.run();
|
|
1910
1910
|
}
|
|
1911
1911
|
const unwatch = () => {
|
|
1912
|
-
|
|
1912
|
+
effect2.stop();
|
|
1913
1913
|
if (instance && instance.scope) {
|
|
1914
|
-
remove(instance.scope.effects,
|
|
1914
|
+
remove(instance.scope.effects, effect2);
|
|
1915
1915
|
}
|
|
1916
1916
|
};
|
|
1917
1917
|
if (ssrCleanup)
|
|
@@ -3162,14 +3162,14 @@ const createVNodeWithArgsTransform = (...args) => {
|
|
|
3162
3162
|
const InternalObjectKey = `__vInternal`;
|
|
3163
3163
|
const normalizeKey = ({ key }) => key != null ? key : null;
|
|
3164
3164
|
const normalizeRef = ({
|
|
3165
|
-
ref:
|
|
3165
|
+
ref: ref3,
|
|
3166
3166
|
ref_key,
|
|
3167
3167
|
ref_for
|
|
3168
3168
|
}) => {
|
|
3169
|
-
if (typeof
|
|
3170
|
-
|
|
3169
|
+
if (typeof ref3 === "number") {
|
|
3170
|
+
ref3 = "" + ref3;
|
|
3171
3171
|
}
|
|
3172
|
-
return
|
|
3172
|
+
return ref3 != null ? isString$1(ref3) || isRef(ref3) || isFunction$1(ref3) ? { i: currentRenderingInstance, r: ref3, k: ref_key, f: !!ref_for } : ref3 : null;
|
|
3173
3173
|
};
|
|
3174
3174
|
function createBaseVNode(type, props2 = null, children = null, patchFlag = 0, dynamicProps = null, shapeFlag = type === Fragment$1 ? 0 : 1, isBlockNode2 = false, needFullChildrenNormalization = false) {
|
|
3175
3175
|
const vnode = {
|
|
@@ -3295,7 +3295,7 @@ function guardReactiveProps(props2) {
|
|
|
3295
3295
|
return isProxy(props2) || InternalObjectKey in props2 ? extend$4({}, props2) : props2;
|
|
3296
3296
|
}
|
|
3297
3297
|
function cloneVNode(vnode, extraProps, mergeRef = false) {
|
|
3298
|
-
const { props: props2, ref:
|
|
3298
|
+
const { props: props2, ref: ref3, patchFlag, children } = vnode;
|
|
3299
3299
|
const mergedProps = extraProps ? mergeProps(props2 || {}, extraProps) : props2;
|
|
3300
3300
|
const cloned = {
|
|
3301
3301
|
__v_isVNode: true,
|
|
@@ -3307,8 +3307,8 @@ function cloneVNode(vnode, extraProps, mergeRef = false) {
|
|
|
3307
3307
|
// #2078 in the case of <component :is="vnode" ref="extra"/>
|
|
3308
3308
|
// if the vnode itself already has a ref, cloneVNode will need to merge
|
|
3309
3309
|
// the refs so the single vnode can be set on multiple refs
|
|
3310
|
-
mergeRef &&
|
|
3311
|
-
) :
|
|
3310
|
+
mergeRef && ref3 ? isArray$1(ref3) ? ref3.concat(normalizeRef(extraProps)) : [ref3, normalizeRef(extraProps)] : normalizeRef(extraProps)
|
|
3311
|
+
) : ref3,
|
|
3312
3312
|
scopeId: vnode.scopeId,
|
|
3313
3313
|
slotScopeIds: vnode.slotScopeIds,
|
|
3314
3314
|
children: !!(process.env.NODE_ENV !== "production") && patchFlag === -1 && isArray$1(children) ? children.map(deepCloneVNode) : children,
|
|
@@ -3617,7 +3617,7 @@ const useSSRContext = () => {
|
|
|
3617
3617
|
return ctx;
|
|
3618
3618
|
}
|
|
3619
3619
|
};
|
|
3620
|
-
function
|
|
3620
|
+
function isShallow2(value) {
|
|
3621
3621
|
return !!(value && value["__v_isShallow"]);
|
|
3622
3622
|
}
|
|
3623
3623
|
function initCustomFormatter() {
|
|
@@ -3648,7 +3648,7 @@ function initCustomFormatter() {
|
|
|
3648
3648
|
return [
|
|
3649
3649
|
"div",
|
|
3650
3650
|
{},
|
|
3651
|
-
["span", vueStyle,
|
|
3651
|
+
["span", vueStyle, isShallow2(obj) ? "ShallowReactive" : "Reactive"],
|
|
3652
3652
|
"<",
|
|
3653
3653
|
formatValue(obj),
|
|
3654
3654
|
`>${isReadonly(obj) ? ` (readonly)` : ``}`
|
|
@@ -3657,7 +3657,7 @@ function initCustomFormatter() {
|
|
|
3657
3657
|
return [
|
|
3658
3658
|
"div",
|
|
3659
3659
|
{},
|
|
3660
|
-
["span", vueStyle,
|
|
3660
|
+
["span", vueStyle, isShallow2(obj) ? "ShallowReadonly" : "Readonly"],
|
|
3661
3661
|
"<",
|
|
3662
3662
|
formatValue(obj),
|
|
3663
3663
|
">"
|
|
@@ -3781,7 +3781,7 @@ function initCustomFormatter() {
|
|
|
3781
3781
|
}
|
|
3782
3782
|
}
|
|
3783
3783
|
function genRefFlag(v) {
|
|
3784
|
-
if (
|
|
3784
|
+
if (isShallow2(v)) {
|
|
3785
3785
|
return `ShallowRef`;
|
|
3786
3786
|
}
|
|
3787
3787
|
if (v.effect) {
|
|
@@ -4540,7 +4540,7 @@ function bind$1(fn, thisArg) {
|
|
|
4540
4540
|
}
|
|
4541
4541
|
const { toString } = Object.prototype;
|
|
4542
4542
|
const { getPrototypeOf } = Object;
|
|
4543
|
-
const kindOf = ((cache) => (thing) => {
|
|
4543
|
+
const kindOf = /* @__PURE__ */ ((cache) => (thing) => {
|
|
4544
4544
|
const str = toString.call(thing);
|
|
4545
4545
|
return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase());
|
|
4546
4546
|
})(/* @__PURE__ */ Object.create(null));
|
|
@@ -4719,7 +4719,7 @@ const toArray = (thing) => {
|
|
|
4719
4719
|
}
|
|
4720
4720
|
return arr;
|
|
4721
4721
|
};
|
|
4722
|
-
const isTypedArray = ((TypedArray) => {
|
|
4722
|
+
const isTypedArray = /* @__PURE__ */ ((TypedArray) => {
|
|
4723
4723
|
return (thing) => {
|
|
4724
4724
|
return TypedArray && thing instanceof TypedArray;
|
|
4725
4725
|
};
|
|
@@ -5765,7 +5765,7 @@ const isURLSameOrigin = platform.hasStandardBrowserEnv ? (
|
|
|
5765
5765
|
}()
|
|
5766
5766
|
) : (
|
|
5767
5767
|
// Non standard browser envs (web workers, react-native) lack needed support.
|
|
5768
|
-
function nonStandardBrowserEnv() {
|
|
5768
|
+
/* @__PURE__ */ function nonStandardBrowserEnv() {
|
|
5769
5769
|
return function isURLSameOrigin2() {
|
|
5770
5770
|
return true;
|
|
5771
5771
|
};
|
|
@@ -18983,7 +18983,6 @@ const _sfc_main$K = /* @__PURE__ */ defineComponent({
|
|
|
18983
18983
|
};
|
|
18984
18984
|
}
|
|
18985
18985
|
});
|
|
18986
|
-
const RTXEditor_vue_vue_type_style_index_0_lang = "";
|
|
18987
18986
|
const RTXEditor = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
18988
18987
|
__proto__: null,
|
|
18989
18988
|
default: _sfc_main$K
|
|
@@ -19067,7 +19066,6 @@ const _sfc_main$I = /* @__PURE__ */ defineComponent({
|
|
|
19067
19066
|
};
|
|
19068
19067
|
}
|
|
19069
19068
|
});
|
|
19070
|
-
const NavBar_vue_vue_type_style_index_0_lang = "";
|
|
19071
19069
|
const NavBar = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
19072
19070
|
__proto__: null,
|
|
19073
19071
|
default: _sfc_main$I
|
|
@@ -19136,7 +19134,6 @@ const _sfc_main$H = /* @__PURE__ */ defineComponent({
|
|
|
19136
19134
|
};
|
|
19137
19135
|
}
|
|
19138
19136
|
});
|
|
19139
|
-
const Btn_vue_vue_type_style_index_0_scoped_4e57112f_lang = "";
|
|
19140
19137
|
const _export_sfc = (sfc, props2) => {
|
|
19141
19138
|
const target = sfc.__vccOpts || sfc;
|
|
19142
19139
|
for (const [key, val] of props2) {
|
|
@@ -19149,7 +19146,6 @@ const Btn$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.definePropert
|
|
|
19149
19146
|
__proto__: null,
|
|
19150
19147
|
default: Btn
|
|
19151
19148
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
19152
|
-
const modal = "";
|
|
19153
19149
|
const _hoisted_1$C = ["onKeydown"];
|
|
19154
19150
|
const _hoisted_2$x = { class: "tool-bar" };
|
|
19155
19151
|
const _hoisted_3$u = { class: "modal-title" };
|
|
@@ -19328,7 +19324,6 @@ const _sfc_main$F = /* @__PURE__ */ defineComponent({
|
|
|
19328
19324
|
};
|
|
19329
19325
|
}
|
|
19330
19326
|
});
|
|
19331
|
-
const BarChart_vue_vue_type_style_index_0_scoped_f7af54ed_lang = "";
|
|
19332
19327
|
const BarChart = /* @__PURE__ */ _export_sfc(_sfc_main$F, [["__scopeId", "data-v-f7af54ed"]]);
|
|
19333
19328
|
const BarChart$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
19334
19329
|
__proto__: null,
|
|
@@ -19379,7 +19374,6 @@ const _sfc_main$E = /* @__PURE__ */ defineComponent({
|
|
|
19379
19374
|
};
|
|
19380
19375
|
}
|
|
19381
19376
|
});
|
|
19382
|
-
const DropDown_vue_vue_type_style_index_0_lang = "";
|
|
19383
19377
|
const DropDown = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
19384
19378
|
__proto__: null,
|
|
19385
19379
|
default: _sfc_main$E
|
|
@@ -19480,7 +19474,6 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent({
|
|
|
19480
19474
|
};
|
|
19481
19475
|
}
|
|
19482
19476
|
});
|
|
19483
|
-
const ListView_vue_vue_type_style_index_0_lang = "";
|
|
19484
19477
|
const ListView = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
19485
19478
|
__proto__: null,
|
|
19486
19479
|
default: _sfc_main$D
|
|
@@ -19574,7 +19567,6 @@ const _sfc_main$B = /* @__PURE__ */ defineComponent({
|
|
|
19574
19567
|
};
|
|
19575
19568
|
}
|
|
19576
19569
|
});
|
|
19577
|
-
const TabbedLayout_vue_vue_type_style_index_0_scoped_4ac29f1d_lang = "";
|
|
19578
19570
|
const TabbedLayout = /* @__PURE__ */ _export_sfc(_sfc_main$B, [["__scopeId", "data-v-4ac29f1d"]]);
|
|
19579
19571
|
const TabbedLayout$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
19580
19572
|
__proto__: null,
|
|
@@ -19702,7 +19694,6 @@ const _sfc_main$A = /* @__PURE__ */ defineComponent({
|
|
|
19702
19694
|
};
|
|
19703
19695
|
}
|
|
19704
19696
|
});
|
|
19705
|
-
const Comments_vue_vue_type_style_index_0_scoped_36ddbe63_lang = "";
|
|
19706
19697
|
const Comments = /* @__PURE__ */ _export_sfc(_sfc_main$A, [["__scopeId", "data-v-36ddbe63"]]);
|
|
19707
19698
|
const Comments$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
19708
19699
|
__proto__: null,
|
|
@@ -19820,7 +19811,6 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
|
|
|
19820
19811
|
};
|
|
19821
19812
|
}
|
|
19822
19813
|
});
|
|
19823
|
-
const ModalForm_vue_vue_type_style_index_0_scoped_25f14815_lang = "";
|
|
19824
19814
|
const ModalForm = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["__scopeId", "data-v-25f14815"]]);
|
|
19825
19815
|
const ModalForm$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
19826
19816
|
__proto__: null,
|
|
@@ -19948,7 +19938,6 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
|
|
|
19948
19938
|
};
|
|
19949
19939
|
}
|
|
19950
19940
|
});
|
|
19951
|
-
const DataPreview_vue_vue_type_style_index_0_scoped_eadd1885_lang = "";
|
|
19952
19941
|
const DataPreview = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__scopeId", "data-v-eadd1885"]]);
|
|
19953
19942
|
const DataPreview$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
19954
19943
|
__proto__: null,
|
|
@@ -20027,7 +20016,6 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
|
20027
20016
|
};
|
|
20028
20017
|
}
|
|
20029
20018
|
});
|
|
20030
|
-
const FormSchema_vue_vue_type_style_index_0_lang = "";
|
|
20031
20019
|
const _hoisted_1$r = { class: "table-list-wrap h-100" };
|
|
20032
20020
|
const _hoisted_2$m = { class: "infinite-wrapper" };
|
|
20033
20021
|
const _hoisted_3$l = { class: "row first-row" };
|
|
@@ -20148,7 +20136,6 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
|
|
|
20148
20136
|
};
|
|
20149
20137
|
}
|
|
20150
20138
|
});
|
|
20151
|
-
const TableSchema_vue_vue_type_style_index_0_scoped_31ab7183_lang = "";
|
|
20152
20139
|
const TableSchema = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__scopeId", "data-v-31ab7183"]]);
|
|
20153
20140
|
const TableSchema$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
20154
20141
|
__proto__: null,
|
|
@@ -20270,15 +20257,15 @@ const ModalPlugin = {
|
|
|
20270
20257
|
};
|
|
20271
20258
|
},
|
|
20272
20259
|
render() {
|
|
20273
|
-
return modalStack.value.map((
|
|
20274
|
-
const renderComponent =
|
|
20260
|
+
return modalStack.value.map((modal, index2) => {
|
|
20261
|
+
const renderComponent = modal.isModalForm ? ModalForm$1 : Modal;
|
|
20275
20262
|
return h(
|
|
20276
20263
|
renderComponent,
|
|
20277
20264
|
{
|
|
20278
|
-
...
|
|
20265
|
+
...modal.modalOptions,
|
|
20279
20266
|
"onUpdate:isModalVisible": () => hideModal(index2)
|
|
20280
20267
|
},
|
|
20281
|
-
|
|
20268
|
+
modal.componentSlots
|
|
20282
20269
|
);
|
|
20283
20270
|
});
|
|
20284
20271
|
}
|
|
@@ -21580,7 +21567,6 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent({
|
|
|
21580
21567
|
};
|
|
21581
21568
|
}
|
|
21582
21569
|
});
|
|
21583
|
-
const Checkbox_vue_vue_type_style_index_0_scoped_b85dbec6_lang = "";
|
|
21584
21570
|
const Checkbox = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__scopeId", "data-v-b85dbec6"]]);
|
|
21585
21571
|
const _hoisted_1$n = { class: "bagel-input" };
|
|
21586
21572
|
const _hoisted_2$l = { class: "mt-1" };
|
|
@@ -21727,7 +21713,6 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
|
21727
21713
|
};
|
|
21728
21714
|
}
|
|
21729
21715
|
});
|
|
21730
|
-
const ContactArrayFormKit_vue_vue_type_style_index_0_scoped_3ab41ef8_lang = "";
|
|
21731
21716
|
const ContactArrayFormKit = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["__scopeId", "data-v-3ab41ef8"]]);
|
|
21732
21717
|
const _hoisted_1$m = { class: "bagel-input" };
|
|
21733
21718
|
const _hoisted_2$k = { class: "mt-1" };
|
|
@@ -21901,8 +21886,6 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
|
21901
21886
|
};
|
|
21902
21887
|
}
|
|
21903
21888
|
});
|
|
21904
|
-
const AddressArray_vue_vue_type_style_index_0_lang = "";
|
|
21905
|
-
const AddressArray_vue_vue_type_style_index_1_scoped_c08347ee_lang = "";
|
|
21906
21889
|
const AddressArray = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__scopeId", "data-v-c08347ee"]]);
|
|
21907
21890
|
const _hoisted_1$l = { class: "bagel-input" };
|
|
21908
21891
|
const _hoisted_2$j = { class: "mt-1" };
|
|
@@ -22109,8 +22092,6 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
|
22109
22092
|
};
|
|
22110
22093
|
}
|
|
22111
22094
|
});
|
|
22112
|
-
const BankDetailsArray_vue_vue_type_style_index_0_lang = "";
|
|
22113
|
-
const BankDetailsArray_vue_vue_type_style_index_1_scoped_4602df64_lang = "";
|
|
22114
22095
|
const BankDetailsArray = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__scopeId", "data-v-4602df64"]]);
|
|
22115
22096
|
const _hoisted_1$k = { class: "misc-wrap" };
|
|
22116
22097
|
const _sfc_main$m = /* @__PURE__ */ defineComponent({
|
|
@@ -22158,7 +22139,6 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
|
|
|
22158
22139
|
};
|
|
22159
22140
|
}
|
|
22160
22141
|
});
|
|
22161
|
-
const MiscFields_vue_vue_type_style_index_0_scoped_6bad8515_lang = "";
|
|
22162
22142
|
const MiscFieldsBtns = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-6bad8515"]]);
|
|
22163
22143
|
const _withScopeId$1 = (n) => (pushScopeId("data-v-d12598ff"), n = n(), popScopeId(), n);
|
|
22164
22144
|
const _hoisted_1$j = ["title"];
|
|
@@ -22207,8 +22187,6 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
|
|
|
22207
22187
|
};
|
|
22208
22188
|
}
|
|
22209
22189
|
});
|
|
22210
|
-
const Toggle_vue_vue_type_style_index_0_lang = "";
|
|
22211
|
-
const Toggle_vue_vue_type_style_index_1_scoped_d12598ff_lang = "";
|
|
22212
22190
|
const Toggle = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__scopeId", "data-v-d12598ff"]]);
|
|
22213
22191
|
const _hoisted_1$i = { class: "files-wrapper flex" };
|
|
22214
22192
|
const _hoisted_2$h = ["onDrop"];
|
|
@@ -22427,8 +22405,6 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
|
|
|
22427
22405
|
};
|
|
22428
22406
|
}
|
|
22429
22407
|
});
|
|
22430
|
-
const FileUploader_vue_vue_type_style_index_0_lang = "";
|
|
22431
|
-
const FileUploader_vue_vue_type_style_index_1_lang = "";
|
|
22432
22408
|
const _hoisted_1$h = {
|
|
22433
22409
|
key: 0,
|
|
22434
22410
|
class: "person-card-edit flex gap-2"
|
|
@@ -22531,7 +22507,6 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
|
|
|
22531
22507
|
};
|
|
22532
22508
|
}
|
|
22533
22509
|
});
|
|
22534
|
-
const PersonPreviewFormkit_vue_vue_type_style_index_0_lang = "";
|
|
22535
22510
|
const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
22536
22511
|
__name: "TextVariableExamples",
|
|
22537
22512
|
props: {
|
|
@@ -22682,7 +22657,6 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
|
22682
22657
|
};
|
|
22683
22658
|
}
|
|
22684
22659
|
});
|
|
22685
|
-
const CheckInput_vue_vue_type_style_index_0_scoped_6a5478c3_lang = "";
|
|
22686
22660
|
const CheckInput = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["__scopeId", "data-v-6a5478c3"]]);
|
|
22687
22661
|
const CheckInput$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
22688
22662
|
__proto__: null,
|
|
@@ -22809,7 +22783,6 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
|
|
|
22809
22783
|
};
|
|
22810
22784
|
}
|
|
22811
22785
|
});
|
|
22812
|
-
const CurrencyInput_vue_vue_type_style_index_0_scoped_4cb01bfc_lang = "";
|
|
22813
22786
|
const CurrencyInput = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__scopeId", "data-v-4cb01bfc"]]);
|
|
22814
22787
|
const CurrencyInput$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
22815
22788
|
__proto__: null,
|
|
@@ -22856,7 +22829,6 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
|
|
|
22856
22829
|
};
|
|
22857
22830
|
}
|
|
22858
22831
|
});
|
|
22859
|
-
const DateInput_vue_vue_type_style_index_0_scoped_d725a376_lang = "";
|
|
22860
22832
|
const DateInput = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["__scopeId", "data-v-d725a376"]]);
|
|
22861
22833
|
const DateInput$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
22862
22834
|
__proto__: null,
|
|
@@ -22950,7 +22922,6 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
|
|
|
22950
22922
|
};
|
|
22951
22923
|
}
|
|
22952
22924
|
});
|
|
22953
|
-
const EmailInput_vue_vue_type_style_index_0_scoped_ed81a514_lang = "";
|
|
22954
22925
|
const EmailInput = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["__scopeId", "data-v-ed81a514"]]);
|
|
22955
22926
|
const EmailInput$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
22956
22927
|
__proto__: null,
|
|
@@ -23091,7 +23062,6 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
|
23091
23062
|
};
|
|
23092
23063
|
}
|
|
23093
23064
|
});
|
|
23094
|
-
const JSONInput_vue_vue_type_style_index_0_scoped_1fc4f739_lang = "";
|
|
23095
23065
|
const JSONInput = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["__scopeId", "data-v-1fc4f739"]]);
|
|
23096
23066
|
const JSONInput$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23097
23067
|
__proto__: null,
|
|
@@ -23300,7 +23270,6 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
|
|
|
23300
23270
|
};
|
|
23301
23271
|
}
|
|
23302
23272
|
});
|
|
23303
|
-
const LinkField_vue_vue_type_style_index_0_scoped_81840a60_lang = "";
|
|
23304
23273
|
const LinkField = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-81840a60"]]);
|
|
23305
23274
|
const LinkField$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23306
23275
|
__proto__: null,
|
|
@@ -23364,7 +23333,6 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
23364
23333
|
};
|
|
23365
23334
|
}
|
|
23366
23335
|
});
|
|
23367
|
-
const PasswordInput_vue_vue_type_style_index_0_scoped_eec3e237_lang = "";
|
|
23368
23336
|
const PasswordInput = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__scopeId", "data-v-eec3e237"]]);
|
|
23369
23337
|
const PasswordInput$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23370
23338
|
__proto__: null,
|
|
@@ -23425,7 +23393,6 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
|
23425
23393
|
};
|
|
23426
23394
|
}
|
|
23427
23395
|
});
|
|
23428
|
-
const Password_vue_vue_type_style_index_0_scoped_c0d14aa1_lang = "";
|
|
23429
23396
|
const Password = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__scopeId", "data-v-c0d14aa1"]]);
|
|
23430
23397
|
const Password$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23431
23398
|
__proto__: null,
|
|
@@ -23452,7 +23419,6 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
|
|
|
23452
23419
|
};
|
|
23453
23420
|
}
|
|
23454
23421
|
});
|
|
23455
|
-
const ReadOnlyInput_vue_vue_type_style_index_0_scoped_92851182_lang = "";
|
|
23456
23422
|
const ReadOnlyInput = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["__scopeId", "data-v-92851182"]]);
|
|
23457
23423
|
const ReadOnlyInput$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23458
23424
|
__proto__: null,
|
|
@@ -23473,7 +23439,6 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
|
|
|
23473
23439
|
};
|
|
23474
23440
|
}
|
|
23475
23441
|
});
|
|
23476
|
-
const LangText_vue_vue_type_style_index_0_lang = "";
|
|
23477
23442
|
const _hoisted_1$3 = ["title"];
|
|
23478
23443
|
const _hoisted_2$3 = ["onClick"];
|
|
23479
23444
|
const _hoisted_3$3 = ["onClick"];
|
|
@@ -23646,7 +23611,6 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
23646
23611
|
};
|
|
23647
23612
|
}
|
|
23648
23613
|
});
|
|
23649
|
-
const SelectField_vue_vue_type_style_index_0_scoped_0b2eccce_lang = "";
|
|
23650
23614
|
const SelectField = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__scopeId", "data-v-0b2eccce"]]);
|
|
23651
23615
|
const SelectField$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23652
23616
|
__proto__: null,
|
|
@@ -23691,7 +23655,6 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
|
23691
23655
|
};
|
|
23692
23656
|
}
|
|
23693
23657
|
});
|
|
23694
|
-
const RichTextEditor_vue_vue_type_style_index_0_scoped_69a60381_lang = "";
|
|
23695
23658
|
const RichTextEditor = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["__scopeId", "data-v-69a60381"]]);
|
|
23696
23659
|
const RichTextEditor$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23697
23660
|
__proto__: null,
|
|
@@ -26384,8 +26347,6 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
26384
26347
|
};
|
|
26385
26348
|
}
|
|
26386
26349
|
});
|
|
26387
|
-
const TableField_vue_vue_type_style_index_0_scoped_c5cacca2_lang = "";
|
|
26388
|
-
const TableField_vue_vue_type_style_index_1_lang = "";
|
|
26389
26350
|
const TableField = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-c5cacca2"]]);
|
|
26390
26351
|
const TableField$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
26391
26352
|
__proto__: null,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bagelink/vue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.85",
|
|
5
5
|
"description": "Bagel core sdk packages",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Neveh Allon",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"prosemirror-state": "^1.4.3",
|
|
66
66
|
"prosemirror-view": "^1.32.4",
|
|
67
67
|
"@vue-macros/reactivity-transform": "^0.4.0",
|
|
68
|
-
"@bagelink/sdk": "0.0.
|
|
68
|
+
"@bagelink/sdk": "0.0.85"
|
|
69
69
|
},
|
|
70
70
|
"peerDependencies": {
|
|
71
71
|
"@bagelink/sdk": "*"
|