@wavemaker/angular-codegen 11.10.0-rc.198 → 11.10.1-rc.6054
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 +304 -62
- package/angular-app/package-lock.json +304 -62
- 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 +37 -43
- package/package-lock.json +37 -43
- package/package.json +2 -2
- package/templates/page/page.module.ts.hbs +1 -1
|
@@ -571,7 +571,6 @@ function isFunction$3(x) {
|
|
|
571
571
|
/** PURE_IMPORTS_START PURE_IMPORTS_END */
|
|
572
572
|
var _enable_super_gross_mode_that_will_cause_bad_things$1 = false;
|
|
573
573
|
var config$1 = {
|
|
574
|
-
Promise: undefined,
|
|
575
574
|
set useDeprecatedSynchronousErrorHandling(value) {
|
|
576
575
|
if (value) {
|
|
577
576
|
var error = /*@__PURE__*/ new Error();
|
|
@@ -1970,7 +1969,7 @@ var FinallySubscriber$1 = /*@__PURE__*/ (function (_super) {
|
|
|
1970
1969
|
/** PURE_IMPORTS_START _util_EmptyError,_filter,_take,_defaultIfEmpty,_throwIfEmpty,_util_identity PURE_IMPORTS_END */
|
|
1971
1970
|
function first$1(predicate, defaultValue) {
|
|
1972
1971
|
var hasDefaultValue = arguments.length >= 2;
|
|
1973
|
-
return function (source) { return source.pipe(filter$3(function (v, i) { return predicate(v, i, source); }) , take$3(1), hasDefaultValue ? defaultIfEmpty$1(defaultValue) : throwIfEmpty$1(function () { return new EmptyError$1(); })); };
|
|
1972
|
+
return function (source) { return source.pipe(predicate ? filter$3(function (v, i) { return predicate(v, i, source); }) : identity$3, take$3(1), hasDefaultValue ? defaultIfEmpty$1(defaultValue) : throwIfEmpty$1(function () { return new EmptyError$1(); })); };
|
|
1974
1973
|
}
|
|
1975
1974
|
|
|
1976
1975
|
/** PURE_IMPORTS_START tslib,_OuterSubscriber,_InnerSubscriber,_util_subscribeToResult,_map,_observable_from PURE_IMPORTS_END */
|
|
@@ -2130,16 +2129,6 @@ function setParsed$1(text, parsed) {
|
|
|
2130
2129
|
* event contract doesn't work around their peculiarities.
|
|
2131
2130
|
*/
|
|
2132
2131
|
const EventType$1 = {
|
|
2133
|
-
/**
|
|
2134
|
-
* Mouse middle click, introduced in Chrome 55 and not yet supported on
|
|
2135
|
-
* other browsers.
|
|
2136
|
-
*/
|
|
2137
|
-
AUXCLICK: 'auxclick',
|
|
2138
|
-
/**
|
|
2139
|
-
* The change event fired by browsers when the `value` attribute of input,
|
|
2140
|
-
* select, and textarea elements are changed.
|
|
2141
|
-
*/
|
|
2142
|
-
CHANGE: 'change',
|
|
2143
2132
|
/**
|
|
2144
2133
|
* The click event. In addEvent() refers to all click events, in the
|
|
2145
2134
|
* jsaction attribute it refers to the unmodified click and Enter/Space
|
|
@@ -2154,12 +2143,6 @@ const EventType$1 = {
|
|
|
2154
2143
|
* click event.
|
|
2155
2144
|
*/
|
|
2156
2145
|
CLICKMOD: 'clickmod',
|
|
2157
|
-
/**
|
|
2158
|
-
* Specifies the jsaction for a click-only event. Click-only doesn't take
|
|
2159
|
-
* into account the case where an element with focus receives an Enter/Space
|
|
2160
|
-
* keypress. This event isn't separately enabled in addEvent().
|
|
2161
|
-
*/
|
|
2162
|
-
CLICKONLY: 'clickonly',
|
|
2163
2146
|
/**
|
|
2164
2147
|
* The dblclick event.
|
|
2165
2148
|
*/
|
|
@@ -2209,18 +2192,6 @@ const EventType$1 = {
|
|
|
2209
2192
|
* browsers.
|
|
2210
2193
|
*/
|
|
2211
2194
|
KEYUP: 'keyup',
|
|
2212
|
-
/**
|
|
2213
|
-
* The mouseup event. Can either be used directly or used implicitly to
|
|
2214
|
-
* capture mouseup events. In addEvent(), it represents a regular DOM
|
|
2215
|
-
* mouseup event.
|
|
2216
|
-
*/
|
|
2217
|
-
MOUSEUP: 'mouseup',
|
|
2218
|
-
/**
|
|
2219
|
-
* The mousedown event. Can either be used directly or used implicitly to
|
|
2220
|
-
* capture mouseenter events. In addEvent(), it represents a regular DOM
|
|
2221
|
-
* mouseover event.
|
|
2222
|
-
*/
|
|
2223
|
-
MOUSEDOWN: 'mousedown',
|
|
2224
2195
|
/**
|
|
2225
2196
|
* The mouseover event. Can either be used directly or used implicitly to
|
|
2226
2197
|
* capture mouseenter events. In addEvent(), it represents a regular DOM
|
|
@@ -2243,22 +2214,6 @@ const EventType$1 = {
|
|
|
2243
2214
|
* element being entered within a DOM tree.
|
|
2244
2215
|
*/
|
|
2245
2216
|
MOUSELEAVE: 'mouseleave',
|
|
2246
|
-
/**
|
|
2247
|
-
* The mousemove event.
|
|
2248
|
-
*/
|
|
2249
|
-
MOUSEMOVE: 'mousemove',
|
|
2250
|
-
/**
|
|
2251
|
-
* The pointerup event. Can either be used directly or used implicitly to
|
|
2252
|
-
* capture pointerup events. In addEvent(), it represents a regular DOM
|
|
2253
|
-
* pointerup event.
|
|
2254
|
-
*/
|
|
2255
|
-
POINTERUP: 'pointerup',
|
|
2256
|
-
/**
|
|
2257
|
-
* The pointerdown event. Can either be used directly or used implicitly to
|
|
2258
|
-
* capture pointerenter events. In addEvent(), it represents a regular DOM
|
|
2259
|
-
* mouseover event.
|
|
2260
|
-
*/
|
|
2261
|
-
POINTERDOWN: 'pointerdown',
|
|
2262
2217
|
/**
|
|
2263
2218
|
* The pointerover event. Can either be used directly or used implicitly to
|
|
2264
2219
|
* capture pointerenter events. In addEvent(), it represents a regular DOM
|
|
@@ -2281,26 +2236,6 @@ const EventType$1 = {
|
|
|
2281
2236
|
* element being entered within a DOM tree.
|
|
2282
2237
|
*/
|
|
2283
2238
|
POINTERLEAVE: 'pointerleave',
|
|
2284
|
-
/**
|
|
2285
|
-
* The pointermove event.
|
|
2286
|
-
*/
|
|
2287
|
-
POINTERMOVE: 'pointermove',
|
|
2288
|
-
/**
|
|
2289
|
-
* The pointercancel event.
|
|
2290
|
-
*/
|
|
2291
|
-
POINTERCANCEL: 'pointercancel',
|
|
2292
|
-
/**
|
|
2293
|
-
* The gotpointercapture event is fired when
|
|
2294
|
-
* Element.setPointerCapture(pointerId) is called on a mouse input, or
|
|
2295
|
-
* implicitly when a touch input begins.
|
|
2296
|
-
*/
|
|
2297
|
-
GOTPOINTERCAPTURE: 'gotpointercapture',
|
|
2298
|
-
/**
|
|
2299
|
-
* The lostpointercapture event is fired when
|
|
2300
|
-
* Element.releasePointerCapture(pointerId) is called, or implicitly after a
|
|
2301
|
-
* touch input ends.
|
|
2302
|
-
*/
|
|
2303
|
-
LOSTPOINTERCAPTURE: 'lostpointercapture',
|
|
2304
2239
|
/**
|
|
2305
2240
|
* The error event. The error event doesn't bubble, but you can use it in
|
|
2306
2241
|
* addEvent() and jsaction anyway. EventContract does the right thing under
|
|
@@ -2313,10 +2248,6 @@ const EventType$1 = {
|
|
|
2313
2248
|
* under the hood.
|
|
2314
2249
|
*/
|
|
2315
2250
|
LOAD: 'load',
|
|
2316
|
-
/**
|
|
2317
|
-
* The unload event.
|
|
2318
|
-
*/
|
|
2319
|
-
UNLOAD: 'unload',
|
|
2320
2251
|
/**
|
|
2321
2252
|
* The touchstart event. Bubbles, will only ever fire in browsers with
|
|
2322
2253
|
* touch support.
|
|
@@ -2332,30 +2263,12 @@ const EventType$1 = {
|
|
|
2332
2263
|
* touch support.
|
|
2333
2264
|
*/
|
|
2334
2265
|
TOUCHMOVE: 'touchmove',
|
|
2335
|
-
/**
|
|
2336
|
-
* The input event.
|
|
2337
|
-
*/
|
|
2338
|
-
INPUT: 'input',
|
|
2339
|
-
/**
|
|
2340
|
-
* The scroll event.
|
|
2341
|
-
*/
|
|
2342
|
-
SCROLL: 'scroll',
|
|
2343
2266
|
/**
|
|
2344
2267
|
* The toggle event. The toggle event doesn't bubble, but you can use it in
|
|
2345
2268
|
* addEvent() and jsaction anyway. EventContract does the right thing
|
|
2346
2269
|
* under the hood.
|
|
2347
2270
|
*/
|
|
2348
|
-
TOGGLE: 'toggle'
|
|
2349
|
-
/**
|
|
2350
|
-
* A custom event. The actual custom event type is declared as the 'type'
|
|
2351
|
-
* field in the event details. Supported in Firefox 6+, IE 9+, and all Chrome
|
|
2352
|
-
* versions.
|
|
2353
|
-
*
|
|
2354
|
-
* This is an internal name. Users should use jsaction's fireCustomEvent to
|
|
2355
|
-
* fire custom events instead of relying on this type to create them.
|
|
2356
|
-
*/
|
|
2357
|
-
CUSTOM: '_custom',
|
|
2358
|
-
};
|
|
2271
|
+
TOGGLE: 'toggle'};
|
|
2359
2272
|
/** All event types that do not bubble or capture and need a polyfill. */
|
|
2360
2273
|
const MOUSE_SPECIAL_EVENT_TYPES$1 = [
|
|
2361
2274
|
EventType$1.MOUSEENTER,
|
|
@@ -2702,11 +2615,6 @@ let EventContractContainer$1 = class EventContractContainer {
|
|
|
2702
2615
|
};
|
|
2703
2616
|
|
|
2704
2617
|
const Char$1 = {
|
|
2705
|
-
/**
|
|
2706
|
-
* The separator between the namespace and the action name in the
|
|
2707
|
-
* jsaction attribute value.
|
|
2708
|
-
*/
|
|
2709
|
-
NAMESPACE_ACTION_SEPARATOR: '.',
|
|
2710
2618
|
/**
|
|
2711
2619
|
* The separator between the event name and action in the jsaction
|
|
2712
2620
|
* attribute value.
|
|
@@ -41420,7 +41328,7 @@ let PlatformNavigation$1 = class PlatformNavigation {
|
|
|
41420
41328
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: PlatformNavigation, deps: [], target: FactoryTarget$4.Injectable }); }
|
|
41421
41329
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: PlatformNavigation, providedIn: 'platform', useFactory: () => window.navigation }); }
|
|
41422
41330
|
};
|
|
41423
|
-
ɵɵngDeclareClassMetadata$1({
|
|
41331
|
+
ɵɵngDeclareClassMetadata$1({ type: PlatformNavigation$1, decorators: [{
|
|
41424
41332
|
type: Injectable$1,
|
|
41425
41333
|
args: [{ providedIn: 'platform', useFactory: () => window.navigation }]
|
|
41426
41334
|
}] });
|
|
@@ -41463,7 +41371,7 @@ let PlatformLocation$1 = class PlatformLocation {
|
|
|
41463
41371
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: PlatformLocation, deps: [], target: FactoryTarget$4.Injectable }); }
|
|
41464
41372
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: PlatformLocation, providedIn: 'platform', useFactory: () => inject$1(BrowserPlatformLocation$1) }); }
|
|
41465
41373
|
};
|
|
41466
|
-
ɵɵngDeclareClassMetadata$1({
|
|
41374
|
+
ɵɵngDeclareClassMetadata$1({ type: PlatformLocation$1, decorators: [{
|
|
41467
41375
|
type: Injectable$1,
|
|
41468
41376
|
args: [{ providedIn: 'platform', useFactory: () => inject$1(BrowserPlatformLocation$1) }]
|
|
41469
41377
|
}] });
|
|
@@ -41546,7 +41454,7 @@ let BrowserPlatformLocation$1 = class BrowserPlatformLocation extends PlatformLo
|
|
|
41546
41454
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: BrowserPlatformLocation, deps: [], target: FactoryTarget$4.Injectable }); }
|
|
41547
41455
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: BrowserPlatformLocation, providedIn: 'platform', useFactory: () => new BrowserPlatformLocation() }); }
|
|
41548
41456
|
};
|
|
41549
|
-
ɵɵngDeclareClassMetadata$1({
|
|
41457
|
+
ɵɵngDeclareClassMetadata$1({ type: BrowserPlatformLocation$1, decorators: [{
|
|
41550
41458
|
type: Injectable$1,
|
|
41551
41459
|
args: [{
|
|
41552
41460
|
providedIn: 'platform',
|
|
@@ -41635,7 +41543,7 @@ let LocationStrategy$1 = class LocationStrategy {
|
|
|
41635
41543
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: LocationStrategy, deps: [], target: FactoryTarget$4.Injectable }); }
|
|
41636
41544
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: LocationStrategy, providedIn: 'root', useFactory: () => inject$1(PathLocationStrategy$1) }); }
|
|
41637
41545
|
};
|
|
41638
|
-
ɵɵngDeclareClassMetadata$1({
|
|
41546
|
+
ɵɵngDeclareClassMetadata$1({ type: LocationStrategy$1, decorators: [{
|
|
41639
41547
|
type: Injectable$1,
|
|
41640
41548
|
args: [{ providedIn: 'root', useFactory: () => inject$1(PathLocationStrategy$1) }]
|
|
41641
41549
|
}] });
|
|
@@ -41748,7 +41656,7 @@ let PathLocationStrategy$1 = class PathLocationStrategy extends LocationStrategy
|
|
|
41748
41656
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: PathLocationStrategy, deps: [{ token: PlatformLocation$1 }, { token: APP_BASE_HREF$1, optional: true }], target: FactoryTarget$4.Injectable }); }
|
|
41749
41657
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: PathLocationStrategy, providedIn: 'root' }); }
|
|
41750
41658
|
};
|
|
41751
|
-
ɵɵngDeclareClassMetadata$1({
|
|
41659
|
+
ɵɵngDeclareClassMetadata$1({ type: PathLocationStrategy$1, decorators: [{
|
|
41752
41660
|
type: Injectable$1,
|
|
41753
41661
|
args: [{ providedIn: 'root' }]
|
|
41754
41662
|
}], ctorParameters: () => [{ type: PlatformLocation$1 }, { type: undefined, decorators: [{
|
|
@@ -41837,7 +41745,7 @@ let HashLocationStrategy$1 = class HashLocationStrategy extends LocationStrategy
|
|
|
41837
41745
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: HashLocationStrategy, deps: [{ token: PlatformLocation$1 }, { token: APP_BASE_HREF$1, optional: true }], target: FactoryTarget$4.Injectable }); }
|
|
41838
41746
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: HashLocationStrategy }); }
|
|
41839
41747
|
};
|
|
41840
|
-
ɵɵngDeclareClassMetadata$1({
|
|
41748
|
+
ɵɵngDeclareClassMetadata$1({ type: HashLocationStrategy$1, decorators: [{
|
|
41841
41749
|
type: Injectable$1
|
|
41842
41750
|
}], ctorParameters: () => [{ type: PlatformLocation$1 }, { type: undefined, decorators: [{
|
|
41843
41751
|
type: Optional$1
|
|
@@ -42087,7 +41995,7 @@ let Location$1 = class Location {
|
|
|
42087
41995
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: Location, deps: [{ token: LocationStrategy$1 }], target: FactoryTarget$4.Injectable }); }
|
|
42088
41996
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: Location, providedIn: 'root', useFactory: createLocation$1 }); }
|
|
42089
41997
|
};
|
|
42090
|
-
ɵɵngDeclareClassMetadata$1({
|
|
41998
|
+
ɵɵngDeclareClassMetadata$1({ type: Location$1, decorators: [{
|
|
42091
41999
|
type: Injectable$1,
|
|
42092
42000
|
args: [{
|
|
42093
42001
|
providedIn: 'root',
|
|
@@ -42264,21 +42172,11 @@ const NumberSymbol$1 = {
|
|
|
42264
42172
|
* Example: 2`,`345.67
|
|
42265
42173
|
*/
|
|
42266
42174
|
Group: 1,
|
|
42267
|
-
/**
|
|
42268
|
-
* List-item separator.
|
|
42269
|
-
* Example: "one, two, and three"
|
|
42270
|
-
*/
|
|
42271
|
-
List: 2,
|
|
42272
42175
|
/**
|
|
42273
42176
|
* Sign for percentage (out of 100).
|
|
42274
42177
|
* Example: 23.4%
|
|
42275
42178
|
*/
|
|
42276
42179
|
PercentSign: 3,
|
|
42277
|
-
/**
|
|
42278
|
-
* Sign for positive numbers.
|
|
42279
|
-
* Example: +23
|
|
42280
|
-
*/
|
|
42281
|
-
PlusSign: 4,
|
|
42282
42180
|
/**
|
|
42283
42181
|
* Sign for negative numbers.
|
|
42284
42182
|
* Example: -23
|
|
@@ -42289,31 +42187,11 @@ const NumberSymbol$1 = {
|
|
|
42289
42187
|
* Example: 1.2E3
|
|
42290
42188
|
*/
|
|
42291
42189
|
Exponential: 6,
|
|
42292
|
-
/**
|
|
42293
|
-
* Human-readable format of exponential.
|
|
42294
|
-
* Example: 1.2x103
|
|
42295
|
-
*/
|
|
42296
|
-
SuperscriptingExponent: 7,
|
|
42297
|
-
/**
|
|
42298
|
-
* Sign for permille (out of 1000).
|
|
42299
|
-
* Example: 23.4‰
|
|
42300
|
-
*/
|
|
42301
|
-
PerMille: 8,
|
|
42302
42190
|
/**
|
|
42303
42191
|
* Infinity, can be used with plus and minus.
|
|
42304
42192
|
* Example: ∞, +∞, -∞
|
|
42305
42193
|
*/
|
|
42306
42194
|
Infinity: 9,
|
|
42307
|
-
/**
|
|
42308
|
-
* Not a number.
|
|
42309
|
-
* Example: NaN
|
|
42310
|
-
*/
|
|
42311
|
-
NaN: 10,
|
|
42312
|
-
/**
|
|
42313
|
-
* Symbol used between time units.
|
|
42314
|
-
* Example: 10:52
|
|
42315
|
-
*/
|
|
42316
|
-
TimeSeparator: 11,
|
|
42317
42195
|
/**
|
|
42318
42196
|
* Decimal separator for currency values (fallback to `Decimal`).
|
|
42319
42197
|
* Example: $2,345.67
|
|
@@ -43888,7 +43766,7 @@ let NgLocalization$1 = class NgLocalization {
|
|
|
43888
43766
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: NgLocalization, deps: [], target: FactoryTarget$4.Injectable }); }
|
|
43889
43767
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: NgLocalization, providedIn: 'root', useFactory: (locale) => new NgLocaleLocalization$1(locale), deps: [{ token: LOCALE_ID$2 }] }); }
|
|
43890
43768
|
};
|
|
43891
|
-
ɵɵngDeclareClassMetadata$1({
|
|
43769
|
+
ɵɵngDeclareClassMetadata$1({ type: NgLocalization$1, decorators: [{
|
|
43892
43770
|
type: Injectable$1,
|
|
43893
43771
|
args: [{
|
|
43894
43772
|
providedIn: 'root',
|
|
@@ -43945,7 +43823,7 @@ let NgLocaleLocalization$1 = class NgLocaleLocalization extends NgLocalization$1
|
|
|
43945
43823
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: NgLocaleLocalization, deps: [{ token: LOCALE_ID$2 }], target: FactoryTarget$4.Injectable }); }
|
|
43946
43824
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: NgLocaleLocalization }); }
|
|
43947
43825
|
};
|
|
43948
|
-
ɵɵngDeclareClassMetadata$1({
|
|
43826
|
+
ɵɵngDeclareClassMetadata$1({ type: NgLocaleLocalization$1, decorators: [{
|
|
43949
43827
|
type: Injectable$1
|
|
43950
43828
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
43951
43829
|
type: Inject$1,
|
|
@@ -44104,7 +43982,7 @@ let NgClass$1 = class NgClass {
|
|
|
44104
43982
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: NgClass, deps: [{ token: ElementRef$1 }, { token: Renderer2$1 }], target: FactoryTarget$4.Directive }); }
|
|
44105
43983
|
static { this.ɵdir = ɵɵngDeclareDirective$1({ minVersion: "14.0.0", version: "18.2.13", type: NgClass, isStandalone: true, selector: "[ngClass]", inputs: { klass: ["class", "klass"], ngClass: "ngClass" }, ngImport: i0$1 }); }
|
|
44106
43984
|
};
|
|
44107
|
-
ɵɵngDeclareClassMetadata$1({
|
|
43985
|
+
ɵɵngDeclareClassMetadata$1({ type: NgClass$1, decorators: [{
|
|
44108
43986
|
type: Directive$1,
|
|
44109
43987
|
args: [{
|
|
44110
43988
|
selector: '[ngClass]',
|
|
@@ -44274,7 +44152,7 @@ let NgComponentOutlet$1 = class NgComponentOutlet {
|
|
|
44274
44152
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: NgComponentOutlet, deps: [{ token: ViewContainerRef$1 }], target: FactoryTarget$4.Directive }); }
|
|
44275
44153
|
static { this.ɵdir = ɵɵngDeclareDirective$1({ 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$1 }); }
|
|
44276
44154
|
};
|
|
44277
|
-
ɵɵngDeclareClassMetadata$1({
|
|
44155
|
+
ɵɵngDeclareClassMetadata$1({ type: NgComponentOutlet$1, decorators: [{
|
|
44278
44156
|
type: Directive$1,
|
|
44279
44157
|
args: [{
|
|
44280
44158
|
selector: '[ngComponentOutlet]',
|
|
@@ -44573,7 +44451,7 @@ let NgForOf$1 = class NgForOf {
|
|
|
44573
44451
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: NgForOf, deps: [{ token: ViewContainerRef$1 }, { token: TemplateRef$1 }, { token: IterableDiffers$1 }], target: FactoryTarget$4.Directive }); }
|
|
44574
44452
|
static { this.ɵdir = ɵɵngDeclareDirective$1({ minVersion: "14.0.0", version: "18.2.13", type: NgForOf, isStandalone: true, selector: "[ngFor][ngForOf]", inputs: { ngForOf: "ngForOf", ngForTrackBy: "ngForTrackBy", ngForTemplate: "ngForTemplate" }, ngImport: i0$1 }); }
|
|
44575
44453
|
};
|
|
44576
|
-
ɵɵngDeclareClassMetadata$1({
|
|
44454
|
+
ɵɵngDeclareClassMetadata$1({ type: NgForOf$1, decorators: [{
|
|
44577
44455
|
type: Directive$1,
|
|
44578
44456
|
args: [{
|
|
44579
44457
|
selector: '[ngFor][ngForOf]',
|
|
@@ -44799,7 +44677,7 @@ let NgIf$1 = class NgIf {
|
|
|
44799
44677
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: NgIf, deps: [{ token: ViewContainerRef$1 }, { token: TemplateRef$1 }], target: FactoryTarget$4.Directive }); }
|
|
44800
44678
|
static { this.ɵdir = ɵɵngDeclareDirective$1({ minVersion: "14.0.0", version: "18.2.13", type: NgIf, isStandalone: true, selector: "[ngIf]", inputs: { ngIf: "ngIf", ngIfThen: "ngIfThen", ngIfElse: "ngIfElse" }, ngImport: i0$1 }); }
|
|
44801
44679
|
};
|
|
44802
|
-
ɵɵngDeclareClassMetadata$1({
|
|
44680
|
+
ɵɵngDeclareClassMetadata$1({ type: NgIf$1, decorators: [{
|
|
44803
44681
|
type: Directive$1,
|
|
44804
44682
|
args: [{
|
|
44805
44683
|
selector: '[ngIf]',
|
|
@@ -44962,7 +44840,7 @@ let NgSwitch$1 = class NgSwitch {
|
|
|
44962
44840
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: NgSwitch, deps: [], target: FactoryTarget$4.Directive }); }
|
|
44963
44841
|
static { this.ɵdir = ɵɵngDeclareDirective$1({ minVersion: "14.0.0", version: "18.2.13", type: NgSwitch, isStandalone: true, selector: "[ngSwitch]", inputs: { ngSwitch: "ngSwitch" }, ngImport: i0$1 }); }
|
|
44964
44842
|
};
|
|
44965
|
-
ɵɵngDeclareClassMetadata$1({
|
|
44843
|
+
ɵɵngDeclareClassMetadata$1({ type: NgSwitch$1, decorators: [{
|
|
44966
44844
|
type: Directive$1,
|
|
44967
44845
|
args: [{
|
|
44968
44846
|
selector: '[ngSwitch]',
|
|
@@ -45023,7 +44901,7 @@ let NgSwitchCase$1 = class NgSwitchCase {
|
|
|
45023
44901
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: NgSwitchCase, deps: [{ token: ViewContainerRef$1 }, { token: TemplateRef$1 }, { token: NgSwitch$1, host: true, optional: true }], target: FactoryTarget$4.Directive }); }
|
|
45024
44902
|
static { this.ɵdir = ɵɵngDeclareDirective$1({ minVersion: "14.0.0", version: "18.2.13", type: NgSwitchCase, isStandalone: true, selector: "[ngSwitchCase]", inputs: { ngSwitchCase: "ngSwitchCase" }, ngImport: i0$1 }); }
|
|
45025
44903
|
};
|
|
45026
|
-
ɵɵngDeclareClassMetadata$1({
|
|
44904
|
+
ɵɵngDeclareClassMetadata$1({ type: NgSwitchCase$1, decorators: [{
|
|
45027
44905
|
type: Directive$1,
|
|
45028
44906
|
args: [{
|
|
45029
44907
|
selector: '[ngSwitchCase]',
|
|
@@ -45060,7 +44938,7 @@ let NgSwitchDefault$1 = class NgSwitchDefault {
|
|
|
45060
44938
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: NgSwitchDefault, deps: [{ token: ViewContainerRef$1 }, { token: TemplateRef$1 }, { token: NgSwitch$1, host: true, optional: true }], target: FactoryTarget$4.Directive }); }
|
|
45061
44939
|
static { this.ɵdir = ɵɵngDeclareDirective$1({ minVersion: "14.0.0", version: "18.2.13", type: NgSwitchDefault, isStandalone: true, selector: "[ngSwitchDefault]", ngImport: i0$1 }); }
|
|
45062
44940
|
};
|
|
45063
|
-
ɵɵngDeclareClassMetadata$1({
|
|
44941
|
+
ɵɵngDeclareClassMetadata$1({ type: NgSwitchDefault$1, decorators: [{
|
|
45064
44942
|
type: Directive$1,
|
|
45065
44943
|
args: [{
|
|
45066
44944
|
selector: '[ngSwitchDefault]',
|
|
@@ -45138,7 +45016,7 @@ let NgPlural$1 = class NgPlural {
|
|
|
45138
45016
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: NgPlural, deps: [{ token: NgLocalization$1 }], target: FactoryTarget$4.Directive }); }
|
|
45139
45017
|
static { this.ɵdir = ɵɵngDeclareDirective$1({ minVersion: "14.0.0", version: "18.2.13", type: NgPlural, isStandalone: true, selector: "[ngPlural]", inputs: { ngPlural: "ngPlural" }, ngImport: i0$1 }); }
|
|
45140
45018
|
};
|
|
45141
|
-
ɵɵngDeclareClassMetadata$1({
|
|
45019
|
+
ɵɵngDeclareClassMetadata$1({ type: NgPlural$1, decorators: [{
|
|
45142
45020
|
type: Directive$1,
|
|
45143
45021
|
args: [{
|
|
45144
45022
|
selector: '[ngPlural]',
|
|
@@ -45176,7 +45054,7 @@ let NgPluralCase$1 = class NgPluralCase {
|
|
|
45176
45054
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: NgPluralCase, deps: [{ token: 'ngPluralCase', attribute: true }, { token: TemplateRef$1 }, { token: ViewContainerRef$1 }, { token: NgPlural$1, host: true }], target: FactoryTarget$4.Directive }); }
|
|
45177
45055
|
static { this.ɵdir = ɵɵngDeclareDirective$1({ minVersion: "14.0.0", version: "18.2.13", type: NgPluralCase, isStandalone: true, selector: "[ngPluralCase]", ngImport: i0$1 }); }
|
|
45178
45056
|
};
|
|
45179
|
-
ɵɵngDeclareClassMetadata$1({
|
|
45057
|
+
ɵɵngDeclareClassMetadata$1({ type: NgPluralCase$1, decorators: [{
|
|
45180
45058
|
type: Directive$1,
|
|
45181
45059
|
args: [{
|
|
45182
45060
|
selector: '[ngPluralCase]',
|
|
@@ -45265,7 +45143,7 @@ let NgStyle$1 = class NgStyle {
|
|
|
45265
45143
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: NgStyle, deps: [{ token: ElementRef$1 }, { token: KeyValueDiffers$1 }, { token: Renderer2$1 }], target: FactoryTarget$4.Directive }); }
|
|
45266
45144
|
static { this.ɵdir = ɵɵngDeclareDirective$1({ minVersion: "14.0.0", version: "18.2.13", type: NgStyle, isStandalone: true, selector: "[ngStyle]", inputs: { ngStyle: "ngStyle" }, ngImport: i0$1 }); }
|
|
45267
45145
|
};
|
|
45268
|
-
ɵɵngDeclareClassMetadata$1({
|
|
45146
|
+
ɵɵngDeclareClassMetadata$1({ type: NgStyle$1, decorators: [{
|
|
45269
45147
|
type: Directive$1,
|
|
45270
45148
|
args: [{
|
|
45271
45149
|
selector: '[ngStyle]',
|
|
@@ -45369,7 +45247,7 @@ let NgTemplateOutlet$1 = class NgTemplateOutlet {
|
|
|
45369
45247
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: NgTemplateOutlet, deps: [{ token: ViewContainerRef$1 }], target: FactoryTarget$4.Directive }); }
|
|
45370
45248
|
static { this.ɵdir = ɵɵngDeclareDirective$1({ 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$1 }); }
|
|
45371
45249
|
};
|
|
45372
|
-
ɵɵngDeclareClassMetadata$1({
|
|
45250
|
+
ɵɵngDeclareClassMetadata$1({ type: NgTemplateOutlet$1, decorators: [{
|
|
45373
45251
|
type: Directive$1,
|
|
45374
45252
|
args: [{
|
|
45375
45253
|
selector: '[ngTemplateOutlet]',
|
|
@@ -45540,7 +45418,7 @@ let AsyncPipe$1 = class AsyncPipe {
|
|
|
45540
45418
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: AsyncPipe, deps: [{ token: ChangeDetectorRef$1 }], target: FactoryTarget$4.Pipe }); }
|
|
45541
45419
|
static { this.ɵpipe = ɵɵngDeclarePipe$1({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0$1, type: AsyncPipe, isStandalone: true, name: "async", pure: false }); }
|
|
45542
45420
|
};
|
|
45543
|
-
ɵɵngDeclareClassMetadata$1({
|
|
45421
|
+
ɵɵngDeclareClassMetadata$1({ type: AsyncPipe$1, decorators: [{
|
|
45544
45422
|
type: Pipe$1,
|
|
45545
45423
|
args: [{
|
|
45546
45424
|
name: 'async',
|
|
@@ -45576,7 +45454,7 @@ let LowerCasePipe$1 = class LowerCasePipe {
|
|
|
45576
45454
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: LowerCasePipe, deps: [], target: FactoryTarget$4.Pipe }); }
|
|
45577
45455
|
static { this.ɵpipe = ɵɵngDeclarePipe$1({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0$1, type: LowerCasePipe, isStandalone: true, name: "lowercase" }); }
|
|
45578
45456
|
};
|
|
45579
|
-
ɵɵngDeclareClassMetadata$1({
|
|
45457
|
+
ɵɵngDeclareClassMetadata$1({ type: LowerCasePipe$1, decorators: [{
|
|
45580
45458
|
type: Pipe$1,
|
|
45581
45459
|
args: [{
|
|
45582
45460
|
name: 'lowercase',
|
|
@@ -45621,7 +45499,7 @@ let TitleCasePipe$1 = class TitleCasePipe {
|
|
|
45621
45499
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: TitleCasePipe, deps: [], target: FactoryTarget$4.Pipe }); }
|
|
45622
45500
|
static { this.ɵpipe = ɵɵngDeclarePipe$1({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0$1, type: TitleCasePipe, isStandalone: true, name: "titlecase" }); }
|
|
45623
45501
|
};
|
|
45624
|
-
ɵɵngDeclareClassMetadata$1({
|
|
45502
|
+
ɵɵngDeclareClassMetadata$1({ type: TitleCasePipe$1, decorators: [{
|
|
45625
45503
|
type: Pipe$1,
|
|
45626
45504
|
args: [{
|
|
45627
45505
|
name: 'titlecase',
|
|
@@ -45648,7 +45526,7 @@ let UpperCasePipe$1 = class UpperCasePipe {
|
|
|
45648
45526
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: UpperCasePipe, deps: [], target: FactoryTarget$4.Pipe }); }
|
|
45649
45527
|
static { this.ɵpipe = ɵɵngDeclarePipe$1({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0$1, type: UpperCasePipe, isStandalone: true, name: "uppercase" }); }
|
|
45650
45528
|
};
|
|
45651
|
-
ɵɵngDeclareClassMetadata$1({
|
|
45529
|
+
ɵɵngDeclareClassMetadata$1({ type: UpperCasePipe$1, decorators: [{
|
|
45652
45530
|
type: Pipe$1,
|
|
45653
45531
|
args: [{
|
|
45654
45532
|
name: 'uppercase',
|
|
@@ -45880,7 +45758,7 @@ let DatePipe$1 = class DatePipe {
|
|
|
45880
45758
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: DatePipe, deps: [{ token: LOCALE_ID$2 }, { token: DATE_PIPE_DEFAULT_TIMEZONE$1, optional: true }, { token: DATE_PIPE_DEFAULT_OPTIONS$1, optional: true }], target: FactoryTarget$4.Pipe }); }
|
|
45881
45759
|
static { this.ɵpipe = ɵɵngDeclarePipe$1({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0$1, type: DatePipe, isStandalone: true, name: "date" }); }
|
|
45882
45760
|
};
|
|
45883
|
-
ɵɵngDeclareClassMetadata$1({
|
|
45761
|
+
ɵɵngDeclareClassMetadata$1({ type: DatePipe$1, decorators: [{
|
|
45884
45762
|
type: Pipe$1,
|
|
45885
45763
|
args: [{
|
|
45886
45764
|
name: 'date',
|
|
@@ -45939,7 +45817,7 @@ let I18nPluralPipe$1 = class I18nPluralPipe {
|
|
|
45939
45817
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: I18nPluralPipe, deps: [{ token: NgLocalization$1 }], target: FactoryTarget$4.Pipe }); }
|
|
45940
45818
|
static { this.ɵpipe = ɵɵngDeclarePipe$1({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0$1, type: I18nPluralPipe, isStandalone: true, name: "i18nPlural" }); }
|
|
45941
45819
|
};
|
|
45942
|
-
ɵɵngDeclareClassMetadata$1({
|
|
45820
|
+
ɵɵngDeclareClassMetadata$1({ type: I18nPluralPipe$1, decorators: [{
|
|
45943
45821
|
type: Pipe$1,
|
|
45944
45822
|
args: [{
|
|
45945
45823
|
name: 'i18nPlural',
|
|
@@ -45987,7 +45865,7 @@ let I18nSelectPipe$1 = class I18nSelectPipe {
|
|
|
45987
45865
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: I18nSelectPipe, deps: [], target: FactoryTarget$4.Pipe }); }
|
|
45988
45866
|
static { this.ɵpipe = ɵɵngDeclarePipe$1({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0$1, type: I18nSelectPipe, isStandalone: true, name: "i18nSelect" }); }
|
|
45989
45867
|
};
|
|
45990
|
-
ɵɵngDeclareClassMetadata$1({
|
|
45868
|
+
ɵɵngDeclareClassMetadata$1({ type: I18nSelectPipe$1, decorators: [{
|
|
45991
45869
|
type: Pipe$1,
|
|
45992
45870
|
args: [{
|
|
45993
45871
|
name: 'i18nSelect',
|
|
@@ -46020,7 +45898,7 @@ let JsonPipe$1 = class JsonPipe {
|
|
|
46020
45898
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: JsonPipe, deps: [], target: FactoryTarget$4.Pipe }); }
|
|
46021
45899
|
static { this.ɵpipe = ɵɵngDeclarePipe$1({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0$1, type: JsonPipe, isStandalone: true, name: "json", pure: false }); }
|
|
46022
45900
|
};
|
|
46023
|
-
ɵɵngDeclareClassMetadata$1({
|
|
45901
|
+
ɵɵngDeclareClassMetadata$1({ type: JsonPipe$1, decorators: [{
|
|
46024
45902
|
type: Pipe$1,
|
|
46025
45903
|
args: [{
|
|
46026
45904
|
name: 'json',
|
|
@@ -46081,7 +45959,7 @@ let KeyValuePipe$1 = class KeyValuePipe {
|
|
|
46081
45959
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: KeyValuePipe, deps: [{ token: KeyValueDiffers$1 }], target: FactoryTarget$4.Pipe }); }
|
|
46082
45960
|
static { this.ɵpipe = ɵɵngDeclarePipe$1({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0$1, type: KeyValuePipe, isStandalone: true, name: "keyvalue", pure: false }); }
|
|
46083
45961
|
};
|
|
46084
|
-
ɵɵngDeclareClassMetadata$1({
|
|
45962
|
+
ɵɵngDeclareClassMetadata$1({ type: KeyValuePipe$1, decorators: [{
|
|
46085
45963
|
type: Pipe$1,
|
|
46086
45964
|
args: [{
|
|
46087
45965
|
name: 'keyvalue',
|
|
@@ -46202,7 +46080,7 @@ let DecimalPipe$1 = class DecimalPipe {
|
|
|
46202
46080
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: DecimalPipe, deps: [{ token: LOCALE_ID$2 }], target: FactoryTarget$4.Pipe }); }
|
|
46203
46081
|
static { this.ɵpipe = ɵɵngDeclarePipe$1({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0$1, type: DecimalPipe, isStandalone: true, name: "number" }); }
|
|
46204
46082
|
};
|
|
46205
|
-
ɵɵngDeclareClassMetadata$1({
|
|
46083
|
+
ɵɵngDeclareClassMetadata$1({ type: DecimalPipe$1, decorators: [{
|
|
46206
46084
|
type: Pipe$1,
|
|
46207
46085
|
args: [{
|
|
46208
46086
|
name: 'number',
|
|
@@ -46267,7 +46145,7 @@ let PercentPipe$1 = class PercentPipe {
|
|
|
46267
46145
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: PercentPipe, deps: [{ token: LOCALE_ID$2 }], target: FactoryTarget$4.Pipe }); }
|
|
46268
46146
|
static { this.ɵpipe = ɵɵngDeclarePipe$1({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0$1, type: PercentPipe, isStandalone: true, name: "percent" }); }
|
|
46269
46147
|
};
|
|
46270
|
-
ɵɵngDeclareClassMetadata$1({
|
|
46148
|
+
ɵɵngDeclareClassMetadata$1({ type: PercentPipe$1, decorators: [{
|
|
46271
46149
|
type: Pipe$1,
|
|
46272
46150
|
args: [{
|
|
46273
46151
|
name: 'percent',
|
|
@@ -46333,7 +46211,7 @@ let CurrencyPipe$1 = class CurrencyPipe {
|
|
|
46333
46211
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: CurrencyPipe, deps: [{ token: LOCALE_ID$2 }, { token: DEFAULT_CURRENCY_CODE$1 }], target: FactoryTarget$4.Pipe }); }
|
|
46334
46212
|
static { this.ɵpipe = ɵɵngDeclarePipe$1({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0$1, type: CurrencyPipe, isStandalone: true, name: "currency" }); }
|
|
46335
46213
|
};
|
|
46336
|
-
ɵɵngDeclareClassMetadata$1({
|
|
46214
|
+
ɵɵngDeclareClassMetadata$1({ type: CurrencyPipe$1, decorators: [{
|
|
46337
46215
|
type: Pipe$1,
|
|
46338
46216
|
args: [{
|
|
46339
46217
|
name: 'currency',
|
|
@@ -46413,7 +46291,7 @@ let SlicePipe$1 = class SlicePipe {
|
|
|
46413
46291
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: SlicePipe, deps: [], target: FactoryTarget$4.Pipe }); }
|
|
46414
46292
|
static { this.ɵpipe = ɵɵngDeclarePipe$1({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0$1, type: SlicePipe, isStandalone: true, name: "slice", pure: false }); }
|
|
46415
46293
|
};
|
|
46416
|
-
ɵɵngDeclareClassMetadata$1({
|
|
46294
|
+
ɵɵngDeclareClassMetadata$1({ type: SlicePipe$1, decorators: [{
|
|
46417
46295
|
type: Pipe$1,
|
|
46418
46296
|
args: [{
|
|
46419
46297
|
name: 'slice',
|
|
@@ -46461,7 +46339,7 @@ let CommonModule$1 = class CommonModule {
|
|
|
46461
46339
|
static { this.ɵmod = ɵɵngDeclareNgModule$1({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0$1, type: CommonModule, imports: [NgClass$1, NgComponentOutlet$1, NgForOf$1, NgIf$1, NgTemplateOutlet$1, NgStyle$1, NgSwitch$1, NgSwitchCase$1, NgSwitchDefault$1, NgPlural$1, NgPluralCase$1, AsyncPipe$1, UpperCasePipe$1, LowerCasePipe$1, JsonPipe$1, SlicePipe$1, DecimalPipe$1, PercentPipe$1, TitleCasePipe$1, CurrencyPipe$1, DatePipe$1, I18nPluralPipe$1, I18nSelectPipe$1, KeyValuePipe$1], exports: [NgClass$1, NgComponentOutlet$1, NgForOf$1, NgIf$1, NgTemplateOutlet$1, NgStyle$1, NgSwitch$1, NgSwitchCase$1, NgSwitchDefault$1, NgPlural$1, NgPluralCase$1, AsyncPipe$1, UpperCasePipe$1, LowerCasePipe$1, JsonPipe$1, SlicePipe$1, DecimalPipe$1, PercentPipe$1, TitleCasePipe$1, CurrencyPipe$1, DatePipe$1, I18nPluralPipe$1, I18nSelectPipe$1, KeyValuePipe$1] }); }
|
|
46462
46340
|
static { this.ɵinj = ɵɵngDeclareInjector$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: CommonModule }); }
|
|
46463
46341
|
};
|
|
46464
|
-
ɵɵngDeclareClassMetadata$1({
|
|
46342
|
+
ɵɵngDeclareClassMetadata$1({ type: CommonModule$1, decorators: [{
|
|
46465
46343
|
type: NgModule$1,
|
|
46466
46344
|
args: [{
|
|
46467
46345
|
imports: [COMMON_DIRECTIVES$1, COMMON_PIPES$1],
|
|
@@ -47049,7 +46927,7 @@ let LCPImageObserver$1 = class LCPImageObserver {
|
|
|
47049
46927
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: LCPImageObserver, deps: [], target: FactoryTarget$4.Injectable }); }
|
|
47050
46928
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: LCPImageObserver, providedIn: 'root' }); }
|
|
47051
46929
|
};
|
|
47052
|
-
ɵɵngDeclareClassMetadata$1({
|
|
46930
|
+
ɵɵngDeclareClassMetadata$1({ type: LCPImageObserver$1, decorators: [{
|
|
47053
46931
|
type: Injectable$1,
|
|
47054
46932
|
args: [{ providedIn: 'root' }]
|
|
47055
46933
|
}], ctorParameters: () => [] });
|
|
@@ -47176,7 +47054,7 @@ let PreconnectLinkChecker$1 = class PreconnectLinkChecker {
|
|
|
47176
47054
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: PreconnectLinkChecker, deps: [], target: FactoryTarget$4.Injectable }); }
|
|
47177
47055
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: PreconnectLinkChecker, providedIn: 'root' }); }
|
|
47178
47056
|
};
|
|
47179
|
-
ɵɵngDeclareClassMetadata$1({
|
|
47057
|
+
ɵɵngDeclareClassMetadata$1({ type: PreconnectLinkChecker$1, decorators: [{
|
|
47180
47058
|
type: Injectable$1,
|
|
47181
47059
|
args: [{ providedIn: 'root' }]
|
|
47182
47060
|
}], ctorParameters: () => [] });
|
|
@@ -47268,7 +47146,7 @@ let PreloadLinkCreator$1 = class PreloadLinkCreator {
|
|
|
47268
47146
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: PreloadLinkCreator, deps: [], target: FactoryTarget$4.Injectable }); }
|
|
47269
47147
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: PreloadLinkCreator, providedIn: 'root' }); }
|
|
47270
47148
|
};
|
|
47271
|
-
ɵɵngDeclareClassMetadata$1({
|
|
47149
|
+
ɵɵngDeclareClassMetadata$1({ type: PreloadLinkCreator$1, decorators: [{
|
|
47272
47150
|
type: Injectable$1,
|
|
47273
47151
|
args: [{ providedIn: 'root' }]
|
|
47274
47152
|
}] });
|
|
@@ -47758,7 +47636,7 @@ let NgOptimizedImage$1 = class NgOptimizedImage {
|
|
|
47758
47636
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: NgOptimizedImage, deps: [], target: FactoryTarget$4.Directive }); }
|
|
47759
47637
|
static { this.ɵdir = ɵɵngDeclareDirective$1({ minVersion: "16.1.0", version: "18.2.13", type: NgOptimizedImage, isStandalone: true, selector: "img[ngSrc]", inputs: { ngSrc: ["ngSrc", "ngSrc", unwrapSafeUrl$1], ngSrcset: "ngSrcset", sizes: "sizes", width: ["width", "width", numberAttribute$1], height: ["height", "height", numberAttribute$1], loading: "loading", priority: ["priority", "priority", booleanAttribute$1], loaderParams: "loaderParams", disableOptimizedSrcset: ["disableOptimizedSrcset", "disableOptimizedSrcset", booleanAttribute$1], fill: ["fill", "fill", booleanAttribute$1], placeholder: ["placeholder", "placeholder", booleanOrUrlAttribute$1], 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$1 }); }
|
|
47760
47638
|
};
|
|
47761
|
-
ɵɵngDeclareClassMetadata$1({
|
|
47639
|
+
ɵɵngDeclareClassMetadata$1({ type: NgOptimizedImage$1, decorators: [{
|
|
47762
47640
|
type: Directive$1,
|
|
47763
47641
|
args: [{
|
|
47764
47642
|
standalone: true,
|
|
@@ -48874,7 +48752,6 @@ function isFunction$1(x) {
|
|
|
48874
48752
|
/** PURE_IMPORTS_START PURE_IMPORTS_END */
|
|
48875
48753
|
var _enable_super_gross_mode_that_will_cause_bad_things = false;
|
|
48876
48754
|
var config = {
|
|
48877
|
-
Promise: undefined,
|
|
48878
48755
|
set useDeprecatedSynchronousErrorHandling(value) {
|
|
48879
48756
|
if (value) {
|
|
48880
48757
|
var error = /*@__PURE__*/ new Error();
|
|
@@ -50264,7 +50141,7 @@ var FinallySubscriber = /*@__PURE__*/ (function (_super) {
|
|
|
50264
50141
|
/** PURE_IMPORTS_START _util_EmptyError,_filter,_take,_defaultIfEmpty,_throwIfEmpty,_util_identity PURE_IMPORTS_END */
|
|
50265
50142
|
function first(predicate, defaultValue) {
|
|
50266
50143
|
var hasDefaultValue = arguments.length >= 2;
|
|
50267
|
-
return function (source) { return source.pipe(filter$1(function (v, i) { return predicate(v, i, source); }) , take$1(1), hasDefaultValue ? defaultIfEmpty(defaultValue) : throwIfEmpty(function () { return new EmptyError(); })); };
|
|
50144
|
+
return function (source) { return source.pipe(predicate ? filter$1(function (v, i) { return predicate(v, i, source); }) : identity$1, take$1(1), hasDefaultValue ? defaultIfEmpty(defaultValue) : throwIfEmpty(function () { return new EmptyError(); })); };
|
|
50268
50145
|
}
|
|
50269
50146
|
|
|
50270
50147
|
/** PURE_IMPORTS_START tslib,_OuterSubscriber,_InnerSubscriber,_util_subscribeToResult,_map,_observable_from PURE_IMPORTS_END */
|
|
@@ -50424,16 +50301,6 @@ function setParsed(text, parsed) {
|
|
|
50424
50301
|
* event contract doesn't work around their peculiarities.
|
|
50425
50302
|
*/
|
|
50426
50303
|
const EventType = {
|
|
50427
|
-
/**
|
|
50428
|
-
* Mouse middle click, introduced in Chrome 55 and not yet supported on
|
|
50429
|
-
* other browsers.
|
|
50430
|
-
*/
|
|
50431
|
-
AUXCLICK: 'auxclick',
|
|
50432
|
-
/**
|
|
50433
|
-
* The change event fired by browsers when the `value` attribute of input,
|
|
50434
|
-
* select, and textarea elements are changed.
|
|
50435
|
-
*/
|
|
50436
|
-
CHANGE: 'change',
|
|
50437
50304
|
/**
|
|
50438
50305
|
* The click event. In addEvent() refers to all click events, in the
|
|
50439
50306
|
* jsaction attribute it refers to the unmodified click and Enter/Space
|
|
@@ -50448,12 +50315,6 @@ const EventType = {
|
|
|
50448
50315
|
* click event.
|
|
50449
50316
|
*/
|
|
50450
50317
|
CLICKMOD: 'clickmod',
|
|
50451
|
-
/**
|
|
50452
|
-
* Specifies the jsaction for a click-only event. Click-only doesn't take
|
|
50453
|
-
* into account the case where an element with focus receives an Enter/Space
|
|
50454
|
-
* keypress. This event isn't separately enabled in addEvent().
|
|
50455
|
-
*/
|
|
50456
|
-
CLICKONLY: 'clickonly',
|
|
50457
50318
|
/**
|
|
50458
50319
|
* The dblclick event.
|
|
50459
50320
|
*/
|
|
@@ -50503,18 +50364,6 @@ const EventType = {
|
|
|
50503
50364
|
* browsers.
|
|
50504
50365
|
*/
|
|
50505
50366
|
KEYUP: 'keyup',
|
|
50506
|
-
/**
|
|
50507
|
-
* The mouseup event. Can either be used directly or used implicitly to
|
|
50508
|
-
* capture mouseup events. In addEvent(), it represents a regular DOM
|
|
50509
|
-
* mouseup event.
|
|
50510
|
-
*/
|
|
50511
|
-
MOUSEUP: 'mouseup',
|
|
50512
|
-
/**
|
|
50513
|
-
* The mousedown event. Can either be used directly or used implicitly to
|
|
50514
|
-
* capture mouseenter events. In addEvent(), it represents a regular DOM
|
|
50515
|
-
* mouseover event.
|
|
50516
|
-
*/
|
|
50517
|
-
MOUSEDOWN: 'mousedown',
|
|
50518
50367
|
/**
|
|
50519
50368
|
* The mouseover event. Can either be used directly or used implicitly to
|
|
50520
50369
|
* capture mouseenter events. In addEvent(), it represents a regular DOM
|
|
@@ -50537,22 +50386,6 @@ const EventType = {
|
|
|
50537
50386
|
* element being entered within a DOM tree.
|
|
50538
50387
|
*/
|
|
50539
50388
|
MOUSELEAVE: 'mouseleave',
|
|
50540
|
-
/**
|
|
50541
|
-
* The mousemove event.
|
|
50542
|
-
*/
|
|
50543
|
-
MOUSEMOVE: 'mousemove',
|
|
50544
|
-
/**
|
|
50545
|
-
* The pointerup event. Can either be used directly or used implicitly to
|
|
50546
|
-
* capture pointerup events. In addEvent(), it represents a regular DOM
|
|
50547
|
-
* pointerup event.
|
|
50548
|
-
*/
|
|
50549
|
-
POINTERUP: 'pointerup',
|
|
50550
|
-
/**
|
|
50551
|
-
* The pointerdown event. Can either be used directly or used implicitly to
|
|
50552
|
-
* capture pointerenter events. In addEvent(), it represents a regular DOM
|
|
50553
|
-
* mouseover event.
|
|
50554
|
-
*/
|
|
50555
|
-
POINTERDOWN: 'pointerdown',
|
|
50556
50389
|
/**
|
|
50557
50390
|
* The pointerover event. Can either be used directly or used implicitly to
|
|
50558
50391
|
* capture pointerenter events. In addEvent(), it represents a regular DOM
|
|
@@ -50575,26 +50408,6 @@ const EventType = {
|
|
|
50575
50408
|
* element being entered within a DOM tree.
|
|
50576
50409
|
*/
|
|
50577
50410
|
POINTERLEAVE: 'pointerleave',
|
|
50578
|
-
/**
|
|
50579
|
-
* The pointermove event.
|
|
50580
|
-
*/
|
|
50581
|
-
POINTERMOVE: 'pointermove',
|
|
50582
|
-
/**
|
|
50583
|
-
* The pointercancel event.
|
|
50584
|
-
*/
|
|
50585
|
-
POINTERCANCEL: 'pointercancel',
|
|
50586
|
-
/**
|
|
50587
|
-
* The gotpointercapture event is fired when
|
|
50588
|
-
* Element.setPointerCapture(pointerId) is called on a mouse input, or
|
|
50589
|
-
* implicitly when a touch input begins.
|
|
50590
|
-
*/
|
|
50591
|
-
GOTPOINTERCAPTURE: 'gotpointercapture',
|
|
50592
|
-
/**
|
|
50593
|
-
* The lostpointercapture event is fired when
|
|
50594
|
-
* Element.releasePointerCapture(pointerId) is called, or implicitly after a
|
|
50595
|
-
* touch input ends.
|
|
50596
|
-
*/
|
|
50597
|
-
LOSTPOINTERCAPTURE: 'lostpointercapture',
|
|
50598
50411
|
/**
|
|
50599
50412
|
* The error event. The error event doesn't bubble, but you can use it in
|
|
50600
50413
|
* addEvent() and jsaction anyway. EventContract does the right thing under
|
|
@@ -50607,10 +50420,6 @@ const EventType = {
|
|
|
50607
50420
|
* under the hood.
|
|
50608
50421
|
*/
|
|
50609
50422
|
LOAD: 'load',
|
|
50610
|
-
/**
|
|
50611
|
-
* The unload event.
|
|
50612
|
-
*/
|
|
50613
|
-
UNLOAD: 'unload',
|
|
50614
50423
|
/**
|
|
50615
50424
|
* The touchstart event. Bubbles, will only ever fire in browsers with
|
|
50616
50425
|
* touch support.
|
|
@@ -50626,30 +50435,12 @@ const EventType = {
|
|
|
50626
50435
|
* touch support.
|
|
50627
50436
|
*/
|
|
50628
50437
|
TOUCHMOVE: 'touchmove',
|
|
50629
|
-
/**
|
|
50630
|
-
* The input event.
|
|
50631
|
-
*/
|
|
50632
|
-
INPUT: 'input',
|
|
50633
|
-
/**
|
|
50634
|
-
* The scroll event.
|
|
50635
|
-
*/
|
|
50636
|
-
SCROLL: 'scroll',
|
|
50637
50438
|
/**
|
|
50638
50439
|
* The toggle event. The toggle event doesn't bubble, but you can use it in
|
|
50639
50440
|
* addEvent() and jsaction anyway. EventContract does the right thing
|
|
50640
50441
|
* under the hood.
|
|
50641
50442
|
*/
|
|
50642
|
-
TOGGLE: 'toggle'
|
|
50643
|
-
/**
|
|
50644
|
-
* A custom event. The actual custom event type is declared as the 'type'
|
|
50645
|
-
* field in the event details. Supported in Firefox 6+, IE 9+, and all Chrome
|
|
50646
|
-
* versions.
|
|
50647
|
-
*
|
|
50648
|
-
* This is an internal name. Users should use jsaction's fireCustomEvent to
|
|
50649
|
-
* fire custom events instead of relying on this type to create them.
|
|
50650
|
-
*/
|
|
50651
|
-
CUSTOM: '_custom',
|
|
50652
|
-
};
|
|
50443
|
+
TOGGLE: 'toggle'};
|
|
50653
50444
|
/** All event types that do not bubble or capture and need a polyfill. */
|
|
50654
50445
|
const MOUSE_SPECIAL_EVENT_TYPES = [
|
|
50655
50446
|
EventType.MOUSEENTER,
|
|
@@ -50996,11 +50787,6 @@ class EventContractContainer {
|
|
|
50996
50787
|
}
|
|
50997
50788
|
|
|
50998
50789
|
const Char = {
|
|
50999
|
-
/**
|
|
51000
|
-
* The separator between the namespace and the action name in the
|
|
51001
|
-
* jsaction attribute value.
|
|
51002
|
-
*/
|
|
51003
|
-
NAMESPACE_ACTION_SEPARATOR: '.',
|
|
51004
50790
|
/**
|
|
51005
50791
|
* The separator between the event name and action in the jsaction
|
|
51006
50792
|
* attribute value.
|
|
@@ -89714,7 +89500,7 @@ class PlatformNavigation {
|
|
|
89714
89500
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PlatformNavigation, deps: [], target: FactoryTarget$2.Injectable }); }
|
|
89715
89501
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PlatformNavigation, providedIn: 'platform', useFactory: () => window.navigation }); }
|
|
89716
89502
|
}
|
|
89717
|
-
ɵɵngDeclareClassMetadata({
|
|
89503
|
+
ɵɵngDeclareClassMetadata({ type: PlatformNavigation, decorators: [{
|
|
89718
89504
|
type: Injectable,
|
|
89719
89505
|
args: [{ providedIn: 'platform', useFactory: () => window.navigation }]
|
|
89720
89506
|
}] });
|
|
@@ -89757,7 +89543,7 @@ class PlatformLocation {
|
|
|
89757
89543
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PlatformLocation, deps: [], target: FactoryTarget$2.Injectable }); }
|
|
89758
89544
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PlatformLocation, providedIn: 'platform', useFactory: () => inject(BrowserPlatformLocation) }); }
|
|
89759
89545
|
}
|
|
89760
|
-
ɵɵngDeclareClassMetadata({
|
|
89546
|
+
ɵɵngDeclareClassMetadata({ type: PlatformLocation, decorators: [{
|
|
89761
89547
|
type: Injectable,
|
|
89762
89548
|
args: [{ providedIn: 'platform', useFactory: () => inject(BrowserPlatformLocation) }]
|
|
89763
89549
|
}] });
|
|
@@ -89840,7 +89626,7 @@ class BrowserPlatformLocation extends PlatformLocation {
|
|
|
89840
89626
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BrowserPlatformLocation, deps: [], target: FactoryTarget$2.Injectable }); }
|
|
89841
89627
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BrowserPlatformLocation, providedIn: 'platform', useFactory: () => new BrowserPlatformLocation() }); }
|
|
89842
89628
|
}
|
|
89843
|
-
ɵɵngDeclareClassMetadata({
|
|
89629
|
+
ɵɵngDeclareClassMetadata({ type: BrowserPlatformLocation, decorators: [{
|
|
89844
89630
|
type: Injectable,
|
|
89845
89631
|
args: [{
|
|
89846
89632
|
providedIn: 'platform',
|
|
@@ -89929,7 +89715,7 @@ class LocationStrategy {
|
|
|
89929
89715
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LocationStrategy, deps: [], target: FactoryTarget$2.Injectable }); }
|
|
89930
89716
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LocationStrategy, providedIn: 'root', useFactory: () => inject(PathLocationStrategy) }); }
|
|
89931
89717
|
}
|
|
89932
|
-
ɵɵngDeclareClassMetadata({
|
|
89718
|
+
ɵɵngDeclareClassMetadata({ type: LocationStrategy, decorators: [{
|
|
89933
89719
|
type: Injectable,
|
|
89934
89720
|
args: [{ providedIn: 'root', useFactory: () => inject(PathLocationStrategy) }]
|
|
89935
89721
|
}] });
|
|
@@ -90042,7 +89828,7 @@ class PathLocationStrategy extends LocationStrategy {
|
|
|
90042
89828
|
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$2.Injectable }); }
|
|
90043
89829
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PathLocationStrategy, providedIn: 'root' }); }
|
|
90044
89830
|
}
|
|
90045
|
-
ɵɵngDeclareClassMetadata({
|
|
89831
|
+
ɵɵngDeclareClassMetadata({ type: PathLocationStrategy, decorators: [{
|
|
90046
89832
|
type: Injectable,
|
|
90047
89833
|
args: [{ providedIn: 'root' }]
|
|
90048
89834
|
}], ctorParameters: () => [{ type: PlatformLocation }, { type: undefined, decorators: [{
|
|
@@ -90131,7 +89917,7 @@ class HashLocationStrategy extends LocationStrategy {
|
|
|
90131
89917
|
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$2.Injectable }); }
|
|
90132
89918
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HashLocationStrategy }); }
|
|
90133
89919
|
}
|
|
90134
|
-
ɵɵngDeclareClassMetadata({
|
|
89920
|
+
ɵɵngDeclareClassMetadata({ type: HashLocationStrategy, decorators: [{
|
|
90135
89921
|
type: Injectable
|
|
90136
89922
|
}], ctorParameters: () => [{ type: PlatformLocation }, { type: undefined, decorators: [{
|
|
90137
89923
|
type: Optional
|
|
@@ -90381,7 +90167,7 @@ class Location {
|
|
|
90381
90167
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: Location, deps: [{ token: LocationStrategy }], target: FactoryTarget$2.Injectable }); }
|
|
90382
90168
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: Location, providedIn: 'root', useFactory: createLocation }); }
|
|
90383
90169
|
}
|
|
90384
|
-
ɵɵngDeclareClassMetadata({
|
|
90170
|
+
ɵɵngDeclareClassMetadata({ type: Location, decorators: [{
|
|
90385
90171
|
type: Injectable,
|
|
90386
90172
|
args: [{
|
|
90387
90173
|
providedIn: 'root',
|
|
@@ -90558,21 +90344,11 @@ const NumberSymbol = {
|
|
|
90558
90344
|
* Example: 2`,`345.67
|
|
90559
90345
|
*/
|
|
90560
90346
|
Group: 1,
|
|
90561
|
-
/**
|
|
90562
|
-
* List-item separator.
|
|
90563
|
-
* Example: "one, two, and three"
|
|
90564
|
-
*/
|
|
90565
|
-
List: 2,
|
|
90566
90347
|
/**
|
|
90567
90348
|
* Sign for percentage (out of 100).
|
|
90568
90349
|
* Example: 23.4%
|
|
90569
90350
|
*/
|
|
90570
90351
|
PercentSign: 3,
|
|
90571
|
-
/**
|
|
90572
|
-
* Sign for positive numbers.
|
|
90573
|
-
* Example: +23
|
|
90574
|
-
*/
|
|
90575
|
-
PlusSign: 4,
|
|
90576
90352
|
/**
|
|
90577
90353
|
* Sign for negative numbers.
|
|
90578
90354
|
* Example: -23
|
|
@@ -90583,31 +90359,11 @@ const NumberSymbol = {
|
|
|
90583
90359
|
* Example: 1.2E3
|
|
90584
90360
|
*/
|
|
90585
90361
|
Exponential: 6,
|
|
90586
|
-
/**
|
|
90587
|
-
* Human-readable format of exponential.
|
|
90588
|
-
* Example: 1.2x103
|
|
90589
|
-
*/
|
|
90590
|
-
SuperscriptingExponent: 7,
|
|
90591
|
-
/**
|
|
90592
|
-
* Sign for permille (out of 1000).
|
|
90593
|
-
* Example: 23.4‰
|
|
90594
|
-
*/
|
|
90595
|
-
PerMille: 8,
|
|
90596
90362
|
/**
|
|
90597
90363
|
* Infinity, can be used with plus and minus.
|
|
90598
90364
|
* Example: ∞, +∞, -∞
|
|
90599
90365
|
*/
|
|
90600
90366
|
Infinity: 9,
|
|
90601
|
-
/**
|
|
90602
|
-
* Not a number.
|
|
90603
|
-
* Example: NaN
|
|
90604
|
-
*/
|
|
90605
|
-
NaN: 10,
|
|
90606
|
-
/**
|
|
90607
|
-
* Symbol used between time units.
|
|
90608
|
-
* Example: 10:52
|
|
90609
|
-
*/
|
|
90610
|
-
TimeSeparator: 11,
|
|
90611
90367
|
/**
|
|
90612
90368
|
* Decimal separator for currency values (fallback to `Decimal`).
|
|
90613
90369
|
* Example: $2,345.67
|
|
@@ -92182,7 +91938,7 @@ class NgLocalization {
|
|
|
92182
91938
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgLocalization, deps: [], target: FactoryTarget$2.Injectable }); }
|
|
92183
91939
|
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 }] }); }
|
|
92184
91940
|
}
|
|
92185
|
-
ɵɵngDeclareClassMetadata({
|
|
91941
|
+
ɵɵngDeclareClassMetadata({ type: NgLocalization, decorators: [{
|
|
92186
91942
|
type: Injectable,
|
|
92187
91943
|
args: [{
|
|
92188
91944
|
providedIn: 'root',
|
|
@@ -92239,7 +91995,7 @@ class NgLocaleLocalization extends NgLocalization {
|
|
|
92239
91995
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgLocaleLocalization, deps: [{ token: LOCALE_ID }], target: FactoryTarget$2.Injectable }); }
|
|
92240
91996
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgLocaleLocalization }); }
|
|
92241
91997
|
}
|
|
92242
|
-
ɵɵngDeclareClassMetadata({
|
|
91998
|
+
ɵɵngDeclareClassMetadata({ type: NgLocaleLocalization, decorators: [{
|
|
92243
91999
|
type: Injectable
|
|
92244
92000
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
92245
92001
|
type: Inject,
|
|
@@ -92398,7 +92154,7 @@ class NgClass {
|
|
|
92398
92154
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgClass, deps: [{ token: ElementRef }, { token: Renderer2 }], target: FactoryTarget$2.Directive }); }
|
|
92399
92155
|
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 }); }
|
|
92400
92156
|
}
|
|
92401
|
-
ɵɵngDeclareClassMetadata({
|
|
92157
|
+
ɵɵngDeclareClassMetadata({ type: NgClass, decorators: [{
|
|
92402
92158
|
type: Directive,
|
|
92403
92159
|
args: [{
|
|
92404
92160
|
selector: '[ngClass]',
|
|
@@ -92568,7 +92324,7 @@ class NgComponentOutlet {
|
|
|
92568
92324
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgComponentOutlet, deps: [{ token: ViewContainerRef }], target: FactoryTarget$2.Directive }); }
|
|
92569
92325
|
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 }); }
|
|
92570
92326
|
}
|
|
92571
|
-
ɵɵngDeclareClassMetadata({
|
|
92327
|
+
ɵɵngDeclareClassMetadata({ type: NgComponentOutlet, decorators: [{
|
|
92572
92328
|
type: Directive,
|
|
92573
92329
|
args: [{
|
|
92574
92330
|
selector: '[ngComponentOutlet]',
|
|
@@ -92867,7 +92623,7 @@ class NgForOf {
|
|
|
92867
92623
|
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$2.Directive }); }
|
|
92868
92624
|
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 }); }
|
|
92869
92625
|
}
|
|
92870
|
-
ɵɵngDeclareClassMetadata({
|
|
92626
|
+
ɵɵngDeclareClassMetadata({ type: NgForOf, decorators: [{
|
|
92871
92627
|
type: Directive,
|
|
92872
92628
|
args: [{
|
|
92873
92629
|
selector: '[ngFor][ngForOf]',
|
|
@@ -93093,7 +92849,7 @@ class NgIf {
|
|
|
93093
92849
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgIf, deps: [{ token: ViewContainerRef }, { token: TemplateRef }], target: FactoryTarget$2.Directive }); }
|
|
93094
92850
|
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 }); }
|
|
93095
92851
|
}
|
|
93096
|
-
ɵɵngDeclareClassMetadata({
|
|
92852
|
+
ɵɵngDeclareClassMetadata({ type: NgIf, decorators: [{
|
|
93097
92853
|
type: Directive,
|
|
93098
92854
|
args: [{
|
|
93099
92855
|
selector: '[ngIf]',
|
|
@@ -93256,7 +93012,7 @@ class NgSwitch {
|
|
|
93256
93012
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgSwitch, deps: [], target: FactoryTarget$2.Directive }); }
|
|
93257
93013
|
static { this.ɵdir = ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NgSwitch, isStandalone: true, selector: "[ngSwitch]", inputs: { ngSwitch: "ngSwitch" }, ngImport: i0 }); }
|
|
93258
93014
|
}
|
|
93259
|
-
ɵɵngDeclareClassMetadata({
|
|
93015
|
+
ɵɵngDeclareClassMetadata({ type: NgSwitch, decorators: [{
|
|
93260
93016
|
type: Directive,
|
|
93261
93017
|
args: [{
|
|
93262
93018
|
selector: '[ngSwitch]',
|
|
@@ -93317,7 +93073,7 @@ class NgSwitchCase {
|
|
|
93317
93073
|
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$2.Directive }); }
|
|
93318
93074
|
static { this.ɵdir = ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NgSwitchCase, isStandalone: true, selector: "[ngSwitchCase]", inputs: { ngSwitchCase: "ngSwitchCase" }, ngImport: i0 }); }
|
|
93319
93075
|
}
|
|
93320
|
-
ɵɵngDeclareClassMetadata({
|
|
93076
|
+
ɵɵngDeclareClassMetadata({ type: NgSwitchCase, decorators: [{
|
|
93321
93077
|
type: Directive,
|
|
93322
93078
|
args: [{
|
|
93323
93079
|
selector: '[ngSwitchCase]',
|
|
@@ -93354,7 +93110,7 @@ class NgSwitchDefault {
|
|
|
93354
93110
|
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$2.Directive }); }
|
|
93355
93111
|
static { this.ɵdir = ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NgSwitchDefault, isStandalone: true, selector: "[ngSwitchDefault]", ngImport: i0 }); }
|
|
93356
93112
|
}
|
|
93357
|
-
ɵɵngDeclareClassMetadata({
|
|
93113
|
+
ɵɵngDeclareClassMetadata({ type: NgSwitchDefault, decorators: [{
|
|
93358
93114
|
type: Directive,
|
|
93359
93115
|
args: [{
|
|
93360
93116
|
selector: '[ngSwitchDefault]',
|
|
@@ -93432,7 +93188,7 @@ class NgPlural {
|
|
|
93432
93188
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgPlural, deps: [{ token: NgLocalization }], target: FactoryTarget$2.Directive }); }
|
|
93433
93189
|
static { this.ɵdir = ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NgPlural, isStandalone: true, selector: "[ngPlural]", inputs: { ngPlural: "ngPlural" }, ngImport: i0 }); }
|
|
93434
93190
|
}
|
|
93435
|
-
ɵɵngDeclareClassMetadata({
|
|
93191
|
+
ɵɵngDeclareClassMetadata({ type: NgPlural, decorators: [{
|
|
93436
93192
|
type: Directive,
|
|
93437
93193
|
args: [{
|
|
93438
93194
|
selector: '[ngPlural]',
|
|
@@ -93470,7 +93226,7 @@ class NgPluralCase {
|
|
|
93470
93226
|
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$2.Directive }); }
|
|
93471
93227
|
static { this.ɵdir = ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NgPluralCase, isStandalone: true, selector: "[ngPluralCase]", ngImport: i0 }); }
|
|
93472
93228
|
}
|
|
93473
|
-
ɵɵngDeclareClassMetadata({
|
|
93229
|
+
ɵɵngDeclareClassMetadata({ type: NgPluralCase, decorators: [{
|
|
93474
93230
|
type: Directive,
|
|
93475
93231
|
args: [{
|
|
93476
93232
|
selector: '[ngPluralCase]',
|
|
@@ -93559,7 +93315,7 @@ class NgStyle {
|
|
|
93559
93315
|
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$2.Directive }); }
|
|
93560
93316
|
static { this.ɵdir = ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NgStyle, isStandalone: true, selector: "[ngStyle]", inputs: { ngStyle: "ngStyle" }, ngImport: i0 }); }
|
|
93561
93317
|
}
|
|
93562
|
-
ɵɵngDeclareClassMetadata({
|
|
93318
|
+
ɵɵngDeclareClassMetadata({ type: NgStyle, decorators: [{
|
|
93563
93319
|
type: Directive,
|
|
93564
93320
|
args: [{
|
|
93565
93321
|
selector: '[ngStyle]',
|
|
@@ -93663,7 +93419,7 @@ class NgTemplateOutlet {
|
|
|
93663
93419
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgTemplateOutlet, deps: [{ token: ViewContainerRef }], target: FactoryTarget$2.Directive }); }
|
|
93664
93420
|
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 }); }
|
|
93665
93421
|
}
|
|
93666
|
-
ɵɵngDeclareClassMetadata({
|
|
93422
|
+
ɵɵngDeclareClassMetadata({ type: NgTemplateOutlet, decorators: [{
|
|
93667
93423
|
type: Directive,
|
|
93668
93424
|
args: [{
|
|
93669
93425
|
selector: '[ngTemplateOutlet]',
|
|
@@ -93834,7 +93590,7 @@ class AsyncPipe {
|
|
|
93834
93590
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AsyncPipe, deps: [{ token: ChangeDetectorRef }], target: FactoryTarget$2.Pipe }); }
|
|
93835
93591
|
static { this.ɵpipe = ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: AsyncPipe, isStandalone: true, name: "async", pure: false }); }
|
|
93836
93592
|
}
|
|
93837
|
-
ɵɵngDeclareClassMetadata({
|
|
93593
|
+
ɵɵngDeclareClassMetadata({ type: AsyncPipe, decorators: [{
|
|
93838
93594
|
type: Pipe,
|
|
93839
93595
|
args: [{
|
|
93840
93596
|
name: 'async',
|
|
@@ -93870,7 +93626,7 @@ class LowerCasePipe {
|
|
|
93870
93626
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LowerCasePipe, deps: [], target: FactoryTarget$2.Pipe }); }
|
|
93871
93627
|
static { this.ɵpipe = ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: LowerCasePipe, isStandalone: true, name: "lowercase" }); }
|
|
93872
93628
|
}
|
|
93873
|
-
ɵɵngDeclareClassMetadata({
|
|
93629
|
+
ɵɵngDeclareClassMetadata({ type: LowerCasePipe, decorators: [{
|
|
93874
93630
|
type: Pipe,
|
|
93875
93631
|
args: [{
|
|
93876
93632
|
name: 'lowercase',
|
|
@@ -93915,7 +93671,7 @@ class TitleCasePipe {
|
|
|
93915
93671
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TitleCasePipe, deps: [], target: FactoryTarget$2.Pipe }); }
|
|
93916
93672
|
static { this.ɵpipe = ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: TitleCasePipe, isStandalone: true, name: "titlecase" }); }
|
|
93917
93673
|
}
|
|
93918
|
-
ɵɵngDeclareClassMetadata({
|
|
93674
|
+
ɵɵngDeclareClassMetadata({ type: TitleCasePipe, decorators: [{
|
|
93919
93675
|
type: Pipe,
|
|
93920
93676
|
args: [{
|
|
93921
93677
|
name: 'titlecase',
|
|
@@ -93942,7 +93698,7 @@ class UpperCasePipe {
|
|
|
93942
93698
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UpperCasePipe, deps: [], target: FactoryTarget$2.Pipe }); }
|
|
93943
93699
|
static { this.ɵpipe = ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: UpperCasePipe, isStandalone: true, name: "uppercase" }); }
|
|
93944
93700
|
}
|
|
93945
|
-
ɵɵngDeclareClassMetadata({
|
|
93701
|
+
ɵɵngDeclareClassMetadata({ type: UpperCasePipe, decorators: [{
|
|
93946
93702
|
type: Pipe,
|
|
93947
93703
|
args: [{
|
|
93948
93704
|
name: 'uppercase',
|
|
@@ -94174,7 +93930,7 @@ class DatePipe {
|
|
|
94174
93930
|
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$2.Pipe }); }
|
|
94175
93931
|
static { this.ɵpipe = ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: DatePipe, isStandalone: true, name: "date" }); }
|
|
94176
93932
|
}
|
|
94177
|
-
ɵɵngDeclareClassMetadata({
|
|
93933
|
+
ɵɵngDeclareClassMetadata({ type: DatePipe, decorators: [{
|
|
94178
93934
|
type: Pipe,
|
|
94179
93935
|
args: [{
|
|
94180
93936
|
name: 'date',
|
|
@@ -94233,7 +93989,7 @@ class I18nPluralPipe {
|
|
|
94233
93989
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: I18nPluralPipe, deps: [{ token: NgLocalization }], target: FactoryTarget$2.Pipe }); }
|
|
94234
93990
|
static { this.ɵpipe = ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: I18nPluralPipe, isStandalone: true, name: "i18nPlural" }); }
|
|
94235
93991
|
}
|
|
94236
|
-
ɵɵngDeclareClassMetadata({
|
|
93992
|
+
ɵɵngDeclareClassMetadata({ type: I18nPluralPipe, decorators: [{
|
|
94237
93993
|
type: Pipe,
|
|
94238
93994
|
args: [{
|
|
94239
93995
|
name: 'i18nPlural',
|
|
@@ -94281,7 +94037,7 @@ class I18nSelectPipe {
|
|
|
94281
94037
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: I18nSelectPipe, deps: [], target: FactoryTarget$2.Pipe }); }
|
|
94282
94038
|
static { this.ɵpipe = ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: I18nSelectPipe, isStandalone: true, name: "i18nSelect" }); }
|
|
94283
94039
|
}
|
|
94284
|
-
ɵɵngDeclareClassMetadata({
|
|
94040
|
+
ɵɵngDeclareClassMetadata({ type: I18nSelectPipe, decorators: [{
|
|
94285
94041
|
type: Pipe,
|
|
94286
94042
|
args: [{
|
|
94287
94043
|
name: 'i18nSelect',
|
|
@@ -94314,7 +94070,7 @@ class JsonPipe {
|
|
|
94314
94070
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: JsonPipe, deps: [], target: FactoryTarget$2.Pipe }); }
|
|
94315
94071
|
static { this.ɵpipe = ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: JsonPipe, isStandalone: true, name: "json", pure: false }); }
|
|
94316
94072
|
}
|
|
94317
|
-
ɵɵngDeclareClassMetadata({
|
|
94073
|
+
ɵɵngDeclareClassMetadata({ type: JsonPipe, decorators: [{
|
|
94318
94074
|
type: Pipe,
|
|
94319
94075
|
args: [{
|
|
94320
94076
|
name: 'json',
|
|
@@ -94375,7 +94131,7 @@ class KeyValuePipe {
|
|
|
94375
94131
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: KeyValuePipe, deps: [{ token: KeyValueDiffers }], target: FactoryTarget$2.Pipe }); }
|
|
94376
94132
|
static { this.ɵpipe = ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: KeyValuePipe, isStandalone: true, name: "keyvalue", pure: false }); }
|
|
94377
94133
|
}
|
|
94378
|
-
ɵɵngDeclareClassMetadata({
|
|
94134
|
+
ɵɵngDeclareClassMetadata({ type: KeyValuePipe, decorators: [{
|
|
94379
94135
|
type: Pipe,
|
|
94380
94136
|
args: [{
|
|
94381
94137
|
name: 'keyvalue',
|
|
@@ -94496,7 +94252,7 @@ class DecimalPipe {
|
|
|
94496
94252
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DecimalPipe, deps: [{ token: LOCALE_ID }], target: FactoryTarget$2.Pipe }); }
|
|
94497
94253
|
static { this.ɵpipe = ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: DecimalPipe, isStandalone: true, name: "number" }); }
|
|
94498
94254
|
}
|
|
94499
|
-
ɵɵngDeclareClassMetadata({
|
|
94255
|
+
ɵɵngDeclareClassMetadata({ type: DecimalPipe, decorators: [{
|
|
94500
94256
|
type: Pipe,
|
|
94501
94257
|
args: [{
|
|
94502
94258
|
name: 'number',
|
|
@@ -94561,7 +94317,7 @@ class PercentPipe {
|
|
|
94561
94317
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PercentPipe, deps: [{ token: LOCALE_ID }], target: FactoryTarget$2.Pipe }); }
|
|
94562
94318
|
static { this.ɵpipe = ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: PercentPipe, isStandalone: true, name: "percent" }); }
|
|
94563
94319
|
}
|
|
94564
|
-
ɵɵngDeclareClassMetadata({
|
|
94320
|
+
ɵɵngDeclareClassMetadata({ type: PercentPipe, decorators: [{
|
|
94565
94321
|
type: Pipe,
|
|
94566
94322
|
args: [{
|
|
94567
94323
|
name: 'percent',
|
|
@@ -94627,7 +94383,7 @@ class CurrencyPipe {
|
|
|
94627
94383
|
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$2.Pipe }); }
|
|
94628
94384
|
static { this.ɵpipe = ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: CurrencyPipe, isStandalone: true, name: "currency" }); }
|
|
94629
94385
|
}
|
|
94630
|
-
ɵɵngDeclareClassMetadata({
|
|
94386
|
+
ɵɵngDeclareClassMetadata({ type: CurrencyPipe, decorators: [{
|
|
94631
94387
|
type: Pipe,
|
|
94632
94388
|
args: [{
|
|
94633
94389
|
name: 'currency',
|
|
@@ -94707,7 +94463,7 @@ class SlicePipe {
|
|
|
94707
94463
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SlicePipe, deps: [], target: FactoryTarget$2.Pipe }); }
|
|
94708
94464
|
static { this.ɵpipe = ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: SlicePipe, isStandalone: true, name: "slice", pure: false }); }
|
|
94709
94465
|
}
|
|
94710
|
-
ɵɵngDeclareClassMetadata({
|
|
94466
|
+
ɵɵngDeclareClassMetadata({ type: SlicePipe, decorators: [{
|
|
94711
94467
|
type: Pipe,
|
|
94712
94468
|
args: [{
|
|
94713
94469
|
name: 'slice',
|
|
@@ -94755,7 +94511,7 @@ class CommonModule {
|
|
|
94755
94511
|
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] }); }
|
|
94756
94512
|
static { this.ɵinj = ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CommonModule }); }
|
|
94757
94513
|
}
|
|
94758
|
-
ɵɵngDeclareClassMetadata({
|
|
94514
|
+
ɵɵngDeclareClassMetadata({ type: CommonModule, decorators: [{
|
|
94759
94515
|
type: NgModule,
|
|
94760
94516
|
args: [{
|
|
94761
94517
|
imports: [COMMON_DIRECTIVES, COMMON_PIPES],
|
|
@@ -95343,7 +95099,7 @@ class LCPImageObserver {
|
|
|
95343
95099
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LCPImageObserver, deps: [], target: FactoryTarget$2.Injectable }); }
|
|
95344
95100
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LCPImageObserver, providedIn: 'root' }); }
|
|
95345
95101
|
}
|
|
95346
|
-
ɵɵngDeclareClassMetadata({
|
|
95102
|
+
ɵɵngDeclareClassMetadata({ type: LCPImageObserver, decorators: [{
|
|
95347
95103
|
type: Injectable,
|
|
95348
95104
|
args: [{ providedIn: 'root' }]
|
|
95349
95105
|
}], ctorParameters: () => [] });
|
|
@@ -95470,7 +95226,7 @@ class PreconnectLinkChecker {
|
|
|
95470
95226
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PreconnectLinkChecker, deps: [], target: FactoryTarget$2.Injectable }); }
|
|
95471
95227
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PreconnectLinkChecker, providedIn: 'root' }); }
|
|
95472
95228
|
}
|
|
95473
|
-
ɵɵngDeclareClassMetadata({
|
|
95229
|
+
ɵɵngDeclareClassMetadata({ type: PreconnectLinkChecker, decorators: [{
|
|
95474
95230
|
type: Injectable,
|
|
95475
95231
|
args: [{ providedIn: 'root' }]
|
|
95476
95232
|
}], ctorParameters: () => [] });
|
|
@@ -95562,7 +95318,7 @@ class PreloadLinkCreator {
|
|
|
95562
95318
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PreloadLinkCreator, deps: [], target: FactoryTarget$2.Injectable }); }
|
|
95563
95319
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: PreloadLinkCreator, providedIn: 'root' }); }
|
|
95564
95320
|
}
|
|
95565
|
-
ɵɵngDeclareClassMetadata({
|
|
95321
|
+
ɵɵngDeclareClassMetadata({ type: PreloadLinkCreator, decorators: [{
|
|
95566
95322
|
type: Injectable,
|
|
95567
95323
|
args: [{ providedIn: 'root' }]
|
|
95568
95324
|
}] });
|
|
@@ -96052,7 +95808,7 @@ class NgOptimizedImage {
|
|
|
96052
95808
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgOptimizedImage, deps: [], target: FactoryTarget$2.Directive }); }
|
|
96053
95809
|
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 }); }
|
|
96054
95810
|
}
|
|
96055
|
-
ɵɵngDeclareClassMetadata({
|
|
95811
|
+
ɵɵngDeclareClassMetadata({ type: NgOptimizedImage, decorators: [{
|
|
96056
95812
|
type: Directive,
|
|
96057
95813
|
args: [{
|
|
96058
95814
|
standalone: true,
|
|
@@ -124408,7 +124164,6 @@ let CompilerFacadeImpl$1 = class CompilerFacadeImpl {
|
|
|
124408
124164
|
name: facade.name,
|
|
124409
124165
|
type: wrapReference$1(facade.type),
|
|
124410
124166
|
typeArgumentCount: 0,
|
|
124411
|
-
deps: null,
|
|
124412
124167
|
pipeName: facade.pipeName,
|
|
124413
124168
|
pure: facade.pure,
|
|
124414
124169
|
isStandalone: facade.isStandalone,
|
|
@@ -130185,8 +129940,6 @@ if ((DataView$1$1 && getTag$2(new DataView$1$1(new ArrayBuffer(1))) != dataViewT
|
|
|
130185
129940
|
};
|
|
130186
129941
|
}
|
|
130187
129942
|
|
|
130188
|
-
var getTag$1$1 = getTag$2;
|
|
130189
|
-
|
|
130190
129943
|
/** Used for built-in method references. */
|
|
130191
129944
|
var objectProto$c$1 = Object.prototype;
|
|
130192
129945
|
|
|
@@ -130379,7 +130132,7 @@ var mapTag$6$1 = '[object Map]';
|
|
|
130379
130132
|
* @returns {boolean} Returns `true` if `value` is a map, else `false`.
|
|
130380
130133
|
*/
|
|
130381
130134
|
function baseIsMap$1(value) {
|
|
130382
|
-
return isObjectLike$1(value) && getTag$
|
|
130135
|
+
return isObjectLike$1(value) && getTag$2(value) == mapTag$6$1;
|
|
130383
130136
|
}
|
|
130384
130137
|
|
|
130385
130138
|
/* Node.js helper references. */
|
|
@@ -130415,7 +130168,7 @@ var setTag$6$1 = '[object Set]';
|
|
|
130415
130168
|
* @returns {boolean} Returns `true` if `value` is a set, else `false`.
|
|
130416
130169
|
*/
|
|
130417
130170
|
function baseIsSet$1(value) {
|
|
130418
|
-
return isObjectLike$1(value) && getTag$
|
|
130171
|
+
return isObjectLike$1(value) && getTag$2(value) == setTag$6$1;
|
|
130419
130172
|
}
|
|
130420
130173
|
|
|
130421
130174
|
/* Node.js helper references. */
|
|
@@ -130528,7 +130281,7 @@ function baseClone$1(value, bitmask, customizer, key, object, stack) {
|
|
|
130528
130281
|
return copyArray$1(value, result);
|
|
130529
130282
|
}
|
|
130530
130283
|
} else {
|
|
130531
|
-
var tag = getTag$
|
|
130284
|
+
var tag = getTag$2(value),
|
|
130532
130285
|
isFunc = tag == funcTag$3 || tag == genTag$2;
|
|
130533
130286
|
|
|
130534
130287
|
if (isBuffer$1(value)) {
|
|
@@ -131236,8 +130989,8 @@ var hasOwnProperty$9$1 = objectProto$a$1.hasOwnProperty;
|
|
|
131236
130989
|
function baseIsEqualDeep$1(object, other, bitmask, customizer, equalFunc, stack) {
|
|
131237
130990
|
var objIsArr = isArray$2(object),
|
|
131238
130991
|
othIsArr = isArray$2(other),
|
|
131239
|
-
objTag = objIsArr ? arrayTag$3 : getTag$
|
|
131240
|
-
othTag = othIsArr ? arrayTag$3 : getTag$
|
|
130992
|
+
objTag = objIsArr ? arrayTag$3 : getTag$2(object),
|
|
130993
|
+
othTag = othIsArr ? arrayTag$3 : getTag$2(other);
|
|
131241
130994
|
|
|
131242
130995
|
objTag = objTag == argsTag$4 ? objectTag$5 : objTag;
|
|
131243
130996
|
othTag = othTag == argsTag$4 ? objectTag$5 : othTag;
|
|
@@ -133312,7 +133065,7 @@ var mapTag$3$1 = '[object Map]',
|
|
|
133312
133065
|
*/
|
|
133313
133066
|
function createToPairs$1(keysFunc) {
|
|
133314
133067
|
return function(object) {
|
|
133315
|
-
var tag = getTag$
|
|
133068
|
+
var tag = getTag$2(object);
|
|
133316
133069
|
if (tag == mapTag$3$1) {
|
|
133317
133070
|
return mapToArray$1(object);
|
|
133318
133071
|
}
|
|
@@ -135559,7 +135312,7 @@ function isEmpty$1(value) {
|
|
|
135559
135312
|
isBuffer$1(value) || isTypedArray$1(value) || isArguments$1(value))) {
|
|
135560
135313
|
return !value.length;
|
|
135561
135314
|
}
|
|
135562
|
-
var tag = getTag$
|
|
135315
|
+
var tag = getTag$2(value);
|
|
135563
135316
|
if (tag == mapTag$2$1 || tag == setTag$2$1) {
|
|
135564
135317
|
return !value.size;
|
|
135565
135318
|
}
|
|
@@ -136047,7 +135800,7 @@ var weakMapTag$4 = '[object WeakMap]';
|
|
|
136047
135800
|
* // => false
|
|
136048
135801
|
*/
|
|
136049
135802
|
function isWeakMap$1(value) {
|
|
136050
|
-
return isObjectLike$1(value) && getTag$
|
|
135803
|
+
return isObjectLike$1(value) && getTag$2(value) == weakMapTag$4;
|
|
136051
135804
|
}
|
|
136052
135805
|
|
|
136053
135806
|
/** `Object#toString` result references. */
|
|
@@ -137018,7 +136771,7 @@ function toArray$1(value) {
|
|
|
137018
136771
|
if (symIterator$1$1 && value[symIterator$1$1]) {
|
|
137019
136772
|
return iteratorToArray$1(value[symIterator$1$1]());
|
|
137020
136773
|
}
|
|
137021
|
-
var tag = getTag$
|
|
136774
|
+
var tag = getTag$2(value),
|
|
137022
136775
|
func = tag == mapTag$1$1 ? mapToArray$1 : (tag == setTag$1$1 ? setToArray$1 : values$1);
|
|
137023
136776
|
|
|
137024
136777
|
return func(value);
|
|
@@ -139357,7 +139110,7 @@ function size$1(collection) {
|
|
|
139357
139110
|
if (isArrayLike$2(collection)) {
|
|
139358
139111
|
return isString$1(collection) ? stringSize$1(collection) : collection.length;
|
|
139359
139112
|
}
|
|
139360
|
-
var tag = getTag$
|
|
139113
|
+
var tag = getTag$2(collection);
|
|
139361
139114
|
if (tag == mapTag$a || tag == setTag$a) {
|
|
139362
139115
|
return collection.size;
|
|
139363
139116
|
}
|
|
@@ -142237,10 +141990,10 @@ var zipWith$1 = baseRest$1(function(arrays) {
|
|
|
142237
141990
|
var array$1 = {
|
|
142238
141991
|
chunk: chunk$1, compact: compact$1, concat: concat$1, difference: difference$1, differenceBy: differenceBy$1,
|
|
142239
141992
|
differenceWith: differenceWith$1, drop: drop$1, dropRight: dropRight$1, dropRightWhile: dropRightWhile$1, dropWhile: dropWhile$1,
|
|
142240
|
-
fill: fill$1, findIndex: findIndex$1, findLastIndex: findLastIndex$1,
|
|
141993
|
+
fill: fill$1, findIndex: findIndex$1, findLastIndex: findLastIndex$1, flatten: flatten$2,
|
|
142241
141994
|
flattenDeep: flattenDeep$1, flattenDepth: flattenDepth$1, fromPairs: fromPairs$1, head: head$1, indexOf: indexOf$2,
|
|
142242
141995
|
initial: initial$1, intersection: intersection$1, intersectionBy: intersectionBy$1, intersectionWith: intersectionWith$1, join: join$1,
|
|
142243
|
-
|
|
141996
|
+
lastIndexOf: lastIndexOf$1, nth: nth$1, pull: pull$1, pullAll: pullAll$1,
|
|
142244
141997
|
pullAllBy: pullAllBy$1, pullAllWith: pullAllWith$1, pullAt: pullAt$1, remove: remove$2, reverse: reverse$1,
|
|
142245
141998
|
slice: slice$1, sortedIndex: sortedIndex$1, sortedIndexBy: sortedIndexBy$1, sortedIndexOf: sortedIndexOf$1, sortedLastIndex: sortedLastIndex$1,
|
|
142246
141999
|
sortedLastIndexBy: sortedLastIndexBy$1, sortedLastIndexOf: sortedLastIndexOf$1, sortedUniq: sortedUniq$1, sortedUniqBy: sortedUniqBy$1, tail: tail$1,
|
|
@@ -142251,7 +142004,7 @@ var array$1 = {
|
|
|
142251
142004
|
};
|
|
142252
142005
|
|
|
142253
142006
|
var collection$1 = {
|
|
142254
|
-
countBy: countBy$1,
|
|
142007
|
+
countBy: countBy$1, every: every$1, filter: filter$2,
|
|
142255
142008
|
find: find$1, findLast: findLast$1, flatMap: flatMap$1, flatMapDeep: flatMapDeep$1, flatMapDepth: flatMapDepth$1,
|
|
142256
142009
|
forEach: forEach$1, forEachRight: forEachRight$1, groupBy: groupBy$1, includes: includes$1, invokeMap: invokeMap$1,
|
|
142257
142010
|
keyBy: keyBy$1, map: map$2, orderBy: orderBy$1, partition: partition$1, reduce: reduce$1,
|
|
@@ -142266,7 +142019,7 @@ var date$1 = {
|
|
|
142266
142019
|
var func$1 = {
|
|
142267
142020
|
after: after$1, ary: ary$1, before: before$1, bind: bind$1, bindKey: bindKey$1,
|
|
142268
142021
|
curry: curry$1, curryRight: curryRight$1, debounce: debounce$1, defer: defer$1$1, delay: delay$1,
|
|
142269
|
-
flip: flip$1, memoize: memoize$1,
|
|
142022
|
+
flip: flip$1, memoize: memoize$1, once: once$1, overArgs: overArgs$1,
|
|
142270
142023
|
partial: partial$1, partialRight: partialRight$1, rearg: rearg$1, rest: rest$1, spread: spread$1,
|
|
142271
142024
|
throttle: throttle$1, unary: unary$1, wrap: wrap$1
|
|
142272
142025
|
};
|
|
@@ -142274,15 +142027,14 @@ var func$1 = {
|
|
|
142274
142027
|
var lang$1 = {
|
|
142275
142028
|
castArray: castArray$1, clone: clone$1, cloneDeep: cloneDeep$1, cloneDeepWith: cloneDeepWith$1, cloneWith: cloneWith$1,
|
|
142276
142029
|
conformsTo: conformsTo$1, eq: eq$1, gt: gt$1, gte: gte$1, isArguments: isArguments$1,
|
|
142277
|
-
|
|
142030
|
+
isArrayBuffer: isArrayBuffer$1$1, isArrayLike: isArrayLike$2, isArrayLikeObject: isArrayLikeObject$1, isBoolean: isBoolean$1,
|
|
142278
142031
|
isBuffer: isBuffer$1, isDate: isDate$2, isElement: isElement$1, isEmpty: isEmpty$1, isEqual: isEqual$1,
|
|
142279
142032
|
isEqualWith: isEqualWith$1, isError: isError$1, isFinite: isFinite$1$1, isFunction: isFunction$2, isInteger: isInteger$1,
|
|
142280
142033
|
isLength: isLength$1, isMap: isMap$1, isMatch: isMatch$1, isMatchWith: isMatchWith$1, isNaN: isNaN$1$1,
|
|
142281
|
-
isNative: isNative$1, isNil: isNil$1, isNull: isNull$1, isNumber: isNumber$1,
|
|
142282
|
-
isObjectLike: isObjectLike$1, isPlainObject: isPlainObject$1, isRegExp: isRegExp$1, isSafeInteger: isSafeInteger$1, isSet: isSet$1,
|
|
142034
|
+
isNative: isNative$1, isNil: isNil$1, isNull: isNull$1, isNumber: isNumber$1, isObjectLike: isObjectLike$1, isPlainObject: isPlainObject$1, isRegExp: isRegExp$1, isSafeInteger: isSafeInteger$1, isSet: isSet$1,
|
|
142283
142035
|
isString: isString$1, isSymbol: isSymbol$1, isTypedArray: isTypedArray$1, isUndefined: isUndefined$1, isWeakMap: isWeakMap$1,
|
|
142284
142036
|
isWeakSet: isWeakSet$1, lt: lt$1, lte: lte$1, toArray: toArray$1, toFinite: toFinite$1,
|
|
142285
|
-
|
|
142037
|
+
toLength: toLength$1, toNumber: toNumber$1, toPlainObject: toPlainObject$1, toSafeInteger: toSafeInteger$1,
|
|
142286
142038
|
toString: toString$1
|
|
142287
142039
|
};
|
|
142288
142040
|
|
|
@@ -142298,11 +142050,10 @@ var number$1 = {
|
|
|
142298
142050
|
|
|
142299
142051
|
var object$1 = {
|
|
142300
142052
|
assign: assign$1, assignIn: assignIn$1, assignInWith: assignInWith$1, assignWith: assignWith$1, at: at$1,
|
|
142301
|
-
create: create$1, defaults: defaults$1, defaultsDeep: defaultsDeep$1,
|
|
142302
|
-
extend: assignIn$1, extendWith: assignInWith$1, findKey: findKey$1, findLastKey: findLastKey$1, forIn: forIn$1,
|
|
142053
|
+
create: create$1, defaults: defaults$1, defaultsDeep: defaultsDeep$1, findKey: findKey$1, findLastKey: findLastKey$1, forIn: forIn$1,
|
|
142303
142054
|
forInRight: forInRight$1, forOwn: forOwn$1, forOwnRight: forOwnRight$1, functions: functions$1, functionsIn: functionsIn$1,
|
|
142304
142055
|
get: get$2, has: has$1, hasIn: hasIn$1, invert: invert$1, invertBy: invertBy$1,
|
|
142305
|
-
invoke: invoke$1,
|
|
142056
|
+
invoke: invoke$1, keysIn: keysIn$1, mapKeys: mapKeys$1, mapValues: mapValues$1,
|
|
142306
142057
|
merge: merge$2, mergeWith: mergeWith$1, omit: omit$1, omitBy: omitBy$1, pick: pick$1,
|
|
142307
142058
|
pickBy: pickBy$1, result: result$1, set: set$2, setWith: setWith$1, toPairs: toPairs$1,
|
|
142308
142059
|
toPairsIn: toPairsIn$1, transform: transform$2, unset: unset$1, update: update$1, updateWith: updateWith$1,
|
|
@@ -142310,9 +142061,9 @@ var object$1 = {
|
|
|
142310
142061
|
};
|
|
142311
142062
|
|
|
142312
142063
|
var seq$1 = {
|
|
142313
|
-
at: wrapperAt$1, chain: chain$2, commit: wrapperCommit$1,
|
|
142314
|
-
plant: wrapperPlant$1, reverse: wrapperReverse$1, tap: tap$1,
|
|
142315
|
-
|
|
142064
|
+
at: wrapperAt$1, chain: chain$2, commit: wrapperCommit$1, next: wrapperNext$1,
|
|
142065
|
+
plant: wrapperPlant$1, reverse: wrapperReverse$1, tap: tap$1, toIterator: wrapperToIterator$1,
|
|
142066
|
+
value: wrapperValue$1, wrapperChain: wrapperChain$1
|
|
142316
142067
|
};
|
|
142317
142068
|
|
|
142318
142069
|
var string$1 = {
|
|
@@ -142327,9 +142078,8 @@ var string$1 = {
|
|
|
142327
142078
|
|
|
142328
142079
|
var util$1 = {
|
|
142329
142080
|
attempt: attempt$1, bindAll: bindAll$1, cond: cond$1, conforms: conforms$1, constant: constant$1,
|
|
142330
|
-
defaultTo: defaultTo$1, flow: flow$1, flowRight: flowRight$1,
|
|
142331
|
-
matches: matches$1, matchesProperty: matchesProperty$1, method: method$1, methodOf: methodOf$1,
|
|
142332
|
-
noop: noop$3$1, nthArg: nthArg$1, over: over$1, overEvery: overEvery$1, overSome: overSome$1,
|
|
142081
|
+
defaultTo: defaultTo$1, flow: flow$1, flowRight: flowRight$1, iteratee: iteratee$1,
|
|
142082
|
+
matches: matches$1, matchesProperty: matchesProperty$1, method: method$1, methodOf: methodOf$1, noop: noop$3$1, nthArg: nthArg$1, over: over$1, overEvery: overEvery$1, overSome: overSome$1,
|
|
142333
142083
|
property: property$2, propertyOf: propertyOf$1, range: range$1, rangeRight: rangeRight$1, stubArray: stubArray$1,
|
|
142334
142084
|
stubFalse: stubFalse$1, stubObject: stubObject$1, stubString: stubString$1, stubTrue: stubTrue$1, times: times$1,
|
|
142335
142085
|
toPath: toPath$1, uniqueId: uniqueId$1
|
|
@@ -144518,7 +144268,7 @@ let HttpClient$1 = class HttpClient {
|
|
|
144518
144268
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HttpClient, deps: [{ token: HttpHandler$1 }], target: FactoryTarget$2.Injectable }); }
|
|
144519
144269
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HttpClient }); }
|
|
144520
144270
|
};
|
|
144521
|
-
ɵɵngDeclareClassMetadata({
|
|
144271
|
+
ɵɵngDeclareClassMetadata({ type: HttpClient$1, decorators: [{
|
|
144522
144272
|
type: Injectable
|
|
144523
144273
|
}], ctorParameters: () => [{ type: HttpHandler$1 }] });
|
|
144524
144274
|
|
|
@@ -144734,7 +144484,7 @@ let FetchBackend$1 = class FetchBackend {
|
|
|
144734
144484
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FetchBackend, deps: [], target: FactoryTarget$2.Injectable }); }
|
|
144735
144485
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FetchBackend }); }
|
|
144736
144486
|
};
|
|
144737
|
-
ɵɵngDeclareClassMetadata({
|
|
144487
|
+
ɵɵngDeclareClassMetadata({ type: FetchBackend$1, decorators: [{
|
|
144738
144488
|
type: Injectable
|
|
144739
144489
|
}] });
|
|
144740
144490
|
/**
|
|
@@ -144867,7 +144617,7 @@ let HttpInterceptorHandler$1 = class HttpInterceptorHandler extends HttpHandler$
|
|
|
144867
144617
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HttpInterceptorHandler, deps: [{ token: HttpBackend$1 }, { token: EnvironmentInjector }], target: FactoryTarget$2.Injectable }); }
|
|
144868
144618
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HttpInterceptorHandler }); }
|
|
144869
144619
|
};
|
|
144870
|
-
ɵɵngDeclareClassMetadata({
|
|
144620
|
+
ɵɵngDeclareClassMetadata({ type: HttpInterceptorHandler$1, decorators: [{
|
|
144871
144621
|
type: Injectable
|
|
144872
144622
|
}], ctorParameters: () => [{ type: HttpBackend$1 }, { type: EnvironmentInjector }] });
|
|
144873
144623
|
|
|
@@ -145070,7 +144820,7 @@ let JsonpClientBackend$1 = class JsonpClientBackend {
|
|
|
145070
144820
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: JsonpClientBackend, deps: [{ token: JsonpCallbackContext$1 }, { token: DOCUMENT }], target: FactoryTarget$2.Injectable }); }
|
|
145071
144821
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: JsonpClientBackend }); }
|
|
145072
144822
|
};
|
|
145073
|
-
ɵɵngDeclareClassMetadata({
|
|
144823
|
+
ɵɵngDeclareClassMetadata({ type: JsonpClientBackend$1, decorators: [{
|
|
145074
144824
|
type: Injectable
|
|
145075
144825
|
}], ctorParameters: () => [{ type: JsonpCallbackContext$1 }, { type: undefined, decorators: [{
|
|
145076
144826
|
type: Inject,
|
|
@@ -145111,7 +144861,7 @@ let JsonpInterceptor$1 = class JsonpInterceptor {
|
|
|
145111
144861
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: JsonpInterceptor, deps: [{ token: EnvironmentInjector }], target: FactoryTarget$2.Injectable }); }
|
|
145112
144862
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: JsonpInterceptor }); }
|
|
145113
144863
|
};
|
|
145114
|
-
ɵɵngDeclareClassMetadata({
|
|
144864
|
+
ɵɵngDeclareClassMetadata({ type: JsonpInterceptor$1, decorators: [{
|
|
145115
144865
|
type: Injectable
|
|
145116
144866
|
}], ctorParameters: () => [{ type: EnvironmentInjector }] });
|
|
145117
144867
|
|
|
@@ -145394,7 +145144,7 @@ let HttpXhrBackend$1 = class HttpXhrBackend {
|
|
|
145394
145144
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HttpXhrBackend, deps: [{ token: XhrFactory }], target: FactoryTarget$2.Injectable }); }
|
|
145395
145145
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HttpXhrBackend }); }
|
|
145396
145146
|
};
|
|
145397
|
-
ɵɵngDeclareClassMetadata({
|
|
145147
|
+
ɵɵngDeclareClassMetadata({ type: HttpXhrBackend$1, decorators: [{
|
|
145398
145148
|
type: Injectable
|
|
145399
145149
|
}], ctorParameters: () => [{ type: XhrFactory }] });
|
|
145400
145150
|
|
|
@@ -145446,7 +145196,7 @@ let HttpXsrfCookieExtractor$1 = class HttpXsrfCookieExtractor {
|
|
|
145446
145196
|
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$1 }], target: FactoryTarget$2.Injectable }); }
|
|
145447
145197
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HttpXsrfCookieExtractor }); }
|
|
145448
145198
|
};
|
|
145449
|
-
ɵɵngDeclareClassMetadata({
|
|
145199
|
+
ɵɵngDeclareClassMetadata({ type: HttpXsrfCookieExtractor$1, decorators: [{
|
|
145450
145200
|
type: Injectable
|
|
145451
145201
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
145452
145202
|
type: Inject,
|
|
@@ -145492,7 +145242,7 @@ let HttpXsrfInterceptor$1 = class HttpXsrfInterceptor {
|
|
|
145492
145242
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HttpXsrfInterceptor, deps: [{ token: EnvironmentInjector }], target: FactoryTarget$2.Injectable }); }
|
|
145493
145243
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HttpXsrfInterceptor }); }
|
|
145494
145244
|
};
|
|
145495
|
-
ɵɵngDeclareClassMetadata({
|
|
145245
|
+
ɵɵngDeclareClassMetadata({ type: HttpXsrfInterceptor$1, decorators: [{
|
|
145496
145246
|
type: Injectable
|
|
145497
145247
|
}], ctorParameters: () => [{ type: EnvironmentInjector }] });
|
|
145498
145248
|
|
|
@@ -145706,7 +145456,7 @@ let HttpClientXsrfModule$1 = class HttpClientXsrfModule {
|
|
|
145706
145456
|
{ provide: XSRF_ENABLED$1, useValue: true },
|
|
145707
145457
|
] }); }
|
|
145708
145458
|
};
|
|
145709
|
-
ɵɵngDeclareClassMetadata({
|
|
145459
|
+
ɵɵngDeclareClassMetadata({ type: HttpClientXsrfModule$1, decorators: [{
|
|
145710
145460
|
type: NgModule,
|
|
145711
145461
|
args: [{
|
|
145712
145462
|
providers: [
|
|
@@ -145736,7 +145486,7 @@ let HttpClientModule$1 = class HttpClientModule {
|
|
|
145736
145486
|
static { this.ɵmod = ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: HttpClientModule }); }
|
|
145737
145487
|
static { this.ɵinj = ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HttpClientModule, providers: [provideHttpClient$1(withInterceptorsFromDi$1())] }); }
|
|
145738
145488
|
};
|
|
145739
|
-
ɵɵngDeclareClassMetadata({
|
|
145489
|
+
ɵɵngDeclareClassMetadata({ type: HttpClientModule$1, decorators: [{
|
|
145740
145490
|
type: NgModule,
|
|
145741
145491
|
args: [{
|
|
145742
145492
|
/**
|
|
@@ -145760,7 +145510,7 @@ let HttpClientJsonpModule$1 = class HttpClientJsonpModule {
|
|
|
145760
145510
|
static { this.ɵmod = ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: HttpClientJsonpModule }); }
|
|
145761
145511
|
static { this.ɵinj = ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HttpClientJsonpModule, providers: [withJsonpSupport$1().ɵproviders] }); }
|
|
145762
145512
|
};
|
|
145763
|
-
ɵɵngDeclareClassMetadata({
|
|
145513
|
+
ɵɵngDeclareClassMetadata({ type: HttpClientJsonpModule$1, decorators: [{
|
|
145764
145514
|
type: NgModule,
|
|
145765
145515
|
args: [{
|
|
145766
145516
|
providers: [withJsonpSupport$1().ɵproviders],
|
|
@@ -147606,28 +147356,11 @@ const REGEX$1 = {
|
|
|
147606
147356
|
IPAD: /iPad/i,
|
|
147607
147357
|
MAC: /Mac/i,
|
|
147608
147358
|
ANDROID_TABLET: /android|android 3.0|xoom|sch-i800|playbook|tablet|kindle/i,
|
|
147609
|
-
MOBILE: /Mobile/i,
|
|
147610
|
-
WINDOWS: /Windows Phone/i,
|
|
147611
147359
|
SUPPORTED_IMAGE_FORMAT: /\.(bmp|gif|jpe|jpg|jpeg|tif|tiff|pbm|png|ico)$/i,
|
|
147612
|
-
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,
|
|
147613
147360
|
SUPPORTED_AUDIO_FORMAT: /\.(mp3|ogg|webm|wma|3gp|wav|m4a)$/i,
|
|
147614
147361
|
SUPPORTED_VIDEO_FORMAT: /\.(mp4|ogg|webm|wmv|mpeg|mpg|avi|mov)$/i,
|
|
147615
|
-
PAGE_RESOURCE_PATH: /^\/pages\/.*\.(js|css|html|json)$/,
|
|
147616
|
-
MIN_PAGE_RESOURCE_PATH: /.*(page.min.html)$/,
|
|
147617
|
-
VALID_EMAIL: /^[a-zA-Z][\w.+]+@[a-zA-Z_]+?\.[a-zA-Z.]{1,4}[a-zA-Z]$/,
|
|
147618
147362
|
VALID_WEB_URL: /^(http[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9=:?\/\.\-]+(\.[a-zA-Z]{2,5}[\.]{0,1})?/,
|
|
147619
|
-
VALID_WEBSOCKET_URL: /^(ws[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9=:?\/\.\-]+(\.[a-zA-Z]{2,5}[\.]{0,1})?/,
|
|
147620
|
-
VALID_RELATIVE_URL: /^(?!www\.|(?:http|ftp)s?:\/\/|[A-Za-z]:\\|\/\/).*/,
|
|
147621
147363
|
REPLACE_PATTERN: /\$\{([^\}]+)\}/g,
|
|
147622
|
-
ZIP_FILE: /\.zip$/i,
|
|
147623
|
-
EXE_FILE: /\.exe$/i,
|
|
147624
|
-
NO_QUOTES_ALLOWED: /^[^'|"]*$/,
|
|
147625
|
-
NO_DOUBLE_QUOTES_ALLOWED: /^[^"]*$/,
|
|
147626
|
-
VALID_HTML: /<[a-z][\s\S]*>/i,
|
|
147627
|
-
VALID_PASSWORD: /^[0-9a-zA-Z-_.@&*!#$%]+$/,
|
|
147628
|
-
SPECIAL_CHARACTERS: /[^A-Z0-9a-z_]+/i,
|
|
147629
|
-
APP_SERVER_URL_FORMAT: /^(http[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9\.\-]+([:]?[0-9]{2,5}|\.[a-zA-Z]{2,5}[\.]{0,1})\/+[^?#&=]+$/,
|
|
147630
|
-
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$)?/,
|
|
147631
147364
|
DATA_URL: /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i,
|
|
147632
147365
|
ISO_DATE_FORMAT: /(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2}:\d{2})(\.\d+)?([+-]\d{2}:?\d{2}|Z)$/
|
|
147633
147366
|
}, compareBySeparator$1 = ':';
|
|
@@ -150922,7 +150655,7 @@ let BrowserXhr$1 = class BrowserXhr {
|
|
|
150922
150655
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BrowserXhr, deps: [], target: FactoryTarget$2.Injectable }); }
|
|
150923
150656
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BrowserXhr }); }
|
|
150924
150657
|
};
|
|
150925
|
-
ɵɵngDeclareClassMetadata({
|
|
150658
|
+
ɵɵngDeclareClassMetadata({ type: BrowserXhr$1, decorators: [{
|
|
150926
150659
|
type: Injectable
|
|
150927
150660
|
}] });
|
|
150928
150661
|
|
|
@@ -150987,7 +150720,7 @@ let EventManager$1 = class EventManager {
|
|
|
150987
150720
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: EventManager, deps: [{ token: EVENT_MANAGER_PLUGINS$1 }, { token: NgZone }], target: FactoryTarget$2.Injectable }); }
|
|
150988
150721
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: EventManager }); }
|
|
150989
150722
|
};
|
|
150990
|
-
ɵɵngDeclareClassMetadata({
|
|
150723
|
+
ɵɵngDeclareClassMetadata({ type: EventManager$1, decorators: [{
|
|
150991
150724
|
type: Injectable
|
|
150992
150725
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
150993
150726
|
type: Inject,
|
|
@@ -151141,7 +150874,7 @@ let SharedStylesHost$1 = class SharedStylesHost {
|
|
|
151141
150874
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SharedStylesHost, deps: [{ token: DOCUMENT }, { token: APP_ID }, { token: CSP_NONCE, optional: true }, { token: PLATFORM_ID }], target: FactoryTarget$2.Injectable }); }
|
|
151142
150875
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SharedStylesHost }); }
|
|
151143
150876
|
};
|
|
151144
|
-
ɵɵngDeclareClassMetadata({
|
|
150877
|
+
ɵɵngDeclareClassMetadata({ type: SharedStylesHost$1, decorators: [{
|
|
151145
150878
|
type: Injectable
|
|
151146
150879
|
}], ctorParameters: () => [{ type: Document, decorators: [{
|
|
151147
150880
|
type: Inject,
|
|
@@ -151258,7 +150991,7 @@ let DomRendererFactory2$1 = class DomRendererFactory2 {
|
|
|
151258
150991
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DomRendererFactory2, deps: [{ token: EventManager$1 }, { token: SharedStylesHost$1 }, { token: APP_ID }, { token: REMOVE_STYLES_ON_COMPONENT_DESTROY$1 }, { token: DOCUMENT }, { token: PLATFORM_ID }, { token: NgZone }, { token: CSP_NONCE }], target: FactoryTarget$2.Injectable }); }
|
|
151259
150992
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DomRendererFactory2 }); }
|
|
151260
150993
|
};
|
|
151261
|
-
ɵɵngDeclareClassMetadata({
|
|
150994
|
+
ɵɵngDeclareClassMetadata({ type: DomRendererFactory2$1, decorators: [{
|
|
151262
150995
|
type: Injectable
|
|
151263
150996
|
}], ctorParameters: () => [{ type: EventManager$1 }, { type: SharedStylesHost$1 }, { type: undefined, decorators: [{
|
|
151264
150997
|
type: Inject,
|
|
@@ -151545,7 +151278,7 @@ let DomEventsPlugin$1 = class DomEventsPlugin extends EventManagerPlugin$1 {
|
|
|
151545
151278
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DomEventsPlugin, deps: [{ token: DOCUMENT }], target: FactoryTarget$2.Injectable }); }
|
|
151546
151279
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DomEventsPlugin }); }
|
|
151547
151280
|
};
|
|
151548
|
-
ɵɵngDeclareClassMetadata({
|
|
151281
|
+
ɵɵngDeclareClassMetadata({ type: DomEventsPlugin$1, decorators: [{
|
|
151549
151282
|
type: Injectable
|
|
151550
151283
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
151551
151284
|
type: Inject,
|
|
@@ -151717,7 +151450,7 @@ let KeyEventsPlugin$1 = class KeyEventsPlugin extends EventManagerPlugin$1 {
|
|
|
151717
151450
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: KeyEventsPlugin, deps: [{ token: DOCUMENT }], target: FactoryTarget$2.Injectable }); }
|
|
151718
151451
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: KeyEventsPlugin }); }
|
|
151719
151452
|
};
|
|
151720
|
-
ɵɵngDeclareClassMetadata({
|
|
151453
|
+
ɵɵngDeclareClassMetadata({ type: KeyEventsPlugin$1, decorators: [{
|
|
151721
151454
|
type: Injectable
|
|
151722
151455
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
151723
151456
|
type: Inject,
|
|
@@ -151825,7 +151558,7 @@ let BrowserModule$1 = class BrowserModule {
|
|
|
151825
151558
|
static { this.ɵmod = ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: BrowserModule, exports: [CommonModule, ApplicationModule] }); }
|
|
151826
151559
|
static { this.ɵinj = ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BrowserModule, providers: [...BROWSER_MODULE_PROVIDERS$1, ...TESTABILITY_PROVIDERS$1], imports: [CommonModule, ApplicationModule] }); }
|
|
151827
151560
|
};
|
|
151828
|
-
ɵɵngDeclareClassMetadata({
|
|
151561
|
+
ɵɵngDeclareClassMetadata({ type: BrowserModule$1, decorators: [{
|
|
151829
151562
|
type: NgModule,
|
|
151830
151563
|
args: [{
|
|
151831
151564
|
providers: [...BROWSER_MODULE_PROVIDERS$1, ...TESTABILITY_PROVIDERS$1],
|
|
@@ -151992,7 +151725,7 @@ let Meta$1 = class Meta {
|
|
|
151992
151725
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: Meta, deps: [{ token: DOCUMENT }], target: FactoryTarget$2.Injectable }); }
|
|
151993
151726
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: Meta, providedIn: 'root' }); }
|
|
151994
151727
|
};
|
|
151995
|
-
ɵɵngDeclareClassMetadata({
|
|
151728
|
+
ɵɵngDeclareClassMetadata({ type: Meta$1, decorators: [{
|
|
151996
151729
|
type: Injectable,
|
|
151997
151730
|
args: [{ providedIn: 'root' }]
|
|
151998
151731
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
@@ -152036,7 +151769,7 @@ let Title$1 = class Title {
|
|
|
152036
151769
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: Title, deps: [{ token: DOCUMENT }], target: FactoryTarget$2.Injectable }); }
|
|
152037
151770
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: Title, providedIn: 'root' }); }
|
|
152038
151771
|
};
|
|
152039
|
-
ɵɵngDeclareClassMetadata({
|
|
151772
|
+
ɵɵngDeclareClassMetadata({ type: Title$1, decorators: [{
|
|
152040
151773
|
type: Injectable,
|
|
152041
151774
|
args: [{ providedIn: 'root' }]
|
|
152042
151775
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
@@ -152150,7 +151883,7 @@ let HammerGestureConfig$1 = class HammerGestureConfig {
|
|
|
152150
151883
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HammerGestureConfig, deps: [], target: FactoryTarget$2.Injectable }); }
|
|
152151
151884
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HammerGestureConfig }); }
|
|
152152
151885
|
};
|
|
152153
|
-
ɵɵngDeclareClassMetadata({
|
|
151886
|
+
ɵɵngDeclareClassMetadata({ type: HammerGestureConfig$1, decorators: [{
|
|
152154
151887
|
type: Injectable
|
|
152155
151888
|
}] });
|
|
152156
151889
|
/**
|
|
@@ -152246,7 +151979,7 @@ let HammerGesturesPlugin$1 = class HammerGesturesPlugin extends EventManagerPlug
|
|
|
152246
151979
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HammerGesturesPlugin, deps: [{ token: DOCUMENT }, { token: HAMMER_GESTURE_CONFIG$1 }, { token: Console }, { token: HAMMER_LOADER$1, optional: true }], target: FactoryTarget$2.Injectable }); }
|
|
152247
151980
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HammerGesturesPlugin }); }
|
|
152248
151981
|
};
|
|
152249
|
-
ɵɵngDeclareClassMetadata({
|
|
151982
|
+
ɵɵngDeclareClassMetadata({ type: HammerGesturesPlugin$1, decorators: [{
|
|
152250
151983
|
type: Injectable
|
|
152251
151984
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
152252
151985
|
type: Inject,
|
|
@@ -152284,7 +152017,7 @@ let HammerModule$1 = class HammerModule {
|
|
|
152284
152017
|
{ provide: HAMMER_GESTURE_CONFIG$1, useClass: HammerGestureConfig$1, deps: [] },
|
|
152285
152018
|
] }); }
|
|
152286
152019
|
};
|
|
152287
|
-
ɵɵngDeclareClassMetadata({
|
|
152020
|
+
ɵɵngDeclareClassMetadata({ type: HammerModule$1, decorators: [{
|
|
152288
152021
|
type: NgModule,
|
|
152289
152022
|
args: [{
|
|
152290
152023
|
providers: [
|
|
@@ -152334,7 +152067,7 @@ let DomSanitizer$1 = class DomSanitizer {
|
|
|
152334
152067
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DomSanitizer, deps: [], target: FactoryTarget$2.Injectable }); }
|
|
152335
152068
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DomSanitizer, providedIn: 'root', useExisting: forwardRef(() => DomSanitizerImpl$1) }); }
|
|
152336
152069
|
};
|
|
152337
|
-
ɵɵngDeclareClassMetadata({
|
|
152070
|
+
ɵɵngDeclareClassMetadata({ type: DomSanitizer$1, decorators: [{
|
|
152338
152071
|
type: Injectable,
|
|
152339
152072
|
args: [{ providedIn: 'root', useExisting: forwardRef(() => DomSanitizerImpl$1) }]
|
|
152340
152073
|
}] });
|
|
@@ -152399,7 +152132,7 @@ let DomSanitizerImpl$1 = class DomSanitizerImpl extends DomSanitizer$1 {
|
|
|
152399
152132
|
static { this.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DomSanitizerImpl, deps: [{ token: DOCUMENT }], target: FactoryTarget$2.Injectable }); }
|
|
152400
152133
|
static { this.ɵprov = ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DomSanitizerImpl, providedIn: 'root' }); }
|
|
152401
152134
|
};
|
|
152402
|
-
ɵɵngDeclareClassMetadata({
|
|
152135
|
+
ɵɵngDeclareClassMetadata({ type: DomSanitizerImpl$1, decorators: [{
|
|
152403
152136
|
type: Injectable,
|
|
152404
152137
|
args: [{ providedIn: 'root' }]
|
|
152405
152138
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
@@ -180317,7 +180050,6 @@ class CompilerFacadeImpl {
|
|
|
180317
180050
|
name: facade.name,
|
|
180318
180051
|
type: wrapReference(facade.type),
|
|
180319
180052
|
typeArgumentCount: 0,
|
|
180320
|
-
deps: null,
|
|
180321
180053
|
pipeName: facade.pipeName,
|
|
180322
180054
|
pure: facade.pure,
|
|
180323
180055
|
isStandalone: facade.isStandalone,
|
|
@@ -198146,10 +197878,10 @@ var zipWith = baseRest(function(arrays) {
|
|
|
198146
197878
|
var array = {
|
|
198147
197879
|
chunk, compact, concat, difference, differenceBy,
|
|
198148
197880
|
differenceWith, drop, dropRight, dropRightWhile, dropWhile,
|
|
198149
|
-
fill, findIndex, findLastIndex,
|
|
197881
|
+
fill, findIndex, findLastIndex, flatten,
|
|
198150
197882
|
flattenDeep, flattenDepth, fromPairs, head, indexOf,
|
|
198151
197883
|
initial, intersection, intersectionBy, intersectionWith, join,
|
|
198152
|
-
|
|
197884
|
+
lastIndexOf, nth, pull, pullAll,
|
|
198153
197885
|
pullAllBy, pullAllWith, pullAt, remove, reverse,
|
|
198154
197886
|
slice, sortedIndex, sortedIndexBy, sortedIndexOf, sortedLastIndex,
|
|
198155
197887
|
sortedLastIndexBy, sortedLastIndexOf, sortedUniq, sortedUniqBy, tail,
|
|
@@ -198160,7 +197892,7 @@ var array = {
|
|
|
198160
197892
|
};
|
|
198161
197893
|
|
|
198162
197894
|
var collection = {
|
|
198163
|
-
countBy,
|
|
197895
|
+
countBy, every, filter,
|
|
198164
197896
|
find, findLast, flatMap, flatMapDeep, flatMapDepth,
|
|
198165
197897
|
forEach, forEachRight, groupBy, includes, invokeMap,
|
|
198166
197898
|
keyBy, map, orderBy, partition, reduce,
|
|
@@ -198175,7 +197907,7 @@ var date = {
|
|
|
198175
197907
|
var func = {
|
|
198176
197908
|
after, ary, before, bind, bindKey,
|
|
198177
197909
|
curry, curryRight, debounce, defer: defer$1, delay,
|
|
198178
|
-
flip, memoize,
|
|
197910
|
+
flip, memoize, once, overArgs,
|
|
198179
197911
|
partial, partialRight, rearg, rest, spread,
|
|
198180
197912
|
throttle, unary, wrap
|
|
198181
197913
|
};
|
|
@@ -198183,15 +197915,14 @@ var func = {
|
|
|
198183
197915
|
var lang = {
|
|
198184
197916
|
castArray, clone, cloneDeep, cloneDeepWith, cloneWith,
|
|
198185
197917
|
conformsTo, eq, gt, gte, isArguments,
|
|
198186
|
-
|
|
197918
|
+
isArrayBuffer: isArrayBuffer$1, isArrayLike, isArrayLikeObject, isBoolean,
|
|
198187
197919
|
isBuffer, isDate, isElement, isEmpty, isEqual,
|
|
198188
197920
|
isEqualWith, isError, isFinite: isFinite$1, isFunction, isInteger,
|
|
198189
197921
|
isLength, isMap, isMatch, isMatchWith, isNaN: isNaN$1,
|
|
198190
|
-
isNative, isNil, isNull, isNumber,
|
|
198191
|
-
isObjectLike, isPlainObject, isRegExp, isSafeInteger, isSet,
|
|
197922
|
+
isNative, isNil, isNull, isNumber, isObjectLike, isPlainObject, isRegExp, isSafeInteger, isSet,
|
|
198192
197923
|
isString, isSymbol, isTypedArray, isUndefined, isWeakMap,
|
|
198193
197924
|
isWeakSet, lt, lte, toArray, toFinite,
|
|
198194
|
-
|
|
197925
|
+
toLength, toNumber, toPlainObject, toSafeInteger,
|
|
198195
197926
|
toString
|
|
198196
197927
|
};
|
|
198197
197928
|
|
|
@@ -198207,11 +197938,10 @@ var number = {
|
|
|
198207
197938
|
|
|
198208
197939
|
var object = {
|
|
198209
197940
|
assign, assignIn, assignInWith, assignWith, at,
|
|
198210
|
-
create, defaults, defaultsDeep,
|
|
198211
|
-
extend: assignIn, extendWith: assignInWith, findKey, findLastKey, forIn,
|
|
197941
|
+
create, defaults, defaultsDeep, findKey, findLastKey, forIn,
|
|
198212
197942
|
forInRight, forOwn, forOwnRight, functions, functionsIn,
|
|
198213
197943
|
get, has, hasIn, invert, invertBy,
|
|
198214
|
-
invoke,
|
|
197944
|
+
invoke, keysIn, mapKeys, mapValues,
|
|
198215
197945
|
merge, mergeWith, omit, omitBy, pick,
|
|
198216
197946
|
pickBy, result, set, setWith, toPairs,
|
|
198217
197947
|
toPairsIn, transform, unset, update, updateWith,
|
|
@@ -198219,9 +197949,9 @@ var object = {
|
|
|
198219
197949
|
};
|
|
198220
197950
|
|
|
198221
197951
|
var seq = {
|
|
198222
|
-
at: wrapperAt, chain, commit: wrapperCommit,
|
|
198223
|
-
plant: wrapperPlant, reverse: wrapperReverse, tap,
|
|
198224
|
-
|
|
197952
|
+
at: wrapperAt, chain, commit: wrapperCommit, next: wrapperNext,
|
|
197953
|
+
plant: wrapperPlant, reverse: wrapperReverse, tap, toIterator: wrapperToIterator,
|
|
197954
|
+
value: wrapperValue, wrapperChain
|
|
198225
197955
|
};
|
|
198226
197956
|
|
|
198227
197957
|
var string = {
|
|
@@ -198236,9 +197966,8 @@ var string = {
|
|
|
198236
197966
|
|
|
198237
197967
|
var util = {
|
|
198238
197968
|
attempt, bindAll, cond, conforms, constant,
|
|
198239
|
-
defaultTo, flow, flowRight,
|
|
198240
|
-
matches, matchesProperty, method, methodOf,
|
|
198241
|
-
noop: noop$3, nthArg, over, overEvery, overSome,
|
|
197969
|
+
defaultTo, flow, flowRight, iteratee,
|
|
197970
|
+
matches, matchesProperty, method, methodOf, noop: noop$3, nthArg, over, overEvery, overSome,
|
|
198242
197971
|
property, propertyOf, range, rangeRight, stubArray,
|
|
198243
197972
|
stubFalse, stubObject, stubString, stubTrue, times,
|
|
198244
197973
|
toPath, uniqueId
|
|
@@ -200427,7 +200156,7 @@ class HttpClient {
|
|
|
200427
200156
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: HttpClient, deps: [{ token: HttpHandler }], target: FactoryTarget$4.Injectable }); }
|
|
200428
200157
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: HttpClient }); }
|
|
200429
200158
|
}
|
|
200430
|
-
ɵɵngDeclareClassMetadata$1({
|
|
200159
|
+
ɵɵngDeclareClassMetadata$1({ type: HttpClient, decorators: [{
|
|
200431
200160
|
type: Injectable$1
|
|
200432
200161
|
}], ctorParameters: () => [{ type: HttpHandler }] });
|
|
200433
200162
|
|
|
@@ -200643,7 +200372,7 @@ class FetchBackend {
|
|
|
200643
200372
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: FetchBackend, deps: [], target: FactoryTarget$4.Injectable }); }
|
|
200644
200373
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: FetchBackend }); }
|
|
200645
200374
|
}
|
|
200646
|
-
ɵɵngDeclareClassMetadata$1({
|
|
200375
|
+
ɵɵngDeclareClassMetadata$1({ type: FetchBackend, decorators: [{
|
|
200647
200376
|
type: Injectable$1
|
|
200648
200377
|
}] });
|
|
200649
200378
|
/**
|
|
@@ -200776,7 +200505,7 @@ class HttpInterceptorHandler extends HttpHandler {
|
|
|
200776
200505
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: HttpInterceptorHandler, deps: [{ token: HttpBackend }, { token: EnvironmentInjector$1 }], target: FactoryTarget$4.Injectable }); }
|
|
200777
200506
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: HttpInterceptorHandler }); }
|
|
200778
200507
|
}
|
|
200779
|
-
ɵɵngDeclareClassMetadata$1({
|
|
200508
|
+
ɵɵngDeclareClassMetadata$1({ type: HttpInterceptorHandler, decorators: [{
|
|
200780
200509
|
type: Injectable$1
|
|
200781
200510
|
}], ctorParameters: () => [{ type: HttpBackend }, { type: EnvironmentInjector$1 }] });
|
|
200782
200511
|
|
|
@@ -200979,7 +200708,7 @@ class JsonpClientBackend {
|
|
|
200979
200708
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: JsonpClientBackend, deps: [{ token: JsonpCallbackContext }, { token: DOCUMENT$2 }], target: FactoryTarget$4.Injectable }); }
|
|
200980
200709
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: JsonpClientBackend }); }
|
|
200981
200710
|
}
|
|
200982
|
-
ɵɵngDeclareClassMetadata$1({
|
|
200711
|
+
ɵɵngDeclareClassMetadata$1({ type: JsonpClientBackend, decorators: [{
|
|
200983
200712
|
type: Injectable$1
|
|
200984
200713
|
}], ctorParameters: () => [{ type: JsonpCallbackContext }, { type: undefined, decorators: [{
|
|
200985
200714
|
type: Inject$1,
|
|
@@ -201020,7 +200749,7 @@ class JsonpInterceptor {
|
|
|
201020
200749
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: JsonpInterceptor, deps: [{ token: EnvironmentInjector$1 }], target: FactoryTarget$4.Injectable }); }
|
|
201021
200750
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: JsonpInterceptor }); }
|
|
201022
200751
|
}
|
|
201023
|
-
ɵɵngDeclareClassMetadata$1({
|
|
200752
|
+
ɵɵngDeclareClassMetadata$1({ type: JsonpInterceptor, decorators: [{
|
|
201024
200753
|
type: Injectable$1
|
|
201025
200754
|
}], ctorParameters: () => [{ type: EnvironmentInjector$1 }] });
|
|
201026
200755
|
|
|
@@ -201303,7 +201032,7 @@ class HttpXhrBackend {
|
|
|
201303
201032
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: HttpXhrBackend, deps: [{ token: XhrFactory$1 }], target: FactoryTarget$4.Injectable }); }
|
|
201304
201033
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: HttpXhrBackend }); }
|
|
201305
201034
|
}
|
|
201306
|
-
ɵɵngDeclareClassMetadata$1({
|
|
201035
|
+
ɵɵngDeclareClassMetadata$1({ type: HttpXhrBackend, decorators: [{
|
|
201307
201036
|
type: Injectable$1
|
|
201308
201037
|
}], ctorParameters: () => [{ type: XhrFactory$1 }] });
|
|
201309
201038
|
|
|
@@ -201355,7 +201084,7 @@ class HttpXsrfCookieExtractor {
|
|
|
201355
201084
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: HttpXsrfCookieExtractor, deps: [{ token: DOCUMENT$2 }, { token: PLATFORM_ID$1 }, { token: XSRF_COOKIE_NAME }], target: FactoryTarget$4.Injectable }); }
|
|
201356
201085
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: HttpXsrfCookieExtractor }); }
|
|
201357
201086
|
}
|
|
201358
|
-
ɵɵngDeclareClassMetadata$1({
|
|
201087
|
+
ɵɵngDeclareClassMetadata$1({ type: HttpXsrfCookieExtractor, decorators: [{
|
|
201359
201088
|
type: Injectable$1
|
|
201360
201089
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
201361
201090
|
type: Inject$1,
|
|
@@ -201401,7 +201130,7 @@ class HttpXsrfInterceptor {
|
|
|
201401
201130
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: HttpXsrfInterceptor, deps: [{ token: EnvironmentInjector$1 }], target: FactoryTarget$4.Injectable }); }
|
|
201402
201131
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: HttpXsrfInterceptor }); }
|
|
201403
201132
|
}
|
|
201404
|
-
ɵɵngDeclareClassMetadata$1({
|
|
201133
|
+
ɵɵngDeclareClassMetadata$1({ type: HttpXsrfInterceptor, decorators: [{
|
|
201405
201134
|
type: Injectable$1
|
|
201406
201135
|
}], ctorParameters: () => [{ type: EnvironmentInjector$1 }] });
|
|
201407
201136
|
|
|
@@ -201615,7 +201344,7 @@ class HttpClientXsrfModule {
|
|
|
201615
201344
|
{ provide: XSRF_ENABLED, useValue: true },
|
|
201616
201345
|
] }); }
|
|
201617
201346
|
}
|
|
201618
|
-
ɵɵngDeclareClassMetadata$1({
|
|
201347
|
+
ɵɵngDeclareClassMetadata$1({ type: HttpClientXsrfModule, decorators: [{
|
|
201619
201348
|
type: NgModule$1,
|
|
201620
201349
|
args: [{
|
|
201621
201350
|
providers: [
|
|
@@ -201645,7 +201374,7 @@ class HttpClientModule {
|
|
|
201645
201374
|
static { this.ɵmod = ɵɵngDeclareNgModule$1({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0$1, type: HttpClientModule }); }
|
|
201646
201375
|
static { this.ɵinj = ɵɵngDeclareInjector$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: HttpClientModule, providers: [provideHttpClient(withInterceptorsFromDi())] }); }
|
|
201647
201376
|
}
|
|
201648
|
-
ɵɵngDeclareClassMetadata$1({
|
|
201377
|
+
ɵɵngDeclareClassMetadata$1({ type: HttpClientModule, decorators: [{
|
|
201649
201378
|
type: NgModule$1,
|
|
201650
201379
|
args: [{
|
|
201651
201380
|
/**
|
|
@@ -201669,7 +201398,7 @@ class HttpClientJsonpModule {
|
|
|
201669
201398
|
static { this.ɵmod = ɵɵngDeclareNgModule$1({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0$1, type: HttpClientJsonpModule }); }
|
|
201670
201399
|
static { this.ɵinj = ɵɵngDeclareInjector$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: HttpClientJsonpModule, providers: [withJsonpSupport().ɵproviders] }); }
|
|
201671
201400
|
}
|
|
201672
|
-
ɵɵngDeclareClassMetadata$1({
|
|
201401
|
+
ɵɵngDeclareClassMetadata$1({ type: HttpClientJsonpModule, decorators: [{
|
|
201673
201402
|
type: NgModule$1,
|
|
201674
201403
|
args: [{
|
|
201675
201404
|
providers: [withJsonpSupport().ɵproviders],
|
|
@@ -202450,28 +202179,11 @@ const REGEX = {
|
|
|
202450
202179
|
IPAD: /iPad/i,
|
|
202451
202180
|
MAC: /Mac/i,
|
|
202452
202181
|
ANDROID_TABLET: /android|android 3.0|xoom|sch-i800|playbook|tablet|kindle/i,
|
|
202453
|
-
MOBILE: /Mobile/i,
|
|
202454
|
-
WINDOWS: /Windows Phone/i,
|
|
202455
202182
|
SUPPORTED_IMAGE_FORMAT: /\.(bmp|gif|jpe|jpg|jpeg|tif|tiff|pbm|png|ico)$/i,
|
|
202456
|
-
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,
|
|
202457
202183
|
SUPPORTED_AUDIO_FORMAT: /\.(mp3|ogg|webm|wma|3gp|wav|m4a)$/i,
|
|
202458
202184
|
SUPPORTED_VIDEO_FORMAT: /\.(mp4|ogg|webm|wmv|mpeg|mpg|avi|mov)$/i,
|
|
202459
|
-
PAGE_RESOURCE_PATH: /^\/pages\/.*\.(js|css|html|json)$/,
|
|
202460
|
-
MIN_PAGE_RESOURCE_PATH: /.*(page.min.html)$/,
|
|
202461
|
-
VALID_EMAIL: /^[a-zA-Z][\w.+]+@[a-zA-Z_]+?\.[a-zA-Z.]{1,4}[a-zA-Z]$/,
|
|
202462
202185
|
VALID_WEB_URL: /^(http[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9=:?\/\.\-]+(\.[a-zA-Z]{2,5}[\.]{0,1})?/,
|
|
202463
|
-
VALID_WEBSOCKET_URL: /^(ws[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9=:?\/\.\-]+(\.[a-zA-Z]{2,5}[\.]{0,1})?/,
|
|
202464
|
-
VALID_RELATIVE_URL: /^(?!www\.|(?:http|ftp)s?:\/\/|[A-Za-z]:\\|\/\/).*/,
|
|
202465
202186
|
REPLACE_PATTERN: /\$\{([^\}]+)\}/g,
|
|
202466
|
-
ZIP_FILE: /\.zip$/i,
|
|
202467
|
-
EXE_FILE: /\.exe$/i,
|
|
202468
|
-
NO_QUOTES_ALLOWED: /^[^'|"]*$/,
|
|
202469
|
-
NO_DOUBLE_QUOTES_ALLOWED: /^[^"]*$/,
|
|
202470
|
-
VALID_HTML: /<[a-z][\s\S]*>/i,
|
|
202471
|
-
VALID_PASSWORD: /^[0-9a-zA-Z-_.@&*!#$%]+$/,
|
|
202472
|
-
SPECIAL_CHARACTERS: /[^A-Z0-9a-z_]+/i,
|
|
202473
|
-
APP_SERVER_URL_FORMAT: /^(http[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9\.\-]+([:]?[0-9]{2,5}|\.[a-zA-Z]{2,5}[\.]{0,1})\/+[^?#&=]+$/,
|
|
202474
|
-
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$)?/,
|
|
202475
202187
|
DATA_URL: /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i,
|
|
202476
202188
|
ISO_DATE_FORMAT: /(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2}:\d{2})(\.\d+)?([+-]\d{2}:?\d{2}|Z)$/
|
|
202477
202189
|
}, compareBySeparator = ':';
|
|
@@ -205317,7 +205029,7 @@ class BrowserXhr {
|
|
|
205317
205029
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: BrowserXhr, deps: [], target: FactoryTarget$4.Injectable }); }
|
|
205318
205030
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: BrowserXhr }); }
|
|
205319
205031
|
}
|
|
205320
|
-
ɵɵngDeclareClassMetadata$1({
|
|
205032
|
+
ɵɵngDeclareClassMetadata$1({ type: BrowserXhr, decorators: [{
|
|
205321
205033
|
type: Injectable$1
|
|
205322
205034
|
}] });
|
|
205323
205035
|
|
|
@@ -205382,7 +205094,7 @@ class EventManager {
|
|
|
205382
205094
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: EventManager, deps: [{ token: EVENT_MANAGER_PLUGINS }, { token: NgZone$1 }], target: FactoryTarget$4.Injectable }); }
|
|
205383
205095
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: EventManager }); }
|
|
205384
205096
|
}
|
|
205385
|
-
ɵɵngDeclareClassMetadata$1({
|
|
205097
|
+
ɵɵngDeclareClassMetadata$1({ type: EventManager, decorators: [{
|
|
205386
205098
|
type: Injectable$1
|
|
205387
205099
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
205388
205100
|
type: Inject$1,
|
|
@@ -205536,7 +205248,7 @@ class SharedStylesHost {
|
|
|
205536
205248
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: SharedStylesHost, deps: [{ token: DOCUMENT$2 }, { token: APP_ID$1 }, { token: CSP_NONCE$1, optional: true }, { token: PLATFORM_ID$1 }], target: FactoryTarget$4.Injectable }); }
|
|
205537
205249
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: SharedStylesHost }); }
|
|
205538
205250
|
}
|
|
205539
|
-
ɵɵngDeclareClassMetadata$1({
|
|
205251
|
+
ɵɵngDeclareClassMetadata$1({ type: SharedStylesHost, decorators: [{
|
|
205540
205252
|
type: Injectable$1
|
|
205541
205253
|
}], ctorParameters: () => [{ type: Document, decorators: [{
|
|
205542
205254
|
type: Inject$1,
|
|
@@ -205653,7 +205365,7 @@ class DomRendererFactory2 {
|
|
|
205653
205365
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: DomRendererFactory2, deps: [{ token: EventManager }, { token: SharedStylesHost }, { token: APP_ID$1 }, { token: REMOVE_STYLES_ON_COMPONENT_DESTROY }, { token: DOCUMENT$2 }, { token: PLATFORM_ID$1 }, { token: NgZone$1 }, { token: CSP_NONCE$1 }], target: FactoryTarget$4.Injectable }); }
|
|
205654
205366
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: DomRendererFactory2 }); }
|
|
205655
205367
|
}
|
|
205656
|
-
ɵɵngDeclareClassMetadata$1({
|
|
205368
|
+
ɵɵngDeclareClassMetadata$1({ type: DomRendererFactory2, decorators: [{
|
|
205657
205369
|
type: Injectable$1
|
|
205658
205370
|
}], ctorParameters: () => [{ type: EventManager }, { type: SharedStylesHost }, { type: undefined, decorators: [{
|
|
205659
205371
|
type: Inject$1,
|
|
@@ -205940,7 +205652,7 @@ class DomEventsPlugin extends EventManagerPlugin {
|
|
|
205940
205652
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: DomEventsPlugin, deps: [{ token: DOCUMENT$2 }], target: FactoryTarget$4.Injectable }); }
|
|
205941
205653
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: DomEventsPlugin }); }
|
|
205942
205654
|
}
|
|
205943
|
-
ɵɵngDeclareClassMetadata$1({
|
|
205655
|
+
ɵɵngDeclareClassMetadata$1({ type: DomEventsPlugin, decorators: [{
|
|
205944
205656
|
type: Injectable$1
|
|
205945
205657
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
205946
205658
|
type: Inject$1,
|
|
@@ -206112,7 +205824,7 @@ class KeyEventsPlugin extends EventManagerPlugin {
|
|
|
206112
205824
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: KeyEventsPlugin, deps: [{ token: DOCUMENT$2 }], target: FactoryTarget$4.Injectable }); }
|
|
206113
205825
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: KeyEventsPlugin }); }
|
|
206114
205826
|
}
|
|
206115
|
-
ɵɵngDeclareClassMetadata$1({
|
|
205827
|
+
ɵɵngDeclareClassMetadata$1({ type: KeyEventsPlugin, decorators: [{
|
|
206116
205828
|
type: Injectable$1
|
|
206117
205829
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
206118
205830
|
type: Inject$1,
|
|
@@ -206220,7 +205932,7 @@ class BrowserModule {
|
|
|
206220
205932
|
static { this.ɵmod = ɵɵngDeclareNgModule$1({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0$1, type: BrowserModule, exports: [CommonModule$1, ApplicationModule$1] }); }
|
|
206221
205933
|
static { this.ɵinj = ɵɵngDeclareInjector$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: BrowserModule, providers: [...BROWSER_MODULE_PROVIDERS, ...TESTABILITY_PROVIDERS], imports: [CommonModule$1, ApplicationModule$1] }); }
|
|
206222
205934
|
}
|
|
206223
|
-
ɵɵngDeclareClassMetadata$1({
|
|
205935
|
+
ɵɵngDeclareClassMetadata$1({ type: BrowserModule, decorators: [{
|
|
206224
205936
|
type: NgModule$1,
|
|
206225
205937
|
args: [{
|
|
206226
205938
|
providers: [...BROWSER_MODULE_PROVIDERS, ...TESTABILITY_PROVIDERS],
|
|
@@ -206387,7 +206099,7 @@ class Meta {
|
|
|
206387
206099
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: Meta, deps: [{ token: DOCUMENT$2 }], target: FactoryTarget$4.Injectable }); }
|
|
206388
206100
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: Meta, providedIn: 'root' }); }
|
|
206389
206101
|
}
|
|
206390
|
-
ɵɵngDeclareClassMetadata$1({
|
|
206102
|
+
ɵɵngDeclareClassMetadata$1({ type: Meta, decorators: [{
|
|
206391
206103
|
type: Injectable$1,
|
|
206392
206104
|
args: [{ providedIn: 'root' }]
|
|
206393
206105
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
@@ -206431,7 +206143,7 @@ class Title {
|
|
|
206431
206143
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: Title, deps: [{ token: DOCUMENT$2 }], target: FactoryTarget$4.Injectable }); }
|
|
206432
206144
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: Title, providedIn: 'root' }); }
|
|
206433
206145
|
}
|
|
206434
|
-
ɵɵngDeclareClassMetadata$1({
|
|
206146
|
+
ɵɵngDeclareClassMetadata$1({ type: Title, decorators: [{
|
|
206435
206147
|
type: Injectable$1,
|
|
206436
206148
|
args: [{ providedIn: 'root' }]
|
|
206437
206149
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
@@ -206545,7 +206257,7 @@ class HammerGestureConfig {
|
|
|
206545
206257
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: HammerGestureConfig, deps: [], target: FactoryTarget$4.Injectable }); }
|
|
206546
206258
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: HammerGestureConfig }); }
|
|
206547
206259
|
}
|
|
206548
|
-
ɵɵngDeclareClassMetadata$1({
|
|
206260
|
+
ɵɵngDeclareClassMetadata$1({ type: HammerGestureConfig, decorators: [{
|
|
206549
206261
|
type: Injectable$1
|
|
206550
206262
|
}] });
|
|
206551
206263
|
/**
|
|
@@ -206641,7 +206353,7 @@ class HammerGesturesPlugin extends EventManagerPlugin {
|
|
|
206641
206353
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: HammerGesturesPlugin, deps: [{ token: DOCUMENT$2 }, { token: HAMMER_GESTURE_CONFIG }, { token: Console$1 }, { token: HAMMER_LOADER, optional: true }], target: FactoryTarget$4.Injectable }); }
|
|
206642
206354
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: HammerGesturesPlugin }); }
|
|
206643
206355
|
}
|
|
206644
|
-
ɵɵngDeclareClassMetadata$1({
|
|
206356
|
+
ɵɵngDeclareClassMetadata$1({ type: HammerGesturesPlugin, decorators: [{
|
|
206645
206357
|
type: Injectable$1
|
|
206646
206358
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
206647
206359
|
type: Inject$1,
|
|
@@ -206679,7 +206391,7 @@ class HammerModule {
|
|
|
206679
206391
|
{ provide: HAMMER_GESTURE_CONFIG, useClass: HammerGestureConfig, deps: [] },
|
|
206680
206392
|
] }); }
|
|
206681
206393
|
}
|
|
206682
|
-
ɵɵngDeclareClassMetadata$1({
|
|
206394
|
+
ɵɵngDeclareClassMetadata$1({ type: HammerModule, decorators: [{
|
|
206683
206395
|
type: NgModule$1,
|
|
206684
206396
|
args: [{
|
|
206685
206397
|
providers: [
|
|
@@ -206729,7 +206441,7 @@ class DomSanitizer {
|
|
|
206729
206441
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: DomSanitizer, deps: [], target: FactoryTarget$4.Injectable }); }
|
|
206730
206442
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: DomSanitizer, providedIn: 'root', useExisting: forwardRef$1(() => DomSanitizerImpl) }); }
|
|
206731
206443
|
}
|
|
206732
|
-
ɵɵngDeclareClassMetadata$1({
|
|
206444
|
+
ɵɵngDeclareClassMetadata$1({ type: DomSanitizer, decorators: [{
|
|
206733
206445
|
type: Injectable$1,
|
|
206734
206446
|
args: [{ providedIn: 'root', useExisting: forwardRef$1(() => DomSanitizerImpl) }]
|
|
206735
206447
|
}] });
|
|
@@ -206794,7 +206506,7 @@ class DomSanitizerImpl extends DomSanitizer {
|
|
|
206794
206506
|
static { this.ɵfac = ɵɵngDeclareFactory$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: DomSanitizerImpl, deps: [{ token: DOCUMENT$2 }], target: FactoryTarget$4.Injectable }); }
|
|
206795
206507
|
static { this.ɵprov = ɵɵngDeclareInjectable$1({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0$1, type: DomSanitizerImpl, providedIn: 'root' }); }
|
|
206796
206508
|
}
|
|
206797
|
-
ɵɵngDeclareClassMetadata$1({
|
|
206509
|
+
ɵɵngDeclareClassMetadata$1({ type: DomSanitizerImpl, decorators: [{
|
|
206798
206510
|
type: Injectable$1,
|
|
206799
206511
|
args: [{ providedIn: 'root' }]
|
|
206800
206512
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|