@kengic/vue 0.28.2-beta.20 → 0.28.2-beta.21
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/kengic-vue.js +59 -58
- package/package.json +1 -1
package/dist/kengic-vue.js
CHANGED
@@ -71373,7 +71373,7 @@ function fi(e) {
|
|
71373
71373
|
})
|
71374
71374
|
);
|
71375
71375
|
}
|
71376
|
-
const version = "0.28.2-beta.
|
71376
|
+
const version = "0.28.2-beta.21", en$1 = {
|
71377
71377
|
kg: {
|
71378
71378
|
KgAppSelect: {
|
71379
71379
|
businessManager: "Business Manager",
|
@@ -76795,54 +76795,55 @@ function requireCore() {
|
|
76795
76795
|
});
|
76796
76796
|
}(core)), core.exports;
|
76797
76797
|
}
|
76798
|
-
var encBase64 = { exports: {} };
|
76799
|
-
|
76800
|
-
(function(
|
76801
|
-
|
76802
|
-
|
76803
|
-
|
76804
|
-
|
76805
|
-
|
76806
|
-
|
76807
|
-
|
76808
|
-
|
76809
|
-
|
76810
|
-
for (var
|
76811
|
-
|
76812
|
-
|
76813
|
-
|
76814
|
-
|
76815
|
-
oa.
|
76816
|
-
|
76817
|
-
|
76818
|
-
|
76819
|
-
|
76820
|
-
|
76821
|
-
na
|
76822
|
-
|
76823
|
-
|
76824
|
-
|
76825
|
-
|
76826
|
-
|
76827
|
-
|
76828
|
-
|
76829
|
-
|
76830
|
-
|
76831
|
-
|
76832
|
-
|
76833
|
-
|
76834
|
-
|
76835
|
-
|
76836
|
-
|
76837
|
-
|
76838
|
-
|
76839
|
-
|
76840
|
-
|
76841
|
-
|
76842
|
-
|
76843
|
-
|
76844
|
-
})
|
76845
|
-
|
76798
|
+
var encBase64 = { exports: {} }, hasRequiredEncBase64;
|
76799
|
+
function requireEncBase64() {
|
76800
|
+
return hasRequiredEncBase64 || (hasRequiredEncBase64 = 1, function(e, G) {
|
76801
|
+
(function(U, te) {
|
76802
|
+
e.exports = te(requireCore());
|
76803
|
+
})(commonjsGlobal, function(U) {
|
76804
|
+
return function() {
|
76805
|
+
var te = U, ne = te.lib, oe = ne.WordArray, ie = te.enc;
|
76806
|
+
ie.Base64 = {
|
76807
|
+
stringify: function(st) {
|
76808
|
+
var ea = st.words, ta = st.sigBytes, na = this._map;
|
76809
|
+
st.clamp();
|
76810
|
+
for (var oa = [], la = 0; la < ta; la += 3)
|
76811
|
+
for (var ca = ea[la >>> 2] >>> 24 - la % 4 * 8 & 255, da = ea[la + 1 >>> 2] >>> 24 - (la + 1) % 4 * 8 & 255, fa = ea[la + 2 >>> 2] >>> 24 - (la + 2) % 4 * 8 & 255, pa = ca << 16 | da << 8 | fa, ga = 0; ga < 4 && la + ga * 0.75 < ta; ga++)
|
76812
|
+
oa.push(na.charAt(pa >>> 6 * (3 - ga) & 63));
|
76813
|
+
var ha = na.charAt(64);
|
76814
|
+
if (ha)
|
76815
|
+
for (; oa.length % 4; )
|
76816
|
+
oa.push(ha);
|
76817
|
+
return oa.join("");
|
76818
|
+
},
|
76819
|
+
parse: function(st) {
|
76820
|
+
var ea = st.length, ta = this._map, na = this._reverseMap;
|
76821
|
+
if (!na) {
|
76822
|
+
na = this._reverseMap = [];
|
76823
|
+
for (var oa = 0; oa < ta.length; oa++)
|
76824
|
+
na[ta.charCodeAt(oa)] = oa;
|
76825
|
+
}
|
76826
|
+
var la = ta.charAt(64);
|
76827
|
+
if (la) {
|
76828
|
+
var ca = st.indexOf(la);
|
76829
|
+
ca !== -1 && (ea = ca);
|
76830
|
+
}
|
76831
|
+
return ue(st, ea, na);
|
76832
|
+
},
|
76833
|
+
_map: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="
|
76834
|
+
};
|
76835
|
+
function ue(st, ea, ta) {
|
76836
|
+
for (var na = [], oa = 0, la = 0; la < ea; la++)
|
76837
|
+
if (la % 4) {
|
76838
|
+
var ca = ta[st.charCodeAt(la - 1)] << la % 4 * 2, da = ta[st.charCodeAt(la)] >>> 6 - la % 4 * 2, fa = ca | da;
|
76839
|
+
na[oa >>> 2] |= fa << 24 - oa % 4 * 8, oa++;
|
76840
|
+
}
|
76841
|
+
return oe.create(na, oa);
|
76842
|
+
}
|
76843
|
+
}(), U.enc.Base64;
|
76844
|
+
});
|
76845
|
+
}(encBase64)), encBase64.exports;
|
76846
|
+
}
|
76846
76847
|
var md5$1 = { exports: {} }, hasRequiredMd5;
|
76847
76848
|
function requireMd5() {
|
76848
76849
|
return hasRequiredMd5 || (hasRequiredMd5 = 1, function(e, G) {
|
@@ -77214,7 +77215,7 @@ function requireCipherCore() {
|
|
77214
77215
|
}
|
77215
77216
|
(function(e, G) {
|
77216
77217
|
(function(U, te, ne) {
|
77217
|
-
e.exports = te(requireCore(),
|
77218
|
+
e.exports = te(requireCore(), requireEncBase64(), requireMd5(), requireEvpkdf(), requireCipherCore());
|
77218
77219
|
})(commonjsGlobal, function(U) {
|
77219
77220
|
return function() {
|
77220
77221
|
var te = U, ne = te.lib, oe = ne.BlockCipher, ie = te.algo, ue = [], st = [], ea = [], ta = [], na = [], oa = [], la = [], ca = [], da = [], fa = [];
|
@@ -77269,7 +77270,7 @@ function requireCipherCore() {
|
|
77269
77270
|
}(), U.AES;
|
77270
77271
|
});
|
77271
77272
|
})(aes);
|
77272
|
-
var encUtf8 = { exports: {} };
|
77273
|
+
var encBase64Exports = requireEncBase64(), encUtf8 = { exports: {} };
|
77273
77274
|
(function(e, G) {
|
77274
77275
|
(function(U, te) {
|
77275
77276
|
e.exports = te(requireCore());
|
@@ -77331,10 +77332,10 @@ class AesEncryption {
|
|
77331
77332
|
}
|
77332
77333
|
}
|
77333
77334
|
function encryptByBase64(e) {
|
77334
|
-
return UTF8.parse(e).toString(
|
77335
|
+
return UTF8.parse(e).toString(encBase64Exports);
|
77335
77336
|
}
|
77336
77337
|
function decodeByBase64(e) {
|
77337
|
-
return
|
77338
|
+
return encBase64Exports.parse(e).toString(UTF8);
|
77338
77339
|
}
|
77339
77340
|
function encryptByMd5(e) {
|
77340
77341
|
return md5Exports(e).toString();
|
@@ -79032,9 +79033,9 @@ class _KgUtil {
|
|
79032
79033
|
return 0;
|
79033
79034
|
if (h$1.tryParseJSON(ea.ctrl_prop).dataType === "BOOLEAN") {
|
79034
79035
|
const oa = (() => {
|
79035
|
-
if (st === !0)
|
79036
|
+
if (st === !0 || st === 1 || st === "1")
|
79036
79037
|
return !0;
|
79037
|
-
if (st === !1)
|
79038
|
+
if (st === !1 || st === 0 || st === "0")
|
79038
79039
|
return !1;
|
79039
79040
|
if (typeof st == "string" && st.toUpperCase() === "TRUE")
|
79040
79041
|
return !0;
|
@@ -79068,9 +79069,9 @@ class _KgUtil {
|
|
79068
79069
|
return 0;
|
79069
79070
|
if (h$1.tryParseJSON(ea.ctrl_prop).dataType === "BOOLEAN") {
|
79070
79071
|
const oa = (() => {
|
79071
|
-
if (st === !0)
|
79072
|
+
if (st === !0 || st === 1 || st === "1")
|
79072
79073
|
return !0;
|
79073
|
-
if (st === !1)
|
79074
|
+
if (st === !1 || st === 0 || st === "0")
|
79074
79075
|
return !1;
|
79075
79076
|
if (typeof st == "string" && st.toUpperCase() === "TRUE")
|
79076
79077
|
return !0;
|
@@ -79199,7 +79200,7 @@ class _KgUtil {
|
|
79199
79200
|
return oa;
|
79200
79201
|
}
|
79201
79202
|
case KG__VAR_CONFIG_POSSIBILITY__VALUE_DATA_TYPE.BOOLEAN:
|
79202
|
-
return typeof st == "string" && st.toUpperCase() === "TRUE" ? !0 : typeof st == "string" && st.toUpperCase() === "FALSE" ? !1 : Boolean(st);
|
79203
|
+
return st === !0 || st === 1 || st === "1" ? !0 : st === !1 || st === 0 || st === "0" ? !1 : typeof st == "string" && st.toUpperCase() === "TRUE" ? !0 : typeof st == "string" && st.toUpperCase() === "FALSE" ? !1 : Boolean(st);
|
79203
79204
|
case KG__VAR_CONFIG_POSSIBILITY__VALUE_DATA_TYPE.STRING:
|
79204
79205
|
return String(st);
|
79205
79206
|
case KG__VAR_CONFIG_POSSIBILITY__VALUE_DATA_TYPE.DEFAULT:
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@kengic/vue",
|
3
|
-
"version": "0.28.2-beta.
|
3
|
+
"version": "0.28.2-beta.21",
|
4
4
|
"scripts": {
|
5
5
|
"build": "npm run use-node && rimraf dist && vue-tsc && vite build",
|
6
6
|
"build:dev": "npm run use-node && rimraf dist && vue-tsc && vite build --mode development",
|