@vertigis/arcgis-extensions 51.6.0 → 51.7.0
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/data/FeatureSet.d.ts +4 -4
- package/docs/html/classes/data_FeatureSet.FeatureSet.html +5 -5
- package/docs/html/classes/utilities_CaseInsensitiveObservableMap.CaseInsensitiveObservableMap.html +8 -8
- package/docs/html/classes/utilities_ObservableMap.ObservableMap.html +8 -8
- package/docs/html/classes/utilities_ObservableSet.ObservableSet.html +8 -8
- package/docs/html/classes/utilities_ReadOnlyMap.ReadOnlyMap.html +8 -8
- package/docs/html/interfaces/data_Feature.PresentableAttributes.html +9 -9
- package/docs/html/variables/version.version.html +1 -1
- package/mapping/_SublayerExtension.js +1 -1
- package/package.json +11 -12
- package/utilities/CaseInsensitiveObservableMap.d.ts +3 -3
- package/utilities/ObservableMap.d.ts +4 -4
- package/utilities/ObservableSet.d.ts +4 -4
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -8,10 +8,10 @@ export declare class CaseInsensitiveObservableMap<V> extends ObservableMap<strin
|
|
|
8
8
|
get(key: string): V;
|
|
9
9
|
set(key: string, value?: V): this;
|
|
10
10
|
has(key: string): boolean;
|
|
11
|
-
keys():
|
|
12
|
-
entries():
|
|
11
|
+
keys(): MapIterator<string>;
|
|
12
|
+
entries(): MapIterator<[string, V]>;
|
|
13
13
|
/**
|
|
14
14
|
* @inheritDoc
|
|
15
15
|
*/
|
|
16
|
-
[Symbol.iterator]():
|
|
16
|
+
[Symbol.iterator](): MapIterator<[string, V]>;
|
|
17
17
|
}
|
|
@@ -80,20 +80,20 @@ export declare class ObservableMap<K, V> extends ObservableMap_base implements M
|
|
|
80
80
|
* Returns the `[key, value]` pairs for each element in the map in insertion
|
|
81
81
|
* order.
|
|
82
82
|
*/
|
|
83
|
-
entries():
|
|
83
|
+
entries(): MapIterator<[K, V]>;
|
|
84
84
|
/**
|
|
85
85
|
* Returns the keys for each element in the map in insertion order.
|
|
86
86
|
*/
|
|
87
|
-
keys():
|
|
87
|
+
keys(): MapIterator<K>;
|
|
88
88
|
/**
|
|
89
89
|
* Returns the values for each element in the map in insertion order.
|
|
90
90
|
*/
|
|
91
|
-
values():
|
|
91
|
+
values(): MapIterator<V>;
|
|
92
92
|
/**
|
|
93
93
|
* Returns the `[key, value]` pairs for each element in the map in insertion
|
|
94
94
|
* order.
|
|
95
95
|
*/
|
|
96
|
-
[Symbol.iterator]():
|
|
96
|
+
[Symbol.iterator](): MapIterator<[K, V]>;
|
|
97
97
|
/**
|
|
98
98
|
* Returns a serializable representation of the map.
|
|
99
99
|
*/
|
|
@@ -67,19 +67,19 @@ export declare class ObservableSet<T> extends ObservableSet_base implements Set<
|
|
|
67
67
|
/**
|
|
68
68
|
* Returns each element in the set in insertion order.
|
|
69
69
|
*/
|
|
70
|
-
entries():
|
|
70
|
+
entries(): SetIterator<[T, T]>;
|
|
71
71
|
/**
|
|
72
72
|
* Returns each element in the set in insertion order.
|
|
73
73
|
*/
|
|
74
|
-
keys():
|
|
74
|
+
keys(): SetIterator<T>;
|
|
75
75
|
/**
|
|
76
76
|
* Returns each element in the set in insertion order.
|
|
77
77
|
*/
|
|
78
|
-
values():
|
|
78
|
+
values(): SetIterator<T>;
|
|
79
79
|
/**
|
|
80
80
|
* Returns each element in the set in insertion order.
|
|
81
81
|
*/
|
|
82
|
-
[Symbol.iterator]():
|
|
82
|
+
[Symbol.iterator](): SetIterator<T>;
|
|
83
83
|
/**
|
|
84
84
|
* Returns a serializable representation of the set.
|
|
85
85
|
*/
|
package/version.d.ts
CHANGED
package/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version="51.
|
|
1
|
+
export const version="51.7.0";
|