@acorex/core 19.10.9 → 19.10.10
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/date-time/lib/datetime.module.d.ts +3 -3
- package/date-time/lib/datetime.pipe.d.ts +1 -1
- package/fesm2022/acorex-core-config.mjs +3 -3
- package/fesm2022/acorex-core-date-time.mjs +21 -24
- package/fesm2022/acorex-core-date-time.mjs.map +1 -1
- package/fesm2022/acorex-core-events.mjs +3 -3
- package/fesm2022/acorex-core-file.mjs +10 -10
- package/fesm2022/acorex-core-format.mjs +41 -46
- package/fesm2022/acorex-core-format.mjs.map +1 -1
- package/fesm2022/acorex-core-image.mjs +3 -3
- package/fesm2022/{acorex-core-memorize.mjs → acorex-core-memoize.mjs} +6 -6
- package/fesm2022/acorex-core-memoize.mjs.map +1 -0
- package/fesm2022/acorex-core-network.mjs +3 -3
- package/fesm2022/acorex-core-pipes.mjs +3 -3
- package/fesm2022/acorex-core-platform.mjs +3 -3
- package/fesm2022/acorex-core-storage.mjs +10 -10
- package/fesm2022/acorex-core-translation.mjs +17 -22
- package/fesm2022/acorex-core-translation.mjs.map +1 -1
- package/fesm2022/acorex-core-utils.mjs +3 -3
- package/fesm2022/acorex-core-validation.mjs +41 -41
- package/format/lib/format.directive.d.ts +1 -1
- package/format/lib/format.module.d.ts +1 -1
- package/format/lib/format.pipe.d.ts +1 -1
- package/{memorize → memoize}/README.md +2 -2
- package/memoize/index.d.ts +1 -0
- package/memoize/lib/memoize.decorator.d.ts +1 -0
- package/package.json +4 -4
- package/translation/lib/translation.module.d.ts +1 -1
- package/translation/lib/translator.directive.d.ts +1 -1
- package/translation/lib/translator.pipe.d.ts +1 -1
- package/fesm2022/acorex-core-memorize.mjs.map +0 -1
- package/memorize/index.d.ts +0 -1
- package/memorize/lib/memorize.decorator.d.ts +0 -1
@@ -1,8 +1,8 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
|
-
import * as i1 from "
|
3
|
-
import * as i2 from "
|
2
|
+
import * as i1 from "@acorex/core/format";
|
3
|
+
import * as i2 from "./datetime.pipe";
|
4
4
|
export declare class AXDateTimeModule {
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXDateTimeModule, never>;
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AXDateTimeModule, [typeof i1.
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXDateTimeModule, never, [typeof i1.AXFormatModule, typeof i2.AXDateTimePipe], [typeof i2.AXDateTimePipe]>;
|
7
7
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXDateTimeModule>;
|
8
8
|
}
|
@@ -8,5 +8,5 @@ export declare class AXDateTimePipe implements PipeTransform {
|
|
8
8
|
private _calendarService;
|
9
9
|
transform(value: Date | AXDateTime | string, format?: string, calendarName?: string): string;
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXDateTimePipe, never>;
|
11
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<AXDateTimePipe, "axDate",
|
11
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<AXDateTimePipe, "axDate", true>;
|
12
12
|
}
|
@@ -23,10 +23,10 @@ class AXConfigService {
|
|
23
23
|
const v2 = this.injector.get(providerToken);
|
24
24
|
return get(v2, parts[parts.length - 1], defaultValue);
|
25
25
|
}
|
26
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
27
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.
|
26
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: AXConfigService, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
27
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: AXConfigService, providedIn: 'root' }); }
|
28
28
|
}
|
29
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
29
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: AXConfigService, decorators: [{
|
30
30
|
type: Injectable,
|
31
31
|
args: [{ providedIn: 'root' }]
|
32
32
|
}], ctorParameters: () => [{ type: i0.Injector }] });
|
@@ -1091,10 +1091,10 @@ class AXCalendarService {
|
|
1091
1091
|
const date = value instanceof AXDateTime ? value.date : value;
|
1092
1092
|
return new AXDateTime(date, calendar);
|
1093
1093
|
}
|
1094
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
1095
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.
|
1094
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: AXCalendarService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1095
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: AXCalendarService, providedIn: 'root' }); }
|
1096
1096
|
}
|
1097
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
1097
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: AXCalendarService, decorators: [{
|
1098
1098
|
type: Injectable,
|
1099
1099
|
args: [{ providedIn: 'root' }]
|
1100
1100
|
}], ctorParameters: () => [] });
|
@@ -1117,15 +1117,12 @@ class AXDateTimePipe {
|
|
1117
1117
|
const val = this._calendarService.convert(value, calendar.name());
|
1118
1118
|
return val.format(format);
|
1119
1119
|
}
|
1120
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
1121
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.
|
1120
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: AXDateTimePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
1121
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.1.7", ngImport: i0, type: AXDateTimePipe, isStandalone: true, name: "axDate" }); }
|
1122
1122
|
}
|
1123
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
1123
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: AXDateTimePipe, decorators: [{
|
1124
1124
|
type: Pipe,
|
1125
|
-
args: [{
|
1126
|
-
name: 'axDate',
|
1127
|
-
standalone: false
|
1128
|
-
}]
|
1125
|
+
args: [{ name: 'axDate' }]
|
1129
1126
|
}] });
|
1130
1127
|
|
1131
1128
|
class AXDateTimeFormatter {
|
@@ -1156,10 +1153,10 @@ class AXDateTimeFormatter {
|
|
1156
1153
|
.create(date, effectiveOptions.calendar)
|
1157
1154
|
.format(effectiveOptions.format, { locale: effectiveOptions.locale });
|
1158
1155
|
}
|
1159
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
1160
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.
|
1156
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: AXDateTimeFormatter, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1157
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: AXDateTimeFormatter }); }
|
1161
1158
|
}
|
1162
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
1159
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: AXDateTimeFormatter, decorators: [{
|
1163
1160
|
type: Injectable
|
1164
1161
|
}] });
|
1165
1162
|
|
@@ -1206,10 +1203,10 @@ class AXTimeDurationFormatter {
|
|
1206
1203
|
// Join the parts according to the format
|
1207
1204
|
return formattedTime.join(format.includes('ms') || format.includes('MS') ? ':' : ':');
|
1208
1205
|
}
|
1209
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
1210
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.
|
1206
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: AXTimeDurationFormatter, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1207
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: AXTimeDurationFormatter }); }
|
1211
1208
|
}
|
1212
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
1209
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: AXTimeDurationFormatter, decorators: [{
|
1213
1210
|
type: Injectable
|
1214
1211
|
}] });
|
1215
1212
|
|
@@ -1293,30 +1290,30 @@ class AXTimeLeftFormatter {
|
|
1293
1290
|
return 'Invalid format';
|
1294
1291
|
}
|
1295
1292
|
}
|
1296
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
1297
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.
|
1293
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: AXTimeLeftFormatter, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
1294
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: AXTimeLeftFormatter }); }
|
1298
1295
|
}
|
1299
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
1296
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: AXTimeLeftFormatter, decorators: [{
|
1300
1297
|
type: Injectable
|
1301
1298
|
}] });
|
1302
1299
|
|
1303
1300
|
class AXDateTimeModule {
|
1304
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.
|
1305
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.
|
1306
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.
|
1301
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: AXDateTimeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
1302
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.7", ngImport: i0, type: AXDateTimeModule, imports: [i1.AXFormatModule, AXDateTimePipe], exports: [AXDateTimePipe] }); }
|
1303
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: AXDateTimeModule, imports: [AXFormatModule.forChild({
|
1307
1304
|
formatters: [AXDateTimeFormatter, AXTimeLeftFormatter, AXTimeDurationFormatter],
|
1308
1305
|
})] }); }
|
1309
1306
|
}
|
1310
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.
|
1307
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: AXDateTimeModule, decorators: [{
|
1311
1308
|
type: NgModule,
|
1312
1309
|
args: [{
|
1313
1310
|
imports: [
|
1314
1311
|
AXFormatModule.forChild({
|
1315
1312
|
formatters: [AXDateTimeFormatter, AXTimeLeftFormatter, AXTimeDurationFormatter],
|
1316
1313
|
}),
|
1314
|
+
AXDateTimePipe,
|
1317
1315
|
],
|
1318
1316
|
exports: [AXDateTimePipe],
|
1319
|
-
declarations: [AXDateTimePipe],
|
1320
1317
|
}]
|
1321
1318
|
}] });
|
1322
1319
|
|