@arcgis/toolkit 5.0.0-next.43 → 5.0.0-next.45
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/dist/dom/index.d.cts +1 -1
- package/dist/dom/index.d.ts +1 -1
- package/dist/error/index.d.cts +2 -2
- package/dist/error/index.d.ts +2 -2
- package/dist/intl/index.d.cts +4 -4
- package/dist/intl/index.d.ts +4 -4
- package/package.json +1 -1
package/dist/dom/index.d.cts
CHANGED
|
@@ -76,7 +76,7 @@ export declare function unsafeGetCalciteModeName(el: HTMLElement): "dark" | "lig
|
|
|
76
76
|
* expected to respect what was set by the consumer.
|
|
77
77
|
*
|
|
78
78
|
* @remarks
|
|
79
|
-
* Prefer [useDirection()](https://qawebgis.esri.com/
|
|
79
|
+
* Prefer [useDirection()](https://qawebgis.esri.com/references/lumina/controllers/useDirection)
|
|
80
80
|
* to ensure your component is responsive to direction changes.
|
|
81
81
|
*/
|
|
82
82
|
export declare const unsafeGetElementDirection: (el: HTMLElement) => "ltr" | "rtl";
|
package/dist/dom/index.d.ts
CHANGED
|
@@ -76,7 +76,7 @@ export declare function unsafeGetCalciteModeName(el: HTMLElement): "dark" | "lig
|
|
|
76
76
|
* expected to respect what was set by the consumer.
|
|
77
77
|
*
|
|
78
78
|
* @remarks
|
|
79
|
-
* Prefer [useDirection()](https://qawebgis.esri.com/
|
|
79
|
+
* Prefer [useDirection()](https://qawebgis.esri.com/references/lumina/controllers/useDirection)
|
|
80
80
|
* to ensure your component is responsive to direction changes.
|
|
81
81
|
*/
|
|
82
82
|
export declare const unsafeGetElementDirection: (el: HTMLElement) => "ltr" | "rtl";
|
package/dist/error/index.d.cts
CHANGED
|
@@ -10,12 +10,12 @@
|
|
|
10
10
|
* - `process.env.NODE_ENV === "development"`
|
|
11
11
|
* - `process.env.NODE_ENV === "test"`
|
|
12
12
|
*
|
|
13
|
-
* [Documentation](https://qawebgis.esri.com/
|
|
13
|
+
* [Documentation](https://qawebgis.esri.com/references/lumina/publishing#internal-esri-environment)
|
|
14
14
|
*
|
|
15
15
|
* @remarks
|
|
16
16
|
* This function is primary for usage in support packages. In Lumina component
|
|
17
17
|
* packages, simpler alternatives are provided:
|
|
18
|
-
* https://qawebgis.esri.com/
|
|
18
|
+
* https://qawebgis.esri.com/references/lumina/publishing#bundling-code-conditionally
|
|
19
19
|
*/
|
|
20
20
|
export declare const isEsriInternalEnv: () => boolean;
|
|
21
21
|
/**
|
package/dist/error/index.d.ts
CHANGED
|
@@ -10,12 +10,12 @@
|
|
|
10
10
|
* - `process.env.NODE_ENV === "development"`
|
|
11
11
|
* - `process.env.NODE_ENV === "test"`
|
|
12
12
|
*
|
|
13
|
-
* [Documentation](https://qawebgis.esri.com/
|
|
13
|
+
* [Documentation](https://qawebgis.esri.com/references/lumina/publishing#internal-esri-environment)
|
|
14
14
|
*
|
|
15
15
|
* @remarks
|
|
16
16
|
* This function is primary for usage in support packages. In Lumina component
|
|
17
17
|
* packages, simpler alternatives are provided:
|
|
18
|
-
* https://qawebgis.esri.com/
|
|
18
|
+
* https://qawebgis.esri.com/references/lumina/publishing#bundling-code-conditionally
|
|
19
19
|
*/
|
|
20
20
|
export declare const isEsriInternalEnv: () => boolean;
|
|
21
21
|
/**
|
package/dist/intl/index.d.cts
CHANGED
|
@@ -23,7 +23,7 @@ export declare const defaultLocale = "en";
|
|
|
23
23
|
*
|
|
24
24
|
* @remarks
|
|
25
25
|
* Rather than using this function directly, prefer the
|
|
26
|
-
* [useT9n()](https://qawebgis.esri.com/
|
|
26
|
+
* [useT9n()](https://qawebgis.esri.com/references/lumina/controllers/useT9n)
|
|
27
27
|
* controller.
|
|
28
28
|
*
|
|
29
29
|
* @remarks
|
|
@@ -39,7 +39,7 @@ export declare const defaultLocale = "en";
|
|
|
39
39
|
* );
|
|
40
40
|
* ```
|
|
41
41
|
*
|
|
42
|
-
* @see [Lumina asset handling](https://qawebgis.esri.com/
|
|
42
|
+
* @see [Lumina asset handling](https://qawebgis.esri.com/references/lumina/assets)
|
|
43
43
|
*/
|
|
44
44
|
export declare const fetchT9nStringsBundle: <Strings extends GenericT9nStrings>(locale: string, assetsPath: string, prefix?: string) => Promise<Strings>;
|
|
45
45
|
/**
|
|
@@ -55,7 +55,7 @@ export interface GenericT9nStrings {
|
|
|
55
55
|
*
|
|
56
56
|
* @returns an object with the `lang` and `t9nLocale` properties.
|
|
57
57
|
*
|
|
58
|
-
* @see [lang vs t9nLocale](https://qawebgis.esri.com/
|
|
58
|
+
* @see [lang vs t9nLocale](https://qawebgis.esri.com/references/lumina/controllers/useT9n#difference-between-lang-and-t9nlocale).
|
|
59
59
|
*/
|
|
60
60
|
export declare const getElementLocale: (element: HTMLElement) => {
|
|
61
61
|
readonly lang: string;
|
|
@@ -103,7 +103,7 @@ export interface LocaleObserverResult<Strings extends GenericT9nStrings = Generi
|
|
|
103
103
|
*
|
|
104
104
|
* @remarks
|
|
105
105
|
* Rather than using this function directly, prefer the
|
|
106
|
-
* [useT9n()](https://qawebgis.esri.com/
|
|
106
|
+
* [useT9n()](https://qawebgis.esri.com/references/lumina/controllers/useT9n)
|
|
107
107
|
* controller.
|
|
108
108
|
*
|
|
109
109
|
* @example
|
package/dist/intl/index.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ export declare const defaultLocale = "en";
|
|
|
23
23
|
*
|
|
24
24
|
* @remarks
|
|
25
25
|
* Rather than using this function directly, prefer the
|
|
26
|
-
* [useT9n()](https://qawebgis.esri.com/
|
|
26
|
+
* [useT9n()](https://qawebgis.esri.com/references/lumina/controllers/useT9n)
|
|
27
27
|
* controller.
|
|
28
28
|
*
|
|
29
29
|
* @remarks
|
|
@@ -39,7 +39,7 @@ export declare const defaultLocale = "en";
|
|
|
39
39
|
* );
|
|
40
40
|
* ```
|
|
41
41
|
*
|
|
42
|
-
* @see [Lumina asset handling](https://qawebgis.esri.com/
|
|
42
|
+
* @see [Lumina asset handling](https://qawebgis.esri.com/references/lumina/assets)
|
|
43
43
|
*/
|
|
44
44
|
export declare const fetchT9nStringsBundle: <Strings extends GenericT9nStrings>(locale: string, assetsPath: string, prefix?: string) => Promise<Strings>;
|
|
45
45
|
/**
|
|
@@ -55,7 +55,7 @@ export interface GenericT9nStrings {
|
|
|
55
55
|
*
|
|
56
56
|
* @returns an object with the `lang` and `t9nLocale` properties.
|
|
57
57
|
*
|
|
58
|
-
* @see [lang vs t9nLocale](https://qawebgis.esri.com/
|
|
58
|
+
* @see [lang vs t9nLocale](https://qawebgis.esri.com/references/lumina/controllers/useT9n#difference-between-lang-and-t9nlocale).
|
|
59
59
|
*/
|
|
60
60
|
export declare const getElementLocale: (element: HTMLElement) => {
|
|
61
61
|
readonly lang: string;
|
|
@@ -103,7 +103,7 @@ export interface LocaleObserverResult<Strings extends GenericT9nStrings = Generi
|
|
|
103
103
|
*
|
|
104
104
|
* @remarks
|
|
105
105
|
* Rather than using this function directly, prefer the
|
|
106
|
-
* [useT9n()](https://qawebgis.esri.com/
|
|
106
|
+
* [useT9n()](https://qawebgis.esri.com/references/lumina/controllers/useT9n)
|
|
107
107
|
* controller.
|
|
108
108
|
*
|
|
109
109
|
* @example
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/toolkit",
|
|
3
|
-
"version": "5.0.0-next.
|
|
3
|
+
"version": "5.0.0-next.45",
|
|
4
4
|
"description": "Collection of common internal patterns and utilities for ArcGIS Maps SDK for JavaScript components.",
|
|
5
5
|
"homepage": "https://developers.arcgis.com/javascript/latest/",
|
|
6
6
|
"sideEffects": false,
|