@acorex/core 4.1.0 → 4.1.3
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/esm2020/lib/classes/base-page.class.mjs +3 -3
- package/esm2020/lib/classes/datetime.class.mjs +2 -3
- package/esm2020/lib/core.module.mjs +5 -5
- package/esm2020/lib/error/error.module.mjs +5 -5
- package/esm2020/lib/error/error.service.mjs +3 -3
- package/esm2020/lib/http/http.module.mjs +7 -9
- package/esm2020/lib/http/http.service.mjs +3 -3
- package/esm2020/lib/pipe/datetime.pipe.mjs +3 -3
- package/esm2020/lib/pipe/htmlToText.pipe.mjs +3 -3
- package/esm2020/lib/services/event.service.mjs +3 -3
- package/esm2020/lib/services/navigator.service.mjs +3 -3
- package/esm2020/lib/services/storage.service.mjs +3 -3
- package/esm2020/lib/translator/translator.module.mjs +5 -5
- package/esm2020/lib/translator/translator.pipe.mjs +3 -3
- package/esm2020/lib/translator/translator.service.mjs +3 -3
- package/esm2020/lib/utils/html/html.module.mjs +5 -5
- package/esm2020/lib/utils/render/on-demand-preload-strategy.service.mjs +3 -3
- package/esm2020/lib/utils/render/render.service.mjs +3 -3
- package/esm2020/lib/utils/render/rendering.module.mjs +6 -6
- package/esm2020/lib/utils/scroll/scroll.directive.mjs +6 -6
- package/esm2020/lib/utils/scroll/scroll.module.mjs +5 -5
- package/esm2020/lib/utils/separator/separator.module.mjs +5 -5
- package/esm2020/lib/utils/separator/separator.pipe.mjs +4 -4
- package/fesm2015/acorex-core.mjs +82 -85
- package/fesm2015/acorex-core.mjs.map +1 -1
- package/fesm2020/acorex-core.mjs +82 -85
- package/fesm2020/acorex-core.mjs.map +1 -1
- package/{acorex-core.d.ts → index.d.ts} +0 -0
- package/lib/pipe/datetime.pipe.d.ts +1 -1
- package/lib/pipe/htmlToText.pipe.d.ts +1 -1
- package/lib/translator/translator.pipe.d.ts +1 -1
- package/lib/utils/scroll/scroll.directive.d.ts +2 -2
- package/lib/utils/separator/separator.pipe.d.ts +1 -1
- package/package.json +5 -5
|
@@ -6,7 +6,7 @@ export declare class AXHorizontalScrollDirective {
|
|
|
6
6
|
scrollValue: number;
|
|
7
7
|
onMouseWheel(e: any): void;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXHorizontalScrollDirective, never>;
|
|
9
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AXHorizontalScrollDirective, "[horizontalScroll]", never, { "scrollValue": "horizontalScroll"; }, {}, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AXHorizontalScrollDirective, "[horizontalScroll]", never, { "scrollValue": "horizontalScroll"; }, {}, never, never, false>;
|
|
10
10
|
}
|
|
11
11
|
export declare class AXVerticalScrollDirective {
|
|
12
12
|
private el;
|
|
@@ -14,5 +14,5 @@ export declare class AXVerticalScrollDirective {
|
|
|
14
14
|
scrollValue: number;
|
|
15
15
|
onMouseWheel(e: any): void;
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXVerticalScrollDirective, never>;
|
|
17
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AXVerticalScrollDirective, "[verticalScroll]", never, { "scrollValue": "verticalScroll"; }, {}, never>;
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AXVerticalScrollDirective, "[verticalScroll]", never, { "scrollValue": "verticalScroll"; }, {}, never, never, false>;
|
|
18
18
|
}
|
|
@@ -3,6 +3,6 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class AXSeparatorPipe implements PipeTransform {
|
|
4
4
|
transform(value: number | string, currency?: string, decimal?: number, locale?: string): string;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXSeparatorPipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<AXSeparatorPipe, "separator">;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<AXSeparatorPipe, "separator", false>;
|
|
7
7
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXSeparatorPipe>;
|
|
8
8
|
}
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/core",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.3",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": "^
|
|
6
|
-
"@angular/core": "^
|
|
5
|
+
"@angular/common": "^14.0.0",
|
|
6
|
+
"@angular/core": "^14.0.0",
|
|
7
7
|
"rxjs": "~6.5.4"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
"esm2020": "esm2020/acorex-core.mjs",
|
|
16
16
|
"fesm2020": "fesm2020/acorex-core.mjs",
|
|
17
17
|
"fesm2015": "fesm2015/acorex-core.mjs",
|
|
18
|
-
"typings": "
|
|
18
|
+
"typings": "index.d.ts",
|
|
19
19
|
"exports": {
|
|
20
20
|
"./package.json": {
|
|
21
21
|
"default": "./package.json"
|
|
22
22
|
},
|
|
23
23
|
".": {
|
|
24
|
-
"types": "./
|
|
24
|
+
"types": "./index.d.ts",
|
|
25
25
|
"esm2020": "./esm2020/acorex-core.mjs",
|
|
26
26
|
"es2020": "./fesm2020/acorex-core.mjs",
|
|
27
27
|
"es2015": "./fesm2015/acorex-core.mjs",
|