@abp/ng.theme.shared 7.4.2 → 8.0.0-rc.2
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/esm2022/lib/adapters/date-time.adapter.mjs +44 -0
- package/esm2022/lib/adapters/date.adapter.mjs +41 -0
- package/esm2022/lib/adapters/index.mjs +4 -0
- package/esm2022/lib/adapters/time.adapter.mjs +36 -0
- package/esm2022/lib/components/breadcrumb/breadcrumb.component.mjs +5 -5
- package/esm2022/lib/components/breadcrumb-items/breadcrumb-items.component.mjs +4 -4
- package/esm2022/lib/components/button/button.component.mjs +5 -5
- package/esm2022/lib/components/card/card-body.component.mjs +4 -4
- package/esm2022/lib/components/card/card-footer.component.mjs +4 -4
- package/esm2022/lib/components/card/card-header.component.mjs +4 -4
- package/esm2022/lib/components/card/card-header.directive.mjs +4 -4
- package/esm2022/lib/components/card/card-img-top.directive.mjs +4 -4
- package/esm2022/lib/components/card/card-subtitle.directive.mjs +4 -4
- package/esm2022/lib/components/card/card-title.directive.mjs +4 -4
- package/esm2022/lib/components/card/card.component.mjs +4 -4
- package/esm2022/lib/components/card/card.module.mjs +5 -5
- package/esm2022/lib/components/checkbox/checkbox.component.mjs +8 -8
- package/esm2022/lib/components/confirmation/confirmation.component.mjs +6 -6
- package/esm2022/lib/components/form-input/form-input.component.mjs +8 -8
- package/esm2022/lib/components/http-error-wrapper/http-error-wrapper.component.mjs +5 -5
- package/esm2022/lib/components/internet-connection-status/internet-connection-status.component.mjs +4 -4
- package/esm2022/lib/components/loader-bar/loader-bar.component.mjs +5 -5
- package/esm2022/lib/components/loading/loading.component.mjs +4 -4
- package/esm2022/lib/components/modal/modal-close.directive.mjs +6 -6
- package/esm2022/lib/components/modal/modal-ref.service.mjs +4 -4
- package/esm2022/lib/components/modal/modal.component.mjs +6 -6
- package/esm2022/lib/components/password/password.component.mjs +14 -13
- package/esm2022/lib/components/toast/toast.component.mjs +4 -4
- package/esm2022/lib/components/toast-container/toast-container.component.mjs +4 -4
- package/esm2022/lib/directives/disabled.directive.mjs +30 -0
- package/esm2022/lib/directives/ellipsis.directive.mjs +7 -18
- package/esm2022/lib/directives/index.mjs +2 -1
- package/esm2022/lib/directives/loading.directive.mjs +5 -5
- package/esm2022/lib/directives/ngx-datatable-default.directive.mjs +7 -6
- package/esm2022/lib/directives/ngx-datatable-list.directive.mjs +7 -6
- package/esm2022/lib/directives/visible.directive.mjs +6 -5
- package/esm2022/lib/handlers/document-dir.handler.mjs +5 -5
- package/esm2022/lib/handlers/error.handler.mjs +5 -5
- package/esm2022/lib/models/nav-item.mjs +1 -1
- package/esm2022/lib/services/abp-format-error-handler.service.mjs +4 -4
- package/esm2022/lib/services/confirmation.service.mjs +5 -5
- package/esm2022/lib/services/create-error-component.service.mjs +5 -5
- package/esm2022/lib/services/nav-items.service.mjs +4 -4
- package/esm2022/lib/services/page-alert.service.mjs +5 -5
- package/esm2022/lib/services/router-error-handler.service.mjs +4 -4
- package/esm2022/lib/services/status-code-error-handler.service.mjs +4 -4
- package/esm2022/lib/services/tenant-resolve-error-handler.service.mjs +4 -4
- package/esm2022/lib/services/toaster.service.mjs +5 -5
- package/esm2022/lib/services/unknown-status-code-error-handler.service.mjs +4 -4
- package/esm2022/lib/services/user-menu.service.mjs +4 -4
- package/esm2022/lib/theme-shared.module.mjs +35 -32
- package/esm2022/lib/utils/date-parser-formatter.mjs +6 -6
- package/esm2022/public-api.mjs +2 -1
- package/esm2022/testing/lib/theme-shared-testing.module.mjs +5 -5
- package/fesm2022/abp-ng.theme.shared-testing.mjs +4 -4
- package/fesm2022/abp-ng.theme.shared-testing.mjs.map +1 -1
- package/fesm2022/abp-ng.theme.shared.mjs +352 -220
- package/fesm2022/abp-ng.theme.shared.mjs.map +1 -1
- package/lib/adapters/index.d.ts +3 -0
- package/lib/components/checkbox/checkbox.component.d.ts +1 -2
- package/lib/components/form-input/form-input.component.d.ts +1 -2
- package/lib/components/password/password.component.d.ts +5 -3
- package/{extensions/lib → lib}/directives/disabled.directive.d.ts +1 -1
- package/lib/directives/ellipsis.directive.d.ts +1 -6
- package/lib/directives/index.d.ts +1 -0
- package/lib/directives/ngx-datatable-default.directive.d.ts +1 -1
- package/lib/directives/ngx-datatable-list.directive.d.ts +1 -1
- package/lib/directives/visible.directive.d.ts +1 -1
- package/lib/services/page-alert.service.d.ts +0 -1
- package/lib/theme-shared.module.d.ts +17 -16
- package/package.json +3 -9
- package/public-api.d.ts +1 -0
- package/esm2022/extensions/abp-ng.theme.shared-extensions.mjs +0 -5
- package/esm2022/extensions/lib/adapters/date-time.adapter.mjs +0 -44
- package/esm2022/extensions/lib/adapters/date.adapter.mjs +0 -41
- package/esm2022/extensions/lib/adapters/time.adapter.mjs +0 -36
- package/esm2022/extensions/lib/components/abstract-actions/abstract-actions.component.mjs +0 -25
- package/esm2022/extensions/lib/components/date-time-picker/date-time-picker.component.mjs +0 -109
- package/esm2022/extensions/lib/components/extensible-form/extensible-form-prop.component.mjs +0 -198
- package/esm2022/extensions/lib/components/extensible-form/extensible-form.component.mjs +0 -73
- package/esm2022/extensions/lib/components/extensible-table/extensible-table.component.mjs +0 -139
- package/esm2022/extensions/lib/components/grid-actions/grid-actions.component.mjs +0 -39
- package/esm2022/extensions/lib/components/page-toolbar/page-toolbar.component.mjs +0 -38
- package/esm2022/extensions/lib/constants/extra-properties.mjs +0 -2
- package/esm2022/extensions/lib/directives/disabled.directive.mjs +0 -29
- package/esm2022/extensions/lib/directives/prop-data.directive.mjs +0 -41
- package/esm2022/extensions/lib/enums/components.mjs +0 -2
- package/esm2022/extensions/lib/enums/props.enum.mjs +0 -2
- package/esm2022/extensions/lib/models/actions.mjs +0 -48
- package/esm2022/extensions/lib/models/entity-actions.mjs +0 -31
- package/esm2022/extensions/lib/models/entity-props.mjs +0 -44
- package/esm2022/extensions/lib/models/form-props.mjs +0 -76
- package/esm2022/extensions/lib/models/internal/object-extensions.mjs +0 -2
- package/esm2022/extensions/lib/models/object-extensions.mjs +0 -3
- package/esm2022/extensions/lib/models/props.mjs +0 -54
- package/esm2022/extensions/lib/models/toolbar-actions.mjs +0 -44
- package/esm2022/extensions/lib/pipes/create-injector.pipe.mjs +0 -36
- package/esm2022/extensions/lib/services/extensions.service.mjs +0 -24
- package/esm2022/extensions/lib/tokens/extensible-form-view-provider.token.mjs +0 -3
- package/esm2022/extensions/lib/tokens/extensions.token.mjs +0 -12
- package/esm2022/extensions/lib/ui-extensions.module.mjs +0 -98
- package/esm2022/extensions/lib/utils/actions.util.mjs +0 -9
- package/esm2022/extensions/lib/utils/enum.util.mjs +0 -42
- package/esm2022/extensions/lib/utils/factory.util.mjs +0 -4
- package/esm2022/extensions/lib/utils/form-props.util.mjs +0 -51
- package/esm2022/extensions/lib/utils/localization.util.mjs +0 -13
- package/esm2022/extensions/lib/utils/props.util.mjs +0 -14
- package/esm2022/extensions/lib/utils/state.util.mjs +0 -126
- package/esm2022/extensions/lib/utils/typeahead.util.mjs +0 -52
- package/esm2022/extensions/lib/utils/validation.util.mjs +0 -11
- package/esm2022/extensions/public-api.mjs +0 -31
- package/extensions/index.d.ts +0 -5
- package/extensions/lib/components/abstract-actions/abstract-actions.component.d.ts +0 -12
- package/extensions/lib/components/date-time-picker/date-time-picker.component.d.ts +0 -16
- package/extensions/lib/components/extensible-form/extensible-form-prop.component.d.ts +0 -43
- package/extensions/lib/components/extensible-form/extensible-form.component.d.ts +0 -25
- package/extensions/lib/components/extensible-table/extensible-table.component.d.ts +0 -38
- package/extensions/lib/components/grid-actions/grid-actions.component.d.ts +0 -13
- package/extensions/lib/components/page-toolbar/page-toolbar.component.d.ts +0 -20
- package/extensions/lib/constants/extra-properties.d.ts +0 -1
- package/extensions/lib/directives/prop-data.directive.d.ts +0 -19
- package/extensions/lib/enums/components.d.ts +0 -3
- package/extensions/lib/enums/props.enum.d.ts +0 -16
- package/extensions/lib/models/actions.d.ts +0 -38
- package/extensions/lib/models/entity-actions.d.ts +0 -24
- package/extensions/lib/models/entity-props.d.ts +0 -30
- package/extensions/lib/models/form-props.d.ts +0 -59
- package/extensions/lib/models/internal/object-extensions.d.ts +0 -86
- package/extensions/lib/models/object-extensions.d.ts +0 -2
- package/extensions/lib/models/props.d.ts +0 -45
- package/extensions/lib/models/toolbar-actions.d.ts +0 -38
- package/extensions/lib/pipes/create-injector.pipe.d.ts +0 -8
- package/extensions/lib/services/extensions.service.d.ts +0 -14
- package/extensions/lib/tokens/extensible-form-view-provider.token.d.ts +0 -5
- package/extensions/lib/tokens/extensions.token.d.ts +0 -20
- package/extensions/lib/ui-extensions.module.d.ts +0 -24
- package/extensions/lib/utils/actions.util.d.ts +0 -7
- package/extensions/lib/utils/enum.util.d.ts +0 -7
- package/extensions/lib/utils/factory.util.d.ts +0 -1
- package/extensions/lib/utils/form-props.util.d.ts +0 -3
- package/extensions/lib/utils/localization.util.d.ts +0 -3
- package/extensions/lib/utils/props.util.d.ts +0 -9
- package/extensions/lib/utils/state.util.d.ts +0 -5
- package/extensions/lib/utils/typeahead.util.d.ts +0 -11
- package/extensions/lib/utils/validation.util.d.ts +0 -3
- package/extensions/public-api.d.ts +0 -30
- package/fesm2022/abp-ng.theme.shared-extensions.mjs +0 -1474
- package/fesm2022/abp-ng.theme.shared-extensions.mjs.map +0 -1
- /package/{extensions/lib → lib}/adapters/date-time.adapter.d.ts +0 -0
- /package/{extensions/lib → lib}/adapters/date.adapter.d.ts +0 -0
- /package/{extensions/lib → lib}/adapters/time.adapter.d.ts +0 -0
|
@@ -1,23 +1,133 @@
|
|
|
1
|
-
import { animation, style, animate, keyframes, trigger, state, transition, useAnimation, query } from '@angular/animations';
|
|
2
1
|
import * as i0 from '@angular/core';
|
|
3
|
-
import { Component, Input, ChangeDetectionStrategy, EventEmitter, Output, ViewChild, InjectionToken, Inject, inject, ViewEncapsulation,
|
|
2
|
+
import { Injectable, Component, Input, ChangeDetectionStrategy, EventEmitter, Output, ViewChild, InjectionToken, Inject, inject, ViewEncapsulation, Optional, ContentChild, Directive, HostListener, forwardRef, HostBinding, NgModule, Host, RendererFactory2, ComponentFactoryResolver, Injector, ApplicationRef, APP_INITIALIZER, LOCALE_ID } from '@angular/core';
|
|
4
3
|
import * as i1 from '@angular/common';
|
|
5
|
-
import { DOCUMENT, CommonModule, NgIf,
|
|
4
|
+
import { formatDate, DOCUMENT, CommonModule, NgIf, DatePipe } from '@angular/common';
|
|
5
|
+
import * as i3 from '@ng-bootstrap/ng-bootstrap';
|
|
6
|
+
import { NgbDateAdapter, NgbTimeAdapter, NgbInputDatepickerConfig, NgbTypeaheadConfig, NgbDateParserFormatter, NgbPaginationModule } from '@ng-bootstrap/ng-bootstrap';
|
|
7
|
+
import { style, keyframes, animate, animation, state, useAnimation, transition, trigger, query } from '@angular/animations';
|
|
6
8
|
import * as i1$1 from '@angular/router';
|
|
7
9
|
import { ResolveEnd } from '@angular/router';
|
|
8
10
|
import * as i2 from '@abp/ng.core';
|
|
9
11
|
import { getRoutePath, SubscriptionService, PROJECTION_STRATEGY, uuid, AbstractNgModelComponent, InternetConnectionService, LocalizationModule, LocalizationService, getLocaleDirection, DomInsertionService, CONTENT_STRATEGY, InternalStore, RouterEvents, AuthService, SessionStateService, HttpErrorReporterService, RoutesService, TENANT_NOT_FOUND_BY_NAME, CoreModule, noop, ConfigStateService } from '@abp/ng.core';
|
|
10
12
|
import { startWith, map, debounceTime, filter, takeUntil, distinctUntilChanged, take, catchError, switchMap } from 'rxjs/operators';
|
|
11
13
|
import { fromEvent, Subscription, combineLatest, timer, ReplaySubject, Subject, of, from, Observable, EMPTY, BehaviorSubject, throwError } from 'rxjs';
|
|
12
|
-
import * as i3 from '@ng-bootstrap/ng-bootstrap';
|
|
13
|
-
import { NgbInputDatepickerConfig, NgbTypeaheadConfig, NgbDateParserFormatter, NgbPaginationModule } from '@ng-bootstrap/ng-bootstrap';
|
|
14
14
|
import * as i2$1 from '@angular/forms';
|
|
15
|
-
import { NG_VALUE_ACCESSOR, Validators } from '@angular/forms';
|
|
16
|
-
import * as i3$1 from '@ngx-validate/core';
|
|
17
|
-
import { NgxValidateCoreModule, VALIDATION_BLUEPRINTS, VALIDATION_MAP_ERRORS_FN, defaultMapErrorsFn, VALIDATION_VALIDATE_ON_SUBMIT, normalizeDiacritics } from '@ngx-validate/core';
|
|
15
|
+
import { NG_VALUE_ACCESSOR, FormsModule, Validators } from '@angular/forms';
|
|
18
16
|
import * as i1$2 from '@swimlane/ngx-datatable';
|
|
19
17
|
import { ColumnMode, NgxDatatableModule } from '@swimlane/ngx-datatable';
|
|
20
18
|
import { HttpErrorResponse } from '@angular/common/http';
|
|
19
|
+
import { NgxValidateCoreModule, VALIDATION_BLUEPRINTS, VALIDATION_MAP_ERRORS_FN, defaultMapErrorsFn, VALIDATION_VALIDATE_ON_SUBMIT, normalizeDiacritics } from '@ngx-validate/core';
|
|
20
|
+
|
|
21
|
+
class DateTimeAdapter {
|
|
22
|
+
fromModel(value) {
|
|
23
|
+
if (!value)
|
|
24
|
+
return null;
|
|
25
|
+
const date = new Date(value);
|
|
26
|
+
if (isNaN(date))
|
|
27
|
+
return null;
|
|
28
|
+
this.value = {
|
|
29
|
+
year: date.getFullYear(),
|
|
30
|
+
month: date.getMonth() + 1,
|
|
31
|
+
day: date.getDate(),
|
|
32
|
+
hour: date.getHours(),
|
|
33
|
+
minute: date.getMinutes(),
|
|
34
|
+
second: date.getSeconds(),
|
|
35
|
+
};
|
|
36
|
+
return this.value;
|
|
37
|
+
}
|
|
38
|
+
toModel(value) {
|
|
39
|
+
if (!value)
|
|
40
|
+
return '';
|
|
41
|
+
const now = new Date();
|
|
42
|
+
const newValue = {
|
|
43
|
+
// TODO look for strict mode errors
|
|
44
|
+
year: now.getUTCFullYear(),
|
|
45
|
+
month: now.getMonth() + 1,
|
|
46
|
+
day: now.getDate(),
|
|
47
|
+
hour: 0,
|
|
48
|
+
minute: 0,
|
|
49
|
+
second: 0,
|
|
50
|
+
...this.value,
|
|
51
|
+
...value,
|
|
52
|
+
};
|
|
53
|
+
const date = new Date(newValue.year, newValue.month - 1, newValue.day, newValue.hour, newValue.minute, newValue.second);
|
|
54
|
+
return new Date(date).toISOString();
|
|
55
|
+
}
|
|
56
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: DateTimeAdapter, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
57
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: DateTimeAdapter }); }
|
|
58
|
+
}
|
|
59
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: DateTimeAdapter, decorators: [{
|
|
60
|
+
type: Injectable
|
|
61
|
+
}] });
|
|
62
|
+
|
|
63
|
+
class DateAdapter extends NgbDateAdapter {
|
|
64
|
+
fromModel(value) {
|
|
65
|
+
if (!value)
|
|
66
|
+
return null;
|
|
67
|
+
let date;
|
|
68
|
+
if (typeof value === 'string') {
|
|
69
|
+
date = this.dateOf(value);
|
|
70
|
+
}
|
|
71
|
+
else {
|
|
72
|
+
date = new Date(value);
|
|
73
|
+
}
|
|
74
|
+
if (isNaN(date))
|
|
75
|
+
return null;
|
|
76
|
+
return {
|
|
77
|
+
day: date.getDate(),
|
|
78
|
+
month: date.getMonth() + 1,
|
|
79
|
+
year: date.getFullYear(),
|
|
80
|
+
};
|
|
81
|
+
}
|
|
82
|
+
toModel(value) {
|
|
83
|
+
if (!value)
|
|
84
|
+
return '';
|
|
85
|
+
const date = new Date(value.year, value.month - 1, value.day);
|
|
86
|
+
const formattedDate = formatDate(date, 'yyyy-MM-dd', 'en');
|
|
87
|
+
return formattedDate;
|
|
88
|
+
}
|
|
89
|
+
dateOf(value) {
|
|
90
|
+
const dateUtc = new Date(Date.parse(value));
|
|
91
|
+
return new Date(dateUtc.getTime() + Math.abs(dateUtc.getTimezoneOffset() * 60000));
|
|
92
|
+
}
|
|
93
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: DateAdapter, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
94
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: DateAdapter }); }
|
|
95
|
+
}
|
|
96
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: DateAdapter, decorators: [{
|
|
97
|
+
type: Injectable
|
|
98
|
+
}] });
|
|
99
|
+
|
|
100
|
+
class TimeAdapter extends NgbTimeAdapter {
|
|
101
|
+
fromModel(value) {
|
|
102
|
+
if (!value)
|
|
103
|
+
return null;
|
|
104
|
+
const date = isTimeStr(value)
|
|
105
|
+
? new Date(0, 0, 1, ...value.split(':').map(Number))
|
|
106
|
+
: new Date(value);
|
|
107
|
+
if (isNaN(date))
|
|
108
|
+
return null;
|
|
109
|
+
return {
|
|
110
|
+
hour: date.getHours(),
|
|
111
|
+
minute: date.getMinutes(),
|
|
112
|
+
second: date.getSeconds(),
|
|
113
|
+
};
|
|
114
|
+
}
|
|
115
|
+
toModel(value) {
|
|
116
|
+
if (!value)
|
|
117
|
+
return '';
|
|
118
|
+
const date = new Date(0, 0, 1, value.hour, value.minute, value.second);
|
|
119
|
+
const formattedDate = formatDate(date, 'HH:mm', 'en');
|
|
120
|
+
return formattedDate;
|
|
121
|
+
}
|
|
122
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: TimeAdapter, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
123
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: TimeAdapter }); }
|
|
124
|
+
}
|
|
125
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: TimeAdapter, decorators: [{
|
|
126
|
+
type: Injectable
|
|
127
|
+
}] });
|
|
128
|
+
function isTimeStr(value) {
|
|
129
|
+
return /^((2[123])|[01][0-9])(:[0-5][0-9]){1,2}$/.test(String(value));
|
|
130
|
+
}
|
|
21
131
|
|
|
22
132
|
const bounceIn = animation([
|
|
23
133
|
style({ opacity: '0', display: '{{ display }}' }),
|
|
@@ -153,10 +263,10 @@ class BreadcrumbItemsComponent {
|
|
|
153
263
|
constructor() {
|
|
154
264
|
this.items = [];
|
|
155
265
|
}
|
|
156
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
157
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
266
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: BreadcrumbItemsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
267
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.4", type: BreadcrumbItemsComponent, selector: "abp-breadcrumb-items", inputs: { items: "items" }, ngImport: i0, template: "<ol class=\"breadcrumb\" *ngIf=\"items.length\">\r\n <li class=\"breadcrumb-item\">\r\n <a routerLink=\"/\"><i class=\"fa fa-home\" aria-hidden=\"true\"></i> </a>\r\n </li>\r\n <li\r\n *ngFor=\"let item of items; let last = last\"\r\n class=\"breadcrumb-item\"\r\n [class.active]=\"last\"\r\n aria-current=\"page\"\r\n >\r\n <ng-container\r\n *ngTemplateOutlet=\"item.path ? linkTemplate : textTemplate; context: { $implicit: item }\"\r\n ></ng-container>\r\n </li>\r\n</ol>\r\n\r\n<ng-template #linkTemplate let-item>\r\n <a [routerLink]=\"item.path\"> {{ item.name | abpLocalization }}</a>\r\n</ng-template>\r\n\r\n<ng-template #textTemplate let-item>\r\n {{ item.name | abpLocalization }}\r\n</ng-template>\r\n", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i1$1.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "pipe", type: i2.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
158
268
|
}
|
|
159
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
269
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: BreadcrumbItemsComponent, decorators: [{
|
|
160
270
|
type: Component,
|
|
161
271
|
args: [{ selector: 'abp-breadcrumb-items', template: "<ol class=\"breadcrumb\" *ngIf=\"items.length\">\r\n <li class=\"breadcrumb-item\">\r\n <a routerLink=\"/\"><i class=\"fa fa-home\" aria-hidden=\"true\"></i> </a>\r\n </li>\r\n <li\r\n *ngFor=\"let item of items; let last = last\"\r\n class=\"breadcrumb-item\"\r\n [class.active]=\"last\"\r\n aria-current=\"page\"\r\n >\r\n <ng-container\r\n *ngTemplateOutlet=\"item.path ? linkTemplate : textTemplate; context: { $implicit: item }\"\r\n ></ng-container>\r\n </li>\r\n</ol>\r\n\r\n<ng-template #linkTemplate let-item>\r\n <a [routerLink]=\"item.path\"> {{ item.name | abpLocalization }}</a>\r\n</ng-template>\r\n\r\n<ng-template #textTemplate let-item>\r\n {{ item.name | abpLocalization }}\r\n</ng-template>\r\n" }]
|
|
162
272
|
}], propDecorators: { items: [{
|
|
@@ -187,13 +297,13 @@ class BreadcrumbComponent {
|
|
|
187
297
|
}
|
|
188
298
|
});
|
|
189
299
|
}
|
|
190
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
191
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
300
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: BreadcrumbComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i1$1.Router }, { token: i2.RoutesService }, { token: i2.SubscriptionService }, { token: i2.RouterEvents }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
301
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.4", type: BreadcrumbComponent, selector: "abp-breadcrumb", providers: [SubscriptionService], ngImport: i0, template: "<abp-breadcrumb-items [items]=\"segments\"></abp-breadcrumb-items>\r\n", dependencies: [{ kind: "component", type: BreadcrumbItemsComponent, selector: "abp-breadcrumb-items", inputs: ["items"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
192
302
|
}
|
|
193
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
303
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: BreadcrumbComponent, decorators: [{
|
|
194
304
|
type: Component,
|
|
195
305
|
args: [{ selector: 'abp-breadcrumb', changeDetection: ChangeDetectionStrategy.OnPush, providers: [SubscriptionService], template: "<abp-breadcrumb-items [items]=\"segments\"></abp-breadcrumb-items>\r\n" }]
|
|
196
|
-
}], ctorParameters:
|
|
306
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i1$1.Router }, { type: i2.RoutesService }, { type: i2.SubscriptionService }, { type: i2.RouterEvents }] });
|
|
197
307
|
function isAdministration(route) {
|
|
198
308
|
return route.name === "AbpUiNavigation::Menu:Administration" /* eThemeSharedRouteNames.Administration */;
|
|
199
309
|
}
|
|
@@ -226,8 +336,8 @@ class ButtonComponent {
|
|
|
226
336
|
});
|
|
227
337
|
}
|
|
228
338
|
}
|
|
229
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
230
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
339
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ButtonComponent, deps: [{ token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
340
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.4", type: ButtonComponent, selector: "abp-button", inputs: { buttonId: "buttonId", buttonClass: "buttonClass", buttonType: "buttonType", formName: "formName", iconClass: "iconClass", loading: "loading", disabled: "disabled", attributes: "attributes" }, outputs: { click: "click", focus: "focus", blur: "blur", abpClick: "abpClick", abpFocus: "abpFocus", abpBlur: "abpBlur" }, viewQueries: [{ propertyName: "buttonRef", first: true, predicate: ["button"], descendants: true, static: true }], ngImport: i0, template: `
|
|
231
341
|
<button
|
|
232
342
|
#button
|
|
233
343
|
[id]="buttonId"
|
|
@@ -243,7 +353,7 @@ class ButtonComponent {
|
|
|
243
353
|
</button>
|
|
244
354
|
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.StopPropagationDirective, selector: "[click.stop]", outputs: ["click.stop"] }] }); }
|
|
245
355
|
}
|
|
246
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
356
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ButtonComponent, decorators: [{
|
|
247
357
|
type: Component,
|
|
248
358
|
args: [{
|
|
249
359
|
selector: 'abp-button',
|
|
@@ -263,7 +373,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
263
373
|
</button>
|
|
264
374
|
`,
|
|
265
375
|
}]
|
|
266
|
-
}], ctorParameters:
|
|
376
|
+
}], ctorParameters: () => [{ type: i0.Renderer2 }], propDecorators: { buttonId: [{
|
|
267
377
|
type: Input
|
|
268
378
|
}], buttonClass: [{
|
|
269
379
|
type: Input
|
|
@@ -344,16 +454,16 @@ class ConfirmationComponent {
|
|
|
344
454
|
isIconTemplateExits({ options }) {
|
|
345
455
|
return !!(options && options.iconTemplate);
|
|
346
456
|
}
|
|
347
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
348
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
457
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ConfirmationComponent, deps: [{ token: CONFIRMATION_ICONS }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
458
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.4", type: ConfirmationComponent, selector: "abp-confirmation", ngImport: i0, template: "<div class=\"confirmation\" *ngIf=\"confirmation$ | async as data\">\r\n <div\r\n class=\"confirmation-backdrop\"\r\n (click)=\"data.options?.dismissible ? close(dismiss) : null\"\r\n ></div>\r\n <div class=\"confirmation-dialog\">\r\n <div class=\"icon-container\" [ngClass]=\"data.severity\" *ngIf=\"data.severity || isCustomIconExists(data)\">\r\n <div [outerHTML]=\"data.options.iconTemplate\" *ngIf=\"isIconTemplateExits(data); else iconHolder\" ></div>\r\n <ng-template #iconHolder>\r\n <i class=\"icon\" [ngClass]=\"getIconClass(data)\"></i>\r\n </ng-template>\r\n </div>\r\n <div class=\"content\">\r\n <h1\r\n class=\"title\"\r\n *ngIf=\"data.title\"\r\n [innerHTML]=\"data.title | abpLocalization: data.options?.titleLocalizationParams\"\r\n ></h1>\r\n <p\r\n class=\"message\"\r\n *ngIf=\"data.message\"\r\n [innerHTML]=\"data.message | abpLocalization: data.options?.messageLocalizationParams\"\r\n ></p>\r\n </div>\r\n <div class=\"footer\">\r\n <button\r\n id=\"cancel\"\r\n class=\"confirmation-button confirmation-button--reject\"\r\n [innerHTML]=\"data.options?.cancelText || 'AbpUi::Cancel' | abpLocalization\"\r\n *ngIf=\"!data?.options?.hideCancelBtn\"\r\n (click)=\"close(reject)\"\r\n ></button>\r\n <button\r\n id=\"confirm\"\r\n class=\"confirmation-button confirmation-button--approve\"\r\n [innerHTML]=\"data.options?.yesText || 'AbpUi::Yes' | abpLocalization\"\r\n *ngIf=\"!data?.options?.hideYesBtn\"\r\n (click)=\"close(confirm)\"\r\n ></button>\r\n </div>\r\n </div>\r\n</div>\r\n", styles: [".confirmation{position:fixed;inset:0;display:flex;align-items:center;justify-content:center;z-index:1060}.confirmation .confirmation-backdrop{position:fixed;top:0;left:0;width:100vw;height:100vh;z-index:1061!important}.confirmation .confirmation-dialog{display:flex;flex-direction:column;margin:20px auto;padding:0;width:450px;min-height:300px;z-index:1062!important}@media screen and (max-width: 500px){.confirmation .confirmation-dialog{width:90vw}}.confirmation .confirmation-dialog .icon-container{display:flex;align-items:center;justify-content:center;margin:0 0 10px;padding:20px}.confirmation .confirmation-dialog .icon-container .icon{width:100px;height:100px;stroke-width:1;font-size:80px;text-align:center}.confirmation .confirmation-dialog .content{flex-grow:1;display:block}.confirmation .confirmation-dialog .content .title{display:block;margin:0;padding:0;font-size:27px;font-weight:600;text-align:center}.confirmation .confirmation-dialog .content .message{display:block;margin:10px auto;padding:20px;font-size:16px;font-weight:400;text-align:center}.confirmation .confirmation-dialog .footer{display:flex;align-items:center;justify-content:flex-end;margin:10px 0 0;padding:20px;width:100%}.confirmation .confirmation-dialog .footer .confirmation-button{display:inline-block;margin:0 5px;padding:10px 20px;border:none;border-radius:6px;font-size:14px;font-weight:600}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "pipe", type: i2.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
349
459
|
}
|
|
350
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
460
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ConfirmationComponent, decorators: [{
|
|
351
461
|
type: Component,
|
|
352
462
|
args: [{ selector: 'abp-confirmation', template: "<div class=\"confirmation\" *ngIf=\"confirmation$ | async as data\">\r\n <div\r\n class=\"confirmation-backdrop\"\r\n (click)=\"data.options?.dismissible ? close(dismiss) : null\"\r\n ></div>\r\n <div class=\"confirmation-dialog\">\r\n <div class=\"icon-container\" [ngClass]=\"data.severity\" *ngIf=\"data.severity || isCustomIconExists(data)\">\r\n <div [outerHTML]=\"data.options.iconTemplate\" *ngIf=\"isIconTemplateExits(data); else iconHolder\" ></div>\r\n <ng-template #iconHolder>\r\n <i class=\"icon\" [ngClass]=\"getIconClass(data)\"></i>\r\n </ng-template>\r\n </div>\r\n <div class=\"content\">\r\n <h1\r\n class=\"title\"\r\n *ngIf=\"data.title\"\r\n [innerHTML]=\"data.title | abpLocalization: data.options?.titleLocalizationParams\"\r\n ></h1>\r\n <p\r\n class=\"message\"\r\n *ngIf=\"data.message\"\r\n [innerHTML]=\"data.message | abpLocalization: data.options?.messageLocalizationParams\"\r\n ></p>\r\n </div>\r\n <div class=\"footer\">\r\n <button\r\n id=\"cancel\"\r\n class=\"confirmation-button confirmation-button--reject\"\r\n [innerHTML]=\"data.options?.cancelText || 'AbpUi::Cancel' | abpLocalization\"\r\n *ngIf=\"!data?.options?.hideCancelBtn\"\r\n (click)=\"close(reject)\"\r\n ></button>\r\n <button\r\n id=\"confirm\"\r\n class=\"confirmation-button confirmation-button--approve\"\r\n [innerHTML]=\"data.options?.yesText || 'AbpUi::Yes' | abpLocalization\"\r\n *ngIf=\"!data?.options?.hideYesBtn\"\r\n (click)=\"close(confirm)\"\r\n ></button>\r\n </div>\r\n </div>\r\n</div>\r\n", styles: [".confirmation{position:fixed;inset:0;display:flex;align-items:center;justify-content:center;z-index:1060}.confirmation .confirmation-backdrop{position:fixed;top:0;left:0;width:100vw;height:100vh;z-index:1061!important}.confirmation .confirmation-dialog{display:flex;flex-direction:column;margin:20px auto;padding:0;width:450px;min-height:300px;z-index:1062!important}@media screen and (max-width: 500px){.confirmation .confirmation-dialog{width:90vw}}.confirmation .confirmation-dialog .icon-container{display:flex;align-items:center;justify-content:center;margin:0 0 10px;padding:20px}.confirmation .confirmation-dialog .icon-container .icon{width:100px;height:100px;stroke-width:1;font-size:80px;text-align:center}.confirmation .confirmation-dialog .content{flex-grow:1;display:block}.confirmation .confirmation-dialog .content .title{display:block;margin:0;padding:0;font-size:27px;font-weight:600;text-align:center}.confirmation .confirmation-dialog .content .message{display:block;margin:10px auto;padding:20px;font-size:16px;font-weight:400;text-align:center}.confirmation .confirmation-dialog .footer{display:flex;align-items:center;justify-content:flex-end;margin:10px 0 0;padding:20px;width:100%}.confirmation .confirmation-dialog .footer .confirmation-button{display:inline-block;margin:0 5px;padding:10px 20px;border:none;border-radius:6px;font-size:14px;font-weight:600}\n"] }]
|
|
353
|
-
}], ctorParameters:
|
|
463
|
+
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
354
464
|
type: Inject,
|
|
355
465
|
args: [CONFIRMATION_ICONS]
|
|
356
|
-
}] }]
|
|
466
|
+
}] }] });
|
|
357
467
|
|
|
358
468
|
class HttpErrorWrapperComponent {
|
|
359
469
|
get statusText() {
|
|
@@ -397,13 +507,13 @@ class HttpErrorWrapperComponent {
|
|
|
397
507
|
this.destroy$.next();
|
|
398
508
|
this.destroy$.complete();
|
|
399
509
|
}
|
|
400
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
401
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
510
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: HttpErrorWrapperComponent, deps: [{ token: i2.SubscriptionService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
511
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.4", type: HttpErrorWrapperComponent, selector: "abp-http-error-wrapper", providers: [SubscriptionService], viewQueries: [{ propertyName: "containerRef", first: true, predicate: ["container"], descendants: true }], ngImport: i0, template: "<div\r\n #container\r\n id=\"abp-http-error-container\"\r\n class=\"error\"\r\n [style.backgroundColor]=\"backgroundColor\"\r\n>\r\n <button\r\n *ngIf=\"!hideCloseIcon\"\r\n id=\"abp-close-button\"\r\n type=\"button\"\r\n class=\"btn-close me-2\"\r\n (click)=\"destroy()\"\r\n ></button>\r\n\r\n <div *ngIf=\"!customComponent\" class=\"row centered\">\r\n <div class=\"col-md-12\">\r\n <div class=\"error-template\">\r\n <h1>{{ statusText }} {{ title | abpLocalization }}</h1>\r\n <div class=\"error-details\">\r\n {{ details | abpLocalization }}\r\n </div>\r\n <div class=\"error-actions\">\r\n <a\r\n *ngIf=\"isHomeShow\"\r\n (click)=\"destroy()\"\r\n routerLink=\"/\"\r\n class=\"btn btn-primary btn-md mt-2\"\r\n ><span class=\"glyphicon glyphicon-home\"></span>\r\n {{ { key: '::Menu:Home', defaultValue: 'Home' } | abpLocalization }}\r\n </a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n", styles: [".error{position:fixed;top:0;width:100vw;height:100vh;z-index:999999}.centered{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%)}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "pipe", type: i2.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
402
512
|
}
|
|
403
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
513
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: HttpErrorWrapperComponent, decorators: [{
|
|
404
514
|
type: Component,
|
|
405
515
|
args: [{ selector: 'abp-http-error-wrapper', providers: [SubscriptionService], template: "<div\r\n #container\r\n id=\"abp-http-error-container\"\r\n class=\"error\"\r\n [style.backgroundColor]=\"backgroundColor\"\r\n>\r\n <button\r\n *ngIf=\"!hideCloseIcon\"\r\n id=\"abp-close-button\"\r\n type=\"button\"\r\n class=\"btn-close me-2\"\r\n (click)=\"destroy()\"\r\n ></button>\r\n\r\n <div *ngIf=\"!customComponent\" class=\"row centered\">\r\n <div class=\"col-md-12\">\r\n <div class=\"error-template\">\r\n <h1>{{ statusText }} {{ title | abpLocalization }}</h1>\r\n <div class=\"error-details\">\r\n {{ details | abpLocalization }}\r\n </div>\r\n <div class=\"error-actions\">\r\n <a\r\n *ngIf=\"isHomeShow\"\r\n (click)=\"destroy()\"\r\n routerLink=\"/\"\r\n class=\"btn btn-primary btn-md mt-2\"\r\n ><span class=\"glyphicon glyphicon-home\"></span>\r\n {{ { key: '::Menu:Home', defaultValue: 'Home' } | abpLocalization }}\r\n </a>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n", styles: [".error{position:fixed;top:0;width:100vw;height:100vh;z-index:999999}.centered{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%)}\n"] }]
|
|
406
|
-
}], ctorParameters:
|
|
516
|
+
}], ctorParameters: () => [{ type: i2.SubscriptionService }], propDecorators: { containerRef: [{
|
|
407
517
|
type: ViewChild,
|
|
408
518
|
args: ['container', { static: false }]
|
|
409
519
|
}] } });
|
|
@@ -483,8 +593,8 @@ class LoaderBarComponent {
|
|
|
483
593
|
return;
|
|
484
594
|
this.timer = timer(this.stopDelay).subscribe(this.clearProgress);
|
|
485
595
|
}
|
|
486
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
487
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
596
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: LoaderBarComponent, deps: [{ token: i1$1.Router }, { token: i0.ChangeDetectorRef }, { token: i2.SubscriptionService }, { token: i2.HttpWaitService }, { token: i2.RouterWaitService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
597
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.4", type: LoaderBarComponent, selector: "abp-loader-bar", inputs: { isLoading: "isLoading", containerClass: "containerClass", color: "color" }, providers: [SubscriptionService], ngImport: i0, template: `
|
|
488
598
|
<div id="abp-loader-bar" [ngClass]="containerClass" [class.is-loading]="isLoading">
|
|
489
599
|
<div
|
|
490
600
|
class="abp-progress"
|
|
@@ -498,7 +608,7 @@ class LoaderBarComponent {
|
|
|
498
608
|
</div>
|
|
499
609
|
`, isInline: true, styles: [".abp-loader-bar{left:0;opacity:0;position:fixed;top:0;transition:opacity .4s linear .4s;z-index:99999}.abp-loader-bar.is-loading{opacity:1;transition:none}.abp-loader-bar .abp-progress{height:3px;left:0;position:fixed;top:0}.abp-loader-bar .abp-progress.progressing{transition:width .4s ease}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
|
|
500
610
|
}
|
|
501
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
611
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: LoaderBarComponent, decorators: [{
|
|
502
612
|
type: Component,
|
|
503
613
|
args: [{ selector: 'abp-loader-bar', template: `
|
|
504
614
|
<div id="abp-loader-bar" [ngClass]="containerClass" [class.is-loading]="isLoading">
|
|
@@ -513,7 +623,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
513
623
|
></div>
|
|
514
624
|
</div>
|
|
515
625
|
`, providers: [SubscriptionService], styles: [".abp-loader-bar{left:0;opacity:0;position:fixed;top:0;transition:opacity .4s linear .4s;z-index:99999}.abp-loader-bar.is-loading{opacity:1;transition:none}.abp-loader-bar .abp-progress{height:3px;left:0;position:fixed;top:0}.abp-loader-bar .abp-progress.progressing{transition:width .4s ease}\n"] }]
|
|
516
|
-
}], ctorParameters:
|
|
626
|
+
}], ctorParameters: () => [{ type: i1$1.Router }, { type: i0.ChangeDetectorRef }, { type: i2.SubscriptionService }, { type: i2.HttpWaitService }, { type: i2.RouterWaitService }], propDecorators: { isLoading: [{
|
|
517
627
|
type: Input
|
|
518
628
|
}], containerClass: [{
|
|
519
629
|
type: Input
|
|
@@ -522,14 +632,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
522
632
|
}] } });
|
|
523
633
|
|
|
524
634
|
class LoadingComponent {
|
|
525
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
526
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
635
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: LoadingComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
636
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.4", type: LoadingComponent, selector: "abp-loading", ngImport: i0, template: `
|
|
527
637
|
<div class="abp-loading">
|
|
528
638
|
<i class="fa fa-spinner fa-pulse abp-spinner" aria-hidden="true"></i>
|
|
529
639
|
</div>
|
|
530
640
|
`, isInline: true, styles: [".abp-loading{position:absolute;width:100%;height:100%;top:0;left:0;z-index:1040}.abp-loading .abp-spinner{position:absolute;top:50%;left:50%;font-size:14px;transform:translate(-50%) translateY(-50%)}\n"], encapsulation: i0.ViewEncapsulation.None }); }
|
|
531
641
|
}
|
|
532
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
642
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: LoadingComponent, decorators: [{
|
|
533
643
|
type: Component,
|
|
534
644
|
args: [{ selector: 'abp-loading', template: `
|
|
535
645
|
<div class="abp-loading">
|
|
@@ -590,13 +700,13 @@ class ConfirmationService {
|
|
|
590
700
|
this.clear();
|
|
591
701
|
});
|
|
592
702
|
}
|
|
593
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
594
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
703
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ConfirmationService, deps: [{ token: i2.ContentProjectionService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
704
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ConfirmationService, providedIn: 'root' }); }
|
|
595
705
|
}
|
|
596
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
706
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ConfirmationService, decorators: [{
|
|
597
707
|
type: Injectable,
|
|
598
708
|
args: [{ providedIn: 'root' }]
|
|
599
|
-
}], ctorParameters:
|
|
709
|
+
}], ctorParameters: () => [{ type: i2.ContentProjectionService }] });
|
|
600
710
|
|
|
601
711
|
const SUPPRESS_UNSAVED_CHANGES_WARNING = new InjectionToken('SUPPRESS_UNSAVED_CHANGES_WARNING');
|
|
602
712
|
|
|
@@ -616,10 +726,10 @@ class ModalRefService {
|
|
|
616
726
|
dismissAll(mode) {
|
|
617
727
|
this.modalRefs.forEach(modal => modal.dismiss(mode));
|
|
618
728
|
}
|
|
619
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
620
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
729
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ModalRefService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
730
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ModalRefService, providedIn: 'root' }); }
|
|
621
731
|
}
|
|
622
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
732
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ModalRefService, decorators: [{
|
|
623
733
|
type: Injectable,
|
|
624
734
|
args: [{ providedIn: 'root' }]
|
|
625
735
|
}] });
|
|
@@ -753,18 +863,18 @@ class ModalComponent {
|
|
|
753
863
|
});
|
|
754
864
|
this.init.emit();
|
|
755
865
|
}
|
|
756
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
757
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
866
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ModalComponent, deps: [{ token: ConfirmationService }, { token: i2.SubscriptionService }, { token: SUPPRESS_UNSAVED_CHANGES_WARNING, optional: true }, { token: i3.NgbModal }, { token: ModalRefService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
867
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.4", type: ModalComponent, selector: "abp-modal", inputs: { visible: "visible", busy: "busy", options: "options", suppressUnsavedChangesWarning: "suppressUnsavedChangesWarning" }, outputs: { visibleChange: "visibleChange", init: "init", appear: "appear", disappear: "disappear" }, providers: [SubscriptionService], queries: [{ propertyName: "abpHeader", first: true, predicate: ["abpHeader"], descendants: true }, { propertyName: "abpBody", first: true, predicate: ["abpBody"], descendants: true }, { propertyName: "abpFooter", first: true, predicate: ["abpFooter"], descendants: true }, { propertyName: "abpSubmit", first: true, predicate: ButtonComponent, descendants: true, read: ButtonComponent }], viewQueries: [{ propertyName: "modalContent", first: true, predicate: ["modalContent"], descendants: true }], ngImport: i0, template: "<ng-content></ng-content>\r\n\r\n<ng-template #modalContent let-modal>\r\n <div *ngIf=\"abpHeader\" id=\"abp-modal-header\" class=\"modal-header abp-modal-header\">\r\n <ng-container *ngTemplateOutlet=\"abpHeader\"></ng-container>\r\n \u200B\r\n <button\r\n id=\"abp-modal-close-button\"\r\n type=\"button\"\r\n class=\"btn-sm btn-close\"\r\n aria-label=\"Close\"\r\n (click)=\"modal.dismiss()\"\r\n ></button>\r\n </div>\r\n <div *ngIf=\"abpBody\" id=\"abp-modal-body\" class=\"modal-body\">\r\n <ng-container *ngTemplateOutlet=\"abpBody\"></ng-container>\r\n </div>\r\n <div *ngIf=\"abpFooter\" id=\"abp-modal-footer\" class=\"modal-footer\">\r\n <ng-container *ngTemplateOutlet=\"abpFooter\"></ng-container>\r\n </div>\r\n</ng-template>\r\n", styles: [".modal.show{display:block!important}.modal-backdrop{opacity:.8}.modal::-webkit-scrollbar{width:7px}.modal::-webkit-scrollbar-track{background:#ddd}.modal::-webkit-scrollbar-thumb{background:#8a8686}.modal-dialog{z-index:1050}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
758
868
|
}
|
|
759
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
869
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ModalComponent, decorators: [{
|
|
760
870
|
type: Component,
|
|
761
871
|
args: [{ selector: 'abp-modal', providers: [SubscriptionService], template: "<ng-content></ng-content>\r\n\r\n<ng-template #modalContent let-modal>\r\n <div *ngIf=\"abpHeader\" id=\"abp-modal-header\" class=\"modal-header abp-modal-header\">\r\n <ng-container *ngTemplateOutlet=\"abpHeader\"></ng-container>\r\n \u200B\r\n <button\r\n id=\"abp-modal-close-button\"\r\n type=\"button\"\r\n class=\"btn-sm btn-close\"\r\n aria-label=\"Close\"\r\n (click)=\"modal.dismiss()\"\r\n ></button>\r\n </div>\r\n <div *ngIf=\"abpBody\" id=\"abp-modal-body\" class=\"modal-body\">\r\n <ng-container *ngTemplateOutlet=\"abpBody\"></ng-container>\r\n </div>\r\n <div *ngIf=\"abpFooter\" id=\"abp-modal-footer\" class=\"modal-footer\">\r\n <ng-container *ngTemplateOutlet=\"abpFooter\"></ng-container>\r\n </div>\r\n</ng-template>\r\n", styles: [".modal.show{display:block!important}.modal-backdrop{opacity:.8}.modal::-webkit-scrollbar{width:7px}.modal::-webkit-scrollbar-track{background:#ddd}.modal::-webkit-scrollbar-thumb{background:#8a8686}.modal-dialog{z-index:1050}\n"] }]
|
|
762
|
-
}], ctorParameters:
|
|
872
|
+
}], ctorParameters: () => [{ type: ConfirmationService }, { type: i2.SubscriptionService }, { type: undefined, decorators: [{
|
|
763
873
|
type: Optional
|
|
764
874
|
}, {
|
|
765
875
|
type: Inject,
|
|
766
876
|
args: [SUPPRESS_UNSAVED_CHANGES_WARNING]
|
|
767
|
-
}] }, { type: i3.NgbModal }, { type: ModalRefService }]
|
|
877
|
+
}] }, { type: i3.NgbModal }, { type: ModalRefService }], propDecorators: { visible: [{
|
|
768
878
|
type: Input
|
|
769
879
|
}], busy: [{
|
|
770
880
|
type: Input
|
|
@@ -807,15 +917,15 @@ class ModalCloseDirective {
|
|
|
807
917
|
onClick() {
|
|
808
918
|
this.modal?.close();
|
|
809
919
|
}
|
|
810
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
811
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
920
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ModalCloseDirective, deps: [{ token: ModalComponent, optional: true }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
921
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.4", type: ModalCloseDirective, selector: "[abpClose]", host: { listeners: { "click": "onClick()" } }, ngImport: i0 }); }
|
|
812
922
|
}
|
|
813
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
923
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ModalCloseDirective, decorators: [{
|
|
814
924
|
type: Directive,
|
|
815
925
|
args: [{ selector: '[abpClose]' }]
|
|
816
|
-
}], ctorParameters:
|
|
926
|
+
}], ctorParameters: () => [{ type: ModalComponent, decorators: [{
|
|
817
927
|
type: Optional
|
|
818
|
-
}] }]
|
|
928
|
+
}] }], propDecorators: { onClick: [{
|
|
819
929
|
type: HostListener,
|
|
820
930
|
args: ['click']
|
|
821
931
|
}] } });
|
|
@@ -859,10 +969,10 @@ class ToastComponent {
|
|
|
859
969
|
if (this.toast.options?.tapToDismiss)
|
|
860
970
|
this.close();
|
|
861
971
|
}
|
|
862
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
863
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
972
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ToastComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
973
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.4", type: ToastComponent, selector: "abp-toast", inputs: { toast: "toast" }, outputs: { remove: "remove" }, ngImport: i0, template: "<div class=\"abp-toast\" [ngClass]=\"severityClass\" (click)=\"tap()\">\r\n <div class=\"abp-toast-icon\">\r\n <i class=\"fa icon\" [ngClass]=\"iconClass\" aria-hidden=\"true\"></i>\r\n </div>\r\n <div class=\"abp-toast-content\">\r\n <button class=\"abp-toast-close-button\" (click)=\"close()\" *ngIf=\"toast.options?.closable\">\r\n <i class=\"fa fa-times\" aria-hidden=\"true\"></i>\r\n </button>\r\n <div class=\"abp-toast-title\">\r\n {{ toast.title | abpLocalization: toast.options?.titleLocalizationParams }}\r\n </div>\r\n <p\r\n class=\"abp-toast-message\"\r\n [innerHTML]=\"toast.message | abpLocalization: toast.options?.messageLocalizationParams\"\r\n ></p>\r\n </div>\r\n</div>\r\n", styles: [".abp-toast{display:grid;grid-template-columns:50px 1fr;gap:10px;margin:5px 0;padding:10px;border-radius:0;width:350px;-webkit-user-select:none;user-select:none;z-index:9999;border:2px solid #f0f0f0;background-color:#f0f0f0;color:#000;box-shadow:0 0 10px -5px #0006;opacity:1}.abp-toast:hover{border:2px solid #e3e3e3;background-color:#e3e3e3;box-shadow:0 0 15px -5px #0006}.abp-toast.abp-toast-success{border:2px solid #51a351;background-color:#51a351;color:#fff;box-shadow:0 0 10px -5px #0006}.abp-toast.abp-toast-success:hover{border:2px solid #499249;background-color:#499249;box-shadow:0 0 15px -5px #0006}.abp-toast.abp-toast-info{border:2px solid #2f96b4;background-color:#2f96b4;color:#fff;box-shadow:0 0 10px -5px #0006}.abp-toast.abp-toast-info:hover{border:2px solid #2a85a0;background-color:#2a85a0;box-shadow:0 0 15px -5px #0006}.abp-toast.abp-toast-warning{border:2px solid #f89406;background-color:#f89406;color:#fff;box-shadow:0 0 10px -5px #0006}.abp-toast.abp-toast-warning:hover{border:2px solid #df8505;background-color:#df8505;box-shadow:0 0 15px -5px #0006}.abp-toast.abp-toast-error{border:2px solid #bd362f;background-color:#bd362f;color:#fff;box-shadow:0 0 10px -5px #0006}.abp-toast.abp-toast-error:hover{border:2px solid #a9302a;background-color:#a9302a;box-shadow:0 0 15px -5px #0006}.abp-toast .abp-toast-icon{display:flex;align-items:center;justify-content:center}.abp-toast .abp-toast-icon .icon{font-size:36px}.abp-toast .abp-toast-content{position:relative;display:flex;align-self:center;word-break:break-word}.abp-toast .abp-toast-content .abp-toast-close-button{position:absolute;top:0;right:0;display:flex;align-items:center;justify-content:center;margin:0;padding:0 5px 0 0;width:25px;height:25px;border:none;border-radius:50%;background:transparent;color:inherit}.abp-toast .abp-toast-content .abp-toast-close-button:focus{outline:none}.abp-toast .abp-toast-content .abp-toast-title{margin:0;padding:0;font-size:1rem;font-weight:600}.abp-toast .abp-toast-content .abp-toast-message{margin:0;padding:0;max-width:240px}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i2.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
864
974
|
}
|
|
865
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
975
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ToastComponent, decorators: [{
|
|
866
976
|
type: Component,
|
|
867
977
|
args: [{ selector: 'abp-toast', template: "<div class=\"abp-toast\" [ngClass]=\"severityClass\" (click)=\"tap()\">\r\n <div class=\"abp-toast-icon\">\r\n <i class=\"fa icon\" [ngClass]=\"iconClass\" aria-hidden=\"true\"></i>\r\n </div>\r\n <div class=\"abp-toast-content\">\r\n <button class=\"abp-toast-close-button\" (click)=\"close()\" *ngIf=\"toast.options?.closable\">\r\n <i class=\"fa fa-times\" aria-hidden=\"true\"></i>\r\n </button>\r\n <div class=\"abp-toast-title\">\r\n {{ toast.title | abpLocalization: toast.options?.titleLocalizationParams }}\r\n </div>\r\n <p\r\n class=\"abp-toast-message\"\r\n [innerHTML]=\"toast.message | abpLocalization: toast.options?.messageLocalizationParams\"\r\n ></p>\r\n </div>\r\n</div>\r\n", styles: [".abp-toast{display:grid;grid-template-columns:50px 1fr;gap:10px;margin:5px 0;padding:10px;border-radius:0;width:350px;-webkit-user-select:none;user-select:none;z-index:9999;border:2px solid #f0f0f0;background-color:#f0f0f0;color:#000;box-shadow:0 0 10px -5px #0006;opacity:1}.abp-toast:hover{border:2px solid #e3e3e3;background-color:#e3e3e3;box-shadow:0 0 15px -5px #0006}.abp-toast.abp-toast-success{border:2px solid #51a351;background-color:#51a351;color:#fff;box-shadow:0 0 10px -5px #0006}.abp-toast.abp-toast-success:hover{border:2px solid #499249;background-color:#499249;box-shadow:0 0 15px -5px #0006}.abp-toast.abp-toast-info{border:2px solid #2f96b4;background-color:#2f96b4;color:#fff;box-shadow:0 0 10px -5px #0006}.abp-toast.abp-toast-info:hover{border:2px solid #2a85a0;background-color:#2a85a0;box-shadow:0 0 15px -5px #0006}.abp-toast.abp-toast-warning{border:2px solid #f89406;background-color:#f89406;color:#fff;box-shadow:0 0 10px -5px #0006}.abp-toast.abp-toast-warning:hover{border:2px solid #df8505;background-color:#df8505;box-shadow:0 0 15px -5px #0006}.abp-toast.abp-toast-error{border:2px solid #bd362f;background-color:#bd362f;color:#fff;box-shadow:0 0 10px -5px #0006}.abp-toast.abp-toast-error:hover{border:2px solid #a9302a;background-color:#a9302a;box-shadow:0 0 15px -5px #0006}.abp-toast .abp-toast-icon{display:flex;align-items:center;justify-content:center}.abp-toast .abp-toast-icon .icon{font-size:36px}.abp-toast .abp-toast-content{position:relative;display:flex;align-self:center;word-break:break-word}.abp-toast .abp-toast-content .abp-toast-close-button{position:absolute;top:0;right:0;display:flex;align-items:center;justify-content:center;margin:0;padding:0 5px 0 0;width:25px;height:25px;border:none;border-radius:50%;background:transparent;color:inherit}.abp-toast .abp-toast-content .abp-toast-close-button:focus{outline:none}.abp-toast .abp-toast-content .abp-toast-title{margin:0;padding:0;font-size:1rem;font-weight:600}.abp-toast .abp-toast-content .abp-toast-message{margin:0;padding:0;max-width:240px}\n"] }]
|
|
868
978
|
}], propDecorators: { toast: [{
|
|
@@ -903,10 +1013,10 @@ class ToastContainerComponent {
|
|
|
903
1013
|
return null;
|
|
904
1014
|
return toast.options?.id;
|
|
905
1015
|
}
|
|
906
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
907
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1016
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ToastContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1017
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.4", type: ToastContainerComponent, selector: "abp-toast-container", inputs: { top: "top", right: "right", bottom: "bottom", left: "left", toastKey: "toastKey" }, host: { listeners: { "window:resize": "onWindowResize($event)" } }, ngImport: i0, template: "<div\r\n class=\"abp-toast-container\"\r\n [style.top]=\"top || 'auto'\"\r\n [style.right]=\"right || 'auto'\"\r\n [style.bottom]=\"bottom || 'auto'\"\r\n [style.left]=\"left || 'auto'\"\r\n [style.display]=\"toasts.length ? 'flex' : 'none'\"\r\n [@toastInOut]=\"toasts.length\"\r\n>\r\n <abp-toast\r\n [toast]=\"toast\"\r\n *ngFor=\"let toast of toasts; trackBy: trackByFunc\"\r\n (remove)=\"remove($event)\"\r\n ></abp-toast>\r\n</div>\r\n", styles: [".abp-toast-container{position:fixed;display:flex;flex-direction:column;align-items:center;justify-content:flex-end;min-width:350px;min-height:80px;z-index:1900}.abp-toast-container.new-on-top{flex-direction:column-reverse}@media only screen and (max-width: 768px){.abp-toast-container{min-width:100%}}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: ToastComponent, selector: "abp-toast", inputs: ["toast"], outputs: ["remove"] }], animations: [toastInOut] }); }
|
|
908
1018
|
}
|
|
909
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1019
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ToastContainerComponent, decorators: [{
|
|
910
1020
|
type: Component,
|
|
911
1021
|
args: [{ selector: 'abp-toast-container', animations: [toastInOut], template: "<div\r\n class=\"abp-toast-container\"\r\n [style.top]=\"top || 'auto'\"\r\n [style.right]=\"right || 'auto'\"\r\n [style.bottom]=\"bottom || 'auto'\"\r\n [style.left]=\"left || 'auto'\"\r\n [style.display]=\"toasts.length ? 'flex' : 'none'\"\r\n [@toastInOut]=\"toasts.length\"\r\n>\r\n <abp-toast\r\n [toast]=\"toast\"\r\n *ngFor=\"let toast of toasts; trackBy: trackByFunc\"\r\n (remove)=\"remove($event)\"\r\n ></abp-toast>\r\n</div>\r\n", styles: [".abp-toast-container{position:fixed;display:flex;flex-direction:column;align-items:center;justify-content:flex-end;min-width:350px;min-height:80px;z-index:1900}.abp-toast-container.new-on-top{flex-direction:column-reverse}@media only screen and (max-width: 768px){.abp-toast-container{min-width:100%}}\n"] }]
|
|
912
1022
|
}], propDecorators: { top: [{
|
|
@@ -924,32 +1034,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
924
1034
|
args: ['window:resize', ['$event']]
|
|
925
1035
|
}] } });
|
|
926
1036
|
|
|
1037
|
+
/**
|
|
1038
|
+
* @deprecated use ShowPasswordDirective directive
|
|
1039
|
+
* https://docs.abp.io/en/abp/latest/UI/Angular/Show-Password-Directive
|
|
1040
|
+
*/
|
|
927
1041
|
class PasswordComponent extends AbstractNgModelComponent {
|
|
928
|
-
constructor(injector) {
|
|
929
|
-
super(injector);
|
|
930
|
-
}
|
|
931
1042
|
toggleFieldTextType() {
|
|
932
1043
|
this.fieldTextType = !this.fieldTextType;
|
|
933
1044
|
}
|
|
934
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
935
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1045
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: PasswordComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1046
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.4", type: PasswordComponent, isStandalone: true, selector: "abp-password", inputs: { inputId: "inputId", formControlName: "formControlName" }, providers: [
|
|
936
1047
|
{
|
|
937
1048
|
provide: NG_VALUE_ACCESSOR,
|
|
938
1049
|
useExisting: forwardRef(() => PasswordComponent),
|
|
939
1050
|
multi: true,
|
|
940
1051
|
},
|
|
941
|
-
], usesInheritance: true, ngImport: i0, template: "<div class=\"input-group\" validationTarget>\r\n <input\r\n [type]=\"fieldTextType ? 'text' : 'password'\"\r\n class=\"form-control\"\r\n [id]=\"inputId\"\r\n [(ngModel)]=\"value\"\r\n />\r\n\r\n <button class=\"btn btn-secondary\" type=\"button\" (click)=\"toggleFieldTextType()\">\r\n <i\r\n class=\"fa\"\r\n aria-hidden=\"true\"\r\n [ngClass]=\"{\r\n 'fa-eye-slash': !fieldTextType,\r\n 'fa-eye': fieldTextType\r\n }\"\r\n ></i>\r\n </button>\r\n</div>\r\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }
|
|
1052
|
+
], usesInheritance: true, ngImport: i0, template: "<div class=\"input-group\" validationTarget>\r\n <input\r\n [type]=\"fieldTextType ? 'text' : 'password'\"\r\n class=\"form-control\"\r\n [id]=\"inputId\"\r\n [(ngModel)]=\"value\"\r\n />\r\n\r\n <button class=\"btn btn-secondary\" type=\"button\" (click)=\"toggleFieldTextType()\">\r\n <i\r\n class=\"fa\"\r\n aria-hidden=\"true\"\r\n [ngClass]=\"{\r\n 'fa-eye-slash': !fieldTextType,\r\n 'fa-eye': fieldTextType\r\n }\"\r\n ></i>\r\n </button>\r\n</div>\r\n", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] }); }
|
|
942
1053
|
}
|
|
943
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1054
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: PasswordComponent, decorators: [{
|
|
944
1055
|
type: Component,
|
|
945
|
-
args: [{ selector: 'abp-password', providers: [
|
|
1056
|
+
args: [{ selector: 'abp-password', standalone: true, imports: [CommonModule, FormsModule], providers: [
|
|
946
1057
|
{
|
|
947
1058
|
provide: NG_VALUE_ACCESSOR,
|
|
948
1059
|
useExisting: forwardRef(() => PasswordComponent),
|
|
949
1060
|
multi: true,
|
|
950
1061
|
},
|
|
951
1062
|
], template: "<div class=\"input-group\" validationTarget>\r\n <input\r\n [type]=\"fieldTextType ? 'text' : 'password'\"\r\n class=\"form-control\"\r\n [id]=\"inputId\"\r\n [(ngModel)]=\"value\"\r\n />\r\n\r\n <button class=\"btn btn-secondary\" type=\"button\" (click)=\"toggleFieldTextType()\">\r\n <i\r\n class=\"fa\"\r\n aria-hidden=\"true\"\r\n [ngClass]=\"{\r\n 'fa-eye-slash': !fieldTextType,\r\n 'fa-eye': fieldTextType\r\n }\"\r\n ></i>\r\n </button>\r\n</div>\r\n" }]
|
|
952
|
-
}],
|
|
1063
|
+
}], propDecorators: { inputId: [{
|
|
953
1064
|
type: Input
|
|
954
1065
|
}], formControlName: [{
|
|
955
1066
|
type: Input
|
|
@@ -959,12 +1070,12 @@ class CardBodyComponent {
|
|
|
959
1070
|
constructor() {
|
|
960
1071
|
this.componentClass = 'card-body';
|
|
961
1072
|
}
|
|
962
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
963
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1073
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: CardBodyComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1074
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.4", type: CardBodyComponent, selector: "abp-card-body", inputs: { cardBodyClass: "cardBodyClass", cardBodyStyle: "cardBodyStyle" }, host: { properties: { "class": "this.componentClass" } }, ngImport: i0, template: ` <div [ngClass]="cardBodyClass" [ngStyle]="cardBodyStyle">
|
|
964
1075
|
<ng-content></ng-content>
|
|
965
1076
|
</div>`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
|
|
966
1077
|
}
|
|
967
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1078
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: CardBodyComponent, decorators: [{
|
|
968
1079
|
type: Component,
|
|
969
1080
|
args: [{
|
|
970
1081
|
selector: 'abp-card-body',
|
|
@@ -982,12 +1093,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
982
1093
|
}] } });
|
|
983
1094
|
|
|
984
1095
|
class CardComponent {
|
|
985
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
986
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1096
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: CardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1097
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.4", type: CardComponent, selector: "abp-card", inputs: { cardClass: "cardClass", cardStyle: "cardStyle" }, ngImport: i0, template: ` <div class="card" [ngClass]="cardClass" [ngStyle]="cardStyle">
|
|
987
1098
|
<ng-content></ng-content>
|
|
988
1099
|
</div>`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
|
|
989
1100
|
}
|
|
990
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1101
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: CardComponent, decorators: [{
|
|
991
1102
|
type: Component,
|
|
992
1103
|
args: [{
|
|
993
1104
|
selector: 'abp-card',
|
|
@@ -1005,14 +1116,14 @@ class CardHeaderComponent {
|
|
|
1005
1116
|
constructor() {
|
|
1006
1117
|
this.componentClass = 'card-header';
|
|
1007
1118
|
}
|
|
1008
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1009
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1119
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: CardHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1120
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.4", type: CardHeaderComponent, selector: "abp-card-header", inputs: { cardHeaderClass: "cardHeaderClass", cardHeaderStyle: "cardHeaderStyle" }, host: { properties: { "class": "this.componentClass" } }, ngImport: i0, template: `
|
|
1010
1121
|
<div [ngClass]="cardHeaderClass" [ngStyle]="cardHeaderStyle">
|
|
1011
1122
|
<ng-content></ng-content>
|
|
1012
1123
|
</div>
|
|
1013
1124
|
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
|
|
1014
1125
|
}
|
|
1015
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1126
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: CardHeaderComponent, decorators: [{
|
|
1016
1127
|
type: Component,
|
|
1017
1128
|
args: [{ selector: 'abp-card-header', template: `
|
|
1018
1129
|
<div [ngClass]="cardHeaderClass" [ngStyle]="cardHeaderStyle">
|
|
@@ -1032,14 +1143,14 @@ class CardFooterComponent {
|
|
|
1032
1143
|
constructor() {
|
|
1033
1144
|
this.componentClass = 'card-footer';
|
|
1034
1145
|
}
|
|
1035
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1036
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1146
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: CardFooterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1147
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.4", type: CardFooterComponent, selector: "abp-card-footer", inputs: { cardFooterStyle: "cardFooterStyle", cardFooterClass: "cardFooterClass" }, host: { properties: { "class": "this.componentClass" } }, ngImport: i0, template: `
|
|
1037
1148
|
<div [ngStyle]="cardFooterStyle" [ngClass]="cardFooterClass">
|
|
1038
1149
|
<ng-content></ng-content>
|
|
1039
1150
|
</div>
|
|
1040
1151
|
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
|
|
1041
1152
|
}
|
|
1042
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1153
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: CardFooterComponent, decorators: [{
|
|
1043
1154
|
type: Component,
|
|
1044
1155
|
args: [{ selector: 'abp-card-footer', template: `
|
|
1045
1156
|
<div [ngStyle]="cardFooterStyle" [ngClass]="cardFooterClass">
|
|
@@ -1059,10 +1170,10 @@ class CardTitleDirective {
|
|
|
1059
1170
|
constructor() {
|
|
1060
1171
|
this.directiveClass = 'card-title';
|
|
1061
1172
|
}
|
|
1062
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1063
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1173
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: CardTitleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1174
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.4", type: CardTitleDirective, selector: "abp-card-title, [abp-card-title], [abpCardTitle]", host: { properties: { "class": "this.directiveClass" } }, ngImport: i0 }); }
|
|
1064
1175
|
}
|
|
1065
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1176
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: CardTitleDirective, decorators: [{
|
|
1066
1177
|
type: Directive,
|
|
1067
1178
|
args: [{
|
|
1068
1179
|
selector: `abp-card-title, [abp-card-title], [abpCardTitle]`,
|
|
@@ -1076,10 +1187,10 @@ class CardSubtitleDirective {
|
|
|
1076
1187
|
constructor() {
|
|
1077
1188
|
this.directiveClass = 'card-subtitle';
|
|
1078
1189
|
}
|
|
1079
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1080
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1190
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: CardSubtitleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1191
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.4", type: CardSubtitleDirective, selector: "abp-card-subtitle, [abp-card-subtitle], [abpCardSubtitle]", host: { properties: { "class": "this.directiveClass" } }, ngImport: i0 }); }
|
|
1081
1192
|
}
|
|
1082
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1193
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: CardSubtitleDirective, decorators: [{
|
|
1083
1194
|
type: Directive,
|
|
1084
1195
|
args: [{
|
|
1085
1196
|
selector: `abp-card-subtitle, [abp-card-subtitle], [abpCardSubtitle]`,
|
|
@@ -1093,10 +1204,10 @@ class CardImgTopDirective {
|
|
|
1093
1204
|
constructor() {
|
|
1094
1205
|
this.directiveClass = 'card-img-top';
|
|
1095
1206
|
}
|
|
1096
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1097
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1207
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: CardImgTopDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1208
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.4", type: CardImgTopDirective, selector: "abp-card-img-top, [abp-card-img-top], [abpCardImgTop]", host: { properties: { "class": "this.directiveClass" } }, ngImport: i0 }); }
|
|
1098
1209
|
}
|
|
1099
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1210
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: CardImgTopDirective, decorators: [{
|
|
1100
1211
|
type: Directive,
|
|
1101
1212
|
args: [{
|
|
1102
1213
|
selector: `abp-card-img-top, [abp-card-img-top], [abpCardImgTop]`,
|
|
@@ -1110,10 +1221,10 @@ class CardHeaderDirective {
|
|
|
1110
1221
|
constructor() {
|
|
1111
1222
|
this.directiveClass = 'card-header';
|
|
1112
1223
|
}
|
|
1113
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1114
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1224
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: CardHeaderDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1225
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.4", type: CardHeaderDirective, selector: "abp-card-header, [abp-card-header], [abpCardHeader]", host: { properties: { "class": "this.directiveClass" } }, ngImport: i0 }); }
|
|
1115
1226
|
}
|
|
1116
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1227
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: CardHeaderDirective, decorators: [{
|
|
1117
1228
|
type: Directive,
|
|
1118
1229
|
args: [{
|
|
1119
1230
|
selector: `abp-card-header, [abp-card-header], [abpCardHeader]`,
|
|
@@ -1134,8 +1245,8 @@ const declarationsWithExports$1 = [
|
|
|
1134
1245
|
CardHeaderDirective,
|
|
1135
1246
|
];
|
|
1136
1247
|
class CardModule {
|
|
1137
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1138
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
1248
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: CardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1249
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.0.4", ngImport: i0, type: CardModule, declarations: [CardComponent,
|
|
1139
1250
|
CardBodyComponent,
|
|
1140
1251
|
CardHeaderComponent,
|
|
1141
1252
|
CardFooterComponent,
|
|
@@ -1150,9 +1261,9 @@ class CardModule {
|
|
|
1150
1261
|
CardSubtitleDirective,
|
|
1151
1262
|
CardImgTopDirective,
|
|
1152
1263
|
CardHeaderDirective] }); }
|
|
1153
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
1264
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: CardModule, imports: [CommonModule] }); }
|
|
1154
1265
|
}
|
|
1155
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1266
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: CardModule, decorators: [{
|
|
1156
1267
|
type: NgModule,
|
|
1157
1268
|
args: [{
|
|
1158
1269
|
declarations: [...declarationsWithExports$1],
|
|
@@ -1162,16 +1273,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1162
1273
|
}] });
|
|
1163
1274
|
|
|
1164
1275
|
class FormCheckboxComponent extends AbstractNgModelComponent {
|
|
1165
|
-
constructor(
|
|
1166
|
-
super(
|
|
1276
|
+
constructor() {
|
|
1277
|
+
super(...arguments);
|
|
1167
1278
|
this.labelClass = 'form-check-label';
|
|
1168
1279
|
this.checkboxClass = 'form-check-input';
|
|
1169
1280
|
this.checkboxReadonly = false;
|
|
1170
1281
|
this.checkboxBlur = new EventEmitter();
|
|
1171
1282
|
this.checkboxFocus = new EventEmitter();
|
|
1172
1283
|
}
|
|
1173
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1174
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1284
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: FormCheckboxComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1285
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.4", type: FormCheckboxComponent, selector: "abp-checkbox", inputs: { label: "label", labelClass: "labelClass", checkboxId: "checkboxId", checkboxStyle: "checkboxStyle", checkboxClass: "checkboxClass", checkboxReadonly: "checkboxReadonly" }, outputs: { checkboxBlur: "checkboxBlur", checkboxFocus: "checkboxFocus" }, providers: [
|
|
1175
1286
|
{
|
|
1176
1287
|
provide: NG_VALUE_ACCESSOR,
|
|
1177
1288
|
useExisting: forwardRef(() => FormCheckboxComponent),
|
|
@@ -1195,7 +1306,7 @@ class FormCheckboxComponent extends AbstractNgModelComponent {
|
|
|
1195
1306
|
</div>
|
|
1196
1307
|
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i2$1.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { kind: "directive", type: i2$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "pipe", type: i2.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
1197
1308
|
}
|
|
1198
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1309
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: FormCheckboxComponent, decorators: [{
|
|
1199
1310
|
type: Component,
|
|
1200
1311
|
args: [{
|
|
1201
1312
|
selector: 'abp-checkbox',
|
|
@@ -1224,7 +1335,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1224
1335
|
},
|
|
1225
1336
|
],
|
|
1226
1337
|
}]
|
|
1227
|
-
}],
|
|
1338
|
+
}], propDecorators: { label: [{
|
|
1228
1339
|
type: Input
|
|
1229
1340
|
}], labelClass: [{
|
|
1230
1341
|
type: Input
|
|
@@ -1243,8 +1354,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1243
1354
|
}] } });
|
|
1244
1355
|
|
|
1245
1356
|
class FormInputComponent extends AbstractNgModelComponent {
|
|
1246
|
-
constructor(
|
|
1247
|
-
super(
|
|
1357
|
+
constructor() {
|
|
1358
|
+
super(...arguments);
|
|
1248
1359
|
this.inputReadonly = false;
|
|
1249
1360
|
this.label = '';
|
|
1250
1361
|
this.labelClass = 'form-label';
|
|
@@ -1253,8 +1364,8 @@ class FormInputComponent extends AbstractNgModelComponent {
|
|
|
1253
1364
|
this.formBlur = new EventEmitter();
|
|
1254
1365
|
this.formFocus = new EventEmitter();
|
|
1255
1366
|
}
|
|
1256
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1257
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1367
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: FormInputComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1368
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.4", type: FormInputComponent, selector: "abp-form-input", inputs: { inputId: "inputId", inputReadonly: "inputReadonly", label: "label", labelClass: "labelClass", inputPlaceholder: "inputPlaceholder", inputStyle: "inputStyle", inputClass: "inputClass" }, outputs: { formBlur: "formBlur", formFocus: "formFocus" }, providers: [
|
|
1258
1369
|
{
|
|
1259
1370
|
provide: NG_VALUE_ACCESSOR,
|
|
1260
1371
|
useExisting: forwardRef(() => FormInputComponent),
|
|
@@ -1279,7 +1390,7 @@ class FormInputComponent extends AbstractNgModelComponent {
|
|
|
1279
1390
|
</div>
|
|
1280
1391
|
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i2$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "pipe", type: i2.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
1281
1392
|
}
|
|
1282
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1393
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: FormInputComponent, decorators: [{
|
|
1283
1394
|
type: Component,
|
|
1284
1395
|
args: [{
|
|
1285
1396
|
selector: 'abp-form-input',
|
|
@@ -1309,7 +1420,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1309
1420
|
},
|
|
1310
1421
|
],
|
|
1311
1422
|
}]
|
|
1312
|
-
}],
|
|
1423
|
+
}], propDecorators: { inputId: [{
|
|
1313
1424
|
type: Input
|
|
1314
1425
|
}], inputReadonly: [{
|
|
1315
1426
|
type: Input
|
|
@@ -1334,15 +1445,15 @@ class InternetConnectionStatusComponent {
|
|
|
1334
1445
|
this.internetConnectionService = inject(InternetConnectionService);
|
|
1335
1446
|
this.isOnline = this.internetConnectionService.networkStatus;
|
|
1336
1447
|
}
|
|
1337
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1338
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1448
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: InternetConnectionStatusComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1449
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.4", type: InternetConnectionStatusComponent, isStandalone: true, selector: "abp-internet-status", ngImport: i0, template: `
|
|
1339
1450
|
<div class="status-icon" *ngIf="!isOnline()">
|
|
1340
1451
|
<i data-toggle="tooltip" title="{{ 'AbpUi::InternetConnectionInfo' | abpLocalization }}" data-placement="left" class="fa fa-circle text-blinking blink">
|
|
1341
1452
|
</i>
|
|
1342
1453
|
</div>
|
|
1343
1454
|
`, isInline: true, styles: [".blink{animation:blinker .9s cubic-bezier(.5,0,1,1) infinite alternate}@keyframes blinker{0%{color:#c1c1c1}70%{color:#dc3545}to{color:#dc3545}}.text-blinking{font-size:1.2rem}.status-icon{position:fixed;z-index:999999;top:10px;right:10px}@media (max-width: 767px){.status-icon{top:26px;right:134px}}\n"], dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: LocalizationModule }, { kind: "pipe", type: i2.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
1344
1455
|
}
|
|
1345
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1456
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: InternetConnectionStatusComponent, decorators: [{
|
|
1346
1457
|
type: Component,
|
|
1347
1458
|
args: [{ selector: 'abp-internet-status', standalone: true, imports: [NgIf, LocalizationModule], template: `
|
|
1348
1459
|
<div class="status-icon" *ngIf="!isOnline()">
|
|
@@ -1443,15 +1554,16 @@ class EllipsisDirective {
|
|
|
1443
1554
|
this.title = this.title || this.elRef.nativeElement.innerText;
|
|
1444
1555
|
this.cdRef.detectChanges();
|
|
1445
1556
|
}
|
|
1446
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1447
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1557
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: EllipsisDirective, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1558
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.4", type: EllipsisDirective, isStandalone: true, selector: "[abpEllipsis]", inputs: { width: ["abpEllipsis", "width"], title: "title", enabled: ["abpEllipsisEnabled", "enabled"] }, host: { properties: { "title": "this.title", "class.abp-ellipsis-inline": "this.inlineClass", "class.abp-ellipsis": "this.class", "style.max-width": "this.maxWidth" } }, ngImport: i0 }); }
|
|
1448
1559
|
}
|
|
1449
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1560
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: EllipsisDirective, decorators: [{
|
|
1450
1561
|
type: Directive,
|
|
1451
1562
|
args: [{
|
|
1452
1563
|
selector: '[abpEllipsis]',
|
|
1564
|
+
standalone: true
|
|
1453
1565
|
}]
|
|
1454
|
-
}], ctorParameters:
|
|
1566
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }], propDecorators: { width: [{
|
|
1455
1567
|
type: Input,
|
|
1456
1568
|
args: ['abpEllipsis']
|
|
1457
1569
|
}], title: [{
|
|
@@ -1472,18 +1584,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1472
1584
|
type: HostBinding,
|
|
1473
1585
|
args: ['style.max-width']
|
|
1474
1586
|
}] } });
|
|
1475
|
-
class EllipsisModule {
|
|
1476
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EllipsisModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1477
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: EllipsisModule, declarations: [EllipsisDirective], exports: [EllipsisDirective] }); }
|
|
1478
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EllipsisModule }); }
|
|
1479
|
-
}
|
|
1480
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EllipsisModule, decorators: [{
|
|
1481
|
-
type: NgModule,
|
|
1482
|
-
args: [{
|
|
1483
|
-
exports: [EllipsisDirective],
|
|
1484
|
-
declarations: [EllipsisDirective],
|
|
1485
|
-
}]
|
|
1486
|
-
}] });
|
|
1487
1587
|
|
|
1488
1588
|
class LoadingDirective {
|
|
1489
1589
|
get loading() {
|
|
@@ -1549,13 +1649,13 @@ class LoadingDirective {
|
|
|
1549
1649
|
this.timerSubscription.unsubscribe();
|
|
1550
1650
|
}
|
|
1551
1651
|
}
|
|
1552
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1553
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1652
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: LoadingDirective, deps: [{ token: i0.ElementRef }, { token: i0.ViewContainerRef }, { token: i0.ComponentFactoryResolver }, { token: i0.Injector }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1653
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.4", type: LoadingDirective, selector: "[abpLoading]", inputs: { loading: ["abpLoading", "loading"], targetElement: ["abpLoadingTargetElement", "targetElement"], delay: ["abpLoadingDelay", "delay"] }, host: { properties: { "style.position": "this.position" } }, ngImport: i0 }); }
|
|
1554
1654
|
}
|
|
1555
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1655
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: LoadingDirective, decorators: [{
|
|
1556
1656
|
type: Directive,
|
|
1557
1657
|
args: [{ selector: '[abpLoading]' }]
|
|
1558
|
-
}], ctorParameters:
|
|
1658
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.ViewContainerRef }, { type: i0.ComponentFactoryResolver }, { type: i0.Injector }, { type: i0.Renderer2 }], propDecorators: { position: [{
|
|
1559
1659
|
type: HostBinding,
|
|
1560
1660
|
args: ['style.position']
|
|
1561
1661
|
}], loading: [{
|
|
@@ -1617,20 +1717,21 @@ class NgxDatatableDefaultDirective {
|
|
|
1617
1717
|
ngOnDestroy() {
|
|
1618
1718
|
this.subscription.unsubscribe();
|
|
1619
1719
|
}
|
|
1620
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1621
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1720
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: NgxDatatableDefaultDirective, deps: [{ token: i1$2.DatatableComponent }, { token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1721
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.4", type: NgxDatatableDefaultDirective, isStandalone: true, selector: "ngx-datatable[default]", inputs: { class: "class" }, host: { properties: { "class": "this.classes" } }, exportAs: ["ngxDatatableDefault"], ngImport: i0 }); }
|
|
1622
1722
|
}
|
|
1623
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1723
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: NgxDatatableDefaultDirective, decorators: [{
|
|
1624
1724
|
type: Directive,
|
|
1625
1725
|
args: [{
|
|
1626
1726
|
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
1627
1727
|
selector: 'ngx-datatable[default]',
|
|
1728
|
+
standalone: true,
|
|
1628
1729
|
exportAs: 'ngxDatatableDefault',
|
|
1629
1730
|
}]
|
|
1630
|
-
}], ctorParameters:
|
|
1731
|
+
}], ctorParameters: () => [{ type: i1$2.DatatableComponent }, { type: undefined, decorators: [{
|
|
1631
1732
|
type: Inject,
|
|
1632
1733
|
args: [DOCUMENT]
|
|
1633
|
-
}] }]
|
|
1734
|
+
}] }], propDecorators: { class: [{
|
|
1634
1735
|
type: Input
|
|
1635
1736
|
}], classes: [{
|
|
1636
1737
|
type: HostBinding,
|
|
@@ -1711,22 +1812,23 @@ class NgxDatatableListDirective {
|
|
|
1711
1812
|
this.subscribeToPage();
|
|
1712
1813
|
this.subscribeToSort();
|
|
1713
1814
|
}
|
|
1714
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1715
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1815
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: NgxDatatableListDirective, deps: [{ token: i1$2.DatatableComponent }, { token: i0.ChangeDetectorRef }, { token: i2.LocalizationService }, { token: NGX_DATATABLE_MESSAGES, optional: true }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1816
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.4", type: NgxDatatableListDirective, isStandalone: true, selector: "ngx-datatable[list]", inputs: { list: "list" }, exportAs: ["ngxDatatableList"], usesOnChanges: true, ngImport: i0 }); }
|
|
1716
1817
|
}
|
|
1717
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1818
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: NgxDatatableListDirective, decorators: [{
|
|
1718
1819
|
type: Directive,
|
|
1719
1820
|
args: [{
|
|
1720
1821
|
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
1721
1822
|
selector: 'ngx-datatable[list]',
|
|
1823
|
+
standalone: true,
|
|
1722
1824
|
exportAs: 'ngxDatatableList',
|
|
1723
1825
|
}]
|
|
1724
|
-
}], ctorParameters:
|
|
1826
|
+
}], ctorParameters: () => [{ type: i1$2.DatatableComponent }, { type: i0.ChangeDetectorRef }, { type: i2.LocalizationService }, { type: undefined, decorators: [{
|
|
1725
1827
|
type: Optional
|
|
1726
1828
|
}, {
|
|
1727
1829
|
type: Inject,
|
|
1728
1830
|
args: [NGX_DATATABLE_MESSAGES]
|
|
1729
|
-
}] }]
|
|
1831
|
+
}] }], propDecorators: { list: [{
|
|
1730
1832
|
type: Input
|
|
1731
1833
|
}] } });
|
|
1732
1834
|
|
|
@@ -1760,15 +1862,16 @@ class AbpVisibleDirective {
|
|
|
1760
1862
|
}
|
|
1761
1863
|
this.viewContainerRef.createEmbeddedView(this.templateRef);
|
|
1762
1864
|
}
|
|
1763
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1764
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1865
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: AbpVisibleDirective, deps: [{ token: i0.ViewContainerRef }, { token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1866
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.4", type: AbpVisibleDirective, isStandalone: true, selector: "[abpVisible]", inputs: { abpVisible: "abpVisible" }, ngImport: i0 }); }
|
|
1765
1867
|
}
|
|
1766
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1868
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: AbpVisibleDirective, decorators: [{
|
|
1767
1869
|
type: Directive,
|
|
1768
1870
|
args: [{
|
|
1871
|
+
standalone: true,
|
|
1769
1872
|
selector: '[abpVisible]',
|
|
1770
1873
|
}]
|
|
1771
|
-
}], ctorParameters:
|
|
1874
|
+
}], ctorParameters: () => [{ type: i0.ViewContainerRef }, { type: i0.TemplateRef }], propDecorators: { abpVisible: [{
|
|
1772
1875
|
type: Input
|
|
1773
1876
|
}] } });
|
|
1774
1877
|
function checkType(value) {
|
|
@@ -1789,6 +1892,32 @@ function checkType(value) {
|
|
|
1789
1892
|
}
|
|
1790
1893
|
}
|
|
1791
1894
|
|
|
1895
|
+
class DisabledDirective {
|
|
1896
|
+
constructor(ngControl) {
|
|
1897
|
+
this.ngControl = ngControl;
|
|
1898
|
+
this.abpDisabled = false;
|
|
1899
|
+
}
|
|
1900
|
+
// Related issue: https://github.com/angular/angular/issues/35330
|
|
1901
|
+
ngOnChanges({ abpDisabled }) {
|
|
1902
|
+
if (this.ngControl.control && abpDisabled) {
|
|
1903
|
+
this.ngControl.control[abpDisabled.currentValue ? 'disable' : 'enable']();
|
|
1904
|
+
}
|
|
1905
|
+
}
|
|
1906
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: DisabledDirective, deps: [{ token: i2$1.NgControl, host: true }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1907
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.0.4", type: DisabledDirective, isStandalone: true, selector: "[abpDisabled]", inputs: { abpDisabled: "abpDisabled" }, usesOnChanges: true, ngImport: i0 }); }
|
|
1908
|
+
}
|
|
1909
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: DisabledDirective, decorators: [{
|
|
1910
|
+
type: Directive,
|
|
1911
|
+
args: [{
|
|
1912
|
+
selector: '[abpDisabled]',
|
|
1913
|
+
standalone: true,
|
|
1914
|
+
}]
|
|
1915
|
+
}], ctorParameters: () => [{ type: i2$1.NgControl, decorators: [{
|
|
1916
|
+
type: Host
|
|
1917
|
+
}] }], propDecorators: { abpDisabled: [{
|
|
1918
|
+
type: Input
|
|
1919
|
+
}] } });
|
|
1920
|
+
|
|
1792
1921
|
var eFormComponets;
|
|
1793
1922
|
(function (eFormComponets) {
|
|
1794
1923
|
eFormComponets["FormInputComponent"] = "FormInputComponent";
|
|
@@ -1814,12 +1943,12 @@ class DocumentDirHandlerService {
|
|
|
1814
1943
|
document.body.dir = dir;
|
|
1815
1944
|
document.dir = dir;
|
|
1816
1945
|
}
|
|
1817
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1818
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1946
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: DocumentDirHandlerService, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1947
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: DocumentDirHandlerService }); }
|
|
1819
1948
|
}
|
|
1820
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1949
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: DocumentDirHandlerService, decorators: [{
|
|
1821
1950
|
type: Injectable
|
|
1822
|
-
}], ctorParameters:
|
|
1951
|
+
}], ctorParameters: () => [{ type: i0.Injector }] });
|
|
1823
1952
|
|
|
1824
1953
|
function httpErrorConfigFactory(config = {}) {
|
|
1825
1954
|
if (config.errorScreen && config.errorScreen.component && !config.errorScreen.forWhichErrors) {
|
|
@@ -2090,10 +2219,10 @@ class NavItemsService extends AbstractMenuService {
|
|
|
2090
2219
|
super(...arguments);
|
|
2091
2220
|
this.baseClass = NavItem;
|
|
2092
2221
|
}
|
|
2093
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2094
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2222
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: NavItemsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2223
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: NavItemsService, providedIn: 'root' }); }
|
|
2095
2224
|
}
|
|
2096
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2225
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: NavItemsService, decorators: [{
|
|
2097
2226
|
type: Injectable,
|
|
2098
2227
|
args: [{ providedIn: 'root' }]
|
|
2099
2228
|
}] });
|
|
@@ -2115,13 +2244,13 @@ class PageAlertService {
|
|
|
2115
2244
|
alerts.splice(index, 1);
|
|
2116
2245
|
this.alerts.set(alerts);
|
|
2117
2246
|
}
|
|
2118
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2119
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2247
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: PageAlertService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2248
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: PageAlertService, providedIn: 'root' }); }
|
|
2120
2249
|
}
|
|
2121
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2250
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: PageAlertService, decorators: [{
|
|
2122
2251
|
type: Injectable,
|
|
2123
2252
|
args: [{ providedIn: 'root' }]
|
|
2124
|
-
}]
|
|
2253
|
+
}] });
|
|
2125
2254
|
|
|
2126
2255
|
class ToasterService {
|
|
2127
2256
|
constructor(contentProjectionService) {
|
|
@@ -2210,15 +2339,15 @@ class ToasterService {
|
|
|
2210
2339
|
: this.toasts.filter(toast => toast.options?.containerKey !== containerKey);
|
|
2211
2340
|
this.toasts$.next(this.toasts);
|
|
2212
2341
|
}
|
|
2213
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2214
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2342
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ToasterService, deps: [{ token: i2.ContentProjectionService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2343
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ToasterService, providedIn: 'root' }); }
|
|
2215
2344
|
}
|
|
2216
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2345
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ToasterService, decorators: [{
|
|
2217
2346
|
type: Injectable,
|
|
2218
2347
|
args: [{
|
|
2219
2348
|
providedIn: 'root',
|
|
2220
2349
|
}]
|
|
2221
|
-
}], ctorParameters:
|
|
2350
|
+
}], ctorParameters: () => [{ type: i2.ContentProjectionService }] });
|
|
2222
2351
|
|
|
2223
2352
|
class UserMenu extends NavItem {
|
|
2224
2353
|
}
|
|
@@ -2228,10 +2357,10 @@ class UserMenuService extends AbstractMenuService {
|
|
|
2228
2357
|
super(...arguments);
|
|
2229
2358
|
this.baseClass = UserMenu;
|
|
2230
2359
|
}
|
|
2231
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2232
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2360
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: UserMenuService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2361
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: UserMenuService, providedIn: 'root' }); }
|
|
2233
2362
|
}
|
|
2234
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2363
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: UserMenuService, decorators: [{
|
|
2235
2364
|
type: Injectable,
|
|
2236
2365
|
args: [{ providedIn: 'root' }]
|
|
2237
2366
|
}] });
|
|
@@ -2299,13 +2428,13 @@ class CreateErrorComponentService {
|
|
|
2299
2428
|
this.componentRef = null;
|
|
2300
2429
|
});
|
|
2301
2430
|
}
|
|
2302
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2303
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2431
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: CreateErrorComponentService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2432
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: CreateErrorComponentService, providedIn: 'root' }); }
|
|
2304
2433
|
}
|
|
2305
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2434
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: CreateErrorComponentService, decorators: [{
|
|
2306
2435
|
type: Injectable,
|
|
2307
2436
|
args: [{ providedIn: 'root' }]
|
|
2308
|
-
}], ctorParameters:
|
|
2437
|
+
}], ctorParameters: () => [] });
|
|
2309
2438
|
|
|
2310
2439
|
function getErrorFromRequestBody(body) {
|
|
2311
2440
|
let message;
|
|
@@ -2361,10 +2490,10 @@ class AbpFormatErrorHandlerService {
|
|
|
2361
2490
|
}
|
|
2362
2491
|
});
|
|
2363
2492
|
}
|
|
2364
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2365
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2493
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: AbpFormatErrorHandlerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2494
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: AbpFormatErrorHandlerService, providedIn: 'root' }); }
|
|
2366
2495
|
}
|
|
2367
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2496
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: AbpFormatErrorHandlerService, decorators: [{
|
|
2368
2497
|
type: Injectable,
|
|
2369
2498
|
args: [{ providedIn: 'root' }]
|
|
2370
2499
|
}] });
|
|
@@ -2385,10 +2514,10 @@ class TenantResolveErrorHandlerService {
|
|
|
2385
2514
|
this.sessionService.setTenant(null);
|
|
2386
2515
|
this.authService.logout().subscribe();
|
|
2387
2516
|
}
|
|
2388
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2389
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2517
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: TenantResolveErrorHandlerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2518
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: TenantResolveErrorHandlerService, providedIn: 'root' }); }
|
|
2390
2519
|
}
|
|
2391
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2520
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: TenantResolveErrorHandlerService, decorators: [{
|
|
2392
2521
|
type: Injectable,
|
|
2393
2522
|
args: [{ providedIn: 'root' }]
|
|
2394
2523
|
}] });
|
|
@@ -2463,10 +2592,10 @@ class StatusCodeErrorHandlerService {
|
|
|
2463
2592
|
break;
|
|
2464
2593
|
}
|
|
2465
2594
|
}
|
|
2466
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2467
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2595
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: StatusCodeErrorHandlerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2596
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: StatusCodeErrorHandlerService, providedIn: 'root' }); }
|
|
2468
2597
|
}
|
|
2469
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2598
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: StatusCodeErrorHandlerService, decorators: [{
|
|
2470
2599
|
type: Injectable,
|
|
2471
2600
|
args: [{ providedIn: 'root' }]
|
|
2472
2601
|
}] });
|
|
@@ -2495,10 +2624,10 @@ class UnknownStatusCodeErrorHandlerService {
|
|
|
2495
2624
|
isHomeShow: false,
|
|
2496
2625
|
});
|
|
2497
2626
|
}
|
|
2498
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2499
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2627
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: UnknownStatusCodeErrorHandlerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2628
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: UnknownStatusCodeErrorHandlerService, providedIn: 'root' }); }
|
|
2500
2629
|
}
|
|
2501
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2630
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: UnknownStatusCodeErrorHandlerService, decorators: [{
|
|
2502
2631
|
type: Injectable,
|
|
2503
2632
|
args: [{ providedIn: 'root' }]
|
|
2504
2633
|
}] });
|
|
@@ -2532,10 +2661,10 @@ class RouterErrorHandlerService {
|
|
|
2532
2661
|
};
|
|
2533
2662
|
this.createErrorComponentService.execute(instance);
|
|
2534
2663
|
}
|
|
2535
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2536
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2664
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: RouterErrorHandlerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2665
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: RouterErrorHandlerService, providedIn: 'root' }); }
|
|
2537
2666
|
}
|
|
2538
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2667
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: RouterErrorHandlerService, decorators: [{
|
|
2539
2668
|
type: Injectable,
|
|
2540
2669
|
args: [{ providedIn: 'root' }]
|
|
2541
2670
|
}] });
|
|
@@ -2603,13 +2732,13 @@ class ErrorHandler {
|
|
|
2603
2732
|
yesText: 'AbpAccount::Close',
|
|
2604
2733
|
});
|
|
2605
2734
|
}
|
|
2606
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2607
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2735
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ErrorHandler, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2736
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ErrorHandler, providedIn: 'root' }); }
|
|
2608
2737
|
}
|
|
2609
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2738
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ErrorHandler, decorators: [{
|
|
2610
2739
|
type: Injectable,
|
|
2611
2740
|
args: [{ providedIn: 'root' }]
|
|
2612
|
-
}], ctorParameters:
|
|
2741
|
+
}], ctorParameters: () => [{ type: i0.Injector }] });
|
|
2613
2742
|
|
|
2614
2743
|
const NG_BOOTSTRAP_CONFIG_PROVIDERS = [
|
|
2615
2744
|
{
|
|
@@ -2723,15 +2852,15 @@ class DateParserFormatter extends NgbDateParserFormatter {
|
|
|
2723
2852
|
const dateFormat = localization.currentCulture?.dateTimeFormat?.shortDatePattern || 'yyyy-MM-dd';
|
|
2724
2853
|
return formatDate(new Date(date.year, date.month - 1, date.day), dateFormat, this.locale);
|
|
2725
2854
|
}
|
|
2726
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2727
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2855
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: DateParserFormatter, deps: [{ token: i2.ConfigStateService }, { token: LOCALE_ID }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2856
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: DateParserFormatter }); }
|
|
2728
2857
|
}
|
|
2729
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2858
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: DateParserFormatter, decorators: [{
|
|
2730
2859
|
type: Injectable
|
|
2731
|
-
}], ctorParameters:
|
|
2860
|
+
}], ctorParameters: () => [{ type: i2.ConfigStateService }, { type: undefined, decorators: [{
|
|
2732
2861
|
type: Inject,
|
|
2733
2862
|
args: [LOCALE_ID]
|
|
2734
|
-
}] }]
|
|
2863
|
+
}] }] });
|
|
2735
2864
|
|
|
2736
2865
|
const declarationsWithExports = [
|
|
2737
2866
|
BreadcrumbComponent,
|
|
@@ -2743,18 +2872,14 @@ const declarationsWithExports = [
|
|
|
2743
2872
|
ModalComponent,
|
|
2744
2873
|
ToastComponent,
|
|
2745
2874
|
ToastContainerComponent,
|
|
2746
|
-
PasswordComponent,
|
|
2747
|
-
NgxDatatableDefaultDirective,
|
|
2748
|
-
NgxDatatableListDirective,
|
|
2749
2875
|
LoadingDirective,
|
|
2750
2876
|
ModalCloseDirective,
|
|
2751
|
-
AbpVisibleDirective,
|
|
2752
2877
|
FormInputComponent,
|
|
2753
2878
|
FormCheckboxComponent,
|
|
2754
2879
|
];
|
|
2755
2880
|
class BaseThemeSharedModule {
|
|
2756
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2757
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
2881
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: BaseThemeSharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2882
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.0.4", ngImport: i0, type: BaseThemeSharedModule, declarations: [BreadcrumbComponent,
|
|
2758
2883
|
BreadcrumbItemsComponent,
|
|
2759
2884
|
ButtonComponent,
|
|
2760
2885
|
ConfirmationComponent,
|
|
@@ -2763,22 +2888,26 @@ class BaseThemeSharedModule {
|
|
|
2763
2888
|
ModalComponent,
|
|
2764
2889
|
ToastComponent,
|
|
2765
2890
|
ToastContainerComponent,
|
|
2766
|
-
PasswordComponent,
|
|
2767
|
-
NgxDatatableDefaultDirective,
|
|
2768
|
-
NgxDatatableListDirective,
|
|
2769
2891
|
LoadingDirective,
|
|
2770
2892
|
ModalCloseDirective,
|
|
2771
|
-
AbpVisibleDirective,
|
|
2772
2893
|
FormInputComponent,
|
|
2773
2894
|
FormCheckboxComponent, HttpErrorWrapperComponent], imports: [CoreModule,
|
|
2774
2895
|
NgxDatatableModule,
|
|
2775
2896
|
NgxValidateCoreModule,
|
|
2776
2897
|
NgbPaginationModule,
|
|
2777
|
-
|
|
2778
|
-
CardModule
|
|
2779
|
-
|
|
2898
|
+
EllipsisDirective,
|
|
2899
|
+
CardModule,
|
|
2900
|
+
PasswordComponent,
|
|
2901
|
+
NgxDatatableDefaultDirective,
|
|
2902
|
+
NgxDatatableListDirective,
|
|
2903
|
+
DisabledDirective,
|
|
2904
|
+
AbpVisibleDirective], exports: [NgxDatatableModule,
|
|
2780
2905
|
NgxValidateCoreModule,
|
|
2781
|
-
CardModule,
|
|
2906
|
+
CardModule,
|
|
2907
|
+
DisabledDirective,
|
|
2908
|
+
AbpVisibleDirective,
|
|
2909
|
+
NgxDatatableListDirective,
|
|
2910
|
+
NgxDatatableDefaultDirective, BreadcrumbComponent,
|
|
2782
2911
|
BreadcrumbItemsComponent,
|
|
2783
2912
|
ButtonComponent,
|
|
2784
2913
|
ConfirmationComponent,
|
|
@@ -2787,25 +2916,20 @@ class BaseThemeSharedModule {
|
|
|
2787
2916
|
ModalComponent,
|
|
2788
2917
|
ToastComponent,
|
|
2789
2918
|
ToastContainerComponent,
|
|
2790
|
-
PasswordComponent,
|
|
2791
|
-
NgxDatatableDefaultDirective,
|
|
2792
|
-
NgxDatatableListDirective,
|
|
2793
2919
|
LoadingDirective,
|
|
2794
2920
|
ModalCloseDirective,
|
|
2795
|
-
AbpVisibleDirective,
|
|
2796
2921
|
FormInputComponent,
|
|
2797
2922
|
FormCheckboxComponent] }); }
|
|
2798
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
2923
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: BaseThemeSharedModule, providers: [DatePipe], imports: [CoreModule,
|
|
2799
2924
|
NgxDatatableModule,
|
|
2800
2925
|
NgxValidateCoreModule,
|
|
2801
2926
|
NgbPaginationModule,
|
|
2802
|
-
|
|
2803
|
-
|
|
2804
|
-
EllipsisModule,
|
|
2927
|
+
CardModule,
|
|
2928
|
+
PasswordComponent, NgxDatatableModule,
|
|
2805
2929
|
NgxValidateCoreModule,
|
|
2806
2930
|
CardModule] }); }
|
|
2807
2931
|
}
|
|
2808
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2932
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: BaseThemeSharedModule, decorators: [{
|
|
2809
2933
|
type: NgModule,
|
|
2810
2934
|
args: [{
|
|
2811
2935
|
imports: [
|
|
@@ -2813,15 +2937,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2813
2937
|
NgxDatatableModule,
|
|
2814
2938
|
NgxValidateCoreModule,
|
|
2815
2939
|
NgbPaginationModule,
|
|
2816
|
-
|
|
2940
|
+
EllipsisDirective,
|
|
2817
2941
|
CardModule,
|
|
2942
|
+
PasswordComponent,
|
|
2943
|
+
NgxDatatableDefaultDirective,
|
|
2944
|
+
NgxDatatableListDirective,
|
|
2945
|
+
DisabledDirective,
|
|
2946
|
+
AbpVisibleDirective,
|
|
2818
2947
|
],
|
|
2819
2948
|
declarations: [...declarationsWithExports, HttpErrorWrapperComponent],
|
|
2820
2949
|
exports: [
|
|
2821
2950
|
NgxDatatableModule,
|
|
2822
|
-
EllipsisModule,
|
|
2823
2951
|
NgxValidateCoreModule,
|
|
2824
2952
|
CardModule,
|
|
2953
|
+
DisabledDirective,
|
|
2954
|
+
AbpVisibleDirective,
|
|
2955
|
+
NgxDatatableListDirective,
|
|
2956
|
+
NgxDatatableDefaultDirective,
|
|
2825
2957
|
...declarationsWithExports,
|
|
2826
2958
|
],
|
|
2827
2959
|
providers: [DatePipe],
|
|
@@ -2887,11 +3019,11 @@ class ThemeSharedModule {
|
|
|
2887
3019
|
],
|
|
2888
3020
|
};
|
|
2889
3021
|
}
|
|
2890
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2891
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
2892
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
3022
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ThemeSharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3023
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.0.4", ngImport: i0, type: ThemeSharedModule, imports: [BaseThemeSharedModule], exports: [BaseThemeSharedModule] }); }
|
|
3024
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ThemeSharedModule, imports: [BaseThemeSharedModule, BaseThemeSharedModule] }); }
|
|
2893
3025
|
}
|
|
2894
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3026
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.4", ngImport: i0, type: ThemeSharedModule, decorators: [{
|
|
2895
3027
|
type: NgModule,
|
|
2896
3028
|
args: [{
|
|
2897
3029
|
imports: [BaseThemeSharedModule],
|
|
@@ -2966,5 +3098,5 @@ function validatePassword(shouldContain) {
|
|
|
2966
3098
|
* Generated bundle index. Do not edit.
|
|
2967
3099
|
*/
|
|
2968
3100
|
|
|
2969
|
-
export { AbpFormatErrorHandlerService, AbpVisibleDirective, BaseThemeSharedModule, BreadcrumbComponent, BreadcrumbItemsComponent, ButtonComponent, CUSTOM_ERROR_HANDLERS, CUSTOM_HTTP_ERROR_HANDLER_PRIORITY, CardBodyComponent, CardComponent, CardFooterComponent, CardHeaderComponent, CardHeaderDirective, CardImgTopDirective, CardModule, CardSubtitleDirective, CardTitleDirective, Confirmation, ConfirmationComponent, ConfirmationService, CreateErrorComponentService, DEFAULT_ERROR_LOCALIZATIONS, DEFAULT_ERROR_MESSAGES, DEFAULT_VALIDATION_BLUEPRINTS, DateParserFormatter, DocumentDirHandlerService, ERROR_HANDLERS_PROVIDERS, EllipsisDirective,
|
|
3101
|
+
export { AbpFormatErrorHandlerService, AbpVisibleDirective, BaseThemeSharedModule, BreadcrumbComponent, BreadcrumbItemsComponent, ButtonComponent, CUSTOM_ERROR_HANDLERS, CUSTOM_HTTP_ERROR_HANDLER_PRIORITY, CardBodyComponent, CardComponent, CardFooterComponent, CardHeaderComponent, CardHeaderDirective, CardImgTopDirective, CardModule, CardSubtitleDirective, CardTitleDirective, Confirmation, ConfirmationComponent, ConfirmationService, CreateErrorComponentService, DEFAULT_ERROR_LOCALIZATIONS, DEFAULT_ERROR_MESSAGES, DEFAULT_VALIDATION_BLUEPRINTS, DateAdapter, DateParserFormatter, DateTimeAdapter, DisabledDirective, DocumentDirHandlerService, ERROR_HANDLERS_PROVIDERS, EllipsisDirective, ErrorHandler, FormCheckboxComponent, FormInputComponent, HTTP_ERROR_CONFIG, HTTP_ERROR_HANDLER, HttpErrorWrapperComponent, InternetConnectionStatusComponent, LoaderBarComponent, LoadingComponent, LoadingDirective, ModalCloseDirective, ModalComponent, ModalRefService, NGX_DATATABLE_MESSAGES, NG_BOOTSTRAP_CONFIG_PROVIDERS, NavItem, NavItemsService, NgxDatatableDefaultDirective, NgxDatatableListDirective, PageAlertService, PasswordComponent, RouterErrorHandlerService, SUPPRESS_UNSAVED_CHANGES_WARNING, StatusCodeErrorHandlerService, THEME_SHARED_APPEND_CONTENT, THEME_SHARED_ROUTE_PROVIDERS, TenantResolveErrorHandlerService, ThemeSharedModule, TimeAdapter, ToastComponent, ToastContainerComponent, ToasterService, UnknownStatusCodeErrorHandlerService, UserMenu, UserMenuService, bounceIn, collapse, collapseLinearWithMargin, collapseWithMargin, collapseX, collapseY, collapseYWithMargin, configureNgBootstrap, configureRoutes, defaultNgxDatatableMessages, dialogAnimation, eFormComponets, expandX, expandY, expandYWithMargin, fadeAnimation, fadeIn, fadeInDown, fadeInLeft, fadeInRight, fadeInUp, fadeOut, fadeOutDown, fadeOutLeft, fadeOutRight, fadeOutUp, getErrorFromRequestBody, getPasswordValidators, httpErrorConfigFactory, slideFromBottom, tenantNotFoundProvider, toastInOut, validatePassword };
|
|
2970
3102
|
//# sourceMappingURL=abp-ng.theme.shared.mjs.map
|