@vertigis/viewer-spec 58.9.0 → 58.9.1

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.
@@ -1,431 +1,431 @@
1
- <?xml version="1.0" encoding="UTF-8" ?>
2
- <schema
3
- xmlns="http://www.w3.org/2001/XMLSchema"
4
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5
- xmlns:base="https://geocortex.com/layout/v1"
6
- xmlns:tns="https://geocortex.com/layout/web/v1"
7
- targetNamespace="https://geocortex.com/layout/web/v1"
8
- elementFormDefault="qualified"
9
- xsi:schemaLocation="http://www.w3.org/2001/XMLSchema https://www.w3.org/2009/XMLSchema/XMLSchema.xsd"
10
- >
11
- <import namespace="https://geocortex.com/layout/v1" schemaLocation="./layout-common.xsd" />
12
-
13
- <!-- GIS Components -->
14
-
15
- <element name="address" substitutionGroup="base:component">
16
- <annotation>
17
- <documentation xml:lang="en">
18
- Provides reverse geocode information given a point geometry.
19
- </documentation>
20
- </annotation>
21
- <complexType>
22
- <complexContent>
23
- <extension base="base:Component" />
24
- </complexContent>
25
- </complexType>
26
- </element>
27
-
28
- <element name="chart" substitutionGroup="base:component">
29
- <annotation>
30
- <documentation xml:lang="en">A component that shows a chart.</documentation>
31
- </annotation>
32
- <complexType>
33
- <complexContent>
34
- <extension base="base:Component" />
35
- </complexContent>
36
- </complexType>
37
- </element>
38
-
39
- <element name="feature-summary" substitutionGroup="base:component">
40
- <annotation>
41
- <documentation xml:lang="en">
42
- A component that allows the user to view a feature summary.
43
- </documentation>
44
- </annotation>
45
- <complexType>
46
- <complexContent>
47
- <extension base="base:Component">
48
- <attribute name="show-star-controls" type="boolean" default="false">
49
- <annotation>
50
- <documentation xml:lang="en">
51
- Whether or not the starred feature icons and
52
- functionality should be included. Defaults to
53
- false.
54
- </documentation>
55
- </annotation>
56
- </attribute>
57
- </extension>
58
- </complexContent>
59
- </complexType>
60
- </element>
61
-
62
- <element name="filter-builder" substitutionGroup="base:component">
63
- <annotation>
64
- <documentation xml:lang="en">
65
- A component that allows the user to interactively apply filters
66
- to the maps' layers.
67
- </documentation>
68
- </annotation>
69
- <complexType>
70
- <complexContent>
71
- <extension base="base:Component">
72
- <attribute name="show-cancel-button" type="boolean" default="false">
73
- <annotation>
74
- <documentation xml:lang="en">
75
- Whether or not to show a "Cancel" button. This
76
- button will cancel any pending changes to the
77
- current filter and deactivate the component.
78
- This is useful when the component is being shown
79
- in a temporary way, e.g. in a dialog. The
80
- default is false.
81
- </documentation>
82
- </annotation>
83
- </attribute>
84
- <attribute name="show-autocomplete" type="boolean" default="true">
85
- <annotation>
86
- <documentation xml:lang="en">
87
- Whether or not to show autocompletes to assist
88
- in the entry of values for string fields. This
89
- feature can impact performance if datasets are
90
- extremely large or not indexed on these fields.
91
- The default is true.
92
- </documentation>
93
- </annotation>
94
- </attribute>
95
- </extension>
96
- </complexContent>
97
- </complexType>
98
- </element>
99
-
100
- <element name="geometry-toolbar" substitutionGroup="base:component">
101
- <annotation>
102
- <documentation xml:lang="en">
103
- A geometry toolbar consisting of a collection of widgets and a
104
- configurable toolbar that is displayed while geometry edits are being
105
- performed.
106
- </documentation>
107
- </annotation>
108
- <complexType>
109
- <complexContent>
110
- <extension base="base:Component">
111
- <attribute name="orientation">
112
- <annotation>
113
- <documentation xml:lang="en">
114
- Determines the orientation of the widgets and toolbar menu items.
115
- </documentation>
116
- </annotation>
117
- <simpleType>
118
- <restriction base="string">
119
- <enumeration value="vertical" />
120
- <enumeration value="horizontal" />
121
- </restriction>
122
- </simpleType>
123
- </attribute>
124
- <attribute name="size">
125
- <annotation>
126
- <documentation xml:lang="en">
127
- The size of the geometry toolbar.
128
- </documentation>
129
- </annotation>
130
- <simpleType>
131
- <restriction base="string">
132
- <enumeration value="small" />
133
- <enumeration value="medium" />
134
- <enumeration value="large" />
135
- </restriction>
136
- </simpleType>
137
- </attribute>
138
- </extension>
139
- </complexContent>
140
- </complexType>
141
- </element>
142
-
143
- <element name="inline" substitutionGroup="base:component">
144
- <annotation>
145
- <documentation xml:lang="en">
146
- A component that allows the integration of VertiGIS Studio Inline (Deprecated).
147
- </documentation>
148
- </annotation>
149
- <complexType>
150
- <complexContent>
151
- <extension base="base:Component" />
152
- </complexContent>
153
- </complexType>
154
- </element>
155
-
156
- <element name="kpi-card" substitutionGroup="base:component">
157
- <annotation>
158
- <documentation xml:lang="en">
159
- A component that shows a key performance indicator.
160
- </documentation>
161
- </annotation>
162
- <complexType>
163
- <complexContent>
164
- <extension base="base:Component" />
165
- </complexContent>
166
- </complexType>
167
- </element>
168
-
169
- <element name="map-3d-toggle" substitutionGroup="base:component">
170
- <annotation>
171
- <documentation xml:lang="en">
172
- A button that allows the end user to switch between the webmap and the
173
- webscene for a given map component. Requires an associated map component
174
- (see the "models" attribute) with both a webmap and webscene configured.
175
- </documentation>
176
- </annotation>
177
- <complexType>
178
- <complexContent mixed="true">
179
- <extension base="base:Component">
180
- <attribute name="style">
181
- <annotation>
182
- <documentation xml:lang="en">
183
- The desired visual style for the 3d toggle button.
184
- </documentation>
185
- </annotation>
186
- <simpleType>
187
- <restriction base="string">
188
- <enumeration value="round" />
189
- <enumeration value="square" />
190
- </restriction>
191
- </simpleType>
192
- </attribute>
193
- </extension>
194
- </complexContent>
195
- </complexType>
196
- </element>
197
-
198
- <element name="overview-map" substitutionGroup="base:component">
199
- <annotation>
200
- <documentation xml:lang="en">
201
- A noninteractive map that displays the extent of a map component.
202
- </documentation>
203
- </annotation>
204
- <complexType>
205
- <complexContent>
206
- <extension base="base:Component" />
207
- </complexContent>
208
- </complexType>
209
- </element>
210
-
211
- <element name="print-form" substitutionGroup="base:component">
212
- <annotation>
213
- <documentation xml:lang="en">
214
- A component that presents configurable options for printing a map.
215
- </documentation>
216
- </annotation>
217
- <complexType>
218
- <complexContent>
219
- <extension base="base:Component">
220
- <attribute name="button-style">
221
- <annotation>
222
- <documentation xml:lang="en">
223
- The desired visual style for the button.
224
- </documentation>
225
- </annotation>
226
- <simpleType>
227
- <restriction base="string">
228
- <enumeration value="round" />
229
- <enumeration value="square" />
230
- </restriction>
231
- </simpleType>
232
- </attribute>
233
- </extension>
234
- </complexContent>
235
- </complexType>
236
- </element>
237
-
238
- <element name="query-builder" substitutionGroup="base:component">
239
- <annotation>
240
- <documentation xml:lang="en">
241
- A component that allows the user to interactively run queries against the
242
- maps' layers.
243
- </documentation>
244
- </annotation>
245
- <complexType>
246
- <complexContent>
247
- <extension base="base:Component">
248
- <attribute name="show-cancel-button" type="boolean" default="false">
249
- <annotation>
250
- <documentation xml:lang="en">
251
- Whether or not to show a "Cancel" button. This
252
- button will cancel any pending query and
253
- deactivate the component. This is useful when
254
- the component is being shown in a temporary way,
255
- e.g. in a dialog. The default is false.
256
- </documentation>
257
- </annotation>
258
- </attribute>
259
- <attribute name="show-autocomplete" type="boolean" default="true">
260
- <annotation>
261
- <documentation xml:lang="en">
262
- Whether or not to show autocompletes to assist
263
- in the entry of values for string fields. This
264
- feature can impact performance if datasets are
265
- extremely large or not indexed on these fields.
266
- The default is true.
267
- </documentation>
268
- </annotation>
269
- </attribute>
270
- </extension>
271
- </complexContent>
272
- </complexType>
273
- </element>
274
-
275
- <element name="results-table" substitutionGroup="base:component">
276
- <annotation>
277
- <documentation xml:lang="en">
278
- A component that allows the user to view results from a search,
279
- identify, query, or any other activity that produces features in a table
280
- view.
281
- </documentation>
282
- </annotation>
283
- <complexType>
284
- <complexContent>
285
- <extension base="base:Component">
286
- <attribute name="show-star-controls" type="boolean" default="false">
287
- <annotation>
288
- <documentation xml:lang="en">
289
- Whether or not the starred feature icons and
290
- functionality should be included. Defaults to
291
- false.
292
- </documentation>
293
- </annotation>
294
- </attribute>
295
- </extension>
296
- </complexContent>
297
- </complexType>
298
- </element>
299
-
300
- <element name="shared-projects" substitutionGroup="base:component">
301
- <annotation>
302
- <documentation xml:lang="en">
303
- A component that allows the user to manage and view shared projects.
304
- </documentation>
305
- </annotation>
306
- <complexType>
307
- <complexContent>
308
- <extension base="base:Component" />
309
- </complexContent>
310
- </complexType>
311
- </element>
312
-
313
- <element name="scale-input" substitutionGroup="base:component">
314
- <annotation>
315
- <documentation xml:lang="en">
316
- A component that allows the user to change the scale of the map.
317
- </documentation>
318
- </annotation>
319
- <complexType>
320
- <complexContent>
321
- <extension base="base:Component" />
322
- </complexContent>
323
- </complexType>
324
- </element>
325
-
326
- <element name="tabs" substitutionGroup="base:component">
327
- <annotation>
328
- <documentation xml:lang="en">
329
- Organizes child components into separate tabs, so that only one
330
- is active at a time. The tab names will correspond to the child
331
- components' titles.
332
- </documentation>
333
- </annotation>
334
- <complexType>
335
- <complexContent mixed="true">
336
- <extension base="base:Component">
337
- <choice>
338
- <element ref="base:component" minOccurs="0" maxOccurs="unbounded" />
339
- </choice>
340
- <attribute name="orientation">
341
- <annotation>
342
- <documentation xml:lang="en">
343
- The orientation of the tabs within the component. Valid values
344
- include "horizontal", and "vertical". The default value is
345
- "horizontal".
346
- </documentation>
347
- </annotation>
348
- <simpleType>
349
- <restriction base="string">
350
- <enumeration value="horizontal" />
351
- <enumeration value="vertical" />
352
- </restriction>
353
- </simpleType>
354
- </attribute>
355
- <attribute name="position">
356
- <annotation>
357
- <documentation xml:lang="en">
358
- The position of the tabs within the component. Valid values
359
- include "start", and "end". The default value is "start".
360
- </documentation>
361
- </annotation>
362
- <simpleType>
363
- <restriction base="string">
364
- <enumeration value="start" />
365
- <enumeration value="end" />
366
- </restriction>
367
- </simpleType>
368
- </attribute>
369
- <attribute name="icon-position">
370
- <annotation>
371
- <documentation xml:lang="en">
372
- The position of the icon within the component relative to its
373
- text. Valid values include "top", "bottom", "start", and "end".
374
- The default value is "start".
375
- </documentation>
376
- </annotation>
377
- <simpleType>
378
- <restriction base="string">
379
- <enumeration value="top" />
380
- <enumeration value="bottom" />
381
- <enumeration value="start" />
382
- <enumeration value="end" />
383
- </restriction>
384
- </simpleType>
385
- </attribute>
386
- <attribute name="show-title" type="boolean" default="true">
387
- <annotation>
388
- <documentation xml:lang="en">
389
- Indicates if the title should be displayed.
390
- </documentation>
391
- </annotation>
392
- </attribute>
393
- <attribute name="show-icon" type="boolean" default="false">
394
- <annotation>
395
- <documentation xml:lang="en">
396
- Indicates if the icon should be displayed.
397
- </documentation>
398
- </annotation>
399
- </attribute>
400
- </extension>
401
- </complexContent>
402
- </complexType>
403
- </element>
404
-
405
- <element name="user-preferences" substitutionGroup="base:component">
406
- <annotation>
407
- <documentation xml:lang="en">
408
- A component that allows the user to change user preferences.
409
- </documentation>
410
- </annotation>
411
- <complexType>
412
- <complexContent>
413
- <extension base="base:Component" />
414
- </complexContent>
415
- </complexType>
416
- </element>
417
-
418
- <element name="vertigis-inline" substitutionGroup="base:component">
419
- <annotation>
420
- <documentation xml:lang="en">
421
- A component that allows the integration of VertiGIS Inline.
422
- Requires the VertiGIS Inline library to be loaded in Web.
423
- </documentation>
424
- </annotation>
425
- <complexType>
426
- <complexContent>
427
- <extension base="base:Component" />
428
- </complexContent>
429
- </complexType>
430
- </element>
431
- </schema>
1
+ <?xml version="1.0" encoding="UTF-8" ?>
2
+ <schema
3
+ xmlns="http://www.w3.org/2001/XMLSchema"
4
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5
+ xmlns:base="https://geocortex.com/layout/v1"
6
+ xmlns:tns="https://geocortex.com/layout/web/v1"
7
+ targetNamespace="https://geocortex.com/layout/web/v1"
8
+ elementFormDefault="qualified"
9
+ xsi:schemaLocation="http://www.w3.org/2001/XMLSchema https://www.w3.org/2009/XMLSchema/XMLSchema.xsd"
10
+ >
11
+ <import namespace="https://geocortex.com/layout/v1" schemaLocation="./layout-common.xsd" />
12
+
13
+ <!-- GIS Components -->
14
+
15
+ <element name="address" substitutionGroup="base:component">
16
+ <annotation>
17
+ <documentation xml:lang="en">
18
+ Provides reverse geocode information given a point geometry.
19
+ </documentation>
20
+ </annotation>
21
+ <complexType>
22
+ <complexContent>
23
+ <extension base="base:Component" />
24
+ </complexContent>
25
+ </complexType>
26
+ </element>
27
+
28
+ <element name="chart" substitutionGroup="base:component">
29
+ <annotation>
30
+ <documentation xml:lang="en">A component that shows a chart.</documentation>
31
+ </annotation>
32
+ <complexType>
33
+ <complexContent>
34
+ <extension base="base:Component" />
35
+ </complexContent>
36
+ </complexType>
37
+ </element>
38
+
39
+ <element name="feature-summary" substitutionGroup="base:component">
40
+ <annotation>
41
+ <documentation xml:lang="en">
42
+ A component that allows the user to view a feature summary.
43
+ </documentation>
44
+ </annotation>
45
+ <complexType>
46
+ <complexContent>
47
+ <extension base="base:Component">
48
+ <attribute name="show-star-controls" type="boolean" default="false">
49
+ <annotation>
50
+ <documentation xml:lang="en">
51
+ Whether or not the starred feature icons and
52
+ functionality should be included. Defaults to
53
+ false.
54
+ </documentation>
55
+ </annotation>
56
+ </attribute>
57
+ </extension>
58
+ </complexContent>
59
+ </complexType>
60
+ </element>
61
+
62
+ <element name="filter-builder" substitutionGroup="base:component">
63
+ <annotation>
64
+ <documentation xml:lang="en">
65
+ A component that allows the user to interactively apply filters
66
+ to the maps' layers.
67
+ </documentation>
68
+ </annotation>
69
+ <complexType>
70
+ <complexContent>
71
+ <extension base="base:Component">
72
+ <attribute name="show-cancel-button" type="boolean" default="false">
73
+ <annotation>
74
+ <documentation xml:lang="en">
75
+ Whether or not to show a "Cancel" button. This
76
+ button will cancel any pending changes to the
77
+ current filter and deactivate the component.
78
+ This is useful when the component is being shown
79
+ in a temporary way, e.g. in a dialog. The
80
+ default is false.
81
+ </documentation>
82
+ </annotation>
83
+ </attribute>
84
+ <attribute name="show-autocomplete" type="boolean" default="true">
85
+ <annotation>
86
+ <documentation xml:lang="en">
87
+ Whether or not to show autocompletes to assist
88
+ in the entry of values for string fields. This
89
+ feature can impact performance if datasets are
90
+ extremely large or not indexed on these fields.
91
+ The default is true.
92
+ </documentation>
93
+ </annotation>
94
+ </attribute>
95
+ </extension>
96
+ </complexContent>
97
+ </complexType>
98
+ </element>
99
+
100
+ <element name="geometry-toolbar" substitutionGroup="base:component">
101
+ <annotation>
102
+ <documentation xml:lang="en">
103
+ A geometry toolbar consisting of a collection of widgets and a
104
+ configurable toolbar that is displayed while geometry edits are being
105
+ performed.
106
+ </documentation>
107
+ </annotation>
108
+ <complexType>
109
+ <complexContent>
110
+ <extension base="base:Component">
111
+ <attribute name="orientation">
112
+ <annotation>
113
+ <documentation xml:lang="en">
114
+ Determines the orientation of the widgets and toolbar menu items.
115
+ </documentation>
116
+ </annotation>
117
+ <simpleType>
118
+ <restriction base="string">
119
+ <enumeration value="vertical" />
120
+ <enumeration value="horizontal" />
121
+ </restriction>
122
+ </simpleType>
123
+ </attribute>
124
+ <attribute name="size">
125
+ <annotation>
126
+ <documentation xml:lang="en">
127
+ The size of the geometry toolbar.
128
+ </documentation>
129
+ </annotation>
130
+ <simpleType>
131
+ <restriction base="string">
132
+ <enumeration value="small" />
133
+ <enumeration value="medium" />
134
+ <enumeration value="large" />
135
+ </restriction>
136
+ </simpleType>
137
+ </attribute>
138
+ </extension>
139
+ </complexContent>
140
+ </complexType>
141
+ </element>
142
+
143
+ <element name="inline" substitutionGroup="base:component">
144
+ <annotation>
145
+ <documentation xml:lang="en">
146
+ A component that allows the integration of VertiGIS Studio Inline (Deprecated).
147
+ </documentation>
148
+ </annotation>
149
+ <complexType>
150
+ <complexContent>
151
+ <extension base="base:Component" />
152
+ </complexContent>
153
+ </complexType>
154
+ </element>
155
+
156
+ <element name="kpi-card" substitutionGroup="base:component">
157
+ <annotation>
158
+ <documentation xml:lang="en">
159
+ A component that shows a key performance indicator.
160
+ </documentation>
161
+ </annotation>
162
+ <complexType>
163
+ <complexContent>
164
+ <extension base="base:Component" />
165
+ </complexContent>
166
+ </complexType>
167
+ </element>
168
+
169
+ <element name="map-3d-toggle" substitutionGroup="base:component">
170
+ <annotation>
171
+ <documentation xml:lang="en">
172
+ A button that allows the end user to switch between the webmap and the
173
+ webscene for a given map component. Requires an associated map component
174
+ (see the "models" attribute) with both a webmap and webscene configured.
175
+ </documentation>
176
+ </annotation>
177
+ <complexType>
178
+ <complexContent mixed="true">
179
+ <extension base="base:Component">
180
+ <attribute name="style">
181
+ <annotation>
182
+ <documentation xml:lang="en">
183
+ The desired visual style for the 3d toggle button.
184
+ </documentation>
185
+ </annotation>
186
+ <simpleType>
187
+ <restriction base="string">
188
+ <enumeration value="round" />
189
+ <enumeration value="square" />
190
+ </restriction>
191
+ </simpleType>
192
+ </attribute>
193
+ </extension>
194
+ </complexContent>
195
+ </complexType>
196
+ </element>
197
+
198
+ <element name="overview-map" substitutionGroup="base:component">
199
+ <annotation>
200
+ <documentation xml:lang="en">
201
+ A noninteractive map that displays the extent of a map component.
202
+ </documentation>
203
+ </annotation>
204
+ <complexType>
205
+ <complexContent>
206
+ <extension base="base:Component" />
207
+ </complexContent>
208
+ </complexType>
209
+ </element>
210
+
211
+ <element name="print-form" substitutionGroup="base:component">
212
+ <annotation>
213
+ <documentation xml:lang="en">
214
+ A component that presents configurable options for printing a map.
215
+ </documentation>
216
+ </annotation>
217
+ <complexType>
218
+ <complexContent>
219
+ <extension base="base:Component">
220
+ <attribute name="button-style">
221
+ <annotation>
222
+ <documentation xml:lang="en">
223
+ The desired visual style for the button.
224
+ </documentation>
225
+ </annotation>
226
+ <simpleType>
227
+ <restriction base="string">
228
+ <enumeration value="round" />
229
+ <enumeration value="square" />
230
+ </restriction>
231
+ </simpleType>
232
+ </attribute>
233
+ </extension>
234
+ </complexContent>
235
+ </complexType>
236
+ </element>
237
+
238
+ <element name="query-builder" substitutionGroup="base:component">
239
+ <annotation>
240
+ <documentation xml:lang="en">
241
+ A component that allows the user to interactively run queries against the
242
+ maps' layers.
243
+ </documentation>
244
+ </annotation>
245
+ <complexType>
246
+ <complexContent>
247
+ <extension base="base:Component">
248
+ <attribute name="show-cancel-button" type="boolean" default="false">
249
+ <annotation>
250
+ <documentation xml:lang="en">
251
+ Whether or not to show a "Cancel" button. This
252
+ button will cancel any pending query and
253
+ deactivate the component. This is useful when
254
+ the component is being shown in a temporary way,
255
+ e.g. in a dialog. The default is false.
256
+ </documentation>
257
+ </annotation>
258
+ </attribute>
259
+ <attribute name="show-autocomplete" type="boolean" default="true">
260
+ <annotation>
261
+ <documentation xml:lang="en">
262
+ Whether or not to show autocompletes to assist
263
+ in the entry of values for string fields. This
264
+ feature can impact performance if datasets are
265
+ extremely large or not indexed on these fields.
266
+ The default is true.
267
+ </documentation>
268
+ </annotation>
269
+ </attribute>
270
+ </extension>
271
+ </complexContent>
272
+ </complexType>
273
+ </element>
274
+
275
+ <element name="results-table" substitutionGroup="base:component">
276
+ <annotation>
277
+ <documentation xml:lang="en">
278
+ A component that allows the user to view results from a search,
279
+ identify, query, or any other activity that produces features in a table
280
+ view.
281
+ </documentation>
282
+ </annotation>
283
+ <complexType>
284
+ <complexContent>
285
+ <extension base="base:Component">
286
+ <attribute name="show-star-controls" type="boolean" default="false">
287
+ <annotation>
288
+ <documentation xml:lang="en">
289
+ Whether or not the starred feature icons and
290
+ functionality should be included. Defaults to
291
+ false.
292
+ </documentation>
293
+ </annotation>
294
+ </attribute>
295
+ </extension>
296
+ </complexContent>
297
+ </complexType>
298
+ </element>
299
+
300
+ <element name="shared-projects" substitutionGroup="base:component">
301
+ <annotation>
302
+ <documentation xml:lang="en">
303
+ A component that allows the user to manage and view shared projects.
304
+ </documentation>
305
+ </annotation>
306
+ <complexType>
307
+ <complexContent>
308
+ <extension base="base:Component" />
309
+ </complexContent>
310
+ </complexType>
311
+ </element>
312
+
313
+ <element name="scale-input" substitutionGroup="base:component">
314
+ <annotation>
315
+ <documentation xml:lang="en">
316
+ A component that allows the user to change the scale of the map.
317
+ </documentation>
318
+ </annotation>
319
+ <complexType>
320
+ <complexContent>
321
+ <extension base="base:Component" />
322
+ </complexContent>
323
+ </complexType>
324
+ </element>
325
+
326
+ <element name="tabs" substitutionGroup="base:component">
327
+ <annotation>
328
+ <documentation xml:lang="en">
329
+ Organizes child components into separate tabs, so that only one
330
+ is active at a time. The tab names will correspond to the child
331
+ components' titles.
332
+ </documentation>
333
+ </annotation>
334
+ <complexType>
335
+ <complexContent mixed="true">
336
+ <extension base="base:Component">
337
+ <choice>
338
+ <element ref="base:component" minOccurs="0" maxOccurs="unbounded" />
339
+ </choice>
340
+ <attribute name="orientation">
341
+ <annotation>
342
+ <documentation xml:lang="en">
343
+ The orientation of the tabs within the component. Valid values
344
+ include "horizontal", and "vertical". The default value is
345
+ "horizontal".
346
+ </documentation>
347
+ </annotation>
348
+ <simpleType>
349
+ <restriction base="string">
350
+ <enumeration value="horizontal" />
351
+ <enumeration value="vertical" />
352
+ </restriction>
353
+ </simpleType>
354
+ </attribute>
355
+ <attribute name="position">
356
+ <annotation>
357
+ <documentation xml:lang="en">
358
+ The position of the tabs within the component. Valid values
359
+ include "start", and "end". The default value is "start".
360
+ </documentation>
361
+ </annotation>
362
+ <simpleType>
363
+ <restriction base="string">
364
+ <enumeration value="start" />
365
+ <enumeration value="end" />
366
+ </restriction>
367
+ </simpleType>
368
+ </attribute>
369
+ <attribute name="icon-position">
370
+ <annotation>
371
+ <documentation xml:lang="en">
372
+ The position of the icon within the component relative to its
373
+ text. Valid values include "top", "bottom", "start", and "end".
374
+ The default value is "start".
375
+ </documentation>
376
+ </annotation>
377
+ <simpleType>
378
+ <restriction base="string">
379
+ <enumeration value="top" />
380
+ <enumeration value="bottom" />
381
+ <enumeration value="start" />
382
+ <enumeration value="end" />
383
+ </restriction>
384
+ </simpleType>
385
+ </attribute>
386
+ <attribute name="show-title" type="boolean" default="true">
387
+ <annotation>
388
+ <documentation xml:lang="en">
389
+ Indicates if the title should be displayed.
390
+ </documentation>
391
+ </annotation>
392
+ </attribute>
393
+ <attribute name="show-icon" type="boolean" default="false">
394
+ <annotation>
395
+ <documentation xml:lang="en">
396
+ Indicates if the icon should be displayed.
397
+ </documentation>
398
+ </annotation>
399
+ </attribute>
400
+ </extension>
401
+ </complexContent>
402
+ </complexType>
403
+ </element>
404
+
405
+ <element name="user-preferences" substitutionGroup="base:component">
406
+ <annotation>
407
+ <documentation xml:lang="en">
408
+ A component that allows the user to change user preferences.
409
+ </documentation>
410
+ </annotation>
411
+ <complexType>
412
+ <complexContent>
413
+ <extension base="base:Component" />
414
+ </complexContent>
415
+ </complexType>
416
+ </element>
417
+
418
+ <element name="vertigis-inline" substitutionGroup="base:component">
419
+ <annotation>
420
+ <documentation xml:lang="en">
421
+ A component that allows the integration of VertiGIS Inline.
422
+ Requires the VertiGIS Inline library to be loaded in Web.
423
+ </documentation>
424
+ </annotation>
425
+ <complexType>
426
+ <complexContent>
427
+ <extension base="base:Component" />
428
+ </complexContent>
429
+ </complexType>
430
+ </element>
431
+ </schema>