@progress/kendo-react-intl 14.4.1-develop.13 → 14.4.1-develop.15
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/Intl/IntlProvider.d.ts +1 -1
- package/Intl/IntlService.d.ts +1 -1
- package/Intl/main.d.ts +1 -1
- package/Localization/LocalizationProvider.d.ts +1 -1
- package/Localization/main.d.ts +1 -1
- package/hooks/useInternationalization.d.ts +1 -1
- package/hooks/useLocalization.d.ts +1 -1
- package/index.d.mts +3 -3
- package/index.d.ts +3 -3
- package/package-metadata.mjs +2 -2
- package/package.json +3 -3
package/Intl/IntlProvider.d.ts
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
*/
|
|
8
8
|
import { default as PropTypes } from 'prop-types';
|
|
9
9
|
import { IntlService } from './IntlService.js';
|
|
10
|
-
import { IntlProviderProps } from './IntlProviderProps
|
|
10
|
+
import { IntlProviderProps } from './IntlProviderProps';
|
|
11
11
|
import * as React from 'react';
|
|
12
12
|
/**
|
|
13
13
|
* A React component which provides an internationalization service. Expects a locale string as a property of the component.
|
package/Intl/IntlService.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { DateFormatOptions, NumberFormatOptions, DateFieldNameOptions, DateFormatNameOptions, DateFormatPart } from './../coreExports
|
|
8
|
+
import { DateFormatOptions, NumberFormatOptions, DateFieldNameOptions, DateFormatNameOptions, DateFormatPart } from './../coreExports';
|
|
9
9
|
/**
|
|
10
10
|
* A service which provides internationalization methods and is bound to a specific locale.
|
|
11
11
|
*/
|
package/Intl/main.d.ts
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import { IntlProvider } from './IntlProvider.js';
|
|
9
|
-
import { IntlProviderProps } from './IntlProviderProps
|
|
9
|
+
import { IntlProviderProps } from './IntlProviderProps';
|
|
10
10
|
import { IntlService } from './IntlService.js';
|
|
11
11
|
import { load } from './load.js';
|
|
12
12
|
export { IntlProvider, IntlProviderProps, IntlService, load };
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import { default as PropTypes } from 'prop-types';
|
|
9
|
-
import { LocalizationProviderProps } from './LocalizationProviderProps
|
|
9
|
+
import { LocalizationProviderProps } from './LocalizationProviderProps';
|
|
10
10
|
import { LocalizationService } from './LocalizationService.js';
|
|
11
11
|
import * as React from 'react';
|
|
12
12
|
/**
|
package/Localization/main.d.ts
CHANGED
|
@@ -7,6 +7,6 @@
|
|
|
7
7
|
*/
|
|
8
8
|
import { loadMessages } from './loadMessages.js';
|
|
9
9
|
import { LocalizationProvider } from './LocalizationProvider.js';
|
|
10
|
-
import { LocalizationProviderProps } from './LocalizationProviderProps
|
|
10
|
+
import { LocalizationProviderProps } from './LocalizationProviderProps';
|
|
11
11
|
import { LocalizationService } from './LocalizationService.js';
|
|
12
12
|
export { loadMessages, LocalizationProvider, LocalizationProviderProps, LocalizationService };
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { IntlService } from '../Intl/main
|
|
8
|
+
import { IntlService } from '../Intl/main';
|
|
9
9
|
/**
|
|
10
10
|
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to an [IntlService](https://www.telerik.com/kendo-react-ui/components/intl/api/intlservice).
|
|
11
11
|
*/
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { LocalizationService } from '../Localization/main
|
|
8
|
+
import { LocalizationService } from '../Localization/main';
|
|
9
9
|
/**
|
|
10
10
|
* A custom [React Hook](https://react.dev/reference/react/hooks) providing access to an [LocalizationService](https://www.telerik.com/kendo-react-ui/components/intl/api/localizationservice).
|
|
11
11
|
*/
|
package/index.d.mts
CHANGED
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
*/
|
|
8
8
|
export { GlobalizationContext } from './globalization/GlobalizationContext.js';
|
|
9
9
|
export { messages as localizationMessages } from './Localization/messages.js';
|
|
10
|
-
export * from './Intl/main
|
|
11
|
-
export * from './Localization/main
|
|
12
|
-
export * from './coreExports
|
|
10
|
+
export * from './Intl/main';
|
|
11
|
+
export * from './Localization/main';
|
|
12
|
+
export * from './coreExports';
|
|
13
13
|
export * from './intlUtils.js';
|
|
14
14
|
export * from './hooks/index.js';
|
|
15
15
|
export * from './server/ServerGlobalization.js';
|
package/index.d.ts
CHANGED
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
*/
|
|
8
8
|
export { GlobalizationContext } from './globalization/GlobalizationContext.js';
|
|
9
9
|
export { messages as localizationMessages } from './Localization/messages.js';
|
|
10
|
-
export * from './Intl/main
|
|
11
|
-
export * from './Localization/main
|
|
12
|
-
export * from './coreExports
|
|
10
|
+
export * from './Intl/main';
|
|
11
|
+
export * from './Localization/main';
|
|
12
|
+
export * from './coreExports';
|
|
13
13
|
export * from './intlUtils.js';
|
|
14
14
|
export * from './hooks/index.js';
|
|
15
15
|
export * from './server/ServerGlobalization.js';
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = Object.freeze({
|
|
|
7
7
|
productName: 'KendoReact',
|
|
8
8
|
productCode: 'KENDOUIREACT',
|
|
9
9
|
productCodes: ['KENDOUIREACT'],
|
|
10
|
-
publishDate:
|
|
11
|
-
version: '14.4.1-develop.
|
|
10
|
+
publishDate: 1777447042,
|
|
11
|
+
version: '14.4.1-develop.15',
|
|
12
12
|
licensingDocsUrl: 'https://www.telerik.com/kendo-react-ui/components/my-license/'
|
|
13
13
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-intl",
|
|
3
|
-
"version": "14.4.1-develop.
|
|
3
|
+
"version": "14.4.1-develop.15",
|
|
4
4
|
"description": "React Internationalization package provides services for parsing and formatting of dates and numbers. KendoReact Internationalization package",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"@progress/kendo-intl": "^3.2.1",
|
|
29
29
|
"@progress/kendo-licensing": "^1.7.2",
|
|
30
|
-
"@progress/kendo-react-common": "14.4.1-develop.
|
|
30
|
+
"@progress/kendo-react-common": "14.4.1-develop.15",
|
|
31
31
|
"react": "^18.0.0 || ^19.0.0",
|
|
32
32
|
"react-dom": "^18.0.0 || ^19.0.0"
|
|
33
33
|
},
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"package": {
|
|
55
55
|
"productName": "KendoReact",
|
|
56
56
|
"productCode": "KENDOUIREACT",
|
|
57
|
-
"publishDate":
|
|
57
|
+
"publishDate": 1777447042,
|
|
58
58
|
"licensingDocsUrl": "https://www.telerik.com/kendo-react-ui/components/my-license/"
|
|
59
59
|
}
|
|
60
60
|
},
|