@vertigis/viewer-spec 47.1.0 → 47.2.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/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/layout/schema/layout-common.xsd +33 -3
- package/package.json +2 -2
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -713,13 +713,43 @@
|
|
|
713
713
|
<element name="layer-presets" substitutionGroup="tns:component">
|
|
714
714
|
<annotation>
|
|
715
715
|
<documentation xml:lang="en">
|
|
716
|
-
A component that shows a list of layer presets and allows users
|
|
717
|
-
|
|
716
|
+
A component that shows a list of layer presets and allows users to apply
|
|
717
|
+
them.
|
|
718
718
|
</documentation>
|
|
719
719
|
</annotation>
|
|
720
720
|
<complexType>
|
|
721
721
|
<complexContent>
|
|
722
|
-
<extension base="tns:Component"
|
|
722
|
+
<extension base="tns:Component">
|
|
723
|
+
<attribute name="filter-by">
|
|
724
|
+
<annotation>
|
|
725
|
+
<documentation xml:lang="en">
|
|
726
|
+
Indicates how the filter box will behave; if the value is
|
|
727
|
+
'none', no filter box will be displayed. Web only.
|
|
728
|
+
</documentation>
|
|
729
|
+
</annotation>
|
|
730
|
+
<simpleType>
|
|
731
|
+
<restriction base="string">
|
|
732
|
+
<enumeration value="none"/>
|
|
733
|
+
<enumeration value="title"/>
|
|
734
|
+
<enumeration value="title-and-description"/>
|
|
735
|
+
</restriction>
|
|
736
|
+
</simpleType>
|
|
737
|
+
</attribute>
|
|
738
|
+
<attribute name="show-title" type="boolean" default="true">
|
|
739
|
+
<annotation>
|
|
740
|
+
<documentation xml:lang="en">
|
|
741
|
+
Indicates if the title should be displayed. Web only.
|
|
742
|
+
</documentation>
|
|
743
|
+
</annotation>
|
|
744
|
+
</attribute>
|
|
745
|
+
<attribute name="show-icon" type="boolean" default="true">
|
|
746
|
+
<annotation>
|
|
747
|
+
<documentation xml:lang="en">
|
|
748
|
+
Indicates if the icon should be displayed. Web only.
|
|
749
|
+
</documentation>
|
|
750
|
+
</annotation>
|
|
751
|
+
</attribute>
|
|
752
|
+
</extension>
|
|
723
753
|
</complexContent>
|
|
724
754
|
</complexType>
|
|
725
755
|
</element>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vertigis/viewer-spec",
|
|
3
|
-
"version": "47.
|
|
3
|
+
"version": "47.2.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"description": "VertiGIS Viewer Specification",
|
|
6
6
|
"type": "module",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@arcgis/core": "4.21.2",
|
|
41
|
-
"@vertigis/arcgis-extensions": "34.
|
|
41
|
+
"@vertigis/arcgis-extensions": "34.5.0",
|
|
42
42
|
"@types/glob": "7.2.0",
|
|
43
43
|
"@types/node": "14.14.41",
|
|
44
44
|
"@typescript-eslint/eslint-plugin": " 5.13.0",
|
package/version.d.ts
CHANGED
package/version.js
CHANGED