@arcgis/components-utils 4.33.0-next.9 → 4.33.0-next.90
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/array-utils.d.cts +5 -0
- package/dist/array-utils.d.ts +5 -0
- package/dist/css-utils.d.cts +15 -0
- package/dist/css-utils.d.ts +15 -0
- package/dist/deferred.d.cts +30 -0
- package/dist/deferred.d.ts +30 -0
- package/dist/dom.d.cts +65 -0
- package/dist/dom.d.ts +65 -0
- package/dist/errors.d.cts +30 -0
- package/dist/errors.d.ts +30 -0
- package/dist/guid.d.cts +5 -0
- package/dist/guid.d.ts +5 -0
- package/dist/index.cjs +68 -158
- package/dist/index.d.cts +15 -378
- package/dist/index.d.ts +15 -378
- package/dist/index.js +29 -55
- package/dist/intl.d.cts +91 -0
- package/dist/intl.d.ts +91 -0
- package/dist/preamble.d.cts +17 -0
- package/dist/preamble.d.ts +17 -0
- package/dist/strings.d.cts +29 -0
- package/dist/strings.d.ts +29 -0
- package/dist/tests/utils.d.cts +1 -0
- package/dist/tests/utils.d.ts +1 -0
- package/dist/text.d.cts +7 -0
- package/dist/text.d.ts +7 -0
- package/dist/timeouts.d.cts +7 -0
- package/dist/timeouts.d.ts +7 -0
- package/dist/type-guards.d.cts +12 -0
- package/dist/type-guards.d.ts +12 -0
- package/dist/types.d.cts +30 -0
- package/dist/types.d.ts +30 -0
- package/dist/ui.d.cts +8 -0
- package/dist/ui.d.ts +8 -0
- package/dist/url.d.cts +14 -0
- package/dist/url.d.ts +14 -0
- package/package.json +1 -1
package/dist/intl.d.ts
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The interface for translated strings.
|
|
3
|
+
*/
|
|
4
|
+
export interface GenericT9nStrings {
|
|
5
|
+
[key: string]: GenericT9nStrings | string;
|
|
6
|
+
}
|
|
7
|
+
declare const supportedLocalesArray: readonly ["ar", "bg", "bs", "ca", "cs", "da", "de", "el", "en", "es", "et", "fi", "fr", "he", "hr", "hu", "id", "it", "ja", "ko", "lt", "lv", "nl", "nb", "no", "pl", "pt-BR", "pt-PT", "ro", "ru", "sk", "sl", "sr", "sv", "th", "tr", "uk", "vi", "zh-CN", "zh-HK", "zh-TW"];
|
|
8
|
+
/**
|
|
9
|
+
* The list of supported locales for ArcGIS Maps SDK for JavaScript components.
|
|
10
|
+
*/
|
|
11
|
+
export declare const supportedLocales: Set<"hr" | "th" | "tr" | "ar" | "bg" | "bs" | "ca" | "cs" | "da" | "de" | "el" | "en" | "es" | "et" | "fi" | "fr" | "he" | "hu" | "id" | "it" | "ja" | "ko" | "lt" | "lv" | "nl" | "nb" | "no" | "pl" | "pt-BR" | "pt-PT" | "ro" | "ru" | "sk" | "sl" | "sr" | "sv" | "uk" | "vi" | "zh-CN" | "zh-HK" | "zh-TW">;
|
|
12
|
+
export type SupportedLocale = (typeof supportedLocalesArray)[number];
|
|
13
|
+
export declare const defaultLocale = "en";
|
|
14
|
+
/**
|
|
15
|
+
* Fetch the T9N strings bundle for the given locale, assets path and prefix.
|
|
16
|
+
* The locale must be one of the supported locales.
|
|
17
|
+
* If the locale is not supported, it will default to 'en'.
|
|
18
|
+
* If the T9N strings bundle cannot be found, it will default to 'en'.
|
|
19
|
+
*
|
|
20
|
+
* @remarks
|
|
21
|
+
* Rather than using this function directly, prefer the `useT9n()` controller.
|
|
22
|
+
*
|
|
23
|
+
* @example
|
|
24
|
+
* ```ts
|
|
25
|
+
* const t9nStrings = await fetchT9nStringsBundle("en", getAssetPath("./assets/coding-editor/t9n"), "messages.");
|
|
26
|
+
* ```
|
|
27
|
+
*/
|
|
28
|
+
export declare function fetchT9nStringsBundle<Strings extends GenericT9nStrings>(
|
|
29
|
+
/** The locale for which to fetch the T9N strings */
|
|
30
|
+
locale: string,
|
|
31
|
+
/** The path to the assets folder where the T9N strings are located */
|
|
32
|
+
assetsPath: string,
|
|
33
|
+
/** The prefix to use for the T9N strings file name. */
|
|
34
|
+
prefix?: string): Promise<Strings>;
|
|
35
|
+
/**
|
|
36
|
+
* Get the locale of the given element.
|
|
37
|
+
* It will look for the lang attribute on the element and its ancestors.
|
|
38
|
+
* If not lang is found, it will default to 'en'.
|
|
39
|
+
*/
|
|
40
|
+
export declare function getElementLocales(element: HTMLElement): {
|
|
41
|
+
readonly lang: string;
|
|
42
|
+
readonly t9nLocale: SupportedLocale;
|
|
43
|
+
};
|
|
44
|
+
export declare function normalizeLocale(locale: string): SupportedLocale;
|
|
45
|
+
export type LocaleObserver<Strings extends GenericT9nStrings = GenericT9nStrings> = {
|
|
46
|
+
/** The T9N strings of the component */
|
|
47
|
+
t9nStrings: Strings;
|
|
48
|
+
/**
|
|
49
|
+
* The locale of the component set by the `lang` attribute on the component host element or one of its ancestors.
|
|
50
|
+
*/
|
|
51
|
+
lang: string;
|
|
52
|
+
/**
|
|
53
|
+
* The locale used by the component to load the T9N strings.
|
|
54
|
+
* It may be different than the locale of the component host element that was set by the `lang` attribute.
|
|
55
|
+
*/
|
|
56
|
+
t9nLocale: SupportedLocale;
|
|
57
|
+
};
|
|
58
|
+
/**
|
|
59
|
+
* Start the locale observer for the given component.
|
|
60
|
+
* The callback will be called when the locale changes for the component.
|
|
61
|
+
* It will observe the lang attribute on the component and its ancestors.
|
|
62
|
+
* The callback is called once at the beginning.
|
|
63
|
+
*
|
|
64
|
+
* @remarks
|
|
65
|
+
* Rather than using this function directly, prefer the `useT9n()` controller.
|
|
66
|
+
*/
|
|
67
|
+
export declare function startLocaleObserver<Strings extends GenericT9nStrings = GenericT9nStrings>(
|
|
68
|
+
/** The Web component HTML element that is doing the fetching */
|
|
69
|
+
element: HTMLElement,
|
|
70
|
+
/**
|
|
71
|
+
* The callback to get path to the assets folder where the T9N strings are
|
|
72
|
+
* located.
|
|
73
|
+
*
|
|
74
|
+
* @example
|
|
75
|
+
* ```ts
|
|
76
|
+
* () => getAssetPath("./assets")
|
|
77
|
+
* ```
|
|
78
|
+
*/
|
|
79
|
+
getAssetsPath: () => string,
|
|
80
|
+
/** The callback to call when the locale changes */
|
|
81
|
+
onUpdated: (payload: LocaleObserver<Strings>) => void,
|
|
82
|
+
/**
|
|
83
|
+
* Optionally override the asset file name.
|
|
84
|
+
* Default file name is the component tag name without the part before the
|
|
85
|
+
* first dash (e.g. `arcgis-map` becomes `map`).
|
|
86
|
+
*
|
|
87
|
+
* Set to null if the component has no localization strings, but you still
|
|
88
|
+
* wish to use `startLocaleObserver` to get the locale information.
|
|
89
|
+
*/
|
|
90
|
+
assetName?: string | null): () => void;
|
|
91
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare const extractMinorVersion: (version: string) => string;
|
|
2
|
+
/**
|
|
3
|
+
* Creates preamble text from a version number. The preamble text is used in stencil.config.ts and inserts a comment at the top of the generated bundles.
|
|
4
|
+
* The preamble text contains the version number and a link to the license.
|
|
5
|
+
* The version number is typically extracted from the package.json file.
|
|
6
|
+
* @example
|
|
7
|
+
* ```ts
|
|
8
|
+
* const preamble = getPreamble("4.18.2-beta.1");
|
|
9
|
+
* console.log(preamble);
|
|
10
|
+
* // All material copyright Esri, All Rights Reserved, unless otherwise specified.
|
|
11
|
+
* // See https://js.arcgis.com/4.18/esri/copyright.txt for details.
|
|
12
|
+
* // v4.18.2-beta.1
|
|
13
|
+
* ```
|
|
14
|
+
* @param version the version number, typically coming from package.json.
|
|
15
|
+
* @returns a string containing the preamble text.
|
|
16
|
+
*/
|
|
17
|
+
export declare const getPreamble: (version: string) => string;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare const extractMinorVersion: (version: string) => string;
|
|
2
|
+
/**
|
|
3
|
+
* Creates preamble text from a version number. The preamble text is used in stencil.config.ts and inserts a comment at the top of the generated bundles.
|
|
4
|
+
* The preamble text contains the version number and a link to the license.
|
|
5
|
+
* The version number is typically extracted from the package.json file.
|
|
6
|
+
* @example
|
|
7
|
+
* ```ts
|
|
8
|
+
* const preamble = getPreamble("4.18.2-beta.1");
|
|
9
|
+
* console.log(preamble);
|
|
10
|
+
* // All material copyright Esri, All Rights Reserved, unless otherwise specified.
|
|
11
|
+
* // See https://js.arcgis.com/4.18/esri/copyright.txt for details.
|
|
12
|
+
* // v4.18.2-beta.1
|
|
13
|
+
* ```
|
|
14
|
+
* @param version the version number, typically coming from package.json.
|
|
15
|
+
* @returns a string containing the preamble text.
|
|
16
|
+
*/
|
|
17
|
+
export declare const getPreamble: (version: string) => string;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Add quotes to a string for display purposes.
|
|
3
|
+
* If the string contains a double quote, then single quotes will be used.
|
|
4
|
+
* If the string contains a single quote, then double quotes will be used.
|
|
5
|
+
* If the string contains both, then double quotes will be used and the single quotes will be escaped.
|
|
6
|
+
* @param value The string to quote
|
|
7
|
+
* @returns The quoted string
|
|
8
|
+
*/
|
|
9
|
+
export declare function quoteString(value: string): string;
|
|
10
|
+
/**
|
|
11
|
+
* Create a filter expression from a filter word.
|
|
12
|
+
* @param filterWord The filter word to create the expression from.
|
|
13
|
+
* @returns The filter expression.
|
|
14
|
+
*/
|
|
15
|
+
export declare function createFilterExpression(filterWord: string): RegExp;
|
|
16
|
+
/**
|
|
17
|
+
* Replace values in a string using the format {valueName} with the value from the values object.
|
|
18
|
+
* If the value is not found in the values object, then the value is not replaced.
|
|
19
|
+
* @param message The string to replace values in.
|
|
20
|
+
* @param values The values to replace in the string.
|
|
21
|
+
* @returns The string with the values replaced.
|
|
22
|
+
*/
|
|
23
|
+
export declare function setValuesInString(message: string | null | undefined, values?: Record<string, string>): string;
|
|
24
|
+
/**
|
|
25
|
+
* Add LTR marks to a string to ensure it is displayed as LTR.
|
|
26
|
+
* @param value The string to add LTR marks to.
|
|
27
|
+
* @returns The string with LTR marks.
|
|
28
|
+
*/
|
|
29
|
+
export declare function addLTRMark(value: string | undefined): string;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Add quotes to a string for display purposes.
|
|
3
|
+
* If the string contains a double quote, then single quotes will be used.
|
|
4
|
+
* If the string contains a single quote, then double quotes will be used.
|
|
5
|
+
* If the string contains both, then double quotes will be used and the single quotes will be escaped.
|
|
6
|
+
* @param value The string to quote
|
|
7
|
+
* @returns The quoted string
|
|
8
|
+
*/
|
|
9
|
+
export declare function quoteString(value: string): string;
|
|
10
|
+
/**
|
|
11
|
+
* Create a filter expression from a filter word.
|
|
12
|
+
* @param filterWord The filter word to create the expression from.
|
|
13
|
+
* @returns The filter expression.
|
|
14
|
+
*/
|
|
15
|
+
export declare function createFilterExpression(filterWord: string): RegExp;
|
|
16
|
+
/**
|
|
17
|
+
* Replace values in a string using the format {valueName} with the value from the values object.
|
|
18
|
+
* If the value is not found in the values object, then the value is not replaced.
|
|
19
|
+
* @param message The string to replace values in.
|
|
20
|
+
* @param values The values to replace in the string.
|
|
21
|
+
* @returns The string with the values replaced.
|
|
22
|
+
*/
|
|
23
|
+
export declare function setValuesInString(message: string | null | undefined, values?: Record<string, string>): string;
|
|
24
|
+
/**
|
|
25
|
+
* Add LTR marks to a string to ensure it is displayed as LTR.
|
|
26
|
+
* @param value The string to add LTR marks to.
|
|
27
|
+
* @returns The string with LTR marks.
|
|
28
|
+
*/
|
|
29
|
+
export declare function addLTRMark(value: string | undefined): string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function captureConsoleErrors(): unknown[][];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function captureConsoleErrors(): unknown[][];
|
package/dist/text.d.cts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/** Convert kebab-case string to PascalCase */
|
|
2
|
+
export declare const kebabToPascal: (string: string) => string;
|
|
3
|
+
/** Convert camelCase string to kebab-case */
|
|
4
|
+
export declare const camelToKebab: (string: string) => string;
|
|
5
|
+
export declare const capitalize: <T extends string>(string: T) => Capitalize<T>;
|
|
6
|
+
export declare const uncapitalize: <T extends string>(string: T) => Uncapitalize<T>;
|
|
7
|
+
export declare const camelToHuman: (string: string) => string;
|
package/dist/text.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/** Convert kebab-case string to PascalCase */
|
|
2
|
+
export declare const kebabToPascal: (string: string) => string;
|
|
3
|
+
/** Convert camelCase string to kebab-case */
|
|
4
|
+
export declare const camelToKebab: (string: string) => string;
|
|
5
|
+
export declare const capitalize: <T extends string>(string: T) => Capitalize<T>;
|
|
6
|
+
export declare const uncapitalize: <T extends string>(string: T) => Uncapitalize<T>;
|
|
7
|
+
export declare const camelToHuman: (string: string) => string;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Like setTimeout(), but does not advance the clock if the program is
|
|
3
|
+
* stopped on a debugger breakpoint.
|
|
4
|
+
*
|
|
5
|
+
* @see https://devtopia.esri.com/WebGIS/arcgis-js-api/discussions/60405
|
|
6
|
+
*/
|
|
7
|
+
export declare function devToolsAwareTimeout(callback: () => void, timeout: number): ReturnType<typeof setInterval>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Like setTimeout(), but does not advance the clock if the program is
|
|
3
|
+
* stopped on a debugger breakpoint.
|
|
4
|
+
*
|
|
5
|
+
* @see https://devtopia.esri.com/WebGIS/arcgis-js-api/discussions/60405
|
|
6
|
+
*/
|
|
7
|
+
export declare function devToolsAwareTimeout(callback: () => void, timeout: number): ReturnType<typeof setInterval>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Safeguard to ensure that an item is not null.
|
|
3
|
+
* @param item The item to check.
|
|
4
|
+
* @returns Returns true if the item is not null.
|
|
5
|
+
*/
|
|
6
|
+
export declare function isNotNull<T>(item: T | null): item is T;
|
|
7
|
+
/**
|
|
8
|
+
* Safe guard to ensure that an item is not undefined.
|
|
9
|
+
* @param item The item to check.
|
|
10
|
+
* @returns Returns true if the item is not undefined.
|
|
11
|
+
*/
|
|
12
|
+
export declare function isNotUndefined<T>(item: T | undefined): item is T;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Safeguard to ensure that an item is not null.
|
|
3
|
+
* @param item The item to check.
|
|
4
|
+
* @returns Returns true if the item is not null.
|
|
5
|
+
*/
|
|
6
|
+
export declare function isNotNull<T>(item: T | null): item is T;
|
|
7
|
+
/**
|
|
8
|
+
* Safe guard to ensure that an item is not undefined.
|
|
9
|
+
* @param item The item to check.
|
|
10
|
+
* @returns Returns true if the item is not undefined.
|
|
11
|
+
*/
|
|
12
|
+
export declare function isNotUndefined<T>(item: T | undefined): item is T;
|
package/dist/types.d.cts
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export type Nil = null | undefined;
|
|
2
|
+
export type IHandle = {
|
|
3
|
+
remove: () => void;
|
|
4
|
+
};
|
|
5
|
+
/**
|
|
6
|
+
* Identity function - returns back the first parameter
|
|
7
|
+
*
|
|
8
|
+
* Useful when providing a "mapping function" is required, but you have no need
|
|
9
|
+
* to change the value
|
|
10
|
+
*/
|
|
11
|
+
export declare const identity: <T>(value: T) => T;
|
|
12
|
+
/**
|
|
13
|
+
* Get back a type whose keys are all marked as mutable (no longer "readonly")
|
|
14
|
+
*
|
|
15
|
+
* It's a best practice to mark all keys as readonly by default in all the
|
|
16
|
+
* interfaces and types you create. Benefits:
|
|
17
|
+
* - Explicitly documents that a given key won't be modified/should not be
|
|
18
|
+
* modified
|
|
19
|
+
* - Favors more declarative and functional style programming
|
|
20
|
+
* - Helps prevent bugs related to mutation unexpectedly affecting other places
|
|
21
|
+
* that held a reference to the same object
|
|
22
|
+
*
|
|
23
|
+
* Your function could return a type like "ResolvedConfig", that has all keys
|
|
24
|
+
* marked as readonly. But inside the function you may wish to modify some of
|
|
25
|
+
* the keys while creating the object - casting the object to
|
|
26
|
+
* `Writable<ResolvedConfig>` helps with that
|
|
27
|
+
*/
|
|
28
|
+
export type Writable<T> = {
|
|
29
|
+
-readonly [k in keyof T]: T[k];
|
|
30
|
+
};
|
package/dist/types.d.ts
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export type Nil = null | undefined;
|
|
2
|
+
export type IHandle = {
|
|
3
|
+
remove: () => void;
|
|
4
|
+
};
|
|
5
|
+
/**
|
|
6
|
+
* Identity function - returns back the first parameter
|
|
7
|
+
*
|
|
8
|
+
* Useful when providing a "mapping function" is required, but you have no need
|
|
9
|
+
* to change the value
|
|
10
|
+
*/
|
|
11
|
+
export declare const identity: <T>(value: T) => T;
|
|
12
|
+
/**
|
|
13
|
+
* Get back a type whose keys are all marked as mutable (no longer "readonly")
|
|
14
|
+
*
|
|
15
|
+
* It's a best practice to mark all keys as readonly by default in all the
|
|
16
|
+
* interfaces and types you create. Benefits:
|
|
17
|
+
* - Explicitly documents that a given key won't be modified/should not be
|
|
18
|
+
* modified
|
|
19
|
+
* - Favors more declarative and functional style programming
|
|
20
|
+
* - Helps prevent bugs related to mutation unexpectedly affecting other places
|
|
21
|
+
* that held a reference to the same object
|
|
22
|
+
*
|
|
23
|
+
* Your function could return a type like "ResolvedConfig", that has all keys
|
|
24
|
+
* marked as readonly. But inside the function you may wish to modify some of
|
|
25
|
+
* the keys while creating the object - casting the object to
|
|
26
|
+
* `Writable<ResolvedConfig>` helps with that
|
|
27
|
+
*/
|
|
28
|
+
export type Writable<T> = {
|
|
29
|
+
-readonly [k in keyof T]: T[k];
|
|
30
|
+
};
|
package/dist/ui.d.cts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Allows to debounce a function.
|
|
3
|
+
* @template F Function type that should extend a function with any parameters and a return type.
|
|
4
|
+
* @param func Function to be debounced
|
|
5
|
+
* @param waitFor Debounce time in milliseconds
|
|
6
|
+
* @returns Returns a function that can be called to debounce the given function.
|
|
7
|
+
*/
|
|
8
|
+
export declare function debounce<F extends (...args: Parameters<F>) => ReturnType<F>>(func: F, waitFor?: number): (...args: Parameters<F>) => void;
|
package/dist/ui.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Allows to debounce a function.
|
|
3
|
+
* @template F Function type that should extend a function with any parameters and a return type.
|
|
4
|
+
* @param func Function to be debounced
|
|
5
|
+
* @param waitFor Debounce time in milliseconds
|
|
6
|
+
* @returns Returns a function that can be called to debounce the given function.
|
|
7
|
+
*/
|
|
8
|
+
export declare function debounce<F extends (...args: Parameters<F>) => ReturnType<F>>(func: F, waitFor?: number): (...args: Parameters<F>) => void;
|
package/dist/url.d.cts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Compares two url strings for their origin and returns true if they have the same origin.
|
|
3
|
+
* @param url1 First url string
|
|
4
|
+
* @param url2 Second url string
|
|
5
|
+
* @param ignoreProtocol Indicates if protocol comparison should be ignored
|
|
6
|
+
* @returns True if the two url strings have the same origin
|
|
7
|
+
*/
|
|
8
|
+
export declare function hasSameOrigin(url1: string | null | undefined, url2: string | null | undefined, ignoreProtocol?: boolean): boolean;
|
|
9
|
+
/**
|
|
10
|
+
* Tests if a url string is a URL or not.
|
|
11
|
+
* @param url The url string to test
|
|
12
|
+
* @returns True if the string is a URL.
|
|
13
|
+
*/
|
|
14
|
+
export declare function isURL(url: string): boolean;
|
package/dist/url.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Compares two url strings for their origin and returns true if they have the same origin.
|
|
3
|
+
* @param url1 First url string
|
|
4
|
+
* @param url2 Second url string
|
|
5
|
+
* @param ignoreProtocol Indicates if protocol comparison should be ignored
|
|
6
|
+
* @returns True if the two url strings have the same origin
|
|
7
|
+
*/
|
|
8
|
+
export declare function hasSameOrigin(url1: string | null | undefined, url2: string | null | undefined, ignoreProtocol?: boolean): boolean;
|
|
9
|
+
/**
|
|
10
|
+
* Tests if a url string is a URL or not.
|
|
11
|
+
* @param url The url string to test
|
|
12
|
+
* @returns True if the string is a URL.
|
|
13
|
+
*/
|
|
14
|
+
export declare function isURL(url: string): boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/components-utils",
|
|
3
|
-
"version": "4.33.0-next.
|
|
3
|
+
"version": "4.33.0-next.90",
|
|
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,
|