jmapcloud-ng-types 1.1.7 → 1.1.9

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/public/form.d.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jmapcloud-ng-types",
3
- "version": "1.1.7",
3
+ "version": "1.1.9",
4
4
  "description": "JMap Cloud specific version of JMap Cloud NG types and interfaces",
5
5
  "main": "src/app.ts",
6
6
  "scripts": {
package/public/form.d.ts CHANGED
@@ -3,7 +3,7 @@ declare type JFormDialogParams = JFormDialogLayerParams | JFormDialogTableParams
3
3
  declare type JFormDialogLayerParams = {
4
4
  layerId: JId
5
5
  featureId?: JId
6
- feature?: GeoJSON.Feature
6
+ feature: GeoJSON.Feature
7
7
  isReadOnly: boolean
8
8
  onSubmit?: () => void
9
9
  }
@@ -13,4 +13,4 @@ declare type JFormDialogTableParams = {
13
13
  row?: { [key: string]: any }
14
14
  isReadOnly: boolean
15
15
  onSubmit?: () => void
16
- }
16
+ }