@ptsecurity/mosaic 15.8.9 → 15.8.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/core/formatters/index.d.ts +1 -1
- package/core/formatters/number/formatter.d.ts +30 -0
- package/core/locales/en-US.d.ts +12 -0
- package/core/locales/es-LA.d.ts +12 -0
- package/core/locales/fa-IR.d.ts +13 -0
- package/core/locales/locale-service.d.ts +134 -0
- package/core/locales/pt-BR.d.ts +12 -0
- package/core/locales/ru-RU.d.ts +12 -0
- package/core/locales/tk-TM.d.ts +64 -0
- package/core/locales/zh-CN.d.ts +11 -0
- package/esm2020/core/formatters/index.mjs +6 -2
- package/esm2020/core/formatters/number/formatter.mjs +133 -1
- package/esm2020/core/locales/en-US.mjs +13 -1
- package/esm2020/core/locales/es-LA.mjs +13 -1
- package/esm2020/core/locales/fa-IR.mjs +14 -1
- package/esm2020/core/locales/locale-service.mjs +6 -3
- package/esm2020/core/locales/pt-BR.mjs +13 -1
- package/esm2020/core/locales/ru-RU.mjs +13 -1
- package/esm2020/core/locales/tk-TM.mjs +63 -0
- package/esm2020/core/locales/zh-CN.mjs +12 -1
- package/esm2020/core/version.mjs +2 -2
- package/esm2020/select/select.component.mjs +2 -2
- package/esm2020/tree-select/tree-select.component.mjs +2 -2
- package/fesm2015/ptsecurity-mosaic-core.mjs +279 -5
- package/fesm2015/ptsecurity-mosaic-core.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-select.mjs +1 -1
- package/fesm2015/ptsecurity-mosaic-select.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-tree-select.mjs +1 -1
- package/fesm2015/ptsecurity-mosaic-tree-select.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-core.mjs +277 -4
- package/fesm2020/ptsecurity-mosaic-core.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-select.mjs +1 -1
- package/fesm2020/ptsecurity-mosaic-select.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-tree-select.mjs +1 -1
- package/fesm2020/ptsecurity-mosaic-tree-select.mjs.map +1 -1
- package/package.json +5 -5
@@ -3,7 +3,7 @@ import * as i1 from "./number/formatter";
|
|
3
3
|
import * as i2 from "./date/formatter.pipe";
|
4
4
|
export declare class McFormattersModule {
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<McFormattersModule, never>;
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<McFormattersModule, [typeof i1.McDecimalPipe, typeof i1.McTableNumberPipe, typeof i2.AbsoluteDateFormatterPipe, typeof i2.AbsoluteDateTimeFormatterPipe, typeof i2.AbsoluteDateShortFormatterPipe, typeof i2.AbsoluteShortDateTimeFormatterPipe, typeof i2.RelativeDateFormatterPipe, typeof i2.RelativeDateTimeFormatterPipe, typeof i2.RelativeShortDateFormatterPipe, typeof i2.RelativeShortDateTimeFormatterPipe, typeof i2.RangeDateFormatterPipe, typeof i2.RangeShortDateFormatterPipe, typeof i2.RangeDateTimeFormatterPipe, typeof i2.RangeShortDateTimeFormatterPipe, typeof i2.RangeMiddleDateTimeFormatterPipe], never, [typeof i1.McDecimalPipe, typeof i1.McTableNumberPipe, typeof i2.AbsoluteDateFormatterPipe, typeof i2.AbsoluteDateTimeFormatterPipe, typeof i2.AbsoluteDateShortFormatterPipe, typeof i2.AbsoluteShortDateTimeFormatterPipe, typeof i2.RelativeDateFormatterPipe, typeof i2.RelativeDateTimeFormatterPipe, typeof i2.RelativeShortDateFormatterPipe, typeof i2.RelativeShortDateTimeFormatterPipe, typeof i2.RangeDateFormatterPipe, typeof i2.RangeShortDateFormatterPipe, typeof i2.RangeDateTimeFormatterPipe, typeof i2.RangeShortDateTimeFormatterPipe, typeof i2.RangeMiddleDateTimeFormatterPipe]>;
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<McFormattersModule, [typeof i1.McDecimalPipe, typeof i1.McRoundDecimalPipe, typeof i1.McTableNumberPipe, typeof i2.AbsoluteDateFormatterPipe, typeof i2.AbsoluteDateTimeFormatterPipe, typeof i2.AbsoluteDateShortFormatterPipe, typeof i2.AbsoluteShortDateTimeFormatterPipe, typeof i2.RelativeDateFormatterPipe, typeof i2.RelativeDateTimeFormatterPipe, typeof i2.RelativeShortDateFormatterPipe, typeof i2.RelativeShortDateTimeFormatterPipe, typeof i2.RangeDateFormatterPipe, typeof i2.RangeShortDateFormatterPipe, typeof i2.RangeDateTimeFormatterPipe, typeof i2.RangeShortDateTimeFormatterPipe, typeof i2.RangeMiddleDateTimeFormatterPipe], never, [typeof i1.McDecimalPipe, typeof i1.McRoundDecimalPipe, typeof i1.McTableNumberPipe, typeof i2.AbsoluteDateFormatterPipe, typeof i2.AbsoluteDateTimeFormatterPipe, typeof i2.AbsoluteDateShortFormatterPipe, typeof i2.AbsoluteShortDateTimeFormatterPipe, typeof i2.RelativeDateFormatterPipe, typeof i2.RelativeDateTimeFormatterPipe, typeof i2.RelativeShortDateFormatterPipe, typeof i2.RelativeShortDateTimeFormatterPipe, typeof i2.RangeDateFormatterPipe, typeof i2.RangeShortDateFormatterPipe, typeof i2.RangeDateTimeFormatterPipe, typeof i2.RangeShortDateTimeFormatterPipe, typeof i2.RangeMiddleDateTimeFormatterPipe]>;
|
7
7
|
static ɵinj: i0.ɵɵInjectorDeclaration<McFormattersModule>;
|
8
8
|
}
|
9
9
|
export * from './number/formatter';
|
@@ -4,6 +4,17 @@ import * as i0 from "@angular/core";
|
|
4
4
|
export declare const MC_NUMBER_FORMATTER_OPTIONS: InjectionToken<string>;
|
5
5
|
export declare const MC_NUMBER_FORMATTER_DEFAULT_OPTIONS: ParsedDigitsInfo;
|
6
6
|
export declare const NUMBER_FORMAT_REGEXP: RegExp;
|
7
|
+
interface RoundDecimalOptions {
|
8
|
+
separator: string;
|
9
|
+
groupSeparator: string;
|
10
|
+
thousands?: string;
|
11
|
+
tenThousand?: string;
|
12
|
+
million?: string;
|
13
|
+
oneHundredMillions?: string;
|
14
|
+
billion?: string;
|
15
|
+
trillion: string;
|
16
|
+
rtl?: boolean;
|
17
|
+
}
|
7
18
|
declare class ParsedDigitsInfo {
|
8
19
|
useGrouping: boolean;
|
9
20
|
minimumIntegerDigits: number;
|
@@ -59,4 +70,23 @@ export declare class McTableNumberPipe implements PipeTransform {
|
|
59
70
|
static ɵpipe: i0.ɵɵPipeDeclaration<McTableNumberPipe, "mcTableNumber", false>;
|
60
71
|
static ɵprov: i0.ɵɵInjectableDeclaration<McTableNumberPipe>;
|
61
72
|
}
|
73
|
+
export declare function isWithin(startRange: number, endRange: number, valueToCheck: number): boolean;
|
74
|
+
export declare class McRoundDecimalPipe implements PipeTransform {
|
75
|
+
private id;
|
76
|
+
private localeService;
|
77
|
+
roundingOptions: RoundDecimalOptions;
|
78
|
+
constructor(id: string, localeService: McLocaleService);
|
79
|
+
transform(value: any, locale?: string): any;
|
80
|
+
private calculateDecimal;
|
81
|
+
/**
|
82
|
+
* 2 * 1000 is a number in the interval of [1500...2500)
|
83
|
+
*
|
84
|
+
* 2,0 * 1000 is a number in the interval of [1950...2050)
|
85
|
+
*/
|
86
|
+
private calculatePartsForThousands;
|
87
|
+
private calculateUnit;
|
88
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<McRoundDecimalPipe, [{ optional: true; }, { optional: true; }]>;
|
89
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<McRoundDecimalPipe, "mcRoundNumber", false>;
|
90
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<McRoundDecimalPipe>;
|
91
|
+
}
|
62
92
|
export {};
|
package/core/locales/en-US.d.ts
CHANGED
@@ -6,5 +6,17 @@ export declare const enUSLocaleData: {
|
|
6
6
|
datepicker: {
|
7
7
|
placeholder: string;
|
8
8
|
};
|
9
|
+
formatters: {
|
10
|
+
number: {
|
11
|
+
rounding: {
|
12
|
+
separator: string;
|
13
|
+
groupSeparator: string;
|
14
|
+
thousand: string;
|
15
|
+
million: string;
|
16
|
+
billion: string;
|
17
|
+
trillion: string;
|
18
|
+
};
|
19
|
+
};
|
20
|
+
};
|
9
21
|
};
|
10
22
|
};
|
package/core/locales/es-LA.d.ts
CHANGED
@@ -12,5 +12,17 @@ export declare const esLALocaleData: {
|
|
12
12
|
short: string;
|
13
13
|
};
|
14
14
|
};
|
15
|
+
formatters: {
|
16
|
+
number: {
|
17
|
+
rounding: {
|
18
|
+
separator: string;
|
19
|
+
groupSeparator: string;
|
20
|
+
thousand: string;
|
21
|
+
million: string;
|
22
|
+
billion: string;
|
23
|
+
trillion: string;
|
24
|
+
};
|
25
|
+
};
|
26
|
+
};
|
15
27
|
};
|
16
28
|
};
|
package/core/locales/fa-IR.d.ts
CHANGED
@@ -12,5 +12,18 @@ export declare const faIRLocaleData: {
|
|
12
12
|
short: string;
|
13
13
|
};
|
14
14
|
};
|
15
|
+
formatters: {
|
16
|
+
number: {
|
17
|
+
rounding: {
|
18
|
+
separator: string;
|
19
|
+
groupSeparator: string;
|
20
|
+
thousand: string;
|
21
|
+
million: string;
|
22
|
+
billion: string;
|
23
|
+
trillion: string;
|
24
|
+
rtl: boolean;
|
25
|
+
};
|
26
|
+
};
|
27
|
+
};
|
15
28
|
};
|
16
29
|
};
|
@@ -4,6 +4,68 @@ import * as i0 from "@angular/core";
|
|
4
4
|
export declare const MC_LOCALE_ID: InjectionToken<string>;
|
5
5
|
export declare const MC_DEFAULT_LOCALE_ID = "ru-RU";
|
6
6
|
export declare function MC_DEFAULT_LOCALE_DATA_FACTORY(): {
|
7
|
+
'tk-TM': {
|
8
|
+
select: {
|
9
|
+
hiddenItemsText: string;
|
10
|
+
};
|
11
|
+
datepicker: {
|
12
|
+
placeholder: string;
|
13
|
+
};
|
14
|
+
timepicker: {
|
15
|
+
placeholder: {
|
16
|
+
full: string;
|
17
|
+
short: string;
|
18
|
+
};
|
19
|
+
};
|
20
|
+
formatters: {
|
21
|
+
number: {
|
22
|
+
rounding: {
|
23
|
+
separator: string;
|
24
|
+
groupSeparator: string;
|
25
|
+
thousand: string;
|
26
|
+
million: string;
|
27
|
+
billion: string;
|
28
|
+
trillion: string;
|
29
|
+
};
|
30
|
+
};
|
31
|
+
};
|
32
|
+
input: {
|
33
|
+
number: {
|
34
|
+
groupSeparator: string[];
|
35
|
+
fractionSeparator: string;
|
36
|
+
};
|
37
|
+
};
|
38
|
+
codeBlock: {
|
39
|
+
softWrapOnTooltip: string;
|
40
|
+
softWrapOffTooltip: string;
|
41
|
+
downloadTooltip: string;
|
42
|
+
copiedTooltip: string;
|
43
|
+
copyTooltip: string;
|
44
|
+
viewAllText: string;
|
45
|
+
viewLessText: string;
|
46
|
+
openExternalSystemTooltip: string;
|
47
|
+
};
|
48
|
+
timezone: {
|
49
|
+
searchPlaceholder: string;
|
50
|
+
};
|
51
|
+
fileUpload: {
|
52
|
+
single: {
|
53
|
+
captionText: string;
|
54
|
+
browseLink: string;
|
55
|
+
};
|
56
|
+
multiple: {
|
57
|
+
captionText: string;
|
58
|
+
captionTextWhenSelected: string;
|
59
|
+
captionTextForCompactSize: string;
|
60
|
+
browseLink: string;
|
61
|
+
title: string;
|
62
|
+
gridHeaders: {
|
63
|
+
file: string;
|
64
|
+
size: string;
|
65
|
+
};
|
66
|
+
};
|
67
|
+
};
|
68
|
+
};
|
7
69
|
'zh-CN': {
|
8
70
|
select: {
|
9
71
|
hiddenItemsText: string;
|
@@ -17,6 +79,17 @@ export declare function MC_DEFAULT_LOCALE_DATA_FACTORY(): {
|
|
17
79
|
short: string;
|
18
80
|
};
|
19
81
|
};
|
82
|
+
formatters: {
|
83
|
+
number: {
|
84
|
+
rounding: {
|
85
|
+
separator: string;
|
86
|
+
groupSeparator: string;
|
87
|
+
tenThousand: string;
|
88
|
+
oneHundredMillions: string;
|
89
|
+
trillion: string;
|
90
|
+
};
|
91
|
+
};
|
92
|
+
};
|
20
93
|
};
|
21
94
|
'pt-BR': {
|
22
95
|
select: {
|
@@ -31,6 +104,18 @@ export declare function MC_DEFAULT_LOCALE_DATA_FACTORY(): {
|
|
31
104
|
short: string;
|
32
105
|
};
|
33
106
|
};
|
107
|
+
formatters: {
|
108
|
+
number: {
|
109
|
+
rounding: {
|
110
|
+
separator: string;
|
111
|
+
groupSeparator: string;
|
112
|
+
thousand: string;
|
113
|
+
million: string;
|
114
|
+
billion: string;
|
115
|
+
trillion: string;
|
116
|
+
};
|
117
|
+
};
|
118
|
+
};
|
34
119
|
};
|
35
120
|
'fa-IR': {
|
36
121
|
select: {
|
@@ -45,6 +130,19 @@ export declare function MC_DEFAULT_LOCALE_DATA_FACTORY(): {
|
|
45
130
|
short: string;
|
46
131
|
};
|
47
132
|
};
|
133
|
+
formatters: {
|
134
|
+
number: {
|
135
|
+
rounding: {
|
136
|
+
separator: string;
|
137
|
+
groupSeparator: string;
|
138
|
+
thousand: string;
|
139
|
+
million: string;
|
140
|
+
billion: string;
|
141
|
+
trillion: string;
|
142
|
+
rtl: boolean;
|
143
|
+
};
|
144
|
+
};
|
145
|
+
};
|
48
146
|
};
|
49
147
|
'es-LA': {
|
50
148
|
select: {
|
@@ -59,6 +157,18 @@ export declare function MC_DEFAULT_LOCALE_DATA_FACTORY(): {
|
|
59
157
|
short: string;
|
60
158
|
};
|
61
159
|
};
|
160
|
+
formatters: {
|
161
|
+
number: {
|
162
|
+
rounding: {
|
163
|
+
separator: string;
|
164
|
+
groupSeparator: string;
|
165
|
+
thousand: string;
|
166
|
+
million: string;
|
167
|
+
billion: string;
|
168
|
+
trillion: string;
|
169
|
+
};
|
170
|
+
};
|
171
|
+
};
|
62
172
|
};
|
63
173
|
'en-US': {
|
64
174
|
select: {
|
@@ -67,6 +177,18 @@ export declare function MC_DEFAULT_LOCALE_DATA_FACTORY(): {
|
|
67
177
|
datepicker: {
|
68
178
|
placeholder: string;
|
69
179
|
};
|
180
|
+
formatters: {
|
181
|
+
number: {
|
182
|
+
rounding: {
|
183
|
+
separator: string;
|
184
|
+
groupSeparator: string;
|
185
|
+
thousand: string;
|
186
|
+
million: string;
|
187
|
+
billion: string;
|
188
|
+
trillion: string;
|
189
|
+
};
|
190
|
+
};
|
191
|
+
};
|
70
192
|
};
|
71
193
|
'ru-RU': {
|
72
194
|
select: {
|
@@ -75,6 +197,18 @@ export declare function MC_DEFAULT_LOCALE_DATA_FACTORY(): {
|
|
75
197
|
datepicker: {
|
76
198
|
placeholder: string;
|
77
199
|
};
|
200
|
+
formatters: {
|
201
|
+
number: {
|
202
|
+
rounding: {
|
203
|
+
separator: string;
|
204
|
+
groupSeparator: string;
|
205
|
+
thousand: string;
|
206
|
+
million: string;
|
207
|
+
billion: string;
|
208
|
+
trillion: string;
|
209
|
+
};
|
210
|
+
};
|
211
|
+
};
|
78
212
|
};
|
79
213
|
items: {
|
80
214
|
id: string;
|
package/core/locales/pt-BR.d.ts
CHANGED
@@ -12,5 +12,17 @@ export declare const ptBRLocaleData: {
|
|
12
12
|
short: string;
|
13
13
|
};
|
14
14
|
};
|
15
|
+
formatters: {
|
16
|
+
number: {
|
17
|
+
rounding: {
|
18
|
+
separator: string;
|
19
|
+
groupSeparator: string;
|
20
|
+
thousand: string;
|
21
|
+
million: string;
|
22
|
+
billion: string;
|
23
|
+
trillion: string;
|
24
|
+
};
|
25
|
+
};
|
26
|
+
};
|
15
27
|
};
|
16
28
|
};
|
package/core/locales/ru-RU.d.ts
CHANGED
@@ -6,5 +6,17 @@ export declare const ruRULocaleData: {
|
|
6
6
|
datepicker: {
|
7
7
|
placeholder: string;
|
8
8
|
};
|
9
|
+
formatters: {
|
10
|
+
number: {
|
11
|
+
rounding: {
|
12
|
+
separator: string;
|
13
|
+
groupSeparator: string;
|
14
|
+
thousand: string;
|
15
|
+
million: string;
|
16
|
+
billion: string;
|
17
|
+
trillion: string;
|
18
|
+
};
|
19
|
+
};
|
20
|
+
};
|
9
21
|
};
|
10
22
|
};
|
@@ -0,0 +1,64 @@
|
|
1
|
+
export declare const tkTMLocaleData: {
|
2
|
+
'tk-TM': {
|
3
|
+
select: {
|
4
|
+
hiddenItemsText: string;
|
5
|
+
};
|
6
|
+
datepicker: {
|
7
|
+
placeholder: string;
|
8
|
+
};
|
9
|
+
timepicker: {
|
10
|
+
placeholder: {
|
11
|
+
full: string;
|
12
|
+
short: string;
|
13
|
+
};
|
14
|
+
};
|
15
|
+
formatters: {
|
16
|
+
number: {
|
17
|
+
rounding: {
|
18
|
+
separator: string;
|
19
|
+
groupSeparator: string;
|
20
|
+
thousand: string;
|
21
|
+
million: string;
|
22
|
+
billion: string;
|
23
|
+
trillion: string;
|
24
|
+
};
|
25
|
+
};
|
26
|
+
};
|
27
|
+
input: {
|
28
|
+
number: {
|
29
|
+
groupSeparator: string[];
|
30
|
+
fractionSeparator: string;
|
31
|
+
};
|
32
|
+
};
|
33
|
+
codeBlock: {
|
34
|
+
softWrapOnTooltip: string;
|
35
|
+
softWrapOffTooltip: string;
|
36
|
+
downloadTooltip: string;
|
37
|
+
copiedTooltip: string;
|
38
|
+
copyTooltip: string;
|
39
|
+
viewAllText: string;
|
40
|
+
viewLessText: string;
|
41
|
+
openExternalSystemTooltip: string;
|
42
|
+
};
|
43
|
+
timezone: {
|
44
|
+
searchPlaceholder: string;
|
45
|
+
};
|
46
|
+
fileUpload: {
|
47
|
+
single: {
|
48
|
+
captionText: string;
|
49
|
+
browseLink: string;
|
50
|
+
};
|
51
|
+
multiple: {
|
52
|
+
captionText: string;
|
53
|
+
captionTextWhenSelected: string;
|
54
|
+
captionTextForCompactSize: string;
|
55
|
+
browseLink: string;
|
56
|
+
title: string;
|
57
|
+
gridHeaders: {
|
58
|
+
file: string;
|
59
|
+
size: string;
|
60
|
+
};
|
61
|
+
};
|
62
|
+
};
|
63
|
+
};
|
64
|
+
};
|
package/core/locales/zh-CN.d.ts
CHANGED
@@ -12,5 +12,16 @@ export declare const znCNLocaleData: {
|
|
12
12
|
short: string;
|
13
13
|
};
|
14
14
|
};
|
15
|
+
formatters: {
|
16
|
+
number: {
|
17
|
+
rounding: {
|
18
|
+
separator: string;
|
19
|
+
groupSeparator: string;
|
20
|
+
tenThousand: string;
|
21
|
+
oneHundredMillions: string;
|
22
|
+
trillion: string;
|
23
|
+
};
|
24
|
+
};
|
25
|
+
};
|
15
26
|
};
|
16
27
|
};
|
@@ -2,12 +2,13 @@ import { NgModule } from '@angular/core';
|
|
2
2
|
import { DateAdapter, MC_DATE_LOCALE } from '../datetime';
|
3
3
|
import { DateFormatter } from './date/formatter';
|
4
4
|
import { AbsoluteDateFormatterPipe, AbsoluteDateShortFormatterPipe, AbsoluteDateTimeFormatterPipe, AbsoluteShortDateTimeFormatterPipe, RangeDateFormatterPipe, RangeDateTimeFormatterPipe, RangeMiddleDateTimeFormatterPipe, RangeShortDateFormatterPipe, RangeShortDateTimeFormatterPipe, RelativeDateFormatterPipe, RelativeDateTimeFormatterPipe, RelativeShortDateFormatterPipe, RelativeShortDateTimeFormatterPipe } from './date/formatter.pipe';
|
5
|
-
import { McDecimalPipe, McTableNumberPipe } from './number/formatter';
|
5
|
+
import { McDecimalPipe, McTableNumberPipe, McRoundDecimalPipe } from './number/formatter';
|
6
6
|
import * as i0 from "@angular/core";
|
7
7
|
export class McFormattersModule {
|
8
8
|
}
|
9
9
|
/** @nocollapse */ McFormattersModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: McFormattersModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
10
10
|
/** @nocollapse */ McFormattersModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: McFormattersModule, declarations: [McDecimalPipe,
|
11
|
+
McRoundDecimalPipe,
|
11
12
|
McTableNumberPipe,
|
12
13
|
AbsoluteDateFormatterPipe,
|
13
14
|
AbsoluteDateTimeFormatterPipe,
|
@@ -22,6 +23,7 @@ export class McFormattersModule {
|
|
22
23
|
RangeDateTimeFormatterPipe,
|
23
24
|
RangeShortDateTimeFormatterPipe,
|
24
25
|
RangeMiddleDateTimeFormatterPipe], exports: [McDecimalPipe,
|
26
|
+
McRoundDecimalPipe,
|
25
27
|
McTableNumberPipe,
|
26
28
|
AbsoluteDateFormatterPipe,
|
27
29
|
AbsoluteDateTimeFormatterPipe,
|
@@ -42,6 +44,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
42
44
|
args: [{
|
43
45
|
declarations: [
|
44
46
|
McDecimalPipe,
|
47
|
+
McRoundDecimalPipe,
|
45
48
|
McTableNumberPipe,
|
46
49
|
AbsoluteDateFormatterPipe,
|
47
50
|
AbsoluteDateTimeFormatterPipe,
|
@@ -59,6 +62,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
59
62
|
],
|
60
63
|
exports: [
|
61
64
|
McDecimalPipe,
|
65
|
+
McRoundDecimalPipe,
|
62
66
|
McTableNumberPipe,
|
63
67
|
AbsoluteDateFormatterPipe,
|
64
68
|
AbsoluteDateTimeFormatterPipe,
|
@@ -80,4 +84,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
80
84
|
export * from './number/formatter';
|
81
85
|
export * from './date/formatter';
|
82
86
|
export * from './date/formatter.pipe';
|
83
|
-
//# sourceMappingURL=data:application/json;base64,
|
87
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9tb3NhaWMvY29yZS9mb3JtYXR0ZXJzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFekMsT0FBTyxFQUFFLFdBQVcsRUFBRSxjQUFjLEVBQUUsTUFBTSxhQUFhLENBQUM7QUFFMUQsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBQ2pELE9BQU8sRUFDSCx5QkFBeUIsRUFDekIsOEJBQThCLEVBQzlCLDZCQUE2QixFQUM3QixrQ0FBa0MsRUFDbEMsc0JBQXNCLEVBQ3RCLDBCQUEwQixFQUMxQixnQ0FBZ0MsRUFDaEMsMkJBQTJCLEVBQzNCLCtCQUErQixFQUMvQix5QkFBeUIsRUFDekIsNkJBQTZCLEVBQzdCLDhCQUE4QixFQUM5QixrQ0FBa0MsRUFDckMsTUFBTSx1QkFBdUIsQ0FBQztBQUMvQixPQUFPLEVBQUUsYUFBYSxFQUFFLGlCQUFpQixFQUFFLGtCQUFrQixFQUFFLE1BQU0sb0JBQW9CLENBQUM7O0FBZ0QxRixNQUFNLE9BQU8sa0JBQWtCOztrSUFBbEIsa0JBQWtCO21JQUFsQixrQkFBa0IsaUJBM0N2QixhQUFhO1FBQ2Isa0JBQWtCO1FBQ2xCLGlCQUFpQjtRQUVqQix5QkFBeUI7UUFDekIsNkJBQTZCO1FBQzdCLDhCQUE4QjtRQUM5QixrQ0FBa0M7UUFFbEMseUJBQXlCO1FBQ3pCLDZCQUE2QjtRQUM3Qiw4QkFBOEI7UUFDOUIsa0NBQWtDO1FBRWxDLHNCQUFzQjtRQUN0QiwyQkFBMkI7UUFDM0IsMEJBQTBCO1FBQzFCLCtCQUErQjtRQUMvQixnQ0FBZ0MsYUFHaEMsYUFBYTtRQUNiLGtCQUFrQjtRQUNsQixpQkFBaUI7UUFFakIseUJBQXlCO1FBQ3pCLDZCQUE2QjtRQUM3Qiw4QkFBOEI7UUFDOUIsa0NBQWtDO1FBRWxDLHlCQUF5QjtRQUN6Qiw2QkFBNkI7UUFDN0IsOEJBQThCO1FBQzlCLGtDQUFrQztRQUVsQyxzQkFBc0I7UUFDdEIsMkJBQTJCO1FBQzNCLDBCQUEwQjtRQUMxQiwrQkFBK0I7UUFDL0IsZ0NBQWdDO21JQUkzQixrQkFBa0IsYUFGaEIsQ0FBQyxFQUFFLE9BQU8sRUFBRSxhQUFhLEVBQUUsSUFBSSxFQUFFLENBQUMsV0FBVyxFQUFFLGNBQWMsQ0FBQyxFQUFFLENBQUM7MkZBRW5FLGtCQUFrQjtrQkE3QzlCLFFBQVE7bUJBQUM7b0JBQ04sWUFBWSxFQUFFO3dCQUNWLGFBQWE7d0JBQ2Isa0JBQWtCO3dCQUNsQixpQkFBaUI7d0JBRWpCLHlCQUF5Qjt3QkFDekIsNkJBQTZCO3dCQUM3Qiw4QkFBOEI7d0JBQzlCLGtDQUFrQzt3QkFFbEMseUJBQXlCO3dCQUN6Qiw2QkFBNkI7d0JBQzdCLDhCQUE4Qjt3QkFDOUIsa0NBQWtDO3dCQUVsQyxzQkFBc0I7d0JBQ3RCLDJCQUEyQjt3QkFDM0IsMEJBQTBCO3dCQUMxQiwrQkFBK0I7d0JBQy9CLGdDQUFnQztxQkFDbkM7b0JBQ0QsT0FBTyxFQUFFO3dCQUNMLGFBQWE7d0JBQ2Isa0JBQWtCO3dCQUNsQixpQkFBaUI7d0JBRWpCLHlCQUF5Qjt3QkFDekIsNkJBQTZCO3dCQUM3Qiw4QkFBOEI7d0JBQzlCLGtDQUFrQzt3QkFFbEMseUJBQXlCO3dCQUN6Qiw2QkFBNkI7d0JBQzdCLDhCQUE4Qjt3QkFDOUIsa0NBQWtDO3dCQUVsQyxzQkFBc0I7d0JBQ3RCLDJCQUEyQjt3QkFDM0IsMEJBQTBCO3dCQUMxQiwrQkFBK0I7d0JBQy9CLGdDQUFnQztxQkFDbkM7b0JBQ0QsU0FBUyxFQUFFLENBQUMsRUFBRSxPQUFPLEVBQUUsYUFBYSxFQUFFLElBQUksRUFBRSxDQUFDLFdBQVcsRUFBRSxjQUFjLENBQUMsRUFBRSxDQUFDO2lCQUMvRTs7QUFJRCxjQUFjLG9CQUFvQixDQUFDO0FBQ25DLGNBQWMsa0JBQWtCLENBQUM7QUFDakMsY0FBYyx1QkFBdUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IERhdGVBZGFwdGVyLCBNQ19EQVRFX0xPQ0FMRSB9IGZyb20gJy4uL2RhdGV0aW1lJztcblxuaW1wb3J0IHsgRGF0ZUZvcm1hdHRlciB9IGZyb20gJy4vZGF0ZS9mb3JtYXR0ZXInO1xuaW1wb3J0IHtcbiAgICBBYnNvbHV0ZURhdGVGb3JtYXR0ZXJQaXBlLFxuICAgIEFic29sdXRlRGF0ZVNob3J0Rm9ybWF0dGVyUGlwZSxcbiAgICBBYnNvbHV0ZURhdGVUaW1lRm9ybWF0dGVyUGlwZSxcbiAgICBBYnNvbHV0ZVNob3J0RGF0ZVRpbWVGb3JtYXR0ZXJQaXBlLFxuICAgIFJhbmdlRGF0ZUZvcm1hdHRlclBpcGUsXG4gICAgUmFuZ2VEYXRlVGltZUZvcm1hdHRlclBpcGUsXG4gICAgUmFuZ2VNaWRkbGVEYXRlVGltZUZvcm1hdHRlclBpcGUsXG4gICAgUmFuZ2VTaG9ydERhdGVGb3JtYXR0ZXJQaXBlLFxuICAgIFJhbmdlU2hvcnREYXRlVGltZUZvcm1hdHRlclBpcGUsXG4gICAgUmVsYXRpdmVEYXRlRm9ybWF0dGVyUGlwZSxcbiAgICBSZWxhdGl2ZURhdGVUaW1lRm9ybWF0dGVyUGlwZSxcbiAgICBSZWxhdGl2ZVNob3J0RGF0ZUZvcm1hdHRlclBpcGUsXG4gICAgUmVsYXRpdmVTaG9ydERhdGVUaW1lRm9ybWF0dGVyUGlwZVxufSBmcm9tICcuL2RhdGUvZm9ybWF0dGVyLnBpcGUnO1xuaW1wb3J0IHsgTWNEZWNpbWFsUGlwZSwgTWNUYWJsZU51bWJlclBpcGUsIE1jUm91bmREZWNpbWFsUGlwZSB9IGZyb20gJy4vbnVtYmVyL2Zvcm1hdHRlcic7XG5cblxuQE5nTW9kdWxlKHtcbiAgICBkZWNsYXJhdGlvbnM6IFtcbiAgICAgICAgTWNEZWNpbWFsUGlwZSxcbiAgICAgICAgTWNSb3VuZERlY2ltYWxQaXBlLFxuICAgICAgICBNY1RhYmxlTnVtYmVyUGlwZSxcblxuICAgICAgICBBYnNvbHV0ZURhdGVGb3JtYXR0ZXJQaXBlLFxuICAgICAgICBBYnNvbHV0ZURhdGVUaW1lRm9ybWF0dGVyUGlwZSxcbiAgICAgICAgQWJzb2x1dGVEYXRlU2hvcnRGb3JtYXR0ZXJQaXBlLFxuICAgICAgICBBYnNvbHV0ZVNob3J0RGF0ZVRpbWVGb3JtYXR0ZXJQaXBlLFxuXG4gICAgICAgIFJlbGF0aXZlRGF0ZUZvcm1hdHRlclBpcGUsXG4gICAgICAgIFJlbGF0aXZlRGF0ZVRpbWVGb3JtYXR0ZXJQaXBlLFxuICAgICAgICBSZWxhdGl2ZVNob3J0RGF0ZUZvcm1hdHRlclBpcGUsXG4gICAgICAgIFJlbGF0aXZlU2hvcnREYXRlVGltZUZvcm1hdHRlclBpcGUsXG5cbiAgICAgICAgUmFuZ2VEYXRlRm9ybWF0dGVyUGlwZSxcbiAgICAgICAgUmFuZ2VTaG9ydERhdGVGb3JtYXR0ZXJQaXBlLFxuICAgICAgICBSYW5nZURhdGVUaW1lRm9ybWF0dGVyUGlwZSxcbiAgICAgICAgUmFuZ2VTaG9ydERhdGVUaW1lRm9ybWF0dGVyUGlwZSxcbiAgICAgICAgUmFuZ2VNaWRkbGVEYXRlVGltZUZvcm1hdHRlclBpcGVcbiAgICBdLFxuICAgIGV4cG9ydHM6IFtcbiAgICAgICAgTWNEZWNpbWFsUGlwZSxcbiAgICAgICAgTWNSb3VuZERlY2ltYWxQaXBlLFxuICAgICAgICBNY1RhYmxlTnVtYmVyUGlwZSxcblxuICAgICAgICBBYnNvbHV0ZURhdGVGb3JtYXR0ZXJQaXBlLFxuICAgICAgICBBYnNvbHV0ZURhdGVUaW1lRm9ybWF0dGVyUGlwZSxcbiAgICAgICAgQWJzb2x1dGVEYXRlU2hvcnRGb3JtYXR0ZXJQaXBlLFxuICAgICAgICBBYnNvbHV0ZVNob3J0RGF0ZVRpbWVGb3JtYXR0ZXJQaXBlLFxuXG4gICAgICAgIFJlbGF0aXZlRGF0ZUZvcm1hdHRlclBpcGUsXG4gICAgICAgIFJlbGF0aXZlRGF0ZVRpbWVGb3JtYXR0ZXJQaXBlLFxuICAgICAgICBSZWxhdGl2ZVNob3J0RGF0ZUZvcm1hdHRlclBpcGUsXG4gICAgICAgIFJlbGF0aXZlU2hvcnREYXRlVGltZUZvcm1hdHRlclBpcGUsXG5cbiAgICAgICAgUmFuZ2VEYXRlRm9ybWF0dGVyUGlwZSxcbiAgICAgICAgUmFuZ2VTaG9ydERhdGVGb3JtYXR0ZXJQaXBlLFxuICAgICAgICBSYW5nZURhdGVUaW1lRm9ybWF0dGVyUGlwZSxcbiAgICAgICAgUmFuZ2VTaG9ydERhdGVUaW1lRm9ybWF0dGVyUGlwZSxcbiAgICAgICAgUmFuZ2VNaWRkbGVEYXRlVGltZUZvcm1hdHRlclBpcGVcbiAgICBdLFxuICAgIHByb3ZpZGVyczogW3sgcHJvdmlkZTogRGF0ZUZvcm1hdHRlciwgZGVwczogW0RhdGVBZGFwdGVyLCBNQ19EQVRFX0xPQ0FMRV0gfV1cbn0pXG5leHBvcnQgY2xhc3MgTWNGb3JtYXR0ZXJzTW9kdWxlIHt9XG5cblxuZXhwb3J0ICogZnJvbSAnLi9udW1iZXIvZm9ybWF0dGVyJztcbmV4cG9ydCAqIGZyb20gJy4vZGF0ZS9mb3JtYXR0ZXInO1xuZXhwb3J0ICogZnJvbSAnLi9kYXRlL2Zvcm1hdHRlci5waXBlJztcbiJdfQ==
|