@vertigis/viewer-spec 48.9.0 → 48.12.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/app-config/common/LayerListModelProperties.d.ts +0 -6
- package/app-config/schema/common-app-config.schema.json +1 -1
- package/app-config/schema/mobile-app-config.schema.json +1 -1
- package/app-config/schema/web-app-config.schema.json +1 -1
- package/app-config/web/LayerListModelProperties.d.ts +11 -0
- package/layout/schema/layout-common.xsd +15 -1
- package/messaging/registry/Operations.d.ts +2 -0
- package/messaging/registry/Operations.js +1 -1
- package/messaging/registry/map.d.ts +0 -1
- package/messaging/registry/workflow.d.ts +24 -5
- package/messaging/registry/workflow.js +1 -1
- package/messaging/schema/common-action.schema.json +115 -1
- package/messaging/schema/mobile-action.schema.json +115 -1
- package/messaging/schema/web-action.schema.json +71 -1
- package/package.json +4 -4
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -1,12 +1,6 @@
|
|
|
1
1
|
import type { ComponentModelProperties } from "./ComponentModelProperties.js";
|
|
2
|
-
import type { ItemRef } from "./ItemRef.js";
|
|
3
2
|
/**
|
|
4
3
|
* Configuration for a layer list component.
|
|
5
4
|
*/
|
|
6
5
|
export interface LayerListModelProperties extends ComponentModelProperties {
|
|
7
|
-
/**
|
|
8
|
-
* A reference to a Menu containing layer actions (menu items that take a
|
|
9
|
-
* layer as context).
|
|
10
|
-
*/
|
|
11
|
-
layerActions?: ItemRef;
|
|
12
6
|
}
|