@arsedizioni/ars-utils 20.3.53 → 20.3.54
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/clipper.ui/index.d.ts +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +10 -10
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +39 -39
- package/fesm2022/arsedizioni-ars-utils-core.mjs +111 -121
- package/fesm2022/arsedizioni-ars-utils-core.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-evolution.common.mjs +10 -10
- package/fesm2022/arsedizioni-ars-utils-help.mjs +13 -13
- package/fesm2022/arsedizioni-ars-utils-support.common.mjs +10 -10
- package/fesm2022/arsedizioni-ars-utils-support.ui.mjs +6 -6
- package/fesm2022/arsedizioni-ars-utils-tinymce.mjs +7 -7
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +61 -61
- package/fesm2022/arsedizioni-ars-utils-ui.mjs +40 -40
- package/fesm2022/arsedizioni-ars-utils-ui.oauth.mjs +7 -7
- package/package.json +13 -13
- package/ui.application/index.d.ts +1 -1
|
@@ -20,10 +20,10 @@ class AutoFocusDirective {
|
|
|
20
20
|
this.elementRef.nativeElement.focus();
|
|
21
21
|
}, 500);
|
|
22
22
|
}
|
|
23
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
24
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
23
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: AutoFocusDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
24
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.2", type: AutoFocusDirective, isStandalone: true, selector: "[autoFocus]", ngImport: i0 }); }
|
|
25
25
|
}
|
|
26
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
26
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: AutoFocusDirective, decorators: [{
|
|
27
27
|
type: Directive,
|
|
28
28
|
args: [{
|
|
29
29
|
selector: "[autoFocus]",
|
|
@@ -76,18 +76,8 @@ class DateInterval {
|
|
|
76
76
|
return undefined;
|
|
77
77
|
}
|
|
78
78
|
constructor(from, to) {
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
}
|
|
82
|
-
else {
|
|
83
|
-
this.from = new Date(from);
|
|
84
|
-
}
|
|
85
|
-
if (to instanceof Date) {
|
|
86
|
-
this.to = to;
|
|
87
|
-
}
|
|
88
|
-
else {
|
|
89
|
-
this.to = new Date(to);
|
|
90
|
-
}
|
|
79
|
+
this.from = from;
|
|
80
|
+
this.to = to;
|
|
91
81
|
}
|
|
92
82
|
/**
|
|
93
83
|
* Clear interval
|
|
@@ -1106,10 +1096,10 @@ class DateIntervalChangeDirective {
|
|
|
1106
1096
|
}
|
|
1107
1097
|
this.subject.next(event);
|
|
1108
1098
|
}
|
|
1109
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1110
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.
|
|
1099
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: DateIntervalChangeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1100
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.2", type: DateIntervalChangeDirective, isStandalone: true, selector: "[dateIntervalChange]", inputs: { dateIntervalChange: { classPropertyName: "dateIntervalChange", publicName: "dateIntervalChange", isSignal: true, isRequired: false, transformFunction: null }, end: { classPropertyName: "end", publicName: "end", isSignal: true, isRequired: false, transformFunction: null } }, host: { listeners: { "keyup": "onKeyup($event)" } }, ngImport: i0 }); }
|
|
1111
1101
|
}
|
|
1112
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1102
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: DateIntervalChangeDirective, decorators: [{
|
|
1113
1103
|
type: Directive,
|
|
1114
1104
|
args: [{
|
|
1115
1105
|
selector: '[dateIntervalChange]',
|
|
@@ -1142,11 +1132,11 @@ class CopyClipboardDirective {
|
|
|
1142
1132
|
document.removeEventListener('copy', listener, false);
|
|
1143
1133
|
}
|
|
1144
1134
|
}
|
|
1145
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1146
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.
|
|
1147
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
1135
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: CopyClipboardDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1136
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.2", type: CopyClipboardDirective, isStandalone: true, selector: "[copyClipboard]", inputs: { payload: { classPropertyName: "payload", publicName: "copyClipboard", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { copied: "copied" }, host: { listeners: { "click": "onClick($event)" } }, ngImport: i0 }); }
|
|
1137
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: CopyClipboardDirective }); }
|
|
1148
1138
|
}
|
|
1149
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1139
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: CopyClipboardDirective, decorators: [{
|
|
1150
1140
|
type: Injectable
|
|
1151
1141
|
}, {
|
|
1152
1142
|
type: Directive,
|
|
@@ -1166,10 +1156,10 @@ class ValidatorDirective {
|
|
|
1166
1156
|
validate(control) {
|
|
1167
1157
|
return this.validator()(control);
|
|
1168
1158
|
}
|
|
1169
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1170
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.
|
|
1159
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: ValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1160
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.2", type: ValidatorDirective, isStandalone: true, selector: "[validator]", inputs: { validator: { classPropertyName: "validator", publicName: "validator", isSignal: true, isRequired: false, transformFunction: null } }, providers: [{ provide: NG_VALIDATORS, useExisting: ValidatorDirective, multi: true }], ngImport: i0 }); }
|
|
1171
1161
|
}
|
|
1172
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1162
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: ValidatorDirective, decorators: [{
|
|
1173
1163
|
type: Directive,
|
|
1174
1164
|
args: [{
|
|
1175
1165
|
selector: '[validator]',
|
|
@@ -1199,8 +1189,8 @@ class ValidIfDirective {
|
|
|
1199
1189
|
return { validIf: "Non valido." };
|
|
1200
1190
|
}
|
|
1201
1191
|
}
|
|
1202
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1203
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.
|
|
1192
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: ValidIfDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1193
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.2", type: ValidIfDirective, isStandalone: true, selector: "[validIf]", inputs: { validIf: { classPropertyName: "validIf", publicName: "validIf", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
|
|
1204
1194
|
{
|
|
1205
1195
|
provide: NG_VALIDATORS,
|
|
1206
1196
|
useExisting: forwardRef(() => ValidIfDirective),
|
|
@@ -1208,7 +1198,7 @@ class ValidIfDirective {
|
|
|
1208
1198
|
},
|
|
1209
1199
|
], ngImport: i0 }); }
|
|
1210
1200
|
}
|
|
1211
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1201
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: ValidIfDirective, decorators: [{
|
|
1212
1202
|
type: Directive,
|
|
1213
1203
|
args: [{
|
|
1214
1204
|
selector: "[validIf]",
|
|
@@ -1235,8 +1225,8 @@ class EqualsValidatorDirective {
|
|
|
1235
1225
|
return { equals: "Non valido." };
|
|
1236
1226
|
}
|
|
1237
1227
|
}
|
|
1238
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1239
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.
|
|
1228
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: EqualsValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1229
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.2", type: EqualsValidatorDirective, isStandalone: true, selector: "[equals]", inputs: { equals: { classPropertyName: "equals", publicName: "equals", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
|
|
1240
1230
|
{
|
|
1241
1231
|
provide: NG_VALIDATORS,
|
|
1242
1232
|
useExisting: forwardRef(() => EqualsValidatorDirective),
|
|
@@ -1244,7 +1234,7 @@ class EqualsValidatorDirective {
|
|
|
1244
1234
|
},
|
|
1245
1235
|
], ngImport: i0 }); }
|
|
1246
1236
|
}
|
|
1247
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1237
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: EqualsValidatorDirective, decorators: [{
|
|
1248
1238
|
type: Directive,
|
|
1249
1239
|
args: [{
|
|
1250
1240
|
selector: "[equals]",
|
|
@@ -1279,8 +1269,8 @@ class NotEqualValidatorDirective {
|
|
|
1279
1269
|
}
|
|
1280
1270
|
return errors;
|
|
1281
1271
|
}
|
|
1282
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1283
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.
|
|
1272
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: NotEqualValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1273
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.2", type: NotEqualValidatorDirective, isStandalone: true, selector: "[notEqual]", inputs: { notEqual: { classPropertyName: "notEqual", publicName: "notEqual", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
|
|
1284
1274
|
{
|
|
1285
1275
|
provide: NG_VALIDATORS,
|
|
1286
1276
|
useExisting: forwardRef(() => NotEqualValidatorDirective),
|
|
@@ -1288,7 +1278,7 @@ class NotEqualValidatorDirective {
|
|
|
1288
1278
|
},
|
|
1289
1279
|
], ngImport: i0 }); }
|
|
1290
1280
|
}
|
|
1291
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1281
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: NotEqualValidatorDirective, decorators: [{
|
|
1292
1282
|
type: Directive,
|
|
1293
1283
|
args: [{
|
|
1294
1284
|
selector: "[notEqual]",
|
|
@@ -1324,8 +1314,8 @@ class EmailsValidatorDirective {
|
|
|
1324
1314
|
return null;
|
|
1325
1315
|
}
|
|
1326
1316
|
}
|
|
1327
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1328
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
1317
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: EmailsValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1318
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.2", type: EmailsValidatorDirective, isStandalone: true, selector: "[emails]", providers: [
|
|
1329
1319
|
{
|
|
1330
1320
|
provide: NG_VALIDATORS,
|
|
1331
1321
|
useExisting: forwardRef(() => EmailsValidatorDirective),
|
|
@@ -1333,7 +1323,7 @@ class EmailsValidatorDirective {
|
|
|
1333
1323
|
},
|
|
1334
1324
|
], ngImport: i0 }); }
|
|
1335
1325
|
}
|
|
1336
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1326
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: EmailsValidatorDirective, decorators: [{
|
|
1337
1327
|
type: Directive,
|
|
1338
1328
|
args: [{
|
|
1339
1329
|
selector: "[emails]",
|
|
@@ -1360,8 +1350,8 @@ class GuidValidatorDirective {
|
|
|
1360
1350
|
return null;
|
|
1361
1351
|
}
|
|
1362
1352
|
}
|
|
1363
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1364
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
1353
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: GuidValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1354
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.2", type: GuidValidatorDirective, isStandalone: true, selector: "[guid]", providers: [
|
|
1365
1355
|
{
|
|
1366
1356
|
provide: NG_VALIDATORS,
|
|
1367
1357
|
useExisting: forwardRef(() => GuidValidatorDirective),
|
|
@@ -1369,7 +1359,7 @@ class GuidValidatorDirective {
|
|
|
1369
1359
|
},
|
|
1370
1360
|
], ngImport: i0 }); }
|
|
1371
1361
|
}
|
|
1372
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1362
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: GuidValidatorDirective, decorators: [{
|
|
1373
1363
|
type: Directive,
|
|
1374
1364
|
args: [{
|
|
1375
1365
|
selector: "[guid]",
|
|
@@ -1397,8 +1387,8 @@ class SqlDateValidatorDirective {
|
|
|
1397
1387
|
return null;
|
|
1398
1388
|
}
|
|
1399
1389
|
}
|
|
1400
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1401
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
1390
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: SqlDateValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1391
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.2", type: SqlDateValidatorDirective, isStandalone: true, selector: "[sqlDate]", providers: [
|
|
1402
1392
|
{
|
|
1403
1393
|
provide: NG_VALIDATORS,
|
|
1404
1394
|
useExisting: forwardRef(() => SqlDateValidatorDirective),
|
|
@@ -1406,7 +1396,7 @@ class SqlDateValidatorDirective {
|
|
|
1406
1396
|
},
|
|
1407
1397
|
], ngImport: i0 }); }
|
|
1408
1398
|
}
|
|
1409
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1399
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: SqlDateValidatorDirective, decorators: [{
|
|
1410
1400
|
type: Directive,
|
|
1411
1401
|
args: [{
|
|
1412
1402
|
selector: "[sqlDate]",
|
|
@@ -1435,8 +1425,8 @@ class NotFutureValidatorDirective {
|
|
|
1435
1425
|
return null;
|
|
1436
1426
|
}
|
|
1437
1427
|
}
|
|
1438
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1439
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
1428
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: NotFutureValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1429
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.2", type: NotFutureValidatorDirective, isStandalone: true, selector: "[notFuture]", providers: [
|
|
1440
1430
|
{
|
|
1441
1431
|
provide: NG_VALIDATORS,
|
|
1442
1432
|
useExisting: forwardRef(() => NotFutureValidatorDirective),
|
|
@@ -1444,7 +1434,7 @@ class NotFutureValidatorDirective {
|
|
|
1444
1434
|
},
|
|
1445
1435
|
], ngImport: i0 }); }
|
|
1446
1436
|
}
|
|
1447
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1437
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: NotFutureValidatorDirective, decorators: [{
|
|
1448
1438
|
type: Directive,
|
|
1449
1439
|
args: [{
|
|
1450
1440
|
selector: "[notFuture]",
|
|
@@ -1469,8 +1459,8 @@ class UrlValidatorDirective {
|
|
|
1469
1459
|
return null;
|
|
1470
1460
|
}
|
|
1471
1461
|
}
|
|
1472
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1473
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
1462
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: UrlValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1463
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.2", type: UrlValidatorDirective, isStandalone: true, selector: "[url]", providers: [
|
|
1474
1464
|
{
|
|
1475
1465
|
provide: NG_VALIDATORS,
|
|
1476
1466
|
useExisting: forwardRef(() => UrlValidatorDirective),
|
|
@@ -1478,7 +1468,7 @@ class UrlValidatorDirective {
|
|
|
1478
1468
|
},
|
|
1479
1469
|
], ngImport: i0 }); }
|
|
1480
1470
|
}
|
|
1481
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1471
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: UrlValidatorDirective, decorators: [{
|
|
1482
1472
|
type: Directive,
|
|
1483
1473
|
args: [{
|
|
1484
1474
|
selector: "[url]",
|
|
@@ -1512,8 +1502,8 @@ class FileSizeValidatorDirective {
|
|
|
1512
1502
|
return { fileSize: "Non valido." };
|
|
1513
1503
|
}
|
|
1514
1504
|
}
|
|
1515
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1516
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.
|
|
1505
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: FileSizeValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1506
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.2", type: FileSizeValidatorDirective, isStandalone: true, selector: "[fileSize]", inputs: { maxSizeMb: { classPropertyName: "maxSizeMb", publicName: "maxSizeMb", isSignal: true, isRequired: false, transformFunction: null }, minSizeMb: { classPropertyName: "minSizeMb", publicName: "minSizeMb", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
|
|
1517
1507
|
{
|
|
1518
1508
|
provide: NG_VALIDATORS,
|
|
1519
1509
|
useExisting: forwardRef(() => FileSizeValidatorDirective),
|
|
@@ -1521,7 +1511,7 @@ class FileSizeValidatorDirective {
|
|
|
1521
1511
|
},
|
|
1522
1512
|
], ngImport: i0 }); }
|
|
1523
1513
|
}
|
|
1524
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1514
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: FileSizeValidatorDirective, decorators: [{
|
|
1525
1515
|
type: Directive,
|
|
1526
1516
|
args: [{
|
|
1527
1517
|
selector: "[fileSize]",
|
|
@@ -1552,8 +1542,8 @@ class MaxTermsValidatorDirective {
|
|
|
1552
1542
|
return { maxTerms: "Non valido." };
|
|
1553
1543
|
}
|
|
1554
1544
|
}
|
|
1555
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1556
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.
|
|
1545
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: MaxTermsValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1546
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.2", type: MaxTermsValidatorDirective, isStandalone: true, selector: "[maxTerms]", inputs: { maxTerms: { classPropertyName: "maxTerms", publicName: "maxTerms", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
|
|
1557
1547
|
{
|
|
1558
1548
|
provide: NG_VALIDATORS,
|
|
1559
1549
|
useExisting: forwardRef(() => MaxTermsValidatorDirective),
|
|
@@ -1561,7 +1551,7 @@ class MaxTermsValidatorDirective {
|
|
|
1561
1551
|
},
|
|
1562
1552
|
], ngImport: i0 }); }
|
|
1563
1553
|
}
|
|
1564
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1554
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: MaxTermsValidatorDirective, decorators: [{
|
|
1565
1555
|
type: Directive,
|
|
1566
1556
|
args: [{
|
|
1567
1557
|
selector: "[maxTerms]",
|
|
@@ -1586,8 +1576,8 @@ class PasswordValidatorDirective {
|
|
|
1586
1576
|
return null;
|
|
1587
1577
|
}
|
|
1588
1578
|
}
|
|
1589
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1590
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
1579
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: PasswordValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1580
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.2", type: PasswordValidatorDirective, isStandalone: true, selector: "[password]", providers: [
|
|
1591
1581
|
{
|
|
1592
1582
|
provide: NG_VALIDATORS,
|
|
1593
1583
|
useExisting: forwardRef(() => PasswordValidatorDirective),
|
|
@@ -1595,7 +1585,7 @@ class PasswordValidatorDirective {
|
|
|
1595
1585
|
},
|
|
1596
1586
|
], ngImport: i0 }); }
|
|
1597
1587
|
}
|
|
1598
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1588
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: PasswordValidatorDirective, decorators: [{
|
|
1599
1589
|
type: Directive,
|
|
1600
1590
|
args: [{
|
|
1601
1591
|
selector: "[password]",
|
|
@@ -1658,8 +1648,8 @@ class TimeValidatorDirective {
|
|
|
1658
1648
|
return null;
|
|
1659
1649
|
}
|
|
1660
1650
|
}
|
|
1661
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1662
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.
|
|
1651
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: TimeValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1652
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.2", type: TimeValidatorDirective, isStandalone: true, selector: "[time]", inputs: { slots: { classPropertyName: "slots", publicName: "slots", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
|
|
1663
1653
|
{
|
|
1664
1654
|
provide: NG_VALIDATORS,
|
|
1665
1655
|
useExisting: forwardRef(() => TimeValidatorDirective),
|
|
@@ -1667,7 +1657,7 @@ class TimeValidatorDirective {
|
|
|
1667
1657
|
},
|
|
1668
1658
|
], ngImport: i0 }); }
|
|
1669
1659
|
}
|
|
1670
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1660
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: TimeValidatorDirective, decorators: [{
|
|
1671
1661
|
type: Directive,
|
|
1672
1662
|
args: [{
|
|
1673
1663
|
selector: "[time]",
|
|
@@ -1694,8 +1684,8 @@ class NotEmptyValidatorDirective {
|
|
|
1694
1684
|
return null;
|
|
1695
1685
|
}
|
|
1696
1686
|
}
|
|
1697
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1698
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
1687
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: NotEmptyValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1688
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.2", type: NotEmptyValidatorDirective, isStandalone: true, selector: "[notEmpty]", providers: [
|
|
1699
1689
|
{
|
|
1700
1690
|
provide: NG_VALIDATORS,
|
|
1701
1691
|
useExisting: forwardRef(() => NotEmptyValidatorDirective),
|
|
@@ -1703,7 +1693,7 @@ class NotEmptyValidatorDirective {
|
|
|
1703
1693
|
},
|
|
1704
1694
|
], ngImport: i0 }); }
|
|
1705
1695
|
}
|
|
1706
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1696
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: NotEmptyValidatorDirective, decorators: [{
|
|
1707
1697
|
type: Directive,
|
|
1708
1698
|
args: [{
|
|
1709
1699
|
selector: "[notEmpty]",
|
|
@@ -1744,11 +1734,11 @@ class FormatPipe {
|
|
|
1744
1734
|
}
|
|
1745
1735
|
return undefined;
|
|
1746
1736
|
}
|
|
1747
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1748
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.
|
|
1749
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
1737
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: FormatPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
1738
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.2", ngImport: i0, type: FormatPipe, isStandalone: true, name: "format" }); }
|
|
1739
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: FormatPipe }); }
|
|
1750
1740
|
}
|
|
1751
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1741
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: FormatPipe, decorators: [{
|
|
1752
1742
|
type: Injectable
|
|
1753
1743
|
}, {
|
|
1754
1744
|
type: Pipe,
|
|
@@ -1770,11 +1760,11 @@ class ReplacePipe {
|
|
|
1770
1760
|
}
|
|
1771
1761
|
return this.sanitizer.bypassSecurityTrustHtml(value.replace(new RegExp(regexValue, 'g'), replaceValue));
|
|
1772
1762
|
}
|
|
1773
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1774
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.
|
|
1775
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
1763
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: ReplacePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
1764
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.2", ngImport: i0, type: ReplacePipe, isStandalone: true, name: "replace" }); }
|
|
1765
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: ReplacePipe }); }
|
|
1776
1766
|
}
|
|
1777
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1767
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: ReplacePipe, decorators: [{
|
|
1778
1768
|
type: Injectable
|
|
1779
1769
|
}, {
|
|
1780
1770
|
type: Pipe,
|
|
@@ -1791,11 +1781,11 @@ class SafeHtmlPipe {
|
|
|
1791
1781
|
transform(value) {
|
|
1792
1782
|
return this.sanitizer.bypassSecurityTrustHtml(value ?? '');
|
|
1793
1783
|
}
|
|
1794
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1795
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.
|
|
1796
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
1784
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: SafeHtmlPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
1785
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.2", ngImport: i0, type: SafeHtmlPipe, isStandalone: true, name: "safeHtml" }); }
|
|
1786
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: SafeHtmlPipe }); }
|
|
1797
1787
|
}
|
|
1798
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1788
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: SafeHtmlPipe, decorators: [{
|
|
1799
1789
|
type: Injectable
|
|
1800
1790
|
}, {
|
|
1801
1791
|
type: Pipe,
|
|
@@ -1812,11 +1802,11 @@ class SafeUrlPipe {
|
|
|
1812
1802
|
transform(value) {
|
|
1813
1803
|
return this.sanitizer.bypassSecurityTrustResourceUrl(value ?? '');
|
|
1814
1804
|
}
|
|
1815
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1816
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.
|
|
1817
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
1805
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: SafeUrlPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
1806
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.2", ngImport: i0, type: SafeUrlPipe, isStandalone: true, name: "safeUrl" }); }
|
|
1807
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: SafeUrlPipe }); }
|
|
1818
1808
|
}
|
|
1819
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1809
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: SafeUrlPipe, decorators: [{
|
|
1820
1810
|
type: Injectable
|
|
1821
1811
|
}, {
|
|
1822
1812
|
type: Pipe,
|
|
@@ -1833,10 +1823,10 @@ class SearchCallbackPipe {
|
|
|
1833
1823
|
}
|
|
1834
1824
|
return items.filter(item => callback(item));
|
|
1835
1825
|
}
|
|
1836
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1837
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.
|
|
1826
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: SearchCallbackPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
1827
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.2", ngImport: i0, type: SearchCallbackPipe, isStandalone: true, name: "callback", pure: false }); }
|
|
1838
1828
|
}
|
|
1839
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1829
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: SearchCallbackPipe, decorators: [{
|
|
1840
1830
|
type: Pipe,
|
|
1841
1831
|
args: [{
|
|
1842
1832
|
name: 'callback',
|
|
@@ -1879,11 +1869,11 @@ class SearchFilterPipe {
|
|
|
1879
1869
|
metadata.count = result.length;
|
|
1880
1870
|
return result;
|
|
1881
1871
|
}
|
|
1882
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1883
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.
|
|
1884
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
1872
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: SearchFilterPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
1873
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.2", ngImport: i0, type: SearchFilterPipe, isStandalone: true, name: "search" }); }
|
|
1874
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: SearchFilterPipe }); }
|
|
1885
1875
|
}
|
|
1886
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1876
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: SearchFilterPipe, decorators: [{
|
|
1887
1877
|
type: Injectable
|
|
1888
1878
|
}, {
|
|
1889
1879
|
type: Pipe,
|
|
@@ -1900,11 +1890,11 @@ class FormatHtmlPipe {
|
|
|
1900
1890
|
transform(value) {
|
|
1901
1891
|
return this.sanitizer.bypassSecurityTrustHtml(value.replaceAll(/(?:\r\n|\r|\n)/g, '<br>') ?? '');
|
|
1902
1892
|
}
|
|
1903
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1904
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.
|
|
1905
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
1893
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: FormatHtmlPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
1894
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.2", ngImport: i0, type: FormatHtmlPipe, isStandalone: true, name: "formatHtml" }); }
|
|
1895
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: FormatHtmlPipe }); }
|
|
1906
1896
|
}
|
|
1907
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
1897
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: FormatHtmlPipe, decorators: [{
|
|
1908
1898
|
type: Injectable
|
|
1909
1899
|
}, {
|
|
1910
1900
|
type: Pipe,
|
|
@@ -2175,10 +2165,10 @@ class BroadcastService {
|
|
|
2175
2165
|
getMessage() {
|
|
2176
2166
|
return this.subject.asObservable();
|
|
2177
2167
|
}
|
|
2178
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2179
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
2168
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: BroadcastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2169
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: BroadcastService, providedIn: 'root' }); }
|
|
2180
2170
|
}
|
|
2181
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
2171
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: BroadcastService, decorators: [{
|
|
2182
2172
|
type: Injectable,
|
|
2183
2173
|
args: [{
|
|
2184
2174
|
providedIn: 'root'
|
|
@@ -2216,10 +2206,10 @@ class EnvironmentService {
|
|
|
2216
2206
|
set appServiceLoginUri(value) {
|
|
2217
2207
|
this._appServiceLoginUri = value;
|
|
2218
2208
|
}
|
|
2219
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2220
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
2209
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: EnvironmentService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2210
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: EnvironmentService, providedIn: 'root' }); }
|
|
2221
2211
|
}
|
|
2222
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
2212
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: EnvironmentService, decorators: [{
|
|
2223
2213
|
type: Injectable,
|
|
2224
2214
|
args: [{
|
|
2225
2215
|
providedIn: 'root'
|
|
@@ -2236,10 +2226,10 @@ class ScreenService {
|
|
|
2236
2226
|
get isIEOrEdge() {
|
|
2237
2227
|
return /msie\s|trident\/|edge\//i.test(window.navigator.userAgent);
|
|
2238
2228
|
}
|
|
2239
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2240
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
2229
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: ScreenService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2230
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: ScreenService, providedIn: 'root' }); }
|
|
2241
2231
|
}
|
|
2242
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
2232
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: ScreenService, decorators: [{
|
|
2243
2233
|
type: Injectable,
|
|
2244
2234
|
args: [{
|
|
2245
2235
|
providedIn: 'root'
|
|
@@ -2365,10 +2355,10 @@ class ThemeService {
|
|
|
2365
2355
|
? (window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light")
|
|
2366
2356
|
: this.getPreferredTheme());
|
|
2367
2357
|
}
|
|
2368
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2369
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
2358
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: ThemeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2359
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: ThemeService, providedIn: "root" }); }
|
|
2370
2360
|
}
|
|
2371
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
2361
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: ThemeService, decorators: [{
|
|
2372
2362
|
type: Injectable,
|
|
2373
2363
|
args: [{
|
|
2374
2364
|
providedIn: "root",
|
|
@@ -2376,8 +2366,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.1", ngImpor
|
|
|
2376
2366
|
}] });
|
|
2377
2367
|
|
|
2378
2368
|
class ArsCoreModule {
|
|
2379
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2380
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.
|
|
2369
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: ArsCoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2370
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.2", ngImport: i0, type: ArsCoreModule, imports: [FileSizeValidatorDirective,
|
|
2381
2371
|
ValidIfDirective,
|
|
2382
2372
|
ValidatorDirective,
|
|
2383
2373
|
EqualsValidatorDirective,
|
|
@@ -2420,7 +2410,7 @@ class ArsCoreModule {
|
|
|
2420
2410
|
CopyClipboardDirective,
|
|
2421
2411
|
AutoFocusDirective,
|
|
2422
2412
|
MaxTermsValidatorDirective] }); }
|
|
2423
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.
|
|
2413
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: ArsCoreModule, providers: [
|
|
2424
2414
|
SearchFilterPipe,
|
|
2425
2415
|
SearchCallbackPipe,
|
|
2426
2416
|
SafeHtmlPipe,
|
|
@@ -2430,7 +2420,7 @@ class ArsCoreModule {
|
|
|
2430
2420
|
FormatHtmlPipe
|
|
2431
2421
|
] }); }
|
|
2432
2422
|
}
|
|
2433
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
2423
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: ArsCoreModule, decorators: [{
|
|
2434
2424
|
type: NgModule,
|
|
2435
2425
|
args: [{
|
|
2436
2426
|
imports: [
|
|
@@ -2678,16 +2668,16 @@ class DateFnsAdapter extends DateAdapter {
|
|
|
2678
2668
|
invalid() {
|
|
2679
2669
|
return new Date(NaN);
|
|
2680
2670
|
}
|
|
2681
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2682
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
2671
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: DateFnsAdapter, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2672
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: DateFnsAdapter }); }
|
|
2683
2673
|
}
|
|
2684
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
2674
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: DateFnsAdapter, decorators: [{
|
|
2685
2675
|
type: Injectable
|
|
2686
2676
|
}], ctorParameters: () => [] });
|
|
2687
2677
|
class ArsDateFnsModule {
|
|
2688
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2689
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.
|
|
2690
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.
|
|
2678
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: ArsDateFnsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2679
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.2", ngImport: i0, type: ArsDateFnsModule }); }
|
|
2680
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: ArsDateFnsModule, providers: [
|
|
2691
2681
|
{
|
|
2692
2682
|
provide: DateAdapter,
|
|
2693
2683
|
useClass: DateFnsAdapter,
|
|
@@ -2696,7 +2686,7 @@ class ArsDateFnsModule {
|
|
|
2696
2686
|
{ provide: MAT_DATE_FORMATS, useValue: MAT_DATE_FNS_FORMATS }
|
|
2697
2687
|
] }); }
|
|
2698
2688
|
}
|
|
2699
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
2689
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: ArsDateFnsModule, decorators: [{
|
|
2700
2690
|
type: NgModule,
|
|
2701
2691
|
args: [{
|
|
2702
2692
|
providers: [
|
|
@@ -2723,10 +2713,10 @@ class RemoveFocusDirective {
|
|
|
2723
2713
|
}, 0);
|
|
2724
2714
|
}
|
|
2725
2715
|
}
|
|
2726
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2727
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
2716
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: RemoveFocusDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2717
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.2", type: RemoveFocusDirective, isStandalone: true, selector: "[removeFocus]", host: { listeners: { "click": "onClick($event)" } }, ngImport: i0 }); }
|
|
2728
2718
|
}
|
|
2729
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
2719
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: RemoveFocusDirective, decorators: [{
|
|
2730
2720
|
type: Directive,
|
|
2731
2721
|
args: [{
|
|
2732
2722
|
selector: '[removeFocus]'
|
|
@@ -2743,11 +2733,11 @@ class FormatMarkdownPipe {
|
|
|
2743
2733
|
transform(value) {
|
|
2744
2734
|
return this.sanitizer.bypassSecurityTrustHtml(SystemUtils.markdownToHtml(value ?? ''));
|
|
2745
2735
|
}
|
|
2746
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2747
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.
|
|
2748
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
2736
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: FormatMarkdownPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
2737
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.2", ngImport: i0, type: FormatMarkdownPipe, isStandalone: true, name: "formatMarkdown" }); }
|
|
2738
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: FormatMarkdownPipe }); }
|
|
2749
2739
|
}
|
|
2750
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
2740
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.2", ngImport: i0, type: FormatMarkdownPipe, decorators: [{
|
|
2751
2741
|
type: Injectable
|
|
2752
2742
|
}, {
|
|
2753
2743
|
type: Pipe,
|