@vertigis/viewer-spec 51.5.0 → 51.6.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/layout/schema/layout-common.xsd +4 -3
- package/messaging/MessageBus.d.ts +2 -2
- package/package.json +2 -2
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -568,13 +568,14 @@
|
|
|
568
568
|
<complexType>
|
|
569
569
|
<complexContent mixed="true">
|
|
570
570
|
<extension base="tns:Component">
|
|
571
|
-
|
|
571
|
+
<attribute name="showBackground" type="boolean" default="true">
|
|
572
572
|
<annotation>
|
|
573
573
|
<documentation xml:lang="en">
|
|
574
|
-
Whether or not the text background should be displayed. Mobile
|
|
574
|
+
Whether or not the text background should be displayed. Mobile
|
|
575
|
+
only. Defaults to true.
|
|
575
576
|
</documentation>
|
|
576
577
|
</annotation>
|
|
577
|
-
</attribute>
|
|
578
|
+
</attribute>
|
|
578
579
|
</extension>
|
|
579
580
|
</complexContent>
|
|
580
581
|
</complexType>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { Action
|
|
1
|
+
import type { Action } from "@vertigis/arcgis-extensions/support/Action";
|
|
2
2
|
import type { Command } from "./Command.js";
|
|
3
3
|
import type { Event } from "./Event.js";
|
|
4
4
|
import type { Operation } from "./Operation.js";
|
|
@@ -24,7 +24,7 @@ export interface MessageBus {
|
|
|
24
24
|
*
|
|
25
25
|
* @param name Name of the operation.
|
|
26
26
|
*/
|
|
27
|
-
operation<T = void, TResult = undefined>(action:
|
|
27
|
+
operation<T = void, TResult = undefined>(action: Action): Operation<T, TResult>;
|
|
28
28
|
/**
|
|
29
29
|
* Determines whether a command with the given name exists.
|
|
30
30
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vertigis/viewer-spec",
|
|
3
|
-
"version": "51.
|
|
3
|
+
"version": "51.6.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"description": "VertiGIS Viewer Specification",
|
|
6
6
|
"type": "module",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@types/node": "14.14.41",
|
|
45
45
|
"@typescript-eslint/eslint-plugin": "5.42.1",
|
|
46
46
|
"@typescript-eslint/parser": "5.42.1",
|
|
47
|
-
"@vertigis/arcgis-extensions": "37.
|
|
47
|
+
"@vertigis/arcgis-extensions": "37.7.0",
|
|
48
48
|
"del-cli": "5.0.0",
|
|
49
49
|
"eslint": "8.27.0",
|
|
50
50
|
"eslint-config-prettier": "8.5.0",
|
package/version.d.ts
CHANGED
package/version.js
CHANGED