提交 febbe323 编写于 作者: jlj05024111@163.com's avatar jlj05024111@163.com

feat: 新增sy-sjfx-web插件包

上级 f0a2e554
var q = Object.defineProperty;
var V = (e, n, o) => n in e ? q(e, n, { enumerable: !0, configurable: !0, writable: !0, value: o }) : e[n] = o;
var k = (e, n, o) => (V(e, typeof n != "symbol" ? n + "" : n, o), o);
import { GridModel as W, AppEntityModel as B } from "@ibiz-template/model";
import { useNamespace as O, useControlController as X, usePropsWatch as J } from "@ibiz-template/vue-util";
import { defineComponent as U, computed as y, h as C, ref as b, getCurrentInstance as Z, watch as K, onUnmounted as Q } from "vue";
import { cloneDeep as Y } from "lodash-es";
import { GridController as ee } from "@ibiz-template/controller";
import { StringUtil as te } from "@ibiz-template/core";
import { FrontUIActionHandler as ne, OpenAppViewCommand as oe } from "@ibiz-template/runtime";
import { calcResPath as ie } from "@ibiz-template/service";
const re = U({
name: "AppGridPagination",
props: {
total: {
type: Number,
required: !0
},
curPage: {
type: Number,
required: !0
},
size: {
type: Number,
required: !0
}
},
setup(e) {
const n = O("grid-page"), o = y(() => (e.curPage - 1) * e.size + 1), t = y(() => e.curPage * e.size);
return {
ns: n,
start: o,
end: t
};
},
methods: {
onPageChange(e) {
this.$emit("change", e);
},
onPageSizeChange(e) {
this.$emit("page-size-change", e);
},
pageReset() {
this.$emit("page-reset");
}
},
render() {
return C("div", {
class: this.ns.b()
}, [C("i-page", {
attrs: {
transfer: !0,
total: this.total,
"show-sizer": !0,
"show-elevator": !0,
current: this.curPage,
"page-size": this.size,
"page-size-opts": [10, 20, 30, 40, 50, 60, 70, 80, 90, 100],
"show-total": !0
},
on: {
"on-change": this.onPageChange,
"on-page-size-change": this.onPageSizeChange
}
}, [C("span", {
class: this.ns.b("btn")
}, [C("i-button", {
attrs: {
icon: "md-refresh",
title: "刷新"
},
on: {
click: this.pageReset
}
})]), C("span", ["显示 ", this.start, " - ", this.end, " 条,共 ", this.total, " 条数据"])])]);
}
});
function L(e, n) {
var i, u;
const o = [];
e.source.columnType === "GROUPGRIDCOLUMN" && e.children.forEach((r) => {
o.push(L(r, n));
});
const t = {
title: e.title,
width: e.source.widthUnit === "STAR" ? void 0 : e.width,
minWidth: e.width,
align: ((i = e.source.align) == null ? void 0 : i.toLowerCase()) || "center",
slot: e.codeName,
key: e.codeName,
fieldName: e.deFieldName,
ellipsis: !0,
tooltip: !1,
// todo 表格提示用title
resizable: !0,
sortable: !n.noSort && e.source.enableSort ? "custom" : !1,
columnType: e.source.columnType,
userParams: e.source.userParams,
className: (u = e.source.getCellPSSysCss()) == null ? void 0 : u.cssName
};
return o.length > 0 && Object.assign(t, { children: o }), t;
}
function se(e) {
const n = e.model, o = [], t = n.columns.map((i) => L(i, e));
return n.children.forEach((i) => {
const u = t.find((r) => r.key === i.codeName);
u && o.push(u);
}), e.singleSelect || o.splice(0, 0, { type: "selection", width: 60 }), o;
}
function ae(e) {
const n = b([]);
return e.nerve.self.evt.on("created", () => {
n.value = se(e);
}), [y(() => {
var g;
const t = [...n.value], i = t.find((m) => !m.width), u = (g = e.model.source.getPSControlParam()) == null ? void 0 : g.ctrlParams, r = (u == null ? void 0 : u.IS_NOT_FLEX) === "true";
if (!i && !r) {
let m = t.length - 1;
t[m].key === "rowEdit" && (m -= 1), t[m] = {
...t[m],
width: void 0
};
}
const h = t.find((m) => m.columnType === "UAGRIDCOLUMN");
if (h) {
const m = h.userParams;
m && m.fixed === "true" && (h.fixed = "right");
}
const s = t.length, { frozenFirstColumn: l, frozenLastColumn: f } = e.model;
return t.forEach((m, w) => {
l && w < l ? m.fixed = "left" : f && w >= s - f && (m.fixed = "right");
}), t;
}), n];
}
function le(e) {
const n = (r) => e.items.find((h) => h.srfkey === r.srfkey);
function o(r) {
const h = n(r);
if (e.singleSelect) {
const s = e.selectedData.find(
(l) => l.srfkey === r.srfkey
);
e.onSelectionChange(s ? [] : [h]);
}
e.onRowClick(h);
}
function t(r) {
e.onDbRowClick(n(r));
}
function i(r) {
if (!e.singleSelect) {
const h = [];
r.forEach((s) => {
const l = n(s);
l && h.push(l);
}), e.onSelectionChange(h);
}
}
function u(r) {
const { column: h, order: s } = r, l = s === "asc" || s === "desc" ? s : void 0;
e.setSort(h.fieldName, l), e.load();
}
return { onRowClick: o, onDbRowClick: t, onSelectionChange: i, onSortChange: u };
}
function ue(e) {
function n(i) {
!i || i === e.curPage || (e.curPage = i, e.load());
}
function o(i) {
!i || i === e.size || (e.size = i, e.curPage === 1 && e.load());
}
function t() {
e.curPage = 1, e.load();
}
return { onPageChange: n, onPageSizeChange: o, onPageReset: t };
}
class ce extends ee {
constructor() {
super(...arguments);
/**
* 是否隐藏精简列
*
* @type {boolean}
* @memberof StreamlineGridController
*/
k(this, "enableHiddenColumn", !1);
}
async onInit() {
var t;
await super.onInit();
const o = ((t = this.controlParams) == null ? void 0 : t.DEFAULT_STREAM) === "true";
this.enableHiddenColumn = o;
}
/**
* 切换精简列显示隐藏
*
* @param {boolean} hiddenColumn
* @memberof StreamlineGridController
*/
ToggleStreamlineColumn() {
this.enableHiddenColumn = !this.enableHiddenColumn;
}
}
const de = U({
props: {
modelData: {
type: W,
required: !0
},
context: {
type: Object,
required: !0
},
params: {
type: Object,
default: () => ({})
},
/**
* 表格行数据默认激活模式
* - 0 不激活
* - 1 单击激活
* - 2 双击激活(默认值)
*
* @type {(number | 0 | 1 | 2)}
*/
gridRowActiveMode: {
type: Number,
default: 2
},
modal: {
type: Object
}
},
setup(e) {
var F, x, H;
const {
proxy: n
} = Z(), o = O("grid"), t = X(n, () => {
const a = new ce(e.modelData, e.context, e.params);
return J(
// eslint-disable-next-line @typescript-eslint/no-explicit-any
n,
"gridRowActiveMode",
a.setGridRowActiveMode.bind(a)
), a;
}), i = t.model.source.getPSControlParam(), u = ((F = i == null ? void 0 : i.ctrlParams) == null ? void 0 : F.IS_NOT_FLEX) === "true", r = b([]);
(x = i == null ? void 0 : i.ctrlParams) != null && x.STREAMLINE_LISTS && (r.value = JSON.parse(i.ctrlParams.STREAMLINE_LISTS)), console.log("精简列", (H = r.value) == null ? void 0 : H.toString());
const h = b(), [s] = ae(t), {
onRowClick: l,
onDbRowClick: f,
onSelectionChange: g,
onSortChange: m
} = le(t), {
onPageChange: w,
onPageReset: A,
onPageSizeChange: R
} = ue(t), v = y(() => {
var c, d;
const a = (d = (c = e.modelData) == null ? void 0 : c.source.getPSControlParam()) == null ? void 0 : d.ctrlParams;
return (a == null ? void 0 : a.HIGHLIGHT) !== "false";
});
let P = null;
const _ = (a, c) => {
P != null && window.clearTimeout(P), P = window.setTimeout(() => {
const d = n.$refs.grid;
d && (t.selectedData.find((T) => T.srfkey === a.srfkey) && d.clearCurrentRow(), d.toggleSelect && d.toggleSelect(c)), l(a);
}, 300);
}, M = (a) => {
P != null && window.clearTimeout(P);
const c = n.$refs.grid;
c && (t.selectedData.find((p) => p.srfkey === a.srfkey) || c.clearCurrentRow()), f(a);
}, I = b(0), S = b(null), D = b(null);
let N = null, E = 0;
const z = () => {
var a;
if (S.value && ((a = e.modal) == null ? void 0 : a.mode) !== "EMBED")
if (t.model.source.enablePagingBar && D.value) {
const c = D.value.$el, d = c.offsetHeight + parseFloat(window.getComputedStyle(c).paddingTop);
I.value = S.value.offsetHeight - d;
} else
I.value = S.value.offsetHeight;
t.model.source.height > 0 && (I.value = t.model.source.height);
};
K(S, (a, c) => {
a && a !== c && (z(), window.ResizeObserver && S.value && (N = new ResizeObserver((d) => {
const p = d[0].contentRect.height;
p !== E && (z(), E = p);
}), N.observe(S.value)));
}), Q(() => {
N && N.disconnect();
});
const $ = y(() => {
const a = t.items.map((c) => (c._checked = t.selectedData.some((d) => d.srfkey === c.srfkey), c));
return a.length && a.unshift({
hiddenRow: !0,
_checked: t.items.every((c) => c._checked)
}), a;
}), G = (a) => {
const c = [];
return a.forEach((d) => {
if (!r.value.includes(d.key) && !r.value.includes(d.fieldName)) {
const p = Y(d);
if (d.children) {
const T = G(d.children);
p.children = T;
}
c.push(p);
}
}), c;
}, j = y(() => t.enableHiddenColumn ? G(s.value) : s.value);
return {
c: t,
ns: o,
columns: s,
tableData: $,
onDbRowClick: f,
onUIRowClick: _,
onUIDbRowClick: M,
onSelectionChange: g,
onSortChange: m,
onPageChange: w,
onPageSizeChange: R,
onPageReset: A,
tableHeight: I,
gridRef: S,
girdPaginationRef: D,
highlight: v,
isNotFlex: u,
grid: h,
streamlineLists: r,
streamColumn: j
};
},
render() {
var n;
if (!this.c.complete)
return;
const e = {};
return this.c.model.columns.forEach((o) => {
if (o.source.columnType === "GROUPGRIDCOLUMN")
return;
const t = o.codeName;
e[t] = ({
row: i,
index: u
}) => {
const r = this.c.rows[u - 1];
if (i.hiddenRow)
return C("span", {
style: "word-break: break-word;white-space: pre-wrap;"
}, ["隐藏行的列隐藏行的列隐藏行的列隐藏行的列隐藏行的列隐藏行的列隐藏行的列隐藏行的列隐藏行的列隐藏行的列隐藏行的列隐藏行的列"]);
if (r)
return C(this.c.providers[t].component, {
props: {
controller: this.c.columns[t],
row: r
},
key: i.srfkey + t
});
};
}), C("control-layout", {
attrs: {
modelData: this.c.model
}
}, [C("div", {
ref: "gridRef",
class: [this.ns.b(), this.ns.is("show-header", !this.c.model.source.hideHeader), this.ns.is("enable-page", this.c.model.source.enablePagingBar)],
style: this.isNotFlex ? (n = this.grid) == null ? void 0 : n.tableStyle : void 0
}, [C("i-table", {
ref: "grid",
attrs: {
height: this.tableHeight,
"show-header": !this.c.model.source.hideHeader,
"highlight-row": this.c.singleSelect && this.highlight,
data: this.tableData,
columns: this.streamColumn,
"row-class-name": (o) => o.hiddenRow ? "hidden-row" : "",
"span-method": this.c.spanMethod.bind(this.c)
},
class: this.ns.b("content"),
on: {
"on-row-click": this.onUIRowClick,
"on-row-dblclick": this.onUIDbRowClick,
"on-selection-change": this.onSelectionChange,
"on-sort-change": this.onSortChange
},
scopedSlots: e
}), this.c.model.source.enablePagingBar && C(re, {
ref: "girdPaginationRef",
attrs: {
total: this.c.total,
curPage: this.c.curPage,
size: this.c.size
},
on: {
change: this.onPageChange,
"page-size-change": this.onPageSizeChange,
"page-reset": this.onPageReset
}
})])]);
}
});
class he extends ne {
async execAction(n, o, t, i, u) {
const r = {}, { frontProcessType: h } = n;
if (h === "OPENHTMLPAGE") {
const s = te.fill(n.htmlPageUrl, o, t == null ? void 0 : t[0]);
window.open(s, "_blank");
}
if (h === "DATAIMP") {
const s = n.getPSAppDataEntity();
if (s) {
s.isFill === !1 && await s.fill(!0);
const l = new B(s);
await l.init();
const { resultContext: f } = await this.handleParams(
n,
o,
t,
i
), g = ibiz.resourcePathUtil.calcPaths(
f,
l.codeName
), m = ie(f, g);
let w = `${m}/${l.deNamePlural}/importtemplate`, A = `${m}/${l.deNamePlural}/importdata2`;
const R = n.getPSAppDEDataImport();
R && (w += `?srfimporttag=${R.codeName}`, A += `?srfimporttag=${R.codeName}`);
const v = ibiz.overlay.createModal(
"DataImport",
{
templateUrl: w,
importUrl: A,
dismiss: (P) => {
v.dismiss(P);
}
},
{
width: "auto",
placement: "center"
}
);
return v.present(), await v.onWillDismiss(), {
refresh: !0
};
}
}
if (["TOP", "WIZARD"].includes(h)) {
const s = n.getFrontPSAppView();
if (!s)
throw new Error("未配置打开视图");
await s.fill(!0);
const { resultContext: l, resultParams: f } = await this.handleParams(
n,
o,
t,
i
), g = await ibiz.commands.execute(
oe.TAG,
s,
l,
f,
u
);
(g == null ? void 0 : g.ok) === !1 && (r.closeView = !1, r.refresh = !1, r.cancel = !0), g != null && g.ok && g.data && (r.data = g.data);
} else {
const s = u == null ? void 0 : u.neuron.call.getGridController(), l = u == null ? void 0 : u.neuron.call.getThis();
if (s && l) {
const f = s.call.getGridController();
f && (f.ToggleStreamlineColumn(), n.codeName.toLowerCase() === "jjzs" ? (l.toolbarState.show_all.visible = !0, l.toolbarState.show_streamline.visible = !1) : (l.toolbarState.show_all.visible = !1, l.toolbarState.show_streamline.visible = !0));
}
}
return r;
}
}
class me {
constructor() {
k(this, "handler");
}
async getHandler() {
return this.handler || (this.handler = new he()), this.handler;
}
}
class ge {
constructor() {
k(this, "component", "StreamlineGrid");
}
}
const ve = {
install(e) {
e.component("StreamlineGrid", de), ibiz.register.control.register(
"GRID_STREAMLINE",
new ge()
), ibiz.register.uiAction.register(
"DEUIACTION_SHOW_ALL_COLUMN",
new me()
);
}
};
export {
ve as default
};
!function(){function e(t){return e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e(t)}function t(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,a,u=[],c=!0,l=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;c=!1}else for(;!(c=(r=i.call(n)).done)&&(u.push(r.value),u.length!==t);c=!0);}catch(e){l=!0,o=e}finally{try{if(!c&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(l)throw o}}return u}}(e,t)||P(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function n(){"use strict";/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */n=function(){return r};var t,r={},o=Object.prototype,i=o.hasOwnProperty,a="function"==typeof Symbol?Symbol:{},u=a.iterator||"@@iterator",c=a.asyncIterator||"@@asyncIterator",l=a.toStringTag||"@@toStringTag";function s(e,t,n,r){return Object.defineProperty(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r})}try{s({},"")}catch(t){s=function(e,t,n){return e[t]=n}}function f(e,n,r,o){var i=n&&n.prototype instanceof p?n:p,a=Object.create(i.prototype);return s(a,"_invoke",function(e,n,r){var o=1;return function(i,a){if(3===o)throw Error("Generator is already running");if(4===o){if("throw"===i)throw a;return{value:t,done:!0}}for(r.method=i,r.arg=a;;){var u=r.delegate;if(u){var c=O(u,r);if(c){if(c===d)continue;return c}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(1===o)throw o=4,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=3;var l=h(e,n,r);if("normal"===l.type){if(o=r.done?4:2,l.arg===d)continue;return{value:l.arg,done:r.done}}"throw"===l.type&&(o=4,r.method="throw",r.arg=l.arg)}}}(e,r,new E(o||[])),!0),a}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}r.wrap=f;var d={};function p(){}function g(){}function v(){}var m={};s(m,u,(function(){return this}));var y=Object.getPrototypeOf,b=y&&y(y(x([])));b&&b!==o&&i.call(b,u)&&(m=b);var w=v.prototype=p.prototype=Object.create(m);function P(e){["next","throw","return"].forEach((function(t){s(e,t,(function(e){return this._invoke(t,e)}))}))}function S(t,n){function r(o,a,u,c){var l=h(t[o],t,a);if("throw"!==l.type){var s=l.arg,f=s.value;return f&&"object"==e(f)&&i.call(f,"__await")?n.resolve(f.__await).then((function(e){r("next",e,u,c)}),(function(e){r("throw",e,u,c)})):n.resolve(f).then((function(e){s.value=e,u(s)}),(function(e){return r("throw",e,u,c)}))}c(l.arg)}var o;s(this,"_invoke",(function(e,t){function i(){return new n((function(n,o){r(e,t,n,o)}))}return o=o?o.then(i,i):i()}),!0)}function O(e,n){var r=n.method,o=e.i[r];if(o===t)return n.delegate=null,"throw"===r&&e.i.return&&(n.method="return",n.arg=t,O(e,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),d;var i=h(o,e.i,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,d;var a=i.arg;return a?a.done?(n[e.r]=a.value,n.next=e.n,"return"!==n.method&&(n.method="next",n.arg=t),n.delegate=null,d):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,d)}function C(e){this.tryEntries.push(e)}function k(e){var n=e[4]||{};n.type="normal",n.arg=t,e[4]=n}function E(e){this.tryEntries=[[-1]],e.forEach(C,this),this.reset(!0)}function x(n){if(null!=n){var r=n[u];if(r)return r.call(n);if("function"==typeof n.next)return n;if(!isNaN(n.length)){var o=-1,a=function e(){for(;++o<n.length;)if(i.call(n,o))return e.value=n[o],e.done=!1,e;return e.value=t,e.done=!0,e};return a.next=a}}throw new TypeError(e(n)+" is not iterable")}return g.prototype=v,s(w,"constructor",v),s(v,"constructor",g),g.displayName=s(v,l,"GeneratorFunction"),r.isGeneratorFunction=function(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===g||"GeneratorFunction"===(t.displayName||t.name))},r.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,v):(e.__proto__=v,s(e,l,"GeneratorFunction")),e.prototype=Object.create(w),e},r.awrap=function(e){return{__await:e}},P(S.prototype),s(S.prototype,c,(function(){return this})),r.AsyncIterator=S,r.async=function(e,t,n,o,i){void 0===i&&(i=Promise);var a=new S(f(e,t,n,o),i);return r.isGeneratorFunction(t)?a:a.next().then((function(e){return e.done?e.value:a.next()}))},P(w),s(w,l,"Generator"),s(w,u,(function(){return this})),s(w,"toString",(function(){return"[object Generator]"})),r.keys=function(e){var t=Object(e),n=[];for(var r in t)n.unshift(r);return function e(){for(;n.length;)if((r=n.pop())in t)return e.value=r,e.done=!1,e;return e.done=!0,e}},r.values=x,E.prototype={constructor:E,reset:function(e){if(this.prev=this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(k),!e)for(var n in this)"t"===n.charAt(0)&&i.call(this,n)&&!isNaN(+n.slice(1))&&(this[n]=t)},stop:function(){this.done=!0;var e=this.tryEntries[0][4];if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var n=this;function r(t){a.type="throw",a.arg=e,n.next=t}for(var o=n.tryEntries.length-1;o>=0;--o){var i=this.tryEntries[o],a=i[4],u=this.prev,c=i[1],l=i[2];if(-1===i[0])return r("end"),!1;if(!c&&!l)throw Error("try statement without catch or finally");if(null!=i[0]&&i[0]<=u){if(u<c)return this.method="next",this.arg=t,r(c),!0;if(u<l)return r(l),!1}}},abrupt:function(e,t){for(var n=this.tryEntries.length-1;n>=0;--n){var r=this.tryEntries[n];if(r[0]>-1&&r[0]<=this.prev&&this.prev<r[2]){var o=r;break}}o&&("break"===e||"continue"===e)&&o[0]<=t&&t<=o[2]&&(o=null);var i=o?o[4]:{};return i.type=e,i.arg=t,o?(this.method="next",this.next=o[2],d):this.complete(i)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),d},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n[2]===e)return this.complete(n[4],n[3]),k(n),d}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n[0]===e){var r=n[4];if("throw"===r.type){var o=r.arg;k(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(e,n,r){return this.delegate={i:x(e),r:n,n:r},"next"===this.method&&(this.arg=t),d}},r}function r(e,t,n,r,o,i,a){try{var u=e[i](a),c=u.value}catch(e){return void n(e)}u.done?t(c):Promise.resolve(c).then(r,o)}function o(e){return function(){var t=this,n=arguments;return new Promise((function(o,i){var a=e.apply(t,n);function u(e){r(a,o,i,u,c,"next",e)}function c(e){r(a,o,i,u,c,"throw",e)}u(void 0)}))}}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,b(r.key),r)}}function u(e,t,n){return t&&a(e.prototype,t),n&&a(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e}function c(t,n,r){return n=d(n),function(t,n){if(n&&("object"==e(n)||"function"==typeof n))return n;if(void 0!==n)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(t)}(t,l()?Reflect.construct(n,r||[],d(t).constructor):n.apply(t,r))}function l(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(e){}return(l=function(){return!!e})()}function s(e,t,n,r){var o=f(d(1&r?e.prototype:e),t,n);return 2&r&&"function"==typeof o?function(e){return o.apply(n,e)}:o}function f(){return f="undefined"!=typeof Reflect&&Reflect.get?Reflect.get.bind():function(e,t,n){var r=h(e,t);if(r){var o=Object.getOwnPropertyDescriptor(r,t);return o.get?o.get.call(arguments.length<3?e:n):o.value}},f.apply(null,arguments)}function h(e,t){for(;!{}.hasOwnProperty.call(e,t)&&null!==(e=d(e)););return e}function d(e){return d=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},d(e)}function p(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&g(e,t)}function g(e,t){return g=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},g(e,t)}function v(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function m(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?v(Object(n),!0).forEach((function(t){y(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):v(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function y(e,t,n){return(t=b(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function b(t){var n=function(t,n){if("object"!=e(t)||!t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var o=r.call(t,n||"default");if("object"!=e(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===n?String:Number)(t)}(t,"string");return"symbol"==e(n)?n:n+""}function w(e){return function(e){if(Array.isArray(e))return S(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||P(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function P(e,t){if(e){if("string"==typeof e)return S(e,t);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?S(e,t):void 0}}function S(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}System.register(["@ibiz-template/model","@ibiz-template/vue-util","vue","lodash-es","@ibiz-template/controller","@ibiz-template/core","@ibiz-template/runtime","@ibiz-template/service"],(function(e,r){"use strict";var a,l,f,h,d,g,v,b,P,S,O,C,k,E,x,R,j,N;return{setters:[function(e){a=e.GridModel,l=e.AppEntityModel},function(e){f=e.useNamespace,h=e.useControlController,d=e.usePropsWatch},function(e){g=e.defineComponent,v=e.computed,b=e.h,P=e.ref,S=e.getCurrentInstance,O=e.watch,C=e.onUnmounted},function(e){k=e.cloneDeep},function(e){E=e.GridController},function(e){x=e.StringUtil},function(e){R=e.FrontUIActionHandler,j=e.OpenAppViewCommand},function(e){N=e.calcResPath}],execute:function(){var r=g({name:"AppGridPagination",props:{total:{type:Number,required:!0},curPage:{type:Number,required:!0},size:{type:Number,required:!0}},setup:function(e){return{ns:f("grid-page"),start:v((function(){return(e.curPage-1)*e.size+1})),end:v((function(){return e.curPage*e.size}))}},methods:{onPageChange:function(e){this.$emit("change",e)},onPageSizeChange:function(e){this.$emit("page-size-change",e)},pageReset:function(){this.$emit("page-reset")}},render:function(){return b("div",{class:this.ns.b()},[b("i-page",{attrs:{transfer:!0,total:this.total,"show-sizer":!0,"show-elevator":!0,current:this.curPage,"page-size":this.size,"page-size-opts":[10,20,30,40,50,60,70,80,90,100],"show-total":!0},on:{"on-change":this.onPageChange,"on-page-size-change":this.onPageSizeChange}},[b("span",{class:this.ns.b("btn")},[b("i-button",{attrs:{icon:"md-refresh",title:"刷新"},on:{click:this.pageReset}})]),b("span",["显示 ",this.start," - ",this.end," 条,共 ",this.total," 条数据"])])])}});function _(e,t){var n,r,o=[];"GROUPGRIDCOLUMN"===e.source.columnType&&e.children.forEach((function(e){o.push(_(e,t))}));var i={title:e.title,width:"STAR"===e.source.widthUnit?void 0:e.width,minWidth:e.width,align:(null===(n=e.source.align)||void 0===n?void 0:n.toLowerCase())||"center",slot:e.codeName,key:e.codeName,fieldName:e.deFieldName,ellipsis:!0,tooltip:!1,resizable:!0,sortable:!(t.noSort||!e.source.enableSort)&&"custom",columnType:e.source.columnType,userParams:e.source.userParams,className:null===(r=e.source.getCellPSSysCss())||void 0===r?void 0:r.cssName};return o.length>0&&Object.assign(i,{children:o}),i}function T(e){var t=e.model,n=[],r=t.columns.map((function(t){return _(t,e)}));return t.children.forEach((function(e){var t=r.find((function(t){return t.key===e.codeName}));t&&n.push(t)})),e.singleSelect||n.splice(0,0,{type:"selection",width:60}),n}var A=function(e){function t(){var e;i(this,t);for(var n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];return y(e=c(this,t,[].concat(r)),"enableHiddenColumn",!1),e}return p(t,e),u(t,[{key:"onInit",value:(r=o(n().mark((function e(){var r,o;return n().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,s(t,"onInit",this,3)([]);case 2:o="true"===(null===(r=this.controlParams)||void 0===r?void 0:r.DEFAULT_STREAM),this.enableHiddenColumn=o;case 4:case"end":return e.stop()}}),e,this)}))),function(){return r.apply(this,arguments)})},{key:"ToggleStreamlineColumn",value:function(){this.enableHiddenColumn=!this.enableHiddenColumn}}]);var r}(E),z=g({props:{modelData:{type:a,required:!0},context:{type:Object,required:!0},params:{type:Object,default:function(){return{}}},gridRowActiveMode:{type:Number,default:2},modal:{type:Object}},setup:function(e){var n,r,o,i=S().proxy,a=f("grid"),u=h(i,(function(){var t=new A(e.modelData,e.context,e.params);return d(i,"gridRowActiveMode",t.setGridRowActiveMode.bind(t)),t})),c=u.model.source.getPSControlParam(),l="true"===(null==c||null===(n=c.ctrlParams)||void 0===n?void 0:n.IS_NOT_FLEX),s=P([]);null!=c&&null!==(r=c.ctrlParams)&&void 0!==r&&r.STREAMLINE_LISTS&&(s.value=JSON.parse(c.ctrlParams.STREAMLINE_LISTS)),console.log("精简列",null===(o=s.value)||void 0===o?void 0:o.toString());var p=P(),g=function(e){var t=P([]);e.nerve.self.evt.on("created",(function(){t.value=T(e)}));var n=v((function(){var n,r=w(t.value),o=r.find((function(e){return!e.width})),i=null===(n=e.model.source.getPSControlParam())||void 0===n?void 0:n.ctrlParams,a="true"===(null==i?void 0:i.IS_NOT_FLEX);if(!o&&!a){var u=r.length-1;"rowEdit"===r[u].key&&(u-=1),r[u]=m(m({},r[u]),{},{width:void 0})}var c=r.find((function(e){return"UAGRIDCOLUMN"===e.columnType}));if(c){var l=c.userParams;l&&"true"===l.fixed&&(c.fixed="right")}var s=r.length,f=e.model,h=f.frozenFirstColumn,d=f.frozenLastColumn;return r.forEach((function(e,t){h&&t<h?e.fixed="left":d&&t>=s-d&&(e.fixed="right")})),r}));return[n,t]}(u),y=t(g,1)[0],b=function(e){var t=function(t){return e.items.find((function(e){return e.srfkey===t.srfkey}))};return{onRowClick:function(n){var r=t(n);if(e.singleSelect){var o=e.selectedData.find((function(e){return e.srfkey===n.srfkey}));e.onSelectionChange(o?[]:[r])}e.onRowClick(r)},onDbRowClick:function(n){e.onDbRowClick(t(n))},onSelectionChange:function(n){if(!e.singleSelect){var r=[];n.forEach((function(e){var n=t(e);n&&r.push(n)})),e.onSelectionChange(r)}},onSortChange:function(t){var n=t.column,r=t.order,o="asc"===r||"desc"===r?r:void 0;e.setSort(n.fieldName,o),e.load()}}}(u),E=b.onRowClick,x=b.onDbRowClick,R=b.onSelectionChange,j=b.onSortChange,N=function(e){return{onPageChange:function(t){t&&t!==e.curPage&&(e.curPage=t,e.load())},onPageSizeChange:function(t){t&&t!==e.size&&(e.size=t,1===e.curPage&&e.load())},onPageReset:function(){e.curPage=1,e.load()}}}(u),_=N.onPageChange,z=N.onPageReset,D=N.onPageSizeChange,I=v((function(){var t,n=null===(t=e.modelData)||void 0===t||null===(t=t.source.getPSControlParam())||void 0===t?void 0:t.ctrlParams;return"false"!==(null==n?void 0:n.HIGHLIGHT)})),G=null,U=P(0),L=P(null),H=P(null),M=null,F=0,$=function(){var t;if(L.value&&"EMBED"!==(null===(t=e.modal)||void 0===t?void 0:t.mode))if(u.model.source.enablePagingBar&&H.value){var n=H.value.$el,r=n.offsetHeight+parseFloat(window.getComputedStyle(n).paddingTop);U.value=L.value.offsetHeight-r}else U.value=L.value.offsetHeight;u.model.source.height>0&&(U.value=u.model.source.height)};O(L,(function(e,t){e&&e!==t&&($(),window.ResizeObserver&&L.value&&(M=new ResizeObserver((function(e){var t=e[0].contentRect.height;t!==F&&($(),F=t)}))).observe(L.value))})),C((function(){M&&M.disconnect()}));var B=v((function(){var e=u.items.map((function(e){return e._checked=u.selectedData.some((function(t){return t.srfkey===e.srfkey})),e}));return e.length?(e.unshift({hiddenRow:!0,_checked:u.items.every((function(e){return e._checked}))}),e):e})),q=function(e){var t=[];return e.forEach((function(e){if(!s.value.includes(e.key)&&!s.value.includes(e.fieldName)){var n=k(e);if(e.children){var r=q(e.children);n.children=r}t.push(n)}})),t},W=v((function(){return u.enableHiddenColumn?q(y.value):y.value}));return{c:u,ns:a,columns:y,tableData:B,onDbRowClick:x,onUIRowClick:function(e,t){null!=G&&window.clearTimeout(G),G=window.setTimeout((function(){var n=i.$refs.grid;n&&(u.selectedData.find((function(t){return t.srfkey===e.srfkey}))&&n.clearCurrentRow(),n.toggleSelect&&n.toggleSelect(t));E(e)}),300)},onUIDbRowClick:function(e){null!=G&&window.clearTimeout(G);var t=i.$refs.grid;t&&(u.selectedData.find((function(t){return t.srfkey===e.srfkey}))||t.clearCurrentRow());x(e)},onSelectionChange:R,onSortChange:j,onPageChange:_,onPageSizeChange:D,onPageReset:z,tableHeight:U,gridRef:L,girdPaginationRef:H,highlight:I,isNotFlex:l,grid:p,streamlineLists:s,streamColumn:W}},render:function(){var e,t=this;if(this.c.complete){var n={};return this.c.model.columns.forEach((function(e){if("GROUPGRIDCOLUMN"!==e.source.columnType){var r=e.codeName;n[r]=function(e){var n=e.row,o=e.index,i=t.c.rows[o-1];return n.hiddenRow?b("span",{style:"word-break: break-word;white-space: pre-wrap;"},["隐藏行的列隐藏行的列隐藏行的列隐藏行的列隐藏行的列隐藏行的列隐藏行的列隐藏行的列隐藏行的列隐藏行的列隐藏行的列隐藏行的列"]):i?b(t.c.providers[r].component,{props:{controller:t.c.columns[r],row:i},key:n.srfkey+r}):void 0}}})),b("control-layout",{attrs:{modelData:this.c.model}},[b("div",{ref:"gridRef",class:[this.ns.b(),this.ns.is("show-header",!this.c.model.source.hideHeader),this.ns.is("enable-page",this.c.model.source.enablePagingBar)],style:this.isNotFlex?null===(e=this.grid)||void 0===e?void 0:e.tableStyle:void 0},[b("i-table",{ref:"grid",attrs:{height:this.tableHeight,"show-header":!this.c.model.source.hideHeader,"highlight-row":this.c.singleSelect&&this.highlight,data:this.tableData,columns:this.streamColumn,"row-class-name":function(e){return e.hiddenRow?"hidden-row":""},"span-method":this.c.spanMethod.bind(this.c)},class:this.ns.b("content"),on:{"on-row-click":this.onUIRowClick,"on-row-dblclick":this.onUIDbRowClick,"on-selection-change":this.onSelectionChange,"on-sort-change":this.onSortChange},scopedSlots:n}),this.c.model.source.enablePagingBar&&b(r,{ref:"girdPaginationRef",attrs:{total:this.c.total,curPage:this.c.curPage,size:this.c.size},on:{change:this.onPageChange,"page-size-change":this.onPageSizeChange,"page-reset":this.onPageReset}})])])}}}),D=function(e){function t(){return i(this,t),c(this,t,arguments)}return p(t,e),u(t,[{key:"execAction",value:(r=o(n().mark((function e(t,r,o,i,a){var u,c,s,f,h,d,p,g,v,m,y,b,w,P,S,O,C,k,E,R,_;return n().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(u={},"OPENHTMLPAGE"===(c=t.frontProcessType)&&(s=x.fill(t.htmlPageUrl,r,null==o?void 0:o[0]),window.open(s,"_blank")),"DATAIMP"!==c){e.next=27;break}if(!(f=t.getPSAppDataEntity())){e.next=27;break}if(!1!==f.isFill){e.next=9;break}return e.next=9,f.fill(!0);case 9:return h=new l(f),e.next=12,h.init();case 12:return e.next=14,this.handleParams(t,r,o,i);case 14:return d=e.sent,p=d.resultContext,g=ibiz.resourcePathUtil.calcPaths(p,h.codeName),v=N(p,g),m="".concat(v,"/").concat(h.deNamePlural,"/importtemplate"),y="".concat(v,"/").concat(h.deNamePlural,"/importdata2"),(b=t.getPSAppDEDataImport())&&(m+="?srfimporttag=".concat(b.codeName),y+="?srfimporttag=".concat(b.codeName)),(w=ibiz.overlay.createModal("DataImport",{templateUrl:m,importUrl:y,dismiss:function(e){w.dismiss(e)}},{width:"auto",placement:"center"})).present(),e.next=26,w.onWillDismiss();case 26:return e.abrupt("return",{refresh:!0});case 27:if(!["TOP","WIZARD"].includes(c)){e.next=45;break}if(P=t.getFrontPSAppView()){e.next=31;break}throw new Error("未配置打开视图");case 31:return e.next=33,P.fill(!0);case 33:return e.next=35,this.handleParams(t,r,o,i);case 35:return S=e.sent,O=S.resultContext,C=S.resultParams,e.next=40,ibiz.commands.execute(j.TAG,P,O,C,a);case 40:!1===(null==(k=e.sent)?void 0:k.ok)&&(u.closeView=!1,u.refresh=!1,u.cancel=!0),null!=k&&k.ok&&k.data&&(u.data=k.data),e.next=48;break;case 45:E=null==a?void 0:a.neuron.call.getGridController(),R=null==a?void 0:a.neuron.call.getThis(),E&&R&&(_=E.call.getGridController())&&(_.ToggleStreamlineColumn(),"jjzs"===t.codeName.toLowerCase()?(R.toolbarState.show_all.visible=!0,R.toolbarState.show_streamline.visible=!1):(R.toolbarState.show_all.visible=!1,R.toolbarState.show_streamline.visible=!0));case 48:return e.abrupt("return",u);case 49:case"end":return e.stop()}}),e,this)}))),function(e,t,n,o,i){return r.apply(this,arguments)})}]);var r}(R),I=function(){return u((function e(){i(this,e),y(this,"handler",void 0)}),[{key:"getHandler",value:(e=o(n().mark((function e(){return n().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return this.handler||(this.handler=new D),e.abrupt("return",this.handler);case 2:case"end":return e.stop()}}),e,this)}))),function(){return e.apply(this,arguments)})}]);var e}(),G=u((function e(){i(this,e),y(this,"component","StreamlineGrid")}));e("default",{install:function(e){e.component("StreamlineGrid",z),ibiz.register.control.register("GRID_STREAMLINE",new G),ibiz.register.uiAction.register("DEUIACTION_SHOW_ALL_COLUMN",new I)}})}}}))}();
!function(){"use strict";var t="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},r=function(t){return t&&t.Math===Math&&t},e=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof t&&t)||r("object"==typeof t&&t)||function(){return this}()||Function("return this")(),n={},o=function(t){try{return!!t()}catch(r){return!0}},i=!o((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]})),u=!o((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")})),c=u,a=Function.prototype.call,f=c?a.bind(a):function(){return a.apply(a,arguments)},s={},l={}.propertyIsEnumerable,h=Object.getOwnPropertyDescriptor,p=h&&!l.call({1:2},1);s.f=p?function(t){var r=h(this,t);return!!r&&r.enumerable}:l;var v,d,y=function(t,r){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:r}},g=u,m=Function.prototype,b=m.call,w=g&&m.bind.bind(b,b),S=g?w:function(t){return function(){return b.apply(t,arguments)}},E=S,O=E({}.toString),x=E("".slice),j=function(t){return x(O(t),8,-1)},T=o,I=j,R=Object,P=S("".split),A=T((function(){return!R("z").propertyIsEnumerable(0)}))?function(t){return"String"===I(t)?P(t,""):R(t)}:R,N=function(t){return null==t},k=N,C=TypeError,L=function(t){if(k(t))throw new C("Can't call method on "+t);return t},F=A,_=L,D=function(t){return F(_(t))},M="object"==typeof document&&document.all,U=void 0===M&&void 0!==M?function(t){return"function"==typeof t||t===M}:function(t){return"function"==typeof t},B=U,G=function(t){return"object"==typeof t?null!==t:B(t)},W=e,$=U,V=function(t){return $(t)?t:void 0},H=function(t,r){return arguments.length<2?V(W[t]):W[t]&&W[t][r]},z=S({}.isPrototypeOf),J=e.navigator,q=J&&J.userAgent,Y=q?String(q):"",K=e,X=Y,Q=K.process,Z=K.Deno,tt=Q&&Q.versions||Z&&Z.version,rt=tt&&tt.v8;rt&&(d=(v=rt.split("."))[0]>0&&v[0]<4?1:+(v[0]+v[1])),!d&&X&&(!(v=X.match(/Edge\/(\d+)/))||v[1]>=74)&&(v=X.match(/Chrome\/(\d+)/))&&(d=+v[1]);var et=d,nt=et,ot=o,it=e.String,ut=!!Object.getOwnPropertySymbols&&!ot((function(){var t=Symbol("symbol detection");return!it(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&nt&&nt<41})),ct=ut&&!Symbol.sham&&"symbol"==typeof Symbol.iterator,at=H,ft=U,st=z,lt=Object,ht=ct?function(t){return"symbol"==typeof t}:function(t){var r=at("Symbol");return ft(r)&&st(r.prototype,lt(t))},pt=String,vt=function(t){try{return pt(t)}catch(r){return"Object"}},dt=U,yt=vt,gt=TypeError,mt=function(t){if(dt(t))return t;throw new gt(yt(t)+" is not a function")},bt=mt,wt=N,St=function(t,r){var e=t[r];return wt(e)?void 0:bt(e)},Et=f,Ot=U,xt=G,jt=TypeError,Tt=function(t,r){var e,n;if("string"===r&&Ot(e=t.toString)&&!xt(n=Et(e,t)))return n;if(Ot(e=t.valueOf)&&!xt(n=Et(e,t)))return n;if("string"!==r&&Ot(e=t.toString)&&!xt(n=Et(e,t)))return n;throw new jt("Can't convert object to primitive value")},It={},Rt={get exports(){return It},set exports(t){It=t}},Pt=e,At=Object.defineProperty,Nt=function(t,r){try{At(Pt,t,{value:r,configurable:!0,writable:!0})}catch(e){Pt[t]=r}return r},kt=e,Ct=Nt,Lt="__core-js_shared__",Ft=Rt.exports=kt[Lt]||Ct(Lt,{});(Ft.versions||(Ft.versions=[])).push({version:"3.42.0",mode:"global",copyright:"© 2014-2025 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.42.0/LICENSE",source:"https://github.com/zloirock/core-js"});var _t=It,Dt=function(t,r){return _t[t]||(_t[t]=r||{})},Mt=L,Ut=Object,Bt=function(t){return Ut(Mt(t))},Gt=Bt,Wt=S({}.hasOwnProperty),$t=Object.hasOwn||function(t,r){return Wt(Gt(t),r)},Vt=S,Ht=0,zt=Math.random(),Jt=Vt(1..toString),qt=function(t){return"Symbol("+(void 0===t?"":t)+")_"+Jt(++Ht+zt,36)},Yt=Dt,Kt=$t,Xt=qt,Qt=ut,Zt=ct,tr=e.Symbol,rr=Yt("wks"),er=Zt?tr.for||tr:tr&&tr.withoutSetter||Xt,nr=function(t){return Kt(rr,t)||(rr[t]=Qt&&Kt(tr,t)?tr[t]:er("Symbol."+t)),rr[t]},or=f,ir=G,ur=ht,cr=St,ar=Tt,fr=TypeError,sr=nr("toPrimitive"),lr=function(t,r){if(!ir(t)||ur(t))return t;var e,n=cr(t,sr);if(n){if(void 0===r&&(r="default"),e=or(n,t,r),!ir(e)||ur(e))return e;throw new fr("Can't convert object to primitive value")}return void 0===r&&(r="number"),ar(t,r)},hr=lr,pr=ht,vr=function(t){var r=hr(t,"string");return pr(r)?r:r+""},dr=G,yr=e.document,gr=dr(yr)&&dr(yr.createElement),mr=function(t){return gr?yr.createElement(t):{}},br=mr,wr=!i&&!o((function(){return 7!==Object.defineProperty(br("div"),"a",{get:function(){return 7}}).a})),Sr=i,Er=f,Or=s,xr=y,jr=D,Tr=vr,Ir=$t,Rr=wr,Pr=Object.getOwnPropertyDescriptor;n.f=Sr?Pr:function(t,r){if(t=jr(t),r=Tr(r),Rr)try{return Pr(t,r)}catch(e){}if(Ir(t,r))return xr(!Er(Or.f,t,r),t[r])};var Ar={},Nr=i&&o((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype})),kr=G,Cr=String,Lr=TypeError,Fr=function(t){if(kr(t))return t;throw new Lr(Cr(t)+" is not an object")},_r=i,Dr=wr,Mr=Nr,Ur=Fr,Br=vr,Gr=TypeError,Wr=Object.defineProperty,$r=Object.getOwnPropertyDescriptor,Vr="enumerable",Hr="configurable",zr="writable";Ar.f=_r?Mr?function(t,r,e){if(Ur(t),r=Br(r),Ur(e),"function"==typeof t&&"prototype"===r&&"value"in e&&zr in e&&!e.writable){var n=$r(t,r);n&&n.writable&&(t[r]=e.value,e={configurable:Hr in e?e.configurable:n.configurable,enumerable:Vr in e?e.enumerable:n.enumerable,writable:!1})}return Wr(t,r,e)}:Wr:function(t,r,e){if(Ur(t),r=Br(r),Ur(e),Dr)try{return Wr(t,r,e)}catch(n){}if("get"in e||"set"in e)throw new Gr("Accessors not supported");return"value"in e&&(t[r]=e.value),t};var Jr=Ar,qr=y,Yr=i?function(t,r,e){return Jr.f(t,r,qr(1,e))}:function(t,r,e){return t[r]=e,t},Kr={},Xr={get exports(){return Kr},set exports(t){Kr=t}},Qr=i,Zr=$t,te=Function.prototype,re=Qr&&Object.getOwnPropertyDescriptor,ee=Zr(te,"name"),ne={EXISTS:ee,PROPER:ee&&"something"===function(){}.name,CONFIGURABLE:ee&&(!Qr||Qr&&re(te,"name").configurable)},oe=U,ie=It,ue=S(Function.toString);oe(ie.inspectSource)||(ie.inspectSource=function(t){return ue(t)});var ce,ae,fe,se=ie.inspectSource,le=U,he=e.WeakMap,pe=le(he)&&/native code/.test(String(he)),ve=qt,de=Dt("keys"),ye=function(t){return de[t]||(de[t]=ve(t))},ge={},me=pe,be=e,we=G,Se=Yr,Ee=$t,Oe=It,xe=ye,je=ge,Te="Object already initialized",Ie=be.TypeError,Re=be.WeakMap;if(me||Oe.state){var Pe=Oe.state||(Oe.state=new Re);Pe.get=Pe.get,Pe.has=Pe.has,Pe.set=Pe.set,ce=function(t,r){if(Pe.has(t))throw new Ie(Te);return r.facade=t,Pe.set(t,r),r},ae=function(t){return Pe.get(t)||{}},fe=function(t){return Pe.has(t)}}else{var Ae=xe("state");je[Ae]=!0,ce=function(t,r){if(Ee(t,Ae))throw new Ie(Te);return r.facade=t,Se(t,Ae,r),r},ae=function(t){return Ee(t,Ae)?t[Ae]:{}},fe=function(t){return Ee(t,Ae)}}var Ne={set:ce,get:ae,has:fe,enforce:function(t){return fe(t)?ae(t):ce(t,{})},getterFor:function(t){return function(r){var e;if(!we(r)||(e=ae(r)).type!==t)throw new Ie("Incompatible receiver, "+t+" required");return e}}},ke=S,Ce=o,Le=U,Fe=$t,_e=i,De=ne.CONFIGURABLE,Me=se,Ue=Ne.enforce,Be=Ne.get,Ge=String,We=Object.defineProperty,$e=ke("".slice),Ve=ke("".replace),He=ke([].join),ze=_e&&!Ce((function(){return 8!==We((function(){}),"length",{value:8}).length})),Je=String(String).split("String"),qe=Xr.exports=function(t,r,e){"Symbol("===$e(Ge(r),0,7)&&(r="["+Ve(Ge(r),/^Symbol\(([^)]*)\).*$/,"$1")+"]"),e&&e.getter&&(r="get "+r),e&&e.setter&&(r="set "+r),(!Fe(t,"name")||De&&t.name!==r)&&(_e?We(t,"name",{value:r,configurable:!0}):t.name=r),ze&&e&&Fe(e,"arity")&&t.length!==e.arity&&We(t,"length",{value:e.arity});try{e&&Fe(e,"constructor")&&e.constructor?_e&&We(t,"prototype",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(o){}var n=Ue(t);return Fe(n,"source")||(n.source=He(Je,"string"==typeof r?r:"")),t};Function.prototype.toString=qe((function(){return Le(this)&&Be(this).source||Me(this)}),"toString");var Ye=U,Ke=Ar,Xe=Kr,Qe=Nt,Ze=function(t,r,e,n){n||(n={});var o=n.enumerable,i=void 0!==n.name?n.name:r;if(Ye(e)&&Xe(e,i,n),n.global)o?t[r]=e:Qe(r,e);else{try{n.unsafe?t[r]&&(o=!0):delete t[r]}catch(u){}o?t[r]=e:Ke.f(t,r,{value:e,enumerable:!1,configurable:!n.nonConfigurable,writable:!n.nonWritable})}return t},tn={},rn=Math.ceil,en=Math.floor,nn=Math.trunc||function(t){var r=+t;return(r>0?en:rn)(r)},on=function(t){var r=+t;return r!=r||0===r?0:nn(r)},un=on,cn=Math.max,an=Math.min,fn=function(t,r){var e=un(t);return e<0?cn(e+r,0):an(e,r)},sn=on,ln=Math.min,hn=function(t){var r=sn(t);return r>0?ln(r,9007199254740991):0},pn=function(t){return hn(t.length)},vn=D,dn=fn,yn=pn,gn=function(t){return function(r,e,n){var o=vn(r),i=yn(o);if(0===i)return!t&&-1;var u,c=dn(n,i);if(t&&e!=e){for(;i>c;)if((u=o[c++])!=u)return!0}else for(;i>c;c++)if((t||c in o)&&o[c]===e)return t||c||0;return!t&&-1}},mn={includes:gn(!0),indexOf:gn(!1)},bn=$t,wn=D,Sn=mn.indexOf,En=ge,On=S([].push),xn=function(t,r){var e,n=wn(t),o=0,i=[];for(e in n)!bn(En,e)&&bn(n,e)&&On(i,e);for(;r.length>o;)bn(n,e=r[o++])&&(~Sn(i,e)||On(i,e));return i},jn=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],Tn=xn,In=jn.concat("length","prototype");tn.f=Object.getOwnPropertyNames||function(t){return Tn(t,In)};var Rn={};Rn.f=Object.getOwnPropertySymbols;var Pn=H,An=tn,Nn=Rn,kn=Fr,Cn=S([].concat),Ln=Pn("Reflect","ownKeys")||function(t){var r=An.f(kn(t)),e=Nn.f;return e?Cn(r,e(t)):r},Fn=$t,_n=Ln,Dn=n,Mn=Ar,Un=function(t,r,e){for(var n=_n(r),o=Mn.f,i=Dn.f,u=0;u<n.length;u++){var c=n[u];Fn(t,c)||e&&Fn(e,c)||o(t,c,i(r,c))}},Bn=o,Gn=U,Wn=/#|\.prototype\./,$n=function(t,r){var e=Hn[Vn(t)];return e===Jn||e!==zn&&(Gn(r)?Bn(r):!!r)},Vn=$n.normalize=function(t){return String(t).replace(Wn,".").toLowerCase()},Hn=$n.data={},zn=$n.NATIVE="N",Jn=$n.POLYFILL="P",qn=$n,Yn=e,Kn=n.f,Xn=Yr,Qn=Ze,Zn=Nt,to=Un,ro=qn,eo=function(t,r){var e,n,o,i,u,c=t.target,a=t.global,f=t.stat;if(e=a?Yn:f?Yn[c]||Zn(c,{}):Yn[c]&&Yn[c].prototype)for(n in r){if(i=r[n],o=t.dontCallGetSet?(u=Kn(e,n))&&u.value:e[n],!ro(a?n:c+(f?".":"#")+n,t.forced)&&void 0!==o){if(typeof i==typeof o)continue;to(i,o)}(t.sham||o&&o.sham)&&Xn(i,"sham",!0),Qn(e,n,i,t)}},no={};no[nr("toStringTag")]="z";var oo="[object z]"===String(no),io=oo,uo=U,co=j,ao=nr("toStringTag"),fo=Object,so="Arguments"===co(function(){return arguments}()),lo=io?co:function(t){var r,e,n;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(e=function(t,r){try{return t[r]}catch(e){}}(r=fo(t),ao))?e:so?co(r):"Object"===(n=co(r))&&uo(r.callee)?"Arguments":n},ho=lo,po=String,vo=function(t){if("Symbol"===ho(t))throw new TypeError("Cannot convert a Symbol value to a string");return po(t)},yo={},go=xn,mo=jn,bo=Object.keys||function(t){return go(t,mo)},wo=i,So=Nr,Eo=Ar,Oo=Fr,xo=D,jo=bo;yo.f=wo&&!So?Object.defineProperties:function(t,r){Oo(t);for(var e,n=xo(r),o=jo(r),i=o.length,u=0;i>u;)Eo.f(t,e=o[u++],n[e]);return t};var To,Io=H("document","documentElement"),Ro=Fr,Po=yo,Ao=jn,No=ge,ko=Io,Co=mr,Lo=ye("IE_PROTO"),Fo=function(){},_o=function(t){return"<script>"+t+"</"+"script>"},Do=function(t){t.write(_o("")),t.close();var r=t.parentWindow.Object;return t=null,r},Mo=function(){try{To=new ActiveXObject("htmlfile")}catch(n){}var t,r;Mo="undefined"!=typeof document?document.domain&&To?Do(To):((r=Co("iframe")).style.display="none",ko.appendChild(r),r.src=String("javascript:"),(t=r.contentWindow.document).open(),t.write(_o("document.F=Object")),t.close(),t.F):Do(To);for(var e=Ao.length;e--;)delete Mo.prototype[Ao[e]];return Mo()};No[Lo]=!0;var Uo=Object.create||function(t,r){var e;return null!==t?(Fo.prototype=Ro(t),e=new Fo,Fo.prototype=null,e[Lo]=t):e=Mo(),void 0===r?e:Po.f(e,r)},Bo={},Go=S([].slice),Wo=j,$o=D,Vo=tn.f,Ho=Go,zo="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];Bo.f=function(t){return zo&&"Window"===Wo(t)?function(t){try{return Vo(t)}catch(r){return Ho(zo)}}(t):Vo($o(t))};var Jo=Kr,qo=Ar,Yo=function(t,r,e){return e.get&&Jo(e.get,r,{getter:!0}),e.set&&Jo(e.set,r,{setter:!0}),qo.f(t,r,e)},Ko={},Xo=nr;Ko.f=Xo;var Qo=e,Zo=Qo,ti=$t,ri=Ko,ei=Ar.f,ni=function(t){var r=Zo.Symbol||(Zo.Symbol={});ti(r,t)||ei(r,t,{value:ri.f(t)})},oi=f,ii=H,ui=nr,ci=Ze,ai=function(){var t=ii("Symbol"),r=t&&t.prototype,e=r&&r.valueOf,n=ui("toPrimitive");r&&!r[n]&&ci(r,n,(function(t){return oi(e,this)}),{arity:1})},fi=Ar.f,si=$t,li=nr("toStringTag"),hi=function(t,r,e){t&&!e&&(t=t.prototype),t&&!si(t,li)&&fi(t,li,{configurable:!0,value:r})},pi=j,vi=S,di=function(t){if("Function"===pi(t))return vi(t)},yi=mt,gi=u,mi=di(di.bind),bi=function(t,r){return yi(t),void 0===r?t:gi?mi(t,r):function(){return t.apply(r,arguments)}},wi=j,Si=Array.isArray||function(t){return"Array"===wi(t)},Ei=S,Oi=o,xi=U,ji=lo,Ti=se,Ii=function(){},Ri=H("Reflect","construct"),Pi=/^\s*(?:class|function)\b/,Ai=Ei(Pi.exec),Ni=!Pi.test(Ii),ki=function(t){if(!xi(t))return!1;try{return Ri(Ii,[],t),!0}catch(r){return!1}},Ci=function(t){if(!xi(t))return!1;switch(ji(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return Ni||!!Ai(Pi,Ti(t))}catch(r){return!0}};Ci.sham=!0;var Li=!Ri||Oi((function(){var t;return ki(ki.call)||!ki(Object)||!ki((function(){t=!0}))||t}))?Ci:ki,Fi=Si,_i=Li,Di=G,Mi=nr("species"),Ui=Array,Bi=function(t){var r;return Fi(t)&&(r=t.constructor,(_i(r)&&(r===Ui||Fi(r.prototype))||Di(r)&&null===(r=r[Mi]))&&(r=void 0)),void 0===r?Ui:r},Gi=function(t,r){return new(Bi(t))(0===r?0:r)},Wi=bi,$i=A,Vi=Bt,Hi=pn,zi=Gi,Ji=S([].push),qi=function(t){var r=1===t,e=2===t,n=3===t,o=4===t,i=6===t,u=7===t,c=5===t||i;return function(a,f,s,l){for(var h,p,v=Vi(a),d=$i(v),y=Hi(d),g=Wi(f,s),m=0,b=l||zi,w=r?b(a,y):e||u?b(a,0):void 0;y>m;m++)if((c||m in d)&&(p=g(h=d[m],m,v),t))if(r)w[m]=p;else if(p)switch(t){case 3:return!0;case 5:return h;case 6:return m;case 2:Ji(w,h)}else switch(t){case 4:return!1;case 7:Ji(w,h)}return i?-1:n||o?o:w}},Yi={forEach:qi(0),map:qi(1),filter:qi(2),some:qi(3),every:qi(4),find:qi(5),findIndex:qi(6),filterReject:qi(7)},Ki=eo,Xi=e,Qi=f,Zi=S,tu=i,ru=ut,eu=o,nu=$t,ou=z,iu=Fr,uu=D,cu=vr,au=vo,fu=y,su=Uo,lu=bo,hu=tn,pu=Bo,vu=Rn,du=n,yu=Ar,gu=yo,mu=s,bu=Ze,wu=Yo,Su=Dt,Eu=ge,Ou=qt,xu=nr,ju=Ko,Tu=ni,Iu=ai,Ru=hi,Pu=Ne,Au=Yi.forEach,Nu=ye("hidden"),ku="Symbol",Cu=Pu.set,Lu=Pu.getterFor(ku),Fu=Object.prototype,_u=Xi.Symbol,Du=_u&&_u.prototype,Mu=Xi.RangeError,Uu=Xi.TypeError,Bu=Xi.QObject,Gu=du.f,Wu=yu.f,$u=pu.f,Vu=mu.f,Hu=Zi([].push),zu=Su("symbols"),Ju=Su("op-symbols"),qu=Su("wks"),Yu=!Bu||!Bu.prototype||!Bu.prototype.findChild,Ku=function(t,r,e){var n=Gu(Fu,r);n&&delete Fu[r],Wu(t,r,e),n&&t!==Fu&&Wu(Fu,r,n)},Xu=tu&&eu((function(){return 7!==su(Wu({},"a",{get:function(){return Wu(this,"a",{value:7}).a}})).a}))?Ku:Wu,Qu=function(t,r){var e=zu[t]=su(Du);return Cu(e,{type:ku,tag:t,description:r}),tu||(e.description=r),e},Zu=function(t,r,e){t===Fu&&Zu(Ju,r,e),iu(t);var n=cu(r);return iu(e),nu(zu,n)?(e.enumerable?(nu(t,Nu)&&t[Nu][n]&&(t[Nu][n]=!1),e=su(e,{enumerable:fu(0,!1)})):(nu(t,Nu)||Wu(t,Nu,fu(1,su(null))),t[Nu][n]=!0),Xu(t,n,e)):Wu(t,n,e)},tc=function(t,r){iu(t);var e=uu(r),n=lu(e).concat(oc(e));return Au(n,(function(r){tu&&!Qi(rc,e,r)||Zu(t,r,e[r])})),t},rc=function(t){var r=cu(t),e=Qi(Vu,this,r);return!(this===Fu&&nu(zu,r)&&!nu(Ju,r))&&(!(e||!nu(this,r)||!nu(zu,r)||nu(this,Nu)&&this[Nu][r])||e)},ec=function(t,r){var e=uu(t),n=cu(r);if(e!==Fu||!nu(zu,n)||nu(Ju,n)){var o=Gu(e,n);return!o||!nu(zu,n)||nu(e,Nu)&&e[Nu][n]||(o.enumerable=!0),o}},nc=function(t){var r=$u(uu(t)),e=[];return Au(r,(function(t){nu(zu,t)||nu(Eu,t)||Hu(e,t)})),e},oc=function(t){var r=t===Fu,e=$u(r?Ju:uu(t)),n=[];return Au(e,(function(t){!nu(zu,t)||r&&!nu(Fu,t)||Hu(n,zu[t])})),n};ru||(_u=function(){if(ou(Du,this))throw new Uu("Symbol is not a constructor");var t=arguments.length&&void 0!==arguments[0]?au(arguments[0]):void 0,r=Ou(t),e=function(t){var n=void 0===this?Xi:this;n===Fu&&Qi(e,Ju,t),nu(n,Nu)&&nu(n[Nu],r)&&(n[Nu][r]=!1);var o=fu(1,t);try{Xu(n,r,o)}catch(i){if(!(i instanceof Mu))throw i;Ku(n,r,o)}};return tu&&Yu&&Xu(Fu,r,{configurable:!0,set:e}),Qu(r,t)},bu(Du=_u.prototype,"toString",(function(){return Lu(this).tag})),bu(_u,"withoutSetter",(function(t){return Qu(Ou(t),t)})),mu.f=rc,yu.f=Zu,gu.f=tc,du.f=ec,hu.f=pu.f=nc,vu.f=oc,ju.f=function(t){return Qu(xu(t),t)},tu&&(wu(Du,"description",{configurable:!0,get:function(){return Lu(this).description}}),bu(Fu,"propertyIsEnumerable",rc,{unsafe:!0}))),Ki({global:!0,constructor:!0,wrap:!0,forced:!ru,sham:!ru},{Symbol:_u}),Au(lu(qu),(function(t){Tu(t)})),Ki({target:ku,stat:!0,forced:!ru},{useSetter:function(){Yu=!0},useSimple:function(){Yu=!1}}),Ki({target:"Object",stat:!0,forced:!ru,sham:!tu},{create:function(t,r){return void 0===r?su(t):tc(su(t),r)},defineProperty:Zu,defineProperties:tc,getOwnPropertyDescriptor:ec}),Ki({target:"Object",stat:!0,forced:!ru},{getOwnPropertyNames:nc}),Iu(),Ru(_u,ku),Eu[Nu]=!0;var ic=ut&&!!Symbol.for&&!!Symbol.keyFor,uc=eo,cc=H,ac=$t,fc=vo,sc=Dt,lc=ic,hc=sc("string-to-symbol-registry"),pc=sc("symbol-to-string-registry");uc({target:"Symbol",stat:!0,forced:!lc},{for:function(t){var r=fc(t);if(ac(hc,r))return hc[r];var e=cc("Symbol")(r);return hc[r]=e,pc[e]=r,e}});var vc=eo,dc=$t,yc=ht,gc=vt,mc=ic,bc=Dt("symbol-to-string-registry");vc({target:"Symbol",stat:!0,forced:!mc},{keyFor:function(t){if(!yc(t))throw new TypeError(gc(t)+" is not a symbol");if(dc(bc,t))return bc[t]}});var wc=u,Sc=Function.prototype,Ec=Sc.apply,Oc=Sc.call,xc="object"==typeof Reflect&&Reflect.apply||(wc?Oc.bind(Ec):function(){return Oc.apply(Ec,arguments)}),jc=Si,Tc=U,Ic=j,Rc=vo,Pc=S([].push),Ac=eo,Nc=H,kc=xc,Cc=f,Lc=S,Fc=o,_c=U,Dc=ht,Mc=Go,Uc=function(t){if(Tc(t))return t;if(jc(t)){for(var r=t.length,e=[],n=0;n<r;n++){var o=t[n];"string"==typeof o?Pc(e,o):"number"!=typeof o&&"Number"!==Ic(o)&&"String"!==Ic(o)||Pc(e,Rc(o))}var i=e.length,u=!0;return function(t,r){if(u)return u=!1,r;if(jc(this))return r;for(var n=0;n<i;n++)if(e[n]===t)return r}}},Bc=ut,Gc=String,Wc=Nc("JSON","stringify"),$c=Lc(/./.exec),Vc=Lc("".charAt),Hc=Lc("".charCodeAt),zc=Lc("".replace),Jc=Lc(1..toString),qc=/[\uD800-\uDFFF]/g,Yc=/^[\uD800-\uDBFF]$/,Kc=/^[\uDC00-\uDFFF]$/,Xc=!Bc||Fc((function(){var t=Nc("Symbol")("stringify detection");return"[null]"!==Wc([t])||"{}"!==Wc({a:t})||"{}"!==Wc(Object(t))})),Qc=Fc((function(){return'"\\udf06\\ud834"'!==Wc("\udf06\ud834")||'"\\udead"'!==Wc("\udead")})),Zc=function(t,r){var e=Mc(arguments),n=Uc(r);if(_c(n)||void 0!==t&&!Dc(t))return e[1]=function(t,r){if(_c(n)&&(r=Cc(n,this,Gc(t),r)),!Dc(r))return r},kc(Wc,null,e)},ta=function(t,r,e){var n=Vc(e,r-1),o=Vc(e,r+1);return $c(Yc,t)&&!$c(Kc,o)||$c(Kc,t)&&!$c(Yc,n)?"\\u"+Jc(Hc(t,0),16):t};Wc&&Ac({target:"JSON",stat:!0,arity:3,forced:Xc||Qc},{stringify:function(t,r,e){var n=Mc(arguments),o=kc(Xc?Zc:Wc,null,n);return Qc&&"string"==typeof o?zc(o,qc,ta):o}});var ra=Rn,ea=Bt;eo({target:"Object",stat:!0,forced:!ut||o((function(){ra.f(1)}))},{getOwnPropertySymbols:function(t){var r=ra.f;return r?r(ea(t)):[]}});var na=eo,oa=i,ia=S,ua=$t,ca=U,aa=z,fa=vo,sa=Yo,la=Un,ha=e.Symbol,pa=ha&&ha.prototype;if(oa&&ca(ha)&&(!("description"in pa)||void 0!==ha().description)){var va={},da=function(){var t=arguments.length<1||void 0===arguments[0]?void 0:fa(arguments[0]),r=aa(pa,this)?new ha(t):void 0===t?ha():ha(t);return""===t&&(va[r]=!0),r};la(da,ha),da.prototype=pa,pa.constructor=da;var ya="Symbol(description detection)"===String(ha("description detection")),ga=ia(pa.valueOf),ma=ia(pa.toString),ba=/^Symbol\((.*)\)[^)]+$/,wa=ia("".replace),Sa=ia("".slice);sa(pa,"description",{configurable:!0,get:function(){var t=ga(this);if(ua(va,t))return"";var r=ma(t),e=ya?Sa(r,7,-1):wa(r,ba,"$1");return""===e?void 0:e}}),na({global:!0,constructor:!0,forced:!0},{Symbol:da})}ni("iterator");var Ea=ai;ni("toPrimitive"),Ea();var Oa=S,xa=mt,ja=G,Ta=function(t){return ja(t)||null===t},Ia=String,Ra=TypeError,Pa=function(t,r,e){try{return Oa(xa(Object.getOwnPropertyDescriptor(t,r)[e]))}catch(n){}},Aa=G,Na=L,ka=function(t){if(Ta(t))return t;throw new Ra("Can't set "+Ia(t)+" as a prototype")},Ca=Object.setPrototypeOf||("__proto__"in{}?function(){var t,r=!1,e={};try{(t=Pa(Object.prototype,"__proto__","set"))(e,[]),r=e instanceof Array}catch(n){}return function(e,n){return Na(e),ka(n),Aa(e)?(r?t(e,n):e.__proto__=n,e):e}}():void 0),La=Ar.f,Fa=U,_a=G,Da=Ca,Ma=function(t,r,e){var n,o;return Da&&Fa(n=r.constructor)&&n!==e&&_a(o=n.prototype)&&o!==e.prototype&&Da(t,o),t},Ua=vo,Ba=G,Ga=Yr,Wa=Error,$a=S("".replace),Va=String(new Wa("zxcasd").stack),Ha=/\n\s*at [^:]*:[^\n]*/,za=Ha.test(Va),Ja=y,qa=!o((function(){var t=new Error("a");return!("stack"in t)||(Object.defineProperty(t,"stack",Ja(1,7)),7!==t.stack)})),Ya=Yr,Ka=function(t,r){if(za&&"string"==typeof t&&!Wa.prepareStackTrace)for(;r--;)t=$a(t,Ha,"");return t},Xa=qa,Qa=Error.captureStackTrace,Za=H,tf=$t,rf=Yr,ef=z,nf=Ca,of=Un,uf=function(t,r,e){e in t||La(t,e,{configurable:!0,get:function(){return r[e]},set:function(t){r[e]=t}})},cf=Ma,af=function(t,r){return void 0===t?arguments.length<2?"":r:Ua(t)},ff=function(t,r){Ba(r)&&"cause"in r&&Ga(t,"cause",r.cause)},sf=function(t,r,e,n){Xa&&(Qa?Qa(t,r):Ya(t,"stack",Ka(e,n)))},lf=i,hf=eo,pf=xc,vf=function(t,r,e,n){var o="stackTraceLimit",i=n?2:1,u=t.split("."),c=u[u.length-1],a=Za.apply(null,u);if(a){var f=a.prototype;if(tf(f,"cause")&&delete f.cause,!e)return a;var s=Za("Error"),l=r((function(t,r){var e=af(n?r:t,void 0),o=n?new a(t):new a;return void 0!==e&&rf(o,"message",e),sf(o,l,o.stack,2),this&&ef(f,this)&&cf(o,this,l),arguments.length>i&&ff(o,arguments[i]),o}));l.prototype=f,"Error"!==c?nf?nf(l,s):of(l,s,{name:!0}):lf&&o in a&&(uf(l,a,o),uf(l,a,"prepareStackTrace")),of(l,a);try{f.name!==c&&rf(f,"name",c),f.constructor=l}catch(h){}return l}},df="WebAssembly",yf=e.WebAssembly,gf=7!==new Error("e",{cause:7}).cause,mf=function(t,r){var e={};e[t]=vf(t,r,gf),hf({global:!0,constructor:!0,arity:1,forced:gf},e)},bf=function(t,r){if(yf&&yf[t]){var e={};e[t]=vf("WebAssembly."+t,r,gf),hf({target:df,stat:!0,constructor:!0,arity:1,forced:gf},e)}};mf("Error",(function(t){return function(r){return pf(t,this,arguments)}})),mf("EvalError",(function(t){return function(r){return pf(t,this,arguments)}})),mf("RangeError",(function(t){return function(r){return pf(t,this,arguments)}})),mf("ReferenceError",(function(t){return function(r){return pf(t,this,arguments)}})),mf("SyntaxError",(function(t){return function(r){return pf(t,this,arguments)}})),mf("TypeError",(function(t){return function(r){return pf(t,this,arguments)}})),mf("URIError",(function(t){return function(r){return pf(t,this,arguments)}})),bf("CompileError",(function(t){return function(r){return pf(t,this,arguments)}})),bf("LinkError",(function(t){return function(r){return pf(t,this,arguments)}})),bf("RuntimeError",(function(t){return function(r){return pf(t,this,arguments)}}));var wf=TypeError,Sf=function(t){if(t>9007199254740991)throw wf("Maximum allowed index exceeded");return t},Ef=i,Of=Ar,xf=y,jf=function(t,r,e){Ef?Of.f(t,r,xf(0,e)):t[r]=e},Tf=o,If=et,Rf=nr("species"),Pf=function(t){return If>=51||!Tf((function(){var r=[];return(r.constructor={})[Rf]=function(){return{foo:1}},1!==r[t](Boolean).foo}))},Af=eo,Nf=o,kf=Si,Cf=G,Lf=Bt,Ff=pn,_f=Sf,Df=jf,Mf=Gi,Uf=Pf,Bf=et,Gf=nr("isConcatSpreadable"),Wf=Bf>=51||!Nf((function(){var t=[];return t[Gf]=!1,t.concat()[0]!==t})),$f=function(t){if(!Cf(t))return!1;var r=t[Gf];return void 0!==r?!!r:kf(t)};Af({target:"Array",proto:!0,arity:1,forced:!Wf||!Uf("concat")},{concat:function(t){var r,e,n,o,i,u=Lf(this),c=Mf(u,0),a=0;for(r=-1,n=arguments.length;r<n;r++)if($f(i=-1===r?u:arguments[r]))for(o=Ff(i),_f(a+o),e=0;e<o;e++,a++)e in i&&Df(c,a,i[e]);else _f(a+1),Df(c,a++,i);return c.length=a,c}});var Vf=Bt,Hf=fn,zf=pn,Jf=nr,qf=Uo,Yf=Ar.f,Kf=Jf("unscopables"),Xf=Array.prototype;void 0===Xf[Kf]&&Yf(Xf,Kf,{configurable:!0,value:qf(null)});var Qf=function(t){Xf[Kf][t]=!0},Zf=function(t){for(var r=Vf(this),e=zf(r),n=arguments.length,o=Hf(n>1?arguments[1]:void 0,e),i=n>2?arguments[2]:void 0,u=void 0===i?e:Hf(i,e);u>o;)r[o++]=t;return r},ts=Qf;eo({target:"Array",proto:!0},{fill:Zf}),ts("fill");var rs=Yi.filter;eo({target:"Array",proto:!0,forced:!Pf("filter")},{filter:function(t){return rs(this,t,arguments.length>1?arguments[1]:void 0)}});var es=eo,ns=Yi.find,os=Qf,is="find",us=!0;is in[]&&Array(1).find((function(){us=!1})),es({target:"Array",proto:!0,forced:us},{find:function(t){return ns(this,t,arguments.length>1?arguments[1]:void 0)}}),os(is);var cs=f,as=Fr,fs=St,ss=function(t,r,e){var n,o;as(t);try{if(!(n=fs(t,"return"))){if("throw"===r)throw e;return e}n=cs(n,t)}catch(i){o=!0,n=i}if("throw"===r)throw e;if(o)throw n;return as(n),e},ls=Fr,hs=ss,ps=function(t,r,e,n){try{return n?r(ls(e)[0],e[1]):r(e)}catch(o){hs(t,"throw",o)}},vs={},ds=vs,ys=nr("iterator"),gs=Array.prototype,ms=function(t){return void 0!==t&&(ds.Array===t||gs[ys]===t)},bs=lo,ws=St,Ss=N,Es=vs,Os=nr("iterator"),xs=function(t){if(!Ss(t))return ws(t,Os)||ws(t,"@@iterator")||Es[bs(t)]},js=f,Ts=mt,Is=Fr,Rs=vt,Ps=xs,As=TypeError,Ns=function(t,r){var e=arguments.length<2?Ps(t):r;if(Ts(e))return Is(js(e,t));throw new As(Rs(t)+" is not iterable")},ks=bi,Cs=f,Ls=Bt,Fs=ps,_s=ms,Ds=Li,Ms=pn,Us=jf,Bs=Ns,Gs=xs,Ws=Array,$s=nr("iterator"),Vs=!1;try{var Hs=0,zs={next:function(){return{done:!!Hs++}},return:function(){Vs=!0}};zs[$s]=function(){return this},Array.from(zs,(function(){throw 2}))}catch(wO){}var Js=function(t,r){try{if(!r&&!Vs)return!1}catch(wO){return!1}var e=!1;try{var n={};n[$s]=function(){return{next:function(){return{done:e=!0}}}},t(n)}catch(wO){}return e},qs=function(t){var r=Ls(t),e=Ds(this),n=arguments.length,o=n>1?arguments[1]:void 0,i=void 0!==o;i&&(o=ks(o,n>2?arguments[2]:void 0));var u,c,a,f,s,l,h=Gs(r),p=0;if(!h||this===Ws&&_s(h))for(u=Ms(r),c=e?new this(u):Ws(u);u>p;p++)l=i?o(r[p],p):r[p],Us(c,p,l);else for(c=e?new this:[],s=(f=Bs(r,h)).next;!(a=Cs(s,f)).done;p++)l=i?Fs(f,o,[a.value,p],!0):a.value,Us(c,p,l);return c.length=p,c};eo({target:"Array",stat:!0,forced:!Js((function(t){Array.from(t)}))},{from:qs});var Ys=mn.includes,Ks=Qf;eo({target:"Array",proto:!0,forced:o((function(){return!Array(1).includes()}))},{includes:function(t){return Ys(this,t,arguments.length>1?arguments[1]:void 0)}}),Ks("includes");var Xs,Qs,Zs,tl=!o((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype})),rl=$t,el=U,nl=Bt,ol=tl,il=ye("IE_PROTO"),ul=Object,cl=ul.prototype,al=ol?ul.getPrototypeOf:function(t){var r=nl(t);if(rl(r,il))return r[il];var e=r.constructor;return el(e)&&r instanceof e?e.prototype:r instanceof ul?cl:null},fl=o,sl=U,ll=G,hl=al,pl=Ze,vl=nr("iterator"),dl=!1;[].keys&&("next"in(Zs=[].keys())?(Qs=hl(hl(Zs)))!==Object.prototype&&(Xs=Qs):dl=!0);var yl=!ll(Xs)||fl((function(){var t={};return Xs[vl].call(t)!==t}));yl&&(Xs={}),sl(Xs[vl])||pl(Xs,vl,(function(){return this}));var gl={IteratorPrototype:Xs,BUGGY_SAFARI_ITERATORS:dl},ml=gl.IteratorPrototype,bl=Uo,wl=y,Sl=hi,El=vs,Ol=function(){return this},xl=eo,jl=f,Tl=U,Il=function(t,r,e,n){var o=r+" Iterator";return t.prototype=bl(ml,{next:wl(+!n,e)}),Sl(t,o,!1),El[o]=Ol,t},Rl=al,Pl=Ca,Al=hi,Nl=Yr,kl=Ze,Cl=vs,Ll=ne.PROPER,Fl=ne.CONFIGURABLE,_l=gl.IteratorPrototype,Dl=gl.BUGGY_SAFARI_ITERATORS,Ml=nr("iterator"),Ul="keys",Bl="values",Gl="entries",Wl=function(){return this},$l=function(t,r,e,n,o,i,u){Il(e,r,n);var c,a,f,s=function(t){if(t===o&&d)return d;if(!Dl&&t&&t in p)return p[t];switch(t){case Ul:case Bl:case Gl:return function(){return new e(this,t)}}return function(){return new e(this)}},l=r+" Iterator",h=!1,p=t.prototype,v=p[Ml]||p["@@iterator"]||o&&p[o],d=!Dl&&v||s(o),y="Array"===r&&p.entries||v;if(y&&(c=Rl(y.call(new t)))!==Object.prototype&&c.next&&(Rl(c)!==_l&&(Pl?Pl(c,_l):Tl(c[Ml])||kl(c,Ml,Wl)),Al(c,l,!0)),Ll&&o===Bl&&v&&v.name!==Bl&&(Fl?Nl(p,"name",Bl):(h=!0,d=function(){return jl(v,this)})),o)if(a={values:s(Bl),keys:i?d:s(Ul),entries:s(Gl)},u)for(f in a)(Dl||h||!(f in p))&&kl(p,f,a[f]);else xl({target:r,proto:!0,forced:Dl||h},a);return p[Ml]!==d&&kl(p,Ml,d,{name:o}),Cl[r]=d,a},Vl=function(t,r){return{value:t,done:r}},Hl=D,zl=Qf,Jl=vs,ql=Ne,Yl=Ar.f,Kl=$l,Xl=Vl,Ql=i,Zl="Array Iterator",th=ql.set,rh=ql.getterFor(Zl),eh=Kl(Array,"Array",(function(t,r){th(this,{type:Zl,target:Hl(t),index:0,kind:r})}),(function(){var t=rh(this),r=t.target,e=t.index++;if(!r||e>=r.length)return t.target=null,Xl(void 0,!0);switch(t.kind){case"keys":return Xl(e,!1);case"values":return Xl(r[e],!1)}return Xl([e,r[e]],!1)}),"values"),nh=Jl.Arguments=Jl.Array;if(zl("keys"),zl("values"),zl("entries"),Ql&&"values"!==nh.name)try{Yl(nh,"name",{value:"values"})}catch(wO){}var oh=Yi.map;eo({target:"Array",proto:!0,forced:!Pf("map")},{map:function(t){return oh(this,t,arguments.length>1?arguments[1]:void 0)}});var ih=i,uh=Si,ch=TypeError,ah=Object.getOwnPropertyDescriptor,fh=ih&&!function(){if(void 0!==this)return!0;try{Object.defineProperty([],"length",{writable:!1}).length=1}catch(wO){return wO instanceof TypeError}}()?function(t,r){if(uh(t)&&!ah(t,"length").writable)throw new ch("Cannot set read only .length");return t.length=r}:function(t,r){return t.length=r},sh=Bt,lh=pn,hh=fh,ph=Sf;eo({target:"Array",proto:!0,arity:1,forced:o((function(){return 4294967297!==[].push.call({length:4294967296},1)}))||!function(){try{Object.defineProperty([],"length",{writable:!1}).push()}catch(wO){return wO instanceof TypeError}}()},{push:function(t){var r=sh(this),e=lh(r),n=arguments.length;ph(e+n);for(var o=0;o<n;o++)r[e]=arguments[o],e++;return hh(r,e),e}});var vh=eo,dh=Si,yh=Li,gh=G,mh=fn,bh=pn,wh=D,Sh=jf,Eh=nr,Oh=Go,xh=Pf("slice"),jh=Eh("species"),Th=Array,Ih=Math.max;vh({target:"Array",proto:!0,forced:!xh},{slice:function(t,r){var e,n,o,i=wh(this),u=bh(i),c=mh(t,u),a=mh(void 0===r?u:r,u);if(dh(i)&&(e=i.constructor,(yh(e)&&(e===Th||dh(e.prototype))||gh(e)&&null===(e=e[jh]))&&(e=void 0),e===Th||void 0===e))return Oh(i,c,a);for(n=new(void 0===e?Th:e)(Ih(a-c,0)),o=0;c<a;c++,o++)c in i&&Sh(n,o,i[c]);return n.length=o,n}});var Rh=vt,Ph=TypeError,Ah=eo,Nh=Bt,kh=fn,Ch=on,Lh=pn,Fh=fh,_h=Sf,Dh=Gi,Mh=jf,Uh=function(t,r){if(!delete t[r])throw new Ph("Cannot delete property "+Rh(r)+" of "+Rh(t))},Bh=Pf("splice"),Gh=Math.max,Wh=Math.min;Ah({target:"Array",proto:!0,forced:!Bh},{splice:function(t,r){var e,n,o,i,u,c,a=Nh(this),f=Lh(a),s=kh(t,f),l=arguments.length;for(0===l?e=n=0:1===l?(e=0,n=f-s):(e=l-2,n=Wh(Gh(Ch(r),0),f-s)),_h(f+e-n),o=Dh(a,n),i=0;i<n;i++)(u=s+i)in a&&Mh(o,i,a[u]);if(o.length=n,e<n){for(i=s;i<f-n;i++)c=i+e,(u=i+n)in a?a[c]=a[u]:Uh(a,c);for(i=f;i>f-n+e;i--)Uh(a,i-1)}else if(e>n)for(i=f-n;i>s;i--)c=i+e-1,(u=i+n-1)in a?a[c]=a[u]:Uh(a,c);for(i=0;i<e;i++)a[i+s]=arguments[i+2];return Fh(a,f-n+e),o}});var $h=Fr,Vh=Tt,Hh=TypeError,zh=$t,Jh=Ze,qh=function(t){if($h(this),"string"===t||"default"===t)t="string";else if("number"!==t)throw new Hh("Incorrect hint");return Vh(this,t)},Yh=nr("toPrimitive"),Kh=Date.prototype;zh(Kh,Yh)||Jh(Kh,Yh,qh);var Xh=i,Qh=ne.EXISTS,Zh=S,tp=Yo,rp=Function.prototype,ep=Zh(rp.toString),np=/function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/,op=Zh(np.exec);Xh&&!Qh&&tp(rp,"name",{configurable:!0,get:function(){try{return op(np,ep(this))[1]}catch(wO){return""}}});var ip=z,up=TypeError,cp=function(t,r){if(ip(r,t))return t;throw new up("Incorrect invocation")},ap=eo,fp=e,sp=cp,lp=Fr,hp=U,pp=al,vp=Yo,dp=jf,yp=o,gp=$t,mp=gl.IteratorPrototype,bp=i,wp="constructor",Sp="Iterator",Ep=nr("toStringTag"),Op=TypeError,xp=fp.Iterator,jp=!hp(xp)||xp.prototype!==mp||!yp((function(){xp({})})),Tp=function(){if(sp(this,mp),pp(this)===mp)throw new Op("Abstract class Iterator not directly constructable")},Ip=function(t,r){bp?vp(mp,t,{configurable:!0,get:function(){return r},set:function(r){if(lp(this),this===mp)throw new Op("You can't redefine this property");gp(this,t)?this[t]=r:dp(this,t,r)}}):mp[t]=r};gp(mp,Ep)||Ip(Ep,Sp),!jp&&gp(mp,wp)&&mp.constructor!==Object||Ip(wp,Tp),Tp.prototype=mp,ap({global:!0,constructor:!0,forced:jp},{Iterator:Tp});var Rp=bi,Pp=f,Ap=Fr,Np=vt,kp=ms,Cp=pn,Lp=z,Fp=Ns,_p=xs,Dp=ss,Mp=TypeError,Up=function(t,r){this.stopped=t,this.result=r},Bp=Up.prototype,Gp=function(t,r,e){var n,o,i,u,c,a,f,s=e&&e.that,l=!(!e||!e.AS_ENTRIES),h=!(!e||!e.IS_RECORD),p=!(!e||!e.IS_ITERATOR),v=!(!e||!e.INTERRUPTED),d=Rp(r,s),y=function(t){return n&&Dp(n,"normal",t),new Up(!0,t)},g=function(t){return l?(Ap(t),v?d(t[0],t[1],y):d(t[0],t[1])):v?d(t,y):d(t)};if(h)n=t.iterator;else if(p)n=t;else{if(!(o=_p(t)))throw new Mp(Np(t)+" is not iterable");if(kp(o)){for(i=0,u=Cp(t);u>i;i++)if((c=g(t[i]))&&Lp(Bp,c))return c;return new Up(!1)}n=Fp(t,o)}for(a=h?t.next:n.next;!(f=Pp(a,n)).done;){try{c=g(f.value)}catch(wO){Dp(n,"throw",wO)}if("object"==typeof c&&c&&Lp(Bp,c))return c}return new Up(!1)},Wp=function(t){return{iterator:t,next:t.next,done:!1}},$p=e,Vp=function(t,r){var e=$p.Iterator,n=e&&e.prototype,o=n&&n[t],i=!1;if(o)try{o.call({next:function(){return{done:!0}},return:function(){i=!0}},-1)}catch(wO){wO instanceof r||(i=!1)}if(!i)return o},Hp=eo,zp=f,Jp=Gp,qp=mt,Yp=Fr,Kp=Wp,Xp=ss,Qp=Vp("every",TypeError);Hp({target:"Iterator",proto:!0,real:!0,forced:Qp},{every:function(t){Yp(this);try{qp(t)}catch(wO){Xp(this,"throw",wO)}if(Qp)return zp(Qp,this,t);var r=Kp(this),e=0;return!Jp(r,(function(r,n){if(!t(r,e++))return n()}),{IS_RECORD:!0,INTERRUPTED:!0}).stopped}});var Zp=Ze,tv=f,rv=Uo,ev=Yr,nv=function(t,r,e){for(var n in r)Zp(t,n,r[n],e);return t},ov=Ne,iv=St,uv=gl.IteratorPrototype,cv=Vl,av=ss,fv=nr("toStringTag"),sv="IteratorHelper",lv="WrapForValidIterator",hv=ov.set,pv=function(t){var r=ov.getterFor(t?lv:sv);return nv(rv(uv),{next:function(){var e=r(this);if(t)return e.nextHandler();if(e.done)return cv(void 0,!0);try{var n=e.nextHandler();return e.returnHandlerResult?n:cv(n,e.done)}catch(wO){throw e.done=!0,wO}},return:function(){var e=r(this),n=e.iterator;if(e.done=!0,t){var o=iv(n,"return");return o?tv(o,n):cv(void 0,!0)}if(e.inner)try{av(e.inner.iterator,"normal")}catch(wO){return av(n,"throw",wO)}return n&&av(n,"normal"),cv(void 0,!0)}})},vv=pv(!0),dv=pv(!1);ev(dv,fv,"Iterator Helper");var yv=function(t,r,e){var n=function(n,o){o?(o.iterator=n.iterator,o.next=n.next):o=n,o.type=r?lv:sv,o.returnHandlerResult=!!e,o.nextHandler=t,o.counter=0,o.done=!1,hv(this,o)};return n.prototype=r?vv:dv,n},gv=eo,mv=f,bv=mt,wv=Fr,Sv=Wp,Ev=yv,Ov=ps,xv=ss,jv=Vp("filter",TypeError),Tv=Ev((function(){for(var t,r,e=this.iterator,n=this.predicate,o=this.next;;){if(t=wv(mv(o,e)),this.done=!!t.done)return;if(r=t.value,Ov(e,n,[r,this.counter++],!0))return r}}));gv({target:"Iterator",proto:!0,real:!0,forced:jv},{filter:function(t){wv(this);try{bv(t)}catch(wO){xv(this,"throw",wO)}return jv?mv(jv,this,t):new Tv(Sv(this),{predicate:t})}});var Iv=eo,Rv=f,Pv=Gp,Av=mt,Nv=Fr,kv=Wp,Cv=ss,Lv=Vp("find",TypeError);Iv({target:"Iterator",proto:!0,real:!0,forced:Lv},{find:function(t){Nv(this);try{Av(t)}catch(wO){Cv(this,"throw",wO)}if(Lv)return Rv(Lv,this,t);var r=kv(this),e=0;return Pv(r,(function(r,n){if(t(r,e++))return n(r)}),{IS_RECORD:!0,INTERRUPTED:!0}).result}});var Fv=eo,_v=f,Dv=Gp,Mv=mt,Uv=Fr,Bv=Wp,Gv=ss,Wv=Vp("forEach",TypeError);Fv({target:"Iterator",proto:!0,real:!0,forced:Wv},{forEach:function(t){Uv(this);try{Mv(t)}catch(wO){Gv(this,"throw",wO)}if(Wv)return _v(Wv,this,t);var r=Bv(this),e=0;Dv(r,(function(r){t(r,e++)}),{IS_RECORD:!0})}});var $v=eo,Vv=f,Hv=mt,zv=Fr,Jv=Wp,qv=yv,Yv=ps,Kv=ss,Xv=Vp("map",TypeError),Qv=qv((function(){var t=this.iterator,r=zv(Vv(this.next,t));if(!(this.done=!!r.done))return Yv(t,this.mapper,[r.value,this.counter++],!0)}));$v({target:"Iterator",proto:!0,real:!0,forced:Xv},{map:function(t){zv(this);try{Hv(t)}catch(wO){Kv(this,"throw",wO)}return Xv?Vv(Xv,this,t):new Qv(Jv(this),{mapper:t})}});var Zv=eo,td=f,rd=Gp,ed=mt,nd=Fr,od=Wp,id=ss,ud=Vp("some",TypeError);Zv({target:"Iterator",proto:!0,real:!0,forced:ud},{some:function(t){nd(this);try{ed(t)}catch(wO){id(this,"throw",wO)}if(ud)return td(ud,this,t);var r=od(this),e=0;return rd(r,(function(r,n){if(t(r,e++))return n()}),{IS_RECORD:!0,INTERRUPTED:!0}).stopped}});var cd=S(1..valueOf),ad=L,fd=vo,sd="\t\n\v\f\r                 \u2028\u2029\ufeff",ld=S("".replace),hd=RegExp("^["+sd+"]+"),pd=RegExp("(^|[^"+sd+"])["+sd+"]+$"),vd=function(t){return function(r){var e=fd(ad(r));return 1&t&&(e=ld(e,hd,"")),2&t&&(e=ld(e,pd,"$1")),e}},dd={start:vd(1),end:vd(2),trim:vd(3)},yd=eo,gd=i,md=e,bd=Qo,wd=S,Sd=qn,Ed=$t,Od=Ma,xd=z,jd=ht,Td=lr,Id=o,Rd=tn.f,Pd=n.f,Ad=Ar.f,Nd=cd,kd=dd.trim,Cd="Number",Ld=md.Number;bd.Number;var Fd=Ld.prototype,_d=md.TypeError,Dd=wd("".slice),Md=wd("".charCodeAt),Ud=function(t){var r=Td(t,"number");return"bigint"==typeof r?r:Bd(r)},Bd=function(t){var r,e,n,o,i,u,c,a,f=Td(t,"number");if(jd(f))throw new _d("Cannot convert a Symbol value to a number");if("string"==typeof f&&f.length>2)if(f=kd(f),43===(r=Md(f,0))||45===r){if(88===(e=Md(f,2))||120===e)return NaN}else if(48===r){switch(Md(f,1)){case 66:case 98:n=2,o=49;break;case 79:case 111:n=8,o=55;break;default:return+f}for(u=(i=Dd(f,2)).length,c=0;c<u;c++)if((a=Md(i,c))<48||a>o)return NaN;return parseInt(i,n)}return+f},Gd=Sd(Cd,!Ld(" 0o1")||!Ld("0b1")||Ld("+0x1")),Wd=function(t){return xd(Fd,t)&&Id((function(){Nd(t)}))},$d=function(t){var r=arguments.length<1?0:Ld(Ud(t));return Wd(this)?Od(Object(r),this,$d):r};$d.prototype=Fd,Gd&&(Fd.constructor=$d),yd({global:!0,constructor:!0,wrap:!0,forced:Gd},{Number:$d});Gd&&function(t,r){for(var e,n=gd?Rd(r):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,fromString,range".split(","),o=0;n.length>o;o++)Ed(r,e=n[o])&&!Ed(t,e)&&Ad(t,e,Pd(r,e))}(bd.Number,Ld);var Vd=i,Hd=S,zd=f,Jd=o,qd=bo,Yd=Rn,Kd=s,Xd=Bt,Qd=A,Zd=Object.assign,ty=Object.defineProperty,ry=Hd([].concat),ey=!Zd||Jd((function(){if(Vd&&1!==Zd({b:1},Zd(ty({},"a",{enumerable:!0,get:function(){ty(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},r={},e=Symbol("assign detection"),n="abcdefghijklmnopqrst";return t[e]=7,n.split("").forEach((function(t){r[t]=t})),7!==Zd({},t)[e]||qd(Zd({},r)).join("")!==n}))?function(t,r){for(var e=Xd(t),n=arguments.length,o=1,i=Yd.f,u=Kd.f;n>o;)for(var c,a=Qd(arguments[o++]),f=i?ry(qd(a),i(a)):qd(a),s=f.length,l=0;s>l;)c=f[l++],Vd&&!zd(u,a,c)||(e[c]=a[c]);return e}:Zd,ny=ey;eo({target:"Object",stat:!0,arity:2,forced:Object.assign!==ny},{assign:ny});var oy=eo,iy=o,uy=D,cy=n.f,ay=i;oy({target:"Object",stat:!0,forced:!ay||iy((function(){cy(1)})),sham:!ay},{getOwnPropertyDescriptor:function(t,r){return cy(uy(t),r)}});var fy=Ln,sy=D,ly=n,hy=jf;eo({target:"Object",stat:!0,sham:!i},{getOwnPropertyDescriptors:function(t){for(var r,e,n=sy(t),o=ly.f,i=fy(n),u={},c=0;i.length>c;)void 0!==(e=o(n,r=i[c++]))&&hy(u,r,e);return u}});var py=Bt,vy=al,dy=tl;eo({target:"Object",stat:!0,forced:o((function(){vy(1)})),sham:!dy},{getPrototypeOf:function(t){return vy(py(t))}});var yy=Bt,gy=bo;eo({target:"Object",stat:!0,forced:o((function(){gy(1)}))},{keys:function(t){return gy(yy(t))}});var my=lo,by=oo?{}.toString:function(){return"[object "+my(this)+"]"};oo||Ze(Object.prototype,"toString",by,{unsafe:!0});var wy,Sy,Ey,Oy,xy=e,jy=Y,Ty=j,Iy=function(t){return jy.slice(0,t.length)===t},Ry=Iy("Bun/")?"BUN":Iy("Cloudflare-Workers")?"CLOUDFLARE":Iy("Deno/")?"DENO":Iy("Node.js/")?"NODE":xy.Bun&&"string"==typeof Bun.version?"BUN":xy.Deno&&"object"==typeof Deno.version?"DENO":"process"===Ty(xy.process)?"NODE":xy.window&&xy.document?"BROWSER":"REST",Py="NODE"===Ry,Ay=H,Ny=Yo,ky=i,Cy=nr("species"),Ly=Li,Fy=vt,_y=TypeError,Dy=function(t){if(Ly(t))return t;throw new _y(Fy(t)+" is not a constructor")},My=Fr,Uy=Dy,By=N,Gy=nr("species"),Wy=TypeError,$y=/(?:ipad|iphone|ipod).*applewebkit/i.test(Y),Vy=e,Hy=xc,zy=bi,Jy=U,qy=$t,Yy=o,Ky=Io,Xy=Go,Qy=mr,Zy=function(t,r){if(t<r)throw new Wy("Not enough arguments");return t},tg=$y,rg=Py,eg=Vy.setImmediate,ng=Vy.clearImmediate,og=Vy.process,ig=Vy.Dispatch,ug=Vy.Function,cg=Vy.MessageChannel,ag=Vy.String,fg=0,sg={},lg="onreadystatechange";Yy((function(){wy=Vy.location}));var hg=function(t){if(qy(sg,t)){var r=sg[t];delete sg[t],r()}},pg=function(t){return function(){hg(t)}},vg=function(t){hg(t.data)},dg=function(t){Vy.postMessage(ag(t),wy.protocol+"//"+wy.host)};eg&&ng||(eg=function(t){Zy(arguments.length,1);var r=Jy(t)?t:ug(t),e=Xy(arguments,1);return sg[++fg]=function(){Hy(r,void 0,e)},Sy(fg),fg},ng=function(t){delete sg[t]},rg?Sy=function(t){og.nextTick(pg(t))}:ig&&ig.now?Sy=function(t){ig.now(pg(t))}:cg&&!tg?(Oy=(Ey=new cg).port2,Ey.port1.onmessage=vg,Sy=zy(Oy.postMessage,Oy)):Vy.addEventListener&&Jy(Vy.postMessage)&&!Vy.importScripts&&wy&&"file:"!==wy.protocol&&!Yy(dg)?(Sy=dg,Vy.addEventListener("message",vg,!1)):Sy=lg in Qy("script")?function(t){Ky.appendChild(Qy("script")).onreadystatechange=function(){Ky.removeChild(this),hg(t)}}:function(t){setTimeout(pg(t),0)});var yg={set:eg,clear:ng},gg=e,mg=i,bg=Object.getOwnPropertyDescriptor,wg=function(){this.head=null,this.tail=null};wg.prototype={add:function(t){var r={item:t,next:null},e=this.tail;e?e.next=r:this.head=r,this.tail=r},get:function(){var t=this.head;if(t)return null===(this.head=t.next)&&(this.tail=null),t.item}};var Sg,Eg,Og,xg,jg,Tg=wg,Ig=/ipad|iphone|ipod/i.test(Y)&&"undefined"!=typeof Pebble,Rg=/web0s(?!.*chrome)/i.test(Y),Pg=e,Ag=function(t){if(!mg)return gg[t];var r=bg(gg,t);return r&&r.value},Ng=bi,kg=yg.set,Cg=Tg,Lg=$y,Fg=Ig,_g=Rg,Dg=Py,Mg=Pg.MutationObserver||Pg.WebKitMutationObserver,Ug=Pg.document,Bg=Pg.process,Gg=Pg.Promise,Wg=Ag("queueMicrotask");if(!Wg){var $g=new Cg,Vg=function(){var t,r;for(Dg&&(t=Bg.domain)&&t.exit();r=$g.get();)try{r()}catch(wO){throw $g.head&&Sg(),wO}t&&t.enter()};Lg||Dg||_g||!Mg||!Ug?!Fg&&Gg&&Gg.resolve?((xg=Gg.resolve(void 0)).constructor=Gg,jg=Ng(xg.then,xg),Sg=function(){jg(Vg)}):Dg?Sg=function(){Bg.nextTick(Vg)}:(kg=Ng(kg,Pg),Sg=function(){kg(Vg)}):(Eg=!0,Og=Ug.createTextNode(""),new Mg(Vg).observe(Og,{characterData:!0}),Sg=function(){Og.data=Eg=!Eg}),Wg=function(t){$g.head||Sg(),$g.add(t)}}var Hg=Wg,zg=function(t){try{return{error:!1,value:t()}}catch(wO){return{error:!0,value:wO}}},Jg=e.Promise,qg=e,Yg=Jg,Kg=U,Xg=qn,Qg=se,Zg=nr,tm=Ry,rm=et;Yg&&Yg.prototype;var em=Zg("species"),nm=!1,om=Kg(qg.PromiseRejectionEvent),im=Xg("Promise",(function(){var t=Qg(Yg),r=t!==String(Yg);if(!r&&66===rm)return!0;if(!rm||rm<51||!/native code/.test(t)){var e=new Yg((function(t){t(1)})),n=function(t){t((function(){}),(function(){}))};if((e.constructor={})[em]=n,!(nm=e.then((function(){}))instanceof n))return!0}return!(r||"BROWSER"!==tm&&"DENO"!==tm||om)})),um={CONSTRUCTOR:im,REJECTION_EVENT:om,SUBCLASSING:nm},cm={},am=mt,fm=TypeError,sm=function(t){var r,e;this.promise=new t((function(t,n){if(void 0!==r||void 0!==e)throw new fm("Bad Promise constructor");r=t,e=n})),this.resolve=am(r),this.reject=am(e)};cm.f=function(t){return new sm(t)};var lm,hm,pm,vm=eo,dm=Py,ym=e,gm=f,mm=Ze,bm=Ca,wm=hi,Sm=function(t){var r=Ay(t);ky&&r&&!r[Cy]&&Ny(r,Cy,{configurable:!0,get:function(){return this}})},Em=mt,Om=U,xm=G,jm=cp,Tm=function(t,r){var e,n=My(t).constructor;return void 0===n||By(e=My(n)[Gy])?r:Uy(e)},Im=yg.set,Rm=Hg,Pm=function(t,r){try{1===arguments.length?console.error(t):console.error(t,r)}catch(wO){}},Am=zg,Nm=Tg,km=Ne,Cm=Jg,Lm=cm,Fm="Promise",_m=um.CONSTRUCTOR,Dm=um.REJECTION_EVENT,Mm=um.SUBCLASSING,Um=km.getterFor(Fm),Bm=km.set,Gm=Cm&&Cm.prototype,Wm=Cm,$m=Gm,Vm=ym.TypeError,Hm=ym.document,zm=ym.process,Jm=Lm.f,qm=Jm,Ym=!!(Hm&&Hm.createEvent&&ym.dispatchEvent),Km="unhandledrejection",Xm=function(t){var r;return!(!xm(t)||!Om(r=t.then))&&r},Qm=function(t,r){var e,n,o,i=r.value,u=1===r.state,c=u?t.ok:t.fail,a=t.resolve,f=t.reject,s=t.domain;try{c?(u||(2===r.rejection&&nb(r),r.rejection=1),!0===c?e=i:(s&&s.enter(),e=c(i),s&&(s.exit(),o=!0)),e===t.promise?f(new Vm("Promise-chain cycle")):(n=Xm(e))?gm(n,e,a,f):a(e)):f(i)}catch(wO){s&&!o&&s.exit(),f(wO)}},Zm=function(t,r){t.notified||(t.notified=!0,Rm((function(){for(var e,n=t.reactions;e=n.get();)Qm(e,t);t.notified=!1,r&&!t.rejection&&rb(t)})))},tb=function(t,r,e){var n,o;Ym?((n=Hm.createEvent("Event")).promise=r,n.reason=e,n.initEvent(t,!1,!0),ym.dispatchEvent(n)):n={promise:r,reason:e},!Dm&&(o=ym["on"+t])?o(n):t===Km&&Pm("Unhandled promise rejection",e)},rb=function(t){gm(Im,ym,(function(){var r,e=t.facade,n=t.value;if(eb(t)&&(r=Am((function(){dm?zm.emit("unhandledRejection",n,e):tb(Km,e,n)})),t.rejection=dm||eb(t)?2:1,r.error))throw r.value}))},eb=function(t){return 1!==t.rejection&&!t.parent},nb=function(t){gm(Im,ym,(function(){var r=t.facade;dm?zm.emit("rejectionHandled",r):tb("rejectionhandled",r,t.value)}))},ob=function(t,r,e){return function(n){t(r,n,e)}},ib=function(t,r,e){t.done||(t.done=!0,e&&(t=e),t.value=r,t.state=2,Zm(t,!0))},ub=function(t,r,e){if(!t.done){t.done=!0,e&&(t=e);try{if(t.facade===r)throw new Vm("Promise can't be resolved itself");var n=Xm(r);n?Rm((function(){var e={done:!1};try{gm(n,r,ob(ub,e,t),ob(ib,e,t))}catch(wO){ib(e,wO,t)}})):(t.value=r,t.state=1,Zm(t,!1))}catch(wO){ib({done:!1},wO,t)}}};if(_m&&($m=(Wm=function(t){jm(this,$m),Em(t),gm(lm,this);var r=Um(this);try{t(ob(ub,r),ob(ib,r))}catch(wO){ib(r,wO)}}).prototype,(lm=function(t){Bm(this,{type:Fm,done:!1,notified:!1,parent:!1,reactions:new Nm,rejection:!1,state:0,value:null})}).prototype=mm($m,"then",(function(t,r){var e=Um(this),n=Jm(Tm(this,Wm));return e.parent=!0,n.ok=!Om(t)||t,n.fail=Om(r)&&r,n.domain=dm?zm.domain:void 0,0===e.state?e.reactions.add(n):Rm((function(){Qm(n,e)})),n.promise})),hm=function(){var t=new lm,r=Um(t);this.promise=t,this.resolve=ob(ub,r),this.reject=ob(ib,r)},Lm.f=Jm=function(t){return t===Wm||undefined===t?new hm(t):qm(t)},Om(Cm)&&Gm!==Object.prototype)){pm=Gm.then,Mm||mm(Gm,"then",(function(t,r){var e=this;return new Wm((function(t,r){gm(pm,e,t,r)})).then(t,r)}),{unsafe:!0});try{delete Gm.constructor}catch(wO){}bm&&bm(Gm,$m)}vm({global:!0,constructor:!0,wrap:!0,forced:_m},{Promise:Wm}),wm(Wm,Fm,!1),Sm(Fm);var cb=Jg,ab=um.CONSTRUCTOR||!Js((function(t){cb.all(t).then(void 0,(function(){}))})),fb=f,sb=mt,lb=cm,hb=zg,pb=Gp;eo({target:"Promise",stat:!0,forced:ab},{all:function(t){var r=this,e=lb.f(r),n=e.resolve,o=e.reject,i=hb((function(){var e=sb(r.resolve),i=[],u=0,c=1;pb(t,(function(t){var a=u++,f=!1;c++,fb(e,r,t).then((function(t){f||(f=!0,i[a]=t,--c||n(i))}),o)})),--c||n(i)}));return i.error&&o(i.value),e.promise}});var vb=eo,db=um.CONSTRUCTOR,yb=Jg,gb=H,mb=U,bb=Ze,wb=yb&&yb.prototype;if(vb({target:"Promise",proto:!0,forced:db,real:!0},{catch:function(t){return this.then(void 0,t)}}),mb(yb)){var Sb=gb("Promise").prototype.catch;wb.catch!==Sb&&bb(wb,"catch",Sb,{unsafe:!0})}var Eb=f,Ob=mt,xb=cm,jb=zg,Tb=Gp;eo({target:"Promise",stat:!0,forced:ab},{race:function(t){var r=this,e=xb.f(r),n=e.reject,o=jb((function(){var o=Ob(r.resolve);Tb(t,(function(t){Eb(o,r,t).then(e.resolve,n)}))}));return o.error&&n(o.value),e.promise}});var Ib=cm;eo({target:"Promise",stat:!0,forced:um.CONSTRUCTOR},{reject:function(t){var r=Ib.f(this);return(0,r.reject)(t),r.promise}});var Rb=Fr,Pb=G,Ab=cm,Nb=eo,kb=um.CONSTRUCTOR,Cb=function(t,r){if(Rb(t),Pb(r)&&r.constructor===t)return r;var e=Ab.f(t);return(0,e.resolve)(r),e.promise};H("Promise"),Nb({target:"Promise",stat:!0,forced:kb},{resolve:function(t){return Cb(this,t)}});var Lb=S,Fb=mt,_b=G,Db=$t,Mb=Go,Ub=u,Bb=Function,Gb=Lb([].concat),Wb=Lb([].join),$b={},Vb=function(t,r,e){if(!Db($b,r)){for(var n=[],o=0;o<r;o++)n[o]="a["+o+"]";$b[r]=Bb("C,a","return new C("+Wb(n,",")+")")}return $b[r](t,e)},Hb=Ub?Bb.bind:function(t){var r=Fb(this),e=r.prototype,n=Mb(arguments,1),o=function(){var e=Gb(n,Mb(arguments));return this instanceof o?Vb(r,e.length,e):r.apply(t,e)};return _b(e)&&(o.prototype=e),o},zb=eo,Jb=xc,qb=Hb,Yb=Dy,Kb=Fr,Xb=G,Qb=Uo,Zb=o,tw=H("Reflect","construct"),rw=Object.prototype,ew=[].push,nw=Zb((function(){function t(){}return!(tw((function(){}),[],t)instanceof t)})),ow=!Zb((function(){tw((function(){}))})),iw=nw||ow;zb({target:"Reflect",stat:!0,forced:iw,sham:iw},{construct:function(t,r){Yb(t),Kb(r);var e=arguments.length<3?t:Yb(arguments[2]);if(ow&&!nw)return tw(t,r,e);if(t===e){switch(r.length){case 0:return new t;case 1:return new t(r[0]);case 2:return new t(r[0],r[1]);case 3:return new t(r[0],r[1],r[2]);case 4:return new t(r[0],r[1],r[2],r[3])}var n=[null];return Jb(ew,n,r),new(Jb(qb,t,n))}var o=e.prototype,i=Qb(Xb(o)?o:rw),u=Jb(t,i,r);return Xb(u)?u:i}});var uw=$t,cw=f,aw=G,fw=Fr,sw=function(t){return void 0!==t&&(uw(t,"value")||uw(t,"writable"))},lw=n,hw=al;eo({target:"Reflect",stat:!0},{get:function t(r,e){var n,o,i=arguments.length<3?r:arguments[2];return fw(r)===i?r[e]:(n=lw.f(r,e))?sw(n)?n.value:void 0===n.get?void 0:cw(n.get,i):aw(o=hw(r))?t(o,e,i):void 0}});var pw=e,vw=hi;eo({global:!0},{Reflect:{}}),vw(pw.Reflect,"Reflect",!0);var dw,yw,gw=Fr,mw=function(){var t=gw(this),r="";return t.hasIndices&&(r+="d"),t.global&&(r+="g"),t.ignoreCase&&(r+="i"),t.multiline&&(r+="m"),t.dotAll&&(r+="s"),t.unicode&&(r+="u"),t.unicodeSets&&(r+="v"),t.sticky&&(r+="y"),r},bw=o,ww=e.RegExp,Sw=bw((function(){var t=ww("a","y");return t.lastIndex=2,null!==t.exec("abcd")})),Ew=Sw||bw((function(){return!ww("a","y").sticky})),Ow=Sw||bw((function(){var t=ww("^r","gy");return t.lastIndex=2,null!==t.exec("str")})),xw={BROKEN_CARET:Ow,MISSED_STICKY:Ew,UNSUPPORTED_Y:Sw},jw=o,Tw=e.RegExp,Iw=jw((function(){var t=Tw(".","s");return!(t.dotAll&&t.test("\n")&&"s"===t.flags)})),Rw=o,Pw=e.RegExp,Aw=Rw((function(){var t=Pw("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")})),Nw=f,kw=S,Cw=vo,Lw=mw,Fw=xw,_w=Uo,Dw=Ne.get,Mw=Iw,Uw=Aw,Bw=Dt("native-string-replace",String.prototype.replace),Gw=RegExp.prototype.exec,Ww=Gw,$w=kw("".charAt),Vw=kw("".indexOf),Hw=kw("".replace),zw=kw("".slice),Jw=(yw=/b*/g,Nw(Gw,dw=/a/,"a"),Nw(Gw,yw,"a"),0!==dw.lastIndex||0!==yw.lastIndex),qw=Fw.BROKEN_CARET,Yw=void 0!==/()??/.exec("")[1];(Jw||Yw||qw||Mw||Uw)&&(Ww=function(t){var r,e,n,o,i,u,c,a=this,f=Dw(a),s=Cw(t),l=f.raw;if(l)return l.lastIndex=a.lastIndex,r=Nw(Ww,l,s),a.lastIndex=l.lastIndex,r;var h=f.groups,p=qw&&a.sticky,v=Nw(Lw,a),d=a.source,y=0,g=s;if(p&&(v=Hw(v,"y",""),-1===Vw(v,"g")&&(v+="g"),g=zw(s,a.lastIndex),a.lastIndex>0&&(!a.multiline||a.multiline&&"\n"!==$w(s,a.lastIndex-1))&&(d="(?: "+d+")",g=" "+g,y++),e=new RegExp("^(?:"+d+")",v)),Yw&&(e=new RegExp("^"+d+"$(?!\\s)",v)),Jw&&(n=a.lastIndex),o=Nw(Gw,p?e:a,g),p?o?(o.input=zw(o.input,y),o[0]=zw(o[0],y),o.index=a.lastIndex,a.lastIndex+=o[0].length):a.lastIndex=0:Jw&&o&&(a.lastIndex=a.global?o.index+o[0].length:n),Yw&&o&&o.length>1&&Nw(Bw,o[0],e,(function(){for(i=1;i<arguments.length-2;i++)void 0===arguments[i]&&(o[i]=void 0)})),o&&h)for(o.groups=u=_w(null),i=0;i<h.length;i++)u[(c=h[i])[0]]=o[c[1]];return o});eo({target:"RegExp",proto:!0,forced:/./.exec!==Ww},{exec:Ww});var Kw,Xw,Qw=eo,Zw=f,tS=U,rS=Fr,eS=vo,nS=(Kw=!1,(Xw=/[ac]/).exec=function(){return Kw=!0,/./.exec.apply(this,arguments)},!0===Xw.test("abc")&&Kw),oS=/./.test;Qw({target:"RegExp",proto:!0,forced:!nS},{test:function(t){var r=rS(this),e=eS(t),n=r.exec;if(!tS(n))return Zw(oS,r,e);var o=Zw(n,r,e);return null!==o&&(rS(o),!0)}});var iS=f,uS=$t,cS=z,aS=mw,fS=RegExp.prototype,sS=ne.PROPER,lS=Ze,hS=Fr,pS=vo,vS=o,dS=function(t){var r=t.flags;return void 0!==r||"flags"in fS||uS(t,"flags")||!cS(fS,t)?r:iS(aS,t)},yS="toString",gS=RegExp.prototype,mS=gS.toString,bS=vS((function(){return"/a/b"!==mS.call({source:"a",flags:"b"})})),wS=sS&&mS.name!==yS;(bS||wS)&&lS(gS,yS,(function(){var t=hS(this);return"/"+pS(t.source)+"/"+pS(dS(t))}),{unsafe:!0});var SS=G,ES=j,OS=nr("match"),xS=function(t){var r;return SS(t)&&(void 0!==(r=t[OS])?!!r:"RegExp"===ES(t))},jS=TypeError,TS=nr("match"),IS=eo,RS=function(t){if(xS(t))throw new jS("The method doesn't accept regular expressions");return t},PS=L,AS=vo,NS=function(t){var r=/./;try{"/./"[t](r)}catch(e){try{return r[TS]=!1,"/./"[t](r)}catch(n){}}return!1},kS=S("".indexOf);IS({target:"String",proto:!0,forced:!NS("includes")},{includes:function(t){return!!~kS(AS(PS(this)),AS(RS(t)),arguments.length>1?arguments[1]:void 0)}});var CS=S,LS=on,FS=vo,_S=L,DS=CS("".charAt),MS=CS("".charCodeAt),US=CS("".slice),BS=function(t){return function(r,e){var n,o,i=FS(_S(r)),u=LS(e),c=i.length;return u<0||u>=c?t?"":void 0:(n=MS(i,u))<55296||n>56319||u+1===c||(o=MS(i,u+1))<56320||o>57343?t?DS(i,u):n:t?US(i,u,u+2):o-56320+(n-55296<<10)+65536}},GS={codeAt:BS(!1),charAt:BS(!0)}.charAt,WS=vo,$S=Ne,VS=$l,HS=Vl,zS="String Iterator",JS=$S.set,qS=$S.getterFor(zS);VS(String,"String",(function(t){JS(this,{type:zS,string:WS(t),index:0})}),(function(){var t,r=qS(this),e=r.string,n=r.index;return n>=e.length?HS(void 0,!0):(t=GS(e,n),r.index+=t.length,HS(t,!1))}));var YS=L,KS=vo,XS=/"/g,QS=S("".replace),ZS=o,tE=function(t,r,e,n){var o=KS(YS(t)),i="<"+r;return""!==e&&(i+=" "+e+'="'+QS(KS(n),XS,"&quot;")+'"'),i+">"+o+"</"+r+">"},rE=function(t){return ZS((function(){var r=""[t]('"');return r!==r.toLowerCase()||r.split('"').length>3}))};eo({target:"String",proto:!0,forced:rE("fixed")},{fixed:function(){return tE(this,"tt","","")}});var eE=S,nE=$t,oE=SyntaxError,iE=parseInt,uE=String.fromCharCode,cE=eE("".charAt),aE=eE("".slice),fE=eE(/./.exec),sE={'\\"':'"',"\\\\":"\\","\\/":"/","\\b":"\b","\\f":"\f","\\n":"\n","\\r":"\r","\\t":"\t"},lE=/^[\da-f]{4}$/i,hE=/^[\u0000-\u001F]$/,pE=eo,vE=i,dE=e,yE=H,gE=S,mE=f,bE=U,wE=G,SE=Si,EE=$t,OE=vo,xE=pn,jE=jf,TE=o,IE=function(t,r){for(var e=!0,n="";r<t.length;){var o=cE(t,r);if("\\"===o){var i=aE(t,r,r+2);if(nE(sE,i))n+=sE[i],r+=2;else{if("\\u"!==i)throw new oE('Unknown escape sequence: "'+i+'"');var u=aE(t,r+=2,r+4);if(!fE(lE,u))throw new oE("Bad Unicode escape at: "+r);n+=uE(iE(u,16)),r+=4}}else{if('"'===o){e=!1,r++;break}if(fE(hE,o))throw new oE("Bad control character in string literal at: "+r);n+=o,r++}}if(e)throw new oE("Unterminated string at: "+r);return{value:n,end:r}},RE=ut,PE=dE.JSON,AE=dE.Number,NE=dE.SyntaxError,kE=PE&&PE.parse,CE=yE("Object","keys"),LE=Object.getOwnPropertyDescriptor,FE=gE("".charAt),_E=gE("".slice),DE=gE(/./.exec),ME=gE([].push),UE=/^\d$/,BE=/^[1-9]$/,GE=/^[\d-]$/,WE=/^[\t\n\r ]$/,$E=function(t,r,e,n){var o,i,u,c,a,f=t[r],s=n&&f===n.value,l=s&&"string"==typeof n.source?{source:n.source}:{};if(wE(f)){var h=SE(f),p=s?n.nodes:h?[]:{};if(h)for(o=p.length,u=xE(f),c=0;c<u;c++)VE(f,c,$E(f,""+c,e,c<o?p[c]:void 0));else for(i=CE(f),u=xE(i),c=0;c<u;c++)a=i[c],VE(f,a,$E(f,a,e,EE(p,a)?p[a]:void 0))}return mE(e,t,r,f,l)},VE=function(t,r,e){if(vE){var n=LE(t,r);if(n&&!n.configurable)return}void 0===e?delete t[r]:jE(t,r,e)},HE=function(t,r,e,n){this.value=t,this.end=r,this.source=e,this.nodes=n},zE=function(t,r){this.source=t,this.index=r};zE.prototype={fork:function(t){return new zE(this.source,t)},parse:function(){var t=this.source,r=this.skip(WE,this.index),e=this.fork(r),n=FE(t,r);if(DE(GE,n))return e.number();switch(n){case"{":return e.object();case"[":return e.array();case'"':return e.string();case"t":return e.keyword(!0);case"f":return e.keyword(!1);case"n":return e.keyword(null)}throw new NE('Unexpected character: "'+n+'" at: '+r)},node:function(t,r,e,n,o){return new HE(r,n,t?null:_E(this.source,e,n),o)},object:function(){for(var t=this.source,r=this.index+1,e=!1,n={},o={};r<t.length;){if(r=this.until(['"',"}"],r),"}"===FE(t,r)&&!e){r++;break}var i=this.fork(r).string(),u=i.value;r=i.end,r=this.until([":"],r)+1,r=this.skip(WE,r),i=this.fork(r).parse(),jE(o,u,i),jE(n,u,i.value),r=this.until([",","}"],i.end);var c=FE(t,r);if(","===c)e=!0,r++;else if("}"===c){r++;break}}return this.node(1,n,this.index,r,o)},array:function(){for(var t=this.source,r=this.index+1,e=!1,n=[],o=[];r<t.length;){if(r=this.skip(WE,r),"]"===FE(t,r)&&!e){r++;break}var i=this.fork(r).parse();if(ME(o,i),ME(n,i.value),r=this.until([",","]"],i.end),","===FE(t,r))e=!0,r++;else if("]"===FE(t,r)){r++;break}}return this.node(1,n,this.index,r,o)},string:function(){var t=this.index,r=IE(this.source,this.index+1);return this.node(0,r.value,t,r.end)},number:function(){var t=this.source,r=this.index,e=r;if("-"===FE(t,e)&&e++,"0"===FE(t,e))e++;else{if(!DE(BE,FE(t,e)))throw new NE("Failed to parse number at: "+e);e=this.skip(UE,e+1)}if(("."===FE(t,e)&&(e=this.skip(UE,e+1)),"e"===FE(t,e)||"E"===FE(t,e))&&(e++,"+"!==FE(t,e)&&"-"!==FE(t,e)||e++,e===(e=this.skip(UE,e))))throw new NE("Failed to parse number's exponent value at: "+e);return this.node(0,AE(_E(t,r,e)),r,e)},keyword:function(t){var r=""+t,e=this.index,n=e+r.length;if(_E(this.source,e,n)!==r)throw new NE("Failed to parse value at: "+e);return this.node(0,t,e,n)},skip:function(t,r){for(var e=this.source;r<e.length&&DE(t,FE(e,r));r++);return r},until:function(t,r){r=this.skip(WE,r);for(var e=FE(this.source,r),n=0;n<t.length;n++)if(t[n]===e)return r;throw new NE('Unexpected character: "'+e+'" at: '+r)}};var JE=TE((function(){var t,r="9007199254740993";return kE(r,(function(r,e,n){t=n.source})),t!==r})),qE=RE&&!TE((function(){return 1/kE("-0 \t")!=-1/0}));pE({target:"JSON",stat:!0,forced:JE},{parse:function(t,r){return qE&&!bE(r)?kE(t):function(t,r){t=OE(t);var e=new zE(t,0),n=e.parse(),o=n.value,i=e.skip(WE,n.end);if(i<t.length)throw new NE('Unexpected extra character: "'+FE(t,i)+'" after the parsed data at: '+i);return bE(r)?$E({"":o},"",r,n):o}(t,r)}});var YE={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0},KE=mr("span").classList,XE=KE&&KE.constructor&&KE.constructor.prototype,QE=XE===Object.prototype?void 0:XE,ZE=o,tO=Yi.forEach,rO=function(t,r){var e=[][t];return!!e&&ZE((function(){e.call(null,r||function(){return 1},1)}))},eO=rO("forEach")?[].forEach:function(t){return tO(this,t,arguments.length>1?arguments[1]:void 0)},nO=e,oO=YE,iO=QE,uO=eO,cO=Yr,aO=function(t){if(t&&t.forEach!==uO)try{cO(t,"forEach",uO)}catch(wO){t.forEach=uO}};for(var fO in oO)oO[fO]&&aO(nO[fO]&&nO[fO].prototype);aO(iO);var sO=e,lO=YE,hO=QE,pO=eh,vO=Yr,dO=hi,yO=nr("iterator"),gO=pO.values,mO=function(t,r){if(t){if(t[yO]!==gO)try{vO(t,yO,gO)}catch(wO){t[yO]=gO}if(dO(t,r,!0),lO[r])for(var e in pO)if(t[e]!==pO[e])try{vO(t,e,pO[e])}catch(wO){t[e]=pO[e]}}};for(var bO in lO)mO(sO[bO]&&sO[bO].prototype,bO);mO(hO,"DOMTokenList"),function(){function r(t,r){return(r||"")+" (SystemJS https://github.com/systemjs/systemjs/blob/main/docs/errors.md#"+t+")"}function e(t,r){if(-1!==t.indexOf("\\")&&(t=t.replace(x,"/")),"/"===t[0]&&"/"===t[1])return r.slice(0,r.indexOf(":")+1)+t;if("."===t[0]&&("/"===t[1]||"."===t[1]&&("/"===t[2]||2===t.length&&(t+="/"))||1===t.length&&(t+="/"))||"/"===t[0]){var e,n=r.slice(0,r.indexOf(":")+1);if(e="/"===r[n.length+1]?"file:"!==n?(e=r.slice(n.length+2)).slice(e.indexOf("/")+1):r.slice(8):r.slice(n.length+("/"===r[n.length])),"/"===t[0])return r.slice(0,r.length-e.length-1)+t;for(var o=e.slice(0,e.lastIndexOf("/")+1)+t,i=[],u=-1,c=0;c<o.length;c++)-1!==u?"/"===o[c]&&(i.push(o.slice(u,c+1)),u=-1):"."===o[c]?"."!==o[c+1]||"/"!==o[c+2]&&c+2!==o.length?"/"===o[c+1]||c+1===o.length?c+=1:u=c:(i.pop(),c+=2):u=c;return-1!==u&&i.push(o.slice(u)),r.slice(0,r.length-e.length)+i.join("")}}function n(t,r){return e(t,r)||(-1!==t.indexOf(":")?t:e("./"+t,r))}function o(t,r,n,o,i){for(var u in t){var c=e(u,n)||u,s=t[u];if("string"==typeof s){var l=f(o,e(s,n)||s,i);l?r[c]=l:a("W1",u,s)}}}function i(t,r,e){var i;for(i in t.imports&&o(t.imports,e.imports,r,e,null),t.scopes||{}){var u=n(i,r);o(t.scopes[i],e.scopes[u]||(e.scopes[u]={}),r,e,u)}for(i in t.depcache||{})e.depcache[n(i,r)]=t.depcache[i];for(i in t.integrity||{})e.integrity[n(i,r)]=t.integrity[i]}function u(t,r){if(r[t])return t;var e=t.length;do{var n=t.slice(0,e+1);if(n in r)return n}while(-1!==(e=t.lastIndexOf("/",e-1)))}function c(t,r){var e=u(t,r);if(e){var n=r[e];if(null===n)return;if(!(t.length>e.length&&"/"!==n[n.length-1]))return n+t.slice(e.length);a("W2",e,n)}}function a(t,e,n){console.warn(r(t,[n,e].join(", ")))}function f(t,r,e){for(var n=t.scopes,o=e&&u(e,n);o;){var i=c(r,n[o]);if(i)return i;o=u(o.slice(0,o.lastIndexOf("/")),n)}return c(r,t.imports)||-1!==r.indexOf(":")&&r}function s(){this[T]={}}function l(t,e,n,o){var i=t[T][e];if(i)return i;var u=[],c=Object.create(null);j&&Object.defineProperty(c,j,{value:"Module"});var a=Promise.resolve().then((function(){return t.instantiate(e,n,o)})).then((function(n){if(!n)throw Error(r(2,e));var o=n[1]((function(t,r){i.h=!0;var e=!1;if("string"==typeof t)t in c&&c[t]===r||(c[t]=r,e=!0);else{for(var n in t)r=t[n],n in c&&c[n]===r||(c[n]=r,e=!0);t&&t.__esModule&&(c.__esModule=t.__esModule)}if(e)for(var o=0;o<u.length;o++){var a=u[o];a&&a(c)}return r}),2===n[1].length?{import:function(r,n){return t.import(r,e,n)},meta:t.createContext(e)}:void 0);return i.e=o.execute||function(){},[n[0],o.setters||[],n[2]||[]]}),(function(t){throw i.e=null,i.er=t,t})),f=a.then((function(r){return Promise.all(r[0].map((function(n,o){var i=r[1][o],u=r[2][o];return Promise.resolve(t.resolve(n,e)).then((function(r){var n=l(t,r,e,u);return Promise.resolve(n.I).then((function(){return i&&(n.i.push(i),!n.h&&n.I||i(n.n)),n}))}))}))).then((function(t){i.d=t}))}));return i=t[T][e]={id:e,i:u,n:c,m:o,I:a,L:f,h:!1,d:void 0,e:void 0,er:void 0,E:void 0,C:void 0,p:void 0}}function h(t,r,e,n){if(!n[r.id])return n[r.id]=!0,Promise.resolve(r.L).then((function(){return r.p&&null!==r.p.e||(r.p=e),Promise.all(r.d.map((function(r){return h(t,r,e,n)})))})).catch((function(t){if(r.er)throw t;throw r.e=null,t}))}function p(t,r){return r.C=h(t,r,r,{}).then((function(){return v(t,r,{})})).then((function(){return r.n}))}function v(t,r,e){function n(){try{var t=i.call(R);if(t)return t=t.then((function(){r.C=r.n,r.E=null}),(function(t){throw r.er=t,r.E=null,t})),r.E=t;r.C=r.n,r.L=r.I=void 0}catch(e){throw r.er=e,e}}if(!e[r.id]){if(e[r.id]=!0,!r.e){if(r.er)throw r.er;return r.E?r.E:void 0}var o,i=r.e;return r.e=null,r.d.forEach((function(n){try{var i=v(t,n,e);i&&(o=o||[]).push(i)}catch(c){throw r.er=c,c}})),o?Promise.all(o).then(n):n()}}function d(){[].forEach.call(document.querySelectorAll("script"),(function(t){if(!t.sp)if("systemjs-module"===t.type){if(t.sp=!0,!t.src)return;System.import("import:"===t.src.slice(0,7)?t.src.slice(7):n(t.src,y)).catch((function(r){if(r.message.indexOf("https://github.com/systemjs/systemjs/blob/main/docs/errors.md#3")>-1){var e=document.createEvent("Event");e.initEvent("error",!1,!1),t.dispatchEvent(e)}return Promise.reject(r)}))}else if("systemjs-importmap"===t.type){t.sp=!0;var e=t.src?(System.fetch||fetch)(t.src,{integrity:t.integrity,priority:t.fetchPriority,passThrough:!0}).then((function(t){if(!t.ok)throw Error(t.status);return t.text()})).catch((function(e){return e.message=r("W4",t.src)+"\n"+e.message,console.warn(e),"function"==typeof t.onerror&&t.onerror(),"{}"})):t.innerHTML;N=N.then((function(){return e})).then((function(e){!function(t,e,n){var o={};try{o=JSON.parse(e)}catch(c){console.warn(Error(r("W5")))}i(o,n,t)}(k,e,t.src||y)}))}}))}var y,g="undefined"!=typeof Symbol,m="undefined"!=typeof self,b="undefined"!=typeof document,w=m?self:t;if(b){var S=document.querySelector("base[href]");S&&(y=S.href)}if(!y&&"undefined"!=typeof location){var E=(y=location.href.split("#")[0].split("?")[0]).lastIndexOf("/");-1!==E&&(y=y.slice(0,E+1))}var O,x=/\\/g,j=g&&Symbol.toStringTag,T=g?Symbol():"@",I=s.prototype;I.import=function(t,r,e){var n=this;return r&&"object"==typeof r&&(e=r,r=void 0),Promise.resolve(n.prepareImport()).then((function(){return n.resolve(t,r,e)})).then((function(t){var r=l(n,t,void 0,e);return r.C||p(n,r)}))},I.createContext=function(t){var r=this;return{url:t,resolve:function(e,n){return Promise.resolve(r.resolve(e,n||t))}}},I.register=function(t,r,e){O=[t,r,e]},I.getRegister=function(){var t=O;return O=void 0,t};var R=Object.freeze(Object.create(null));w.System=new s;var P,A,N=Promise.resolve(),k={imports:{},scopes:{},depcache:{},integrity:{}},C=b;if(I.prepareImport=function(t){return(C||t)&&(d(),C=!1),N},I.getImportMap=function(){return JSON.parse(JSON.stringify(k))},b&&(d(),window.addEventListener("DOMContentLoaded",d)),I.addImportMap=function(t,r){i(t,r||y,k)},b){window.addEventListener("error",(function(t){F=t.filename,_=t.error}));var L=location.origin}I.createScript=function(t){var r=document.createElement("script");r.async=!0,t.indexOf(L+"/")&&(r.crossOrigin="anonymous");var e=k.integrity[t];return e&&(r.integrity=e),r.src=t,r};var F,_,D={},M=I.register;I.register=function(t,r){if(b&&"loading"===document.readyState&&"string"!=typeof t){var e=document.querySelectorAll("script[src]"),n=e[e.length-1];if(n){P=t;var o=this;A=setTimeout((function(){D[n.src]=[t,r],o.import(n.src)}))}}else P=void 0;return M.call(this,t,r)},I.instantiate=function(t,e){var n=D[t];if(n)return delete D[t],n;var o=this;return Promise.resolve(I.createScript(t)).then((function(n){return new Promise((function(i,u){n.addEventListener("error",(function(){u(Error(r(3,[t,e].join(", "))))})),n.addEventListener("load",(function(){if(document.head.removeChild(n),F===t)u(_);else{var r=o.getRegister(t);r&&r[0]===P&&clearTimeout(A),i(r)}})),document.head.appendChild(n)}))}))},I.shouldFetch=function(){return!1},"undefined"!=typeof fetch&&(I.fetch=fetch);var U=I.instantiate,B=/^(text|application)\/(x-)?javascript(;|$)/;I.instantiate=function(t,e,n){var o=this;return this.shouldFetch(t,e,n)?this.fetch(t,{credentials:"same-origin",integrity:k.integrity[t],meta:n}).then((function(n){if(!n.ok)throw Error(r(7,[n.status,n.statusText,t,e].join(", ")));var i=n.headers.get("content-type");if(!i||!B.test(i))throw Error(r(4,i));return n.text().then((function(r){return r.indexOf("//# sourceURL=")<0&&(r+="\n//# sourceURL="+t),(0,eval)(r),o.getRegister(t)}))})):U.apply(this,arguments)},I.resolve=function(t,n){return f(k,e(t,n=n||y)||t,n)||function(t,e){throw Error(r(8,[t,e].join(", ")))}(t,n)};var G=I.instantiate;I.instantiate=function(t,r,e){var n=k.depcache[t];if(n)for(var o=0;o<n.length;o++)l(this,this.resolve(n[o],t),t);return G.call(this,t,r,e)},m&&"function"==typeof importScripts&&(I.instantiate=function(t){var r=this;return Promise.resolve().then((function(){return importScripts(t),r.getRegister(t)}))})}()}();
@charset "UTF-8";.ibiz-grid-page{display:flex}.ibiz-grid-page .ibiz-grid-page-btn{margin-right:10px}.ibiz-grid{--ibiz-grid-text-color: var(--ibiz-text-color);--ibiz-grid-bg-color: var(--ibiz-color-white);--ibiz-grid-padding: 0;--ibiz-grid-cell-padding: calc(var(--ibiz-padding) / 2);--ibiz-grid-header-text-color: var(--ibiz-text-color);--ibiz-grid-header-cell-padding: var(--ibiz-grid-cell-padding);--ibiz-grid-header-height: 45px;--ibiz-grid-content-text-color: var(--ibiz-grid-text-color);--ibiz-grid-content-item-highlight-bg-color: var(--ibiz-color-primary-light-7);--ibiz-grid-content-item-hover-bg-color: var(--ibiz-color-primary-light-7);--ibiz-grid-content-row-height: 48px;--ibiz-grid-page-text-color: var(--ibiz-grid-text-color);--ibiz-grid-page-height: 50px;--ibiz-grid-page-padding: var(--ibiz-padding) 0 0 0;height:100%;padding:var(--ibiz-grid-padding);background-color:var(--ibiz-grid-bg-color)}.ibiz-grid.is-enable-page .ibiz-grid-content{height:calc(100% - var(--ibiz-grid-page-height))}.ibiz-grid .ibiz-grid-content{height:100%}.ibiz-grid .ibiz-grid-content .ivu-table{overflow:hidden}.ibiz-grid .ibiz-grid-content .ivu-table .ivu-table-body{overflow-y:auto}.ibiz-grid .ibiz-grid-content .ivu-table .ivu-table-body .ivu-table-row{height:var(--ibiz-grid-content-row-height)}.ibiz-grid .ibiz-grid-content .ivu-table .ivu-table-body .ivu-table-row.hidden-row{display:none}.ibiz-grid .ibiz-grid-content .ivu-table .ivu-table-body .ivu-table-row>td{height:0}@-moz-document url-prefix(""){.ibiz-grid .ibiz-grid-content .ivu-table .ivu-table-body .ivu-table-row>td{height:100%}}.ibiz-grid .ibiz-grid-content .ivu-table .ivu-table-body>table{color:var(--ibiz-grid-content-text-color)}.ibiz-grid .ibiz-grid-content .ivu-table .ivu-table-body .ivu-table-cell-with-selection{padding:var(--ibiz-grid-cell-padding)}.ibiz-grid .ibiz-grid-content .ivu-table .ivu-table-body .ivu-table-cell.ivu-table-cell-ellipsis{padding-right:0;padding-left:0}.ibiz-grid .ibiz-grid-content .ivu-table .ivu-table-body .ivu-table-cell.ivu-table-cell-ellipsis,.ibiz-grid .ibiz-grid-content .ivu-table .ivu-table-body .ivu-table-cell.ivu-table-cell-ellipsis .ivu-table-cell-slot{width:100%;height:100%}.ibiz-grid .ibiz-grid-content .ivu-table .ivu-table-header{overflow:hidden}.ibiz-grid .ibiz-grid-content .ivu-table .ivu-table-header>table{height:100%;color:var(--ibiz-grid-header-text-color)}.ibiz-grid .ibiz-grid-content .ivu-table .ivu-table-header>table .ivu-table-cell{width:100%;padding:var(--ibiz-grid-header-cell-padding);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ibiz-grid .ibiz-grid-content .ivu-table:before{z-index:auto}.ibiz-grid .ivu-table-fixed-header{overflow:hidden}.ibiz-grid .ivu-table-fixed-header>table{height:100%;color:var(--ibiz-grid-header-text-color)}.ibiz-grid .ivu-table-fixed-header>table .ivu-table-cell{width:100%;padding:var(--ibiz-grid-header-cell-padding);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ibiz-grid .ivu-table-fixed-body .ivu-table-row .ivu-table-cell{padding:0}.ibiz-grid .ivu-table-fixed-body .ivu-table-row.hidden-row{display:none}.ibiz-grid .ibiz-grid-page{height:var(--ibiz-grid-page-height);display:flex;justify-content:flex-end;padding:var(--ibiz-grid-page-padding)}
{
"name": "@ibiz-template-plugin/sy-sjfx-web",
"version": "0.0.1",
"description": "ibiz full-dynamic-vue 模板项目扩展插件示例",
"author": "tony001",
"license": "MIT",
"type": "module",
"main": "dist/ibiz-template-plugin.es.js",
"module": "dist/ibiz-template-plugin.es.js",
"types": "dist/types/index.d.ts",
"system": "dist/index.legacy.js",
"files": [
"dist",
"src",
"CHANGELOG.md",
"README.md"
],
"scripts": {
"dev": "vite build --watch",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"publish:next": "npm run build && npm publish --access public --tag next",
"publish:npm": "npm run build && npm publish --access public",
"publish:local": "npm run build && npm publish --access public --registry=http://172.16.240.221:8081/repository/local/"
},
"dependencies": {
"@ibiz-template/command": "0.0.1-beta.50",
"@ibiz-template/controller": "0.0.1-beta.159",
"@ibiz-template/core": "0.0.1-beta.159",
"@ibiz-template/model": "0.0.1-beta.159",
"@ibiz-template/runtime": "0.0.1-beta.159",
"@ibiz-template/service": "0.0.1-beta.159",
"@ibiz-template/theme": "0.0.1-beta.158",
"@ibiz-template/vue-util": "0.0.1-beta.159",
"async-validator": "^4.2.5",
"axios": "^1.1.3",
"core-js": "3",
"dayjs": "^1.11.6",
"lodash-es": "^4.17.21",
"pluralize": "^8.0.0",
"qs": "^6.11.0",
"qx-util": "^0.4.8",
"ramda": "^0.28.0",
"vue": "^2.7.13",
"vue-router": "^3.6.5"
},
"peerDependencies": {
"@ibiz-template/command": "^0.0.1-beta.50",
"@ibiz-template/controller": "^0.0.1-beta.59",
"@ibiz-template/core": "^0.0.1-beta.57",
"@ibiz-template/model": "^0.0.1-beta.59",
"@ibiz-template/runtime": "^0.0.1-beta.59",
"@ibiz-template/service": "^0.0.1-beta.59",
"@ibiz-template/theme": "^0.0.1-beta.59",
"@ibiz-template/vue-util": "^0.0.1-beta.59",
"async-validator": "^4.2.5",
"axios": "^1.1.3",
"core-js": "3",
"dayjs": "^1.11.6",
"lodash-es": "^4.17.21",
"pluralize": "^8.0.0",
"qs": "^6.11.0",
"qx-util": "^0.4.8",
"ramda": "^0.28.0",
"vue": "^2.7.13",
"vue-router": "^3.6.5"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@qx-chitanda/vite-plugin-lib-legacy": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"@vitejs/plugin-legacy": "^2.3.0",
"@vitejs/plugin-vue2": "^2.2.0",
"@types/lodash-es": "^4.17.7",
"@vitejs/plugin-vue2-jsx": "^1.1.0",
"@types/ramda": "^0.28.20",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.7.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.18",
"prettier": "^2.7.1",
"rollup-plugin-visualizer": "^5.8.3",
"sass": "^1.55.0",
"stylelint": "^14.14.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-config-standard-scss": "^6.0.0",
"stylelint-scss": "^4.3.0",
"terser": "^5.15.1",
"typescript": "^4.8.4",
"vite": "^4.2.1",
"vite-plugin-dts": "^1.6.6",
"vite-plugin-eslint": "^1.8.1",
"vue-eslint-parser": "^9.1.0",
"vue-tsc": "^1.0.9"
},
"lint-staged": {
"*.{ts,vue}": "eslint --fix",
"*.less": "stylelint --syntax=scss"
}
}
\ No newline at end of file
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册