@arcgis/components-utils 4.33.0-next.99 → 4.34.0-next.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/dist/array-utils.d.cts +1 -1
- package/dist/array-utils.d.ts +1 -1
- package/dist/css-utils.d.cts +1 -1
- package/dist/css-utils.d.ts +1 -1
- package/dist/deferred.d.cts +9 -4
- package/dist/deferred.d.ts +9 -4
- package/dist/dom.d.cts +8 -8
- package/dist/dom.d.ts +8 -8
- package/dist/errors.d.cts +3 -3
- package/dist/errors.d.ts +3 -3
- package/dist/guid.d.cts +1 -1
- package/dist/guid.d.ts +1 -1
- package/dist/index.cjs +83 -139
- package/dist/index.js +83 -139
- package/dist/intl.d.cts +7 -7
- package/dist/intl.d.ts +7 -7
- package/dist/strings.d.cts +4 -4
- package/dist/strings.d.ts +4 -4
- package/dist/timeouts.d.cts +1 -1
- package/dist/timeouts.d.ts +1 -1
- package/dist/type-guards.d.cts +2 -2
- package/dist/type-guards.d.ts +2 -2
- package/dist/ui.d.cts +1 -1
- package/dist/ui.d.ts +1 -1
- package/dist/url.d.cts +2 -2
- package/dist/url.d.ts +2 -2
- package/package.json +2 -2
package/dist/url.d.ts
CHANGED
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
* @param ignoreProtocol Indicates if protocol comparison should be ignored
|
|
6
6
|
* @returns True if the two url strings have the same origin
|
|
7
7
|
*/
|
|
8
|
-
export declare
|
|
8
|
+
export declare const hasSameOrigin: (url1: string | null | undefined, url2: string | null | undefined, ignoreProtocol?: boolean) => boolean;
|
|
9
9
|
/**
|
|
10
10
|
* Tests if a url string is a URL or not.
|
|
11
11
|
* @param url The url string to test
|
|
12
12
|
* @returns True if the string is a URL.
|
|
13
13
|
*/
|
|
14
|
-
export declare
|
|
14
|
+
export declare const isURL: (url: string) => boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/components-utils",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.34.0-next.1",
|
|
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,
|
|
@@ -20,6 +20,6 @@
|
|
|
20
20
|
],
|
|
21
21
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"tslib": "^2.
|
|
23
|
+
"tslib": "^2.8.1"
|
|
24
24
|
}
|
|
25
25
|
}
|