@sarafapp/iron_core 1.0.66 → 1.0.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/IronCore.js +97 -76
- package/dist/IronCore.umd.cjs +3 -3
- package/dist/core/index.d.ts +1 -0
- package/dist/core/src/BaseModel.d.ts +45 -0
- package/dist/core/src/Utils.d.ts +4 -0
- package/dist/core/src/accessHandling/AccessControl.d.ts +10 -0
- package/dist/core/src/accessHandling/AccessLevel.d.ts +13 -0
- package/dist/core/src/accessHandling/Accessible.d.ts +3 -0
- package/dist/core/src/accessHandling/EveryDirectiveAccess.d.ts +4 -0
- package/dist/core/src/accessHandling/SSO/AuthorizationDirective.d.ts +17 -0
- package/dist/core/src/accessHandling/SSO/AuthorizationService.d.ts +17 -0
- package/dist/core/src/accessHandling/SSO/EveryLevelAuthorizationDirective.d.ts +4 -0
- package/dist/core/src/accessHandling/SSO/SomeLevelsAuthorizationDirective.d.ts +4 -0
- package/dist/core/src/accessHandling/SomeDirectiveAccess.d.ts +4 -0
- package/dist/core/src/accessHandling/index.d.ts +9 -0
- package/dist/core/src/baseDirective/BeforeMountDirective.d.ts +3 -0
- package/dist/core/src/baseDirective/BeforeUnMountDirective.d.ts +3 -0
- package/dist/core/src/baseDirective/BeforeUpdateDirective.d.ts +3 -0
- package/dist/core/src/baseDirective/CreatedDirective.d.ts +3 -0
- package/dist/core/src/baseDirective/MountedDirective.d.ts +3 -0
- package/dist/core/src/baseDirective/UnMountedDirective.d.ts +3 -0
- package/dist/core/src/baseDirective/UpdateDirective.d.ts +3 -0
- package/dist/core/src/baseDirective/index.d.ts +7 -0
- package/dist/core/src/baseForm/BaseRequestBodyFilter.d.ts +4 -0
- package/dist/core/src/baseForm/FormManager.d.ts +18 -0
- package/dist/core/src/baseForm/InputControl.d.ts +40 -0
- package/dist/core/src/baseForm/InputControlBuilder.d.ts +16 -0
- package/dist/core/src/baseForm/InputControlData.d.ts +15 -0
- package/dist/core/src/baseForm/RequestBodyFilter.d.ts +3 -0
- package/dist/core/src/baseForm/TouchSensitiveForm.d.ts +9 -0
- package/dist/core/src/baseForm/UseForm.d.ts +18 -0
- package/dist/core/src/baseForm/index.d.ts +8 -0
- package/dist/core/src/baseSchedule/Schedule.d.ts +3 -0
- package/dist/core/src/baseSchedule/Scheduler.d.ts +8 -0
- package/dist/core/src/baseSchedule/index.d.ts +2 -0
- package/dist/core/src/baseTable/BaseTable.d.ts +47 -0
- package/dist/core/src/baseTable/Constants.d.ts +13 -0
- package/dist/core/src/baseTable/OnDestory.d.ts +3 -0
- package/dist/core/src/baseTable/RowActionSource.d.ts +4 -0
- package/dist/core/src/baseTable/RowClick.d.ts +3 -0
- package/dist/core/src/baseTable/RowDoubleClick.d.ts +3 -0
- package/dist/core/src/baseTable/RowMetaClick.d.ts +3 -0
- package/dist/core/src/baseTable/SelectableTable.d.ts +19 -0
- package/dist/core/src/baseTable/TableAction.d.ts +8 -0
- package/dist/core/src/baseTable/TableHeaderSchema.d.ts +27 -0
- package/dist/core/src/baseTable/TableLoader.d.ts +3 -0
- package/dist/core/src/baseTable/TablePaginate.d.ts +3 -0
- package/dist/core/src/baseTable/TableService.d.ts +9 -0
- package/dist/core/src/baseTable/TableSort.d.ts +4 -0
- package/dist/core/src/baseTable/TableSummarySchema.d.ts +9 -0
- package/dist/core/src/baseTable/generator/SelectableTableGenerator.d.ts +14 -0
- package/dist/core/src/baseTable/generator/TableCellComponentRegistry.d.ts +7 -0
- package/dist/core/src/baseTable/generator/TableConfig.d.ts +7 -0
- package/dist/core/src/baseTable/generator/TableGenerator.d.ts +37 -0
- package/dist/core/src/baseTable/generator/TableSource.d.ts +24 -0
- package/dist/core/src/baseTable/index.d.ts +23 -0
- package/dist/core/src/baseTable/moduleConnection/Action.d.ts +3 -0
- package/dist/core/src/baseTable/moduleConnection/Column.d.ts +3 -0
- package/dist/core/src/baseTable/moduleConnection/Table.d.ts +4 -0
- package/dist/core/src/baseTable/moduleConnection/TableDestroy.d.ts +2 -0
- package/dist/core/src/baseTable/moduleConnection/TableRowClick.d.ts +2 -0
- package/dist/core/src/baseTable/moduleConnection/generator/GColumn.d.ts +2 -0
- package/dist/core/src/baseTable/moduleConnection/generator/GTable.d.ts +2 -0
- package/dist/core/src/composables/UseCrud.d.ts +10 -0
- package/dist/core/src/composables/UseData.d.ts +15 -0
- package/dist/core/src/composables/UseLoadingStatus.d.ts +15 -0
- package/dist/core/src/composables/UseParams.d.ts +17 -0
- package/dist/core/src/composables/UseRepository.d.ts +67 -0
- package/dist/core/src/composables/UseState.d.ts +2 -0
- package/dist/core/src/composables/UseStaticTableService.d.ts +5 -0
- package/dist/core/src/composables/index.d.ts +7 -0
- package/dist/core/src/constants/Constants.d.ts +108 -0
- package/dist/core/src/constants/index.d.ts +1 -0
- package/dist/core/src/crudService/CrudService.d.ts +22 -0
- package/dist/core/src/crudService/index.d.ts +1 -0
- package/dist/core/src/dataStructures/Queue/Queue.d.ts +8 -0
- package/dist/core/src/dataStructures/index.d.ts +1 -0
- package/dist/core/src/dateHandling/Constants.d.ts +5 -0
- package/dist/core/src/dateHandling/Converter.d.ts +5 -0
- package/dist/core/src/dateHandling/JalaliDateSetup.d.ts +1 -0
- package/dist/core/src/dateHandling/Model.d.ts +12 -0
- package/dist/core/src/dateHandling/Utils.d.ts +8 -0
- package/dist/core/src/dateHandling/index.d.ts +5 -0
- package/dist/core/src/debounce/DebounceAction.d.ts +4 -0
- package/dist/core/src/debounce/DebounceService.d.ts +9 -0
- package/dist/core/src/debounce/index.d.ts +2 -0
- package/dist/core/src/deviceManagement/Constants.d.ts +4 -0
- package/dist/core/src/deviceManagement/Visibility.d.ts +4 -0
- package/dist/core/src/deviceManagement/VisibilityManager.d.ts +6 -0
- package/dist/core/src/deviceManagement/index.d.ts +3 -0
- package/dist/core/src/errorHandling/ErrorHandler.d.ts +3 -0
- package/dist/core/src/errorHandling/HandleError.d.ts +2 -0
- package/dist/core/src/errorHandling/index.d.ts +2 -0
- package/dist/core/src/eventSystem/CustomEventDispatcher.d.ts +5 -0
- package/dist/core/src/eventSystem/Model.d.ts +8 -0
- package/dist/core/src/eventSystem/OnEvent.d.ts +1 -0
- package/dist/core/src/eventSystem/index.d.ts +3 -0
- package/dist/core/src/feedbackHandling/FailureFeedback.d.ts +3 -0
- package/dist/core/src/feedbackHandling/Feedback.d.ts +11 -0
- package/dist/core/src/feedbackHandling/HandleFeedback.d.ts +2 -0
- package/dist/core/src/feedbackHandling/InfoFeedback.d.ts +3 -0
- package/dist/core/src/feedbackHandling/SuccessFeedback.d.ts +3 -0
- package/dist/core/src/feedbackHandling/WarningFeedback.d.ts +3 -0
- package/dist/core/src/feedbackHandling/index.d.ts +6 -0
- package/dist/core/src/httpClient/ApiBuilder.d.ts +14 -0
- package/dist/core/src/httpClient/ErrorHandlerRegistry.d.ts +10 -0
- package/dist/core/src/httpClient/HttpClient.d.ts +14 -0
- package/dist/core/src/httpClient/Interceptor.d.ts +4 -0
- package/dist/core/src/httpClient/index.d.ts +4 -0
- package/dist/core/src/initializer/ApplicationInitializer.d.ts +6 -0
- package/dist/core/src/initializer/Initializer.d.ts +3 -0
- package/dist/core/src/initializer/index.d.ts +2 -0
- package/dist/core/src/json/JsonMapper.d.ts +18 -0
- package/dist/core/src/json/index.d.ts +1 -0
- package/dist/core/src/layout/Constants.d.ts +10 -0
- package/dist/core/src/layout/DialogService.d.ts +406 -0
- package/dist/core/src/layout/DrawerService.d.ts +14 -0
- package/dist/core/src/layout/Toast.d.ts +8 -0
- package/dist/core/src/layout/index.d.ts +4 -0
- package/dist/core/src/lib/Constants.d.ts +20 -0
- package/dist/core/src/lib/Formatter.d.ts +10 -0
- package/dist/core/src/lib/Util.d.ts +12 -0
- package/dist/core/src/lib/index.d.ts +3 -0
- package/dist/core/src/observables/AbstractSubject.d.ts +7 -0
- package/dist/core/src/observables/BehaviorSubject.d.ts +16 -0
- package/dist/core/src/observables/Observer.d.ts +3 -0
- package/dist/core/src/observables/Subject.d.ts +6 -0
- package/dist/core/src/observables/index.d.ts +4 -0
- package/dist/core/src/process/Proccess.d.ts +9 -0
- package/dist/core/src/process/ProcessManager.d.ts +10 -0
- package/dist/core/src/process/index.d.ts +2 -0
- package/dist/core/src/repository/Params.d.ts +11 -0
- package/dist/core/src/repository/Repository.d.ts +38 -0
- package/dist/core/src/repository/SyncDetail.d.ts +5 -0
- package/dist/core/src/repository/index.d.ts +4 -0
- package/dist/core/src/repository/model.d.ts +5 -0
- package/dist/core/src/routeGuard/RouteGuard.d.ts +7 -0
- package/dist/core/src/routeGuard/index.d.ts +1 -0
- package/dist/core/src/search/client/ClientArraySearch.d.ts +4 -0
- package/dist/core/src/search/client/ClientSearch.d.ts +3 -0
- package/dist/core/src/search/index.d.ts +2 -0
- package/dist/core/src/sort/SortDetail.d.ts +6 -0
- package/dist/core/src/sort/client/Sorter.d.ts +6 -0
- package/dist/core/src/sort/index.d.ts +4 -0
- package/dist/core/src/sort/strategies/SimpleSort.d.ts +5 -0
- package/dist/core/src/sort/strategies/SortStrategy.d.ts +4 -0
- package/dist/core/src/types/Global.d.ts +1 -0
- package/dist/core/src/types/index.d.ts +1 -0
- package/dist/core/src/validators/Validator.d.ts +4 -0
- package/dist/core/src/validators/index.d.ts +1 -0
- package/dist/core/src/webSocket/Constants.d.ts +6 -0
- package/dist/core/src/webSocket/Model.d.ts +6 -0
- package/dist/core/src/webSocket/WebSocketService.d.ts +30 -0
- package/dist/core/src/webSocket/index.d.ts +3 -0
- package/dist/example-vue/src/AntTableConfig.d.ts +6 -0
- package/dist/example-vue/src/TableService.d.ts +12 -0
- package/dist/example-vue/src/TextCell.vue.d.ts +5 -0
- package/dist/example-vue/src/app/App.vue.d.ts +2 -0
- package/dist/example-vue/src/app/router/index.d.ts +1 -0
- package/dist/example-vue/src/app/screens/Index.vue.d.ts +2 -0
- package/dist/example-vue/src/main.d.ts +0 -0
- package/package.json +4 -1
- package/index.ts +0 -37
package/dist/IronCore.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import P from "dayjs";
|
|
2
|
-
import { toRaw as We, reactive as it, ref as
|
|
3
|
-
import { JsonConvert as bt, JsonProperty as Y, JsonObject as
|
|
2
|
+
import { toRaw as We, reactive as it, ref as C, watch as wt, computed as w, onBeforeUnmount as It } from "vue";
|
|
3
|
+
import { JsonConvert as bt, JsonProperty as Y, JsonObject as $e } from "json2typescript";
|
|
4
4
|
import { defineStore as at } from "pinia";
|
|
5
5
|
var Pe = /* @__PURE__ */ ((t) => (t.BankCard = "####-####-####-####", t.Iban = "##-####-####-####-####-####-##", t))(Pe || {}), re = /* @__PURE__ */ ((t) => (t.FullDate = "YYYY/M/D HH:mm", t.SimpleDate = "YYYY/M/D", t.CompactGregorianDate = "YYYYMMDD", t.ShortJalaliDate = "YYMM", t.JustHour = "HH:mm:ss", t))(re || {});
|
|
6
6
|
const Rt = [
|
|
@@ -462,12 +462,12 @@ function Pt() {
|
|
|
462
462
|
}
|
|
463
463
|
var kt = Pt();
|
|
464
464
|
const Lt = /* @__PURE__ */ Ce(kt);
|
|
465
|
-
var me = { exports: {} },
|
|
466
|
-
function
|
|
465
|
+
var me = { exports: {} }, xt = me.exports, Ke;
|
|
466
|
+
function Tt() {
|
|
467
467
|
return Ke || (Ke = 1, function(t, e) {
|
|
468
468
|
(function(s, r) {
|
|
469
469
|
t.exports = r();
|
|
470
|
-
})(
|
|
470
|
+
})(xt, function() {
|
|
471
471
|
return function(s, r) {
|
|
472
472
|
r.prototype.weekYear = function() {
|
|
473
473
|
var n = this.month(), i = this.week(), a = this.year();
|
|
@@ -477,8 +477,8 @@ function xt() {
|
|
|
477
477
|
});
|
|
478
478
|
}(me)), me.exports;
|
|
479
479
|
}
|
|
480
|
-
var
|
|
481
|
-
const
|
|
480
|
+
var $t = Tt();
|
|
481
|
+
const Vt = /* @__PURE__ */ Ce($t);
|
|
482
482
|
var ye = { exports: {} }, Nt = ye.exports, Ze;
|
|
483
483
|
function jt() {
|
|
484
484
|
return Ze || (Ze = 1, function(t, e) {
|
|
@@ -588,7 +588,7 @@ var de = {
|
|
|
588
588
|
G: function(e, s, r) {
|
|
589
589
|
return zt(Wt(e, s, r));
|
|
590
590
|
}
|
|
591
|
-
}, Gt = /^(\d{4})[-/]?(\d{1,2})[-/]?(\d{0,2})(.*)?$/, Kt = /\[.*?\]|jY{2,4}|jM{1,4}|jD{1,2}|Y{2,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, Oe = "date", K = "day",
|
|
591
|
+
}, Gt = /^(\d{4})[-/]?(\d{1,2})[-/]?(\d{0,2})(.*)?$/, Kt = /\[.*?\]|jY{2,4}|jM{1,4}|jD{1,2}|Y{2,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, Oe = "date", K = "day", T = "month", $ = "year", Xe = "week", Zt = "YYYY-MM-DDTHH:mm:ssZ", Xt = {
|
|
592
592
|
jmonths: "فروردین_اردیبهشت_خرداد_تیر_مرداد_شهریور_مهر_آبان_آذر_دی_بهمن_اسفند".split("_")
|
|
593
593
|
}, Qt = function(t, e, s) {
|
|
594
594
|
var r = e.prototype, n = r.$utils(), i = function(h) {
|
|
@@ -634,13 +634,13 @@ var de = {
|
|
|
634
634
|
if (!i(this))
|
|
635
635
|
return b.bind(this)(u, h);
|
|
636
636
|
var S = l(h) ? !0 : h, I = a(u), y = function(G, L) {
|
|
637
|
-
var O = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : p.$jy, ce = de.G(O, L + 1, G),
|
|
637
|
+
var O = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : p.$jy, ce = de.G(O, L + 1, G), x = he(ce, 3), se = x[0], ue = x[1], St = x[2], ze = J(new Date(se, ue - 1, St), p);
|
|
638
638
|
return (S ? ze : ze.endOf(K)).$set("hour", 1);
|
|
639
639
|
}, R = (this.$W + (7 - s.$fdow)) % 7;
|
|
640
640
|
switch (I) {
|
|
641
|
-
case
|
|
641
|
+
case $:
|
|
642
642
|
return S ? y(1, 0) : y(0, 0, this.$jy + 1);
|
|
643
|
-
case
|
|
643
|
+
case T:
|
|
644
644
|
return S ? y(1, this.$jM) : y(0, (this.$jM + 1) % 12, this.$jy + parseInt((this.$jM + 1) / 12, 10));
|
|
645
645
|
case Xe:
|
|
646
646
|
return S ? y(this.$jD - R, this.$jM) : y(this.$jD + (6 - R), this.$jM);
|
|
@@ -652,18 +652,18 @@ var de = {
|
|
|
652
652
|
if (!i(this))
|
|
653
653
|
return q.bind(this)(u, h);
|
|
654
654
|
var S = a(u), I = function(R, le) {
|
|
655
|
-
var G = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : p.$jy, L = de.G(G, le + 1, R), O = he(L, 3), ce = O[0],
|
|
656
|
-
return p.$d.setFullYear(ce), p.$d.setMonth(
|
|
655
|
+
var G = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : p.$jy, L = de.G(G, le + 1, R), O = he(L, 3), ce = O[0], x = O[1], se = O[2];
|
|
656
|
+
return p.$d.setFullYear(ce), p.$d.setMonth(x - 1), p.$d.setDate(se), p;
|
|
657
657
|
};
|
|
658
658
|
switch (S) {
|
|
659
659
|
case Oe:
|
|
660
660
|
case K:
|
|
661
661
|
I(h, this.$jM);
|
|
662
662
|
break;
|
|
663
|
-
case
|
|
663
|
+
case T:
|
|
664
664
|
I(this.$jD, h);
|
|
665
665
|
break;
|
|
666
|
-
case
|
|
666
|
+
case $:
|
|
667
667
|
I(this.$jD, this.$jM, h);
|
|
668
668
|
break;
|
|
669
669
|
default:
|
|
@@ -675,16 +675,16 @@ var de = {
|
|
|
675
675
|
if (!i(this))
|
|
676
676
|
return H.bind(this)(u, h);
|
|
677
677
|
u = Number(u);
|
|
678
|
-
var S = h && (h.length === 1 || h === "ms") ? h : a(h), I = function(
|
|
679
|
-
var ue = p.set(Oe, 1).set(
|
|
678
|
+
var S = h && (h.length === 1 || h === "ms") ? h : a(h), I = function(x, se) {
|
|
679
|
+
var ue = p.set(Oe, 1).set(x, se + u);
|
|
680
680
|
return ue.set(Oe, Math.min(p.$jD, ue.daysInMonth()));
|
|
681
681
|
};
|
|
682
|
-
if (["M",
|
|
683
|
-
var y = this.$jM + u, R = y < 0 ? -Math.ceil(-y / 12) : Math.floor(y / 12), le = this.$jD, G = this.set(K, 1).add(R,
|
|
682
|
+
if (["M", T].indexOf(S) > -1) {
|
|
683
|
+
var y = this.$jM + u, R = y < 0 ? -Math.ceil(-y / 12) : Math.floor(y / 12), le = this.$jD, G = this.set(K, 1).add(R, $).set(T, y - R * 12);
|
|
684
684
|
return G.set(K, Math.min(G.daysInMonth(), le));
|
|
685
685
|
}
|
|
686
|
-
if (["y",
|
|
687
|
-
return I(
|
|
686
|
+
if (["y", $].indexOf(S) > -1)
|
|
687
|
+
return I($, this.$jy);
|
|
688
688
|
if (["d", K].indexOf(S) > -1) {
|
|
689
689
|
var L = new Date(this.$d);
|
|
690
690
|
return L.setDate(L.getDate() + u), J(L, this);
|
|
@@ -727,10 +727,10 @@ var de = {
|
|
|
727
727
|
return W.bind(this)(u, h, p);
|
|
728
728
|
var S = a(h), I = s(u), y = c(this, I);
|
|
729
729
|
switch (S) {
|
|
730
|
-
case
|
|
730
|
+
case $:
|
|
731
731
|
y /= 12;
|
|
732
732
|
break;
|
|
733
|
-
case
|
|
733
|
+
case T:
|
|
734
734
|
break;
|
|
735
735
|
default:
|
|
736
736
|
return W.bind(this)(u, h, p);
|
|
@@ -739,13 +739,13 @@ var de = {
|
|
|
739
739
|
}, r.$g = function(u, h, p) {
|
|
740
740
|
return l(u) ? this[h] : this.set(p, u);
|
|
741
741
|
}, r.year = function(u) {
|
|
742
|
-
return i(this) ? this.$g(u, "$jy",
|
|
742
|
+
return i(this) ? this.$g(u, "$jy", $) : _e.bind(this)(u);
|
|
743
743
|
}, r.month = function(u) {
|
|
744
|
-
return i(this) ? this.$g(u, "$jM",
|
|
744
|
+
return i(this) ? this.$g(u, "$jM", T) : Me.bind(this)(u);
|
|
745
745
|
}, r.date = function(u) {
|
|
746
746
|
return i(this) ? this.$g(u, "$jD", K) : oe.bind(this)(u);
|
|
747
747
|
}, r.daysInMonth = function() {
|
|
748
|
-
return i(this) ? this.endOf(
|
|
748
|
+
return i(this) ? this.endOf(T).$jD : Ee.bind(this)();
|
|
749
749
|
}, te && (r.toArray = function() {
|
|
750
750
|
return i(this) ? [this.$jy, this.$jM, this.$jD, this.$H, this.$m, this.$s, this.$ms] : te.bind(this)();
|
|
751
751
|
}), r.clone = function() {
|
|
@@ -775,7 +775,7 @@ const es = {
|
|
|
775
775
|
}
|
|
776
776
|
};
|
|
777
777
|
function ts() {
|
|
778
|
-
P.extend(Qt), P.calendar("jalali"), P.extend(Et), P.extend(Lt), P.extend(
|
|
778
|
+
P.extend(Qt), P.calendar("jalali"), P.extend(Et), P.extend(Lt), P.extend(Vt), P.locale(es, {}, !0);
|
|
779
779
|
}
|
|
780
780
|
class qs {
|
|
781
781
|
constructor(e, s) {
|
|
@@ -853,7 +853,7 @@ class M {
|
|
|
853
853
|
return P(new Date(e)).subtract(1, "day").format(s);
|
|
854
854
|
}
|
|
855
855
|
}
|
|
856
|
-
var g = /* @__PURE__ */ ((t) => (t.FetchList = "fetchList", t.AutoRefresh = "autoRefresh", t.FetchItem = "fetchItem", t.FetchLastItems = "fetchLastItems", t.FetchPreviousItems = "fetchPreviousItems", t.Create = "CREATE", t.Update = "UPDATE", t.Delete = "DELETE", t.Search = "SEARCH", t.Sort = "SORT", t.Success = "SUCCESS", t.Error = "ERROR", t.Idle = "IDLE", t))(g || {}),
|
|
856
|
+
var g = /* @__PURE__ */ ((t) => (t.FetchList = "fetchList", t.AutoRefresh = "autoRefresh", t.FetchItem = "fetchItem", t.FetchLastItems = "fetchLastItems", t.FetchPreviousItems = "fetchPreviousItems", t.Create = "CREATE", t.Update = "UPDATE", t.Delete = "DELETE", t.Search = "SEARCH", t.Sort = "SORT", t.Success = "SUCCESS", t.Error = "ERROR", t.Idle = "IDLE", t))(g || {}), V = /* @__PURE__ */ ((t) => (t.Width = "width", t.Height = "height", t[t.DefaultWidth = 500] = "DefaultWidth", t[t.DefaultHeight = 350] = "DefaultHeight", t[t.MinimalAvailableSize = 0] = "MinimalAvailableSize", t))(V || {}), k = /* @__PURE__ */ ((t) => (t.ASC = "ASC", t.DESC = "DESC", t))(k || {}), ss = /* @__PURE__ */ ((t) => (t.ASC = "ascend", t.DESC = "descend", t))(ss || {}), Ve = /* @__PURE__ */ ((t) => (t.Left = "left", t.Right = "right", t.Center = "center", t))(Ve || {}), Ne = /* @__PURE__ */ ((t) => (t.Text = "text", t))(Ne || {}), je = /* @__PURE__ */ ((t) => (t.Text = "text", t.ACTION = "action", t.Tag = "tag", t.Iban = "iban", t.BankCard = "bankCard", t.Symbol = "symbol", t.TradeDetail = "tradeDetail", t.SymbolPrice = "symbolPrice", t.TradeSymbol = "tradeSymbol", t.Price = "price", t.DynamicCurrencyPrice = "dynamicCurrencyPrice", t.TradeDate = "tradeDate", t.RequestResponseIdentity = "requestResponseIdentity", t.Image = "image", t))(je || {}), lt = /* @__PURE__ */ ((t) => (t[t.MINIMAL_LOADABLE_HEADER_COUNT = 0] = "MINIMAL_LOADABLE_HEADER_COUNT", t[t.DEFAULT_ITEM_COUNT_PER_PAGE = 20] = "DEFAULT_ITEM_COUNT_PER_PAGE", t.PAGINATION_POSITION = "bottomCenter", t))(lt || {}), Fe = /* @__PURE__ */ ((t) => (t.FontFamily = "IRANSansX", t))(Fe || {}), ne = /* @__PURE__ */ ((t) => (t.Open = "open", t.Close = "close", t))(ne || {}), rs = /* @__PURE__ */ ((t) => (t[t.NotFound = 404] = "NotFound", t[t.Unauthorized = 401] = "Unauthorized", t[t.ServerError = 500] = "ServerError", t))(rs || {}), we = /* @__PURE__ */ ((t) => (t[t.Invalid = 0] = "Invalid", t[t.Valid = 1] = "Valid", t))(we || {}), U = /* @__PURE__ */ ((t) => (t.Theme = "theme", t.AccessList = "accessList", t.Token = "token", t.SSO_ACCESS_LIST = "ssoAccessList", t))(U || {}), Fe = /* @__PURE__ */ ((t) => (t.Light = "light", t.Dark = "dark", t))(Fe || {}), Be = /* @__PURE__ */ ((t) => (t.Dialog = "dialog", t.Drawer = "drawer", t.Module = "module", t.Toast = "toast", t))(Be || {}), ns = /* @__PURE__ */ ((t) => (t.USDT = "USDT", t))(ns || {});
|
|
857
857
|
class Q {
|
|
858
858
|
static getBankImageBaseOnCardInfo(e, s) {
|
|
859
859
|
return e === void 0 ? "/img/banks/shetab.png" : s === "IBAN" ? (e = M.toEnglishDigits(
|
|
@@ -1303,7 +1303,7 @@ class sr {
|
|
|
1303
1303
|
}
|
|
1304
1304
|
}
|
|
1305
1305
|
function rr(t, e = !1) {
|
|
1306
|
-
const s = it(t), r =
|
|
1306
|
+
const s = it(t), r = C(
|
|
1307
1307
|
we.Invalid
|
|
1308
1308
|
);
|
|
1309
1309
|
return wt(
|
|
@@ -1343,12 +1343,12 @@ const dt = "150px", ft = 2, nr = {
|
|
|
1343
1343
|
colspan: ft,
|
|
1344
1344
|
width: dt,
|
|
1345
1345
|
cellType: je.ACTION,
|
|
1346
|
-
align:
|
|
1346
|
+
align: Ve.Center,
|
|
1347
1347
|
headerType: Ne.Text,
|
|
1348
1348
|
accessLevel: null
|
|
1349
1349
|
}, ls = {
|
|
1350
1350
|
width: dt,
|
|
1351
|
-
align:
|
|
1351
|
+
align: Ve.Center,
|
|
1352
1352
|
headerType: Ne.Text,
|
|
1353
1353
|
cellType: je.Text,
|
|
1354
1354
|
colspan: ft
|
|
@@ -1475,7 +1475,7 @@ class cs {
|
|
|
1475
1475
|
};
|
|
1476
1476
|
}
|
|
1477
1477
|
}
|
|
1478
|
-
class
|
|
1478
|
+
class D {
|
|
1479
1479
|
constructor(e) {
|
|
1480
1480
|
this.observers = [], this.attach = this.attach.bind(this), this.detach = this.detach.bind(this), this.notify = this.notify.bind(this), this.notifyObject = this.notifyObject.bind(this), this.next = this.next.bind(this), this.getValue = this.getValue.bind(this), this.next(e);
|
|
1481
1481
|
}
|
|
@@ -1501,7 +1501,7 @@ class C {
|
|
|
1501
1501
|
}
|
|
1502
1502
|
class ar extends cs {
|
|
1503
1503
|
constructor(e) {
|
|
1504
|
-
super(e), this.selectedRows = new
|
|
1504
|
+
super(e), this.selectedRows = new D(/* @__PURE__ */ new Map()), this.rowSelect = this.rowSelect.bind(this), this.selectAll = this.selectAll.bind(this), this.isEveryRowSelected = this.isEveryRowSelected.bind(this), this.handlePagination = this.handlePagination.bind(this), this.clearAllSelectedItems = this.clearAllSelectedItems.bind(this), this.getSelectedRows = this.getSelectedRows.bind(this), this.getSelectedRowsAsArray = this.getSelectedRowsAsArray.bind(this), this.getSelectedRowIds = this.getSelectedRowIds.bind(this);
|
|
1505
1505
|
}
|
|
1506
1506
|
rowSelect(e) {
|
|
1507
1507
|
this.getSelectedRowsValue().has(e.id) ? (this.getSelectedRowsValue().delete(e.id), this.selectedRows.next(this.selectedRows.getValue())) : (this.selectedRows.getValue().set(e.id, e), this.selectedRows.next(this.selectedRows.getValue()));
|
|
@@ -1610,7 +1610,7 @@ class fr {
|
|
|
1610
1610
|
}
|
|
1611
1611
|
class us {
|
|
1612
1612
|
constructor(e) {
|
|
1613
|
-
this.rows = new
|
|
1613
|
+
this.rows = new D([]), this.headerSchema = new D([]), this.currentPage = new D(1), this.currentPageSize = new D(20), this.totalItems = new D(0), this.currentSortDetail = new D(new Ue("id", k.DESC)), this.scrollDetail = new D(null), this.isExpandable = new D(!1), this.tableSource = e, this.accessService = ae.GetInstance(), this.load = this.load.bind(this), this.paginate = this.paginate.bind(this), this.shouldSendSortRequest = this.shouldSendSortRequest.bind(this), this.sort = this.sort.bind(this), this.handleClick = this.handleClick.bind(this), this.handleMetaClick = this.handleMetaClick.bind(this), this.handleDoubleClick = this.handleDoubleClick.bind(this), this.hasAnyAction = this.hasAnyAction.bind(this), this.loadSummarySchema = this.loadSummarySchema.bind(this), this.filterItemsBaseOnAccessLevel = this.filterItemsBaseOnAccessLevel.bind(this), this.paginate = this.paginate.bind(this), this.shouldSendPaginationRequest = this.shouldSendPaginationRequest.bind(this), this.getRowActions = this.getRowActions.bind(this), this.onDestroy = this.onDestroy.bind(this);
|
|
1614
1614
|
}
|
|
1615
1615
|
async load() {
|
|
1616
1616
|
this.rows.next(await this.tableSource.loadRows()), this.headerSchema.next(
|
|
@@ -1665,7 +1665,7 @@ class us {
|
|
|
1665
1665
|
}
|
|
1666
1666
|
class pr extends us {
|
|
1667
1667
|
constructor(e) {
|
|
1668
|
-
super(e), this.selectedRows = new
|
|
1668
|
+
super(e), this.selectedRows = new D(
|
|
1669
1669
|
/* @__PURE__ */ new Map()
|
|
1670
1670
|
), this.selectRow = this.selectRow.bind(this), this.selectAll = this.selectAll.bind(this), this.isEveryRowSelected = this.isEveryRowSelected.bind(this), this.clearAllSelectedItems = this.clearAllSelectedItems.bind(this), this.getSelectedRowsAsArray = this.getSelectedRowsAsArray.bind(this), this.getSelectedRowIds = this.getSelectedRowIds.bind(this);
|
|
1671
1671
|
}
|
|
@@ -1732,9 +1732,9 @@ function yr(t) {
|
|
|
1732
1732
|
};
|
|
1733
1733
|
}
|
|
1734
1734
|
function hs() {
|
|
1735
|
-
const t =
|
|
1735
|
+
const t = C(
|
|
1736
1736
|
/* @__PURE__ */ new Map()
|
|
1737
|
-
), e =
|
|
1737
|
+
), e = C(0), s = C(null), r = w(() => Array.from(t.value.values()));
|
|
1738
1738
|
function n(v) {
|
|
1739
1739
|
e.value = v;
|
|
1740
1740
|
}
|
|
@@ -1791,7 +1791,7 @@ class wr {
|
|
|
1791
1791
|
}
|
|
1792
1792
|
const et = new ds();
|
|
1793
1793
|
function fs() {
|
|
1794
|
-
const t =
|
|
1794
|
+
const t = C(structuredClone(et));
|
|
1795
1795
|
function e() {
|
|
1796
1796
|
t.value.pageNumber = t.value.pageNumber + 1;
|
|
1797
1797
|
}
|
|
@@ -1855,7 +1855,7 @@ function fs() {
|
|
|
1855
1855
|
};
|
|
1856
1856
|
}
|
|
1857
1857
|
function ps() {
|
|
1858
|
-
const t =
|
|
1858
|
+
const t = C(/* @__PURE__ */ new Set()), e = w(() => t.value.has(g.FetchList)), s = w(() => t.value.has(g.FetchItem)), r = w(() => t.value.has(g.FetchLastItems)), n = w(() => t.value.has(g.FetchPreviousItems)), i = w(() => t.value.has(g.Create)), a = w(() => t.value.has(g.Update)), l = w(() => t.value.has(g.Delete)), o = w(() => t.value.has(g.Search)), c = w(() => t.value.has(g.Sort));
|
|
1859
1859
|
function f(v) {
|
|
1860
1860
|
t.value.add(v);
|
|
1861
1861
|
}
|
|
@@ -1992,7 +1992,7 @@ function Ir(t) {
|
|
|
1992
1992
|
};
|
|
1993
1993
|
}
|
|
1994
1994
|
function br(t) {
|
|
1995
|
-
const e =
|
|
1995
|
+
const e = C(t), s = w(() => ({
|
|
1996
1996
|
getData() {
|
|
1997
1997
|
return {
|
|
1998
1998
|
totalItems: e.value.length,
|
|
@@ -2027,7 +2027,7 @@ function br(t) {
|
|
|
2027
2027
|
};
|
|
2028
2028
|
}
|
|
2029
2029
|
function Rr() {
|
|
2030
|
-
const t =
|
|
2030
|
+
const t = C(/* @__PURE__ */ new Map()), e = C(0), s = w(() => e.value), r = w(() => Array.from(t.value.values()));
|
|
2031
2031
|
function n(f) {
|
|
2032
2032
|
e.value = f;
|
|
2033
2033
|
}
|
|
@@ -2059,7 +2059,7 @@ function Rr() {
|
|
|
2059
2059
|
};
|
|
2060
2060
|
}
|
|
2061
2061
|
function Ar(t, e = 3e5) {
|
|
2062
|
-
const s =
|
|
2062
|
+
const s = C(structuredClone(t));
|
|
2063
2063
|
let r = null;
|
|
2064
2064
|
function n() {
|
|
2065
2065
|
r && clearTimeout(r), e > 0 && (r = setTimeout(() => {
|
|
@@ -2269,8 +2269,8 @@ class kr {
|
|
|
2269
2269
|
const Lr = at(Be.Dialog, () => {
|
|
2270
2270
|
const t = it({
|
|
2271
2271
|
dialogComponent: null,
|
|
2272
|
-
width:
|
|
2273
|
-
height:
|
|
2272
|
+
width: V.DefaultWidth,
|
|
2273
|
+
height: V.DefaultHeight,
|
|
2274
2274
|
props: null,
|
|
2275
2275
|
header: ""
|
|
2276
2276
|
}), e = w(() => !!t.dialogComponent), s = w(() => !!t.header);
|
|
@@ -2288,12 +2288,12 @@ const Lr = at(Be.Dialog, () => {
|
|
|
2288
2288
|
function a(o, c) {
|
|
2289
2289
|
if (!e.value)
|
|
2290
2290
|
throw new Error("there is no dialog to set size on");
|
|
2291
|
-
if (o <
|
|
2291
|
+
if (o < V.MinimalAvailableSize)
|
|
2292
2292
|
throw new Error("negative size not supported");
|
|
2293
|
-
c ===
|
|
2293
|
+
c === V.Width ? t.width = o : t.height = o;
|
|
2294
2294
|
}
|
|
2295
2295
|
function l() {
|
|
2296
|
-
t.props = null, t.height =
|
|
2296
|
+
t.props = null, t.height = V.DefaultHeight, t.width = V.DefaultWidth, t.header = "", t.dialogComponent = null;
|
|
2297
2297
|
}
|
|
2298
2298
|
return {
|
|
2299
2299
|
dialogData: t,
|
|
@@ -2305,8 +2305,8 @@ const Lr = at(Be.Dialog, () => {
|
|
|
2305
2305
|
isDialogExists: e,
|
|
2306
2306
|
hasDefaultHeader: s
|
|
2307
2307
|
};
|
|
2308
|
-
}),
|
|
2309
|
-
const t =
|
|
2308
|
+
}), xr = at(Be.Drawer, () => {
|
|
2309
|
+
const t = C(ne.Close), e = w(() => t.value === ne.Open);
|
|
2310
2310
|
function s() {
|
|
2311
2311
|
t.value = ne.Close;
|
|
2312
2312
|
}
|
|
@@ -2319,7 +2319,7 @@ const Lr = at(Be.Dialog, () => {
|
|
|
2319
2319
|
isDrawerOpen: e
|
|
2320
2320
|
};
|
|
2321
2321
|
});
|
|
2322
|
-
class
|
|
2322
|
+
class Tr {
|
|
2323
2323
|
constructor(e) {
|
|
2324
2324
|
this.mapProcesses = /* @__PURE__ */ new Map(), this.processes = e, this.assignProcessManager();
|
|
2325
2325
|
}
|
|
@@ -2339,7 +2339,7 @@ class xr {
|
|
|
2339
2339
|
await s.execute();
|
|
2340
2340
|
}
|
|
2341
2341
|
}
|
|
2342
|
-
class
|
|
2342
|
+
class $r {
|
|
2343
2343
|
constructor(e, s) {
|
|
2344
2344
|
this.next = null, this.name = e, this.next = s;
|
|
2345
2345
|
}
|
|
@@ -2347,7 +2347,7 @@ class Vr {
|
|
|
2347
2347
|
e.setProcessToMap(this), this.next && this.next.addToManager(e);
|
|
2348
2348
|
}
|
|
2349
2349
|
}
|
|
2350
|
-
class
|
|
2350
|
+
class Vr {
|
|
2351
2351
|
constructor() {
|
|
2352
2352
|
this.checkAccessibility = this.checkAccessibility.bind(this), this.isAccessible = this.isAccessible.bind(this), this.getDestinationRouteName = this.getDestinationRouteName.bind(this);
|
|
2353
2353
|
}
|
|
@@ -2477,7 +2477,7 @@ E([
|
|
|
2477
2477
|
Y("symbol", String)
|
|
2478
2478
|
], Re.prototype, "symbol", 2);
|
|
2479
2479
|
Re = E([
|
|
2480
|
-
|
|
2480
|
+
$e("Amount")
|
|
2481
2481
|
], Re);
|
|
2482
2482
|
let Ae = class {
|
|
2483
2483
|
getTable() {
|
|
@@ -2493,7 +2493,7 @@ E([
|
|
|
2493
2493
|
Y("id", Object)
|
|
2494
2494
|
], Ae.prototype, "id", 2);
|
|
2495
2495
|
Ae = E([
|
|
2496
|
-
|
|
2496
|
+
$e("BaseModel")
|
|
2497
2497
|
], Ae);
|
|
2498
2498
|
let ee = class extends Ae {
|
|
2499
2499
|
};
|
|
@@ -2510,7 +2510,7 @@ E([
|
|
|
2510
2510
|
Y("image", String)
|
|
2511
2511
|
], ee.prototype, "image", 2);
|
|
2512
2512
|
ee = E([
|
|
2513
|
-
|
|
2513
|
+
$e("MinifiedSymbolModel")
|
|
2514
2514
|
], ee);
|
|
2515
2515
|
class Br {
|
|
2516
2516
|
constructor(e, s) {
|
|
@@ -2573,15 +2573,15 @@ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
|
2573
2573
|
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
2574
2574
|
PERFORMANCE OF THIS SOFTWARE.
|
|
2575
2575
|
***************************************************************************** */
|
|
2576
|
-
var
|
|
2577
|
-
return
|
|
2576
|
+
var xe = function(t, e) {
|
|
2577
|
+
return xe = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(s, r) {
|
|
2578
2578
|
s.__proto__ = r;
|
|
2579
2579
|
} || function(s, r) {
|
|
2580
2580
|
for (var n in r) r.hasOwnProperty(n) && (s[n] = r[n]);
|
|
2581
|
-
},
|
|
2581
|
+
}, xe(t, e);
|
|
2582
2582
|
};
|
|
2583
2583
|
function Ye(t, e) {
|
|
2584
|
-
|
|
2584
|
+
xe(t, e);
|
|
2585
2585
|
function s() {
|
|
2586
2586
|
this.constructor = t;
|
|
2587
2587
|
}
|
|
@@ -2716,7 +2716,7 @@ function bs(t) {
|
|
|
2716
2716
|
function gt(t) {
|
|
2717
2717
|
return !!t.useClass;
|
|
2718
2718
|
}
|
|
2719
|
-
function
|
|
2719
|
+
function Te(t) {
|
|
2720
2720
|
return !!t.useFactory;
|
|
2721
2721
|
}
|
|
2722
2722
|
var mt = function() {
|
|
@@ -2772,7 +2772,7 @@ function be(t) {
|
|
|
2772
2772
|
return t.useValue != null;
|
|
2773
2773
|
}
|
|
2774
2774
|
function Ds(t) {
|
|
2775
|
-
return gt(t) || be(t) || Ie(t) ||
|
|
2775
|
+
return gt(t) || be(t) || Ie(t) || Te(t);
|
|
2776
2776
|
}
|
|
2777
2777
|
var qe = function() {
|
|
2778
2778
|
function t() {
|
|
@@ -2849,7 +2849,7 @@ var Ps = function(t) {
|
|
|
2849
2849
|
this.preResolution = new Ps(), this.postResolution = new ks();
|
|
2850
2850
|
}
|
|
2851
2851
|
return t;
|
|
2852
|
-
}(), yt = /* @__PURE__ */ new Map(),
|
|
2852
|
+
}(), yt = /* @__PURE__ */ new Map(), xs = function() {
|
|
2853
2853
|
function t(e) {
|
|
2854
2854
|
this.parent = e, this._registry = new Cs(), this.interceptors = new Ls(), this.disposed = !1, this.disposables = /* @__PURE__ */ new Set();
|
|
2855
2855
|
}
|
|
@@ -2865,7 +2865,7 @@ var Ps = function(t) {
|
|
|
2865
2865
|
var o = this._registry.get(l);
|
|
2866
2866
|
o && Ie(o.provider) ? a = o.provider : a = null;
|
|
2867
2867
|
}
|
|
2868
|
-
if ((r.lifecycle === A.Singleton || r.lifecycle == A.ContainerScoped || r.lifecycle == A.ResolutionScoped) && (be(n) ||
|
|
2868
|
+
if ((r.lifecycle === A.Singleton || r.lifecycle == A.ContainerScoped || r.lifecycle == A.ResolutionScoped) && (be(n) || Te(n)))
|
|
2869
2869
|
throw new Error('Cannot use lifecycle "' + A[r.lifecycle] + '" with ValueProviders or FactoryProviders');
|
|
2870
2870
|
return this._registry.set(e, { provider: n, options: r }), this;
|
|
2871
2871
|
}, t.prototype.registerType = function(e, s) {
|
|
@@ -2955,7 +2955,7 @@ var Ps = function(t) {
|
|
|
2955
2955
|
if (this.ensureNotDisposed(), e.options.lifecycle === A.ResolutionScoped && s.scopedResolutions.has(e))
|
|
2956
2956
|
return s.scopedResolutions.get(e);
|
|
2957
2957
|
var r = e.options.lifecycle === A.Singleton, n = e.options.lifecycle === A.ContainerScoped, i = r || n, a;
|
|
2958
|
-
return be(e.provider) ? a = e.provider.useValue : Ie(e.provider) ? a = i ? e.instance || (e.instance = this.resolve(e.provider.useToken, s)) : this.resolve(e.provider.useToken, s) : gt(e.provider) ? a = i ? e.instance || (e.instance = this.construct(e.provider.useClass, s)) : this.construct(e.provider.useClass, s) :
|
|
2958
|
+
return be(e.provider) ? a = e.provider.useValue : Ie(e.provider) ? a = i ? e.instance || (e.instance = this.resolve(e.provider.useToken, s)) : this.resolve(e.provider.useToken, s) : gt(e.provider) ? a = i ? e.instance || (e.instance = this.construct(e.provider.useClass, s)) : this.construct(e.provider.useClass, s) : Te(e.provider) ? a = e.provider.useFactory(this) : a = this.construct(e.provider, s), e.options.lifecycle === A.ResolutionScoped && s.scopedResolutions.set(e, a), a;
|
|
2959
2959
|
}, t.prototype.resolveAll = function(e, s, r) {
|
|
2960
2960
|
var n = this;
|
|
2961
2961
|
s === void 0 && (s = new pe()), r === void 0 && (r = !1), this.ensureNotDisposed();
|
|
@@ -3085,15 +3085,15 @@ var Ps = function(t) {
|
|
|
3085
3085
|
if (this.disposed)
|
|
3086
3086
|
throw new Error("This container has been disposed, you cannot interact with a disposed container");
|
|
3087
3087
|
}, t;
|
|
3088
|
-
}(),
|
|
3089
|
-
function
|
|
3088
|
+
}(), Ts = new xs();
|
|
3089
|
+
function $s(t) {
|
|
3090
3090
|
return function(e) {
|
|
3091
3091
|
yt.set(e, bs(e));
|
|
3092
3092
|
};
|
|
3093
3093
|
}
|
|
3094
|
-
function
|
|
3094
|
+
function Vs() {
|
|
3095
3095
|
return function(t) {
|
|
3096
|
-
|
|
3096
|
+
$s()(t), Ts.registerSingleton(t);
|
|
3097
3097
|
};
|
|
3098
3098
|
}
|
|
3099
3099
|
if (typeof Reflect > "u" || !Reflect.getMetadata)
|
|
@@ -3112,7 +3112,7 @@ let nt = class {
|
|
|
3112
3112
|
}
|
|
3113
3113
|
};
|
|
3114
3114
|
nt = js([
|
|
3115
|
-
|
|
3115
|
+
Vs()
|
|
3116
3116
|
], nt);
|
|
3117
3117
|
class He extends Event {
|
|
3118
3118
|
constructor(e) {
|
|
@@ -3233,6 +3233,26 @@ class Wr {
|
|
|
3233
3233
|
this.baseUrl = e;
|
|
3234
3234
|
}
|
|
3235
3235
|
}
|
|
3236
|
+
class Jr {
|
|
3237
|
+
constructor(e) {
|
|
3238
|
+
this.value = new D(e);
|
|
3239
|
+
}
|
|
3240
|
+
push(e) {
|
|
3241
|
+
this.value.next((s) => (s.push(e), s));
|
|
3242
|
+
}
|
|
3243
|
+
pop() {
|
|
3244
|
+
this.value.next((e) => (e.pop(), e));
|
|
3245
|
+
}
|
|
3246
|
+
async waitUntilQueueIsEmpty() {
|
|
3247
|
+
return new Promise((e) => {
|
|
3248
|
+
const s = this.value;
|
|
3249
|
+
function r(n) {
|
|
3250
|
+
n.length === 0 && (e(!0), s.detach(r));
|
|
3251
|
+
}
|
|
3252
|
+
this.value.attach(r);
|
|
3253
|
+
});
|
|
3254
|
+
}
|
|
3255
|
+
}
|
|
3236
3256
|
export {
|
|
3237
3257
|
tt as APIErrorHandlerRegistry,
|
|
3238
3258
|
fr as AbstractSubject,
|
|
@@ -3249,7 +3269,7 @@ export {
|
|
|
3249
3269
|
Ae as BaseModel,
|
|
3250
3270
|
os as BaseRequestBodyFilter,
|
|
3251
3271
|
cs as BaseTable,
|
|
3252
|
-
|
|
3272
|
+
D as BehaviorSubject,
|
|
3253
3273
|
je as CellType,
|
|
3254
3274
|
jr as ClientArraySearch,
|
|
3255
3275
|
gs as ClientSearch,
|
|
@@ -3263,7 +3283,7 @@ export {
|
|
|
3263
3283
|
Dt as DateFormats,
|
|
3264
3284
|
Se as DateTools,
|
|
3265
3285
|
Dr as DebounceService,
|
|
3266
|
-
|
|
3286
|
+
V as DialogDimensions,
|
|
3267
3287
|
zs as EveryAccess,
|
|
3268
3288
|
Js as EveryLevelAuthorizationDirective,
|
|
3269
3289
|
Mr as Feedback,
|
|
@@ -3285,10 +3305,11 @@ export {
|
|
|
3285
3305
|
ee as MinifiedSymbolModel,
|
|
3286
3306
|
Hr as OnEvent,
|
|
3287
3307
|
ds as Params,
|
|
3288
|
-
|
|
3289
|
-
|
|
3308
|
+
$r as Process,
|
|
3309
|
+
Tr as ProcessManager,
|
|
3310
|
+
Jr as Queue,
|
|
3290
3311
|
qs as RangeValue,
|
|
3291
|
-
|
|
3312
|
+
Vr as RouteGuard,
|
|
3292
3313
|
ht as Scheduler,
|
|
3293
3314
|
ar as SelectableTable,
|
|
3294
3315
|
pr as SelectableTableGenerator,
|
|
@@ -3316,7 +3337,7 @@ export {
|
|
|
3316
3337
|
lt as TableConstants,
|
|
3317
3338
|
hr as TableDestroy,
|
|
3318
3339
|
us as TableGenerator,
|
|
3319
|
-
|
|
3340
|
+
Ve as TableHeaderAlign,
|
|
3320
3341
|
dr as TableRowClick,
|
|
3321
3342
|
pt as ToastLocation,
|
|
3322
3343
|
kr as ToastMessage,
|
|
@@ -3342,7 +3363,7 @@ export {
|
|
|
3342
3363
|
Rr as useCrud,
|
|
3343
3364
|
hs as useData,
|
|
3344
3365
|
Lr as useDialogService,
|
|
3345
|
-
|
|
3366
|
+
xr as useDrawerService,
|
|
3346
3367
|
rr as useForm,
|
|
3347
3368
|
ps as useLoadingStatus,
|
|
3348
3369
|
fs as useParams,
|