@vertigis/viewer-spec 52.1.0 → 53.1.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.
Files changed (41) hide show
  1. package/analytics/WebAction.d.ts +1 -1
  2. package/app-config/schema/common-app-config.schema.json +1 -1
  3. package/app-config/schema/mobile-app-config.schema.json +1 -1
  4. package/app-config/schema/web-app-config.schema.json +1 -1
  5. package/app-config/web/HasVisibilityFilters.d.ts +2 -2
  6. package/app-config/web/ProjectModelProperties.d.ts +12 -0
  7. package/app-config/web/ProjectModelProperties.js +1 -0
  8. package/app-config/web/SharedProjectsModelProperties.d.ts +53 -0
  9. package/app-config/web/SharedProjectsModelProperties.js +1 -0
  10. package/app-config/web/SharedStorageModelProperties.d.ts +30 -0
  11. package/app-config/web/SharedStorageModelProperties.js +1 -0
  12. package/app-config/web/VertigisWebModelProperties.d.ts +0 -6
  13. package/layout/schema/layout-web.xsd +13 -0
  14. package/messaging/common.d.ts +22 -0
  15. package/messaging/registry/Commands.d.ts +2 -0
  16. package/messaging/registry/Commands.js +1 -1
  17. package/messaging/registry/Events.d.ts +2 -0
  18. package/messaging/registry/Events.js +1 -1
  19. package/messaging/registry/Operations.d.ts +2 -0
  20. package/messaging/registry/Operations.js +1 -1
  21. package/messaging/registry/app.d.ts +4 -2
  22. package/messaging/registry/drawing.d.ts +3 -12
  23. package/messaging/registry/layers.d.ts +83 -2
  24. package/messaging/registry/layers.js +1 -1
  25. package/messaging/registry/project.d.ts +141 -0
  26. package/messaging/registry/project.js +1 -0
  27. package/messaging/registry/results.d.ts +33 -17
  28. package/messaging/registry/results.js +1 -1
  29. package/messaging/registry/system.d.ts +25 -3
  30. package/messaging/registry/system.js +1 -1
  31. package/messaging/registry/ui.d.ts +9 -0
  32. package/messaging/registry/ui.js +1 -1
  33. package/messaging/schema/common-action.schema.json +634 -502
  34. package/messaging/schema/common-event.schema.json +371 -412
  35. package/messaging/schema/mobile-action.schema.json +665 -524
  36. package/messaging/schema/mobile-event.schema.json +406 -447
  37. package/messaging/schema/web-action.schema.json +2264 -856
  38. package/messaging/schema/web-event.schema.json +542 -481
  39. package/package.json +5 -2
  40. package/version.d.ts +1 -1
  41. package/version.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertigis/viewer-spec",
3
- "version": "52.1.0",
3
+ "version": "53.1.0",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "description": "VertiGIS Viewer Specification",
6
6
  "type": "module",
@@ -36,7 +36,7 @@
36
36
  "author": "VertiGIS Ltd.",
37
37
  "peerDependencies": {
38
38
  "@arcgis/core": "*",
39
- "@vertigis/arcgis-extensions": ">= 40.0.0 < 41.0.0"
39
+ "@vertigis/arcgis-extensions": ">= 40.1.0 < 41.0.0"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@prettier/plugin-xml": "2.2.0",
@@ -63,6 +63,9 @@
63
63
  "typescript": "4.9.5",
64
64
  "weaktuplemap": "1.0.0"
65
65
  },
66
+ "overrides": {
67
+ "xlsx": "https://cdn.sheetjs.com/xlsx-0.19.3/xlsx-0.19.3.tgz"
68
+ },
66
69
  "simple-git-hooks": {
67
70
  "pre-commit": "npx lint-staged"
68
71
  },
package/version.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * The current version of the VertiGIS Studio Viewer Specification.
3
3
  */
4
- export declare const version = "52.1.0";
4
+ export declare const version = "53.1.0";
package/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * The current version of the VertiGIS Studio Viewer Specification.
3
3
  */
4
- export const version = "52.1.0";
4
+ export const version = "53.1.0";