@vertigis/viewer-spec 56.28.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 +56 -6
- package/package.json +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -38,6 +38,28 @@
|
|
|
38
38
|
<choice>
|
|
39
39
|
<element ref="tns:component" minOccurs="0" maxOccurs="unbounded" />
|
|
40
40
|
</choice>
|
|
41
|
+
<attribute name="gap">
|
|
42
|
+
<annotation>
|
|
43
|
+
<documentation xml:lang="en">
|
|
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.
|
|
48
|
+
</documentation>
|
|
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>
|
|
62
|
+
</attribute>
|
|
41
63
|
</extension>
|
|
42
64
|
</complexContent>
|
|
43
65
|
</complexType>
|
|
@@ -119,19 +141,47 @@
|
|
|
119
141
|
</restriction>
|
|
120
142
|
</simpleType>
|
|
121
143
|
</attribute>
|
|
122
|
-
<attribute name="margin"
|
|
144
|
+
<attribute name="margin">
|
|
123
145
|
<annotation>
|
|
124
146
|
<documentation xml:lang="en">
|
|
125
|
-
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`.
|
|
126
150
|
</documentation>
|
|
127
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>
|
|
128
164
|
</attribute>
|
|
129
|
-
<attribute name="padding"
|
|
165
|
+
<attribute name="padding">
|
|
130
166
|
<annotation>
|
|
131
167
|
<documentation xml:lang="en">
|
|
132
|
-
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`.
|
|
133
171
|
</documentation>
|
|
134
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>
|
|
135
185
|
</attribute>
|
|
136
186
|
<attribute name="halign" default="start">
|
|
137
187
|
<annotation>
|
|
@@ -613,7 +663,7 @@
|
|
|
613
663
|
</annotation>
|
|
614
664
|
<complexType>
|
|
615
665
|
<complexContent mixed="true">
|
|
616
|
-
<extension base="tns:
|
|
666
|
+
<extension base="tns:ComponentWithChildren">
|
|
617
667
|
<choice>
|
|
618
668
|
<element ref="tns:component" minOccurs="0" maxOccurs="unbounded" />
|
|
619
669
|
</choice>
|
|
@@ -640,7 +690,7 @@
|
|
|
640
690
|
</annotation>
|
|
641
691
|
<complexType>
|
|
642
692
|
<complexContent mixed="true">
|
|
643
|
-
<extension base="tns:
|
|
693
|
+
<extension base="tns:ComponentWithChildren">
|
|
644
694
|
<choice>
|
|
645
695
|
<element ref="tns:component" minOccurs="0" maxOccurs="unbounded" />
|
|
646
696
|
</choice>
|
package/package.json
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED