@arsedizioni/ars-utils 20.3.52 → 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/core/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 +127 -115
- 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 +1 -1
- 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]",
|
|
@@ -54,14 +54,26 @@ class ImportModel {
|
|
|
54
54
|
}
|
|
55
55
|
class DateInterval {
|
|
56
56
|
get fromAsDate() {
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
57
|
+
if (this.from) {
|
|
58
|
+
if (!(this.from instanceof Date)) {
|
|
59
|
+
this.from = new Date(this.from);
|
|
60
|
+
}
|
|
61
|
+
if (this.from) {
|
|
62
|
+
return new Date(this.from.getFullYear(), this.from.getMonth(), this.from.getDate(), 2, 0, 0);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
return undefined;
|
|
60
66
|
}
|
|
61
67
|
get toAsDate() {
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
68
|
+
if (this.to) {
|
|
69
|
+
if (!(this.to instanceof Date)) {
|
|
70
|
+
this.to = new Date(this.to);
|
|
71
|
+
}
|
|
72
|
+
if (this.to) {
|
|
73
|
+
return new Date(this.to.getFullYear(), this.to.getMonth(), this.to.getDate(), 2, 0, 0);
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
return undefined;
|
|
65
77
|
}
|
|
66
78
|
constructor(from, to) {
|
|
67
79
|
this.from = from;
|
|
@@ -1084,10 +1096,10 @@ class DateIntervalChangeDirective {
|
|
|
1084
1096
|
}
|
|
1085
1097
|
this.subject.next(event);
|
|
1086
1098
|
}
|
|
1087
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1088
|
-
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 }); }
|
|
1089
1101
|
}
|
|
1090
|
-
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: [{
|
|
1091
1103
|
type: Directive,
|
|
1092
1104
|
args: [{
|
|
1093
1105
|
selector: '[dateIntervalChange]',
|
|
@@ -1120,11 +1132,11 @@ class CopyClipboardDirective {
|
|
|
1120
1132
|
document.removeEventListener('copy', listener, false);
|
|
1121
1133
|
}
|
|
1122
1134
|
}
|
|
1123
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1124
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.
|
|
1125
|
-
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 }); }
|
|
1126
1138
|
}
|
|
1127
|
-
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: [{
|
|
1128
1140
|
type: Injectable
|
|
1129
1141
|
}, {
|
|
1130
1142
|
type: Directive,
|
|
@@ -1144,10 +1156,10 @@ class ValidatorDirective {
|
|
|
1144
1156
|
validate(control) {
|
|
1145
1157
|
return this.validator()(control);
|
|
1146
1158
|
}
|
|
1147
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1148
|
-
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 }); }
|
|
1149
1161
|
}
|
|
1150
|
-
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: [{
|
|
1151
1163
|
type: Directive,
|
|
1152
1164
|
args: [{
|
|
1153
1165
|
selector: '[validator]',
|
|
@@ -1177,8 +1189,8 @@ class ValidIfDirective {
|
|
|
1177
1189
|
return { validIf: "Non valido." };
|
|
1178
1190
|
}
|
|
1179
1191
|
}
|
|
1180
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1181
|
-
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: [
|
|
1182
1194
|
{
|
|
1183
1195
|
provide: NG_VALIDATORS,
|
|
1184
1196
|
useExisting: forwardRef(() => ValidIfDirective),
|
|
@@ -1186,7 +1198,7 @@ class ValidIfDirective {
|
|
|
1186
1198
|
},
|
|
1187
1199
|
], ngImport: i0 }); }
|
|
1188
1200
|
}
|
|
1189
|
-
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: [{
|
|
1190
1202
|
type: Directive,
|
|
1191
1203
|
args: [{
|
|
1192
1204
|
selector: "[validIf]",
|
|
@@ -1213,8 +1225,8 @@ class EqualsValidatorDirective {
|
|
|
1213
1225
|
return { equals: "Non valido." };
|
|
1214
1226
|
}
|
|
1215
1227
|
}
|
|
1216
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1217
|
-
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: [
|
|
1218
1230
|
{
|
|
1219
1231
|
provide: NG_VALIDATORS,
|
|
1220
1232
|
useExisting: forwardRef(() => EqualsValidatorDirective),
|
|
@@ -1222,7 +1234,7 @@ class EqualsValidatorDirective {
|
|
|
1222
1234
|
},
|
|
1223
1235
|
], ngImport: i0 }); }
|
|
1224
1236
|
}
|
|
1225
|
-
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: [{
|
|
1226
1238
|
type: Directive,
|
|
1227
1239
|
args: [{
|
|
1228
1240
|
selector: "[equals]",
|
|
@@ -1257,8 +1269,8 @@ class NotEqualValidatorDirective {
|
|
|
1257
1269
|
}
|
|
1258
1270
|
return errors;
|
|
1259
1271
|
}
|
|
1260
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1261
|
-
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: [
|
|
1262
1274
|
{
|
|
1263
1275
|
provide: NG_VALIDATORS,
|
|
1264
1276
|
useExisting: forwardRef(() => NotEqualValidatorDirective),
|
|
@@ -1266,7 +1278,7 @@ class NotEqualValidatorDirective {
|
|
|
1266
1278
|
},
|
|
1267
1279
|
], ngImport: i0 }); }
|
|
1268
1280
|
}
|
|
1269
|
-
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: [{
|
|
1270
1282
|
type: Directive,
|
|
1271
1283
|
args: [{
|
|
1272
1284
|
selector: "[notEqual]",
|
|
@@ -1302,8 +1314,8 @@ class EmailsValidatorDirective {
|
|
|
1302
1314
|
return null;
|
|
1303
1315
|
}
|
|
1304
1316
|
}
|
|
1305
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1306
|
-
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: [
|
|
1307
1319
|
{
|
|
1308
1320
|
provide: NG_VALIDATORS,
|
|
1309
1321
|
useExisting: forwardRef(() => EmailsValidatorDirective),
|
|
@@ -1311,7 +1323,7 @@ class EmailsValidatorDirective {
|
|
|
1311
1323
|
},
|
|
1312
1324
|
], ngImport: i0 }); }
|
|
1313
1325
|
}
|
|
1314
|
-
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: [{
|
|
1315
1327
|
type: Directive,
|
|
1316
1328
|
args: [{
|
|
1317
1329
|
selector: "[emails]",
|
|
@@ -1338,8 +1350,8 @@ class GuidValidatorDirective {
|
|
|
1338
1350
|
return null;
|
|
1339
1351
|
}
|
|
1340
1352
|
}
|
|
1341
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1342
|
-
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: [
|
|
1343
1355
|
{
|
|
1344
1356
|
provide: NG_VALIDATORS,
|
|
1345
1357
|
useExisting: forwardRef(() => GuidValidatorDirective),
|
|
@@ -1347,7 +1359,7 @@ class GuidValidatorDirective {
|
|
|
1347
1359
|
},
|
|
1348
1360
|
], ngImport: i0 }); }
|
|
1349
1361
|
}
|
|
1350
|
-
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: [{
|
|
1351
1363
|
type: Directive,
|
|
1352
1364
|
args: [{
|
|
1353
1365
|
selector: "[guid]",
|
|
@@ -1375,8 +1387,8 @@ class SqlDateValidatorDirective {
|
|
|
1375
1387
|
return null;
|
|
1376
1388
|
}
|
|
1377
1389
|
}
|
|
1378
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1379
|
-
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: [
|
|
1380
1392
|
{
|
|
1381
1393
|
provide: NG_VALIDATORS,
|
|
1382
1394
|
useExisting: forwardRef(() => SqlDateValidatorDirective),
|
|
@@ -1384,7 +1396,7 @@ class SqlDateValidatorDirective {
|
|
|
1384
1396
|
},
|
|
1385
1397
|
], ngImport: i0 }); }
|
|
1386
1398
|
}
|
|
1387
|
-
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: [{
|
|
1388
1400
|
type: Directive,
|
|
1389
1401
|
args: [{
|
|
1390
1402
|
selector: "[sqlDate]",
|
|
@@ -1413,8 +1425,8 @@ class NotFutureValidatorDirective {
|
|
|
1413
1425
|
return null;
|
|
1414
1426
|
}
|
|
1415
1427
|
}
|
|
1416
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1417
|
-
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: [
|
|
1418
1430
|
{
|
|
1419
1431
|
provide: NG_VALIDATORS,
|
|
1420
1432
|
useExisting: forwardRef(() => NotFutureValidatorDirective),
|
|
@@ -1422,7 +1434,7 @@ class NotFutureValidatorDirective {
|
|
|
1422
1434
|
},
|
|
1423
1435
|
], ngImport: i0 }); }
|
|
1424
1436
|
}
|
|
1425
|
-
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: [{
|
|
1426
1438
|
type: Directive,
|
|
1427
1439
|
args: [{
|
|
1428
1440
|
selector: "[notFuture]",
|
|
@@ -1447,8 +1459,8 @@ class UrlValidatorDirective {
|
|
|
1447
1459
|
return null;
|
|
1448
1460
|
}
|
|
1449
1461
|
}
|
|
1450
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1451
|
-
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: [
|
|
1452
1464
|
{
|
|
1453
1465
|
provide: NG_VALIDATORS,
|
|
1454
1466
|
useExisting: forwardRef(() => UrlValidatorDirective),
|
|
@@ -1456,7 +1468,7 @@ class UrlValidatorDirective {
|
|
|
1456
1468
|
},
|
|
1457
1469
|
], ngImport: i0 }); }
|
|
1458
1470
|
}
|
|
1459
|
-
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: [{
|
|
1460
1472
|
type: Directive,
|
|
1461
1473
|
args: [{
|
|
1462
1474
|
selector: "[url]",
|
|
@@ -1490,8 +1502,8 @@ class FileSizeValidatorDirective {
|
|
|
1490
1502
|
return { fileSize: "Non valido." };
|
|
1491
1503
|
}
|
|
1492
1504
|
}
|
|
1493
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1494
|
-
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: [
|
|
1495
1507
|
{
|
|
1496
1508
|
provide: NG_VALIDATORS,
|
|
1497
1509
|
useExisting: forwardRef(() => FileSizeValidatorDirective),
|
|
@@ -1499,7 +1511,7 @@ class FileSizeValidatorDirective {
|
|
|
1499
1511
|
},
|
|
1500
1512
|
], ngImport: i0 }); }
|
|
1501
1513
|
}
|
|
1502
|
-
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: [{
|
|
1503
1515
|
type: Directive,
|
|
1504
1516
|
args: [{
|
|
1505
1517
|
selector: "[fileSize]",
|
|
@@ -1530,8 +1542,8 @@ class MaxTermsValidatorDirective {
|
|
|
1530
1542
|
return { maxTerms: "Non valido." };
|
|
1531
1543
|
}
|
|
1532
1544
|
}
|
|
1533
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1534
|
-
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: [
|
|
1535
1547
|
{
|
|
1536
1548
|
provide: NG_VALIDATORS,
|
|
1537
1549
|
useExisting: forwardRef(() => MaxTermsValidatorDirective),
|
|
@@ -1539,7 +1551,7 @@ class MaxTermsValidatorDirective {
|
|
|
1539
1551
|
},
|
|
1540
1552
|
], ngImport: i0 }); }
|
|
1541
1553
|
}
|
|
1542
|
-
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: [{
|
|
1543
1555
|
type: Directive,
|
|
1544
1556
|
args: [{
|
|
1545
1557
|
selector: "[maxTerms]",
|
|
@@ -1564,8 +1576,8 @@ class PasswordValidatorDirective {
|
|
|
1564
1576
|
return null;
|
|
1565
1577
|
}
|
|
1566
1578
|
}
|
|
1567
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1568
|
-
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: [
|
|
1569
1581
|
{
|
|
1570
1582
|
provide: NG_VALIDATORS,
|
|
1571
1583
|
useExisting: forwardRef(() => PasswordValidatorDirective),
|
|
@@ -1573,7 +1585,7 @@ class PasswordValidatorDirective {
|
|
|
1573
1585
|
},
|
|
1574
1586
|
], ngImport: i0 }); }
|
|
1575
1587
|
}
|
|
1576
|
-
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: [{
|
|
1577
1589
|
type: Directive,
|
|
1578
1590
|
args: [{
|
|
1579
1591
|
selector: "[password]",
|
|
@@ -1636,8 +1648,8 @@ class TimeValidatorDirective {
|
|
|
1636
1648
|
return null;
|
|
1637
1649
|
}
|
|
1638
1650
|
}
|
|
1639
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1640
|
-
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: [
|
|
1641
1653
|
{
|
|
1642
1654
|
provide: NG_VALIDATORS,
|
|
1643
1655
|
useExisting: forwardRef(() => TimeValidatorDirective),
|
|
@@ -1645,7 +1657,7 @@ class TimeValidatorDirective {
|
|
|
1645
1657
|
},
|
|
1646
1658
|
], ngImport: i0 }); }
|
|
1647
1659
|
}
|
|
1648
|
-
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: [{
|
|
1649
1661
|
type: Directive,
|
|
1650
1662
|
args: [{
|
|
1651
1663
|
selector: "[time]",
|
|
@@ -1672,8 +1684,8 @@ class NotEmptyValidatorDirective {
|
|
|
1672
1684
|
return null;
|
|
1673
1685
|
}
|
|
1674
1686
|
}
|
|
1675
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1676
|
-
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: [
|
|
1677
1689
|
{
|
|
1678
1690
|
provide: NG_VALIDATORS,
|
|
1679
1691
|
useExisting: forwardRef(() => NotEmptyValidatorDirective),
|
|
@@ -1681,7 +1693,7 @@ class NotEmptyValidatorDirective {
|
|
|
1681
1693
|
},
|
|
1682
1694
|
], ngImport: i0 }); }
|
|
1683
1695
|
}
|
|
1684
|
-
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: [{
|
|
1685
1697
|
type: Directive,
|
|
1686
1698
|
args: [{
|
|
1687
1699
|
selector: "[notEmpty]",
|
|
@@ -1722,11 +1734,11 @@ class FormatPipe {
|
|
|
1722
1734
|
}
|
|
1723
1735
|
return undefined;
|
|
1724
1736
|
}
|
|
1725
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1726
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.
|
|
1727
|
-
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 }); }
|
|
1728
1740
|
}
|
|
1729
|
-
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: [{
|
|
1730
1742
|
type: Injectable
|
|
1731
1743
|
}, {
|
|
1732
1744
|
type: Pipe,
|
|
@@ -1748,11 +1760,11 @@ class ReplacePipe {
|
|
|
1748
1760
|
}
|
|
1749
1761
|
return this.sanitizer.bypassSecurityTrustHtml(value.replace(new RegExp(regexValue, 'g'), replaceValue));
|
|
1750
1762
|
}
|
|
1751
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1752
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.
|
|
1753
|
-
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 }); }
|
|
1754
1766
|
}
|
|
1755
|
-
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: [{
|
|
1756
1768
|
type: Injectable
|
|
1757
1769
|
}, {
|
|
1758
1770
|
type: Pipe,
|
|
@@ -1769,11 +1781,11 @@ class SafeHtmlPipe {
|
|
|
1769
1781
|
transform(value) {
|
|
1770
1782
|
return this.sanitizer.bypassSecurityTrustHtml(value ?? '');
|
|
1771
1783
|
}
|
|
1772
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1773
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.
|
|
1774
|
-
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 }); }
|
|
1775
1787
|
}
|
|
1776
|
-
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: [{
|
|
1777
1789
|
type: Injectable
|
|
1778
1790
|
}, {
|
|
1779
1791
|
type: Pipe,
|
|
@@ -1790,11 +1802,11 @@ class SafeUrlPipe {
|
|
|
1790
1802
|
transform(value) {
|
|
1791
1803
|
return this.sanitizer.bypassSecurityTrustResourceUrl(value ?? '');
|
|
1792
1804
|
}
|
|
1793
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1794
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.
|
|
1795
|
-
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 }); }
|
|
1796
1808
|
}
|
|
1797
|
-
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: [{
|
|
1798
1810
|
type: Injectable
|
|
1799
1811
|
}, {
|
|
1800
1812
|
type: Pipe,
|
|
@@ -1811,10 +1823,10 @@ class SearchCallbackPipe {
|
|
|
1811
1823
|
}
|
|
1812
1824
|
return items.filter(item => callback(item));
|
|
1813
1825
|
}
|
|
1814
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1815
|
-
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 }); }
|
|
1816
1828
|
}
|
|
1817
|
-
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: [{
|
|
1818
1830
|
type: Pipe,
|
|
1819
1831
|
args: [{
|
|
1820
1832
|
name: 'callback',
|
|
@@ -1857,11 +1869,11 @@ class SearchFilterPipe {
|
|
|
1857
1869
|
metadata.count = result.length;
|
|
1858
1870
|
return result;
|
|
1859
1871
|
}
|
|
1860
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1861
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.
|
|
1862
|
-
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 }); }
|
|
1863
1875
|
}
|
|
1864
|
-
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: [{
|
|
1865
1877
|
type: Injectable
|
|
1866
1878
|
}, {
|
|
1867
1879
|
type: Pipe,
|
|
@@ -1878,11 +1890,11 @@ class FormatHtmlPipe {
|
|
|
1878
1890
|
transform(value) {
|
|
1879
1891
|
return this.sanitizer.bypassSecurityTrustHtml(value.replaceAll(/(?:\r\n|\r|\n)/g, '<br>') ?? '');
|
|
1880
1892
|
}
|
|
1881
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
1882
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.
|
|
1883
|
-
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 }); }
|
|
1884
1896
|
}
|
|
1885
|
-
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: [{
|
|
1886
1898
|
type: Injectable
|
|
1887
1899
|
}, {
|
|
1888
1900
|
type: Pipe,
|
|
@@ -2153,10 +2165,10 @@ class BroadcastService {
|
|
|
2153
2165
|
getMessage() {
|
|
2154
2166
|
return this.subject.asObservable();
|
|
2155
2167
|
}
|
|
2156
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2157
|
-
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' }); }
|
|
2158
2170
|
}
|
|
2159
|
-
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: [{
|
|
2160
2172
|
type: Injectable,
|
|
2161
2173
|
args: [{
|
|
2162
2174
|
providedIn: 'root'
|
|
@@ -2194,10 +2206,10 @@ class EnvironmentService {
|
|
|
2194
2206
|
set appServiceLoginUri(value) {
|
|
2195
2207
|
this._appServiceLoginUri = value;
|
|
2196
2208
|
}
|
|
2197
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2198
|
-
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' }); }
|
|
2199
2211
|
}
|
|
2200
|
-
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: [{
|
|
2201
2213
|
type: Injectable,
|
|
2202
2214
|
args: [{
|
|
2203
2215
|
providedIn: 'root'
|
|
@@ -2214,10 +2226,10 @@ class ScreenService {
|
|
|
2214
2226
|
get isIEOrEdge() {
|
|
2215
2227
|
return /msie\s|trident\/|edge\//i.test(window.navigator.userAgent);
|
|
2216
2228
|
}
|
|
2217
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2218
|
-
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' }); }
|
|
2219
2231
|
}
|
|
2220
|
-
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: [{
|
|
2221
2233
|
type: Injectable,
|
|
2222
2234
|
args: [{
|
|
2223
2235
|
providedIn: 'root'
|
|
@@ -2343,10 +2355,10 @@ class ThemeService {
|
|
|
2343
2355
|
? (window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light")
|
|
2344
2356
|
: this.getPreferredTheme());
|
|
2345
2357
|
}
|
|
2346
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2347
|
-
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" }); }
|
|
2348
2360
|
}
|
|
2349
|
-
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: [{
|
|
2350
2362
|
type: Injectable,
|
|
2351
2363
|
args: [{
|
|
2352
2364
|
providedIn: "root",
|
|
@@ -2354,8 +2366,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.1", ngImpor
|
|
|
2354
2366
|
}] });
|
|
2355
2367
|
|
|
2356
2368
|
class ArsCoreModule {
|
|
2357
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2358
|
-
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,
|
|
2359
2371
|
ValidIfDirective,
|
|
2360
2372
|
ValidatorDirective,
|
|
2361
2373
|
EqualsValidatorDirective,
|
|
@@ -2398,7 +2410,7 @@ class ArsCoreModule {
|
|
|
2398
2410
|
CopyClipboardDirective,
|
|
2399
2411
|
AutoFocusDirective,
|
|
2400
2412
|
MaxTermsValidatorDirective] }); }
|
|
2401
|
-
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: [
|
|
2402
2414
|
SearchFilterPipe,
|
|
2403
2415
|
SearchCallbackPipe,
|
|
2404
2416
|
SafeHtmlPipe,
|
|
@@ -2408,7 +2420,7 @@ class ArsCoreModule {
|
|
|
2408
2420
|
FormatHtmlPipe
|
|
2409
2421
|
] }); }
|
|
2410
2422
|
}
|
|
2411
|
-
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: [{
|
|
2412
2424
|
type: NgModule,
|
|
2413
2425
|
args: [{
|
|
2414
2426
|
imports: [
|
|
@@ -2656,16 +2668,16 @@ class DateFnsAdapter extends DateAdapter {
|
|
|
2656
2668
|
invalid() {
|
|
2657
2669
|
return new Date(NaN);
|
|
2658
2670
|
}
|
|
2659
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2660
|
-
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 }); }
|
|
2661
2673
|
}
|
|
2662
|
-
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: [{
|
|
2663
2675
|
type: Injectable
|
|
2664
2676
|
}], ctorParameters: () => [] });
|
|
2665
2677
|
class ArsDateFnsModule {
|
|
2666
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2667
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.
|
|
2668
|
-
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: [
|
|
2669
2681
|
{
|
|
2670
2682
|
provide: DateAdapter,
|
|
2671
2683
|
useClass: DateFnsAdapter,
|
|
@@ -2674,7 +2686,7 @@ class ArsDateFnsModule {
|
|
|
2674
2686
|
{ provide: MAT_DATE_FORMATS, useValue: MAT_DATE_FNS_FORMATS }
|
|
2675
2687
|
] }); }
|
|
2676
2688
|
}
|
|
2677
|
-
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: [{
|
|
2678
2690
|
type: NgModule,
|
|
2679
2691
|
args: [{
|
|
2680
2692
|
providers: [
|
|
@@ -2701,10 +2713,10 @@ class RemoveFocusDirective {
|
|
|
2701
2713
|
}, 0);
|
|
2702
2714
|
}
|
|
2703
2715
|
}
|
|
2704
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2705
|
-
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 }); }
|
|
2706
2718
|
}
|
|
2707
|
-
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: [{
|
|
2708
2720
|
type: Directive,
|
|
2709
2721
|
args: [{
|
|
2710
2722
|
selector: '[removeFocus]'
|
|
@@ -2721,11 +2733,11 @@ class FormatMarkdownPipe {
|
|
|
2721
2733
|
transform(value) {
|
|
2722
2734
|
return this.sanitizer.bypassSecurityTrustHtml(SystemUtils.markdownToHtml(value ?? ''));
|
|
2723
2735
|
}
|
|
2724
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
2725
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.
|
|
2726
|
-
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 }); }
|
|
2727
2739
|
}
|
|
2728
|
-
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: [{
|
|
2729
2741
|
type: Injectable
|
|
2730
2742
|
}, {
|
|
2731
2743
|
type: Pipe,
|