@wavemaker/angular-codegen 11.10.0-rc.198 → 11.10.1-rc.200
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/angular-app/dependency-report.html +1 -1
- package/angular-app/npm-shrinkwrap.json +290 -48
- package/angular-app/package-lock.json +290 -48
- package/angular-app/package.json +5 -5
- package/angular-app/src/assets/styles/css/wm-style.css +1 -1
- package/dependencies/expression-parser.cjs.js +14 -18
- package/dependencies/pipe-provider.cjs.js +168 -456
- package/dependencies/transpilation-mobile.cjs.js +51 -192
- package/dependencies/transpilation-web.cjs.js +65 -209
- package/npm-shrinkwrap.json +35 -41
- package/package-lock.json +35 -41
- package/package.json +2 -2
- package/templates/page/page.module.ts.hbs +1 -1
|
@@ -27811,7 +27811,6 @@ class CompilerFacadeImpl {
|
|
|
27811
27811
|
name: facade.name,
|
|
27812
27812
|
type: wrapReference(facade.type),
|
|
27813
27813
|
typeArgumentCount: 0,
|
|
27814
|
-
deps: null,
|
|
27815
27814
|
pipeName: facade.pipeName,
|
|
27816
27815
|
pure: facade.pure,
|
|
27817
27816
|
isStandalone: facade.isStandalone,
|
|
@@ -35324,7 +35323,6 @@ function isFunction(x) {
|
|
|
35324
35323
|
/** PURE_IMPORTS_START PURE_IMPORTS_END */
|
|
35325
35324
|
var _enable_super_gross_mode_that_will_cause_bad_things = false;
|
|
35326
35325
|
var config = {
|
|
35327
|
-
Promise: undefined,
|
|
35328
35326
|
set useDeprecatedSynchronousErrorHandling(value) {
|
|
35329
35327
|
if (value) {
|
|
35330
35328
|
var error = /*@__PURE__*/ new Error();
|
|
@@ -37257,7 +37255,7 @@ var FinallySubscriber = /*@__PURE__*/ (function (_super) {
|
|
|
37257
37255
|
/** PURE_IMPORTS_START _util_EmptyError,_filter,_take,_defaultIfEmpty,_throwIfEmpty,_util_identity PURE_IMPORTS_END */
|
|
37258
37256
|
function first(predicate, defaultValue) {
|
|
37259
37257
|
var hasDefaultValue = arguments.length >= 2;
|
|
37260
|
-
return function (source) { return source.pipe(filter(function (v, i) { return predicate(v, i, source); }) , take(1), hasDefaultValue ? defaultIfEmpty(defaultValue) : throwIfEmpty(function () { return new EmptyError(); })); };
|
|
37258
|
+
return function (source) { return source.pipe(predicate ? filter(function (v, i) { return predicate(v, i, source); }) : identity, take(1), hasDefaultValue ? defaultIfEmpty(defaultValue) : throwIfEmpty(function () { return new EmptyError(); })); };
|
|
37261
37259
|
}
|
|
37262
37260
|
|
|
37263
37261
|
/** PURE_IMPORTS_START tslib,_OuterSubscriber,_InnerSubscriber,_util_subscribeToResult,_map,_observable_from PURE_IMPORTS_END */
|
|
@@ -37417,16 +37415,6 @@ function setParsed(text, parsed) {
|
|
|
37417
37415
|
* event contract doesn't work around their peculiarities.
|
|
37418
37416
|
*/
|
|
37419
37417
|
const EventType = {
|
|
37420
|
-
/**
|
|
37421
|
-
* Mouse middle click, introduced in Chrome 55 and not yet supported on
|
|
37422
|
-
* other browsers.
|
|
37423
|
-
*/
|
|
37424
|
-
AUXCLICK: 'auxclick',
|
|
37425
|
-
/**
|
|
37426
|
-
* The change event fired by browsers when the `value` attribute of input,
|
|
37427
|
-
* select, and textarea elements are changed.
|
|
37428
|
-
*/
|
|
37429
|
-
CHANGE: 'change',
|
|
37430
37418
|
/**
|
|
37431
37419
|
* The click event. In addEvent() refers to all click events, in the
|
|
37432
37420
|
* jsaction attribute it refers to the unmodified click and Enter/Space
|
|
@@ -37441,12 +37429,6 @@ const EventType = {
|
|
|
37441
37429
|
* click event.
|
|
37442
37430
|
*/
|
|
37443
37431
|
CLICKMOD: 'clickmod',
|
|
37444
|
-
/**
|
|
37445
|
-
* Specifies the jsaction for a click-only event. Click-only doesn't take
|
|
37446
|
-
* into account the case where an element with focus receives an Enter/Space
|
|
37447
|
-
* keypress. This event isn't separately enabled in addEvent().
|
|
37448
|
-
*/
|
|
37449
|
-
CLICKONLY: 'clickonly',
|
|
37450
37432
|
/**
|
|
37451
37433
|
* The dblclick event.
|
|
37452
37434
|
*/
|
|
@@ -37496,18 +37478,6 @@ const EventType = {
|
|
|
37496
37478
|
* browsers.
|
|
37497
37479
|
*/
|
|
37498
37480
|
KEYUP: 'keyup',
|
|
37499
|
-
/**
|
|
37500
|
-
* The mouseup event. Can either be used directly or used implicitly to
|
|
37501
|
-
* capture mouseup events. In addEvent(), it represents a regular DOM
|
|
37502
|
-
* mouseup event.
|
|
37503
|
-
*/
|
|
37504
|
-
MOUSEUP: 'mouseup',
|
|
37505
|
-
/**
|
|
37506
|
-
* The mousedown event. Can either be used directly or used implicitly to
|
|
37507
|
-
* capture mouseenter events. In addEvent(), it represents a regular DOM
|
|
37508
|
-
* mouseover event.
|
|
37509
|
-
*/
|
|
37510
|
-
MOUSEDOWN: 'mousedown',
|
|
37511
37481
|
/**
|
|
37512
37482
|
* The mouseover event. Can either be used directly or used implicitly to
|
|
37513
37483
|
* capture mouseenter events. In addEvent(), it represents a regular DOM
|
|
@@ -37530,22 +37500,6 @@ const EventType = {
|
|
|
37530
37500
|
* element being entered within a DOM tree.
|
|
37531
37501
|
*/
|
|
37532
37502
|
MOUSELEAVE: 'mouseleave',
|
|
37533
|
-
/**
|
|
37534
|
-
* The mousemove event.
|
|
37535
|
-
*/
|
|
37536
|
-
MOUSEMOVE: 'mousemove',
|
|
37537
|
-
/**
|
|
37538
|
-
* The pointerup event. Can either be used directly or used implicitly to
|
|
37539
|
-
* capture pointerup events. In addEvent(), it represents a regular DOM
|
|
37540
|
-
* pointerup event.
|
|
37541
|
-
*/
|
|
37542
|
-
POINTERUP: 'pointerup',
|
|
37543
|
-
/**
|
|
37544
|
-
* The pointerdown event. Can either be used directly or used implicitly to
|
|
37545
|
-
* capture pointerenter events. In addEvent(), it represents a regular DOM
|
|
37546
|
-
* mouseover event.
|
|
37547
|
-
*/
|
|
37548
|
-
POINTERDOWN: 'pointerdown',
|
|
37549
37503
|
/**
|
|
37550
37504
|
* The pointerover event. Can either be used directly or used implicitly to
|
|
37551
37505
|
* capture pointerenter events. In addEvent(), it represents a regular DOM
|
|
@@ -37568,26 +37522,6 @@ const EventType = {
|
|
|
37568
37522
|
* element being entered within a DOM tree.
|
|
37569
37523
|
*/
|
|
37570
37524
|
POINTERLEAVE: 'pointerleave',
|
|
37571
|
-
/**
|
|
37572
|
-
* The pointermove event.
|
|
37573
|
-
*/
|
|
37574
|
-
POINTERMOVE: 'pointermove',
|
|
37575
|
-
/**
|
|
37576
|
-
* The pointercancel event.
|
|
37577
|
-
*/
|
|
37578
|
-
POINTERCANCEL: 'pointercancel',
|
|
37579
|
-
/**
|
|
37580
|
-
* The gotpointercapture event is fired when
|
|
37581
|
-
* Element.setPointerCapture(pointerId) is called on a mouse input, or
|
|
37582
|
-
* implicitly when a touch input begins.
|
|
37583
|
-
*/
|
|
37584
|
-
GOTPOINTERCAPTURE: 'gotpointercapture',
|
|
37585
|
-
/**
|
|
37586
|
-
* The lostpointercapture event is fired when
|
|
37587
|
-
* Element.releasePointerCapture(pointerId) is called, or implicitly after a
|
|
37588
|
-
* touch input ends.
|
|
37589
|
-
*/
|
|
37590
|
-
LOSTPOINTERCAPTURE: 'lostpointercapture',
|
|
37591
37525
|
/**
|
|
37592
37526
|
* The error event. The error event doesn't bubble, but you can use it in
|
|
37593
37527
|
* addEvent() and jsaction anyway. EventContract does the right thing under
|
|
@@ -37600,10 +37534,6 @@ const EventType = {
|
|
|
37600
37534
|
* under the hood.
|
|
37601
37535
|
*/
|
|
37602
37536
|
LOAD: 'load',
|
|
37603
|
-
/**
|
|
37604
|
-
* The unload event.
|
|
37605
|
-
*/
|
|
37606
|
-
UNLOAD: 'unload',
|
|
37607
37537
|
/**
|
|
37608
37538
|
* The touchstart event. Bubbles, will only ever fire in browsers with
|
|
37609
37539
|
* touch support.
|
|
@@ -37619,30 +37549,12 @@ const EventType = {
|
|
|
37619
37549
|
* touch support.
|
|
37620
37550
|
*/
|
|
37621
37551
|
TOUCHMOVE: 'touchmove',
|
|
37622
|
-
/**
|
|
37623
|
-
* The input event.
|
|
37624
|
-
*/
|
|
37625
|
-
INPUT: 'input',
|
|
37626
|
-
/**
|
|
37627
|
-
* The scroll event.
|
|
37628
|
-
*/
|
|
37629
|
-
SCROLL: 'scroll',
|
|
37630
37552
|
/**
|
|
37631
37553
|
* The toggle event. The toggle event doesn't bubble, but you can use it in
|
|
37632
37554
|
* addEvent() and jsaction anyway. EventContract does the right thing
|
|
37633
37555
|
* under the hood.
|
|
37634
37556
|
*/
|
|
37635
|
-
TOGGLE: 'toggle'
|
|
37636
|
-
/**
|
|
37637
|
-
* A custom event. The actual custom event type is declared as the 'type'
|
|
37638
|
-
* field in the event details. Supported in Firefox 6+, IE 9+, and all Chrome
|
|
37639
|
-
* versions.
|
|
37640
|
-
*
|
|
37641
|
-
* This is an internal name. Users should use jsaction's fireCustomEvent to
|
|
37642
|
-
* fire custom events instead of relying on this type to create them.
|
|
37643
|
-
*/
|
|
37644
|
-
CUSTOM: '_custom',
|
|
37645
|
-
};
|
|
37557
|
+
TOGGLE: 'toggle'};
|
|
37646
37558
|
/** All event types that do not bubble or capture and need a polyfill. */
|
|
37647
37559
|
const MOUSE_SPECIAL_EVENT_TYPES = [
|
|
37648
37560
|
EventType.MOUSEENTER,
|
|
@@ -37989,11 +37901,6 @@ class EventContractContainer {
|
|
|
37989
37901
|
}
|
|
37990
37902
|
|
|
37991
37903
|
const Char = {
|
|
37992
|
-
/**
|
|
37993
|
-
* The separator between the namespace and the action name in the
|
|
37994
|
-
* jsaction attribute value.
|
|
37995
|
-
*/
|
|
37996
|
-
NAMESPACE_ACTION_SEPARATOR: '.',
|
|
37997
37904
|
/**
|
|
37998
37905
|
* The separator between the event name and action in the jsaction
|
|
37999
37906
|
* attribute value.
|
|
@@ -76695,7 +76602,7 @@ class PlatformNavigation {
|
|
|
76695
76602
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PlatformNavigation, deps: [], target: FactoryTarget.Injectable }); }
|
|
76696
76603
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PlatformNavigation, providedIn: 'platform', useFactory: () => window.navigation }); }
|
|
76697
76604
|
}
|
|
76698
|
-
ɵɵngDeclareClassMetadata({
|
|
76605
|
+
ɵɵngDeclareClassMetadata({ type: PlatformNavigation, decorators: [{
|
|
76699
76606
|
type: Injectable,
|
|
76700
76607
|
args: [{ providedIn: 'platform', useFactory: () => window.navigation }]
|
|
76701
76608
|
}] });
|
|
@@ -76738,7 +76645,7 @@ class PlatformLocation {
|
|
|
76738
76645
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PlatformLocation, deps: [], target: FactoryTarget.Injectable }); }
|
|
76739
76646
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PlatformLocation, providedIn: 'platform', useFactory: () => inject(BrowserPlatformLocation) }); }
|
|
76740
76647
|
}
|
|
76741
|
-
ɵɵngDeclareClassMetadata({
|
|
76648
|
+
ɵɵngDeclareClassMetadata({ type: PlatformLocation, decorators: [{
|
|
76742
76649
|
type: Injectable,
|
|
76743
76650
|
args: [{ providedIn: 'platform', useFactory: () => inject(BrowserPlatformLocation) }]
|
|
76744
76651
|
}] });
|
|
@@ -76821,7 +76728,7 @@ class BrowserPlatformLocation extends PlatformLocation {
|
|
|
76821
76728
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BrowserPlatformLocation, deps: [], target: FactoryTarget.Injectable }); }
|
|
76822
76729
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BrowserPlatformLocation, providedIn: 'platform', useFactory: () => new BrowserPlatformLocation() }); }
|
|
76823
76730
|
}
|
|
76824
|
-
ɵɵngDeclareClassMetadata({
|
|
76731
|
+
ɵɵngDeclareClassMetadata({ type: BrowserPlatformLocation, decorators: [{
|
|
76825
76732
|
type: Injectable,
|
|
76826
76733
|
args: [{
|
|
76827
76734
|
providedIn: 'platform',
|
|
@@ -76910,7 +76817,7 @@ class LocationStrategy {
|
|
|
76910
76817
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LocationStrategy, deps: [], target: FactoryTarget.Injectable }); }
|
|
76911
76818
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LocationStrategy, providedIn: 'root', useFactory: () => inject(PathLocationStrategy) }); }
|
|
76912
76819
|
}
|
|
76913
|
-
ɵɵngDeclareClassMetadata({
|
|
76820
|
+
ɵɵngDeclareClassMetadata({ type: LocationStrategy, decorators: [{
|
|
76914
76821
|
type: Injectable,
|
|
76915
76822
|
args: [{ providedIn: 'root', useFactory: () => inject(PathLocationStrategy) }]
|
|
76916
76823
|
}] });
|
|
@@ -77023,7 +76930,7 @@ class PathLocationStrategy extends LocationStrategy {
|
|
|
77023
76930
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PathLocationStrategy, deps: [{ token: PlatformLocation }, { token: APP_BASE_HREF, optional: true }], target: FactoryTarget.Injectable }); }
|
|
77024
76931
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PathLocationStrategy, providedIn: 'root' }); }
|
|
77025
76932
|
}
|
|
77026
|
-
ɵɵngDeclareClassMetadata({
|
|
76933
|
+
ɵɵngDeclareClassMetadata({ type: PathLocationStrategy, decorators: [{
|
|
77027
76934
|
type: Injectable,
|
|
77028
76935
|
args: [{ providedIn: 'root' }]
|
|
77029
76936
|
}], ctorParameters: () => [{ type: PlatformLocation }, { type: undefined, decorators: [{
|
|
@@ -77112,7 +77019,7 @@ class HashLocationStrategy extends LocationStrategy {
|
|
|
77112
77019
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HashLocationStrategy, deps: [{ token: PlatformLocation }, { token: APP_BASE_HREF, optional: true }], target: FactoryTarget.Injectable }); }
|
|
77113
77020
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HashLocationStrategy }); }
|
|
77114
77021
|
}
|
|
77115
|
-
ɵɵngDeclareClassMetadata({
|
|
77022
|
+
ɵɵngDeclareClassMetadata({ type: HashLocationStrategy, decorators: [{
|
|
77116
77023
|
type: Injectable
|
|
77117
77024
|
}], ctorParameters: () => [{ type: PlatformLocation }, { type: undefined, decorators: [{
|
|
77118
77025
|
type: Optional
|
|
@@ -77362,7 +77269,7 @@ class Location {
|
|
|
77362
77269
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: Location, deps: [{ token: LocationStrategy }], target: FactoryTarget.Injectable }); }
|
|
77363
77270
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: Location, providedIn: 'root', useFactory: createLocation }); }
|
|
77364
77271
|
}
|
|
77365
|
-
ɵɵngDeclareClassMetadata({
|
|
77272
|
+
ɵɵngDeclareClassMetadata({ type: Location, decorators: [{
|
|
77366
77273
|
type: Injectable,
|
|
77367
77274
|
args: [{
|
|
77368
77275
|
providedIn: 'root',
|
|
@@ -77539,21 +77446,11 @@ const NumberSymbol = {
|
|
|
77539
77446
|
* Example: 2`,`345.67
|
|
77540
77447
|
*/
|
|
77541
77448
|
Group: 1,
|
|
77542
|
-
/**
|
|
77543
|
-
* List-item separator.
|
|
77544
|
-
* Example: "one, two, and three"
|
|
77545
|
-
*/
|
|
77546
|
-
List: 2,
|
|
77547
77449
|
/**
|
|
77548
77450
|
* Sign for percentage (out of 100).
|
|
77549
77451
|
* Example: 23.4%
|
|
77550
77452
|
*/
|
|
77551
77453
|
PercentSign: 3,
|
|
77552
|
-
/**
|
|
77553
|
-
* Sign for positive numbers.
|
|
77554
|
-
* Example: +23
|
|
77555
|
-
*/
|
|
77556
|
-
PlusSign: 4,
|
|
77557
77454
|
/**
|
|
77558
77455
|
* Sign for negative numbers.
|
|
77559
77456
|
* Example: -23
|
|
@@ -77564,31 +77461,11 @@ const NumberSymbol = {
|
|
|
77564
77461
|
* Example: 1.2E3
|
|
77565
77462
|
*/
|
|
77566
77463
|
Exponential: 6,
|
|
77567
|
-
/**
|
|
77568
|
-
* Human-readable format of exponential.
|
|
77569
|
-
* Example: 1.2x103
|
|
77570
|
-
*/
|
|
77571
|
-
SuperscriptingExponent: 7,
|
|
77572
|
-
/**
|
|
77573
|
-
* Sign for permille (out of 1000).
|
|
77574
|
-
* Example: 23.4‰
|
|
77575
|
-
*/
|
|
77576
|
-
PerMille: 8,
|
|
77577
77464
|
/**
|
|
77578
77465
|
* Infinity, can be used with plus and minus.
|
|
77579
77466
|
* Example: ∞, +∞, -∞
|
|
77580
77467
|
*/
|
|
77581
77468
|
Infinity: 9,
|
|
77582
|
-
/**
|
|
77583
|
-
* Not a number.
|
|
77584
|
-
* Example: NaN
|
|
77585
|
-
*/
|
|
77586
|
-
NaN: 10,
|
|
77587
|
-
/**
|
|
77588
|
-
* Symbol used between time units.
|
|
77589
|
-
* Example: 10:52
|
|
77590
|
-
*/
|
|
77591
|
-
TimeSeparator: 11,
|
|
77592
77469
|
/**
|
|
77593
77470
|
* Decimal separator for currency values (fallback to `Decimal`).
|
|
77594
77471
|
* Example: $2,345.67
|
|
@@ -79163,7 +79040,7 @@ class NgLocalization {
|
|
|
79163
79040
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgLocalization, deps: [], target: FactoryTarget.Injectable }); }
|
|
79164
79041
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgLocalization, providedIn: 'root', useFactory: (locale) => new NgLocaleLocalization(locale), deps: [{ token: LOCALE_ID }] }); }
|
|
79165
79042
|
}
|
|
79166
|
-
ɵɵngDeclareClassMetadata({
|
|
79043
|
+
ɵɵngDeclareClassMetadata({ type: NgLocalization, decorators: [{
|
|
79167
79044
|
type: Injectable,
|
|
79168
79045
|
args: [{
|
|
79169
79046
|
providedIn: 'root',
|
|
@@ -79220,7 +79097,7 @@ class NgLocaleLocalization extends NgLocalization {
|
|
|
79220
79097
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgLocaleLocalization, deps: [{ token: LOCALE_ID }], target: FactoryTarget.Injectable }); }
|
|
79221
79098
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgLocaleLocalization }); }
|
|
79222
79099
|
}
|
|
79223
|
-
ɵɵngDeclareClassMetadata({
|
|
79100
|
+
ɵɵngDeclareClassMetadata({ type: NgLocaleLocalization, decorators: [{
|
|
79224
79101
|
type: Injectable
|
|
79225
79102
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
79226
79103
|
type: Inject,
|
|
@@ -79379,7 +79256,7 @@ class NgClass {
|
|
|
79379
79256
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgClass, deps: [{ token: ElementRef }, { token: Renderer2 }], target: FactoryTarget.Directive }); }
|
|
79380
79257
|
static { this.ɵdir = ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NgClass, isStandalone: true, selector: "[ngClass]", inputs: { klass: ["class", "klass"], ngClass: "ngClass" }, ngImport: i0 }); }
|
|
79381
79258
|
}
|
|
79382
|
-
ɵɵngDeclareClassMetadata({
|
|
79259
|
+
ɵɵngDeclareClassMetadata({ type: NgClass, decorators: [{
|
|
79383
79260
|
type: Directive,
|
|
79384
79261
|
args: [{
|
|
79385
79262
|
selector: '[ngClass]',
|
|
@@ -79549,7 +79426,7 @@ class NgComponentOutlet {
|
|
|
79549
79426
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgComponentOutlet, deps: [{ token: ViewContainerRef }], target: FactoryTarget.Directive }); }
|
|
79550
79427
|
static { this.ɵdir = ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NgComponentOutlet, isStandalone: true, selector: "[ngComponentOutlet]", inputs: { ngComponentOutlet: "ngComponentOutlet", ngComponentOutletInputs: "ngComponentOutletInputs", ngComponentOutletInjector: "ngComponentOutletInjector", ngComponentOutletContent: "ngComponentOutletContent", ngComponentOutletNgModule: "ngComponentOutletNgModule", ngComponentOutletNgModuleFactory: "ngComponentOutletNgModuleFactory" }, usesOnChanges: true, ngImport: i0 }); }
|
|
79551
79428
|
}
|
|
79552
|
-
ɵɵngDeclareClassMetadata({
|
|
79429
|
+
ɵɵngDeclareClassMetadata({ type: NgComponentOutlet, decorators: [{
|
|
79553
79430
|
type: Directive,
|
|
79554
79431
|
args: [{
|
|
79555
79432
|
selector: '[ngComponentOutlet]',
|
|
@@ -79848,7 +79725,7 @@ class NgForOf {
|
|
|
79848
79725
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgForOf, deps: [{ token: ViewContainerRef }, { token: TemplateRef }, { token: IterableDiffers }], target: FactoryTarget.Directive }); }
|
|
79849
79726
|
static { this.ɵdir = ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NgForOf, isStandalone: true, selector: "[ngFor][ngForOf]", inputs: { ngForOf: "ngForOf", ngForTrackBy: "ngForTrackBy", ngForTemplate: "ngForTemplate" }, ngImport: i0 }); }
|
|
79850
79727
|
}
|
|
79851
|
-
ɵɵngDeclareClassMetadata({
|
|
79728
|
+
ɵɵngDeclareClassMetadata({ type: NgForOf, decorators: [{
|
|
79852
79729
|
type: Directive,
|
|
79853
79730
|
args: [{
|
|
79854
79731
|
selector: '[ngFor][ngForOf]',
|
|
@@ -80074,7 +79951,7 @@ class NgIf {
|
|
|
80074
79951
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgIf, deps: [{ token: ViewContainerRef }, { token: TemplateRef }], target: FactoryTarget.Directive }); }
|
|
80075
79952
|
static { this.ɵdir = ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NgIf, isStandalone: true, selector: "[ngIf]", inputs: { ngIf: "ngIf", ngIfThen: "ngIfThen", ngIfElse: "ngIfElse" }, ngImport: i0 }); }
|
|
80076
79953
|
}
|
|
80077
|
-
ɵɵngDeclareClassMetadata({
|
|
79954
|
+
ɵɵngDeclareClassMetadata({ type: NgIf, decorators: [{
|
|
80078
79955
|
type: Directive,
|
|
80079
79956
|
args: [{
|
|
80080
79957
|
selector: '[ngIf]',
|
|
@@ -80237,7 +80114,7 @@ class NgSwitch {
|
|
|
80237
80114
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgSwitch, deps: [], target: FactoryTarget.Directive }); }
|
|
80238
80115
|
static { this.ɵdir = ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NgSwitch, isStandalone: true, selector: "[ngSwitch]", inputs: { ngSwitch: "ngSwitch" }, ngImport: i0 }); }
|
|
80239
80116
|
}
|
|
80240
|
-
ɵɵngDeclareClassMetadata({
|
|
80117
|
+
ɵɵngDeclareClassMetadata({ type: NgSwitch, decorators: [{
|
|
80241
80118
|
type: Directive,
|
|
80242
80119
|
args: [{
|
|
80243
80120
|
selector: '[ngSwitch]',
|
|
@@ -80298,7 +80175,7 @@ class NgSwitchCase {
|
|
|
80298
80175
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgSwitchCase, deps: [{ token: ViewContainerRef }, { token: TemplateRef }, { token: NgSwitch, host: true, optional: true }], target: FactoryTarget.Directive }); }
|
|
80299
80176
|
static { this.ɵdir = ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NgSwitchCase, isStandalone: true, selector: "[ngSwitchCase]", inputs: { ngSwitchCase: "ngSwitchCase" }, ngImport: i0 }); }
|
|
80300
80177
|
}
|
|
80301
|
-
ɵɵngDeclareClassMetadata({
|
|
80178
|
+
ɵɵngDeclareClassMetadata({ type: NgSwitchCase, decorators: [{
|
|
80302
80179
|
type: Directive,
|
|
80303
80180
|
args: [{
|
|
80304
80181
|
selector: '[ngSwitchCase]',
|
|
@@ -80335,7 +80212,7 @@ class NgSwitchDefault {
|
|
|
80335
80212
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgSwitchDefault, deps: [{ token: ViewContainerRef }, { token: TemplateRef }, { token: NgSwitch, host: true, optional: true }], target: FactoryTarget.Directive }); }
|
|
80336
80213
|
static { this.ɵdir = ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NgSwitchDefault, isStandalone: true, selector: "[ngSwitchDefault]", ngImport: i0 }); }
|
|
80337
80214
|
}
|
|
80338
|
-
ɵɵngDeclareClassMetadata({
|
|
80215
|
+
ɵɵngDeclareClassMetadata({ type: NgSwitchDefault, decorators: [{
|
|
80339
80216
|
type: Directive,
|
|
80340
80217
|
args: [{
|
|
80341
80218
|
selector: '[ngSwitchDefault]',
|
|
@@ -80413,7 +80290,7 @@ class NgPlural {
|
|
|
80413
80290
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgPlural, deps: [{ token: NgLocalization }], target: FactoryTarget.Directive }); }
|
|
80414
80291
|
static { this.ɵdir = ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NgPlural, isStandalone: true, selector: "[ngPlural]", inputs: { ngPlural: "ngPlural" }, ngImport: i0 }); }
|
|
80415
80292
|
}
|
|
80416
|
-
ɵɵngDeclareClassMetadata({
|
|
80293
|
+
ɵɵngDeclareClassMetadata({ type: NgPlural, decorators: [{
|
|
80417
80294
|
type: Directive,
|
|
80418
80295
|
args: [{
|
|
80419
80296
|
selector: '[ngPlural]',
|
|
@@ -80451,7 +80328,7 @@ class NgPluralCase {
|
|
|
80451
80328
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgPluralCase, deps: [{ token: 'ngPluralCase', attribute: true }, { token: TemplateRef }, { token: ViewContainerRef }, { token: NgPlural, host: true }], target: FactoryTarget.Directive }); }
|
|
80452
80329
|
static { this.ɵdir = ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NgPluralCase, isStandalone: true, selector: "[ngPluralCase]", ngImport: i0 }); }
|
|
80453
80330
|
}
|
|
80454
|
-
ɵɵngDeclareClassMetadata({
|
|
80331
|
+
ɵɵngDeclareClassMetadata({ type: NgPluralCase, decorators: [{
|
|
80455
80332
|
type: Directive,
|
|
80456
80333
|
args: [{
|
|
80457
80334
|
selector: '[ngPluralCase]',
|
|
@@ -80540,7 +80417,7 @@ class NgStyle {
|
|
|
80540
80417
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgStyle, deps: [{ token: ElementRef }, { token: KeyValueDiffers }, { token: Renderer2 }], target: FactoryTarget.Directive }); }
|
|
80541
80418
|
static { this.ɵdir = ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NgStyle, isStandalone: true, selector: "[ngStyle]", inputs: { ngStyle: "ngStyle" }, ngImport: i0 }); }
|
|
80542
80419
|
}
|
|
80543
|
-
ɵɵngDeclareClassMetadata({
|
|
80420
|
+
ɵɵngDeclareClassMetadata({ type: NgStyle, decorators: [{
|
|
80544
80421
|
type: Directive,
|
|
80545
80422
|
args: [{
|
|
80546
80423
|
selector: '[ngStyle]',
|
|
@@ -80644,7 +80521,7 @@ class NgTemplateOutlet {
|
|
|
80644
80521
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgTemplateOutlet, deps: [{ token: ViewContainerRef }], target: FactoryTarget.Directive }); }
|
|
80645
80522
|
static { this.ɵdir = ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NgTemplateOutlet, isStandalone: true, selector: "[ngTemplateOutlet]", inputs: { ngTemplateOutletContext: "ngTemplateOutletContext", ngTemplateOutlet: "ngTemplateOutlet", ngTemplateOutletInjector: "ngTemplateOutletInjector" }, usesOnChanges: true, ngImport: i0 }); }
|
|
80646
80523
|
}
|
|
80647
|
-
ɵɵngDeclareClassMetadata({
|
|
80524
|
+
ɵɵngDeclareClassMetadata({ type: NgTemplateOutlet, decorators: [{
|
|
80648
80525
|
type: Directive,
|
|
80649
80526
|
args: [{
|
|
80650
80527
|
selector: '[ngTemplateOutlet]',
|
|
@@ -80815,7 +80692,7 @@ class AsyncPipe {
|
|
|
80815
80692
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AsyncPipe, deps: [{ token: ChangeDetectorRef }], target: FactoryTarget.Pipe }); }
|
|
80816
80693
|
static { this.ɵpipe = ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: AsyncPipe, isStandalone: true, name: "async", pure: false }); }
|
|
80817
80694
|
}
|
|
80818
|
-
ɵɵngDeclareClassMetadata({
|
|
80695
|
+
ɵɵngDeclareClassMetadata({ type: AsyncPipe, decorators: [{
|
|
80819
80696
|
type: Pipe,
|
|
80820
80697
|
args: [{
|
|
80821
80698
|
name: 'async',
|
|
@@ -80851,7 +80728,7 @@ class LowerCasePipe {
|
|
|
80851
80728
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LowerCasePipe, deps: [], target: FactoryTarget.Pipe }); }
|
|
80852
80729
|
static { this.ɵpipe = ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: LowerCasePipe, isStandalone: true, name: "lowercase" }); }
|
|
80853
80730
|
}
|
|
80854
|
-
ɵɵngDeclareClassMetadata({
|
|
80731
|
+
ɵɵngDeclareClassMetadata({ type: LowerCasePipe, decorators: [{
|
|
80855
80732
|
type: Pipe,
|
|
80856
80733
|
args: [{
|
|
80857
80734
|
name: 'lowercase',
|
|
@@ -80896,7 +80773,7 @@ class TitleCasePipe {
|
|
|
80896
80773
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TitleCasePipe, deps: [], target: FactoryTarget.Pipe }); }
|
|
80897
80774
|
static { this.ɵpipe = ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: TitleCasePipe, isStandalone: true, name: "titlecase" }); }
|
|
80898
80775
|
}
|
|
80899
|
-
ɵɵngDeclareClassMetadata({
|
|
80776
|
+
ɵɵngDeclareClassMetadata({ type: TitleCasePipe, decorators: [{
|
|
80900
80777
|
type: Pipe,
|
|
80901
80778
|
args: [{
|
|
80902
80779
|
name: 'titlecase',
|
|
@@ -80923,7 +80800,7 @@ class UpperCasePipe {
|
|
|
80923
80800
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UpperCasePipe, deps: [], target: FactoryTarget.Pipe }); }
|
|
80924
80801
|
static { this.ɵpipe = ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: UpperCasePipe, isStandalone: true, name: "uppercase" }); }
|
|
80925
80802
|
}
|
|
80926
|
-
ɵɵngDeclareClassMetadata({
|
|
80803
|
+
ɵɵngDeclareClassMetadata({ type: UpperCasePipe, decorators: [{
|
|
80927
80804
|
type: Pipe,
|
|
80928
80805
|
args: [{
|
|
80929
80806
|
name: 'uppercase',
|
|
@@ -81155,7 +81032,7 @@ class DatePipe {
|
|
|
81155
81032
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DatePipe, deps: [{ token: LOCALE_ID }, { token: DATE_PIPE_DEFAULT_TIMEZONE, optional: true }, { token: DATE_PIPE_DEFAULT_OPTIONS, optional: true }], target: FactoryTarget.Pipe }); }
|
|
81156
81033
|
static { this.ɵpipe = ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: DatePipe, isStandalone: true, name: "date" }); }
|
|
81157
81034
|
}
|
|
81158
|
-
ɵɵngDeclareClassMetadata({
|
|
81035
|
+
ɵɵngDeclareClassMetadata({ type: DatePipe, decorators: [{
|
|
81159
81036
|
type: Pipe,
|
|
81160
81037
|
args: [{
|
|
81161
81038
|
name: 'date',
|
|
@@ -81214,7 +81091,7 @@ class I18nPluralPipe {
|
|
|
81214
81091
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: I18nPluralPipe, deps: [{ token: NgLocalization }], target: FactoryTarget.Pipe }); }
|
|
81215
81092
|
static { this.ɵpipe = ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: I18nPluralPipe, isStandalone: true, name: "i18nPlural" }); }
|
|
81216
81093
|
}
|
|
81217
|
-
ɵɵngDeclareClassMetadata({
|
|
81094
|
+
ɵɵngDeclareClassMetadata({ type: I18nPluralPipe, decorators: [{
|
|
81218
81095
|
type: Pipe,
|
|
81219
81096
|
args: [{
|
|
81220
81097
|
name: 'i18nPlural',
|
|
@@ -81262,7 +81139,7 @@ class I18nSelectPipe {
|
|
|
81262
81139
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: I18nSelectPipe, deps: [], target: FactoryTarget.Pipe }); }
|
|
81263
81140
|
static { this.ɵpipe = ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: I18nSelectPipe, isStandalone: true, name: "i18nSelect" }); }
|
|
81264
81141
|
}
|
|
81265
|
-
ɵɵngDeclareClassMetadata({
|
|
81142
|
+
ɵɵngDeclareClassMetadata({ type: I18nSelectPipe, decorators: [{
|
|
81266
81143
|
type: Pipe,
|
|
81267
81144
|
args: [{
|
|
81268
81145
|
name: 'i18nSelect',
|
|
@@ -81295,7 +81172,7 @@ class JsonPipe {
|
|
|
81295
81172
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: JsonPipe, deps: [], target: FactoryTarget.Pipe }); }
|
|
81296
81173
|
static { this.ɵpipe = ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: JsonPipe, isStandalone: true, name: "json", pure: false }); }
|
|
81297
81174
|
}
|
|
81298
|
-
ɵɵngDeclareClassMetadata({
|
|
81175
|
+
ɵɵngDeclareClassMetadata({ type: JsonPipe, decorators: [{
|
|
81299
81176
|
type: Pipe,
|
|
81300
81177
|
args: [{
|
|
81301
81178
|
name: 'json',
|
|
@@ -81356,7 +81233,7 @@ class KeyValuePipe {
|
|
|
81356
81233
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: KeyValuePipe, deps: [{ token: KeyValueDiffers }], target: FactoryTarget.Pipe }); }
|
|
81357
81234
|
static { this.ɵpipe = ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: KeyValuePipe, isStandalone: true, name: "keyvalue", pure: false }); }
|
|
81358
81235
|
}
|
|
81359
|
-
ɵɵngDeclareClassMetadata({
|
|
81236
|
+
ɵɵngDeclareClassMetadata({ type: KeyValuePipe, decorators: [{
|
|
81360
81237
|
type: Pipe,
|
|
81361
81238
|
args: [{
|
|
81362
81239
|
name: 'keyvalue',
|
|
@@ -81477,7 +81354,7 @@ class DecimalPipe {
|
|
|
81477
81354
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DecimalPipe, deps: [{ token: LOCALE_ID }], target: FactoryTarget.Pipe }); }
|
|
81478
81355
|
static { this.ɵpipe = ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: DecimalPipe, isStandalone: true, name: "number" }); }
|
|
81479
81356
|
}
|
|
81480
|
-
ɵɵngDeclareClassMetadata({
|
|
81357
|
+
ɵɵngDeclareClassMetadata({ type: DecimalPipe, decorators: [{
|
|
81481
81358
|
type: Pipe,
|
|
81482
81359
|
args: [{
|
|
81483
81360
|
name: 'number',
|
|
@@ -81542,7 +81419,7 @@ class PercentPipe {
|
|
|
81542
81419
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PercentPipe, deps: [{ token: LOCALE_ID }], target: FactoryTarget.Pipe }); }
|
|
81543
81420
|
static { this.ɵpipe = ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: PercentPipe, isStandalone: true, name: "percent" }); }
|
|
81544
81421
|
}
|
|
81545
|
-
ɵɵngDeclareClassMetadata({
|
|
81422
|
+
ɵɵngDeclareClassMetadata({ type: PercentPipe, decorators: [{
|
|
81546
81423
|
type: Pipe,
|
|
81547
81424
|
args: [{
|
|
81548
81425
|
name: 'percent',
|
|
@@ -81608,7 +81485,7 @@ class CurrencyPipe {
|
|
|
81608
81485
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CurrencyPipe, deps: [{ token: LOCALE_ID }, { token: DEFAULT_CURRENCY_CODE }], target: FactoryTarget.Pipe }); }
|
|
81609
81486
|
static { this.ɵpipe = ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: CurrencyPipe, isStandalone: true, name: "currency" }); }
|
|
81610
81487
|
}
|
|
81611
|
-
ɵɵngDeclareClassMetadata({
|
|
81488
|
+
ɵɵngDeclareClassMetadata({ type: CurrencyPipe, decorators: [{
|
|
81612
81489
|
type: Pipe,
|
|
81613
81490
|
args: [{
|
|
81614
81491
|
name: 'currency',
|
|
@@ -81688,7 +81565,7 @@ class SlicePipe {
|
|
|
81688
81565
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SlicePipe, deps: [], target: FactoryTarget.Pipe }); }
|
|
81689
81566
|
static { this.ɵpipe = ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: SlicePipe, isStandalone: true, name: "slice", pure: false }); }
|
|
81690
81567
|
}
|
|
81691
|
-
ɵɵngDeclareClassMetadata({
|
|
81568
|
+
ɵɵngDeclareClassMetadata({ type: SlicePipe, decorators: [{
|
|
81692
81569
|
type: Pipe,
|
|
81693
81570
|
args: [{
|
|
81694
81571
|
name: 'slice',
|
|
@@ -81736,7 +81613,7 @@ class CommonModule {
|
|
|
81736
81613
|
static { this.ɵmod = ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: CommonModule, imports: [NgClass, NgComponentOutlet, NgForOf, NgIf, NgTemplateOutlet, NgStyle, NgSwitch, NgSwitchCase, NgSwitchDefault, NgPlural, NgPluralCase, AsyncPipe, UpperCasePipe, LowerCasePipe, JsonPipe, SlicePipe, DecimalPipe, PercentPipe, TitleCasePipe, CurrencyPipe, DatePipe, I18nPluralPipe, I18nSelectPipe, KeyValuePipe], exports: [NgClass, NgComponentOutlet, NgForOf, NgIf, NgTemplateOutlet, NgStyle, NgSwitch, NgSwitchCase, NgSwitchDefault, NgPlural, NgPluralCase, AsyncPipe, UpperCasePipe, LowerCasePipe, JsonPipe, SlicePipe, DecimalPipe, PercentPipe, TitleCasePipe, CurrencyPipe, DatePipe, I18nPluralPipe, I18nSelectPipe, KeyValuePipe] }); }
|
|
81737
81614
|
static { this.ɵinj = ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CommonModule }); }
|
|
81738
81615
|
}
|
|
81739
|
-
ɵɵngDeclareClassMetadata({
|
|
81616
|
+
ɵɵngDeclareClassMetadata({ type: CommonModule, decorators: [{
|
|
81740
81617
|
type: NgModule,
|
|
81741
81618
|
args: [{
|
|
81742
81619
|
imports: [COMMON_DIRECTIVES, COMMON_PIPES],
|
|
@@ -82324,7 +82201,7 @@ class LCPImageObserver {
|
|
|
82324
82201
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LCPImageObserver, deps: [], target: FactoryTarget.Injectable }); }
|
|
82325
82202
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LCPImageObserver, providedIn: 'root' }); }
|
|
82326
82203
|
}
|
|
82327
|
-
ɵɵngDeclareClassMetadata({
|
|
82204
|
+
ɵɵngDeclareClassMetadata({ type: LCPImageObserver, decorators: [{
|
|
82328
82205
|
type: Injectable,
|
|
82329
82206
|
args: [{ providedIn: 'root' }]
|
|
82330
82207
|
}], ctorParameters: () => [] });
|
|
@@ -82451,7 +82328,7 @@ class PreconnectLinkChecker {
|
|
|
82451
82328
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PreconnectLinkChecker, deps: [], target: FactoryTarget.Injectable }); }
|
|
82452
82329
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PreconnectLinkChecker, providedIn: 'root' }); }
|
|
82453
82330
|
}
|
|
82454
|
-
ɵɵngDeclareClassMetadata({
|
|
82331
|
+
ɵɵngDeclareClassMetadata({ type: PreconnectLinkChecker, decorators: [{
|
|
82455
82332
|
type: Injectable,
|
|
82456
82333
|
args: [{ providedIn: 'root' }]
|
|
82457
82334
|
}], ctorParameters: () => [] });
|
|
@@ -82543,7 +82420,7 @@ class PreloadLinkCreator {
|
|
|
82543
82420
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PreloadLinkCreator, deps: [], target: FactoryTarget.Injectable }); }
|
|
82544
82421
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PreloadLinkCreator, providedIn: 'root' }); }
|
|
82545
82422
|
}
|
|
82546
|
-
ɵɵngDeclareClassMetadata({
|
|
82423
|
+
ɵɵngDeclareClassMetadata({ type: PreloadLinkCreator, decorators: [{
|
|
82547
82424
|
type: Injectable,
|
|
82548
82425
|
args: [{ providedIn: 'root' }]
|
|
82549
82426
|
}] });
|
|
@@ -83033,7 +82910,7 @@ class NgOptimizedImage {
|
|
|
83033
82910
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgOptimizedImage, deps: [], target: FactoryTarget.Directive }); }
|
|
83034
82911
|
static { this.ɵdir = ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.2.13", type: NgOptimizedImage, isStandalone: true, selector: "img[ngSrc]", inputs: { ngSrc: ["ngSrc", "ngSrc", unwrapSafeUrl], ngSrcset: "ngSrcset", sizes: "sizes", width: ["width", "width", numberAttribute], height: ["height", "height", numberAttribute], loading: "loading", priority: ["priority", "priority", booleanAttribute], loaderParams: "loaderParams", disableOptimizedSrcset: ["disableOptimizedSrcset", "disableOptimizedSrcset", booleanAttribute], fill: ["fill", "fill", booleanAttribute], placeholder: ["placeholder", "placeholder", booleanOrUrlAttribute], placeholderConfig: "placeholderConfig", src: "src", srcset: "srcset" }, host: { properties: { "style.position": "fill ? \"absolute\" : null", "style.width": "fill ? \"100%\" : null", "style.height": "fill ? \"100%\" : null", "style.inset": "fill ? \"0\" : null", "style.background-size": "placeholder ? \"cover\" : null", "style.background-position": "placeholder ? \"50% 50%\" : null", "style.background-repeat": "placeholder ? \"no-repeat\" : null", "style.background-image": "placeholder ? generatePlaceholder(placeholder) : null", "style.filter": "placeholder && shouldBlurPlaceholder(placeholderConfig) ? \"blur(15px)\" : null" } }, usesOnChanges: true, ngImport: i0 }); }
|
|
83035
82912
|
}
|
|
83036
|
-
ɵɵngDeclareClassMetadata({
|
|
82913
|
+
ɵɵngDeclareClassMetadata({ type: NgOptimizedImage, decorators: [{
|
|
83037
82914
|
type: Directive,
|
|
83038
82915
|
args: [{
|
|
83039
82916
|
standalone: true,
|
|
@@ -85020,7 +84897,7 @@ class HttpClient {
|
|
|
85020
84897
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HttpClient, deps: [{ token: HttpHandler }], target: FactoryTarget.Injectable }); }
|
|
85021
84898
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HttpClient }); }
|
|
85022
84899
|
}
|
|
85023
|
-
ɵɵngDeclareClassMetadata({
|
|
84900
|
+
ɵɵngDeclareClassMetadata({ type: HttpClient, decorators: [{
|
|
85024
84901
|
type: Injectable
|
|
85025
84902
|
}], ctorParameters: () => [{ type: HttpHandler }] });
|
|
85026
84903
|
|
|
@@ -85236,7 +85113,7 @@ class FetchBackend {
|
|
|
85236
85113
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FetchBackend, deps: [], target: FactoryTarget.Injectable }); }
|
|
85237
85114
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FetchBackend }); }
|
|
85238
85115
|
}
|
|
85239
|
-
ɵɵngDeclareClassMetadata({
|
|
85116
|
+
ɵɵngDeclareClassMetadata({ type: FetchBackend, decorators: [{
|
|
85240
85117
|
type: Injectable
|
|
85241
85118
|
}] });
|
|
85242
85119
|
/**
|
|
@@ -85369,7 +85246,7 @@ class HttpInterceptorHandler extends HttpHandler {
|
|
|
85369
85246
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HttpInterceptorHandler, deps: [{ token: HttpBackend }, { token: EnvironmentInjector }], target: FactoryTarget.Injectable }); }
|
|
85370
85247
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HttpInterceptorHandler }); }
|
|
85371
85248
|
}
|
|
85372
|
-
ɵɵngDeclareClassMetadata({
|
|
85249
|
+
ɵɵngDeclareClassMetadata({ type: HttpInterceptorHandler, decorators: [{
|
|
85373
85250
|
type: Injectable
|
|
85374
85251
|
}], ctorParameters: () => [{ type: HttpBackend }, { type: EnvironmentInjector }] });
|
|
85375
85252
|
|
|
@@ -85572,7 +85449,7 @@ class JsonpClientBackend {
|
|
|
85572
85449
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: JsonpClientBackend, deps: [{ token: JsonpCallbackContext }, { token: DOCUMENT }], target: FactoryTarget.Injectable }); }
|
|
85573
85450
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: JsonpClientBackend }); }
|
|
85574
85451
|
}
|
|
85575
|
-
ɵɵngDeclareClassMetadata({
|
|
85452
|
+
ɵɵngDeclareClassMetadata({ type: JsonpClientBackend, decorators: [{
|
|
85576
85453
|
type: Injectable
|
|
85577
85454
|
}], ctorParameters: () => [{ type: JsonpCallbackContext }, { type: undefined, decorators: [{
|
|
85578
85455
|
type: Inject,
|
|
@@ -85613,7 +85490,7 @@ class JsonpInterceptor {
|
|
|
85613
85490
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: JsonpInterceptor, deps: [{ token: EnvironmentInjector }], target: FactoryTarget.Injectable }); }
|
|
85614
85491
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: JsonpInterceptor }); }
|
|
85615
85492
|
}
|
|
85616
|
-
ɵɵngDeclareClassMetadata({
|
|
85493
|
+
ɵɵngDeclareClassMetadata({ type: JsonpInterceptor, decorators: [{
|
|
85617
85494
|
type: Injectable
|
|
85618
85495
|
}], ctorParameters: () => [{ type: EnvironmentInjector }] });
|
|
85619
85496
|
|
|
@@ -85896,7 +85773,7 @@ class HttpXhrBackend {
|
|
|
85896
85773
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HttpXhrBackend, deps: [{ token: XhrFactory }], target: FactoryTarget.Injectable }); }
|
|
85897
85774
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HttpXhrBackend }); }
|
|
85898
85775
|
}
|
|
85899
|
-
ɵɵngDeclareClassMetadata({
|
|
85776
|
+
ɵɵngDeclareClassMetadata({ type: HttpXhrBackend, decorators: [{
|
|
85900
85777
|
type: Injectable
|
|
85901
85778
|
}], ctorParameters: () => [{ type: XhrFactory }] });
|
|
85902
85779
|
|
|
@@ -85948,7 +85825,7 @@ class HttpXsrfCookieExtractor {
|
|
|
85948
85825
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HttpXsrfCookieExtractor, deps: [{ token: DOCUMENT }, { token: PLATFORM_ID }, { token: XSRF_COOKIE_NAME }], target: FactoryTarget.Injectable }); }
|
|
85949
85826
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HttpXsrfCookieExtractor }); }
|
|
85950
85827
|
}
|
|
85951
|
-
ɵɵngDeclareClassMetadata({
|
|
85828
|
+
ɵɵngDeclareClassMetadata({ type: HttpXsrfCookieExtractor, decorators: [{
|
|
85952
85829
|
type: Injectable
|
|
85953
85830
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
85954
85831
|
type: Inject,
|
|
@@ -85994,7 +85871,7 @@ class HttpXsrfInterceptor {
|
|
|
85994
85871
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HttpXsrfInterceptor, deps: [{ token: EnvironmentInjector }], target: FactoryTarget.Injectable }); }
|
|
85995
85872
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HttpXsrfInterceptor }); }
|
|
85996
85873
|
}
|
|
85997
|
-
ɵɵngDeclareClassMetadata({
|
|
85874
|
+
ɵɵngDeclareClassMetadata({ type: HttpXsrfInterceptor, decorators: [{
|
|
85998
85875
|
type: Injectable
|
|
85999
85876
|
}], ctorParameters: () => [{ type: EnvironmentInjector }] });
|
|
86000
85877
|
|
|
@@ -86208,7 +86085,7 @@ class HttpClientXsrfModule {
|
|
|
86208
86085
|
{ provide: XSRF_ENABLED, useValue: true },
|
|
86209
86086
|
] }); }
|
|
86210
86087
|
}
|
|
86211
|
-
ɵɵngDeclareClassMetadata({
|
|
86088
|
+
ɵɵngDeclareClassMetadata({ type: HttpClientXsrfModule, decorators: [{
|
|
86212
86089
|
type: NgModule,
|
|
86213
86090
|
args: [{
|
|
86214
86091
|
providers: [
|
|
@@ -86238,7 +86115,7 @@ class HttpClientModule {
|
|
|
86238
86115
|
static { this.ɵmod = ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: HttpClientModule }); }
|
|
86239
86116
|
static { this.ɵinj = ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HttpClientModule, providers: [provideHttpClient(withInterceptorsFromDi())] }); }
|
|
86240
86117
|
}
|
|
86241
|
-
ɵɵngDeclareClassMetadata({
|
|
86118
|
+
ɵɵngDeclareClassMetadata({ type: HttpClientModule, decorators: [{
|
|
86242
86119
|
type: NgModule,
|
|
86243
86120
|
args: [{
|
|
86244
86121
|
/**
|
|
@@ -86262,7 +86139,7 @@ class HttpClientJsonpModule {
|
|
|
86262
86139
|
static { this.ɵmod = ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: HttpClientJsonpModule }); }
|
|
86263
86140
|
static { this.ɵinj = ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HttpClientJsonpModule, providers: [withJsonpSupport().ɵproviders] }); }
|
|
86264
86141
|
}
|
|
86265
|
-
ɵɵngDeclareClassMetadata({
|
|
86142
|
+
ɵɵngDeclareClassMetadata({ type: HttpClientJsonpModule, decorators: [{
|
|
86266
86143
|
type: NgModule,
|
|
86267
86144
|
args: [{
|
|
86268
86145
|
providers: [withJsonpSupport().ɵproviders],
|
|
@@ -87305,28 +87182,11 @@ const REGEX = {
|
|
|
87305
87182
|
IPAD: /iPad/i,
|
|
87306
87183
|
MAC: /Mac/i,
|
|
87307
87184
|
ANDROID_TABLET: /android|android 3.0|xoom|sch-i800|playbook|tablet|kindle/i,
|
|
87308
|
-
MOBILE: /Mobile/i,
|
|
87309
|
-
WINDOWS: /Windows Phone/i,
|
|
87310
87185
|
SUPPORTED_IMAGE_FORMAT: /\.(bmp|gif|jpe|jpg|jpeg|tif|tiff|pbm|png|ico)$/i,
|
|
87311
|
-
SUPPORTED_FILE_FORMAT: /\.(txt|js|css|html|script|properties|json|java|xml|smd|xmi|sql|log|wsdl|vm|ftl|jrxml|yml|yaml|md|less|jsp)$/i,
|
|
87312
87186
|
SUPPORTED_AUDIO_FORMAT: /\.(mp3|ogg|webm|wma|3gp|wav|m4a)$/i,
|
|
87313
87187
|
SUPPORTED_VIDEO_FORMAT: /\.(mp4|ogg|webm|wmv|mpeg|mpg|avi|mov)$/i,
|
|
87314
|
-
PAGE_RESOURCE_PATH: /^\/pages\/.*\.(js|css|html|json)$/,
|
|
87315
|
-
MIN_PAGE_RESOURCE_PATH: /.*(page.min.html)$/,
|
|
87316
|
-
VALID_EMAIL: /^[a-zA-Z][\w.+]+@[a-zA-Z_]+?\.[a-zA-Z.]{1,4}[a-zA-Z]$/,
|
|
87317
87188
|
VALID_WEB_URL: /^(http[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9=:?\/\.\-]+(\.[a-zA-Z]{2,5}[\.]{0,1})?/,
|
|
87318
|
-
VALID_WEBSOCKET_URL: /^(ws[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9=:?\/\.\-]+(\.[a-zA-Z]{2,5}[\.]{0,1})?/,
|
|
87319
|
-
VALID_RELATIVE_URL: /^(?!www\.|(?:http|ftp)s?:\/\/|[A-Za-z]:\\|\/\/).*/,
|
|
87320
87189
|
REPLACE_PATTERN: /\$\{([^\}]+)\}/g,
|
|
87321
|
-
ZIP_FILE: /\.zip$/i,
|
|
87322
|
-
EXE_FILE: /\.exe$/i,
|
|
87323
|
-
NO_QUOTES_ALLOWED: /^[^'|"]*$/,
|
|
87324
|
-
NO_DOUBLE_QUOTES_ALLOWED: /^[^"]*$/,
|
|
87325
|
-
VALID_HTML: /<[a-z][\s\S]*>/i,
|
|
87326
|
-
VALID_PASSWORD: /^[0-9a-zA-Z-_.@&*!#$%]+$/,
|
|
87327
|
-
SPECIAL_CHARACTERS: /[^A-Z0-9a-z_]+/i,
|
|
87328
|
-
APP_SERVER_URL_FORMAT: /^(http[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9\.\-]+([:]?[0-9]{2,5}|\.[a-zA-Z]{2,5}[\.]{0,1})\/+[^?#&=]+$/,
|
|
87329
|
-
JSON_DATE_FORMAT: /\d{4}-[0-1]\d-[0-3]\d(T[0-2]\d:[0-5]\d:[0-5]\d.\d{1,3}Z$)?/,
|
|
87330
87190
|
DATA_URL: /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i,
|
|
87331
87191
|
ISO_DATE_FORMAT: /(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2}:\d{2})(\.\d+)?([+-]\d{2}:?\d{2}|Z)$/
|
|
87332
87192
|
}, compareBySeparator = ':';
|
|
@@ -91581,7 +91441,6 @@ var partialDialog_build$1 = /*#__PURE__*/Object.freeze({
|
|
|
91581
91441
|
const ALLFIELDS = 'All Fields';
|
|
91582
91442
|
const EDIT_MODE = {
|
|
91583
91443
|
QUICK_EDIT: 'quickedit',
|
|
91584
|
-
INLINE: 'inline',
|
|
91585
91444
|
FORM: 'form',
|
|
91586
91445
|
DIALOG: 'dialog'
|
|
91587
91446
|
};
|