@frollo/frollo-web-ui 8.5.3 → 9.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/index.js +29804 -28762
- package/esm/{_rollupPluginBabelHelpers-DpC_oIQV.js → _rollupPluginBabelHelpers-DODWUb5N.js} +307 -345
- package/esm/fw-accordion.js +59 -56
- package/esm/fw-alert.js +68 -0
- package/esm/fw-bar-chart.js +4 -4
- package/esm/fw-button-CnQvA7oM.js +296 -0
- package/esm/fw-button.js +2 -4
- package/esm/{fw-card-bsYbpPmW.js → fw-card-D45R4kN-.js} +33 -9
- package/esm/fw-card.js +3 -1
- package/esm/fw-checkbox.js +39 -20
- package/esm/fw-date-picker.js +110 -78
- package/esm/fw-drawer.js +119 -83
- package/esm/{fw-dropdown-CbgOvgOt.js → fw-dropdown-58wyuzsW.js} +80 -61
- package/esm/fw-dropdown.js +5 -5
- package/esm/fw-icons.js +34 -0
- package/esm/{fw-image-Dl96Dc27.js → fw-image-D-OHafdw.js} +30 -13
- package/esm/fw-image.js +4 -4
- package/esm/{fw-input-XeI-IKly.js → fw-input-C2-cZ-BY.js} +65 -43
- package/esm/fw-input.js +2 -2
- package/esm/fw-loading-bar-DecYSBC_.js +45 -0
- package/esm/fw-loading.js +34 -15
- package/esm/fw-media-picker.js +43 -31
- package/esm/fw-modal.js +102 -48
- package/esm/fw-navigation-menu.js +180 -52
- package/esm/fw-popover-B4bsfuxm.js +620 -0
- package/esm/fw-popover.js +6 -293
- package/esm/fw-progress-bar.js +3 -2
- package/esm/fw-provider-list.js +58 -34
- package/esm/fw-sidebar-menu.js +22 -13
- package/esm/fw-slider.js +4 -4
- package/esm/fw-switch.js +147 -0
- package/esm/{fw-table-row-BetVCzHJ.js → fw-table-row-C61Bi8KB.js} +59 -59
- package/esm/fw-table.js +8 -7
- package/esm/fw-tabs.js +7 -7
- package/esm/{fw-tag-V0jMl-It.js → fw-tag-FWH6KttB.js} +37 -26
- package/esm/fw-tag.js +4 -6
- package/esm/fw-toast.js +14 -15
- package/esm/fw-transactions-card.js +8 -8
- package/esm/get-root-colours-DCjlYelc.js +62 -0
- package/esm/{index-CzZMBMV_.js → index-BsEH8YYr.js} +433 -130
- package/esm/index.js +76 -68
- package/esm/{uniqueId-DK6xzFd8.js → uniqueId-DZdGzBh8.js} +1 -1
- package/frollo-web-ui.esm.js +30114 -29022
- package/icons/arrow-connect.svg +3 -0
- package/icons/arrow-left.svg +3 -0
- package/icons/arrow-out-square.svg +3 -0
- package/icons/arrow-right.svg +3 -0
- package/icons/circle-exclamation.svg +5 -0
- package/icons/clock.svg +10 -0
- package/icons/default-provider.svg +5 -0
- package/icons/desktop.svg +8 -0
- package/icons/error.svg +3 -0
- package/icons/folder-arrow-down.svg +3 -0
- package/icons/index.ts +35 -3
- package/icons/loading.svg +0 -1
- package/icons/manual-account.svg +3 -0
- package/icons/mobile.svg +3 -0
- package/icons/paper-plane.svg +3 -0
- package/icons/pending.svg +10 -0
- package/icons/success-hill.svg +5 -0
- package/icons/user-plus.svg +3 -0
- package/index.d.ts +807 -571
- package/package.json +23 -29
- package/styles/tailwind.css +52 -0
- package/styles/typography.scss +24 -7
- package/styles/web-components.scss +2 -2
- package/tailwind.config.js +128 -22
- package/types/components/fw-accordion/fw-accordion.vue.d.ts +20 -20
- package/types/components/fw-alert/fw-alert.vue.d.ts +43 -0
- package/types/components/fw-alert/index.d.ts +2 -0
- package/types/components/fw-alert/index.types.d.ts +4 -0
- package/types/components/fw-bar-chart/fw-bar-chart.vue.d.ts +8 -8
- package/types/components/fw-button/fw-button.vue.d.ts +15 -17
- package/types/components/fw-button/index.d.ts +2 -0
- package/types/components/fw-button/index.types.d.ts +1 -3
- package/types/components/fw-card/fw-card.vue.d.ts +3 -2
- package/types/components/fw-checkbox/fw-checkbox.vue.d.ts +8 -5
- package/types/components/fw-date-picker/fw-date-picker.vue.d.ts +14 -19
- package/types/components/fw-date-picker/index.types.d.ts +5 -4
- package/types/components/fw-drawer/fw-drawer.vue.d.ts +26 -10
- package/types/components/fw-drawer/index.types.d.ts +1 -1
- package/types/components/fw-dropdown/fw-dropdown.vue.d.ts +11 -9
- package/types/components/fw-icons/index.d.ts +2 -0
- package/types/components/fw-image/fw-image.vue.d.ts +7 -5
- package/types/components/fw-input/fw-input.vue.d.ts +11 -17
- package/types/components/fw-input/index.types.d.ts +1 -1
- package/types/components/fw-loading/fw-loading-bar.vue.d.ts +5 -2
- package/types/components/fw-loading/fw-loading-dots.vue.d.ts +2 -0
- package/types/components/fw-loading/index.d.ts +2 -1
- package/types/components/fw-modal/fw-modal.vue.d.ts +51 -11
- package/types/components/fw-modal/index.types.d.ts +1 -1
- package/types/components/fw-navigation-menu/fw-navigation-menu.vue.d.ts +77 -6
- package/types/components/fw-navigation-menu/index.types.d.ts +11 -0
- package/types/components/fw-popover/fw-popover.vue.d.ts +10 -5
- package/types/components/fw-provider-list/fw-provider-list.vue.d.ts +8 -5
- package/types/components/fw-sidebar-menu/fw-sidebar-menu.vue.d.ts +20 -3
- package/types/components/fw-sidebar-menu/index.types.d.ts +9 -0
- package/types/components/fw-switch/fw-switch.vue.d.ts +101 -0
- package/types/components/fw-switch/index.d.ts +2 -0
- package/types/components/fw-switch/index.types.d.ts +8 -0
- package/types/components/fw-table/fw-table.vue.d.ts +7 -7
- package/types/components/fw-table/index.types.d.ts +0 -3
- package/types/components/fw-tabs/fw-tabs.vue.d.ts +1 -1
- package/types/components/fw-tabs/index.types.d.ts +1 -1
- package/types/components/fw-tag/fw-tag.vue.d.ts +2 -2
- package/types/components/fw-tag/index.types.d.ts +3 -3
- package/types/components/fw-toast/fw-toast.vue.d.ts +2 -2
- package/types/components/index.d.ts +4 -3
- package/types/components/index.types.d.ts +1 -0
- package/types/helpers/get-root-colours.d.ts +3 -0
- package/types/helpers/index.d.ts +2 -0
- package/types/helpers/vue-component-to-html.d.ts +2 -0
- package/types/icons/index.d.ts +18 -2
- package/types/index-types.esm.d.ts +1 -0
- package/types/index.d.ts +1 -0
- package/types/index.esm.d.ts +1 -0
- package/types/services/toast.d.ts +1 -1
- package/web-components/index.js +30112 -29028
- package/esm/check--YD4Ts6g.js +0 -17
- package/esm/fw-animations.js +0 -123
- package/esm/fw-button-DNozvo7B.js +0 -286
- package/esm/fw-loading-bar-DThRjdw1.js +0 -22
- package/esm/fw-loading-spinner-BFpFFRJm.js +0 -20
- package/esm/fw-period-selector.js +0 -90
- package/esm/get-root-colours-DYEoJPEb.js +0 -37
- package/icons/icons.stories.ts +0 -28
- package/styles/tailwind.scss +0 -68
- package/types/components/fw-animations/fw-email-pulse.vue.d.ts +0 -24
- package/types/components/fw-animations/fw-success-pulse.vue.d.ts +0 -24
- package/types/components/fw-animations/index.d.ts +0 -4
- package/types/components/fw-period-selector/fw-period-selector.vue.d.ts +0 -56
- package/types/components/fw-period-selector/index.d.ts +0 -2
- package/types/components/fw-period-selector/index.types.d.ts +0 -1
- /package/icons/{arrows-rotate.svg → arrow-rotate.svg} +0 -0
- /package/types/components/{fw-animations/fw-loading-spinner.vue.d.ts → fw-icons/fw-success-animation.vue.d.ts} +0 -0
|
@@ -7,7 +7,7 @@ function _applyDecoratedDescriptor(i, e, r, n, l) {
|
|
|
7
7
|
a[i] = n[i];
|
|
8
8
|
}), a.enumerable = !!a.enumerable, a.configurable = !!a.configurable, ("value" in a || a.initializer) && (a.writable = !0), a = r.slice().reverse().reduce(function (r, n) {
|
|
9
9
|
return n(i, e, r) || r;
|
|
10
|
-
}, a), l && void 0 !== a.initializer && (a.value = a.initializer ? a.initializer.call(l) : void 0, a.initializer = void 0), void 0 === a.initializer
|
|
10
|
+
}, a), l && void 0 !== a.initializer && (a.value = a.initializer ? a.initializer.call(l) : void 0, a.initializer = void 0), void 0 === a.initializer ? (Object.defineProperty(i, e, a), null) : a;
|
|
11
11
|
}
|
|
12
12
|
function _applyDecs2311(e, t, n, r, o, i) {
|
|
13
13
|
var a,
|
|
@@ -61,7 +61,7 @@ function _applyDecs2311(e, t, n, r, o, i) {
|
|
|
61
61
|
t[4](this, e);
|
|
62
62
|
}
|
|
63
63
|
} : P[F] = v, l || _setFunctionName(P[F], r, E ? "" : F)) : l || (P = Object.getOwnPropertyDescriptor(e, r)), !l && !f) {
|
|
64
|
-
if ((c = y[+s][r]) && 7
|
|
64
|
+
if ((c = y[+s][r]) && 7 !== (c ^ o)) throw Error("Decorating two elements with the same name (" + P[F].name + ") is not supported yet");
|
|
65
65
|
y[+s][r] = o < 3 ? 1 : o;
|
|
66
66
|
}
|
|
67
67
|
}
|
|
@@ -737,30 +737,25 @@ function _interopRequireDefault(e) {
|
|
|
737
737
|
default: e
|
|
738
738
|
};
|
|
739
739
|
}
|
|
740
|
-
function
|
|
741
|
-
if ("function"
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) {
|
|
760
|
-
var i = a ? Object.getOwnPropertyDescriptor(e, u) : null;
|
|
761
|
-
i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u];
|
|
762
|
-
}
|
|
763
|
-
return n.default = e, t && t.set(e, n), n;
|
|
740
|
+
function _interopRequireWildcard(e, t) {
|
|
741
|
+
if ("function" == typeof WeakMap) var r = new WeakMap(),
|
|
742
|
+
n = new WeakMap();
|
|
743
|
+
return (_interopRequireWildcard = function (e, t) {
|
|
744
|
+
if (!t && e && e.__esModule) return e;
|
|
745
|
+
var o,
|
|
746
|
+
i,
|
|
747
|
+
f = {
|
|
748
|
+
__proto__: null,
|
|
749
|
+
default: e
|
|
750
|
+
};
|
|
751
|
+
if (null === e || "object" != typeof e && "function" != typeof e) return f;
|
|
752
|
+
if (o = t ? n : r) {
|
|
753
|
+
if (o.has(e)) return o.get(e);
|
|
754
|
+
o.set(e, f);
|
|
755
|
+
}
|
|
756
|
+
for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]);
|
|
757
|
+
return f;
|
|
758
|
+
})(e, t);
|
|
764
759
|
}
|
|
765
760
|
function _isNativeFunction(t) {
|
|
766
761
|
try {
|
|
@@ -878,7 +873,7 @@ function _objectWithoutProperties(e, t) {
|
|
|
878
873
|
i = _objectWithoutPropertiesLoose(e, t);
|
|
879
874
|
if (Object.getOwnPropertySymbols) {
|
|
880
875
|
var n = Object.getOwnPropertySymbols(e);
|
|
881
|
-
for (r = 0; r < n.length; r++) o = n[r], t.indexOf(o)
|
|
876
|
+
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
|
|
882
877
|
}
|
|
883
878
|
return i;
|
|
884
879
|
}
|
|
@@ -886,7 +881,7 @@ function _objectWithoutPropertiesLoose(r, e) {
|
|
|
886
881
|
if (null == r) return {};
|
|
887
882
|
var t = {};
|
|
888
883
|
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
|
|
889
|
-
if (e.indexOf(n)
|
|
884
|
+
if (-1 !== e.indexOf(n)) continue;
|
|
890
885
|
t[n] = r[n];
|
|
891
886
|
}
|
|
892
887
|
return t;
|
|
@@ -899,307 +894,178 @@ function _possibleConstructorReturn(t, e) {
|
|
|
899
894
|
function _readOnlyError(r) {
|
|
900
895
|
throw new TypeError('"' + r + '" is read-only');
|
|
901
896
|
}
|
|
902
|
-
function
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
897
|
+
function _regenerator() {
|
|
898
|
+
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */
|
|
899
|
+
var e,
|
|
900
|
+
t,
|
|
901
|
+
r = "function" == typeof Symbol ? Symbol : {},
|
|
902
|
+
n = r.iterator || "@@iterator",
|
|
903
|
+
o = r.toStringTag || "@@toStringTag";
|
|
904
|
+
function i(r, n, o, i) {
|
|
905
|
+
var c = n && n.prototype instanceof Generator ? n : Generator,
|
|
906
|
+
u = Object.create(c.prototype);
|
|
907
|
+
return _regeneratorDefine(u, "_invoke", function (r, n, o) {
|
|
908
|
+
var i,
|
|
909
|
+
c,
|
|
910
|
+
u,
|
|
911
|
+
f = 0,
|
|
912
|
+
p = o || [],
|
|
913
|
+
y = !1,
|
|
914
|
+
G = {
|
|
915
|
+
p: 0,
|
|
916
|
+
n: 0,
|
|
917
|
+
v: e,
|
|
918
|
+
a: d,
|
|
919
|
+
f: d.bind(e, 4),
|
|
920
|
+
d: function (t, r) {
|
|
921
|
+
return i = t, c = 0, u = e, G.n = r, a;
|
|
922
|
+
}
|
|
923
|
+
};
|
|
924
|
+
function d(r, n) {
|
|
925
|
+
for (c = r, u = n, t = 0; !y && f && !o && t < p.length; t++) {
|
|
926
|
+
var o,
|
|
927
|
+
i = p[t],
|
|
928
|
+
d = G.p,
|
|
929
|
+
l = i[2];
|
|
930
|
+
r > 3 ? (o = l === n) && (u = i[(c = i[4]) ? 5 : (c = 3, 3)], i[4] = i[5] = e) : i[0] <= d && ((o = r < 2 && d < i[1]) ? (c = 0, G.v = n, G.n = i[1]) : d < l && (o = r < 3 || i[0] > n || n > l) && (i[4] = r, i[5] = n, G.n = l, c = 0));
|
|
931
|
+
}
|
|
932
|
+
if (o || r > 1) return a;
|
|
933
|
+
throw y = !0, n;
|
|
934
|
+
}
|
|
935
|
+
return function (o, p, l) {
|
|
936
|
+
if (f > 1) throw TypeError("Generator is already running");
|
|
937
|
+
for (y && 1 === p && d(p, l), c = p, u = l; (t = c < 2 ? e : u) || !y;) {
|
|
938
|
+
i || (c ? c < 3 ? (c > 1 && (G.n = -1), d(c, u)) : G.n = u : G.v = u);
|
|
939
|
+
try {
|
|
940
|
+
if (f = 2, i) {
|
|
941
|
+
if (c || (o = "next"), t = i[o]) {
|
|
942
|
+
if (!(t = t.call(i, u))) throw TypeError("iterator result is not an object");
|
|
943
|
+
if (!t.done) return t;
|
|
944
|
+
u = t.value, c < 2 && (c = 0);
|
|
945
|
+
} else 1 === c && (t = i.return) && t.call(i), c < 2 && (u = TypeError("The iterator does not provide a '" + o + "' method"), c = 1);
|
|
946
|
+
i = e;
|
|
947
|
+
} else if ((t = (y = G.n < 0) ? u : r.call(n, G)) !== a) break;
|
|
948
|
+
} catch (t) {
|
|
949
|
+
i = e, c = 1, u = t;
|
|
950
|
+
} finally {
|
|
951
|
+
f = 1;
|
|
952
|
+
}
|
|
953
|
+
}
|
|
954
|
+
return {
|
|
955
|
+
value: t,
|
|
956
|
+
done: y
|
|
957
|
+
};
|
|
951
958
|
};
|
|
952
|
-
}
|
|
959
|
+
}(r, o, i), !0), u;
|
|
953
960
|
}
|
|
954
|
-
|
|
955
|
-
var h = "suspendedStart",
|
|
956
|
-
l = "suspendedYield",
|
|
957
|
-
f = "executing",
|
|
958
|
-
s = "completed",
|
|
959
|
-
y = {};
|
|
961
|
+
var a = {};
|
|
960
962
|
function Generator() {}
|
|
961
963
|
function GeneratorFunction() {}
|
|
962
964
|
function GeneratorFunctionPrototype() {}
|
|
963
|
-
|
|
964
|
-
|
|
965
|
+
t = Object.getPrototypeOf;
|
|
966
|
+
var c = [][n] ? t(t([][n]())) : (_regeneratorDefine(t = {}, n, function () {
|
|
967
|
+
return this;
|
|
968
|
+
}), t),
|
|
969
|
+
u = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(c);
|
|
970
|
+
function f(e) {
|
|
971
|
+
return Object.setPrototypeOf ? Object.setPrototypeOf(e, GeneratorFunctionPrototype) : (e.__proto__ = GeneratorFunctionPrototype, _regeneratorDefine(e, o, "GeneratorFunction")), e.prototype = Object.create(u), e;
|
|
972
|
+
}
|
|
973
|
+
return GeneratorFunction.prototype = GeneratorFunctionPrototype, _regeneratorDefine(u, "constructor", GeneratorFunctionPrototype), _regeneratorDefine(GeneratorFunctionPrototype, "constructor", GeneratorFunction), GeneratorFunction.displayName = "GeneratorFunction", _regeneratorDefine(GeneratorFunctionPrototype, o, "GeneratorFunction"), _regeneratorDefine(u), _regeneratorDefine(u, o, "Generator"), _regeneratorDefine(u, n, function () {
|
|
965
974
|
return this;
|
|
975
|
+
}), _regeneratorDefine(u, "toString", function () {
|
|
976
|
+
return "[object Generator]";
|
|
977
|
+
}), (_regenerator = function () {
|
|
978
|
+
return {
|
|
979
|
+
w: i,
|
|
980
|
+
m: f
|
|
981
|
+
};
|
|
982
|
+
})();
|
|
983
|
+
}
|
|
984
|
+
function _regeneratorAsync(n, e, r, t, o) {
|
|
985
|
+
var a = _regeneratorAsyncGen(n, e, r, t, o);
|
|
986
|
+
return a.next().then(function (n) {
|
|
987
|
+
return n.done ? n.value : a.next();
|
|
966
988
|
});
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
989
|
+
}
|
|
990
|
+
function _regeneratorAsyncGen(r, e, t, o, n) {
|
|
991
|
+
return new _regeneratorAsyncIterator(_regenerator().w(r, e, t, o), n || Promise);
|
|
992
|
+
}
|
|
993
|
+
function _regeneratorAsyncIterator(t, e) {
|
|
994
|
+
function n(r, o, i, f) {
|
|
995
|
+
try {
|
|
996
|
+
var c = t[r](o),
|
|
997
|
+
u = c.value;
|
|
998
|
+
return u instanceof _OverloadYield ? e.resolve(u.v).then(function (t) {
|
|
999
|
+
n("next", t, i, f);
|
|
1000
|
+
}, function (t) {
|
|
1001
|
+
n("throw", t, i, f);
|
|
1002
|
+
}) : e.resolve(u).then(function (t) {
|
|
1003
|
+
c.value = t, i(c);
|
|
1004
|
+
}, function (t) {
|
|
1005
|
+
return n("throw", t, i, f);
|
|
975
1006
|
});
|
|
976
|
-
})
|
|
977
|
-
|
|
978
|
-
function AsyncIterator(t, e) {
|
|
979
|
-
function invoke(r, o, i, a) {
|
|
980
|
-
var c = tryCatch(t[r], t, o);
|
|
981
|
-
if ("throw" !== c.type) {
|
|
982
|
-
var u = c.arg,
|
|
983
|
-
h = u.value;
|
|
984
|
-
return h && "object" == typeof h && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) {
|
|
985
|
-
invoke("next", t, i, a);
|
|
986
|
-
}, function (t) {
|
|
987
|
-
invoke("throw", t, i, a);
|
|
988
|
-
}) : e.resolve(h).then(function (t) {
|
|
989
|
-
u.value = t, i(u);
|
|
990
|
-
}, function (t) {
|
|
991
|
-
return invoke("throw", t, i, a);
|
|
992
|
-
});
|
|
993
|
-
}
|
|
994
|
-
a(c.arg);
|
|
1007
|
+
} catch (t) {
|
|
1008
|
+
f(t);
|
|
995
1009
|
}
|
|
996
|
-
var r;
|
|
997
|
-
o(this, "_invoke", {
|
|
998
|
-
value: function (t, n) {
|
|
999
|
-
function callInvokeWithMethodAndArg() {
|
|
1000
|
-
return new e(function (e, r) {
|
|
1001
|
-
invoke(t, n, e, r);
|
|
1002
|
-
});
|
|
1003
|
-
}
|
|
1004
|
-
return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg();
|
|
1005
|
-
}
|
|
1006
|
-
});
|
|
1007
1010
|
}
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
return
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1011
|
+
var r;
|
|
1012
|
+
this.next || (_regeneratorDefine(_regeneratorAsyncIterator.prototype), _regeneratorDefine(_regeneratorAsyncIterator.prototype, "function" == typeof Symbol && Symbol.asyncIterator || "@asyncIterator", function () {
|
|
1013
|
+
return this;
|
|
1014
|
+
})), _regeneratorDefine(this, "_invoke", function (t, o, i) {
|
|
1015
|
+
function f() {
|
|
1016
|
+
return new e(function (e, r) {
|
|
1017
|
+
n(t, i, e, r);
|
|
1018
|
+
});
|
|
1019
|
+
}
|
|
1020
|
+
return r = r ? r.then(f, f) : f();
|
|
1021
|
+
}, !0);
|
|
1022
|
+
}
|
|
1023
|
+
function _regeneratorDefine(e, r, n, t) {
|
|
1024
|
+
var i = Object.defineProperty;
|
|
1025
|
+
try {
|
|
1026
|
+
i({}, "", {});
|
|
1027
|
+
} catch (e) {
|
|
1028
|
+
i = 0;
|
|
1029
|
+
}
|
|
1030
|
+
_regeneratorDefine = function (e, r, n, t) {
|
|
1031
|
+
function o(r, n) {
|
|
1032
|
+
_regeneratorDefine(e, r, function (e) {
|
|
1033
|
+
return this._invoke(r, n, e);
|
|
1034
|
+
});
|
|
1035
|
+
}
|
|
1036
|
+
r ? i ? i(e, r, {
|
|
1037
|
+
value: n,
|
|
1038
|
+
enumerable: !t,
|
|
1039
|
+
configurable: !t,
|
|
1040
|
+
writable: !t
|
|
1041
|
+
}) : e[r] = n : (o("next", 0), o("throw", 1), o("return", 2));
|
|
1042
|
+
}, _regeneratorDefine(e, r, n, t);
|
|
1043
|
+
}
|
|
1044
|
+
function _regeneratorKeys(e) {
|
|
1045
|
+
var n = Object(e),
|
|
1046
|
+
r = [];
|
|
1047
|
+
for (var t in n) r.unshift(t);
|
|
1048
|
+
return function e() {
|
|
1049
|
+
for (; r.length;) if ((t = r.pop()) in n) return e.value = t, e.done = !1, e;
|
|
1050
|
+
return e.done = !0, e;
|
|
1051
|
+
};
|
|
1052
|
+
}
|
|
1053
|
+
function _regeneratorValues(e) {
|
|
1054
|
+
if (null != e) {
|
|
1055
|
+
var t = e["function" == typeof Symbol && Symbol.iterator || "@@iterator"],
|
|
1056
|
+
r = 0;
|
|
1057
|
+
if (t) return t.call(e);
|
|
1058
|
+
if ("function" == typeof e.next) return e;
|
|
1059
|
+
if (!isNaN(e.length)) return {
|
|
1060
|
+
next: function () {
|
|
1061
|
+
return e && r >= e.length && (e = void 0), {
|
|
1062
|
+
value: e && e[r++],
|
|
1063
|
+
done: !e
|
|
1017
1064
|
};
|
|
1018
1065
|
}
|
|
1019
|
-
for (n.method = i, n.arg = a;;) {
|
|
1020
|
-
var c = n.delegate;
|
|
1021
|
-
if (c) {
|
|
1022
|
-
var u = maybeInvokeDelegate(c, n);
|
|
1023
|
-
if (u) {
|
|
1024
|
-
if (u === y) continue;
|
|
1025
|
-
return u;
|
|
1026
|
-
}
|
|
1027
|
-
}
|
|
1028
|
-
if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) {
|
|
1029
|
-
if (o === h) throw o = s, n.arg;
|
|
1030
|
-
n.dispatchException(n.arg);
|
|
1031
|
-
} else "return" === n.method && n.abrupt("return", n.arg);
|
|
1032
|
-
o = f;
|
|
1033
|
-
var p = tryCatch(e, r, n);
|
|
1034
|
-
if ("normal" === p.type) {
|
|
1035
|
-
if (o = n.done ? s : l, p.arg === y) continue;
|
|
1036
|
-
return {
|
|
1037
|
-
value: p.arg,
|
|
1038
|
-
done: n.done
|
|
1039
|
-
};
|
|
1040
|
-
}
|
|
1041
|
-
"throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg);
|
|
1042
|
-
}
|
|
1043
1066
|
};
|
|
1044
1067
|
}
|
|
1045
|
-
|
|
1046
|
-
var n = r.method,
|
|
1047
|
-
o = e.iterator[n];
|
|
1048
|
-
if (o === t) return r.delegate = null, "throw" === n && e.iterator.return && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y;
|
|
1049
|
-
var i = tryCatch(o, e.iterator, r.arg);
|
|
1050
|
-
if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y;
|
|
1051
|
-
var a = i.arg;
|
|
1052
|
-
return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y);
|
|
1053
|
-
}
|
|
1054
|
-
function pushTryEntry(t) {
|
|
1055
|
-
var e = {
|
|
1056
|
-
tryLoc: t[0]
|
|
1057
|
-
};
|
|
1058
|
-
1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e);
|
|
1059
|
-
}
|
|
1060
|
-
function resetTryEntry(t) {
|
|
1061
|
-
var e = t.completion || {};
|
|
1062
|
-
e.type = "normal", delete e.arg, t.completion = e;
|
|
1063
|
-
}
|
|
1064
|
-
function Context(t) {
|
|
1065
|
-
this.tryEntries = [{
|
|
1066
|
-
tryLoc: "root"
|
|
1067
|
-
}], t.forEach(pushTryEntry, this), this.reset(!0);
|
|
1068
|
-
}
|
|
1069
|
-
function values(e) {
|
|
1070
|
-
if (e || "" === e) {
|
|
1071
|
-
var r = e[a];
|
|
1072
|
-
if (r) return r.call(e);
|
|
1073
|
-
if ("function" == typeof e.next) return e;
|
|
1074
|
-
if (!isNaN(e.length)) {
|
|
1075
|
-
var o = -1,
|
|
1076
|
-
i = function next() {
|
|
1077
|
-
for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next;
|
|
1078
|
-
return next.value = t, next.done = !0, next;
|
|
1079
|
-
};
|
|
1080
|
-
return i.next = i;
|
|
1081
|
-
}
|
|
1082
|
-
}
|
|
1083
|
-
throw new TypeError(typeof e + " is not iterable");
|
|
1084
|
-
}
|
|
1085
|
-
return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", {
|
|
1086
|
-
value: GeneratorFunctionPrototype,
|
|
1087
|
-
configurable: !0
|
|
1088
|
-
}), o(GeneratorFunctionPrototype, "constructor", {
|
|
1089
|
-
value: GeneratorFunction,
|
|
1090
|
-
configurable: !0
|
|
1091
|
-
}), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) {
|
|
1092
|
-
var e = "function" == typeof t && t.constructor;
|
|
1093
|
-
return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name));
|
|
1094
|
-
}, e.mark = function (t) {
|
|
1095
|
-
return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t;
|
|
1096
|
-
}, e.awrap = function (t) {
|
|
1097
|
-
return {
|
|
1098
|
-
__await: t
|
|
1099
|
-
};
|
|
1100
|
-
}, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () {
|
|
1101
|
-
return this;
|
|
1102
|
-
}), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) {
|
|
1103
|
-
void 0 === i && (i = Promise);
|
|
1104
|
-
var a = new AsyncIterator(wrap(t, r, n, o), i);
|
|
1105
|
-
return e.isGeneratorFunction(r) ? a : a.next().then(function (t) {
|
|
1106
|
-
return t.done ? t.value : a.next();
|
|
1107
|
-
});
|
|
1108
|
-
}, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () {
|
|
1109
|
-
return this;
|
|
1110
|
-
}), define(g, "toString", function () {
|
|
1111
|
-
return "[object Generator]";
|
|
1112
|
-
}), e.keys = function (t) {
|
|
1113
|
-
var e = Object(t),
|
|
1114
|
-
r = [];
|
|
1115
|
-
for (var n in e) r.push(n);
|
|
1116
|
-
return r.reverse(), function next() {
|
|
1117
|
-
for (; r.length;) {
|
|
1118
|
-
var t = r.pop();
|
|
1119
|
-
if (t in e) return next.value = t, next.done = !1, next;
|
|
1120
|
-
}
|
|
1121
|
-
return next.done = !0, next;
|
|
1122
|
-
};
|
|
1123
|
-
}, e.values = values, Context.prototype = {
|
|
1124
|
-
constructor: Context,
|
|
1125
|
-
reset: function (e) {
|
|
1126
|
-
if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t);
|
|
1127
|
-
},
|
|
1128
|
-
stop: function () {
|
|
1129
|
-
this.done = !0;
|
|
1130
|
-
var t = this.tryEntries[0].completion;
|
|
1131
|
-
if ("throw" === t.type) throw t.arg;
|
|
1132
|
-
return this.rval;
|
|
1133
|
-
},
|
|
1134
|
-
dispatchException: function (e) {
|
|
1135
|
-
if (this.done) throw e;
|
|
1136
|
-
var r = this;
|
|
1137
|
-
function handle(n, o) {
|
|
1138
|
-
return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o;
|
|
1139
|
-
}
|
|
1140
|
-
for (var o = this.tryEntries.length - 1; o >= 0; --o) {
|
|
1141
|
-
var i = this.tryEntries[o],
|
|
1142
|
-
a = i.completion;
|
|
1143
|
-
if ("root" === i.tryLoc) return handle("end");
|
|
1144
|
-
if (i.tryLoc <= this.prev) {
|
|
1145
|
-
var c = n.call(i, "catchLoc"),
|
|
1146
|
-
u = n.call(i, "finallyLoc");
|
|
1147
|
-
if (c && u) {
|
|
1148
|
-
if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
|
|
1149
|
-
if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
|
|
1150
|
-
} else if (c) {
|
|
1151
|
-
if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
|
|
1152
|
-
} else {
|
|
1153
|
-
if (!u) throw Error("try statement without catch or finally");
|
|
1154
|
-
if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
|
|
1155
|
-
}
|
|
1156
|
-
}
|
|
1157
|
-
}
|
|
1158
|
-
},
|
|
1159
|
-
abrupt: function (t, e) {
|
|
1160
|
-
for (var r = this.tryEntries.length - 1; r >= 0; --r) {
|
|
1161
|
-
var o = this.tryEntries[r];
|
|
1162
|
-
if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) {
|
|
1163
|
-
var i = o;
|
|
1164
|
-
break;
|
|
1165
|
-
}
|
|
1166
|
-
}
|
|
1167
|
-
i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null);
|
|
1168
|
-
var a = i ? i.completion : {};
|
|
1169
|
-
return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a);
|
|
1170
|
-
},
|
|
1171
|
-
complete: function (t, e) {
|
|
1172
|
-
if ("throw" === t.type) throw t.arg;
|
|
1173
|
-
return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y;
|
|
1174
|
-
},
|
|
1175
|
-
finish: function (t) {
|
|
1176
|
-
for (var e = this.tryEntries.length - 1; e >= 0; --e) {
|
|
1177
|
-
var r = this.tryEntries[e];
|
|
1178
|
-
if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y;
|
|
1179
|
-
}
|
|
1180
|
-
},
|
|
1181
|
-
catch: function (t) {
|
|
1182
|
-
for (var e = this.tryEntries.length - 1; e >= 0; --e) {
|
|
1183
|
-
var r = this.tryEntries[e];
|
|
1184
|
-
if (r.tryLoc === t) {
|
|
1185
|
-
var n = r.completion;
|
|
1186
|
-
if ("throw" === n.type) {
|
|
1187
|
-
var o = n.arg;
|
|
1188
|
-
resetTryEntry(r);
|
|
1189
|
-
}
|
|
1190
|
-
return o;
|
|
1191
|
-
}
|
|
1192
|
-
}
|
|
1193
|
-
throw Error("illegal catch attempt");
|
|
1194
|
-
},
|
|
1195
|
-
delegateYield: function (e, r, n) {
|
|
1196
|
-
return this.delegate = {
|
|
1197
|
-
iterator: values(e),
|
|
1198
|
-
resultName: r,
|
|
1199
|
-
nextLoc: n
|
|
1200
|
-
}, "next" === this.method && (this.arg = t), y;
|
|
1201
|
-
}
|
|
1202
|
-
}, e;
|
|
1068
|
+
throw new TypeError(typeof e + " is not iterable");
|
|
1203
1069
|
}
|
|
1204
1070
|
function set(e, r, t, o) {
|
|
1205
1071
|
return set = "undefined" != typeof Reflect && Reflect.set ? Reflect.set : function (e, r, t, o) {
|
|
@@ -1248,6 +1114,15 @@ function _superPropBase(t, o) {
|
|
|
1248
1114
|
for (; !{}.hasOwnProperty.call(t, o) && null !== (t = _getPrototypeOf(t)););
|
|
1249
1115
|
return t;
|
|
1250
1116
|
}
|
|
1117
|
+
function _superPropGet(t, o, e, r) {
|
|
1118
|
+
var p = _get(_getPrototypeOf(1 & r ? t.prototype : t), o, e);
|
|
1119
|
+
return 2 & r && "function" == typeof p ? function (t) {
|
|
1120
|
+
return p.apply(e, t);
|
|
1121
|
+
} : p;
|
|
1122
|
+
}
|
|
1123
|
+
function _superPropSet(t, e, o, r, p, f) {
|
|
1124
|
+
return _set(_getPrototypeOf(f ? t.prototype : t), e, o, r, p);
|
|
1125
|
+
}
|
|
1251
1126
|
function _taggedTemplateLiteral(e, t) {
|
|
1252
1127
|
return t || (t = e.slice(0)), Object.freeze(Object.defineProperties(e, {
|
|
1253
1128
|
raw: {
|
|
@@ -1294,6 +1169,11 @@ function _toSetter(t, e, n) {
|
|
|
1294
1169
|
}
|
|
1295
1170
|
});
|
|
1296
1171
|
}
|
|
1172
|
+
function _tsRewriteRelativeImportExtensions(t, e) {
|
|
1173
|
+
return "string" == typeof t && /^\.\.?\//.test(t) ? t.replace(/\.(tsx)$|((?:\.d)?)((?:\.[^./]+)?)\.([cm]?)ts$/i, function (t, s, r, n, o) {
|
|
1174
|
+
return s ? e ? ".jsx" : ".js" : !r || n && o ? r + n + "." + o.toLowerCase() + "js" : t;
|
|
1175
|
+
}) : t;
|
|
1176
|
+
}
|
|
1297
1177
|
function _typeof(o) {
|
|
1298
1178
|
"@babel/helpers - typeof";
|
|
1299
1179
|
|
|
@@ -1311,46 +1191,58 @@ function _unsupportedIterableToArray(r, a) {
|
|
|
1311
1191
|
}
|
|
1312
1192
|
}
|
|
1313
1193
|
function _usingCtx() {
|
|
1314
|
-
var r = "function" == typeof SuppressedError ? SuppressedError : function (r,
|
|
1315
|
-
var
|
|
1316
|
-
return
|
|
1194
|
+
var r = "function" == typeof SuppressedError ? SuppressedError : function (r, e) {
|
|
1195
|
+
var n = Error();
|
|
1196
|
+
return n.name = "SuppressedError", n.error = r, n.suppressed = e, n;
|
|
1317
1197
|
},
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
function using(r,
|
|
1321
|
-
if (null !=
|
|
1322
|
-
if (Object(
|
|
1323
|
-
if (r) var o =
|
|
1324
|
-
if (
|
|
1325
|
-
|
|
1326
|
-
|
|
1198
|
+
e = {},
|
|
1199
|
+
n = [];
|
|
1200
|
+
function using(r, e) {
|
|
1201
|
+
if (null != e) {
|
|
1202
|
+
if (Object(e) !== e) throw new TypeError("using declarations can only be used with objects, functions, null, or undefined.");
|
|
1203
|
+
if (r) var o = e[Symbol.asyncDispose || Symbol.for("Symbol.asyncDispose")];
|
|
1204
|
+
if (void 0 === o && (o = e[Symbol.dispose || Symbol.for("Symbol.dispose")], r)) var t = o;
|
|
1205
|
+
if ("function" != typeof o) throw new TypeError("Object is not disposable.");
|
|
1206
|
+
t && (o = function () {
|
|
1207
|
+
try {
|
|
1208
|
+
t.call(e);
|
|
1209
|
+
} catch (r) {
|
|
1210
|
+
return Promise.reject(r);
|
|
1211
|
+
}
|
|
1212
|
+
}), n.push({
|
|
1213
|
+
v: e,
|
|
1327
1214
|
d: o,
|
|
1328
1215
|
a: r
|
|
1329
1216
|
});
|
|
1330
|
-
} else r &&
|
|
1331
|
-
d:
|
|
1217
|
+
} else r && n.push({
|
|
1218
|
+
d: e,
|
|
1332
1219
|
a: r
|
|
1333
1220
|
});
|
|
1334
|
-
return
|
|
1221
|
+
return e;
|
|
1335
1222
|
}
|
|
1336
1223
|
return {
|
|
1337
|
-
e:
|
|
1224
|
+
e: e,
|
|
1338
1225
|
u: using.bind(null, !1),
|
|
1339
1226
|
a: using.bind(null, !0),
|
|
1340
1227
|
d: function () {
|
|
1341
|
-
var o
|
|
1228
|
+
var o,
|
|
1229
|
+
t = this.e,
|
|
1230
|
+
s = 0;
|
|
1342
1231
|
function next() {
|
|
1343
|
-
for (;
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1232
|
+
for (; o = n.pop();) try {
|
|
1233
|
+
if (!o.a && 1 === s) return s = 0, n.push(o), Promise.resolve().then(next);
|
|
1234
|
+
if (o.d) {
|
|
1235
|
+
var r = o.d.call(o.v);
|
|
1236
|
+
if (o.a) return s |= 2, Promise.resolve(r).then(next, err);
|
|
1237
|
+
} else s |= 1;
|
|
1347
1238
|
} catch (r) {
|
|
1348
1239
|
return err(r);
|
|
1349
1240
|
}
|
|
1350
|
-
if (
|
|
1241
|
+
if (1 === s) return t !== e ? Promise.reject(t) : Promise.resolve();
|
|
1242
|
+
if (t !== e) throw t;
|
|
1351
1243
|
}
|
|
1352
|
-
function err(
|
|
1353
|
-
return
|
|
1244
|
+
function err(n) {
|
|
1245
|
+
return t = t !== e ? new r(n, t) : n, next();
|
|
1354
1246
|
}
|
|
1355
1247
|
return next();
|
|
1356
1248
|
}
|
|
@@ -1477,9 +1369,10 @@ function _wrapRegExp() {
|
|
|
1477
1369
|
}, BabelRegExp.prototype[Symbol.replace] = function (t, p) {
|
|
1478
1370
|
if ("string" == typeof p) {
|
|
1479
1371
|
var o = r.get(this);
|
|
1480
|
-
return e[Symbol.replace].call(this, t, p.replace(/\$<([^>]+)
|
|
1481
|
-
|
|
1482
|
-
|
|
1372
|
+
return e[Symbol.replace].call(this, t, p.replace(/\$<([^>]+)(>|$)/g, function (e, r, t) {
|
|
1373
|
+
if ("" === t) return e;
|
|
1374
|
+
var p = o[r];
|
|
1375
|
+
return Array.isArray(p) ? "$" + p.join("$") : "number" == typeof p ? "$" + p : "";
|
|
1483
1376
|
}));
|
|
1484
1377
|
}
|
|
1485
1378
|
if ("function" == typeof p) {
|
|
@@ -1733,7 +1626,7 @@ function _applyDecs(e, t, a) {
|
|
|
1733
1626
|
function applyDecs2203Factory() {
|
|
1734
1627
|
function createAddInitializerMethod(e, t) {
|
|
1735
1628
|
return function (r) {
|
|
1736
|
-
!function (e
|
|
1629
|
+
!function (e) {
|
|
1737
1630
|
if (e.v) throw Error("attempted to call addInitializer after decoration was finished");
|
|
1738
1631
|
}(t), assertCallable(r, "An initializer"), e.push(r);
|
|
1739
1632
|
};
|
|
@@ -1915,7 +1808,7 @@ function _applyDecs2203(e, t, r) {
|
|
|
1915
1808
|
function applyDecs2203RFactory() {
|
|
1916
1809
|
function createAddInitializerMethod(e, t) {
|
|
1917
1810
|
return function (r) {
|
|
1918
|
-
!function (e
|
|
1811
|
+
!function (e) {
|
|
1919
1812
|
if (e.v) throw Error("attempted to call addInitializer after decoration was finished");
|
|
1920
1813
|
}(t), assertCallable(r, "An initializer"), e.push(r);
|
|
1921
1814
|
};
|
|
@@ -2102,7 +1995,7 @@ function _applyDecs2203R(e, t, r) {
|
|
|
2102
1995
|
function applyDecs2301Factory() {
|
|
2103
1996
|
function createAddInitializerMethod(e, t) {
|
|
2104
1997
|
return function (r) {
|
|
2105
|
-
!function (e
|
|
1998
|
+
!function (e) {
|
|
2106
1999
|
if (e.v) throw Error("attempted to call addInitializer after decoration was finished");
|
|
2107
2000
|
}(t), assertCallable(r, "An initializer"), e.push(r);
|
|
2108
2001
|
};
|
|
@@ -2551,6 +2444,75 @@ function _objectSpread(e) {
|
|
|
2551
2444
|
}
|
|
2552
2445
|
return e;
|
|
2553
2446
|
}
|
|
2447
|
+
function _regeneratorRuntime() {
|
|
2448
|
+
"use strict";
|
|
2449
|
+
|
|
2450
|
+
var r = _regenerator(),
|
|
2451
|
+
e = r.m(_regeneratorRuntime),
|
|
2452
|
+
t = (Object.getPrototypeOf ? Object.getPrototypeOf(e) : e.__proto__).constructor;
|
|
2453
|
+
function n(r) {
|
|
2454
|
+
var e = "function" == typeof r && r.constructor;
|
|
2455
|
+
return !!e && (e === t || "GeneratorFunction" === (e.displayName || e.name));
|
|
2456
|
+
}
|
|
2457
|
+
var o = {
|
|
2458
|
+
throw: 1,
|
|
2459
|
+
return: 2,
|
|
2460
|
+
break: 3,
|
|
2461
|
+
continue: 3
|
|
2462
|
+
};
|
|
2463
|
+
function a(r) {
|
|
2464
|
+
var e, t;
|
|
2465
|
+
return function (n) {
|
|
2466
|
+
e || (e = {
|
|
2467
|
+
stop: function () {
|
|
2468
|
+
return t(n.a, 2);
|
|
2469
|
+
},
|
|
2470
|
+
catch: function () {
|
|
2471
|
+
return n.v;
|
|
2472
|
+
},
|
|
2473
|
+
abrupt: function (r, e) {
|
|
2474
|
+
return t(n.a, o[r], e);
|
|
2475
|
+
},
|
|
2476
|
+
delegateYield: function (r, o, a) {
|
|
2477
|
+
return e.resultName = o, t(n.d, _regeneratorValues(r), a);
|
|
2478
|
+
},
|
|
2479
|
+
finish: function (r) {
|
|
2480
|
+
return t(n.f, r);
|
|
2481
|
+
}
|
|
2482
|
+
}, t = function (r, t, o) {
|
|
2483
|
+
n.p = e.prev, n.n = e.next;
|
|
2484
|
+
try {
|
|
2485
|
+
return r(t, o);
|
|
2486
|
+
} finally {
|
|
2487
|
+
e.next = n.n;
|
|
2488
|
+
}
|
|
2489
|
+
}), e.resultName && (e[e.resultName] = n.v, e.resultName = void 0), e.sent = n.v, e.next = n.n;
|
|
2490
|
+
try {
|
|
2491
|
+
return r.call(this, e);
|
|
2492
|
+
} finally {
|
|
2493
|
+
n.p = e.prev, n.n = e.next;
|
|
2494
|
+
}
|
|
2495
|
+
};
|
|
2496
|
+
}
|
|
2497
|
+
return (_regeneratorRuntime = function () {
|
|
2498
|
+
return {
|
|
2499
|
+
wrap: function (e, t, n, o) {
|
|
2500
|
+
return r.w(a(e), t, n, o && o.reverse());
|
|
2501
|
+
},
|
|
2502
|
+
isGeneratorFunction: n,
|
|
2503
|
+
mark: r.m,
|
|
2504
|
+
awrap: function (r, e) {
|
|
2505
|
+
return new _OverloadYield(r, e);
|
|
2506
|
+
},
|
|
2507
|
+
AsyncIterator: _regeneratorAsyncIterator,
|
|
2508
|
+
async: function (r, e, t, o, u) {
|
|
2509
|
+
return (n(e) ? _regeneratorAsyncGen : _regeneratorAsync)(a(r), e, t, o, u);
|
|
2510
|
+
},
|
|
2511
|
+
keys: _regeneratorKeys,
|
|
2512
|
+
values: _regeneratorValues
|
|
2513
|
+
};
|
|
2514
|
+
})();
|
|
2515
|
+
}
|
|
2554
2516
|
function _using(o, n, e) {
|
|
2555
2517
|
if (null == n) return n;
|
|
2556
2518
|
if (Object(n) !== n) throw new TypeError("using declarations can only be used with objects, functions, null, or undefined.");
|