@pdfme/ui 5.1.1 → 5.1.2-dev.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/index.es.js +163 -81
- package/dist/index.umd.js +6 -6
- package/dist/types/contexts.d.ts +2 -1
- package/package.json +1 -1
- package/src/i18n.ts +11 -0
package/dist/index.es.js
CHANGED
@@ -9241,6 +9241,7 @@ const langs = ["en", "zh", "ja", "ko", "ar", "th", "pl", "it", "de", "es", "fr"]
|
|
9241
9241
|
z.object({
|
9242
9242
|
// -----------------used in ui-----------------
|
9243
9243
|
cancel: z.string(),
|
9244
|
+
close: z.string(),
|
9244
9245
|
field: z.string(),
|
9245
9246
|
fieldName: z.string(),
|
9246
9247
|
align: z.string(),
|
@@ -9351,7 +9352,7 @@ const SchemaPageArray = z.array(z.array(Schema$1)), Template = z.object({
|
|
9351
9352
|
creationDate: z.date().optional(),
|
9352
9353
|
creator: z.string().optional(),
|
9353
9354
|
keywords: z.array(z.string()).optional(),
|
9354
|
-
|
9355
|
+
lang: Lang.optional(),
|
9355
9356
|
modificationDate: z.date().optional(),
|
9356
9357
|
producer: z.string().optional(),
|
9357
9358
|
subject: z.string().optional(),
|
@@ -76126,7 +76127,7 @@ strings$2.utf8border = function(a, s) {
|
|
76126
76127
|
function ZStream$2() {
|
76127
76128
|
this.input = null, this.next_in = 0, this.avail_in = 0, this.total_in = 0, this.output = null, this.next_out = 0, this.avail_out = 0, this.total_out = 0, this.msg = "", this.state = null, this.data_type = 2, this.adler = 0;
|
76128
76129
|
}
|
76129
|
-
var zstream = ZStream$2, zlib_deflate = deflate$3, utils$5 = common, strings$1 = strings$2, msg$1 = messages$1, ZStream$1 = zstream, toString$
|
76130
|
+
var zstream = ZStream$2, zlib_deflate = deflate$3, utils$5 = common, strings$1 = strings$2, msg$1 = messages$1, ZStream$1 = zstream, toString$4 = Object.prototype.toString, Z_NO_FLUSH = 0, Z_FINISH$1 = 4, Z_OK$1 = 0, Z_STREAM_END$1 = 1, Z_SYNC_FLUSH = 2, Z_DEFAULT_COMPRESSION = -1, Z_DEFAULT_STRATEGY = 0, Z_DEFLATED$1 = 8;
|
76130
76131
|
function Deflate(a) {
|
76131
76132
|
if (!(this instanceof Deflate))
|
76132
76133
|
return new Deflate(a);
|
@@ -76153,7 +76154,7 @@ function Deflate(a) {
|
|
76153
76154
|
throw new Error(msg$1[$]);
|
76154
76155
|
if (s.header && zlib_deflate.deflateSetHeader(this.strm, s.header), s.dictionary) {
|
76155
76156
|
var _;
|
76156
|
-
if (typeof s.dictionary == "string" ? _ = strings$1.string2buf(s.dictionary) : toString$
|
76157
|
+
if (typeof s.dictionary == "string" ? _ = strings$1.string2buf(s.dictionary) : toString$4.call(s.dictionary) === "[object ArrayBuffer]" ? _ = new Uint8Array(s.dictionary) : _ = s.dictionary, $ = zlib_deflate.deflateSetDictionary(this.strm, _), $ !== Z_OK$1)
|
76157
76158
|
throw new Error(msg$1[$]);
|
76158
76159
|
this._dict_set = !0;
|
76159
76160
|
}
|
@@ -76162,7 +76163,7 @@ Deflate.prototype.push = function(a, s) {
|
|
76162
76163
|
var $ = this.strm, _ = this.options.chunkSize, _e, tt;
|
76163
76164
|
if (this.ended)
|
76164
76165
|
return !1;
|
76165
|
-
tt = s === ~~s ? s : s === !0 ? Z_FINISH$1 : Z_NO_FLUSH, typeof a == "string" ? $.input = strings$1.string2buf(a) : toString$
|
76166
|
+
tt = s === ~~s ? s : s === !0 ? Z_FINISH$1 : Z_NO_FLUSH, typeof a == "string" ? $.input = strings$1.string2buf(a) : toString$4.call(a) === "[object ArrayBuffer]" ? $.input = new Uint8Array(a) : $.input = a, $.next_in = 0, $.avail_in = $.input.length;
|
76166
76167
|
do {
|
76167
76168
|
if ($.avail_out === 0 && ($.output = new utils$5.Buf8(_), $.next_out = 0, $.avail_out = _), _e = zlib_deflate.deflate($, tt), _e !== Z_STREAM_END$1 && _e !== Z_OK$1)
|
76168
76169
|
return this.onEnd(_e), this.ended = !0, !1;
|
@@ -77003,7 +77004,7 @@ var constants$1 = {
|
|
77003
77004
|
function GZheader$1() {
|
77004
77005
|
this.text = 0, this.time = 0, this.xflags = 0, this.os = 0, this.extra = null, this.extra_len = 0, this.name = "", this.comment = "", this.hcrc = 0, this.done = !1;
|
77005
77006
|
}
|
77006
|
-
var gzheader = GZheader$1, zlib_inflate = inflate$3, utils$2 = common, strings = strings$2, c$1 = constants$1, msg = messages$1, ZStream = zstream, GZheader = gzheader, toString$
|
77007
|
+
var gzheader = GZheader$1, zlib_inflate = inflate$3, utils$2 = common, strings = strings$2, c$1 = constants$1, msg = messages$1, ZStream = zstream, GZheader = gzheader, toString$3 = Object.prototype.toString;
|
77007
77008
|
function Inflate(a) {
|
77008
77009
|
if (!(this instanceof Inflate))
|
77009
77010
|
return new Inflate(a);
|
@@ -77020,14 +77021,14 @@ function Inflate(a) {
|
|
77020
77021
|
);
|
77021
77022
|
if ($ !== c$1.Z_OK)
|
77022
77023
|
throw new Error(msg[$]);
|
77023
|
-
if (this.header = new GZheader(), zlib_inflate.inflateGetHeader(this.strm, this.header), s.dictionary && (typeof s.dictionary == "string" ? s.dictionary = strings.string2buf(s.dictionary) : toString$
|
77024
|
+
if (this.header = new GZheader(), zlib_inflate.inflateGetHeader(this.strm, this.header), s.dictionary && (typeof s.dictionary == "string" ? s.dictionary = strings.string2buf(s.dictionary) : toString$3.call(s.dictionary) === "[object ArrayBuffer]" && (s.dictionary = new Uint8Array(s.dictionary)), s.raw && ($ = zlib_inflate.inflateSetDictionary(this.strm, s.dictionary), $ !== c$1.Z_OK)))
|
77024
77025
|
throw new Error(msg[$]);
|
77025
77026
|
}
|
77026
77027
|
Inflate.prototype.push = function(a, s) {
|
77027
77028
|
var $ = this.strm, _ = this.options.chunkSize, _e = this.options.dictionary, tt, nt, at, ot, rt, st = !1;
|
77028
77029
|
if (this.ended)
|
77029
77030
|
return !1;
|
77030
|
-
nt = s === ~~s ? s : s === !0 ? c$1.Z_FINISH : c$1.Z_NO_FLUSH, typeof a == "string" ? $.input = strings.binstring2buf(a) : toString$
|
77031
|
+
nt = s === ~~s ? s : s === !0 ? c$1.Z_FINISH : c$1.Z_NO_FLUSH, typeof a == "string" ? $.input = strings.binstring2buf(a) : toString$3.call(a) === "[object ArrayBuffer]" ? $.input = new Uint8Array(a) : $.input = a, $.next_in = 0, $.avail_in = $.input.length;
|
77031
77032
|
do {
|
77032
77033
|
if ($.avail_out === 0 && ($.output = new utils$2.Buf8(_), $.next_out = 0, $.avail_out = _), tt = zlib_inflate.inflate($, c$1.Z_NO_FLUSH), tt === c$1.Z_NEED_DICT && _e && (tt = zlib_inflate.inflateSetDictionary(this.strm, _e)), tt === c$1.Z_BUF_ERROR && st === !0 && (tt = c$1.Z_OK, st = !1), tt !== c$1.Z_STREAM_END && tt !== c$1.Z_OK)
|
77033
77034
|
return this.onEnd(tt), this.ended = !0, !1;
|
@@ -135206,6 +135207,7 @@ var MinusOutlined = function a(s, $) {
|
|
135206
135207
|
};
|
135207
135208
|
const MinusOutlined$1 = /* @__PURE__ */ reactExports.forwardRef(MinusOutlined), dictEn = {
|
135208
135209
|
cancel: "Cancel",
|
135210
|
+
close: "Close",
|
135209
135211
|
field: "field",
|
135210
135212
|
fieldName: "Name",
|
135211
135213
|
align: "Align",
|
@@ -135273,6 +135275,7 @@ const MinusOutlined$1 = /* @__PURE__ */ reactExports.forwardRef(MinusOutlined),
|
|
135273
135275
|
"schemas.select.optionPlaceholder": "Enter an option"
|
135274
135276
|
}, dictZh = {
|
135275
135277
|
cancel: "取消",
|
135278
|
+
close: "关闭",
|
135276
135279
|
field: "字段",
|
135277
135280
|
fieldName: "名称",
|
135278
135281
|
align: "对齐",
|
@@ -135340,6 +135343,7 @@ const MinusOutlined$1 = /* @__PURE__ */ reactExports.forwardRef(MinusOutlined),
|
|
135340
135343
|
"schemas.select.optionPlaceholder": "请输入选项"
|
135341
135344
|
}, dictJa = {
|
135342
135345
|
cancel: "キャンセル",
|
135346
|
+
close: "閉じる",
|
135343
135347
|
field: "入力項目",
|
135344
135348
|
fieldName: "項目名",
|
135345
135349
|
align: "整列",
|
@@ -135407,6 +135411,7 @@ const MinusOutlined$1 = /* @__PURE__ */ reactExports.forwardRef(MinusOutlined),
|
|
135407
135411
|
"schemas.select.optionPlaceholder": "オプションを入力してください"
|
135408
135412
|
}, dictKo = {
|
135409
135413
|
cancel: "취소",
|
135414
|
+
close: "닫기",
|
135410
135415
|
field: "필드",
|
135411
135416
|
fieldName: "이름",
|
135412
135417
|
align: "정렬",
|
@@ -135474,6 +135479,7 @@ const MinusOutlined$1 = /* @__PURE__ */ reactExports.forwardRef(MinusOutlined),
|
|
135474
135479
|
"schemas.select.optionPlaceholder": "옵션을 입력하세요"
|
135475
135480
|
}, dictAr = {
|
135476
135481
|
cancel: "إلغاء",
|
135482
|
+
close: "إغلاق",
|
135477
135483
|
field: "الحقل",
|
135478
135484
|
fieldName: "اسم الحقل",
|
135479
135485
|
align: "محاذاة",
|
@@ -135541,6 +135547,7 @@ const MinusOutlined$1 = /* @__PURE__ */ reactExports.forwardRef(MinusOutlined),
|
|
135541
135547
|
"schemas.select.optionPlaceholder": "أدخل خيارًا"
|
135542
135548
|
}, dictTh = {
|
135543
135549
|
cancel: "ยกเลิก",
|
135550
|
+
close: "ปิด",
|
135544
135551
|
field: "ฟิลด์",
|
135545
135552
|
fieldName: "ชื่อฟิลด์",
|
135546
135553
|
align: "จัดเรียง",
|
@@ -135608,6 +135615,7 @@ const MinusOutlined$1 = /* @__PURE__ */ reactExports.forwardRef(MinusOutlined),
|
|
135608
135615
|
"schemas.select.optionPlaceholder": "กรอกตัวเลือก"
|
135609
135616
|
}, dictIt = {
|
135610
135617
|
cancel: "Annulla",
|
135618
|
+
close: "Chiudi",
|
135611
135619
|
field: "Campo",
|
135612
135620
|
fieldName: "Nome",
|
135613
135621
|
align: "Allinea",
|
@@ -135675,6 +135683,7 @@ const MinusOutlined$1 = /* @__PURE__ */ reactExports.forwardRef(MinusOutlined),
|
|
135675
135683
|
"schemas.select.optionPlaceholder": "Inserisci un'opzione"
|
135676
135684
|
}, dictPl = {
|
135677
135685
|
cancel: "Anuluj",
|
135686
|
+
close: "Zamknij",
|
135678
135687
|
field: "pole",
|
135679
135688
|
fieldName: "Klucz pola",
|
135680
135689
|
align: "Wyrównanie",
|
@@ -135742,6 +135751,7 @@ const MinusOutlined$1 = /* @__PURE__ */ reactExports.forwardRef(MinusOutlined),
|
|
135742
135751
|
"schemas.select.optionPlaceholder": "Wpisz opcję"
|
135743
135752
|
}, dictDe = {
|
135744
135753
|
cancel: "Abbrechen",
|
135754
|
+
close: "Schließen",
|
135745
135755
|
field: "Feld",
|
135746
135756
|
fieldName: "Name",
|
135747
135757
|
align: "Ausrichten",
|
@@ -135809,6 +135819,7 @@ const MinusOutlined$1 = /* @__PURE__ */ reactExports.forwardRef(MinusOutlined),
|
|
135809
135819
|
"schemas.select.optionPlaceholder": "Geben Sie eine Option ein"
|
135810
135820
|
}, dictEs = {
|
135811
135821
|
cancel: "Cancelar",
|
135822
|
+
close: "Cerrar",
|
135812
135823
|
field: "campo",
|
135813
135824
|
fieldName: "Nombre",
|
135814
135825
|
align: "Alinear",
|
@@ -135876,6 +135887,7 @@ const MinusOutlined$1 = /* @__PURE__ */ reactExports.forwardRef(MinusOutlined),
|
|
135876
135887
|
"schemas.select.optionPlaceholder": "Ingrese una opción"
|
135877
135888
|
}, dictFr = {
|
135878
135889
|
cancel: "Annuler",
|
135890
|
+
close: "Fermer",
|
135879
135891
|
field: "Champ",
|
135880
135892
|
fieldName: "Nom",
|
135881
135893
|
align: "Aligner",
|
@@ -137331,11 +137343,11 @@ var rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\
|
|
137331
137343
|
}), s;
|
137332
137344
|
});
|
137333
137345
|
const stringToPath$1 = stringToPath;
|
137334
|
-
function toString$
|
137346
|
+
function toString$2(a) {
|
137335
137347
|
return a == null ? "" : baseToString(a);
|
137336
137348
|
}
|
137337
137349
|
function castPath(a, s) {
|
137338
|
-
return isArray$5(a) ? a : isKey(a, s) ? [a] : stringToPath$1(toString$
|
137350
|
+
return isArray$5(a) ? a : isKey(a, s) ? [a] : stringToPath$1(toString$2(a));
|
137339
137351
|
}
|
137340
137352
|
var INFINITY = 1 / 0;
|
137341
137353
|
function toKey(a) {
|
@@ -137881,7 +137893,7 @@ var objectProto$2 = Object.prototype, hasOwnProperty$2 = objectProto$2.hasOwnPro
|
|
137881
137893
|
function baseHas(a, s) {
|
137882
137894
|
return a != null && hasOwnProperty$2.call(a, s);
|
137883
137895
|
}
|
137884
|
-
function has$
|
137896
|
+
function has$5(a, s) {
|
137885
137897
|
return a != null && hasPath(a, s, baseHas);
|
137886
137898
|
}
|
137887
137899
|
function parent(a, s) {
|
@@ -138131,7 +138143,7 @@ var FRContext = /* @__PURE__ */ reactExports.createContext(null), ConfigContext
|
|
138131
138143
|
validateTrigger: It,
|
138132
138144
|
antdVersion: yt
|
138133
138145
|
};
|
138134
|
-
}, _set = set, _get = get, _cloneDeep = cloneDeep, _has$1 = has$
|
138146
|
+
}, _set = set, _get = get, _cloneDeep = cloneDeep, _has$1 = has$5, _some = some$1, _isMatch = isMatch, isObject$6 = function a(s) {
|
138135
138147
|
var $ = Object.prototype.toString.call(s);
|
138136
138148
|
return $.indexOf("Object") > -1;
|
138137
138149
|
}, isArray$3 = function a(s) {
|
@@ -142450,17 +142462,25 @@ var _coreExports = _core.exports, _aFunction = function(a) {
|
|
142450
142462
|
if (!isObject$5(a))
|
142451
142463
|
throw TypeError(a + " is not an object!");
|
142452
142464
|
return a;
|
142453
|
-
}, _fails
|
142454
|
-
|
142455
|
-
|
142456
|
-
|
142457
|
-
|
142458
|
-
|
142459
|
-
|
142460
|
-
|
142461
|
-
|
142462
|
-
|
142463
|
-
|
142465
|
+
}, _fails, hasRequired_fails;
|
142466
|
+
function require_fails() {
|
142467
|
+
return hasRequired_fails || (hasRequired_fails = 1, _fails = function(a) {
|
142468
|
+
try {
|
142469
|
+
return !!a();
|
142470
|
+
} catch {
|
142471
|
+
return !0;
|
142472
|
+
}
|
142473
|
+
}), _fails;
|
142474
|
+
}
|
142475
|
+
var _descriptors, hasRequired_descriptors;
|
142476
|
+
function require_descriptors() {
|
142477
|
+
return hasRequired_descriptors || (hasRequired_descriptors = 1, _descriptors = !require_fails()(function() {
|
142478
|
+
return Object.defineProperty({}, "a", { get: function() {
|
142479
|
+
return 7;
|
142480
|
+
} }).a != 7;
|
142481
|
+
})), _descriptors;
|
142482
|
+
}
|
142483
|
+
var _domCreate, hasRequired_domCreate;
|
142464
142484
|
function require_domCreate() {
|
142465
142485
|
if (hasRequired_domCreate)
|
142466
142486
|
return _domCreate;
|
@@ -142470,7 +142490,7 @@ function require_domCreate() {
|
|
142470
142490
|
return $ ? s.createElement(_) : {};
|
142471
142491
|
}, _domCreate;
|
142472
142492
|
}
|
142473
|
-
var _ie8DomDefine = !
|
142493
|
+
var _ie8DomDefine = !require_descriptors() && !require_fails()(function() {
|
142474
142494
|
return Object.defineProperty(require_domCreate()("div"), "a", { get: function() {
|
142475
142495
|
return 7;
|
142476
142496
|
} }).a != 7;
|
@@ -142482,7 +142502,7 @@ var _ie8DomDefine = !_descriptors && !_fails(function() {
|
|
142482
142502
|
return _;
|
142483
142503
|
throw TypeError("Can't convert object to primitive value");
|
142484
142504
|
}, anObject$3 = _anObject, IE8_DOM_DEFINE$1 = _ie8DomDefine, toPrimitive$3 = _toPrimitive$5, dP$3 = Object.defineProperty;
|
142485
|
-
_objectDp.f =
|
142505
|
+
_objectDp.f = require_descriptors() ? Object.defineProperty : function a(s, $, _) {
|
142486
142506
|
if (anObject$3(s), $ = toPrimitive$3($, !0), anObject$3(_), IE8_DOM_DEFINE$1)
|
142487
142507
|
try {
|
142488
142508
|
return dP$3(s, $, _);
|
@@ -142499,17 +142519,17 @@ var _propertyDesc = function(a, s) {
|
|
142499
142519
|
writable: !(a & 4),
|
142500
142520
|
value: s
|
142501
142521
|
};
|
142502
|
-
}, dP$2 = _objectDp, createDesc$2 = _propertyDesc, _hide =
|
142522
|
+
}, dP$2 = _objectDp, createDesc$2 = _propertyDesc, _hide = require_descriptors() ? function(a, s, $) {
|
142503
142523
|
return dP$2.f(a, s, createDesc$2(1, $));
|
142504
142524
|
} : function(a, s, $) {
|
142505
142525
|
return a[s] = $, a;
|
142506
142526
|
}, hasOwnProperty = {}.hasOwnProperty, _has = function(a, s) {
|
142507
142527
|
return hasOwnProperty.call(a, s);
|
142508
|
-
}, global$4 = _globalExports, core$2 = _coreExports, ctx = _ctx, hide$1 = _hide, has$
|
142528
|
+
}, global$4 = _globalExports, core$2 = _coreExports, ctx = _ctx, hide$1 = _hide, has$4 = _has, PROTOTYPE$2 = "prototype", $export$5 = function(a, s, $) {
|
142509
142529
|
var _ = a & $export$5.F, _e = a & $export$5.G, tt = a & $export$5.S, nt = a & $export$5.P, at = a & $export$5.B, ot = a & $export$5.W, rt = _e ? core$2 : core$2[s] || (core$2[s] = {}), st = rt[PROTOTYPE$2], lt = _e ? global$4 : tt ? global$4[s] : (global$4[s] || {})[PROTOTYPE$2], et, it, ut;
|
142510
142530
|
_e && ($ = s);
|
142511
142531
|
for (et in $)
|
142512
|
-
it = !_ && lt && lt[et] !== void 0, !(it && has$
|
142532
|
+
it = !_ && lt && lt[et] !== void 0, !(it && has$4(rt, et)) && (ut = it ? lt[et] : $[et], rt[et] = _e && typeof lt[et] != "function" ? $[et] : at && it ? ctx(ut, global$4) : ot && lt[et] == ut ? function(ft) {
|
142513
142533
|
var ht = function(dt, gt, pt) {
|
142514
142534
|
if (this instanceof ft) {
|
142515
142535
|
switch (arguments.length) {
|
@@ -142535,44 +142555,80 @@ $export$5.B = 16;
|
|
142535
142555
|
$export$5.W = 32;
|
142536
142556
|
$export$5.U = 64;
|
142537
142557
|
$export$5.R = 128;
|
142538
|
-
var _export = $export$5,
|
142539
|
-
|
142540
|
-
|
142558
|
+
var _export = $export$5, _cof, hasRequired_cof;
|
142559
|
+
function require_cof() {
|
142560
|
+
if (hasRequired_cof)
|
142561
|
+
return _cof;
|
142562
|
+
hasRequired_cof = 1;
|
142563
|
+
var a = {}.toString;
|
142564
|
+
return _cof = function(s) {
|
142565
|
+
return a.call(s).slice(8, -1);
|
142566
|
+
}, _cof;
|
142567
|
+
}
|
142568
|
+
var _iobject, hasRequired_iobject;
|
142541
142569
|
function require_iobject() {
|
142542
142570
|
if (hasRequired_iobject)
|
142543
142571
|
return _iobject;
|
142544
142572
|
hasRequired_iobject = 1;
|
142545
|
-
var a =
|
142573
|
+
var a = require_cof();
|
142546
142574
|
return _iobject = Object("z").propertyIsEnumerable(0) ? Object : function(s) {
|
142547
142575
|
return a(s) == "String" ? s.split("") : Object(s);
|
142548
142576
|
}, _iobject;
|
142549
142577
|
}
|
142550
|
-
var _defined
|
142551
|
-
|
142552
|
-
|
142553
|
-
|
142554
|
-
|
142555
|
-
|
142578
|
+
var _defined, hasRequired_defined;
|
142579
|
+
function require_defined() {
|
142580
|
+
return hasRequired_defined || (hasRequired_defined = 1, _defined = function(a) {
|
142581
|
+
if (a == null)
|
142582
|
+
throw TypeError("Can't call method on " + a);
|
142583
|
+
return a;
|
142584
|
+
}), _defined;
|
142585
|
+
}
|
142586
|
+
var IObject = require_iobject(), defined$1 = require_defined(), _toIobject = function(a) {
|
142587
|
+
return IObject(defined$1(a));
|
142556
142588
|
}, ceil = Math.ceil, floor = Math.floor, _toInteger = function(a) {
|
142557
142589
|
return isNaN(a = +a) ? 0 : (a > 0 ? floor : ceil)(a);
|
142558
|
-
},
|
142559
|
-
|
142560
|
-
|
142561
|
-
|
142562
|
-
|
142563
|
-
|
142564
|
-
|
142565
|
-
|
142566
|
-
|
142567
|
-
|
142568
|
-
|
142569
|
-
|
142570
|
-
|
142571
|
-
|
142572
|
-
|
142573
|
-
|
142574
|
-
|
142575
|
-
|
142590
|
+
}, _toLength, hasRequired_toLength;
|
142591
|
+
function require_toLength() {
|
142592
|
+
if (hasRequired_toLength)
|
142593
|
+
return _toLength;
|
142594
|
+
hasRequired_toLength = 1;
|
142595
|
+
var a = _toInteger, s = Math.min;
|
142596
|
+
return _toLength = function($) {
|
142597
|
+
return $ > 0 ? s(a($), 9007199254740991) : 0;
|
142598
|
+
}, _toLength;
|
142599
|
+
}
|
142600
|
+
var _toAbsoluteIndex, hasRequired_toAbsoluteIndex;
|
142601
|
+
function require_toAbsoluteIndex() {
|
142602
|
+
if (hasRequired_toAbsoluteIndex)
|
142603
|
+
return _toAbsoluteIndex;
|
142604
|
+
hasRequired_toAbsoluteIndex = 1;
|
142605
|
+
var a = _toInteger, s = Math.max, $ = Math.min;
|
142606
|
+
return _toAbsoluteIndex = function(_, _e) {
|
142607
|
+
return _ = a(_), _ < 0 ? s(_ + _e, 0) : $(_, _e);
|
142608
|
+
}, _toAbsoluteIndex;
|
142609
|
+
}
|
142610
|
+
var _arrayIncludes, hasRequired_arrayIncludes;
|
142611
|
+
function require_arrayIncludes() {
|
142612
|
+
if (hasRequired_arrayIncludes)
|
142613
|
+
return _arrayIncludes;
|
142614
|
+
hasRequired_arrayIncludes = 1;
|
142615
|
+
var a = _toIobject, s = require_toLength(), $ = require_toAbsoluteIndex();
|
142616
|
+
return _arrayIncludes = function(_) {
|
142617
|
+
return function(_e, tt, nt) {
|
142618
|
+
var at = a(_e), ot = s(at.length), rt = $(nt, ot), st;
|
142619
|
+
if (_ && tt != tt) {
|
142620
|
+
for (; ot > rt; )
|
142621
|
+
if (st = at[rt++], st != st)
|
142622
|
+
return !0;
|
142623
|
+
} else
|
142624
|
+
for (; ot > rt; rt++)
|
142625
|
+
if ((_ || rt in at) && at[rt] === tt)
|
142626
|
+
return _ || rt || 0;
|
142627
|
+
return !_ && -1;
|
142628
|
+
};
|
142629
|
+
}, _arrayIncludes;
|
142630
|
+
}
|
142631
|
+
var _shared = { exports: {} }, _library = !0, core$1 = _coreExports, global$3 = _globalExports, SHARED = "__core-js_shared__", store$1 = global$3[SHARED] || (global$3[SHARED] = {});
|
142576
142632
|
(_shared.exports = function(a, s) {
|
142577
142633
|
return store$1[a] || (store$1[a] = s !== void 0 ? s : {});
|
142578
142634
|
})("versions", []).push({
|
@@ -142584,30 +142640,56 @@ var _sharedExports = _shared.exports, id$1 = 0, px = Math.random(), _uid = funct
|
|
142584
142640
|
return "Symbol(".concat(a === void 0 ? "" : a, ")_", (++id$1 + px).toString(36));
|
142585
142641
|
}, shared$1 = _sharedExports("keys"), uid$2 = _uid, _sharedKey = function(a) {
|
142586
142642
|
return shared$1[a] || (shared$1[a] = uid$2(a));
|
142587
|
-
},
|
142588
|
-
|
142589
|
-
|
142590
|
-
|
142591
|
-
|
142592
|
-
|
142593
|
-
return _e
|
142594
|
-
|
142595
|
-
|
142596
|
-
|
142597
|
-
|
142643
|
+
}, _objectKeysInternal, hasRequired_objectKeysInternal;
|
142644
|
+
function require_objectKeysInternal() {
|
142645
|
+
if (hasRequired_objectKeysInternal)
|
142646
|
+
return _objectKeysInternal;
|
142647
|
+
hasRequired_objectKeysInternal = 1;
|
142648
|
+
var a = _has, s = _toIobject, $ = require_arrayIncludes()(!1), _ = _sharedKey("IE_PROTO");
|
142649
|
+
return _objectKeysInternal = function(_e, tt) {
|
142650
|
+
var nt = s(_e), at = 0, ot = [], rt;
|
142651
|
+
for (rt in nt)
|
142652
|
+
rt != _ && a(nt, rt) && ot.push(rt);
|
142653
|
+
for (; tt.length > at; )
|
142654
|
+
a(nt, rt = tt[at++]) && (~$(ot, rt) || ot.push(rt));
|
142655
|
+
return ot;
|
142656
|
+
}, _objectKeysInternal;
|
142657
|
+
}
|
142658
|
+
var _enumBugKeys = "constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(","), _objectKeys, hasRequired_objectKeys;
|
142659
|
+
function require_objectKeys() {
|
142660
|
+
if (hasRequired_objectKeys)
|
142661
|
+
return _objectKeys;
|
142662
|
+
hasRequired_objectKeys = 1;
|
142663
|
+
var a = require_objectKeysInternal(), s = _enumBugKeys;
|
142664
|
+
return _objectKeys = Object.keys || function(_) {
|
142665
|
+
return a(_, s);
|
142666
|
+
}, _objectKeys;
|
142667
|
+
}
|
142668
|
+
var _objectGops = {}, hasRequired_objectGops;
|
142669
|
+
function require_objectGops() {
|
142670
|
+
return hasRequired_objectGops || (hasRequired_objectGops = 1, _objectGops.f = Object.getOwnPropertySymbols), _objectGops;
|
142671
|
+
}
|
142598
142672
|
var _objectPie = {}, hasRequired_objectPie;
|
142599
142673
|
function require_objectPie() {
|
142600
142674
|
return hasRequired_objectPie || (hasRequired_objectPie = 1, _objectPie.f = {}.propertyIsEnumerable), _objectPie;
|
142601
142675
|
}
|
142602
|
-
var
|
142603
|
-
|
142604
|
-
|
142676
|
+
var _toObject, hasRequired_toObject;
|
142677
|
+
function require_toObject() {
|
142678
|
+
if (hasRequired_toObject)
|
142679
|
+
return _toObject;
|
142680
|
+
hasRequired_toObject = 1;
|
142681
|
+
var a = require_defined();
|
142682
|
+
return _toObject = function(s) {
|
142683
|
+
return Object(a(s));
|
142684
|
+
}, _toObject;
|
142685
|
+
}
|
142686
|
+
var _objectAssign, hasRequired_objectAssign;
|
142605
142687
|
function require_objectAssign() {
|
142606
142688
|
if (hasRequired_objectAssign)
|
142607
142689
|
return _objectAssign;
|
142608
142690
|
hasRequired_objectAssign = 1;
|
142609
|
-
var a =
|
142610
|
-
return _objectAssign = !nt ||
|
142691
|
+
var a = require_descriptors(), s = require_objectKeys(), $ = require_objectGops(), _ = require_objectPie(), _e = require_toObject(), tt = require_iobject(), nt = Object.assign;
|
142692
|
+
return _objectAssign = !nt || require_fails()(function() {
|
142611
142693
|
var at = {}, ot = {}, rt = Symbol(), st = "abcdefghijklmnopqrst";
|
142612
142694
|
return at[rt] = 7, st.split("").forEach(function(lt) {
|
142613
142695
|
ot[lt] = lt;
|
@@ -143268,7 +143350,7 @@ var _default$g = function(a, s) {
|
|
143268
143350
|
if (!(a instanceof s))
|
143269
143351
|
throw new TypeError("Cannot call a class as a function");
|
143270
143352
|
}, $export$3 = _export;
|
143271
|
-
$export$3($export$3.S + $export$3.F * !
|
143353
|
+
$export$3($export$3.S + $export$3.F * !require_descriptors(), "Object", { defineProperty: _objectDp.f });
|
143272
143354
|
var $Object$1 = _coreExports.Object, defineProperty$3 = function a(s, $, _) {
|
143273
143355
|
return $Object$1.defineProperty(s, $, _);
|
143274
143356
|
}, defineProperty$2 = { default: defineProperty$3, __esModule: !0 }, _defineProperty$8 = defineProperty$2, _defineProperty2$1 = _interopRequireDefault$f(_defineProperty$8);
|
@@ -143285,12 +143367,12 @@ var _default$f = /* @__PURE__ */ function() {
|
|
143285
143367
|
return function(s, $, _) {
|
143286
143368
|
return $ && a(s.prototype, $), _ && a(s, _), s;
|
143287
143369
|
};
|
143288
|
-
}(), _typeof$j = {}, toInteger = _toInteger, defined =
|
143370
|
+
}(), _typeof$j = {}, toInteger = _toInteger, defined = require_defined(), _stringAt = function(a) {
|
143289
143371
|
return function(s, $) {
|
143290
143372
|
var _ = String(defined(s)), _e = toInteger($), tt = _.length, nt, at;
|
143291
143373
|
return _e < 0 || _e >= tt ? a ? "" : void 0 : (nt = _.charCodeAt(_e), nt < 55296 || nt > 56319 || _e + 1 === tt || (at = _.charCodeAt(_e + 1)) < 56320 || at > 57343 ? a ? _.charAt(_e) : nt : a ? _.slice(_e, _e + 2) : (nt - 55296 << 10) + (at - 56320) + 65536);
|
143292
143374
|
};
|
143293
|
-
}, _redefine = _hide, _iterators = {}, dP$1 = _objectDp, anObject$2 = _anObject, getKeys$2 =
|
143375
|
+
}, _redefine = _hide, _iterators = {}, dP$1 = _objectDp, anObject$2 = _anObject, getKeys$2 = require_objectKeys(), _objectDps = require_descriptors() ? Object.defineProperties : function a(s, $) {
|
143294
143376
|
anObject$2(s);
|
143295
143377
|
for (var _ = getKeys$2($), _e = _.length, tt = 0, nt; _e > tt; )
|
143296
143378
|
dP$1.f(s, nt = _[tt++], $[nt]);
|
@@ -143335,7 +143417,7 @@ function require_objectGpo() {
|
|
143335
143417
|
if (hasRequired_objectGpo)
|
143336
143418
|
return _objectGpo;
|
143337
143419
|
hasRequired_objectGpo = 1;
|
143338
|
-
var a = _has, s =
|
143420
|
+
var a = _has, s = require_toObject(), $ = _sharedKey("IE_PROTO"), _ = Object.prototype;
|
143339
143421
|
return _objectGpo = Object.getPrototypeOf || function(_e) {
|
143340
143422
|
return _e = s(_e), a(_e, $) ? _e[$] : typeof _e.constructor == "function" && _e instanceof _e.constructor ? _e.constructor.prototype : _e instanceof Object ? _ : null;
|
143341
143423
|
}, _objectGpo;
|
@@ -143408,7 +143490,7 @@ var _wksExt = {};
|
|
143408
143490
|
_wksExt.f = _wksExports;
|
143409
143491
|
var iterator$1 = _wksExt.f("iterator"), iterator = { default: iterator$1, __esModule: !0 }, _meta = { exports: {} }, META$1 = _uid("meta"), isObject$3 = _isObject, has$2 = _has, setDesc = _objectDp.f, id = 0, isExtensible = Object.isExtensible || function() {
|
143410
143492
|
return !0;
|
143411
|
-
}, FREEZE = !
|
143493
|
+
}, FREEZE = !require_fails()(function() {
|
143412
143494
|
return isExtensible(Object.preventExtensions({}));
|
143413
143495
|
}), setMeta = function(a) {
|
143414
143496
|
setDesc(a, META$1, { value: {
|
@@ -143448,15 +143530,15 @@ var iterator$1 = _wksExt.f("iterator"), iterator = { default: iterator$1, __esMo
|
|
143448
143530
|
}, _metaExports = _meta.exports, core = _coreExports, wksExt$1 = _wksExt, defineProperty$1 = _objectDp.f, _wksDefine = function(a) {
|
143449
143531
|
var s = core.Symbol || (core.Symbol = {});
|
143450
143532
|
a.charAt(0) != "_" && !(a in s) && defineProperty$1(s, a, { value: wksExt$1.f(a) });
|
143451
|
-
}, getKeys$1 =
|
143533
|
+
}, getKeys$1 = require_objectKeys(), gOPS = require_objectGops(), pIE$1 = require_objectPie(), _enumKeys = function(a) {
|
143452
143534
|
var s = getKeys$1(a), $ = gOPS.f;
|
143453
143535
|
if ($)
|
143454
143536
|
for (var _ = $(a), _e = pIE$1.f, tt = 0, nt; _.length > tt; )
|
143455
143537
|
_e.call(a, nt = _[tt++]) && s.push(nt);
|
143456
143538
|
return s;
|
143457
|
-
}, cof =
|
143539
|
+
}, cof = require_cof(), _isArray = Array.isArray || function a(s) {
|
143458
143540
|
return cof(s) == "Array";
|
143459
|
-
}, _objectGopnExt = {}, _objectGopn = {}, $keys$1 =
|
143541
|
+
}, _objectGopnExt = {}, _objectGopn = {}, $keys$1 = require_objectKeysInternal(), hiddenKeys = _enumBugKeys.concat("length", "prototype");
|
143460
143542
|
_objectGopn.f = Object.getOwnPropertyNames || function a(s) {
|
143461
143543
|
return $keys$1(s, hiddenKeys);
|
143462
143544
|
};
|
@@ -143471,7 +143553,7 @@ _objectGopnExt.f = function a(s) {
|
|
143471
143553
|
return windowNames && toString$1.call(s) == "[object Window]" ? getWindowNames(s) : gOPN$1(toIObject$2(s));
|
143472
143554
|
};
|
143473
143555
|
var _objectGopd = {}, pIE = require_objectPie(), createDesc$1 = _propertyDesc, toIObject$1 = _toIobject, toPrimitive$2 = _toPrimitive$5, has$1 = _has, IE8_DOM_DEFINE = _ie8DomDefine, gOPD$1 = Object.getOwnPropertyDescriptor;
|
143474
|
-
_objectGopd.f =
|
143556
|
+
_objectGopd.f = require_descriptors() ? gOPD$1 : function a(s, $) {
|
143475
143557
|
if (s = toIObject$1(s), $ = toPrimitive$2($, !0), IE8_DOM_DEFINE)
|
143476
143558
|
try {
|
143477
143559
|
return gOPD$1(s, $);
|
@@ -143480,7 +143562,7 @@ _objectGopd.f = _descriptors ? gOPD$1 : function a(s, $) {
|
|
143480
143562
|
if (has$1(s, $))
|
143481
143563
|
return createDesc$1(!pIE.f.call(s, $), s[$]);
|
143482
143564
|
};
|
143483
|
-
var global$1 = _globalExports, has = _has, DESCRIPTORS =
|
143565
|
+
var global$1 = _globalExports, has = _has, DESCRIPTORS = require_descriptors(), $export$2 = _export, redefine = _redefine, META = _metaExports.KEY, $fails = require_fails(), shared = _sharedExports, setToStringTag = _setToStringTag, uid = _uid, wks = _wksExports, wksExt = _wksExt, wksDefine = _wksDefine, enumKeys = _enumKeys, isArray$1 = _isArray, anObject = _anObject, isObject$2 = _isObject, toObject = require_toObject(), toIObject = _toIobject, toPrimitive$1 = _toPrimitive$5, createDesc = _propertyDesc, _create$1 = _objectCreate, gOPNExt = _objectGopnExt, $GOPD = _objectGopd, $GOPS = require_objectGops(), $DP = _objectDp, $keys = require_objectKeys(), gOPD = $GOPD.f, dP = $DP.f, gOPN = gOPNExt.f, $Symbol = global$1.Symbol, $JSON = global$1.JSON, _stringify = $JSON && $JSON.stringify, PROTOTYPE = "prototype", HIDDEN = wks("_hidden"), TO_PRIMITIVE = wks("toPrimitive"), isEnum = {}.propertyIsEnumerable, SymbolRegistry = shared("symbol-registry"), AllSymbols = shared("symbols"), OPSymbols = shared("op-symbols"), ObjectProto = Object[PROTOTYPE], USE_NATIVE = typeof $Symbol == "function" && !!$GOPS.f, QObject = global$1.QObject, setter = !QObject || !QObject[PROTOTYPE] || !QObject[PROTOTYPE].findChild, setSymbolDesc = DESCRIPTORS && $fails(function() {
|
143484
143566
|
return _create$1(dP({}, "a", {
|
143485
143567
|
get: function() {
|
143486
143568
|
return dP(this, "a", { value: 7 }).a;
|