@arsedizioni/ars-utils 20.0.38 → 20.1.1
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 +28 -28
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +110 -110
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-core.mjs +126 -125
- package/fesm2022/arsedizioni-ars-utils-core.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-evolution.common.mjs +13 -13
- package/fesm2022/arsedizioni-ars-utils-evolution.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-help.mjs +17 -17
- package/fesm2022/arsedizioni-ars-utils-help.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-support.common.mjs +14 -14
- package/fesm2022/arsedizioni-ars-utils-support.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-support.ui.mjs +8 -8
- package/fesm2022/arsedizioni-ars-utils-support.ui.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-tinymce.mjs +8 -8
- package/fesm2022/arsedizioni-ars-utils-tinymce.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +136 -136
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.mjs +42 -42
- package/fesm2022/arsedizioni-ars-utils-ui.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.oauth.mjs +15 -15
- package/fesm2022/arsedizioni-ars-utils-ui.oauth.mjs.map +1 -1
- package/package.json +9 -9
- 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.0
|
|
24
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0
|
|
23
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: AutoFocusDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
24
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.1.0", type: AutoFocusDirective, isStandalone: true, selector: "[autoFocus]", ngImport: i0 }); }
|
|
25
25
|
}
|
|
26
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
26
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: AutoFocusDirective, decorators: [{
|
|
27
27
|
type: Directive,
|
|
28
28
|
args: [{
|
|
29
29
|
selector: "[autoFocus]",
|
|
@@ -372,8 +372,9 @@ class SystemUtils {
|
|
|
372
372
|
// 14. Paragrafi (ultimo step per non interferire con altri elementi)
|
|
373
373
|
html = this.markdownConvertParagraphs(html);
|
|
374
374
|
// 15. Clean up extra newlines
|
|
375
|
-
html = html.replace(
|
|
375
|
+
html = html.replace(/\`\`\`markdown/g, '');
|
|
376
376
|
html = html.replace(/\*\*/g, '');
|
|
377
|
+
html = html.replace(/\n{3,}/g, '\n\n');
|
|
377
378
|
return html.trim();
|
|
378
379
|
}
|
|
379
380
|
/**
|
|
@@ -1061,8 +1062,8 @@ class SystemUtils {
|
|
|
1061
1062
|
|
|
1062
1063
|
class DateIntervalChangeDirective {
|
|
1063
1064
|
constructor() {
|
|
1064
|
-
this.dateIntervalChange = input(new DateInterval(null, null));
|
|
1065
|
-
this.end = input(false);
|
|
1065
|
+
this.dateIntervalChange = input(new DateInterval(null, null), ...(ngDevMode ? [{ debugName: "dateIntervalChange" }] : []));
|
|
1066
|
+
this.end = input(false, ...(ngDevMode ? [{ debugName: "end" }] : []));
|
|
1066
1067
|
this.subject = new Subject();
|
|
1067
1068
|
}
|
|
1068
1069
|
ngOnInit() {
|
|
@@ -1083,10 +1084,10 @@ class DateIntervalChangeDirective {
|
|
|
1083
1084
|
}
|
|
1084
1085
|
this.subject.next(event);
|
|
1085
1086
|
}
|
|
1086
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
1087
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.0
|
|
1087
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: DateIntervalChangeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1088
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.1.0", 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 }); }
|
|
1088
1089
|
}
|
|
1089
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
1090
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: DateIntervalChangeDirective, decorators: [{
|
|
1090
1091
|
type: Directive,
|
|
1091
1092
|
args: [{
|
|
1092
1093
|
selector: '[dateIntervalChange]',
|
|
@@ -1099,7 +1100,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.5", ngImpor
|
|
|
1099
1100
|
|
|
1100
1101
|
class CopyClipboardDirective {
|
|
1101
1102
|
constructor() {
|
|
1102
|
-
this.payload = input(undefined, { alias: "copyClipboard" });
|
|
1103
|
+
this.payload = input(undefined, ...(ngDevMode ? [{ debugName: "payload", alias: "copyClipboard" }] : [{ alias: "copyClipboard" }]));
|
|
1103
1104
|
this.copied = output({ alias: 'copied' });
|
|
1104
1105
|
}
|
|
1105
1106
|
onClick(e) {
|
|
@@ -1119,11 +1120,11 @@ class CopyClipboardDirective {
|
|
|
1119
1120
|
document.removeEventListener('copy', listener, false);
|
|
1120
1121
|
}
|
|
1121
1122
|
}
|
|
1122
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
1123
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.0
|
|
1124
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0
|
|
1123
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: CopyClipboardDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1124
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.1.0", 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 }); }
|
|
1125
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: CopyClipboardDirective }); }
|
|
1125
1126
|
}
|
|
1126
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
1127
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: CopyClipboardDirective, decorators: [{
|
|
1127
1128
|
type: Injectable
|
|
1128
1129
|
}, {
|
|
1129
1130
|
type: Directive,
|
|
@@ -1138,15 +1139,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.5", ngImpor
|
|
|
1138
1139
|
|
|
1139
1140
|
class ValidatorDirective {
|
|
1140
1141
|
constructor() {
|
|
1141
|
-
this.validator = input(undefined);
|
|
1142
|
+
this.validator = input(undefined, ...(ngDevMode ? [{ debugName: "validator" }] : []));
|
|
1142
1143
|
}
|
|
1143
1144
|
validate(control) {
|
|
1144
1145
|
return this.validator()(control);
|
|
1145
1146
|
}
|
|
1146
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
1147
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.0
|
|
1147
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: ValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1148
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.1.0", 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 }); }
|
|
1148
1149
|
}
|
|
1149
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
1150
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: ValidatorDirective, decorators: [{
|
|
1150
1151
|
type: Directive,
|
|
1151
1152
|
args: [{
|
|
1152
1153
|
selector: '[validator]',
|
|
@@ -1156,7 +1157,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.5", ngImpor
|
|
|
1156
1157
|
}] });
|
|
1157
1158
|
class ValidIfDirective {
|
|
1158
1159
|
constructor() {
|
|
1159
|
-
this.validIf = input(false);
|
|
1160
|
+
this.validIf = input(false, ...(ngDevMode ? [{ debugName: "validIf" }] : []));
|
|
1160
1161
|
}
|
|
1161
1162
|
validate(control) {
|
|
1162
1163
|
let isValid = false;
|
|
@@ -1176,8 +1177,8 @@ class ValidIfDirective {
|
|
|
1176
1177
|
return { validIf: "Non valido." };
|
|
1177
1178
|
}
|
|
1178
1179
|
}
|
|
1179
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
1180
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.0
|
|
1180
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: ValidIfDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1181
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.1.0", type: ValidIfDirective, isStandalone: true, selector: "[validIf]", inputs: { validIf: { classPropertyName: "validIf", publicName: "validIf", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
|
|
1181
1182
|
{
|
|
1182
1183
|
provide: NG_VALIDATORS,
|
|
1183
1184
|
useExisting: forwardRef(() => ValidIfDirective),
|
|
@@ -1185,7 +1186,7 @@ class ValidIfDirective {
|
|
|
1185
1186
|
},
|
|
1186
1187
|
], ngImport: i0 }); }
|
|
1187
1188
|
}
|
|
1188
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
1189
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: ValidIfDirective, decorators: [{
|
|
1189
1190
|
type: Directive,
|
|
1190
1191
|
args: [{
|
|
1191
1192
|
selector: "[validIf]",
|
|
@@ -1201,7 +1202,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.5", ngImpor
|
|
|
1201
1202
|
}] });
|
|
1202
1203
|
class EqualsValidatorDirective {
|
|
1203
1204
|
constructor() {
|
|
1204
|
-
this.equals = input(null);
|
|
1205
|
+
this.equals = input(null, ...(ngDevMode ? [{ debugName: "equals" }] : []));
|
|
1205
1206
|
}
|
|
1206
1207
|
validate(control) {
|
|
1207
1208
|
const isValid = this.equals().value === control.value;
|
|
@@ -1212,8 +1213,8 @@ class EqualsValidatorDirective {
|
|
|
1212
1213
|
return { equals: "Non valido." };
|
|
1213
1214
|
}
|
|
1214
1215
|
}
|
|
1215
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
1216
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.0
|
|
1216
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: EqualsValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1217
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.1.0", type: EqualsValidatorDirective, isStandalone: true, selector: "[equals]", inputs: { equals: { classPropertyName: "equals", publicName: "equals", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
|
|
1217
1218
|
{
|
|
1218
1219
|
provide: NG_VALIDATORS,
|
|
1219
1220
|
useExisting: forwardRef(() => EqualsValidatorDirective),
|
|
@@ -1221,7 +1222,7 @@ class EqualsValidatorDirective {
|
|
|
1221
1222
|
},
|
|
1222
1223
|
], ngImport: i0 }); }
|
|
1223
1224
|
}
|
|
1224
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
1225
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: EqualsValidatorDirective, decorators: [{
|
|
1225
1226
|
type: Directive,
|
|
1226
1227
|
args: [{
|
|
1227
1228
|
selector: "[equals]",
|
|
@@ -1237,7 +1238,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.5", ngImpor
|
|
|
1237
1238
|
}] });
|
|
1238
1239
|
class NotEqualValidatorDirective {
|
|
1239
1240
|
constructor() {
|
|
1240
|
-
this.notEqual = input(undefined);
|
|
1241
|
+
this.notEqual = input(undefined, ...(ngDevMode ? [{ debugName: "notEqual" }] : []));
|
|
1241
1242
|
}
|
|
1242
1243
|
validate(control) {
|
|
1243
1244
|
const notEqual = this.notEqual();
|
|
@@ -1256,8 +1257,8 @@ class NotEqualValidatorDirective {
|
|
|
1256
1257
|
}
|
|
1257
1258
|
return errors;
|
|
1258
1259
|
}
|
|
1259
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
1260
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.0
|
|
1260
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: NotEqualValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1261
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.1.0", type: NotEqualValidatorDirective, isStandalone: true, selector: "[notEqual]", inputs: { notEqual: { classPropertyName: "notEqual", publicName: "notEqual", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
|
|
1261
1262
|
{
|
|
1262
1263
|
provide: NG_VALIDATORS,
|
|
1263
1264
|
useExisting: forwardRef(() => NotEqualValidatorDirective),
|
|
@@ -1265,7 +1266,7 @@ class NotEqualValidatorDirective {
|
|
|
1265
1266
|
},
|
|
1266
1267
|
], ngImport: i0 }); }
|
|
1267
1268
|
}
|
|
1268
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
1269
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: NotEqualValidatorDirective, decorators: [{
|
|
1269
1270
|
type: Directive,
|
|
1270
1271
|
args: [{
|
|
1271
1272
|
selector: "[notEqual]",
|
|
@@ -1301,8 +1302,8 @@ class EmailsValidatorDirective {
|
|
|
1301
1302
|
return undefined;
|
|
1302
1303
|
}
|
|
1303
1304
|
}
|
|
1304
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
1305
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0
|
|
1305
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: EmailsValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1306
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.1.0", type: EmailsValidatorDirective, isStandalone: true, selector: "[emails]", providers: [
|
|
1306
1307
|
{
|
|
1307
1308
|
provide: NG_VALIDATORS,
|
|
1308
1309
|
useExisting: forwardRef(() => EmailsValidatorDirective),
|
|
@@ -1310,7 +1311,7 @@ class EmailsValidatorDirective {
|
|
|
1310
1311
|
},
|
|
1311
1312
|
], ngImport: i0 }); }
|
|
1312
1313
|
}
|
|
1313
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
1314
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: EmailsValidatorDirective, decorators: [{
|
|
1314
1315
|
type: Directive,
|
|
1315
1316
|
args: [{
|
|
1316
1317
|
selector: "[emails]",
|
|
@@ -1337,8 +1338,8 @@ class GuidValidatorDirective {
|
|
|
1337
1338
|
return undefined;
|
|
1338
1339
|
}
|
|
1339
1340
|
}
|
|
1340
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
1341
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0
|
|
1341
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: GuidValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1342
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.1.0", type: GuidValidatorDirective, isStandalone: true, selector: "[guid]", providers: [
|
|
1342
1343
|
{
|
|
1343
1344
|
provide: NG_VALIDATORS,
|
|
1344
1345
|
useExisting: forwardRef(() => GuidValidatorDirective),
|
|
@@ -1346,7 +1347,7 @@ class GuidValidatorDirective {
|
|
|
1346
1347
|
},
|
|
1347
1348
|
], ngImport: i0 }); }
|
|
1348
1349
|
}
|
|
1349
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
1350
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: GuidValidatorDirective, decorators: [{
|
|
1350
1351
|
type: Directive,
|
|
1351
1352
|
args: [{
|
|
1352
1353
|
selector: "[guid]",
|
|
@@ -1374,8 +1375,8 @@ class SqlDateValidatorDirective {
|
|
|
1374
1375
|
return undefined;
|
|
1375
1376
|
}
|
|
1376
1377
|
}
|
|
1377
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
1378
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0
|
|
1378
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: SqlDateValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1379
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.1.0", type: SqlDateValidatorDirective, isStandalone: true, selector: "[sqlDate]", providers: [
|
|
1379
1380
|
{
|
|
1380
1381
|
provide: NG_VALIDATORS,
|
|
1381
1382
|
useExisting: forwardRef(() => SqlDateValidatorDirective),
|
|
@@ -1383,7 +1384,7 @@ class SqlDateValidatorDirective {
|
|
|
1383
1384
|
},
|
|
1384
1385
|
], ngImport: i0 }); }
|
|
1385
1386
|
}
|
|
1386
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
1387
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: SqlDateValidatorDirective, decorators: [{
|
|
1387
1388
|
type: Directive,
|
|
1388
1389
|
args: [{
|
|
1389
1390
|
selector: "[sqlDate]",
|
|
@@ -1412,8 +1413,8 @@ class NotFutureValidatorDirective {
|
|
|
1412
1413
|
return undefined;
|
|
1413
1414
|
}
|
|
1414
1415
|
}
|
|
1415
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
1416
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0
|
|
1416
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: NotFutureValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1417
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.1.0", type: NotFutureValidatorDirective, isStandalone: true, selector: "[notFuture]", providers: [
|
|
1417
1418
|
{
|
|
1418
1419
|
provide: NG_VALIDATORS,
|
|
1419
1420
|
useExisting: forwardRef(() => NotFutureValidatorDirective),
|
|
@@ -1421,7 +1422,7 @@ class NotFutureValidatorDirective {
|
|
|
1421
1422
|
},
|
|
1422
1423
|
], ngImport: i0 }); }
|
|
1423
1424
|
}
|
|
1424
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
1425
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: NotFutureValidatorDirective, decorators: [{
|
|
1425
1426
|
type: Directive,
|
|
1426
1427
|
args: [{
|
|
1427
1428
|
selector: "[notFuture]",
|
|
@@ -1446,8 +1447,8 @@ class UrlValidatorDirective {
|
|
|
1446
1447
|
return undefined;
|
|
1447
1448
|
}
|
|
1448
1449
|
}
|
|
1449
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
1450
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0
|
|
1450
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: UrlValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1451
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.1.0", type: UrlValidatorDirective, isStandalone: true, selector: "[url]", providers: [
|
|
1451
1452
|
{
|
|
1452
1453
|
provide: NG_VALIDATORS,
|
|
1453
1454
|
useExisting: forwardRef(() => UrlValidatorDirective),
|
|
@@ -1455,7 +1456,7 @@ class UrlValidatorDirective {
|
|
|
1455
1456
|
},
|
|
1456
1457
|
], ngImport: i0 }); }
|
|
1457
1458
|
}
|
|
1458
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
1459
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: UrlValidatorDirective, decorators: [{
|
|
1459
1460
|
type: Directive,
|
|
1460
1461
|
args: [{
|
|
1461
1462
|
selector: "[url]",
|
|
@@ -1471,9 +1472,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.5", ngImpor
|
|
|
1471
1472
|
}] });
|
|
1472
1473
|
class FileSizeValidatorDirective {
|
|
1473
1474
|
constructor() {
|
|
1474
|
-
this.maxSizeMb = input(5);
|
|
1475
|
-
this.minSizeMb = input(0);
|
|
1476
|
-
this.size = input(undefined);
|
|
1475
|
+
this.maxSizeMb = input(5, ...(ngDevMode ? [{ debugName: "maxSizeMb" }] : []));
|
|
1476
|
+
this.minSizeMb = input(0, ...(ngDevMode ? [{ debugName: "minSizeMb" }] : []));
|
|
1477
|
+
this.size = input(undefined, ...(ngDevMode ? [{ debugName: "size" }] : []));
|
|
1477
1478
|
}
|
|
1478
1479
|
validate(control) {
|
|
1479
1480
|
const input = control.value;
|
|
@@ -1489,8 +1490,8 @@ class FileSizeValidatorDirective {
|
|
|
1489
1490
|
return { fileSize: "Non valido." };
|
|
1490
1491
|
}
|
|
1491
1492
|
}
|
|
1492
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
1493
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.0
|
|
1493
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: FileSizeValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1494
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.1.0", 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: [
|
|
1494
1495
|
{
|
|
1495
1496
|
provide: NG_VALIDATORS,
|
|
1496
1497
|
useExisting: forwardRef(() => FileSizeValidatorDirective),
|
|
@@ -1498,7 +1499,7 @@ class FileSizeValidatorDirective {
|
|
|
1498
1499
|
},
|
|
1499
1500
|
], ngImport: i0 }); }
|
|
1500
1501
|
}
|
|
1501
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
1502
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: FileSizeValidatorDirective, decorators: [{
|
|
1502
1503
|
type: Directive,
|
|
1503
1504
|
args: [{
|
|
1504
1505
|
selector: "[fileSize]",
|
|
@@ -1514,7 +1515,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.5", ngImpor
|
|
|
1514
1515
|
}] });
|
|
1515
1516
|
class MaxTermsValidatorDirective {
|
|
1516
1517
|
constructor() {
|
|
1517
|
-
this.maxTerms = input(0);
|
|
1518
|
+
this.maxTerms = input(0, ...(ngDevMode ? [{ debugName: "maxTerms" }] : []));
|
|
1518
1519
|
}
|
|
1519
1520
|
validate(control) {
|
|
1520
1521
|
const input = control.value;
|
|
@@ -1529,8 +1530,8 @@ class MaxTermsValidatorDirective {
|
|
|
1529
1530
|
return { maxTerms: "Non valido." };
|
|
1530
1531
|
}
|
|
1531
1532
|
}
|
|
1532
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
1533
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.0
|
|
1533
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: MaxTermsValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1534
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.1.0", type: MaxTermsValidatorDirective, isStandalone: true, selector: "[maxTerms]", inputs: { maxTerms: { classPropertyName: "maxTerms", publicName: "maxTerms", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
|
|
1534
1535
|
{
|
|
1535
1536
|
provide: NG_VALIDATORS,
|
|
1536
1537
|
useExisting: forwardRef(() => MaxTermsValidatorDirective),
|
|
@@ -1538,7 +1539,7 @@ class MaxTermsValidatorDirective {
|
|
|
1538
1539
|
},
|
|
1539
1540
|
], ngImport: i0 }); }
|
|
1540
1541
|
}
|
|
1541
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
1542
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: MaxTermsValidatorDirective, decorators: [{
|
|
1542
1543
|
type: Directive,
|
|
1543
1544
|
args: [{
|
|
1544
1545
|
selector: "[maxTerms]",
|
|
@@ -1563,8 +1564,8 @@ class PasswordValidatorDirective {
|
|
|
1563
1564
|
return undefined;
|
|
1564
1565
|
}
|
|
1565
1566
|
}
|
|
1566
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
1567
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0
|
|
1567
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: PasswordValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1568
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.1.0", type: PasswordValidatorDirective, isStandalone: true, selector: "[password]", providers: [
|
|
1568
1569
|
{
|
|
1569
1570
|
provide: NG_VALIDATORS,
|
|
1570
1571
|
useExisting: forwardRef(() => PasswordValidatorDirective),
|
|
@@ -1572,7 +1573,7 @@ class PasswordValidatorDirective {
|
|
|
1572
1573
|
},
|
|
1573
1574
|
], ngImport: i0 }); }
|
|
1574
1575
|
}
|
|
1575
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
1576
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: PasswordValidatorDirective, decorators: [{
|
|
1576
1577
|
type: Directive,
|
|
1577
1578
|
args: [{
|
|
1578
1579
|
selector: "[password]",
|
|
@@ -1588,7 +1589,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.5", ngImpor
|
|
|
1588
1589
|
}] });
|
|
1589
1590
|
class TimeValidatorDirective {
|
|
1590
1591
|
constructor() {
|
|
1591
|
-
this.slots = input(undefined);
|
|
1592
|
+
this.slots = input(undefined, ...(ngDevMode ? [{ debugName: "slots" }] : []));
|
|
1592
1593
|
}
|
|
1593
1594
|
/**
|
|
1594
1595
|
* Retrieve hours as a number from a time string (e: 12:00)
|
|
@@ -1635,8 +1636,8 @@ class TimeValidatorDirective {
|
|
|
1635
1636
|
return undefined;
|
|
1636
1637
|
}
|
|
1637
1638
|
}
|
|
1638
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
1639
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.0
|
|
1639
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: TimeValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1640
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.1.0", type: TimeValidatorDirective, isStandalone: true, selector: "[time]", inputs: { slots: { classPropertyName: "slots", publicName: "slots", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
|
|
1640
1641
|
{
|
|
1641
1642
|
provide: NG_VALIDATORS,
|
|
1642
1643
|
useExisting: forwardRef(() => TimeValidatorDirective),
|
|
@@ -1644,7 +1645,7 @@ class TimeValidatorDirective {
|
|
|
1644
1645
|
},
|
|
1645
1646
|
], ngImport: i0 }); }
|
|
1646
1647
|
}
|
|
1647
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
1648
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: TimeValidatorDirective, decorators: [{
|
|
1648
1649
|
type: Directive,
|
|
1649
1650
|
args: [{
|
|
1650
1651
|
selector: "[time]",
|
|
@@ -1685,11 +1686,11 @@ class FormatPipe {
|
|
|
1685
1686
|
}
|
|
1686
1687
|
return undefined;
|
|
1687
1688
|
}
|
|
1688
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
1689
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.0
|
|
1690
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0
|
|
1689
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: FormatPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
1690
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.1.0", ngImport: i0, type: FormatPipe, isStandalone: true, name: "format" }); }
|
|
1691
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: FormatPipe }); }
|
|
1691
1692
|
}
|
|
1692
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
1693
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: FormatPipe, decorators: [{
|
|
1693
1694
|
type: Injectable
|
|
1694
1695
|
}, {
|
|
1695
1696
|
type: Pipe,
|
|
@@ -1711,11 +1712,11 @@ class ReplacePipe {
|
|
|
1711
1712
|
}
|
|
1712
1713
|
return this.sanitizer.bypassSecurityTrustHtml(value.replace(new RegExp(regexValue, 'g'), replaceValue));
|
|
1713
1714
|
}
|
|
1714
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
1715
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.0
|
|
1716
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0
|
|
1715
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: ReplacePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
1716
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.1.0", ngImport: i0, type: ReplacePipe, isStandalone: true, name: "replace" }); }
|
|
1717
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: ReplacePipe }); }
|
|
1717
1718
|
}
|
|
1718
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
1719
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: ReplacePipe, decorators: [{
|
|
1719
1720
|
type: Injectable
|
|
1720
1721
|
}, {
|
|
1721
1722
|
type: Pipe,
|
|
@@ -1732,11 +1733,11 @@ class SafeHtmlPipe {
|
|
|
1732
1733
|
transform(value) {
|
|
1733
1734
|
return this.sanitizer.bypassSecurityTrustHtml(value ?? '');
|
|
1734
1735
|
}
|
|
1735
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
1736
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.0
|
|
1737
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0
|
|
1736
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: SafeHtmlPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
1737
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.1.0", ngImport: i0, type: SafeHtmlPipe, isStandalone: true, name: "safeHtml" }); }
|
|
1738
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: SafeHtmlPipe }); }
|
|
1738
1739
|
}
|
|
1739
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
1740
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: SafeHtmlPipe, decorators: [{
|
|
1740
1741
|
type: Injectable
|
|
1741
1742
|
}, {
|
|
1742
1743
|
type: Pipe,
|
|
@@ -1753,11 +1754,11 @@ class SafeUrlPipe {
|
|
|
1753
1754
|
transform(value) {
|
|
1754
1755
|
return this.sanitizer.bypassSecurityTrustResourceUrl(value ?? '');
|
|
1755
1756
|
}
|
|
1756
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
1757
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.0
|
|
1758
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0
|
|
1757
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: SafeUrlPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
1758
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.1.0", ngImport: i0, type: SafeUrlPipe, isStandalone: true, name: "safeUrl" }); }
|
|
1759
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: SafeUrlPipe }); }
|
|
1759
1760
|
}
|
|
1760
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
1761
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: SafeUrlPipe, decorators: [{
|
|
1761
1762
|
type: Injectable
|
|
1762
1763
|
}, {
|
|
1763
1764
|
type: Pipe,
|
|
@@ -1774,10 +1775,10 @@ class SearchCallbackPipe {
|
|
|
1774
1775
|
}
|
|
1775
1776
|
return items.filter(item => callback(item));
|
|
1776
1777
|
}
|
|
1777
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
1778
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.0
|
|
1778
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: SearchCallbackPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
1779
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.1.0", ngImport: i0, type: SearchCallbackPipe, isStandalone: true, name: "callback", pure: false }); }
|
|
1779
1780
|
}
|
|
1780
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
1781
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: SearchCallbackPipe, decorators: [{
|
|
1781
1782
|
type: Pipe,
|
|
1782
1783
|
args: [{
|
|
1783
1784
|
name: 'callback',
|
|
@@ -1820,11 +1821,11 @@ class SearchFilterPipe {
|
|
|
1820
1821
|
metadata.count = result.length;
|
|
1821
1822
|
return result;
|
|
1822
1823
|
}
|
|
1823
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
1824
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.0
|
|
1825
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0
|
|
1824
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: SearchFilterPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
1825
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.1.0", ngImport: i0, type: SearchFilterPipe, isStandalone: true, name: "search" }); }
|
|
1826
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: SearchFilterPipe }); }
|
|
1826
1827
|
}
|
|
1827
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
1828
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: SearchFilterPipe, decorators: [{
|
|
1828
1829
|
type: Injectable
|
|
1829
1830
|
}, {
|
|
1830
1831
|
type: Pipe,
|
|
@@ -1841,11 +1842,11 @@ class FormatHtmlPipe {
|
|
|
1841
1842
|
transform(value) {
|
|
1842
1843
|
return this.sanitizer.bypassSecurityTrustHtml(value.replaceAll(/(?:\r\n|\r|\n)/g, '<br>') ?? '');
|
|
1843
1844
|
}
|
|
1844
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
1845
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.0
|
|
1846
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0
|
|
1845
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: FormatHtmlPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
1846
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.1.0", ngImport: i0, type: FormatHtmlPipe, isStandalone: true, name: "formatHtml" }); }
|
|
1847
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: FormatHtmlPipe }); }
|
|
1847
1848
|
}
|
|
1848
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
1849
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: FormatHtmlPipe, decorators: [{
|
|
1849
1850
|
type: Injectable
|
|
1850
1851
|
}, {
|
|
1851
1852
|
type: Pipe,
|
|
@@ -2013,10 +2014,10 @@ class BroadcastService {
|
|
|
2013
2014
|
getMessage() {
|
|
2014
2015
|
return this.subject.asObservable();
|
|
2015
2016
|
}
|
|
2016
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
2017
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0
|
|
2017
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: BroadcastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2018
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: BroadcastService, providedIn: 'root' }); }
|
|
2018
2019
|
}
|
|
2019
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
2020
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: BroadcastService, decorators: [{
|
|
2020
2021
|
type: Injectable,
|
|
2021
2022
|
args: [{
|
|
2022
2023
|
providedIn: 'root'
|
|
@@ -2054,10 +2055,10 @@ class EnvironmentService {
|
|
|
2054
2055
|
set appServiceLoginUri(value) {
|
|
2055
2056
|
this._appServiceLoginUri = value;
|
|
2056
2057
|
}
|
|
2057
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
2058
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0
|
|
2058
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: EnvironmentService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2059
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: EnvironmentService, providedIn: 'root' }); }
|
|
2059
2060
|
}
|
|
2060
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
2061
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: EnvironmentService, decorators: [{
|
|
2061
2062
|
type: Injectable,
|
|
2062
2063
|
args: [{
|
|
2063
2064
|
providedIn: 'root'
|
|
@@ -2066,7 +2067,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.5", ngImpor
|
|
|
2066
2067
|
|
|
2067
2068
|
class ScreenService {
|
|
2068
2069
|
constructor() {
|
|
2069
|
-
this.mq = signal("");
|
|
2070
|
+
this.mq = signal("", ...(ngDevMode ? [{ debugName: "mq" }] : []));
|
|
2070
2071
|
}
|
|
2071
2072
|
get isTouchable() {
|
|
2072
2073
|
return SystemUtils.isTouchable();
|
|
@@ -2074,10 +2075,10 @@ class ScreenService {
|
|
|
2074
2075
|
get isIEOrEdge() {
|
|
2075
2076
|
return /msie\s|trident\/|edge\//i.test(window.navigator.userAgent);
|
|
2076
2077
|
}
|
|
2077
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
2078
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0
|
|
2078
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: ScreenService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2079
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: ScreenService, providedIn: 'root' }); }
|
|
2079
2080
|
}
|
|
2080
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
2081
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: ScreenService, decorators: [{
|
|
2081
2082
|
type: Injectable,
|
|
2082
2083
|
args: [{
|
|
2083
2084
|
providedIn: 'root'
|
|
@@ -2188,11 +2189,11 @@ class ThemeService {
|
|
|
2188
2189
|
/**
|
|
2189
2190
|
* Current theme
|
|
2190
2191
|
*/
|
|
2191
|
-
this.theme = signal("light");
|
|
2192
|
+
this.theme = signal("light", ...(ngDevMode ? [{ debugName: "theme" }] : []));
|
|
2192
2193
|
/**
|
|
2193
2194
|
* The current theme is "System default"
|
|
2194
2195
|
*/
|
|
2195
|
-
this.auto = computed(() => this.theme() === 'auto');
|
|
2196
|
+
this.auto = computed(() => this.theme() === 'auto', ...(ngDevMode ? [{ debugName: "auto" }] : []));
|
|
2196
2197
|
/**
|
|
2197
2198
|
* Configuration schema about the icon, the text and the toggle() sequence
|
|
2198
2199
|
*/
|
|
@@ -2204,15 +2205,15 @@ class ThemeService {
|
|
|
2204
2205
|
/**
|
|
2205
2206
|
* Icon of the current theme (mat-icon code)
|
|
2206
2207
|
*/
|
|
2207
|
-
this.themeIcon = computed(() => this.themeInfo[this.theme()].icon);
|
|
2208
|
+
this.themeIcon = computed(() => this.themeInfo[this.theme()].icon, ...(ngDevMode ? [{ debugName: "themeIcon" }] : []));
|
|
2208
2209
|
/**
|
|
2209
2210
|
* Current theme name
|
|
2210
2211
|
*/
|
|
2211
|
-
this.themeName = computed(() => this.themeInfo[this.theme()].name);
|
|
2212
|
+
this.themeName = computed(() => this.themeInfo[this.theme()].name, ...(ngDevMode ? [{ debugName: "themeName" }] : []));
|
|
2212
2213
|
/**
|
|
2213
2214
|
* Tooltip text on toggle
|
|
2214
2215
|
*/
|
|
2215
|
-
this.toggleTooltip = computed(() => this.themeInfo[this.theme()].tooltip);
|
|
2216
|
+
this.toggleTooltip = computed(() => this.themeInfo[this.theme()].tooltip, ...(ngDevMode ? [{ debugName: "toggleTooltip" }] : []));
|
|
2216
2217
|
}
|
|
2217
2218
|
/**
|
|
2218
2219
|
* Initialize
|
|
@@ -2281,10 +2282,10 @@ class ThemeService {
|
|
|
2281
2282
|
? (window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light")
|
|
2282
2283
|
: this.getPreferredTheme());
|
|
2283
2284
|
}
|
|
2284
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
2285
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0
|
|
2285
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: ThemeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2286
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: ThemeService, providedIn: "root" }); }
|
|
2286
2287
|
}
|
|
2287
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
2288
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: ThemeService, decorators: [{
|
|
2288
2289
|
type: Injectable,
|
|
2289
2290
|
args: [{
|
|
2290
2291
|
providedIn: "root",
|
|
@@ -2292,8 +2293,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.5", ngImpor
|
|
|
2292
2293
|
}] });
|
|
2293
2294
|
|
|
2294
2295
|
class ArsCoreModule {
|
|
2295
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
2296
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0
|
|
2296
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: ArsCoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2297
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.1.0", ngImport: i0, type: ArsCoreModule, imports: [FileSizeValidatorDirective,
|
|
2297
2298
|
ValidIfDirective,
|
|
2298
2299
|
ValidatorDirective,
|
|
2299
2300
|
EqualsValidatorDirective,
|
|
@@ -2334,7 +2335,7 @@ class ArsCoreModule {
|
|
|
2334
2335
|
CopyClipboardDirective,
|
|
2335
2336
|
AutoFocusDirective,
|
|
2336
2337
|
MaxTermsValidatorDirective] }); }
|
|
2337
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0
|
|
2338
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: ArsCoreModule, providers: [
|
|
2338
2339
|
SearchFilterPipe,
|
|
2339
2340
|
SearchCallbackPipe,
|
|
2340
2341
|
SafeHtmlPipe,
|
|
@@ -2344,7 +2345,7 @@ class ArsCoreModule {
|
|
|
2344
2345
|
FormatHtmlPipe
|
|
2345
2346
|
] }); }
|
|
2346
2347
|
}
|
|
2347
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
2348
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: ArsCoreModule, decorators: [{
|
|
2348
2349
|
type: NgModule,
|
|
2349
2350
|
args: [{
|
|
2350
2351
|
imports: [
|
|
@@ -2590,16 +2591,16 @@ class DateFnsAdapter extends DateAdapter {
|
|
|
2590
2591
|
invalid() {
|
|
2591
2592
|
return new Date(NaN);
|
|
2592
2593
|
}
|
|
2593
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
2594
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0
|
|
2594
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: DateFnsAdapter, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2595
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: DateFnsAdapter }); }
|
|
2595
2596
|
}
|
|
2596
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
2597
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: DateFnsAdapter, decorators: [{
|
|
2597
2598
|
type: Injectable
|
|
2598
2599
|
}], ctorParameters: () => [] });
|
|
2599
2600
|
class ArsDateFnsModule {
|
|
2600
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
2601
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0
|
|
2602
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0
|
|
2601
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: ArsDateFnsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2602
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.1.0", ngImport: i0, type: ArsDateFnsModule }); }
|
|
2603
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: ArsDateFnsModule, providers: [
|
|
2603
2604
|
{
|
|
2604
2605
|
provide: DateAdapter,
|
|
2605
2606
|
useClass: DateFnsAdapter,
|
|
@@ -2608,7 +2609,7 @@ class ArsDateFnsModule {
|
|
|
2608
2609
|
{ provide: MAT_DATE_FORMATS, useValue: MAT_DATE_FNS_FORMATS }
|
|
2609
2610
|
] }); }
|
|
2610
2611
|
}
|
|
2611
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
2612
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: ArsDateFnsModule, decorators: [{
|
|
2612
2613
|
type: NgModule,
|
|
2613
2614
|
args: [{
|
|
2614
2615
|
providers: [
|
|
@@ -2635,10 +2636,10 @@ class RemoveFocusDirective {
|
|
|
2635
2636
|
}, 0);
|
|
2636
2637
|
}
|
|
2637
2638
|
}
|
|
2638
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
2639
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0
|
|
2639
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: RemoveFocusDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2640
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.1.0", type: RemoveFocusDirective, isStandalone: true, selector: "[removeFocus]", host: { listeners: { "click": "onClick($event)" } }, ngImport: i0 }); }
|
|
2640
2641
|
}
|
|
2641
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
2642
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: RemoveFocusDirective, decorators: [{
|
|
2642
2643
|
type: Directive,
|
|
2643
2644
|
args: [{
|
|
2644
2645
|
selector: '[removeFocus]'
|
|
@@ -2655,11 +2656,11 @@ class FormatMarkdownPipe {
|
|
|
2655
2656
|
transform(value) {
|
|
2656
2657
|
return this.sanitizer.bypassSecurityTrustHtml(SystemUtils.markdownToHtml(value ?? ''));
|
|
2657
2658
|
}
|
|
2658
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0
|
|
2659
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.0
|
|
2660
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0
|
|
2659
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: FormatMarkdownPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
2660
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.1.0", ngImport: i0, type: FormatMarkdownPipe, isStandalone: true, name: "formatMarkdown" }); }
|
|
2661
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: FormatMarkdownPipe }); }
|
|
2661
2662
|
}
|
|
2662
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0
|
|
2663
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.0", ngImport: i0, type: FormatMarkdownPipe, decorators: [{
|
|
2663
2664
|
type: Injectable
|
|
2664
2665
|
}, {
|
|
2665
2666
|
type: Pipe,
|