@progress/kendo-angular-intl 22.1.0-develop.9 → 23.0.0-develop.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/date.pipe.d.ts +1 -1
- package/fesm2022/progress-kendo-angular-intl.mjs +13 -13
- package/intl.service.d.ts +1 -1
- package/number.pipe.d.ts +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +4 -4
package/date.pipe.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ import { DateFormatOptions } from '@progress/kendo-intl';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
/**
|
|
10
10
|
* Formats a date value to a string based on the requested format.
|
|
11
|
-
* This pipe uses the [IntlService](
|
|
11
|
+
* This pipe uses the [IntlService](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/api/intlservice).
|
|
12
12
|
*
|
|
13
13
|
* @example
|
|
14
14
|
* ```html
|
|
@@ -16,24 +16,24 @@ const packageMetadata = {
|
|
|
16
16
|
productCode: 'KENDOUIANGULAR',
|
|
17
17
|
productCodes: ['KENDOUIANGULAR'],
|
|
18
18
|
publishDate: 0,
|
|
19
|
-
version: '
|
|
19
|
+
version: '23.0.0-develop.1',
|
|
20
20
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
21
21
|
};
|
|
22
22
|
|
|
23
|
-
const DOCS_URL = 'https://www.telerik.com/kendo-angular-ui/components/internationalization/troubleshooting
|
|
23
|
+
const DOCS_URL = 'https://www.telerik.com/kendo-angular-ui/components/internationalization/troubleshooting';
|
|
24
24
|
/**
|
|
25
25
|
* @hidden
|
|
26
26
|
*/
|
|
27
27
|
const errorSolutions = {
|
|
28
|
-
'NoCurrency': `Solution: ${DOCS_URL}#
|
|
29
|
-
'NoCurrencyDisplay': `Solution: ${DOCS_URL}#
|
|
30
|
-
'NoCurrencyRegion': `Solution: ${DOCS_URL}#
|
|
31
|
-
'NoDateFieldNames': `Solution: ${DOCS_URL}#
|
|
32
|
-
'NoFirstDay': `Solution: ${DOCS_URL}#
|
|
33
|
-
'NoGMTInfo': `Solution: ${DOCS_URL}#
|
|
34
|
-
'NoLocale': `Solution: ${DOCS_URL}#
|
|
35
|
-
'NoValidCurrency': `Solution: ${DOCS_URL}#
|
|
36
|
-
'NoWeekData': `Solution: ${DOCS_URL}#
|
|
28
|
+
'NoCurrency': `Solution: ${DOCS_URL}#no-currency`,
|
|
29
|
+
'NoCurrencyDisplay': `Solution: ${DOCS_URL}#no-currency-display`,
|
|
30
|
+
'NoCurrencyRegion': `Solution: ${DOCS_URL}#no-currency-region`,
|
|
31
|
+
'NoDateFieldNames': `Solution: ${DOCS_URL}#no-date-filed-names`,
|
|
32
|
+
'NoFirstDay': `Solution: ${DOCS_URL}#no-first-day`,
|
|
33
|
+
'NoGMTInfo': `Solution: ${DOCS_URL}#no-gmt-info`,
|
|
34
|
+
'NoLocale': `Solution: ${DOCS_URL}#no-locale`,
|
|
35
|
+
'NoValidCurrency': `Solution: ${DOCS_URL}#no-valid-currency`,
|
|
36
|
+
'NoWeekData': `Solution: ${DOCS_URL}#no-week-data`
|
|
37
37
|
};
|
|
38
38
|
|
|
39
39
|
function formatMessage(error) {
|
|
@@ -389,7 +389,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
389
389
|
const isNumeric = (value) => !isNaN(value - parseFloat(value));
|
|
390
390
|
/**
|
|
391
391
|
* Formats a date value to a string based on the requested format.
|
|
392
|
-
* This pipe uses the [IntlService](
|
|
392
|
+
* This pipe uses the [IntlService](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/api/intlservice).
|
|
393
393
|
*
|
|
394
394
|
* @example
|
|
395
395
|
* ```html
|
|
@@ -446,7 +446,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
446
446
|
|
|
447
447
|
/**
|
|
448
448
|
* Formats a number value to a string based on the requested format.
|
|
449
|
-
* This pipe uses the [`IntlService`](
|
|
449
|
+
* This pipe uses the [`IntlService`](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/api/intlservice).
|
|
450
450
|
*
|
|
451
451
|
* @example
|
|
452
452
|
* ```ng-template-no-run
|
package/intl.service.d.ts
CHANGED
|
@@ -48,7 +48,7 @@ export declare abstract class IntlService {
|
|
|
48
48
|
abstract toString(value: any, format: string | any, localeId?: string): string;
|
|
49
49
|
/**
|
|
50
50
|
* Converts a `Date` object into a string based on the specified format
|
|
51
|
-
* ([see example](
|
|
51
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/parsing-and-formatting#date-formatting)).
|
|
52
52
|
* If no format is provided, the default short date format is used.
|
|
53
53
|
*
|
|
54
54
|
* @param value - The date to format.
|
package/number.pipe.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ import { NumberFormatOptions } from '@progress/kendo-intl';
|
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
/**
|
|
10
10
|
* Formats a number value to a string based on the requested format.
|
|
11
|
-
* This pipe uses the [`IntlService`](
|
|
11
|
+
* This pipe uses the [`IntlService`](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/api/intlservice).
|
|
12
12
|
*
|
|
13
13
|
* @example
|
|
14
14
|
* ```ng-template-no-run
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "
|
|
10
|
+
"publishDate": 1770286809,
|
|
11
|
+
"version": "23.0.0-develop.1",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-intl",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "23.0.0-develop.1",
|
|
4
4
|
"description": "Kendo UI Internationalization for Angular components",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"package": {
|
|
20
20
|
"productName": "Kendo UI for Angular",
|
|
21
21
|
"productCode": "KENDOUIANGULAR",
|
|
22
|
-
"publishDate":
|
|
22
|
+
"publishDate": 1770286809,
|
|
23
23
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
24
24
|
}
|
|
25
25
|
},
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
"@angular/common": "19 - 21",
|
|
35
35
|
"@angular/core": "19 - 21",
|
|
36
36
|
"@angular/platform-browser": "19 - 21",
|
|
37
|
-
"@progress/kendo-angular-common": "
|
|
37
|
+
"@progress/kendo-angular-common": "23.0.0-develop.1",
|
|
38
38
|
"@progress/kendo-licensing": "^1.10.0",
|
|
39
39
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"tslib": "^2.3.1",
|
|
43
|
-
"@progress/kendo-angular-schematics": "
|
|
43
|
+
"@progress/kendo-angular-schematics": "23.0.0-develop.1",
|
|
44
44
|
"@progress/kendo-intl": "3.2.1"
|
|
45
45
|
},
|
|
46
46
|
"schematics": "./schematics/collection.json",
|