@vertigis/viewer-spec 56.29.0 → 56.30.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 +51 -9
- package/package.json +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -38,13 +38,27 @@
|
|
|
38
38
|
<choice>
|
|
39
39
|
<element ref="tns:component" minOccurs="0" maxOccurs="unbounded" />
|
|
40
40
|
</choice>
|
|
41
|
-
<attribute name="gap"
|
|
41
|
+
<attribute name="gap">
|
|
42
42
|
<annotation>
|
|
43
43
|
<documentation xml:lang="en">
|
|
44
|
-
The gaps (gutters) between child components
|
|
45
|
-
units
|
|
44
|
+
The gaps (gutters) between child components in em
|
|
45
|
+
units (double) or in spacing units (string)
|
|
46
|
+
represented as the units followed by an 's' eg:
|
|
47
|
+
'1s`. Web only.
|
|
46
48
|
</documentation>
|
|
47
49
|
</annotation>
|
|
50
|
+
<simpleType>
|
|
51
|
+
<union>
|
|
52
|
+
<simpleType>
|
|
53
|
+
<restriction base="double" />
|
|
54
|
+
</simpleType>
|
|
55
|
+
<simpleType>
|
|
56
|
+
<restriction base="string">
|
|
57
|
+
<pattern value="[0-9]+s" />
|
|
58
|
+
</restriction>
|
|
59
|
+
</simpleType>
|
|
60
|
+
</union>
|
|
61
|
+
</simpleType>
|
|
48
62
|
</attribute>
|
|
49
63
|
</extension>
|
|
50
64
|
</complexContent>
|
|
@@ -127,19 +141,47 @@
|
|
|
127
141
|
</restriction>
|
|
128
142
|
</simpleType>
|
|
129
143
|
</attribute>
|
|
130
|
-
<attribute name="margin"
|
|
144
|
+
<attribute name="margin">
|
|
131
145
|
<annotation>
|
|
132
146
|
<documentation xml:lang="en">
|
|
133
|
-
The margin around the component, in em units.
|
|
147
|
+
The margin around the component, in em units. In web this
|
|
148
|
+
can also be specified in spacing units (string) represented
|
|
149
|
+
as the units followed by an 's' eg: '1s`.
|
|
134
150
|
</documentation>
|
|
135
151
|
</annotation>
|
|
152
|
+
<simpleType>
|
|
153
|
+
<union>
|
|
154
|
+
<simpleType>
|
|
155
|
+
<restriction base="double" />
|
|
156
|
+
</simpleType>
|
|
157
|
+
<simpleType>
|
|
158
|
+
<restriction base="string">
|
|
159
|
+
<pattern value="[0-9]+s" />
|
|
160
|
+
</restriction>
|
|
161
|
+
</simpleType>
|
|
162
|
+
</union>
|
|
163
|
+
</simpleType>
|
|
136
164
|
</attribute>
|
|
137
|
-
<attribute name="padding"
|
|
165
|
+
<attribute name="padding">
|
|
138
166
|
<annotation>
|
|
139
167
|
<documentation xml:lang="en">
|
|
140
|
-
The padding within the component, in em units.
|
|
168
|
+
The padding within the component, in em units. In web this
|
|
169
|
+
can also be specified in spacing units (string) represented
|
|
170
|
+
as the units followed by an 's' eg: '1s`.
|
|
141
171
|
</documentation>
|
|
142
172
|
</annotation>
|
|
173
|
+
<simpleType>
|
|
174
|
+
<union>
|
|
175
|
+
<simpleType>
|
|
176
|
+
<restriction base="double" />
|
|
177
|
+
</simpleType>
|
|
178
|
+
<simpleType>
|
|
179
|
+
<restriction base="string">
|
|
180
|
+
<pattern value="[0-9]+s" />
|
|
181
|
+
</restriction>
|
|
182
|
+
</simpleType>
|
|
183
|
+
</union>
|
|
184
|
+
</simpleType>
|
|
143
185
|
</attribute>
|
|
144
186
|
<attribute name="halign" default="start">
|
|
145
187
|
<annotation>
|
|
@@ -621,7 +663,7 @@
|
|
|
621
663
|
</annotation>
|
|
622
664
|
<complexType>
|
|
623
665
|
<complexContent mixed="true">
|
|
624
|
-
<extension base="tns:
|
|
666
|
+
<extension base="tns:ComponentWithChildren">
|
|
625
667
|
<choice>
|
|
626
668
|
<element ref="tns:component" minOccurs="0" maxOccurs="unbounded" />
|
|
627
669
|
</choice>
|
|
@@ -648,7 +690,7 @@
|
|
|
648
690
|
</annotation>
|
|
649
691
|
<complexType>
|
|
650
692
|
<complexContent mixed="true">
|
|
651
|
-
<extension base="tns:
|
|
693
|
+
<extension base="tns:ComponentWithChildren">
|
|
652
694
|
<choice>
|
|
653
695
|
<element ref="tns:component" minOccurs="0" maxOccurs="unbounded" />
|
|
654
696
|
</choice>
|
package/package.json
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED