@arcgis/map-components-react 4.32.0-next.5 → 4.32.0-next.8
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/components.d.ts +1 -0
- package/dist/components.js +1 -0
- package/package.json +5 -23
package/dist/components.d.ts
CHANGED
|
@@ -132,6 +132,7 @@ export declare const ArcgisFeatureTable: import("@lit/react").ReactWebComponent<
|
|
|
132
132
|
onarcgisCellKeydown: EventName<CustomEvent<__esri.FeatureTableCellKeydownEvent>>;
|
|
133
133
|
onarcgisCellPointerout: EventName<CustomEvent<__esri.FeatureTableCellPointeroutEvent>>;
|
|
134
134
|
onarcgisCellPointerover: EventName<CustomEvent<__esri.FeatureTableCellPointeroverEvent>>;
|
|
135
|
+
onarcgisColumnReorder: EventName<CustomEvent<__esri.FeatureTableColumnReorderEvent>>;
|
|
135
136
|
onarcgisPropertyChange: EventName<CustomEvent<{
|
|
136
137
|
name: "state" | "size" | "effectiveSize" | "isQueryingOrSyncing" | "layerView";
|
|
137
138
|
}>>;
|
package/dist/components.js
CHANGED
|
@@ -204,6 +204,7 @@ export const ArcgisFeatureTable = /*@__PURE__*/ createComponent({
|
|
|
204
204
|
onarcgisCellKeydown: "arcgisCellKeydown",
|
|
205
205
|
onarcgisCellPointerout: "arcgisCellPointerout",
|
|
206
206
|
onarcgisCellPointerover: "arcgisCellPointerover",
|
|
207
|
+
onarcgisColumnReorder: "arcgisColumnReorder",
|
|
207
208
|
onarcgisPropertyChange: "arcgisPropertyChange",
|
|
208
209
|
onarcgisReady: "arcgisReady",
|
|
209
210
|
onarcgisSelectionChange: "arcgisSelectionChange",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/map-components-react",
|
|
3
|
-
"version": "4.32.0-next.
|
|
3
|
+
"version": "4.32.0-next.8",
|
|
4
4
|
"description": "A set of React components that wrap ArcGIS map components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ArcGIS",
|
|
@@ -27,33 +27,15 @@
|
|
|
27
27
|
"files": [
|
|
28
28
|
"dist/"
|
|
29
29
|
],
|
|
30
|
-
"publishConfig": {
|
|
31
|
-
"registry": "https://registry.npmjs.org/",
|
|
32
|
-
"access": "public"
|
|
33
|
-
},
|
|
34
30
|
"license": "SEE LICENSE.md",
|
|
35
|
-
"scripts": {
|
|
36
|
-
"build": "yarn pre && yarn compile",
|
|
37
|
-
"clean": "rimraf dist node_modules .turbo",
|
|
38
|
-
"compile": "yarn tsc",
|
|
39
|
-
"pre": "rimraf dist",
|
|
40
|
-
"tsc": "tsc"
|
|
41
|
-
},
|
|
42
31
|
"dependencies": {
|
|
43
|
-
"@arcgis/map-components": "4.32.0-next.
|
|
32
|
+
"@arcgis/map-components": "4.32.0-next.8",
|
|
44
33
|
"@lit/react": "^1.0.5",
|
|
45
34
|
"tslib": "^2.7.0"
|
|
46
35
|
},
|
|
47
|
-
"devDependencies": {
|
|
48
|
-
"@types/node": "^20.2.5",
|
|
49
|
-
"@types/react-dom": "^18.2.0",
|
|
50
|
-
"rimraf": "^5.0.0",
|
|
51
|
-
"typescript": "~5.4.0"
|
|
52
|
-
},
|
|
53
36
|
"peerDependencies": {
|
|
54
|
-
"@arcgis/core": ">=4.
|
|
37
|
+
"@arcgis/core": ">=4.32.0-next <4.33",
|
|
55
38
|
"react": ">=18.0.0 <19.0.0",
|
|
56
39
|
"react-dom": ">=18.0.0 <19.0.0"
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
}
|
|
40
|
+
}
|
|
41
|
+
}
|