@acorex/core 6.5.29 → 6.5.30
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/README.md +3 -3
- package/acorex-core.d.ts +5 -5
- package/esm2020/acorex-core.mjs +4 -4
- package/esm2020/lib/classes/base-page.class.mjs +28 -28
- package/esm2020/lib/classes/color.class.mjs +49 -49
- package/esm2020/lib/classes/datetime.class.mjs +314 -314
- package/esm2020/lib/classes/menu.class.mjs +27 -27
- package/esm2020/lib/classes/navigator.class.mjs +2 -2
- package/esm2020/lib/classes/popup.class.mjs +2 -2
- package/esm2020/lib/classes/promise.class.mjs +19 -19
- package/esm2020/lib/classes/sectionlist.class.mjs +2 -2
- package/esm2020/lib/classes/select.class.mjs +3 -3
- package/esm2020/lib/core.module.mjs +27 -27
- package/esm2020/lib/error/error.class.mjs +2 -2
- package/esm2020/lib/error/error.module.mjs +19 -19
- package/esm2020/lib/error/error.service.mjs +21 -21
- package/esm2020/lib/events/keyboard.mjs +2 -2
- package/esm2020/lib/http/http-error.class.mjs +2 -2
- package/esm2020/lib/http/http-events.interceptor.mjs +3 -3
- package/esm2020/lib/http/http-request.class.mjs +2 -2
- package/esm2020/lib/http/http-result.class.mjs +21 -21
- package/esm2020/lib/http/http.module.mjs +37 -37
- package/esm2020/lib/http/http.service.mjs +145 -145
- package/esm2020/lib/locale/en.json +255 -255
- package/esm2020/lib/locale/fa.json +245 -245
- package/esm2020/lib/pipe/datetime.pipe.mjs +25 -25
- package/esm2020/lib/pipe/htmlToText.pipe.mjs +25 -25
- package/esm2020/lib/platform/index.mjs +1 -1
- package/esm2020/lib/platform/platform.service.mjs +150 -150
- package/esm2020/lib/services/config.mjs +29 -29
- package/esm2020/lib/services/event.service.mjs +36 -36
- package/esm2020/lib/services/navigator.service.mjs +10 -10
- package/esm2020/lib/services/storage.service.mjs +16 -16
- package/esm2020/lib/translator/translator.mjs +26 -26
- package/esm2020/lib/translator/translator.module.mjs +25 -25
- package/esm2020/lib/translator/translator.pipe.mjs +24 -24
- package/esm2020/lib/translator/translator.service.mjs +21 -21
- package/esm2020/lib/utils/array/array-util.mjs +133 -133
- package/esm2020/lib/utils/html/html-util.mjs +192 -192
- package/esm2020/lib/utils/html/html.module.mjs +19 -19
- package/esm2020/lib/utils/math/math-util.mjs +6 -6
- package/esm2020/lib/utils/object/object-util.mjs +83 -83
- package/esm2020/lib/utils/render/on-demand-preload-strategy.service.mjs +20 -20
- package/esm2020/lib/utils/render/render.service.mjs +103 -103
- package/esm2020/lib/utils/render/rendering.module.mjs +35 -35
- package/esm2020/lib/utils/scroll/scroll.directive.mjs +54 -54
- package/esm2020/lib/utils/scroll/scroll.module.mjs +19 -19
- package/esm2020/lib/utils/separator/separator.module.mjs +19 -19
- package/esm2020/lib/utils/separator/separator.pipe.mjs +33 -33
- package/esm2020/public-api.mjs +44 -44
- package/fesm2015/acorex-core.mjs +2162 -2162
- package/fesm2015/acorex-core.mjs.map +1 -1
- package/fesm2020/acorex-core.mjs +1651 -1651
- package/fesm2020/acorex-core.mjs.map +1 -1
- package/lib/classes/base-page.class.d.ts +13 -13
- package/lib/classes/color.class.d.ts +17 -17
- package/lib/classes/datetime.class.d.ts +63 -63
- package/lib/classes/menu.class.d.ts +34 -34
- package/lib/classes/navigator.class.d.ts +5 -5
- package/lib/classes/popup.class.d.ts +12 -12
- package/lib/classes/promise.class.d.ts +7 -7
- package/lib/classes/sectionlist.class.d.ts +8 -8
- package/lib/classes/select.class.d.ts +7 -7
- package/lib/core.module.d.ts +9 -9
- package/lib/error/error.class.d.ts +4 -4
- package/lib/error/error.module.d.ts +7 -7
- package/lib/error/error.service.d.ts +13 -13
- package/lib/events/keyboard.d.ts +2 -2
- package/lib/http/http-error.class.d.ts +7 -7
- package/lib/http/http-events.interceptor.d.ts +10 -10
- package/lib/http/http-request.class.d.ts +14 -14
- package/lib/http/http-result.class.d.ts +11 -11
- package/lib/http/http.module.d.ts +10 -10
- package/lib/http/http.service.d.ts +23 -23
- package/lib/pipe/datetime.pipe.d.ts +8 -8
- package/lib/pipe/htmlToText.pipe.d.ts +7 -7
- package/lib/platform/index.d.ts +1 -1
- package/lib/platform/platform.service.d.ts +26 -26
- package/lib/services/config.d.ts +9 -9
- package/lib/services/event.service.d.ts +9 -9
- package/lib/services/navigator.service.d.ts +8 -8
- package/lib/services/storage.service.d.ts +7 -7
- package/lib/translator/translator.d.ts +9 -9
- package/lib/translator/translator.module.d.ts +8 -8
- package/lib/translator/translator.pipe.d.ts +8 -8
- package/lib/translator/translator.service.d.ts +8 -8
- package/lib/utils/array/array-util.d.ts +6 -6
- package/lib/utils/html/html-util.d.ts +62 -62
- package/lib/utils/html/html.module.d.ts +8 -8
- package/lib/utils/math/math-util.d.ts +3 -3
- package/lib/utils/object/object-util.d.ts +7 -7
- package/lib/utils/render/on-demand-preload-strategy.service.d.ts +10 -10
- package/lib/utils/render/render.service.d.ts +18 -18
- package/lib/utils/render/rendering.module.d.ts +8 -8
- package/lib/utils/scroll/scroll.directive.d.ts +18 -18
- package/lib/utils/scroll/scroll.module.d.ts +8 -8
- package/lib/utils/separator/separator.module.d.ts +8 -8
- package/lib/utils/separator/separator.pipe.d.ts +8 -8
- package/package.json +2 -2
- package/public-api.d.ts +43 -43
package/public-api.d.ts
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
export * from './lib/classes/color.class';
|
|
2
|
-
export * from './lib/classes/datetime.class';
|
|
3
|
-
export * from './lib/classes/menu.class';
|
|
4
|
-
export * from './lib/classes/navigator.class';
|
|
5
|
-
export * from './lib/classes/popup.class';
|
|
6
|
-
export * from './lib/classes/promise.class';
|
|
7
|
-
export * from './lib/classes/sectionlist.class';
|
|
8
|
-
export * from './lib/classes/select.class';
|
|
9
|
-
export * from './lib/classes/base-page.class';
|
|
10
|
-
export * from './lib/error/error.class';
|
|
11
|
-
export * from './lib/error/error.module';
|
|
12
|
-
export * from './lib/error/error.service';
|
|
13
|
-
export * from './lib/events/keyboard';
|
|
14
|
-
export * from './lib/http/http-error.class';
|
|
15
|
-
export * from './lib/http/http-events.interceptor';
|
|
16
|
-
export * from './lib/http/http-request.class';
|
|
17
|
-
export * from './lib/http/http-result.class';
|
|
18
|
-
export * from './lib/http/http.module';
|
|
19
|
-
export * from './lib/http/http.service';
|
|
20
|
-
export * from './lib/platform/index';
|
|
21
|
-
export * from './lib/pipe/datetime.pipe';
|
|
22
|
-
export * from './lib/pipe/htmlToText.pipe';
|
|
23
|
-
export * from './lib/services/event.service';
|
|
24
|
-
export * from './lib/services/navigator.service';
|
|
25
|
-
export * from './lib/services/storage.service';
|
|
26
|
-
export * from './lib/services/config';
|
|
27
|
-
export * from './lib/translator/translator.service';
|
|
28
|
-
export * from './lib/translator/translator.pipe';
|
|
29
|
-
export * from './lib/translator/translator';
|
|
30
|
-
export * from './lib/translator/translator.module';
|
|
31
|
-
export * from './lib/utils/array/array-util';
|
|
32
|
-
export * from './lib/utils/html/html-util';
|
|
33
|
-
export * from './lib/utils/html/html.module';
|
|
34
|
-
export * from './lib/utils/math/math-util';
|
|
35
|
-
export * from './lib/utils/object/object-util';
|
|
36
|
-
export * from './lib/utils/render/render.service';
|
|
37
|
-
export * from './lib/utils/render/on-demand-preload-strategy.service';
|
|
38
|
-
export * from './lib/utils/render/rendering.module';
|
|
39
|
-
export * from './lib/utils/scroll/scroll.directive';
|
|
40
|
-
export * from './lib/utils/scroll/scroll.module';
|
|
41
|
-
export * from './lib/utils/separator/separator.module';
|
|
42
|
-
export * from './lib/utils/separator/separator.pipe';
|
|
43
|
-
export * from './lib/core.module';
|
|
1
|
+
export * from './lib/classes/color.class';
|
|
2
|
+
export * from './lib/classes/datetime.class';
|
|
3
|
+
export * from './lib/classes/menu.class';
|
|
4
|
+
export * from './lib/classes/navigator.class';
|
|
5
|
+
export * from './lib/classes/popup.class';
|
|
6
|
+
export * from './lib/classes/promise.class';
|
|
7
|
+
export * from './lib/classes/sectionlist.class';
|
|
8
|
+
export * from './lib/classes/select.class';
|
|
9
|
+
export * from './lib/classes/base-page.class';
|
|
10
|
+
export * from './lib/error/error.class';
|
|
11
|
+
export * from './lib/error/error.module';
|
|
12
|
+
export * from './lib/error/error.service';
|
|
13
|
+
export * from './lib/events/keyboard';
|
|
14
|
+
export * from './lib/http/http-error.class';
|
|
15
|
+
export * from './lib/http/http-events.interceptor';
|
|
16
|
+
export * from './lib/http/http-request.class';
|
|
17
|
+
export * from './lib/http/http-result.class';
|
|
18
|
+
export * from './lib/http/http.module';
|
|
19
|
+
export * from './lib/http/http.service';
|
|
20
|
+
export * from './lib/platform/index';
|
|
21
|
+
export * from './lib/pipe/datetime.pipe';
|
|
22
|
+
export * from './lib/pipe/htmlToText.pipe';
|
|
23
|
+
export * from './lib/services/event.service';
|
|
24
|
+
export * from './lib/services/navigator.service';
|
|
25
|
+
export * from './lib/services/storage.service';
|
|
26
|
+
export * from './lib/services/config';
|
|
27
|
+
export * from './lib/translator/translator.service';
|
|
28
|
+
export * from './lib/translator/translator.pipe';
|
|
29
|
+
export * from './lib/translator/translator';
|
|
30
|
+
export * from './lib/translator/translator.module';
|
|
31
|
+
export * from './lib/utils/array/array-util';
|
|
32
|
+
export * from './lib/utils/html/html-util';
|
|
33
|
+
export * from './lib/utils/html/html.module';
|
|
34
|
+
export * from './lib/utils/math/math-util';
|
|
35
|
+
export * from './lib/utils/object/object-util';
|
|
36
|
+
export * from './lib/utils/render/render.service';
|
|
37
|
+
export * from './lib/utils/render/on-demand-preload-strategy.service';
|
|
38
|
+
export * from './lib/utils/render/rendering.module';
|
|
39
|
+
export * from './lib/utils/scroll/scroll.directive';
|
|
40
|
+
export * from './lib/utils/scroll/scroll.module';
|
|
41
|
+
export * from './lib/utils/separator/separator.module';
|
|
42
|
+
export * from './lib/utils/separator/separator.pipe';
|
|
43
|
+
export * from './lib/core.module';
|