@kengic/vue 0.28.2-beta.0 → 0.28.2-beta.1
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 +55 -54
- package/package.json +1 -1
package/dist/kengic-vue.js
CHANGED
@@ -71348,7 +71348,7 @@ function fi(e) {
|
|
71348
71348
|
})
|
71349
71349
|
);
|
71350
71350
|
}
|
71351
|
-
const version = "0.28.2-beta.
|
71351
|
+
const version = "0.28.2-beta.1", en$1 = {
|
71352
71352
|
kg: {
|
71353
71353
|
KgAppSelect: {
|
71354
71354
|
businessManager: "Business Manager",
|
@@ -76770,54 +76770,55 @@ function requireCore() {
|
|
76770
76770
|
});
|
76771
76771
|
}(core)), core.exports;
|
76772
76772
|
}
|
76773
|
-
var encBase64 = { exports: {} };
|
76774
|
-
|
76775
|
-
(function(
|
76776
|
-
|
76777
|
-
|
76778
|
-
|
76779
|
-
|
76780
|
-
|
76781
|
-
|
76782
|
-
|
76783
|
-
|
76784
|
-
|
76785
|
-
for (var
|
76786
|
-
|
76787
|
-
|
76788
|
-
|
76789
|
-
|
76790
|
-
oa.
|
76791
|
-
|
76792
|
-
|
76793
|
-
|
76794
|
-
|
76795
|
-
|
76796
|
-
na
|
76797
|
-
|
76798
|
-
|
76799
|
-
|
76800
|
-
|
76801
|
-
|
76802
|
-
|
76803
|
-
|
76804
|
-
|
76805
|
-
|
76806
|
-
|
76807
|
-
|
76808
|
-
|
76809
|
-
|
76810
|
-
|
76811
|
-
|
76812
|
-
|
76813
|
-
|
76814
|
-
|
76815
|
-
|
76816
|
-
|
76817
|
-
|
76818
|
-
|
76819
|
-
})
|
76820
|
-
|
76773
|
+
var encBase64 = { exports: {} }, hasRequiredEncBase64;
|
76774
|
+
function requireEncBase64() {
|
76775
|
+
return hasRequiredEncBase64 || (hasRequiredEncBase64 = 1, function(e, G) {
|
76776
|
+
(function(U, te) {
|
76777
|
+
e.exports = te(requireCore());
|
76778
|
+
})(commonjsGlobal, function(U) {
|
76779
|
+
return function() {
|
76780
|
+
var te = U, ne = te.lib, oe = ne.WordArray, ie = te.enc;
|
76781
|
+
ie.Base64 = {
|
76782
|
+
stringify: function(st) {
|
76783
|
+
var ea = st.words, ta = st.sigBytes, na = this._map;
|
76784
|
+
st.clamp();
|
76785
|
+
for (var oa = [], la = 0; la < ta; la += 3)
|
76786
|
+
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++)
|
76787
|
+
oa.push(na.charAt(pa >>> 6 * (3 - ga) & 63));
|
76788
|
+
var ha = na.charAt(64);
|
76789
|
+
if (ha)
|
76790
|
+
for (; oa.length % 4; )
|
76791
|
+
oa.push(ha);
|
76792
|
+
return oa.join("");
|
76793
|
+
},
|
76794
|
+
parse: function(st) {
|
76795
|
+
var ea = st.length, ta = this._map, na = this._reverseMap;
|
76796
|
+
if (!na) {
|
76797
|
+
na = this._reverseMap = [];
|
76798
|
+
for (var oa = 0; oa < ta.length; oa++)
|
76799
|
+
na[ta.charCodeAt(oa)] = oa;
|
76800
|
+
}
|
76801
|
+
var la = ta.charAt(64);
|
76802
|
+
if (la) {
|
76803
|
+
var ca = st.indexOf(la);
|
76804
|
+
ca !== -1 && (ea = ca);
|
76805
|
+
}
|
76806
|
+
return ue(st, ea, na);
|
76807
|
+
},
|
76808
|
+
_map: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="
|
76809
|
+
};
|
76810
|
+
function ue(st, ea, ta) {
|
76811
|
+
for (var na = [], oa = 0, la = 0; la < ea; la++)
|
76812
|
+
if (la % 4) {
|
76813
|
+
var ca = ta[st.charCodeAt(la - 1)] << la % 4 * 2, da = ta[st.charCodeAt(la)] >>> 6 - la % 4 * 2, fa = ca | da;
|
76814
|
+
na[oa >>> 2] |= fa << 24 - oa % 4 * 8, oa++;
|
76815
|
+
}
|
76816
|
+
return oe.create(na, oa);
|
76817
|
+
}
|
76818
|
+
}(), U.enc.Base64;
|
76819
|
+
});
|
76820
|
+
}(encBase64)), encBase64.exports;
|
76821
|
+
}
|
76821
76822
|
var md5$1 = { exports: {} }, hasRequiredMd5;
|
76822
76823
|
function requireMd5() {
|
76823
76824
|
return hasRequiredMd5 || (hasRequiredMd5 = 1, function(e, G) {
|
@@ -77189,7 +77190,7 @@ function requireCipherCore() {
|
|
77189
77190
|
}
|
77190
77191
|
(function(e, G) {
|
77191
77192
|
(function(U, te, ne) {
|
77192
|
-
e.exports = te(requireCore(),
|
77193
|
+
e.exports = te(requireCore(), requireEncBase64(), requireMd5(), requireEvpkdf(), requireCipherCore());
|
77193
77194
|
})(commonjsGlobal, function(U) {
|
77194
77195
|
return function() {
|
77195
77196
|
var te = U, ne = te.lib, oe = ne.BlockCipher, ie = te.algo, ue = [], st = [], ea = [], ta = [], na = [], oa = [], la = [], ca = [], da = [], fa = [];
|
@@ -77244,7 +77245,7 @@ function requireCipherCore() {
|
|
77244
77245
|
}(), U.AES;
|
77245
77246
|
});
|
77246
77247
|
})(aes);
|
77247
|
-
var encUtf8 = { exports: {} };
|
77248
|
+
var encBase64Exports = requireEncBase64(), encUtf8 = { exports: {} };
|
77248
77249
|
(function(e, G) {
|
77249
77250
|
(function(U, te) {
|
77250
77251
|
e.exports = te(requireCore());
|
@@ -77306,10 +77307,10 @@ class AesEncryption {
|
|
77306
77307
|
}
|
77307
77308
|
}
|
77308
77309
|
function encryptByBase64(e) {
|
77309
|
-
return UTF8.parse(e).toString(
|
77310
|
+
return UTF8.parse(e).toString(encBase64Exports);
|
77310
77311
|
}
|
77311
77312
|
function decodeByBase64(e) {
|
77312
|
-
return
|
77313
|
+
return encBase64Exports.parse(e).toString(UTF8);
|
77313
77314
|
}
|
77314
77315
|
function encryptByMd5(e) {
|
77315
77316
|
return md5Exports(e).toString();
|
@@ -105773,7 +105774,7 @@ function transformVarSubmitConfigs(e) {
|
|
105773
105774
|
VarSubmitConfig: ea
|
105774
105775
|
}), ea.display_type = ie), [st].includes(ea.display_type)) {
|
105775
105776
|
const oa = h$1.tryParseJSON(ea.props);
|
105776
|
-
(na = (ta = oa.displayType) == null ? void 0 : ta[KG__VAR_SUBMIT_CONFIG__DISPLAY_TYPE.INLINE]) != null && na.target || (set(oa, `displayType.${KG__VAR_SUBMIT_CONFIG__DISPLAY_TYPE.INLINE}.target`, `.kg-var--kg-submit--inline-default-target[kg-form_id="${ea.frm_id}"]`), ea.props = JSON.stringify(oa));
|
105777
|
+
(na = (ta = oa.displayType) == null ? void 0 : ta[KG__VAR_SUBMIT_CONFIG__DISPLAY_TYPE.INLINE]) != null && na.target || (set(oa, `displayType.${KG__VAR_SUBMIT_CONFIG__DISPLAY_TYPE.INLINE}.target`, `.kg-var--kg-submit--inline-default-target[kg-form_id="${ea.frm_id}"]`), ea.props = JSON.stringify(oa)), ea.resizable_flg = 0;
|
105777
105778
|
}
|
105778
105779
|
if (ea.layout === G)
|
105779
105780
|
switch (ea.label_col_unit) {
|
package/package.json
CHANGED