@esri/solutions-components 0.5.1 → 0.5.2
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/dist/assets/arcgis-pdf-creator/PDFCreator.js +6 -3
- package/dist/assets/arcgis-pdf-creator/PDFCreator_jsPDF.js +1 -1
- package/dist/assets/arcgis-pdf-creator/PDFCreator_pdf_lib.js +1 -1
- package/dist/assets/arcgis-pdf-creator/PDFLabels.js +54 -3
- package/dist/assets/arcgis-pdf-creator/grid.js +1 -1
- package/dist/assets/data/images/grid.png +0 -0
- package/dist/assets/data/images/horizontal.png +0 -0
- package/dist/assets/data/images/vertical.png +0 -0
- package/dist/assets/t9n/crowdsource-manager/resources.json +7 -1
- package/dist/assets/t9n/crowdsource-manager/resources_en.json +7 -1
- package/dist/cjs/buffer-tools_6.cjs.entry.js +85 -85
- package/dist/cjs/{calcite-block_2.cjs.entry.js → calcite-action-bar_4.cjs.entry.js} +307 -18
- package/dist/cjs/{calcite-action.cjs.entry.js → calcite-action_2.cjs.entry.js} +84 -1
- package/dist/cjs/{calcite-combobox_3.cjs.entry.js → calcite-chip_4.cjs.entry.js} +187 -61
- package/dist/cjs/{calcite-dropdown-group_4.cjs.entry.js → calcite-dropdown_5.cjs.entry.js} +467 -1
- package/dist/cjs/calcite-input-message_5.cjs.entry.js +283 -283
- package/dist/cjs/calcite-shell-panel_14.cjs.entry.js +2 -2
- package/dist/cjs/{calcite-action-bar_2.cjs.entry.js → calcite-tooltip.cjs.entry.js} +2 -208
- package/dist/cjs/crowdsource-manager.cjs.entry.js +88 -14
- package/dist/cjs/{downloadUtils-b85476e8.js → downloadUtils-9359e9ff.js} +1218 -1127
- package/dist/cjs/{index.es-3ba50626.js → index.es-9c0d0ed6.js} +10682 -10682
- package/dist/cjs/{interfaces-17c631bf.js → interfaces-cac36920.js} +6 -0
- package/dist/cjs/layer-table_2.cjs.entry.js +512 -0
- package/dist/cjs/loader.cjs.js +30 -30
- package/dist/cjs/{mapViewUtils-df63bfa4.js → mapViewUtils-090f4d4d.js} +24 -24
- package/dist/cjs/public-notification.cjs.entry.js +69 -49
- package/dist/cjs/solution-configuration.cjs.entry.js +2 -2
- package/dist/cjs/solution-contents_3.cjs.entry.js +2 -2
- package/dist/cjs/{solution-store-b86759b2.js → solution-store-d28c332e.js} +1 -1
- package/dist/cjs/solutions-components.cjs.js +31 -31
- package/dist/collection/assets/arcgis-pdf-creator/PDFCreator.js +6 -3
- package/dist/collection/assets/arcgis-pdf-creator/PDFCreator_jsPDF.js +1 -1
- package/dist/collection/assets/arcgis-pdf-creator/PDFCreator_pdf_lib.js +1 -1
- package/dist/collection/assets/arcgis-pdf-creator/PDFLabels.js +54 -3
- package/dist/collection/assets/arcgis-pdf-creator/grid.js +1 -1
- package/dist/collection/components/crowdsource-manager/crowdsource-manager.css +122 -0
- package/dist/collection/components/crowdsource-manager/crowdsource-manager.js +130 -14
- package/dist/collection/components/layer-table/layer-table.css +2 -70
- package/dist/collection/components/layer-table/layer-table.js +66 -106
- package/dist/collection/components/map-card/map-card.css +4 -7
- package/dist/collection/components/map-card/map-card.js +44 -10
- package/dist/collection/components/map-draw-tools/map-draw-tools.js +1 -1
- package/dist/collection/components/map-select-tools/map-select-tools.js +1 -1
- package/dist/collection/components/public-notification/public-notification.js +45 -27
- package/dist/collection/components/refine-selection-tools/refine-selection-tools.js +1 -1
- package/dist/collection/demos/crowdsource-manager.html +14 -41
- package/dist/collection/utils/csvDownload.js +41 -0
- package/dist/collection/utils/csvDownload.ts +42 -0
- package/dist/collection/utils/csvUtils.js +6 -23
- package/dist/collection/utils/csvUtils.ts +8 -27
- package/dist/collection/utils/downloadUtils.js +30 -14
- package/dist/collection/utils/downloadUtils.ts +36 -14
- package/dist/collection/utils/interfaces.js +6 -0
- package/dist/collection/utils/interfaces.ts +6 -0
- package/dist/collection/utils/pdfUtils.js +9 -6
- package/dist/collection/utils/pdfUtils.ts +13 -8
- package/dist/collection/utils/test/csvUtils.spec.tsx +56 -0
- package/dist/collection/utils/test/downloadUtils.spec.tsx +133 -0
- package/dist/components/crowdsource-manager.js +293 -17
- package/dist/components/downloadUtils.js +133 -42
- package/dist/components/interfaces3.js +7 -1
- package/dist/components/layer-table.js +1 -443
- package/dist/components/layer-table2.js +429 -0
- package/dist/components/map-card.js +1 -339
- package/dist/{esm/map-card.entry.js → components/map-card2.js} +118 -22
- package/dist/components/map-draw-tools2.js +16 -16
- package/dist/components/map-layer-picker2.js +1 -1
- package/dist/components/map-select-tools2.js +38 -38
- package/dist/components/public-notification.js +102 -82
- package/dist/components/queryUtils.js +10 -10
- package/dist/components/refine-selection-tools2.js +3 -3
- package/dist/components/refine-selection2.js +1 -1
- package/dist/components/solution-resource-item2.js +1 -1
- package/dist/components/solution-store.js +1 -1
- package/dist/esm/buffer-tools_6.entry.js +76 -76
- package/dist/esm/{calcite-block_2.entry.js → calcite-action-bar_4.entry.js} +307 -20
- package/dist/esm/{calcite-action.entry.js → calcite-action_2.entry.js} +84 -2
- package/dist/esm/{calcite-combobox_3.entry.js → calcite-chip_4.entry.js} +181 -56
- package/dist/esm/{calcite-dropdown-group_4.entry.js → calcite-dropdown_5.entry.js} +468 -3
- package/dist/esm/calcite-input-message_5.entry.js +275 -275
- package/dist/esm/calcite-shell-panel_14.entry.js +2 -2
- package/dist/esm/{calcite-action-bar_2.entry.js → calcite-tooltip.entry.js} +4 -209
- package/dist/esm/crowdsource-manager.entry.js +88 -14
- package/dist/esm/{downloadUtils-f278742f.js → downloadUtils-a8f139c5.js} +1214 -1123
- package/dist/esm/{index.es-6f3a1143.js → index.es-a75412ff.js} +10596 -10596
- package/dist/esm/{interfaces-d0d83efa.js → interfaces-cd4054e5.js} +7 -1
- package/dist/esm/layer-table_2.entry.js +507 -0
- package/dist/esm/loader.js +26 -26
- package/dist/esm/{mapViewUtils-bd1809f0.js → mapViewUtils-8ffcd36d.js} +12 -12
- package/dist/esm/public-notification.entry.js +65 -45
- package/dist/esm/solution-configuration.entry.js +2 -2
- package/dist/esm/solution-contents_3.entry.js +2 -2
- package/dist/esm/{solution-store-477288ac.js → solution-store-1b67f2c8.js} +1 -1
- package/dist/esm/solutions-components.js +26 -26
- package/dist/solutions-components/demos/crowdsource-manager.html +14 -41
- package/dist/solutions-components/{p-dd11eeb2.js → p-1395b0ef.js} +1 -1
- package/dist/solutions-components/{p-cbac29fb.entry.js → p-1affd711.entry.js} +18 -18
- package/dist/solutions-components/p-30de8da1.entry.js +17 -0
- package/dist/solutions-components/{p-91cad71e.entry.js → p-439c878d.entry.js} +3 -9
- package/dist/solutions-components/{p-03e2c6fd.js → p-765a27f3.js} +60 -60
- package/dist/solutions-components/p-813a04c3.entry.js +6 -0
- package/dist/solutions-components/{p-9e8a371f.entry.js → p-874b39a7.entry.js} +3 -3
- package/dist/solutions-components/p-8cece97f.js +21 -0
- package/dist/solutions-components/{p-dd0241fb.entry.js → p-97aa7211.entry.js} +1 -1
- package/dist/solutions-components/{p-0e459cc7.entry.js → p-a955a3e6.entry.js} +10 -4
- package/dist/solutions-components/{p-40c12650.js → p-bb64bd47.js} +453 -437
- package/dist/solutions-components/{p-70e1d4d8.entry.js → p-c392dd95.entry.js} +17 -17
- package/dist/solutions-components/p-ca386a72.entry.js +6 -0
- package/dist/solutions-components/p-d47d74a6.entry.js +23 -0
- package/dist/solutions-components/p-db846ee2.entry.js +11 -0
- package/dist/solutions-components/{p-88e5a76d.js → p-dc53c9c1.js} +36 -36
- package/dist/solutions-components/p-e1c93241.entry.js +6 -0
- package/dist/solutions-components/{p-4cbaf0f1.entry.js → p-e6d235d6.entry.js} +1 -1
- package/dist/solutions-components/solutions-components.esm.js +6 -6
- package/dist/solutions-components/utils/csvDownload.ts +42 -0
- package/dist/solutions-components/utils/csvUtils.ts +8 -27
- package/dist/solutions-components/utils/downloadUtils.ts +36 -14
- package/dist/solutions-components/utils/interfaces.ts +6 -0
- package/dist/solutions-components/utils/pdfUtils.ts +13 -8
- package/dist/solutions-components/utils/test/csvUtils.spec.tsx +56 -0
- package/dist/solutions-components/utils/test/downloadUtils.spec.tsx +133 -0
- package/dist/types/components/crowdsource-manager/crowdsource-manager.d.ts +39 -0
- package/dist/types/components/layer-table/layer-table.d.ts +35 -48
- package/dist/types/components/map-card/map-card.d.ts +10 -6
- package/dist/types/components/public-notification/public-notification.d.ts +18 -6
- package/dist/types/components.d.ts +1621 -1601
- package/dist/types/preact.d.ts +2 -1
- package/dist/types/utils/csvDownload.d.ts +24 -0
- package/dist/types/utils/csvUtils.d.ts +2 -1
- package/dist/types/utils/downloadUtils.d.ts +25 -0
- package/dist/types/utils/interfaces.d.ts +5 -0
- package/dist/types/utils/pdfUtils.d.ts +2 -1
- package/package.json +4 -4
- package/dist/cjs/calcite-chip.cjs.entry.js +0 -142
- package/dist/cjs/calcite-dropdown.cjs.entry.js +0 -481
- package/dist/cjs/calcite-handle.cjs.entry.js +0 -99
- package/dist/cjs/calcite-loader.cjs.entry.js +0 -95
- package/dist/cjs/layer-table.cjs.entry.js +0 -317
- package/dist/cjs/map-card.cjs.entry.js +0 -252
- package/dist/esm/calcite-chip.entry.js +0 -138
- package/dist/esm/calcite-dropdown.entry.js +0 -477
- package/dist/esm/calcite-handle.entry.js +0 -95
- package/dist/esm/calcite-loader.entry.js +0 -91
- package/dist/esm/layer-table.entry.js +0 -313
- package/dist/solutions-components/p-045d3988.entry.js +0 -12
- package/dist/solutions-components/p-11132485.entry.js +0 -11
- package/dist/solutions-components/p-15b43c29.entry.js +0 -11
- package/dist/solutions-components/p-5034aabc.entry.js +0 -11
- package/dist/solutions-components/p-6f012424.entry.js +0 -6
- package/dist/solutions-components/p-7fd10eb3.entry.js +0 -11
- package/dist/solutions-components/p-a57ef371.entry.js +0 -6
- package/dist/solutions-components/p-bc39f296.entry.js +0 -6
- package/dist/solutions-components/p-c93d8e80.entry.js +0 -6
- package/dist/solutions-components/p-dbc9a5a8.js +0 -21
- package/dist/solutions-components/p-f5c70be2.entry.js +0 -6
- package/dist/solutions-components/p-f6b17cc6.entry.js +0 -11
@@ -1,1601 +1,1621 @@
|
|
1
|
-
/* eslint-disable */
|
2
|
-
/* tslint:disable */
|
3
|
-
/**
|
4
|
-
* This is an autogenerated file created by the Stencil compiler.
|
5
|
-
* It contains typing information for all components that exist in this project.
|
6
|
-
*/
|
7
|
-
import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
|
8
|
-
import { DistanceUnit, EExpandType, ERefineMode, ESelectionMode, ESketchType, EWorkflowType, IInfoCardValues, IInventoryItem, IMapInfo, IMediaCardValues, IRefineSelectionEvent, ISearchConfiguration, ISearchResult, ISelectionSet, ISolutionSpatialReferenceInfo, ISpatialRefRepresentation, IValueChange, SelectionMode } from "./utils/interfaces";
|
9
|
-
import { UserSession } from "@esri/solution-common";
|
10
|
-
export namespace Components {
|
11
|
-
interface AddRecordModal {
|
12
|
-
/**
|
13
|
-
* When true the component is displayed
|
14
|
-
*/
|
15
|
-
"open": boolean;
|
16
|
-
}
|
17
|
-
interface BufferTools {
|
18
|
-
/**
|
19
|
-
* string: The appearance of display. Can be a "slider" or "text" inputs for distance/value
|
20
|
-
*/
|
21
|
-
"appearance": "slider" | "text";
|
22
|
-
/**
|
23
|
-
* number: The distance used for buffer
|
24
|
-
*/
|
25
|
-
"distance": number;
|
26
|
-
/**
|
27
|
-
* esri/geometry/Geometry: https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Geometry.html
|
28
|
-
*/
|
29
|
-
"geometries": __esri.Geometry[];
|
30
|
-
/**
|
31
|
-
* number: The component's maximum selectable value.
|
32
|
-
*/
|
33
|
-
"max": number;
|
34
|
-
/**
|
35
|
-
* number: The component's minimum selectable value.
|
36
|
-
*/
|
37
|
-
"min": number;
|
38
|
-
/**
|
39
|
-
* number: Displays tick marks on the number line at a specified interval.
|
40
|
-
*/
|
41
|
-
"sliderTicks": number;
|
42
|
-
/**
|
43
|
-
* boolean: option to control if buffer results should be unioned
|
44
|
-
*/
|
45
|
-
"unionResults": boolean;
|
46
|
-
/**
|
47
|
-
* DistanceUnit: "feet"|"meters"|"miles"|"kilometers"
|
48
|
-
*/
|
49
|
-
"unit": DistanceUnit;
|
50
|
-
}
|
51
|
-
interface CardManager {
|
52
|
-
}
|
53
|
-
interface CommentCard {
|
54
|
-
}
|
55
|
-
interface CrowdsourceManager {
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
}
|
61
|
-
interface
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
/**
|
73
|
-
*
|
74
|
-
*/
|
75
|
-
"
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
*
|
85
|
-
*/
|
86
|
-
"
|
87
|
-
/**
|
88
|
-
* Contains a public value to indicate if the model has any
|
89
|
-
*/
|
90
|
-
"
|
91
|
-
/**
|
92
|
-
* Contains a
|
93
|
-
*/
|
94
|
-
"
|
95
|
-
/**
|
96
|
-
*
|
97
|
-
*/
|
98
|
-
"
|
99
|
-
/**
|
100
|
-
*
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
*
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
*
|
112
|
-
*/
|
113
|
-
"
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
/**
|
139
|
-
*
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
*
|
149
|
-
*/
|
150
|
-
"
|
151
|
-
/**
|
152
|
-
* esri/
|
153
|
-
*/
|
154
|
-
"
|
155
|
-
/**
|
156
|
-
* esri/
|
157
|
-
*/
|
158
|
-
"
|
159
|
-
/**
|
160
|
-
* esri/symbols/
|
161
|
-
*/
|
162
|
-
"
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
/**
|
174
|
-
* string[]: list of layer ids
|
175
|
-
*/
|
176
|
-
"
|
177
|
-
/**
|
178
|
-
*
|
179
|
-
*/
|
180
|
-
"
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
*
|
194
|
-
*/
|
195
|
-
"
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
/**
|
207
|
-
*
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
*
|
217
|
-
*/
|
218
|
-
"
|
219
|
-
/**
|
220
|
-
*
|
221
|
-
*/
|
222
|
-
"
|
223
|
-
/**
|
224
|
-
*
|
225
|
-
*/
|
226
|
-
"
|
227
|
-
/**
|
228
|
-
*
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
*
|
238
|
-
*/
|
239
|
-
"
|
240
|
-
/**
|
241
|
-
*
|
242
|
-
*/
|
243
|
-
"
|
244
|
-
/**
|
245
|
-
* esri/views/
|
246
|
-
*/
|
247
|
-
"
|
248
|
-
/**
|
249
|
-
*
|
250
|
-
*/
|
251
|
-
"
|
252
|
-
/**
|
253
|
-
*
|
254
|
-
*/
|
255
|
-
"
|
256
|
-
/**
|
257
|
-
*
|
258
|
-
*/
|
259
|
-
"
|
260
|
-
/**
|
261
|
-
*
|
262
|
-
*/
|
263
|
-
"
|
264
|
-
/**
|
265
|
-
* esri/symbols/
|
266
|
-
*/
|
267
|
-
"
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
}
|
277
|
-
interface
|
278
|
-
/**
|
279
|
-
*
|
280
|
-
*/
|
281
|
-
"
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
*
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
*
|
293
|
-
* @param
|
294
|
-
* @param
|
295
|
-
* @param
|
296
|
-
* @returns Promise resolving when function is done
|
297
|
-
*/
|
298
|
-
"
|
299
|
-
/**
|
300
|
-
*
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
/**
|
314
|
-
* string
|
315
|
-
*/
|
316
|
-
"
|
317
|
-
/**
|
318
|
-
*
|
319
|
-
*/
|
320
|
-
"
|
321
|
-
/**
|
322
|
-
* number
|
323
|
-
*/
|
324
|
-
"
|
325
|
-
/**
|
326
|
-
*
|
327
|
-
*/
|
328
|
-
"
|
329
|
-
/**
|
330
|
-
* The
|
331
|
-
*/
|
332
|
-
"
|
333
|
-
/**
|
334
|
-
*
|
335
|
-
*/
|
336
|
-
"
|
337
|
-
/**
|
338
|
-
* esri/
|
339
|
-
*/
|
340
|
-
"
|
341
|
-
/**
|
342
|
-
*
|
343
|
-
*/
|
344
|
-
"
|
345
|
-
/**
|
346
|
-
*
|
347
|
-
*/
|
348
|
-
"
|
349
|
-
/**
|
350
|
-
* string
|
351
|
-
*/
|
352
|
-
"
|
353
|
-
/**
|
354
|
-
*
|
355
|
-
*/
|
356
|
-
"
|
357
|
-
/**
|
358
|
-
*
|
359
|
-
*/
|
360
|
-
"
|
361
|
-
/**
|
362
|
-
*
|
363
|
-
*/
|
364
|
-
"
|
365
|
-
/**
|
366
|
-
*
|
367
|
-
*/
|
368
|
-
"
|
369
|
-
/**
|
370
|
-
* esri/symbols/
|
371
|
-
*/
|
372
|
-
"
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
"
|
377
|
-
/**
|
378
|
-
* esri/
|
379
|
-
*/
|
380
|
-
"
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
"
|
385
|
-
/**
|
386
|
-
* esri/views/
|
387
|
-
*/
|
388
|
-
"
|
389
|
-
/**
|
390
|
-
*
|
391
|
-
*/
|
392
|
-
"
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
/**
|
404
|
-
*
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
*
|
414
|
-
*/
|
415
|
-
"
|
416
|
-
/**
|
417
|
-
*
|
418
|
-
*/
|
419
|
-
"
|
420
|
-
/**
|
421
|
-
* esri/
|
422
|
-
*/
|
423
|
-
"
|
424
|
-
/**
|
425
|
-
*
|
426
|
-
*/
|
427
|
-
"
|
428
|
-
/**
|
429
|
-
* esri/views/
|
430
|
-
*/
|
431
|
-
"
|
432
|
-
/**
|
433
|
-
*
|
434
|
-
*/
|
435
|
-
"
|
436
|
-
/**
|
437
|
-
*
|
438
|
-
*/
|
439
|
-
"
|
440
|
-
/**
|
441
|
-
* utils/interfaces/
|
442
|
-
*/
|
443
|
-
"
|
444
|
-
/**
|
445
|
-
*
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
"
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
"
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
/**
|
492
|
-
*
|
493
|
-
*/
|
494
|
-
"
|
495
|
-
/**
|
496
|
-
*
|
497
|
-
*/
|
498
|
-
"
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
/**
|
516
|
-
*
|
517
|
-
*/
|
518
|
-
"
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
*
|
548
|
-
*/
|
549
|
-
"
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
*
|
556
|
-
*/
|
557
|
-
"
|
558
|
-
/**
|
559
|
-
*
|
560
|
-
*/
|
561
|
-
"
|
562
|
-
/**
|
563
|
-
*
|
564
|
-
*/
|
565
|
-
"
|
566
|
-
/**
|
567
|
-
*
|
568
|
-
*/
|
569
|
-
"
|
570
|
-
/**
|
571
|
-
*
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
/**
|
579
|
-
*
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
"
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
/**
|
612
|
-
*
|
613
|
-
*/
|
614
|
-
"
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
}
|
625
|
-
export interface
|
626
|
-
detail: T;
|
627
|
-
target:
|
628
|
-
}
|
629
|
-
export interface
|
630
|
-
detail: T;
|
631
|
-
target:
|
632
|
-
}
|
633
|
-
export interface
|
634
|
-
detail: T;
|
635
|
-
target:
|
636
|
-
}
|
637
|
-
export interface
|
638
|
-
detail: T;
|
639
|
-
target:
|
640
|
-
}
|
641
|
-
export interface
|
642
|
-
detail: T;
|
643
|
-
target:
|
644
|
-
}
|
645
|
-
export interface
|
646
|
-
detail: T;
|
647
|
-
target:
|
648
|
-
}
|
649
|
-
export interface
|
650
|
-
detail: T;
|
651
|
-
target:
|
652
|
-
}
|
653
|
-
export interface
|
654
|
-
detail: T;
|
655
|
-
target:
|
656
|
-
}
|
657
|
-
export interface
|
658
|
-
detail: T;
|
659
|
-
target:
|
660
|
-
}
|
661
|
-
export interface
|
662
|
-
detail: T;
|
663
|
-
target:
|
664
|
-
}
|
665
|
-
export interface
|
666
|
-
detail: T;
|
667
|
-
target:
|
668
|
-
}
|
669
|
-
export interface
|
670
|
-
detail: T;
|
671
|
-
target:
|
672
|
-
}
|
673
|
-
export interface
|
674
|
-
detail: T;
|
675
|
-
target:
|
676
|
-
}
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
}
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
}
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
}
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
}
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
}
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
}
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
}
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
}
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
}
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
}
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
}
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
}
|
758
|
-
|
759
|
-
|
760
|
-
|
761
|
-
|
762
|
-
|
763
|
-
}
|
764
|
-
|
765
|
-
|
766
|
-
|
767
|
-
|
768
|
-
|
769
|
-
}
|
770
|
-
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
|
775
|
-
}
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
|
780
|
-
|
781
|
-
}
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
}
|
788
|
-
|
789
|
-
|
790
|
-
|
791
|
-
|
792
|
-
|
793
|
-
}
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
|
798
|
-
|
799
|
-
}
|
800
|
-
|
801
|
-
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
}
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
}
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
}
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
|
822
|
-
|
823
|
-
}
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
}
|
830
|
-
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
}
|
836
|
-
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
}
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
}
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
}
|
854
|
-
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
}
|
860
|
-
|
861
|
-
|
862
|
-
|
863
|
-
|
864
|
-
|
865
|
-
}
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
}
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
|
877
|
-
}
|
878
|
-
|
879
|
-
|
880
|
-
|
881
|
-
|
882
|
-
|
883
|
-
}
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
893
|
-
|
894
|
-
|
895
|
-
|
896
|
-
|
897
|
-
"
|
898
|
-
"
|
899
|
-
"
|
900
|
-
"
|
901
|
-
"
|
902
|
-
"
|
903
|
-
"
|
904
|
-
"
|
905
|
-
"
|
906
|
-
"
|
907
|
-
"
|
908
|
-
"
|
909
|
-
"
|
910
|
-
"
|
911
|
-
"
|
912
|
-
"
|
913
|
-
"
|
914
|
-
"
|
915
|
-
"
|
916
|
-
"
|
917
|
-
"
|
918
|
-
"
|
919
|
-
"
|
920
|
-
"solution-
|
921
|
-
"solution-
|
922
|
-
"solution-
|
923
|
-
"
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
|
928
|
-
|
929
|
-
|
930
|
-
|
931
|
-
"
|
932
|
-
}
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
|
937
|
-
|
938
|
-
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
/**
|
943
|
-
*
|
944
|
-
*/
|
945
|
-
"
|
946
|
-
/**
|
947
|
-
* number: The
|
948
|
-
*/
|
949
|
-
"
|
950
|
-
/**
|
951
|
-
*
|
952
|
-
*/
|
953
|
-
"
|
954
|
-
/**
|
955
|
-
*
|
956
|
-
*/
|
957
|
-
"
|
958
|
-
/**
|
959
|
-
*
|
960
|
-
*/
|
961
|
-
"
|
962
|
-
/**
|
963
|
-
* Emitted on demand when
|
964
|
-
*/
|
965
|
-
"
|
966
|
-
/**
|
967
|
-
*
|
968
|
-
*/
|
969
|
-
"
|
970
|
-
/**
|
971
|
-
*
|
972
|
-
*/
|
973
|
-
"
|
974
|
-
/**
|
975
|
-
*
|
976
|
-
*/
|
977
|
-
"
|
978
|
-
|
979
|
-
|
980
|
-
|
981
|
-
|
982
|
-
|
983
|
-
|
984
|
-
|
985
|
-
|
986
|
-
}
|
987
|
-
interface
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
|
992
|
-
|
993
|
-
|
994
|
-
|
995
|
-
|
996
|
-
|
997
|
-
|
998
|
-
}
|
999
|
-
interface
|
1000
|
-
/**
|
1001
|
-
*
|
1002
|
-
*/
|
1003
|
-
"
|
1004
|
-
|
1005
|
-
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
1012
|
-
|
1013
|
-
|
1014
|
-
|
1015
|
-
|
1016
|
-
|
1017
|
-
|
1018
|
-
|
1019
|
-
|
1020
|
-
|
1021
|
-
|
1022
|
-
/**
|
1023
|
-
* Contains
|
1024
|
-
*/
|
1025
|
-
"
|
1026
|
-
|
1027
|
-
|
1028
|
-
|
1029
|
-
|
1030
|
-
|
1031
|
-
|
1032
|
-
|
1033
|
-
|
1034
|
-
|
1035
|
-
|
1036
|
-
|
1037
|
-
|
1038
|
-
|
1039
|
-
|
1040
|
-
/**
|
1041
|
-
*
|
1042
|
-
*/
|
1043
|
-
"
|
1044
|
-
}
|
1045
|
-
interface
|
1046
|
-
|
1047
|
-
|
1048
|
-
|
1049
|
-
|
1050
|
-
|
1051
|
-
|
1052
|
-
|
1053
|
-
|
1054
|
-
|
1055
|
-
|
1056
|
-
|
1057
|
-
|
1058
|
-
|
1059
|
-
|
1060
|
-
|
1061
|
-
|
1062
|
-
|
1063
|
-
|
1064
|
-
|
1065
|
-
|
1066
|
-
/**
|
1067
|
-
*
|
1068
|
-
*/
|
1069
|
-
"
|
1070
|
-
/**
|
1071
|
-
*
|
1072
|
-
*/
|
1073
|
-
"
|
1074
|
-
/**
|
1075
|
-
* esri/
|
1076
|
-
*/
|
1077
|
-
"
|
1078
|
-
|
1079
|
-
|
1080
|
-
|
1081
|
-
|
1082
|
-
|
1083
|
-
|
1084
|
-
|
1085
|
-
|
1086
|
-
|
1087
|
-
|
1088
|
-
|
1089
|
-
|
1090
|
-
|
1091
|
-
|
1092
|
-
|
1093
|
-
|
1094
|
-
|
1095
|
-
|
1096
|
-
|
1097
|
-
|
1098
|
-
|
1099
|
-
|
1100
|
-
|
1101
|
-
|
1102
|
-
|
1103
|
-
|
1104
|
-
|
1105
|
-
|
1106
|
-
|
1107
|
-
|
1108
|
-
|
1109
|
-
|
1110
|
-
|
1111
|
-
|
1112
|
-
|
1113
|
-
|
1114
|
-
|
1115
|
-
|
1116
|
-
/**
|
1117
|
-
*
|
1118
|
-
*/
|
1119
|
-
"
|
1120
|
-
|
1121
|
-
|
1122
|
-
|
1123
|
-
|
1124
|
-
|
1125
|
-
|
1126
|
-
|
1127
|
-
|
1128
|
-
|
1129
|
-
|
1130
|
-
|
1131
|
-
|
1132
|
-
|
1133
|
-
|
1134
|
-
|
1135
|
-
|
1136
|
-
/**
|
1137
|
-
*
|
1138
|
-
*/
|
1139
|
-
"
|
1140
|
-
/**
|
1141
|
-
*
|
1142
|
-
*/
|
1143
|
-
"
|
1144
|
-
/**
|
1145
|
-
*
|
1146
|
-
*/
|
1147
|
-
"
|
1148
|
-
/**
|
1149
|
-
*
|
1150
|
-
*/
|
1151
|
-
"
|
1152
|
-
/**
|
1153
|
-
*
|
1154
|
-
*/
|
1155
|
-
"
|
1156
|
-
/**
|
1157
|
-
*
|
1158
|
-
*/
|
1159
|
-
"
|
1160
|
-
/**
|
1161
|
-
*
|
1162
|
-
*/
|
1163
|
-
"
|
1164
|
-
/**
|
1165
|
-
*
|
1166
|
-
*/
|
1167
|
-
"
|
1168
|
-
/**
|
1169
|
-
*
|
1170
|
-
*/
|
1171
|
-
"
|
1172
|
-
/**
|
1173
|
-
*
|
1174
|
-
*/
|
1175
|
-
"
|
1176
|
-
/**
|
1177
|
-
*
|
1178
|
-
*/
|
1179
|
-
"
|
1180
|
-
/**
|
1181
|
-
*
|
1182
|
-
*/
|
1183
|
-
"
|
1184
|
-
/**
|
1185
|
-
*
|
1186
|
-
*/
|
1187
|
-
"
|
1188
|
-
/**
|
1189
|
-
* esri/
|
1190
|
-
*/
|
1191
|
-
"
|
1192
|
-
|
1193
|
-
|
1194
|
-
|
1195
|
-
|
1196
|
-
|
1197
|
-
|
1198
|
-
|
1199
|
-
|
1200
|
-
|
1201
|
-
|
1202
|
-
|
1203
|
-
|
1204
|
-
|
1205
|
-
|
1206
|
-
|
1207
|
-
|
1208
|
-
|
1209
|
-
|
1210
|
-
|
1211
|
-
|
1212
|
-
|
1213
|
-
|
1214
|
-
|
1215
|
-
|
1216
|
-
|
1217
|
-
|
1218
|
-
|
1219
|
-
|
1220
|
-
|
1221
|
-
|
1222
|
-
|
1223
|
-
|
1224
|
-
|
1225
|
-
|
1226
|
-
|
1227
|
-
|
1228
|
-
|
1229
|
-
|
1230
|
-
|
1231
|
-
|
1232
|
-
/**
|
1233
|
-
*
|
1234
|
-
*/
|
1235
|
-
"
|
1236
|
-
/**
|
1237
|
-
*
|
1238
|
-
*/
|
1239
|
-
"
|
1240
|
-
/**
|
1241
|
-
*
|
1242
|
-
*/
|
1243
|
-
"
|
1244
|
-
/**
|
1245
|
-
*
|
1246
|
-
*/
|
1247
|
-
"
|
1248
|
-
/**
|
1249
|
-
*
|
1250
|
-
*/
|
1251
|
-
"
|
1252
|
-
/**
|
1253
|
-
*
|
1254
|
-
*/
|
1255
|
-
"
|
1256
|
-
/**
|
1257
|
-
*
|
1258
|
-
*/
|
1259
|
-
"
|
1260
|
-
/**
|
1261
|
-
*
|
1262
|
-
*/
|
1263
|
-
"
|
1264
|
-
/**
|
1265
|
-
*
|
1266
|
-
*/
|
1267
|
-
"
|
1268
|
-
/**
|
1269
|
-
*
|
1270
|
-
*/
|
1271
|
-
"
|
1272
|
-
/**
|
1273
|
-
*
|
1274
|
-
*/
|
1275
|
-
"
|
1276
|
-
/**
|
1277
|
-
*
|
1278
|
-
*/
|
1279
|
-
"
|
1280
|
-
/**
|
1281
|
-
*
|
1282
|
-
*/
|
1283
|
-
"
|
1284
|
-
/**
|
1285
|
-
*
|
1286
|
-
*/
|
1287
|
-
"
|
1288
|
-
|
1289
|
-
|
1290
|
-
|
1291
|
-
"
|
1292
|
-
/**
|
1293
|
-
*
|
1294
|
-
*/
|
1295
|
-
"
|
1296
|
-
/**
|
1297
|
-
*
|
1298
|
-
*/
|
1299
|
-
"
|
1300
|
-
/**
|
1301
|
-
* esri/
|
1302
|
-
*/
|
1303
|
-
"
|
1304
|
-
/**
|
1305
|
-
*
|
1306
|
-
*/
|
1307
|
-
"
|
1308
|
-
|
1309
|
-
|
1310
|
-
|
1311
|
-
"
|
1312
|
-
|
1313
|
-
|
1314
|
-
|
1315
|
-
|
1316
|
-
|
1317
|
-
|
1318
|
-
|
1319
|
-
|
1320
|
-
|
1321
|
-
|
1322
|
-
|
1323
|
-
|
1324
|
-
|
1325
|
-
|
1326
|
-
|
1327
|
-
|
1328
|
-
|
1329
|
-
|
1330
|
-
|
1331
|
-
|
1332
|
-
|
1333
|
-
|
1334
|
-
/**
|
1335
|
-
*
|
1336
|
-
*/
|
1337
|
-
"
|
1338
|
-
/**
|
1339
|
-
*
|
1340
|
-
*/
|
1341
|
-
"
|
1342
|
-
/**
|
1343
|
-
*
|
1344
|
-
*/
|
1345
|
-
"
|
1346
|
-
/**
|
1347
|
-
*
|
1348
|
-
*/
|
1349
|
-
"
|
1350
|
-
/**
|
1351
|
-
*
|
1352
|
-
*/
|
1353
|
-
"
|
1354
|
-
/**
|
1355
|
-
*
|
1356
|
-
*/
|
1357
|
-
"
|
1358
|
-
/**
|
1359
|
-
*
|
1360
|
-
*/
|
1361
|
-
"
|
1362
|
-
/**
|
1363
|
-
*
|
1364
|
-
*/
|
1365
|
-
"
|
1366
|
-
/**
|
1367
|
-
* utils/interfaces/
|
1368
|
-
*/
|
1369
|
-
"
|
1370
|
-
/**
|
1371
|
-
*
|
1372
|
-
*/
|
1373
|
-
"
|
1374
|
-
|
1375
|
-
|
1376
|
-
|
1377
|
-
|
1378
|
-
|
1379
|
-
|
1380
|
-
|
1381
|
-
|
1382
|
-
|
1383
|
-
|
1384
|
-
|
1385
|
-
|
1386
|
-
|
1387
|
-
|
1388
|
-
|
1389
|
-
|
1390
|
-
|
1391
|
-
|
1392
|
-
|
1393
|
-
|
1394
|
-
|
1395
|
-
|
1396
|
-
/**
|
1397
|
-
*
|
1398
|
-
*/
|
1399
|
-
"
|
1400
|
-
|
1401
|
-
|
1402
|
-
|
1403
|
-
|
1404
|
-
|
1405
|
-
|
1406
|
-
|
1407
|
-
|
1408
|
-
|
1409
|
-
|
1410
|
-
|
1411
|
-
|
1412
|
-
|
1413
|
-
|
1414
|
-
|
1415
|
-
|
1416
|
-
|
1417
|
-
|
1418
|
-
|
1419
|
-
|
1420
|
-
|
1421
|
-
|
1422
|
-
|
1423
|
-
|
1424
|
-
|
1425
|
-
|
1426
|
-
/**
|
1427
|
-
*
|
1428
|
-
*/
|
1429
|
-
"
|
1430
|
-
/**
|
1431
|
-
*
|
1432
|
-
*/
|
1433
|
-
"
|
1434
|
-
/**
|
1435
|
-
*
|
1436
|
-
*/
|
1437
|
-
"
|
1438
|
-
}
|
1439
|
-
interface
|
1440
|
-
/**
|
1441
|
-
* A template's
|
1442
|
-
*/
|
1443
|
-
"
|
1444
|
-
}
|
1445
|
-
interface
|
1446
|
-
|
1447
|
-
|
1448
|
-
|
1449
|
-
|
1450
|
-
|
1451
|
-
|
1452
|
-
|
1453
|
-
|
1454
|
-
|
1455
|
-
|
1456
|
-
|
1457
|
-
|
1458
|
-
|
1459
|
-
|
1460
|
-
|
1461
|
-
|
1462
|
-
|
1463
|
-
|
1464
|
-
|
1465
|
-
|
1466
|
-
"
|
1467
|
-
/**
|
1468
|
-
*
|
1469
|
-
*/
|
1470
|
-
"
|
1471
|
-
|
1472
|
-
|
1473
|
-
|
1474
|
-
|
1475
|
-
|
1476
|
-
|
1477
|
-
|
1478
|
-
|
1479
|
-
|
1480
|
-
|
1481
|
-
|
1482
|
-
|
1483
|
-
|
1484
|
-
|
1485
|
-
|
1486
|
-
|
1487
|
-
|
1488
|
-
|
1489
|
-
|
1490
|
-
"
|
1491
|
-
|
1492
|
-
|
1493
|
-
|
1494
|
-
|
1495
|
-
|
1496
|
-
|
1497
|
-
|
1498
|
-
|
1499
|
-
|
1500
|
-
|
1501
|
-
|
1502
|
-
/**
|
1503
|
-
*
|
1504
|
-
*/
|
1505
|
-
"
|
1506
|
-
|
1507
|
-
|
1508
|
-
|
1509
|
-
|
1510
|
-
|
1511
|
-
|
1512
|
-
|
1513
|
-
|
1514
|
-
|
1515
|
-
|
1516
|
-
|
1517
|
-
|
1518
|
-
|
1519
|
-
|
1520
|
-
|
1521
|
-
|
1522
|
-
|
1523
|
-
|
1524
|
-
|
1525
|
-
"
|
1526
|
-
|
1527
|
-
|
1528
|
-
|
1529
|
-
|
1530
|
-
|
1531
|
-
"
|
1532
|
-
"
|
1533
|
-
|
1534
|
-
|
1535
|
-
|
1536
|
-
"
|
1537
|
-
|
1538
|
-
|
1539
|
-
|
1540
|
-
"
|
1541
|
-
|
1542
|
-
|
1543
|
-
"
|
1544
|
-
"
|
1545
|
-
"
|
1546
|
-
"
|
1547
|
-
"
|
1548
|
-
"
|
1549
|
-
"
|
1550
|
-
"
|
1551
|
-
"
|
1552
|
-
"
|
1553
|
-
"
|
1554
|
-
"
|
1555
|
-
"
|
1556
|
-
"
|
1557
|
-
"
|
1558
|
-
|
1559
|
-
|
1560
|
-
|
1561
|
-
|
1562
|
-
|
1563
|
-
|
1564
|
-
|
1565
|
-
|
1566
|
-
|
1567
|
-
|
1568
|
-
|
1569
|
-
|
1570
|
-
|
1571
|
-
|
1572
|
-
|
1573
|
-
|
1574
|
-
|
1575
|
-
|
1576
|
-
|
1577
|
-
|
1578
|
-
|
1579
|
-
|
1580
|
-
|
1581
|
-
|
1582
|
-
|
1583
|
-
|
1584
|
-
"
|
1585
|
-
"
|
1586
|
-
"
|
1587
|
-
"
|
1588
|
-
"
|
1589
|
-
"
|
1590
|
-
"
|
1591
|
-
"
|
1592
|
-
"
|
1593
|
-
"
|
1594
|
-
"
|
1595
|
-
"
|
1596
|
-
"
|
1597
|
-
"
|
1598
|
-
"
|
1599
|
-
|
1600
|
-
|
1601
|
-
|
1
|
+
/* eslint-disable */
|
2
|
+
/* tslint:disable */
|
3
|
+
/**
|
4
|
+
* This is an autogenerated file created by the Stencil compiler.
|
5
|
+
* It contains typing information for all components that exist in this project.
|
6
|
+
*/
|
7
|
+
import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
|
8
|
+
import { DistanceUnit, EExpandType, ERefineMode, ESelectionMode, ESketchType, EWorkflowType, IInfoCardValues, IInventoryItem, IMapInfo, IMediaCardValues, IRefineSelectionEvent, ISearchConfiguration, ISearchResult, ISelectionSet, ISolutionSpatialReferenceInfo, ISpatialRefRepresentation, IValueChange, SelectionMode } from "./utils/interfaces";
|
9
|
+
import { UserSession } from "@esri/solution-common";
|
10
|
+
export namespace Components {
|
11
|
+
interface AddRecordModal {
|
12
|
+
/**
|
13
|
+
* When true the component is displayed
|
14
|
+
*/
|
15
|
+
"open": boolean;
|
16
|
+
}
|
17
|
+
interface BufferTools {
|
18
|
+
/**
|
19
|
+
* string: The appearance of display. Can be a "slider" or "text" inputs for distance/value
|
20
|
+
*/
|
21
|
+
"appearance": "slider" | "text";
|
22
|
+
/**
|
23
|
+
* number: The distance used for buffer
|
24
|
+
*/
|
25
|
+
"distance": number;
|
26
|
+
/**
|
27
|
+
* esri/geometry/Geometry: https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Geometry.html
|
28
|
+
*/
|
29
|
+
"geometries": __esri.Geometry[];
|
30
|
+
/**
|
31
|
+
* number: The component's maximum selectable value.
|
32
|
+
*/
|
33
|
+
"max": number;
|
34
|
+
/**
|
35
|
+
* number: The component's minimum selectable value.
|
36
|
+
*/
|
37
|
+
"min": number;
|
38
|
+
/**
|
39
|
+
* number: Displays tick marks on the number line at a specified interval.
|
40
|
+
*/
|
41
|
+
"sliderTicks": number;
|
42
|
+
/**
|
43
|
+
* boolean: option to control if buffer results should be unioned
|
44
|
+
*/
|
45
|
+
"unionResults": boolean;
|
46
|
+
/**
|
47
|
+
* DistanceUnit: "feet"|"meters"|"miles"|"kilometers"
|
48
|
+
*/
|
49
|
+
"unit": DistanceUnit;
|
50
|
+
}
|
51
|
+
interface CardManager {
|
52
|
+
}
|
53
|
+
interface CommentCard {
|
54
|
+
}
|
55
|
+
interface CrowdsourceManager {
|
56
|
+
/**
|
57
|
+
* IMapInfo[]: array of map infos (name and id)
|
58
|
+
*/
|
59
|
+
"mapInfos": IMapInfo[];
|
60
|
+
}
|
61
|
+
interface CrowdsourceReporter {
|
62
|
+
}
|
63
|
+
interface DeductCalculator {
|
64
|
+
}
|
65
|
+
interface EditRecordModal {
|
66
|
+
/**
|
67
|
+
* When true the component is displayed
|
68
|
+
*/
|
69
|
+
"open": boolean;
|
70
|
+
}
|
71
|
+
interface InfoCard {
|
72
|
+
/**
|
73
|
+
* string: the components title
|
74
|
+
*/
|
75
|
+
"cardTitle": string;
|
76
|
+
/**
|
77
|
+
* IInfoCardValues: key value pairs to show in the components table
|
78
|
+
*/
|
79
|
+
"values": IInfoCardValues;
|
80
|
+
}
|
81
|
+
interface JsonEditor {
|
82
|
+
/**
|
83
|
+
* Gets the contents of the editor.
|
84
|
+
* @returns Promise resolving with the current contents of the editor
|
85
|
+
*/
|
86
|
+
"getEditorContents": () => Promise<any>;
|
87
|
+
/**
|
88
|
+
* Contains a public value to indicate if the model has any changes.
|
89
|
+
*/
|
90
|
+
"hasChanges": boolean;
|
91
|
+
/**
|
92
|
+
* Contains a public value to indicate if the model has any errors that would prevent saving it.
|
93
|
+
*/
|
94
|
+
"hasErrors": boolean;
|
95
|
+
/**
|
96
|
+
* Contains a unique identifier for when we have multiple instances of the editor. For example when we want to show an item's data as well as an item's properties.
|
97
|
+
*/
|
98
|
+
"instanceid": any;
|
99
|
+
/**
|
100
|
+
* Frees the editor events and memory; to be called when the web component is no longer needed. Because the component lifecycle doesn't include an "onDestroy" event (@see https://stenciljs.com/docs/component-lifecycle#disconnectedcallback) and TypeScript/JavaScript does automatic garbage collection without a callback hook until ES2021 (@see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/FinalizationRegistry), this cleanup call needs to be called manually.
|
101
|
+
*/
|
102
|
+
"prepareForDeletion": () => Promise<void>;
|
103
|
+
/**
|
104
|
+
* Replaces the current selection with the supplied text, inserting if nothing is selected.
|
105
|
+
* @param replacement Text to use for replacement or insertion
|
106
|
+
* @returns Promise resolving when function is done
|
107
|
+
*/
|
108
|
+
"replaceCurrentSelection": (replacement: string) => Promise<any>;
|
109
|
+
/**
|
110
|
+
* Resets the contents of the editor with the current `value`.
|
111
|
+
* @returns Promise resolving when function is done
|
112
|
+
*/
|
113
|
+
"reset": () => Promise<any>;
|
114
|
+
/**
|
115
|
+
* Contains the public value for this component; it is not changed by the editor. When changed, the change overwrites the contents of the editor.
|
116
|
+
*/
|
117
|
+
"value": any;
|
118
|
+
}
|
119
|
+
interface LayerTable {
|
120
|
+
/**
|
121
|
+
* esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html
|
122
|
+
*/
|
123
|
+
"mapView": __esri.MapView;
|
124
|
+
}
|
125
|
+
interface ListItem {
|
126
|
+
}
|
127
|
+
interface MapCard {
|
128
|
+
/**
|
129
|
+
* IMapInfo[]: array of map infos (name and id)
|
130
|
+
*/
|
131
|
+
"mapInfos": IMapInfo[];
|
132
|
+
/**
|
133
|
+
* esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html
|
134
|
+
*/
|
135
|
+
"mapView": __esri.MapView;
|
136
|
+
}
|
137
|
+
interface MapDrawTools {
|
138
|
+
/**
|
139
|
+
* boolean: sketch is used by multiple components...need a way to know who should respond...
|
140
|
+
*/
|
141
|
+
"active": boolean;
|
142
|
+
/**
|
143
|
+
* boolean: Optionally draw a border around the draw tools
|
144
|
+
*/
|
145
|
+
"border": boolean;
|
146
|
+
/**
|
147
|
+
* Clears the user drawn graphics
|
148
|
+
* @returns Promise that resolves when the operation is complete
|
149
|
+
*/
|
150
|
+
"clear": () => Promise<void>;
|
151
|
+
/**
|
152
|
+
* esri/Graphic: https://developers.arcgis.com/javascript/latest/api-reference/esri-Graphic.html
|
153
|
+
*/
|
154
|
+
"graphics": __esri.Graphic[];
|
155
|
+
/**
|
156
|
+
* esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html
|
157
|
+
*/
|
158
|
+
"mapView": __esri.MapView;
|
159
|
+
/**
|
160
|
+
* esri/symbols/SimpleMarkerSymbol: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleMarkerSymbol.html
|
161
|
+
*/
|
162
|
+
"pointSymbol": __esri.SimpleMarkerSymbol;
|
163
|
+
/**
|
164
|
+
* esri/symbols/SimpleFillSymbol: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleFillSymbol.html
|
165
|
+
*/
|
166
|
+
"polygonSymbol": __esri.SimpleFillSymbol;
|
167
|
+
/**
|
168
|
+
* esri/symbols/SimpleLineSymbol: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleLineSymbol.html
|
169
|
+
*/
|
170
|
+
"polylineSymbol": __esri.SimpleLineSymbol;
|
171
|
+
}
|
172
|
+
interface MapLayerPicker {
|
173
|
+
/**
|
174
|
+
* string[]: Optional list of enabled layer ids If empty all layers will be available
|
175
|
+
*/
|
176
|
+
"enabledLayerIds": string[];
|
177
|
+
/**
|
178
|
+
* esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html
|
179
|
+
*/
|
180
|
+
"mapView": __esri.MapView;
|
181
|
+
/**
|
182
|
+
* string[]: list of layer ids that have been selected by the end user
|
183
|
+
*/
|
184
|
+
"selectedLayerIds": string[];
|
185
|
+
/**
|
186
|
+
* SelectionMode: "single" | "multi" Should the component support selection against a single layer or multiple layers.
|
187
|
+
*/
|
188
|
+
"selectionMode": SelectionMode;
|
189
|
+
}
|
190
|
+
interface MapSearch {
|
191
|
+
/**
|
192
|
+
* Clears the state of the search widget
|
193
|
+
* @returns Promise that resolves when the operation is complete
|
194
|
+
*/
|
195
|
+
"clear": () => Promise<void>;
|
196
|
+
/**
|
197
|
+
* esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html
|
198
|
+
*/
|
199
|
+
"mapView": __esri.MapView;
|
200
|
+
/**
|
201
|
+
* ISearchConfiguration: Configuration details for the Search widget
|
202
|
+
*/
|
203
|
+
"searchConfiguration": ISearchConfiguration;
|
204
|
+
}
|
205
|
+
interface MapSelectTools {
|
206
|
+
/**
|
207
|
+
* string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html
|
208
|
+
*/
|
209
|
+
"bufferColor": any;
|
210
|
+
/**
|
211
|
+
* string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html
|
212
|
+
*/
|
213
|
+
"bufferOutlineColor": any;
|
214
|
+
/**
|
215
|
+
* Clear any selection results
|
216
|
+
* @returns Promise when the results have been cleared
|
217
|
+
*/
|
218
|
+
"clearSelection": () => Promise<void>;
|
219
|
+
/**
|
220
|
+
* number: The default value to show for the buffer distance
|
221
|
+
*/
|
222
|
+
"defaultBufferDistance": number;
|
223
|
+
/**
|
224
|
+
* number: The default value to show for the buffer unit
|
225
|
+
*/
|
226
|
+
"defaultBufferUnit": DistanceUnit;
|
227
|
+
/**
|
228
|
+
* string[]: Optional list of enabled layer ids If empty all layers will be available
|
229
|
+
*/
|
230
|
+
"enabledLayerIds": string[];
|
231
|
+
/**
|
232
|
+
* esri/geometry: https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry.html
|
233
|
+
*/
|
234
|
+
"geometries": __esri.Geometry[];
|
235
|
+
/**
|
236
|
+
* Get the new selection set
|
237
|
+
* @returns Promise with the new selection set
|
238
|
+
*/
|
239
|
+
"getSelection": () => Promise<ISelectionSet>;
|
240
|
+
/**
|
241
|
+
* boolean: When true a new label is not generated for the stored selection set
|
242
|
+
*/
|
243
|
+
"isUpdate": boolean;
|
244
|
+
/**
|
245
|
+
* esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html
|
246
|
+
*/
|
247
|
+
"mapView": __esri.MapView;
|
248
|
+
/**
|
249
|
+
* ISearchConfiguration: Configuration details for the Search widget
|
250
|
+
*/
|
251
|
+
"searchConfiguration": ISearchConfiguration;
|
252
|
+
/**
|
253
|
+
* esri/views/layers/FeatureLayerView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-FeatureLayerView.html
|
254
|
+
*/
|
255
|
+
"selectLayerView": __esri.FeatureLayerView;
|
256
|
+
/**
|
257
|
+
* utils/interfaces/ISelectionSet: Used to store key details about any selections that have been made.
|
258
|
+
*/
|
259
|
+
"selectionSet": ISelectionSet;
|
260
|
+
/**
|
261
|
+
* boolean: When true the buffer tools will be available for use
|
262
|
+
*/
|
263
|
+
"showBufferTools": boolean;
|
264
|
+
/**
|
265
|
+
* esri/symbols/SimpleLineSymbol | JSON representation : https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleLineSymbol.html
|
266
|
+
*/
|
267
|
+
"sketchLineSymbol": __esri.SimpleLineSymbol;
|
268
|
+
/**
|
269
|
+
* esri/symbols/SimpleMarkerSymbol | JSON representation: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleMarkerSymbol.html
|
270
|
+
*/
|
271
|
+
"sketchPointSymbol": __esri.SimpleMarkerSymbol;
|
272
|
+
/**
|
273
|
+
* esri/symbols/SimpleFillSymbol | JSON representation: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleFillSymbol.html
|
274
|
+
*/
|
275
|
+
"sketchPolygonSymbol": __esri.SimpleFillSymbol;
|
276
|
+
}
|
277
|
+
interface MediaCard {
|
278
|
+
/**
|
279
|
+
* IMediaCardValues[]: Array of objects that contain the name, description, and image to display
|
280
|
+
*/
|
281
|
+
"values": IMediaCardValues[];
|
282
|
+
}
|
283
|
+
interface PciCalculator {
|
284
|
+
}
|
285
|
+
interface PdfDownload {
|
286
|
+
/**
|
287
|
+
* boolean: Controls the enabled/disabled state of download
|
288
|
+
*/
|
289
|
+
"disabled": boolean;
|
290
|
+
/**
|
291
|
+
* Downloads csv of mailing labels for the provided list of ids
|
292
|
+
* @param selectionSetNames Names of the selection sets used to provide ids
|
293
|
+
* @param ids List of ids to download
|
294
|
+
* @param removeDuplicates When true a single label is generated when multiple featues have a shared address value
|
295
|
+
* @param addColumnTitle Indicates if column headings should be included in output
|
296
|
+
* @returns Promise resolving when function is done
|
297
|
+
*/
|
298
|
+
"downloadCSV": (selectionSetNames: string[], ids: number[], removeDuplicates: boolean, addColumnTitle?: boolean) => Promise<void>;
|
299
|
+
/**
|
300
|
+
* Downloads pdf of mailing labels for the provided list of ids
|
301
|
+
* @param selectionSetNames Names of the selection sets used to provide ids
|
302
|
+
* @param ids List of ids to download
|
303
|
+
* @param removeDuplicates When true a single label is generated when multiple featues have a shared address value
|
304
|
+
* @returns Promise resolving when function is done
|
305
|
+
*/
|
306
|
+
"downloadPDF": (selectionSetNames: string[], ids: number[], removeDuplicates: boolean) => Promise<void>;
|
307
|
+
/**
|
308
|
+
* esri/views/layers/FeatureLayerView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-FeatureLayerView.html
|
309
|
+
*/
|
310
|
+
"layerView": __esri.FeatureLayerView;
|
311
|
+
}
|
312
|
+
interface PublicNotification {
|
313
|
+
/**
|
314
|
+
* string[]: List of layer ids that should be shown as potential addressee layers
|
315
|
+
*/
|
316
|
+
"addresseeLayerIds": string[];
|
317
|
+
/**
|
318
|
+
* string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html
|
319
|
+
*/
|
320
|
+
"bufferColor": any;
|
321
|
+
/**
|
322
|
+
* string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html
|
323
|
+
*/
|
324
|
+
"bufferOutlineColor": any;
|
325
|
+
/**
|
326
|
+
* boolean: When true the user can define a name for each notification list
|
327
|
+
*/
|
328
|
+
"customLabelEnabled": boolean;
|
329
|
+
/**
|
330
|
+
* number: The default value to show for the buffer distance
|
331
|
+
*/
|
332
|
+
"defaultBufferDistance": number;
|
333
|
+
/**
|
334
|
+
* number: The default value to show for the buffer unit ("feet"|"meters"|"miles"|"kilometers")
|
335
|
+
*/
|
336
|
+
"defaultBufferUnit": DistanceUnit;
|
337
|
+
/**
|
338
|
+
* The effect that will be applied when featureHighlightEnabled is true esri/layers/support/FeatureEffect: https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-FeatureEffect.html
|
339
|
+
*/
|
340
|
+
"featureEffect": __esri.FeatureEffect;
|
341
|
+
/**
|
342
|
+
* boolean: When enabled features will be highlighted when their notification list item is clicked.
|
343
|
+
*/
|
344
|
+
"featureHighlightEnabled": boolean;
|
345
|
+
/**
|
346
|
+
* esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html
|
347
|
+
*/
|
348
|
+
"mapView": __esri.MapView;
|
349
|
+
/**
|
350
|
+
* string: The value to show for no results when left empty the default text "0 selected features from {layerTitle}" will be shown
|
351
|
+
*/
|
352
|
+
"noResultText": string;
|
353
|
+
/**
|
354
|
+
* ISearchConfiguration: Configuration details for the Search widget
|
355
|
+
*/
|
356
|
+
"searchConfiguration": ISearchConfiguration;
|
357
|
+
/**
|
358
|
+
* string[]: List of layer ids that should be shown as potential selection layers when skectching with "Use layer features" option
|
359
|
+
*/
|
360
|
+
"selectionLayerIds": string[];
|
361
|
+
/**
|
362
|
+
* boolean: When true the refine selection workflow will be included in the UI
|
363
|
+
*/
|
364
|
+
"showRefineSelection": boolean;
|
365
|
+
/**
|
366
|
+
* boolean: When false no buffer distance or unit controls will be exposed
|
367
|
+
*/
|
368
|
+
"showSearchSettings": boolean;
|
369
|
+
/**
|
370
|
+
* esri/symbols/SimpleLineSymbol | JSON representation : https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleLineSymbol.html A JSON representation of the instance in the ArcGIS format. See the ArcGIS REST API documentation for examples of the structure of various input JSON objects. https://developers.arcgis.com/documentation/common-data-types/symbol-objects.htm
|
371
|
+
*/
|
372
|
+
"sketchLineSymbol": __esri.SimpleLineSymbol | any;
|
373
|
+
/**
|
374
|
+
* esri/symbols/SimpleMarkerSymbol | JSON representation: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleMarkerSymbol.html A JSON representation of the instance in the ArcGIS format. See the ArcGIS REST API documentation for examples of the structure of various input JSON objects. https://developers.arcgis.com/documentation/common-data-types/symbol-objects.htm
|
375
|
+
*/
|
376
|
+
"sketchPointSymbol": __esri.SimpleMarkerSymbol | any;
|
377
|
+
/**
|
378
|
+
* esri/symbols/SimpleFillSymbol | JSON representation: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleFillSymbol.html A JSON representation of the instance in the ArcGIS format. See the ArcGIS REST API documentation for examples of the structure of various input JSON objects. https://developers.arcgis.com/documentation/common-data-types/symbol-objects.htm
|
379
|
+
*/
|
380
|
+
"sketchPolygonSymbol": __esri.SimpleFillSymbol | any;
|
381
|
+
}
|
382
|
+
interface RefineSelection {
|
383
|
+
"GraphicsLayer": any;
|
384
|
+
"SketchViewModel": any;
|
385
|
+
/**
|
386
|
+
* esri/views/layers/FeatureLayerView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-FeatureLayerView.html
|
387
|
+
*/
|
388
|
+
"addresseeLayer": __esri.FeatureLayerView;
|
389
|
+
/**
|
390
|
+
* string[]: Optional list of enabled layer ids If empty all layers will be available
|
391
|
+
*/
|
392
|
+
"enabledLayerIds": string[];
|
393
|
+
/**
|
394
|
+
* esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html
|
395
|
+
*/
|
396
|
+
"mapView": __esri.MapView;
|
397
|
+
/**
|
398
|
+
* utils/interfaces/ISelectionSet: An array of user defined selection sets
|
399
|
+
*/
|
400
|
+
"selectionSets": ISelectionSet[];
|
401
|
+
}
|
402
|
+
interface RefineSelectionTools {
|
403
|
+
/**
|
404
|
+
* boolean: sketch is used by multiple components...need a way to know who should respond...
|
405
|
+
*/
|
406
|
+
"active": boolean;
|
407
|
+
/**
|
408
|
+
* boolean: Optionally draw a border around the draw tools
|
409
|
+
*/
|
410
|
+
"border": boolean;
|
411
|
+
/**
|
412
|
+
* Clear current highlight handle
|
413
|
+
* @returns Promise when complete
|
414
|
+
*/
|
415
|
+
"clearHighlight": () => Promise<void>;
|
416
|
+
/**
|
417
|
+
* string[]: Optional list of enabled layer ids If empty all layers will be available
|
418
|
+
*/
|
419
|
+
"enabledLayerIds": string[];
|
420
|
+
/**
|
421
|
+
* esri/Graphic: https://developers.arcgis.com/javascript/latest/api-reference/esri-Graphic.html
|
422
|
+
*/
|
423
|
+
"graphics": __esri.Graphic[];
|
424
|
+
/**
|
425
|
+
* number: The oids of the selected features
|
426
|
+
*/
|
427
|
+
"ids": number[];
|
428
|
+
/**
|
429
|
+
* esri/views/layers/LayerView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-LayerView.html
|
430
|
+
*/
|
431
|
+
"layerView": __esri.FeatureLayerView;
|
432
|
+
/**
|
433
|
+
* esri/views/layers/FeatureLayerView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-FeatureLayerView.html
|
434
|
+
*/
|
435
|
+
"layerViews": __esri.FeatureLayerView[];
|
436
|
+
/**
|
437
|
+
* esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html
|
438
|
+
*/
|
439
|
+
"mapView": __esri.MapView;
|
440
|
+
/**
|
441
|
+
* utils/interfaces/ESelectionMode: ADD, REMOVE
|
442
|
+
*/
|
443
|
+
"mode": ESelectionMode;
|
444
|
+
/**
|
445
|
+
* utils/interfaces/ERefineMode: ALL, SUBSET
|
446
|
+
*/
|
447
|
+
"refineMode": ERefineMode;
|
448
|
+
/**
|
449
|
+
* utils/interfaces/ISelectionSet: Refine selection set
|
450
|
+
*/
|
451
|
+
"refineSelectionSet": ISelectionSet;
|
452
|
+
/**
|
453
|
+
* Reset the ids collection
|
454
|
+
* @returns Promise when complete
|
455
|
+
*/
|
456
|
+
"reset": () => Promise<void>;
|
457
|
+
/**
|
458
|
+
* boolean: Used to control the visibility of the layer picker
|
459
|
+
*/
|
460
|
+
"useLayerPicker": boolean;
|
461
|
+
}
|
462
|
+
interface SolutionConfiguration {
|
463
|
+
/**
|
464
|
+
* Credentials for requests, which can be a serialized UserSession
|
465
|
+
*/
|
466
|
+
"authentication": UserSession;
|
467
|
+
"getSpatialReferenceInfo": () => Promise<ISolutionSpatialReferenceInfo>;
|
468
|
+
"saveSolution": () => Promise<void>;
|
469
|
+
"serializedAuthentication": string;
|
470
|
+
/**
|
471
|
+
* Used to show/hide loading indicator
|
472
|
+
*/
|
473
|
+
"showLoading": boolean;
|
474
|
+
/**
|
475
|
+
* Contains the current solution item id
|
476
|
+
*/
|
477
|
+
"solutionItemId": string;
|
478
|
+
"unloadSolution": () => Promise<void>;
|
479
|
+
}
|
480
|
+
interface SolutionContents {
|
481
|
+
/**
|
482
|
+
* Contains the current item that is selected.
|
483
|
+
*/
|
484
|
+
"selectedItemId": string;
|
485
|
+
/**
|
486
|
+
* Contains the public value for this component.
|
487
|
+
*/
|
488
|
+
"templateHierarchy": IInventoryItem[];
|
489
|
+
}
|
490
|
+
interface SolutionItem {
|
491
|
+
/**
|
492
|
+
* Credentials for requests
|
493
|
+
*/
|
494
|
+
"authentication": UserSession;
|
495
|
+
/**
|
496
|
+
* A template's itemId.
|
497
|
+
*/
|
498
|
+
"itemId": string;
|
499
|
+
/**
|
500
|
+
* Contains the organization based variables
|
501
|
+
*/
|
502
|
+
"organizationVariables": string;
|
503
|
+
/**
|
504
|
+
* Contains the solution based variables
|
505
|
+
*/
|
506
|
+
"solutionVariables": string;
|
507
|
+
}
|
508
|
+
interface SolutionItemDetails {
|
509
|
+
/**
|
510
|
+
* A template's itemId.
|
511
|
+
*/
|
512
|
+
"itemId": string;
|
513
|
+
}
|
514
|
+
interface SolutionItemIcon {
|
515
|
+
/**
|
516
|
+
* Indicate if this is portal
|
517
|
+
*/
|
518
|
+
"isPortal": boolean;
|
519
|
+
/**
|
520
|
+
* The type for the item
|
521
|
+
*/
|
522
|
+
"type": string;
|
523
|
+
/**
|
524
|
+
* The typeKeywords for the item
|
525
|
+
*/
|
526
|
+
"typeKeywords": string[];
|
527
|
+
}
|
528
|
+
interface SolutionItemSharing {
|
529
|
+
"getShareInfo": () => Promise<any>;
|
530
|
+
/**
|
531
|
+
* A template's groupId.
|
532
|
+
*/
|
533
|
+
"groupId": string;
|
534
|
+
}
|
535
|
+
interface SolutionOrganizationVariables {
|
536
|
+
/**
|
537
|
+
* Contains the public value for this component.
|
538
|
+
*/
|
539
|
+
"value": string;
|
540
|
+
}
|
541
|
+
interface SolutionResourceItem {
|
542
|
+
/**
|
543
|
+
* Credentials for requests
|
544
|
+
*/
|
545
|
+
"authentication": UserSession;
|
546
|
+
/**
|
547
|
+
* A template's itemId. This is used to get the correct model from a store in the json-editor
|
548
|
+
*/
|
549
|
+
"itemId": string;
|
550
|
+
}
|
551
|
+
interface SolutionSpatialRef {
|
552
|
+
/**
|
553
|
+
* Returns the spatial reference description of the supplied value. (Exposes protected method `_createSpatialRefDisplay` for testing.)
|
554
|
+
* @param value WKID or WKT or null for default
|
555
|
+
* @returns If component is using a WKID, description using WKID; otherwise, the WKT; defaults to 102100
|
556
|
+
*/
|
557
|
+
"createSpatialRefDisplay": (value: string) => Promise<ISpatialRefRepresentation>;
|
558
|
+
/**
|
559
|
+
* The wkid that will be used as the default when no user selection has been made.
|
560
|
+
*/
|
561
|
+
"defaultWkid": number;
|
562
|
+
/**
|
563
|
+
* Returns the current spatial reference description. (Exposes protected variable `spatialRef` for testing.)
|
564
|
+
*/
|
565
|
+
"getSpatialRef": () => Promise<ISpatialRefRepresentation>;
|
566
|
+
/**
|
567
|
+
* When true, all but the main switch are disabled to prevent interaction.
|
568
|
+
*/
|
569
|
+
"locked": boolean;
|
570
|
+
/**
|
571
|
+
* List of service names the spatial reference should apply to
|
572
|
+
*/
|
573
|
+
"services": string[];
|
574
|
+
/**
|
575
|
+
* Contains the public value for this component, which is a wkid or a wkt.
|
576
|
+
*/
|
577
|
+
"value": string;
|
578
|
+
/**
|
579
|
+
* Converts a WKID into a spatial reference description. (Exposes protected method `_wkidToDisplay` for testing.)
|
580
|
+
* @param wkid WKID to look up
|
581
|
+
* @returns Description, or "WKID <wkid>" if a description doesn't exist for the WKID
|
582
|
+
*/
|
583
|
+
"wkidToDisplay": (wkid: number) => Promise<string>;
|
584
|
+
}
|
585
|
+
interface SolutionTemplateData {
|
586
|
+
/**
|
587
|
+
* This needs to be unique for props vs data of an item
|
588
|
+
*/
|
589
|
+
"instanceid": string;
|
590
|
+
/**
|
591
|
+
* A template's itemId. This is used to get the correct model from a store in the json-editor
|
592
|
+
*/
|
593
|
+
"itemId": string;
|
594
|
+
"organizationVariables": string;
|
595
|
+
/**
|
596
|
+
* Contains the solution based variables
|
597
|
+
*/
|
598
|
+
"solutionVariables": string;
|
599
|
+
/**
|
600
|
+
* Used to show/hide the variable containers
|
601
|
+
*/
|
602
|
+
"varsOpen": boolean;
|
603
|
+
}
|
604
|
+
interface SolutionVariables {
|
605
|
+
/**
|
606
|
+
* Contains the public value for this component.
|
607
|
+
*/
|
608
|
+
"value": string;
|
609
|
+
}
|
610
|
+
interface StoreManager {
|
611
|
+
/**
|
612
|
+
* Credentials for requests
|
613
|
+
*/
|
614
|
+
"authentication": UserSession;
|
615
|
+
/**
|
616
|
+
* Templates for the current solution
|
617
|
+
*/
|
618
|
+
"templates": any[];
|
619
|
+
/**
|
620
|
+
* Contains source json as a string
|
621
|
+
*/
|
622
|
+
"value": string;
|
623
|
+
}
|
624
|
+
}
|
625
|
+
export interface BufferToolsCustomEvent<T> extends CustomEvent<T> {
|
626
|
+
detail: T;
|
627
|
+
target: HTMLBufferToolsElement;
|
628
|
+
}
|
629
|
+
export interface DeductCalculatorCustomEvent<T> extends CustomEvent<T> {
|
630
|
+
detail: T;
|
631
|
+
target: HTMLDeductCalculatorElement;
|
632
|
+
}
|
633
|
+
export interface MapCardCustomEvent<T> extends CustomEvent<T> {
|
634
|
+
detail: T;
|
635
|
+
target: HTMLMapCardElement;
|
636
|
+
}
|
637
|
+
export interface MapDrawToolsCustomEvent<T> extends CustomEvent<T> {
|
638
|
+
detail: T;
|
639
|
+
target: HTMLMapDrawToolsElement;
|
640
|
+
}
|
641
|
+
export interface MapLayerPickerCustomEvent<T> extends CustomEvent<T> {
|
642
|
+
detail: T;
|
643
|
+
target: HTMLMapLayerPickerElement;
|
644
|
+
}
|
645
|
+
export interface MapSearchCustomEvent<T> extends CustomEvent<T> {
|
646
|
+
detail: T;
|
647
|
+
target: HTMLMapSearchElement;
|
648
|
+
}
|
649
|
+
export interface MapSelectToolsCustomEvent<T> extends CustomEvent<T> {
|
650
|
+
detail: T;
|
651
|
+
target: HTMLMapSelectToolsElement;
|
652
|
+
}
|
653
|
+
export interface PublicNotificationCustomEvent<T> extends CustomEvent<T> {
|
654
|
+
detail: T;
|
655
|
+
target: HTMLPublicNotificationElement;
|
656
|
+
}
|
657
|
+
export interface RefineSelectionCustomEvent<T> extends CustomEvent<T> {
|
658
|
+
detail: T;
|
659
|
+
target: HTMLRefineSelectionElement;
|
660
|
+
}
|
661
|
+
export interface RefineSelectionToolsCustomEvent<T> extends CustomEvent<T> {
|
662
|
+
detail: T;
|
663
|
+
target: HTMLRefineSelectionToolsElement;
|
664
|
+
}
|
665
|
+
export interface SolutionContentsCustomEvent<T> extends CustomEvent<T> {
|
666
|
+
detail: T;
|
667
|
+
target: HTMLSolutionContentsElement;
|
668
|
+
}
|
669
|
+
export interface SolutionOrganizationVariablesCustomEvent<T> extends CustomEvent<T> {
|
670
|
+
detail: T;
|
671
|
+
target: HTMLSolutionOrganizationVariablesElement;
|
672
|
+
}
|
673
|
+
export interface SolutionSpatialRefCustomEvent<T> extends CustomEvent<T> {
|
674
|
+
detail: T;
|
675
|
+
target: HTMLSolutionSpatialRefElement;
|
676
|
+
}
|
677
|
+
export interface SolutionVariablesCustomEvent<T> extends CustomEvent<T> {
|
678
|
+
detail: T;
|
679
|
+
target: HTMLSolutionVariablesElement;
|
680
|
+
}
|
681
|
+
export interface StoreManagerCustomEvent<T> extends CustomEvent<T> {
|
682
|
+
detail: T;
|
683
|
+
target: HTMLStoreManagerElement;
|
684
|
+
}
|
685
|
+
declare global {
|
686
|
+
interface HTMLAddRecordModalElement extends Components.AddRecordModal, HTMLStencilElement {
|
687
|
+
}
|
688
|
+
var HTMLAddRecordModalElement: {
|
689
|
+
prototype: HTMLAddRecordModalElement;
|
690
|
+
new (): HTMLAddRecordModalElement;
|
691
|
+
};
|
692
|
+
interface HTMLBufferToolsElement extends Components.BufferTools, HTMLStencilElement {
|
693
|
+
}
|
694
|
+
var HTMLBufferToolsElement: {
|
695
|
+
prototype: HTMLBufferToolsElement;
|
696
|
+
new (): HTMLBufferToolsElement;
|
697
|
+
};
|
698
|
+
interface HTMLCardManagerElement extends Components.CardManager, HTMLStencilElement {
|
699
|
+
}
|
700
|
+
var HTMLCardManagerElement: {
|
701
|
+
prototype: HTMLCardManagerElement;
|
702
|
+
new (): HTMLCardManagerElement;
|
703
|
+
};
|
704
|
+
interface HTMLCommentCardElement extends Components.CommentCard, HTMLStencilElement {
|
705
|
+
}
|
706
|
+
var HTMLCommentCardElement: {
|
707
|
+
prototype: HTMLCommentCardElement;
|
708
|
+
new (): HTMLCommentCardElement;
|
709
|
+
};
|
710
|
+
interface HTMLCrowdsourceManagerElement extends Components.CrowdsourceManager, HTMLStencilElement {
|
711
|
+
}
|
712
|
+
var HTMLCrowdsourceManagerElement: {
|
713
|
+
prototype: HTMLCrowdsourceManagerElement;
|
714
|
+
new (): HTMLCrowdsourceManagerElement;
|
715
|
+
};
|
716
|
+
interface HTMLCrowdsourceReporterElement extends Components.CrowdsourceReporter, HTMLStencilElement {
|
717
|
+
}
|
718
|
+
var HTMLCrowdsourceReporterElement: {
|
719
|
+
prototype: HTMLCrowdsourceReporterElement;
|
720
|
+
new (): HTMLCrowdsourceReporterElement;
|
721
|
+
};
|
722
|
+
interface HTMLDeductCalculatorElement extends Components.DeductCalculator, HTMLStencilElement {
|
723
|
+
}
|
724
|
+
var HTMLDeductCalculatorElement: {
|
725
|
+
prototype: HTMLDeductCalculatorElement;
|
726
|
+
new (): HTMLDeductCalculatorElement;
|
727
|
+
};
|
728
|
+
interface HTMLEditRecordModalElement extends Components.EditRecordModal, HTMLStencilElement {
|
729
|
+
}
|
730
|
+
var HTMLEditRecordModalElement: {
|
731
|
+
prototype: HTMLEditRecordModalElement;
|
732
|
+
new (): HTMLEditRecordModalElement;
|
733
|
+
};
|
734
|
+
interface HTMLInfoCardElement extends Components.InfoCard, HTMLStencilElement {
|
735
|
+
}
|
736
|
+
var HTMLInfoCardElement: {
|
737
|
+
prototype: HTMLInfoCardElement;
|
738
|
+
new (): HTMLInfoCardElement;
|
739
|
+
};
|
740
|
+
interface HTMLJsonEditorElement extends Components.JsonEditor, HTMLStencilElement {
|
741
|
+
}
|
742
|
+
var HTMLJsonEditorElement: {
|
743
|
+
prototype: HTMLJsonEditorElement;
|
744
|
+
new (): HTMLJsonEditorElement;
|
745
|
+
};
|
746
|
+
interface HTMLLayerTableElement extends Components.LayerTable, HTMLStencilElement {
|
747
|
+
}
|
748
|
+
var HTMLLayerTableElement: {
|
749
|
+
prototype: HTMLLayerTableElement;
|
750
|
+
new (): HTMLLayerTableElement;
|
751
|
+
};
|
752
|
+
interface HTMLListItemElement extends Components.ListItem, HTMLStencilElement {
|
753
|
+
}
|
754
|
+
var HTMLListItemElement: {
|
755
|
+
prototype: HTMLListItemElement;
|
756
|
+
new (): HTMLListItemElement;
|
757
|
+
};
|
758
|
+
interface HTMLMapCardElement extends Components.MapCard, HTMLStencilElement {
|
759
|
+
}
|
760
|
+
var HTMLMapCardElement: {
|
761
|
+
prototype: HTMLMapCardElement;
|
762
|
+
new (): HTMLMapCardElement;
|
763
|
+
};
|
764
|
+
interface HTMLMapDrawToolsElement extends Components.MapDrawTools, HTMLStencilElement {
|
765
|
+
}
|
766
|
+
var HTMLMapDrawToolsElement: {
|
767
|
+
prototype: HTMLMapDrawToolsElement;
|
768
|
+
new (): HTMLMapDrawToolsElement;
|
769
|
+
};
|
770
|
+
interface HTMLMapLayerPickerElement extends Components.MapLayerPicker, HTMLStencilElement {
|
771
|
+
}
|
772
|
+
var HTMLMapLayerPickerElement: {
|
773
|
+
prototype: HTMLMapLayerPickerElement;
|
774
|
+
new (): HTMLMapLayerPickerElement;
|
775
|
+
};
|
776
|
+
interface HTMLMapSearchElement extends Components.MapSearch, HTMLStencilElement {
|
777
|
+
}
|
778
|
+
var HTMLMapSearchElement: {
|
779
|
+
prototype: HTMLMapSearchElement;
|
780
|
+
new (): HTMLMapSearchElement;
|
781
|
+
};
|
782
|
+
interface HTMLMapSelectToolsElement extends Components.MapSelectTools, HTMLStencilElement {
|
783
|
+
}
|
784
|
+
var HTMLMapSelectToolsElement: {
|
785
|
+
prototype: HTMLMapSelectToolsElement;
|
786
|
+
new (): HTMLMapSelectToolsElement;
|
787
|
+
};
|
788
|
+
interface HTMLMediaCardElement extends Components.MediaCard, HTMLStencilElement {
|
789
|
+
}
|
790
|
+
var HTMLMediaCardElement: {
|
791
|
+
prototype: HTMLMediaCardElement;
|
792
|
+
new (): HTMLMediaCardElement;
|
793
|
+
};
|
794
|
+
interface HTMLPciCalculatorElement extends Components.PciCalculator, HTMLStencilElement {
|
795
|
+
}
|
796
|
+
var HTMLPciCalculatorElement: {
|
797
|
+
prototype: HTMLPciCalculatorElement;
|
798
|
+
new (): HTMLPciCalculatorElement;
|
799
|
+
};
|
800
|
+
interface HTMLPdfDownloadElement extends Components.PdfDownload, HTMLStencilElement {
|
801
|
+
}
|
802
|
+
var HTMLPdfDownloadElement: {
|
803
|
+
prototype: HTMLPdfDownloadElement;
|
804
|
+
new (): HTMLPdfDownloadElement;
|
805
|
+
};
|
806
|
+
interface HTMLPublicNotificationElement extends Components.PublicNotification, HTMLStencilElement {
|
807
|
+
}
|
808
|
+
var HTMLPublicNotificationElement: {
|
809
|
+
prototype: HTMLPublicNotificationElement;
|
810
|
+
new (): HTMLPublicNotificationElement;
|
811
|
+
};
|
812
|
+
interface HTMLRefineSelectionElement extends Components.RefineSelection, HTMLStencilElement {
|
813
|
+
}
|
814
|
+
var HTMLRefineSelectionElement: {
|
815
|
+
prototype: HTMLRefineSelectionElement;
|
816
|
+
new (): HTMLRefineSelectionElement;
|
817
|
+
};
|
818
|
+
interface HTMLRefineSelectionToolsElement extends Components.RefineSelectionTools, HTMLStencilElement {
|
819
|
+
}
|
820
|
+
var HTMLRefineSelectionToolsElement: {
|
821
|
+
prototype: HTMLRefineSelectionToolsElement;
|
822
|
+
new (): HTMLRefineSelectionToolsElement;
|
823
|
+
};
|
824
|
+
interface HTMLSolutionConfigurationElement extends Components.SolutionConfiguration, HTMLStencilElement {
|
825
|
+
}
|
826
|
+
var HTMLSolutionConfigurationElement: {
|
827
|
+
prototype: HTMLSolutionConfigurationElement;
|
828
|
+
new (): HTMLSolutionConfigurationElement;
|
829
|
+
};
|
830
|
+
interface HTMLSolutionContentsElement extends Components.SolutionContents, HTMLStencilElement {
|
831
|
+
}
|
832
|
+
var HTMLSolutionContentsElement: {
|
833
|
+
prototype: HTMLSolutionContentsElement;
|
834
|
+
new (): HTMLSolutionContentsElement;
|
835
|
+
};
|
836
|
+
interface HTMLSolutionItemElement extends Components.SolutionItem, HTMLStencilElement {
|
837
|
+
}
|
838
|
+
var HTMLSolutionItemElement: {
|
839
|
+
prototype: HTMLSolutionItemElement;
|
840
|
+
new (): HTMLSolutionItemElement;
|
841
|
+
};
|
842
|
+
interface HTMLSolutionItemDetailsElement extends Components.SolutionItemDetails, HTMLStencilElement {
|
843
|
+
}
|
844
|
+
var HTMLSolutionItemDetailsElement: {
|
845
|
+
prototype: HTMLSolutionItemDetailsElement;
|
846
|
+
new (): HTMLSolutionItemDetailsElement;
|
847
|
+
};
|
848
|
+
interface HTMLSolutionItemIconElement extends Components.SolutionItemIcon, HTMLStencilElement {
|
849
|
+
}
|
850
|
+
var HTMLSolutionItemIconElement: {
|
851
|
+
prototype: HTMLSolutionItemIconElement;
|
852
|
+
new (): HTMLSolutionItemIconElement;
|
853
|
+
};
|
854
|
+
interface HTMLSolutionItemSharingElement extends Components.SolutionItemSharing, HTMLStencilElement {
|
855
|
+
}
|
856
|
+
var HTMLSolutionItemSharingElement: {
|
857
|
+
prototype: HTMLSolutionItemSharingElement;
|
858
|
+
new (): HTMLSolutionItemSharingElement;
|
859
|
+
};
|
860
|
+
interface HTMLSolutionOrganizationVariablesElement extends Components.SolutionOrganizationVariables, HTMLStencilElement {
|
861
|
+
}
|
862
|
+
var HTMLSolutionOrganizationVariablesElement: {
|
863
|
+
prototype: HTMLSolutionOrganizationVariablesElement;
|
864
|
+
new (): HTMLSolutionOrganizationVariablesElement;
|
865
|
+
};
|
866
|
+
interface HTMLSolutionResourceItemElement extends Components.SolutionResourceItem, HTMLStencilElement {
|
867
|
+
}
|
868
|
+
var HTMLSolutionResourceItemElement: {
|
869
|
+
prototype: HTMLSolutionResourceItemElement;
|
870
|
+
new (): HTMLSolutionResourceItemElement;
|
871
|
+
};
|
872
|
+
interface HTMLSolutionSpatialRefElement extends Components.SolutionSpatialRef, HTMLStencilElement {
|
873
|
+
}
|
874
|
+
var HTMLSolutionSpatialRefElement: {
|
875
|
+
prototype: HTMLSolutionSpatialRefElement;
|
876
|
+
new (): HTMLSolutionSpatialRefElement;
|
877
|
+
};
|
878
|
+
interface HTMLSolutionTemplateDataElement extends Components.SolutionTemplateData, HTMLStencilElement {
|
879
|
+
}
|
880
|
+
var HTMLSolutionTemplateDataElement: {
|
881
|
+
prototype: HTMLSolutionTemplateDataElement;
|
882
|
+
new (): HTMLSolutionTemplateDataElement;
|
883
|
+
};
|
884
|
+
interface HTMLSolutionVariablesElement extends Components.SolutionVariables, HTMLStencilElement {
|
885
|
+
}
|
886
|
+
var HTMLSolutionVariablesElement: {
|
887
|
+
prototype: HTMLSolutionVariablesElement;
|
888
|
+
new (): HTMLSolutionVariablesElement;
|
889
|
+
};
|
890
|
+
interface HTMLStoreManagerElement extends Components.StoreManager, HTMLStencilElement {
|
891
|
+
}
|
892
|
+
var HTMLStoreManagerElement: {
|
893
|
+
prototype: HTMLStoreManagerElement;
|
894
|
+
new (): HTMLStoreManagerElement;
|
895
|
+
};
|
896
|
+
interface HTMLElementTagNameMap {
|
897
|
+
"add-record-modal": HTMLAddRecordModalElement;
|
898
|
+
"buffer-tools": HTMLBufferToolsElement;
|
899
|
+
"card-manager": HTMLCardManagerElement;
|
900
|
+
"comment-card": HTMLCommentCardElement;
|
901
|
+
"crowdsource-manager": HTMLCrowdsourceManagerElement;
|
902
|
+
"crowdsource-reporter": HTMLCrowdsourceReporterElement;
|
903
|
+
"deduct-calculator": HTMLDeductCalculatorElement;
|
904
|
+
"edit-record-modal": HTMLEditRecordModalElement;
|
905
|
+
"info-card": HTMLInfoCardElement;
|
906
|
+
"json-editor": HTMLJsonEditorElement;
|
907
|
+
"layer-table": HTMLLayerTableElement;
|
908
|
+
"list-item": HTMLListItemElement;
|
909
|
+
"map-card": HTMLMapCardElement;
|
910
|
+
"map-draw-tools": HTMLMapDrawToolsElement;
|
911
|
+
"map-layer-picker": HTMLMapLayerPickerElement;
|
912
|
+
"map-search": HTMLMapSearchElement;
|
913
|
+
"map-select-tools": HTMLMapSelectToolsElement;
|
914
|
+
"media-card": HTMLMediaCardElement;
|
915
|
+
"pci-calculator": HTMLPciCalculatorElement;
|
916
|
+
"pdf-download": HTMLPdfDownloadElement;
|
917
|
+
"public-notification": HTMLPublicNotificationElement;
|
918
|
+
"refine-selection": HTMLRefineSelectionElement;
|
919
|
+
"refine-selection-tools": HTMLRefineSelectionToolsElement;
|
920
|
+
"solution-configuration": HTMLSolutionConfigurationElement;
|
921
|
+
"solution-contents": HTMLSolutionContentsElement;
|
922
|
+
"solution-item": HTMLSolutionItemElement;
|
923
|
+
"solution-item-details": HTMLSolutionItemDetailsElement;
|
924
|
+
"solution-item-icon": HTMLSolutionItemIconElement;
|
925
|
+
"solution-item-sharing": HTMLSolutionItemSharingElement;
|
926
|
+
"solution-organization-variables": HTMLSolutionOrganizationVariablesElement;
|
927
|
+
"solution-resource-item": HTMLSolutionResourceItemElement;
|
928
|
+
"solution-spatial-ref": HTMLSolutionSpatialRefElement;
|
929
|
+
"solution-template-data": HTMLSolutionTemplateDataElement;
|
930
|
+
"solution-variables": HTMLSolutionVariablesElement;
|
931
|
+
"store-manager": HTMLStoreManagerElement;
|
932
|
+
}
|
933
|
+
}
|
934
|
+
declare namespace LocalJSX {
|
935
|
+
interface AddRecordModal {
|
936
|
+
/**
|
937
|
+
* When true the component is displayed
|
938
|
+
*/
|
939
|
+
"open"?: boolean;
|
940
|
+
}
|
941
|
+
interface BufferTools {
|
942
|
+
/**
|
943
|
+
* string: The appearance of display. Can be a "slider" or "text" inputs for distance/value
|
944
|
+
*/
|
945
|
+
"appearance"?: "slider" | "text";
|
946
|
+
/**
|
947
|
+
* number: The distance used for buffer
|
948
|
+
*/
|
949
|
+
"distance"?: number;
|
950
|
+
/**
|
951
|
+
* esri/geometry/Geometry: https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-Geometry.html
|
952
|
+
*/
|
953
|
+
"geometries"?: __esri.Geometry[];
|
954
|
+
/**
|
955
|
+
* number: The component's maximum selectable value.
|
956
|
+
*/
|
957
|
+
"max"?: number;
|
958
|
+
/**
|
959
|
+
* number: The component's minimum selectable value.
|
960
|
+
*/
|
961
|
+
"min"?: number;
|
962
|
+
/**
|
963
|
+
* Emitted on demand when a buffer is generated.
|
964
|
+
*/
|
965
|
+
"onBufferComplete"?: (event: BufferToolsCustomEvent<__esri.Polygon | __esri.Polygon[]>) => void;
|
966
|
+
/**
|
967
|
+
* Emitted on demand when the distance value changes
|
968
|
+
*/
|
969
|
+
"onDistanceChanged"?: (event: BufferToolsCustomEvent<IValueChange>) => void;
|
970
|
+
/**
|
971
|
+
* Emitted on demand when the unit changes
|
972
|
+
*/
|
973
|
+
"onUnitChanged"?: (event: BufferToolsCustomEvent<IValueChange>) => void;
|
974
|
+
/**
|
975
|
+
* number: Displays tick marks on the number line at a specified interval.
|
976
|
+
*/
|
977
|
+
"sliderTicks"?: number;
|
978
|
+
/**
|
979
|
+
* boolean: option to control if buffer results should be unioned
|
980
|
+
*/
|
981
|
+
"unionResults"?: boolean;
|
982
|
+
/**
|
983
|
+
* DistanceUnit: "feet"|"meters"|"miles"|"kilometers"
|
984
|
+
*/
|
985
|
+
"unit"?: DistanceUnit;
|
986
|
+
}
|
987
|
+
interface CardManager {
|
988
|
+
}
|
989
|
+
interface CommentCard {
|
990
|
+
}
|
991
|
+
interface CrowdsourceManager {
|
992
|
+
/**
|
993
|
+
* IMapInfo[]: array of map infos (name and id)
|
994
|
+
*/
|
995
|
+
"mapInfos"?: IMapInfo[];
|
996
|
+
}
|
997
|
+
interface CrowdsourceReporter {
|
998
|
+
}
|
999
|
+
interface DeductCalculator {
|
1000
|
+
/**
|
1001
|
+
* Emitted on demand when the user clicks to calculate the deduct value
|
1002
|
+
*/
|
1003
|
+
"onDeductValueComplete"?: (event: DeductCalculatorCustomEvent<string>) => void;
|
1004
|
+
}
|
1005
|
+
interface EditRecordModal {
|
1006
|
+
/**
|
1007
|
+
* When true the component is displayed
|
1008
|
+
*/
|
1009
|
+
"open"?: boolean;
|
1010
|
+
}
|
1011
|
+
interface InfoCard {
|
1012
|
+
/**
|
1013
|
+
* string: the components title
|
1014
|
+
*/
|
1015
|
+
"cardTitle"?: string;
|
1016
|
+
/**
|
1017
|
+
* IInfoCardValues: key value pairs to show in the components table
|
1018
|
+
*/
|
1019
|
+
"values"?: IInfoCardValues;
|
1020
|
+
}
|
1021
|
+
interface JsonEditor {
|
1022
|
+
/**
|
1023
|
+
* Contains a public value to indicate if the model has any changes.
|
1024
|
+
*/
|
1025
|
+
"hasChanges"?: boolean;
|
1026
|
+
/**
|
1027
|
+
* Contains a public value to indicate if the model has any errors that would prevent saving it.
|
1028
|
+
*/
|
1029
|
+
"hasErrors"?: boolean;
|
1030
|
+
/**
|
1031
|
+
* Contains a unique identifier for when we have multiple instances of the editor. For example when we want to show an item's data as well as an item's properties.
|
1032
|
+
*/
|
1033
|
+
"instanceid"?: any;
|
1034
|
+
/**
|
1035
|
+
* Contains the public value for this component; it is not changed by the editor. When changed, the change overwrites the contents of the editor.
|
1036
|
+
*/
|
1037
|
+
"value"?: any;
|
1038
|
+
}
|
1039
|
+
interface LayerTable {
|
1040
|
+
/**
|
1041
|
+
* esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html
|
1042
|
+
*/
|
1043
|
+
"mapView"?: __esri.MapView;
|
1044
|
+
}
|
1045
|
+
interface ListItem {
|
1046
|
+
}
|
1047
|
+
interface MapCard {
|
1048
|
+
/**
|
1049
|
+
* IMapInfo[]: array of map infos (name and id)
|
1050
|
+
*/
|
1051
|
+
"mapInfos"?: IMapInfo[];
|
1052
|
+
/**
|
1053
|
+
* esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html
|
1054
|
+
*/
|
1055
|
+
"mapView"?: __esri.MapView;
|
1056
|
+
/**
|
1057
|
+
* Emitted when the expand button is clicked
|
1058
|
+
*/
|
1059
|
+
"onExpandMap"?: (event: MapCardCustomEvent<EExpandType>) => void;
|
1060
|
+
/**
|
1061
|
+
* Emitted when a new map is loaded
|
1062
|
+
*/
|
1063
|
+
"onMapChanged"?: (event: MapCardCustomEvent<__esri.MapView>) => void;
|
1064
|
+
}
|
1065
|
+
interface MapDrawTools {
|
1066
|
+
/**
|
1067
|
+
* boolean: sketch is used by multiple components...need a way to know who should respond...
|
1068
|
+
*/
|
1069
|
+
"active"?: boolean;
|
1070
|
+
/**
|
1071
|
+
* boolean: Optionally draw a border around the draw tools
|
1072
|
+
*/
|
1073
|
+
"border"?: boolean;
|
1074
|
+
/**
|
1075
|
+
* esri/Graphic: https://developers.arcgis.com/javascript/latest/api-reference/esri-Graphic.html
|
1076
|
+
*/
|
1077
|
+
"graphics"?: __esri.Graphic[];
|
1078
|
+
/**
|
1079
|
+
* esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html
|
1080
|
+
*/
|
1081
|
+
"mapView"?: __esri.MapView;
|
1082
|
+
/**
|
1083
|
+
* Emitted on demand when the sketch graphics change.
|
1084
|
+
*/
|
1085
|
+
"onSketchGraphicsChange"?: (event: MapDrawToolsCustomEvent<__esri.Graphic[]>) => void;
|
1086
|
+
/**
|
1087
|
+
* esri/symbols/SimpleMarkerSymbol: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleMarkerSymbol.html
|
1088
|
+
*/
|
1089
|
+
"pointSymbol"?: __esri.SimpleMarkerSymbol;
|
1090
|
+
/**
|
1091
|
+
* esri/symbols/SimpleFillSymbol: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleFillSymbol.html
|
1092
|
+
*/
|
1093
|
+
"polygonSymbol"?: __esri.SimpleFillSymbol;
|
1094
|
+
/**
|
1095
|
+
* esri/symbols/SimpleLineSymbol: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleLineSymbol.html
|
1096
|
+
*/
|
1097
|
+
"polylineSymbol"?: __esri.SimpleLineSymbol;
|
1098
|
+
}
|
1099
|
+
interface MapLayerPicker {
|
1100
|
+
/**
|
1101
|
+
* string[]: Optional list of enabled layer ids If empty all layers will be available
|
1102
|
+
*/
|
1103
|
+
"enabledLayerIds"?: string[];
|
1104
|
+
/**
|
1105
|
+
* esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html
|
1106
|
+
*/
|
1107
|
+
"mapView"?: __esri.MapView;
|
1108
|
+
/**
|
1109
|
+
* Emitted on demand when a layer is selected
|
1110
|
+
*/
|
1111
|
+
"onLayerSelectionChange"?: (event: MapLayerPickerCustomEvent<string[]>) => void;
|
1112
|
+
/**
|
1113
|
+
* string[]: list of layer ids that have been selected by the end user
|
1114
|
+
*/
|
1115
|
+
"selectedLayerIds"?: string[];
|
1116
|
+
/**
|
1117
|
+
* SelectionMode: "single" | "multi" Should the component support selection against a single layer or multiple layers.
|
1118
|
+
*/
|
1119
|
+
"selectionMode"?: SelectionMode;
|
1120
|
+
}
|
1121
|
+
interface MapSearch {
|
1122
|
+
/**
|
1123
|
+
* esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html
|
1124
|
+
*/
|
1125
|
+
"mapView"?: __esri.MapView;
|
1126
|
+
/**
|
1127
|
+
* Emitted on demand when the status of the search widget changes
|
1128
|
+
*/
|
1129
|
+
"onSearchChange"?: (event: MapSearchCustomEvent<ISearchResult>) => void;
|
1130
|
+
/**
|
1131
|
+
* ISearchConfiguration: Configuration details for the Search widget
|
1132
|
+
*/
|
1133
|
+
"searchConfiguration"?: ISearchConfiguration;
|
1134
|
+
}
|
1135
|
+
interface MapSelectTools {
|
1136
|
+
/**
|
1137
|
+
* string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html
|
1138
|
+
*/
|
1139
|
+
"bufferColor"?: any;
|
1140
|
+
/**
|
1141
|
+
* string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html
|
1142
|
+
*/
|
1143
|
+
"bufferOutlineColor"?: any;
|
1144
|
+
/**
|
1145
|
+
* number: The default value to show for the buffer distance
|
1146
|
+
*/
|
1147
|
+
"defaultBufferDistance"?: number;
|
1148
|
+
/**
|
1149
|
+
* number: The default value to show for the buffer unit
|
1150
|
+
*/
|
1151
|
+
"defaultBufferUnit"?: DistanceUnit;
|
1152
|
+
/**
|
1153
|
+
* string[]: Optional list of enabled layer ids If empty all layers will be available
|
1154
|
+
*/
|
1155
|
+
"enabledLayerIds"?: string[];
|
1156
|
+
/**
|
1157
|
+
* esri/geometry: https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry.html
|
1158
|
+
*/
|
1159
|
+
"geometries"?: __esri.Geometry[];
|
1160
|
+
/**
|
1161
|
+
* boolean: When true a new label is not generated for the stored selection set
|
1162
|
+
*/
|
1163
|
+
"isUpdate"?: boolean;
|
1164
|
+
/**
|
1165
|
+
* esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html
|
1166
|
+
*/
|
1167
|
+
"mapView"?: __esri.MapView;
|
1168
|
+
/**
|
1169
|
+
* Emitted on demand when selection starts or ends.
|
1170
|
+
*/
|
1171
|
+
"onSelectionLoadingChange"?: (event: MapSelectToolsCustomEvent<boolean>) => void;
|
1172
|
+
/**
|
1173
|
+
* Emitted on demand when the selection set changes.
|
1174
|
+
*/
|
1175
|
+
"onSelectionSetChange"?: (event: MapSelectToolsCustomEvent<number>) => void;
|
1176
|
+
/**
|
1177
|
+
* Emitted on demand when the sketch type changes.
|
1178
|
+
*/
|
1179
|
+
"onSketchTypeChange"?: (event: MapSelectToolsCustomEvent<ESketchType>) => void;
|
1180
|
+
/**
|
1181
|
+
* Emitted on demand when the workflow type changes.
|
1182
|
+
*/
|
1183
|
+
"onWorkflowTypeChange"?: (event: MapSelectToolsCustomEvent<EWorkflowType>) => void;
|
1184
|
+
/**
|
1185
|
+
* ISearchConfiguration: Configuration details for the Search widget
|
1186
|
+
*/
|
1187
|
+
"searchConfiguration"?: ISearchConfiguration;
|
1188
|
+
/**
|
1189
|
+
* esri/views/layers/FeatureLayerView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-FeatureLayerView.html
|
1190
|
+
*/
|
1191
|
+
"selectLayerView"?: __esri.FeatureLayerView;
|
1192
|
+
/**
|
1193
|
+
* utils/interfaces/ISelectionSet: Used to store key details about any selections that have been made.
|
1194
|
+
*/
|
1195
|
+
"selectionSet"?: ISelectionSet;
|
1196
|
+
/**
|
1197
|
+
* boolean: When true the buffer tools will be available for use
|
1198
|
+
*/
|
1199
|
+
"showBufferTools"?: boolean;
|
1200
|
+
/**
|
1201
|
+
* esri/symbols/SimpleLineSymbol | JSON representation : https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleLineSymbol.html
|
1202
|
+
*/
|
1203
|
+
"sketchLineSymbol"?: __esri.SimpleLineSymbol;
|
1204
|
+
/**
|
1205
|
+
* esri/symbols/SimpleMarkerSymbol | JSON representation: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleMarkerSymbol.html
|
1206
|
+
*/
|
1207
|
+
"sketchPointSymbol"?: __esri.SimpleMarkerSymbol;
|
1208
|
+
/**
|
1209
|
+
* esri/symbols/SimpleFillSymbol | JSON representation: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleFillSymbol.html
|
1210
|
+
*/
|
1211
|
+
"sketchPolygonSymbol"?: __esri.SimpleFillSymbol;
|
1212
|
+
}
|
1213
|
+
interface MediaCard {
|
1214
|
+
/**
|
1215
|
+
* IMediaCardValues[]: Array of objects that contain the name, description, and image to display
|
1216
|
+
*/
|
1217
|
+
"values"?: IMediaCardValues[];
|
1218
|
+
}
|
1219
|
+
interface PciCalculator {
|
1220
|
+
}
|
1221
|
+
interface PdfDownload {
|
1222
|
+
/**
|
1223
|
+
* boolean: Controls the enabled/disabled state of download
|
1224
|
+
*/
|
1225
|
+
"disabled"?: boolean;
|
1226
|
+
/**
|
1227
|
+
* esri/views/layers/FeatureLayerView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-FeatureLayerView.html
|
1228
|
+
*/
|
1229
|
+
"layerView"?: __esri.FeatureLayerView;
|
1230
|
+
}
|
1231
|
+
interface PublicNotification {
|
1232
|
+
/**
|
1233
|
+
* string[]: List of layer ids that should be shown as potential addressee layers
|
1234
|
+
*/
|
1235
|
+
"addresseeLayerIds"?: string[];
|
1236
|
+
/**
|
1237
|
+
* string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html
|
1238
|
+
*/
|
1239
|
+
"bufferColor"?: any;
|
1240
|
+
/**
|
1241
|
+
* string | number[] | object with r, g, b, a: https://developers.arcgis.com/javascript/latest/api-reference/esri-Color.html
|
1242
|
+
*/
|
1243
|
+
"bufferOutlineColor"?: any;
|
1244
|
+
/**
|
1245
|
+
* boolean: When true the user can define a name for each notification list
|
1246
|
+
*/
|
1247
|
+
"customLabelEnabled"?: boolean;
|
1248
|
+
/**
|
1249
|
+
* number: The default value to show for the buffer distance
|
1250
|
+
*/
|
1251
|
+
"defaultBufferDistance"?: number;
|
1252
|
+
/**
|
1253
|
+
* number: The default value to show for the buffer unit ("feet"|"meters"|"miles"|"kilometers")
|
1254
|
+
*/
|
1255
|
+
"defaultBufferUnit"?: DistanceUnit;
|
1256
|
+
/**
|
1257
|
+
* The effect that will be applied when featureHighlightEnabled is true esri/layers/support/FeatureEffect: https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-FeatureEffect.html
|
1258
|
+
*/
|
1259
|
+
"featureEffect"?: __esri.FeatureEffect;
|
1260
|
+
/**
|
1261
|
+
* boolean: When enabled features will be highlighted when their notification list item is clicked.
|
1262
|
+
*/
|
1263
|
+
"featureHighlightEnabled"?: boolean;
|
1264
|
+
/**
|
1265
|
+
* esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html
|
1266
|
+
*/
|
1267
|
+
"mapView"?: __esri.MapView;
|
1268
|
+
/**
|
1269
|
+
* string: The value to show for no results when left empty the default text "0 selected features from {layerTitle}" will be shown
|
1270
|
+
*/
|
1271
|
+
"noResultText"?: string;
|
1272
|
+
/**
|
1273
|
+
* Emitted on demand when a buffer is generated.
|
1274
|
+
*/
|
1275
|
+
"onLabelChange"?: (event: PublicNotificationCustomEvent<string>) => void;
|
1276
|
+
/**
|
1277
|
+
* Emitted on demand when searchConfiguration gets a new value
|
1278
|
+
*/
|
1279
|
+
"onSearchConfigurationChange"?: (event: PublicNotificationCustomEvent<ISearchConfiguration>) => void;
|
1280
|
+
/**
|
1281
|
+
* ISearchConfiguration: Configuration details for the Search widget
|
1282
|
+
*/
|
1283
|
+
"searchConfiguration"?: ISearchConfiguration;
|
1284
|
+
/**
|
1285
|
+
* string[]: List of layer ids that should be shown as potential selection layers when skectching with "Use layer features" option
|
1286
|
+
*/
|
1287
|
+
"selectionLayerIds"?: string[];
|
1288
|
+
/**
|
1289
|
+
* boolean: When true the refine selection workflow will be included in the UI
|
1290
|
+
*/
|
1291
|
+
"showRefineSelection"?: boolean;
|
1292
|
+
/**
|
1293
|
+
* boolean: When false no buffer distance or unit controls will be exposed
|
1294
|
+
*/
|
1295
|
+
"showSearchSettings"?: boolean;
|
1296
|
+
/**
|
1297
|
+
* esri/symbols/SimpleLineSymbol | JSON representation : https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleLineSymbol.html A JSON representation of the instance in the ArcGIS format. See the ArcGIS REST API documentation for examples of the structure of various input JSON objects. https://developers.arcgis.com/documentation/common-data-types/symbol-objects.htm
|
1298
|
+
*/
|
1299
|
+
"sketchLineSymbol"?: __esri.SimpleLineSymbol | any;
|
1300
|
+
/**
|
1301
|
+
* esri/symbols/SimpleMarkerSymbol | JSON representation: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleMarkerSymbol.html A JSON representation of the instance in the ArcGIS format. See the ArcGIS REST API documentation for examples of the structure of various input JSON objects. https://developers.arcgis.com/documentation/common-data-types/symbol-objects.htm
|
1302
|
+
*/
|
1303
|
+
"sketchPointSymbol"?: __esri.SimpleMarkerSymbol | any;
|
1304
|
+
/**
|
1305
|
+
* esri/symbols/SimpleFillSymbol | JSON representation: https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleFillSymbol.html A JSON representation of the instance in the ArcGIS format. See the ArcGIS REST API documentation for examples of the structure of various input JSON objects. https://developers.arcgis.com/documentation/common-data-types/symbol-objects.htm
|
1306
|
+
*/
|
1307
|
+
"sketchPolygonSymbol"?: __esri.SimpleFillSymbol | any;
|
1308
|
+
}
|
1309
|
+
interface RefineSelection {
|
1310
|
+
"GraphicsLayer"?: any;
|
1311
|
+
"SketchViewModel"?: any;
|
1312
|
+
/**
|
1313
|
+
* esri/views/layers/FeatureLayerView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-FeatureLayerView.html
|
1314
|
+
*/
|
1315
|
+
"addresseeLayer"?: __esri.FeatureLayerView;
|
1316
|
+
/**
|
1317
|
+
* string[]: Optional list of enabled layer ids If empty all layers will be available
|
1318
|
+
*/
|
1319
|
+
"enabledLayerIds"?: string[];
|
1320
|
+
/**
|
1321
|
+
* esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html
|
1322
|
+
*/
|
1323
|
+
"mapView"?: __esri.MapView;
|
1324
|
+
/**
|
1325
|
+
* Emitted on demand when selection sets change.
|
1326
|
+
*/
|
1327
|
+
"onSelectionSetsChanged"?: (event: RefineSelectionCustomEvent<ISelectionSet[]>) => void;
|
1328
|
+
/**
|
1329
|
+
* utils/interfaces/ISelectionSet: An array of user defined selection sets
|
1330
|
+
*/
|
1331
|
+
"selectionSets"?: ISelectionSet[];
|
1332
|
+
}
|
1333
|
+
interface RefineSelectionTools {
|
1334
|
+
/**
|
1335
|
+
* boolean: sketch is used by multiple components...need a way to know who should respond...
|
1336
|
+
*/
|
1337
|
+
"active"?: boolean;
|
1338
|
+
/**
|
1339
|
+
* boolean: Optionally draw a border around the draw tools
|
1340
|
+
*/
|
1341
|
+
"border"?: boolean;
|
1342
|
+
/**
|
1343
|
+
* string[]: Optional list of enabled layer ids If empty all layers will be available
|
1344
|
+
*/
|
1345
|
+
"enabledLayerIds"?: string[];
|
1346
|
+
/**
|
1347
|
+
* esri/Graphic: https://developers.arcgis.com/javascript/latest/api-reference/esri-Graphic.html
|
1348
|
+
*/
|
1349
|
+
"graphics"?: __esri.Graphic[];
|
1350
|
+
/**
|
1351
|
+
* number: The oids of the selected features
|
1352
|
+
*/
|
1353
|
+
"ids"?: number[];
|
1354
|
+
/**
|
1355
|
+
* esri/views/layers/LayerView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-LayerView.html
|
1356
|
+
*/
|
1357
|
+
"layerView"?: __esri.FeatureLayerView;
|
1358
|
+
/**
|
1359
|
+
* esri/views/layers/FeatureLayerView: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-FeatureLayerView.html
|
1360
|
+
*/
|
1361
|
+
"layerViews"?: __esri.FeatureLayerView[];
|
1362
|
+
/**
|
1363
|
+
* esri/views/View: https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html
|
1364
|
+
*/
|
1365
|
+
"mapView"?: __esri.MapView;
|
1366
|
+
/**
|
1367
|
+
* utils/interfaces/ESelectionMode: ADD, REMOVE
|
1368
|
+
*/
|
1369
|
+
"mode"?: ESelectionMode;
|
1370
|
+
/**
|
1371
|
+
* Emitted on demand when selection graphics change.
|
1372
|
+
*/
|
1373
|
+
"onRefineSelectionGraphicsChange"?: (event: RefineSelectionToolsCustomEvent<IRefineSelectionEvent>) => void;
|
1374
|
+
/**
|
1375
|
+
* Emitted on demand when selection ids change
|
1376
|
+
*/
|
1377
|
+
"onRefineSelectionIdsChange"?: (event: RefineSelectionToolsCustomEvent<{ addIds: any[]; removeIds: any[]; }>) => void;
|
1378
|
+
/**
|
1379
|
+
* Emitted on demand when selection starts or ends.
|
1380
|
+
*/
|
1381
|
+
"onSelectionLoadingChange"?: (event: RefineSelectionToolsCustomEvent<boolean>) => void;
|
1382
|
+
/**
|
1383
|
+
* utils/interfaces/ERefineMode: ALL, SUBSET
|
1384
|
+
*/
|
1385
|
+
"refineMode"?: ERefineMode;
|
1386
|
+
/**
|
1387
|
+
* utils/interfaces/ISelectionSet: Refine selection set
|
1388
|
+
*/
|
1389
|
+
"refineSelectionSet"?: ISelectionSet;
|
1390
|
+
/**
|
1391
|
+
* boolean: Used to control the visibility of the layer picker
|
1392
|
+
*/
|
1393
|
+
"useLayerPicker"?: boolean;
|
1394
|
+
}
|
1395
|
+
interface SolutionConfiguration {
|
1396
|
+
/**
|
1397
|
+
* Credentials for requests, which can be a serialized UserSession
|
1398
|
+
*/
|
1399
|
+
"authentication"?: UserSession;
|
1400
|
+
"serializedAuthentication"?: string;
|
1401
|
+
/**
|
1402
|
+
* Used to show/hide loading indicator
|
1403
|
+
*/
|
1404
|
+
"showLoading"?: boolean;
|
1405
|
+
/**
|
1406
|
+
* Contains the current solution item id
|
1407
|
+
*/
|
1408
|
+
"solutionItemId"?: string;
|
1409
|
+
}
|
1410
|
+
interface SolutionContents {
|
1411
|
+
"onSolutionItemSelected"?: (event: SolutionContentsCustomEvent<string>) => void;
|
1412
|
+
/**
|
1413
|
+
* Contains the current item that is selected.
|
1414
|
+
*/
|
1415
|
+
"selectedItemId"?: string;
|
1416
|
+
/**
|
1417
|
+
* Contains the public value for this component.
|
1418
|
+
*/
|
1419
|
+
"templateHierarchy"?: IInventoryItem[];
|
1420
|
+
}
|
1421
|
+
interface SolutionItem {
|
1422
|
+
/**
|
1423
|
+
* Credentials for requests
|
1424
|
+
*/
|
1425
|
+
"authentication"?: UserSession;
|
1426
|
+
/**
|
1427
|
+
* A template's itemId.
|
1428
|
+
*/
|
1429
|
+
"itemId"?: string;
|
1430
|
+
/**
|
1431
|
+
* Contains the organization based variables
|
1432
|
+
*/
|
1433
|
+
"organizationVariables"?: string;
|
1434
|
+
/**
|
1435
|
+
* Contains the solution based variables
|
1436
|
+
*/
|
1437
|
+
"solutionVariables"?: string;
|
1438
|
+
}
|
1439
|
+
interface SolutionItemDetails {
|
1440
|
+
/**
|
1441
|
+
* A template's itemId.
|
1442
|
+
*/
|
1443
|
+
"itemId"?: string;
|
1444
|
+
}
|
1445
|
+
interface SolutionItemIcon {
|
1446
|
+
/**
|
1447
|
+
* Indicate if this is portal
|
1448
|
+
*/
|
1449
|
+
"isPortal"?: boolean;
|
1450
|
+
/**
|
1451
|
+
* The type for the item
|
1452
|
+
*/
|
1453
|
+
"type"?: string;
|
1454
|
+
/**
|
1455
|
+
* The typeKeywords for the item
|
1456
|
+
*/
|
1457
|
+
"typeKeywords"?: string[];
|
1458
|
+
}
|
1459
|
+
interface SolutionItemSharing {
|
1460
|
+
/**
|
1461
|
+
* A template's groupId.
|
1462
|
+
*/
|
1463
|
+
"groupId"?: string;
|
1464
|
+
}
|
1465
|
+
interface SolutionOrganizationVariables {
|
1466
|
+
"onOrganizationVariableSelected"?: (event: SolutionOrganizationVariablesCustomEvent<{ itemId: string, value: string }>) => void;
|
1467
|
+
/**
|
1468
|
+
* Contains the public value for this component.
|
1469
|
+
*/
|
1470
|
+
"value"?: string;
|
1471
|
+
}
|
1472
|
+
interface SolutionResourceItem {
|
1473
|
+
/**
|
1474
|
+
* Credentials for requests
|
1475
|
+
*/
|
1476
|
+
"authentication"?: UserSession;
|
1477
|
+
/**
|
1478
|
+
* A template's itemId. This is used to get the correct model from a store in the json-editor
|
1479
|
+
*/
|
1480
|
+
"itemId"?: string;
|
1481
|
+
}
|
1482
|
+
interface SolutionSpatialRef {
|
1483
|
+
/**
|
1484
|
+
* The wkid that will be used as the default when no user selection has been made.
|
1485
|
+
*/
|
1486
|
+
"defaultWkid"?: number;
|
1487
|
+
/**
|
1488
|
+
* When true, all but the main switch are disabled to prevent interaction.
|
1489
|
+
*/
|
1490
|
+
"locked"?: boolean;
|
1491
|
+
"onFeatureServiceSpatialReferenceChange"?: (event: SolutionSpatialRefCustomEvent<{ name: string, enabled: boolean }>) => void;
|
1492
|
+
/**
|
1493
|
+
* List of service names the spatial reference should apply to
|
1494
|
+
*/
|
1495
|
+
"services"?: string[];
|
1496
|
+
/**
|
1497
|
+
* Contains the public value for this component, which is a wkid or a wkt.
|
1498
|
+
*/
|
1499
|
+
"value"?: string;
|
1500
|
+
}
|
1501
|
+
interface SolutionTemplateData {
|
1502
|
+
/**
|
1503
|
+
* This needs to be unique for props vs data of an item
|
1504
|
+
*/
|
1505
|
+
"instanceid"?: string;
|
1506
|
+
/**
|
1507
|
+
* A template's itemId. This is used to get the correct model from a store in the json-editor
|
1508
|
+
*/
|
1509
|
+
"itemId"?: string;
|
1510
|
+
"organizationVariables"?: string;
|
1511
|
+
/**
|
1512
|
+
* Contains the solution based variables
|
1513
|
+
*/
|
1514
|
+
"solutionVariables"?: string;
|
1515
|
+
/**
|
1516
|
+
* Used to show/hide the variable containers
|
1517
|
+
*/
|
1518
|
+
"varsOpen"?: boolean;
|
1519
|
+
}
|
1520
|
+
interface SolutionVariables {
|
1521
|
+
"onSolutionVariableSelected"?: (event: SolutionVariablesCustomEvent<{ itemId: string, value: string }>) => void;
|
1522
|
+
/**
|
1523
|
+
* Contains the public value for this component.
|
1524
|
+
*/
|
1525
|
+
"value"?: string;
|
1526
|
+
}
|
1527
|
+
interface StoreManager {
|
1528
|
+
/**
|
1529
|
+
* Credentials for requests
|
1530
|
+
*/
|
1531
|
+
"authentication"?: UserSession;
|
1532
|
+
"onStateLoaded"?: (event: StoreManagerCustomEvent<any>) => void;
|
1533
|
+
/**
|
1534
|
+
* Templates for the current solution
|
1535
|
+
*/
|
1536
|
+
"templates"?: any[];
|
1537
|
+
/**
|
1538
|
+
* Contains source json as a string
|
1539
|
+
*/
|
1540
|
+
"value"?: string;
|
1541
|
+
}
|
1542
|
+
interface IntrinsicElements {
|
1543
|
+
"add-record-modal": AddRecordModal;
|
1544
|
+
"buffer-tools": BufferTools;
|
1545
|
+
"card-manager": CardManager;
|
1546
|
+
"comment-card": CommentCard;
|
1547
|
+
"crowdsource-manager": CrowdsourceManager;
|
1548
|
+
"crowdsource-reporter": CrowdsourceReporter;
|
1549
|
+
"deduct-calculator": DeductCalculator;
|
1550
|
+
"edit-record-modal": EditRecordModal;
|
1551
|
+
"info-card": InfoCard;
|
1552
|
+
"json-editor": JsonEditor;
|
1553
|
+
"layer-table": LayerTable;
|
1554
|
+
"list-item": ListItem;
|
1555
|
+
"map-card": MapCard;
|
1556
|
+
"map-draw-tools": MapDrawTools;
|
1557
|
+
"map-layer-picker": MapLayerPicker;
|
1558
|
+
"map-search": MapSearch;
|
1559
|
+
"map-select-tools": MapSelectTools;
|
1560
|
+
"media-card": MediaCard;
|
1561
|
+
"pci-calculator": PciCalculator;
|
1562
|
+
"pdf-download": PdfDownload;
|
1563
|
+
"public-notification": PublicNotification;
|
1564
|
+
"refine-selection": RefineSelection;
|
1565
|
+
"refine-selection-tools": RefineSelectionTools;
|
1566
|
+
"solution-configuration": SolutionConfiguration;
|
1567
|
+
"solution-contents": SolutionContents;
|
1568
|
+
"solution-item": SolutionItem;
|
1569
|
+
"solution-item-details": SolutionItemDetails;
|
1570
|
+
"solution-item-icon": SolutionItemIcon;
|
1571
|
+
"solution-item-sharing": SolutionItemSharing;
|
1572
|
+
"solution-organization-variables": SolutionOrganizationVariables;
|
1573
|
+
"solution-resource-item": SolutionResourceItem;
|
1574
|
+
"solution-spatial-ref": SolutionSpatialRef;
|
1575
|
+
"solution-template-data": SolutionTemplateData;
|
1576
|
+
"solution-variables": SolutionVariables;
|
1577
|
+
"store-manager": StoreManager;
|
1578
|
+
}
|
1579
|
+
}
|
1580
|
+
export { LocalJSX as JSX };
|
1581
|
+
declare module "@stencil/core" {
|
1582
|
+
export namespace JSX {
|
1583
|
+
interface IntrinsicElements {
|
1584
|
+
"add-record-modal": LocalJSX.AddRecordModal & JSXBase.HTMLAttributes<HTMLAddRecordModalElement>;
|
1585
|
+
"buffer-tools": LocalJSX.BufferTools & JSXBase.HTMLAttributes<HTMLBufferToolsElement>;
|
1586
|
+
"card-manager": LocalJSX.CardManager & JSXBase.HTMLAttributes<HTMLCardManagerElement>;
|
1587
|
+
"comment-card": LocalJSX.CommentCard & JSXBase.HTMLAttributes<HTMLCommentCardElement>;
|
1588
|
+
"crowdsource-manager": LocalJSX.CrowdsourceManager & JSXBase.HTMLAttributes<HTMLCrowdsourceManagerElement>;
|
1589
|
+
"crowdsource-reporter": LocalJSX.CrowdsourceReporter & JSXBase.HTMLAttributes<HTMLCrowdsourceReporterElement>;
|
1590
|
+
"deduct-calculator": LocalJSX.DeductCalculator & JSXBase.HTMLAttributes<HTMLDeductCalculatorElement>;
|
1591
|
+
"edit-record-modal": LocalJSX.EditRecordModal & JSXBase.HTMLAttributes<HTMLEditRecordModalElement>;
|
1592
|
+
"info-card": LocalJSX.InfoCard & JSXBase.HTMLAttributes<HTMLInfoCardElement>;
|
1593
|
+
"json-editor": LocalJSX.JsonEditor & JSXBase.HTMLAttributes<HTMLJsonEditorElement>;
|
1594
|
+
"layer-table": LocalJSX.LayerTable & JSXBase.HTMLAttributes<HTMLLayerTableElement>;
|
1595
|
+
"list-item": LocalJSX.ListItem & JSXBase.HTMLAttributes<HTMLListItemElement>;
|
1596
|
+
"map-card": LocalJSX.MapCard & JSXBase.HTMLAttributes<HTMLMapCardElement>;
|
1597
|
+
"map-draw-tools": LocalJSX.MapDrawTools & JSXBase.HTMLAttributes<HTMLMapDrawToolsElement>;
|
1598
|
+
"map-layer-picker": LocalJSX.MapLayerPicker & JSXBase.HTMLAttributes<HTMLMapLayerPickerElement>;
|
1599
|
+
"map-search": LocalJSX.MapSearch & JSXBase.HTMLAttributes<HTMLMapSearchElement>;
|
1600
|
+
"map-select-tools": LocalJSX.MapSelectTools & JSXBase.HTMLAttributes<HTMLMapSelectToolsElement>;
|
1601
|
+
"media-card": LocalJSX.MediaCard & JSXBase.HTMLAttributes<HTMLMediaCardElement>;
|
1602
|
+
"pci-calculator": LocalJSX.PciCalculator & JSXBase.HTMLAttributes<HTMLPciCalculatorElement>;
|
1603
|
+
"pdf-download": LocalJSX.PdfDownload & JSXBase.HTMLAttributes<HTMLPdfDownloadElement>;
|
1604
|
+
"public-notification": LocalJSX.PublicNotification & JSXBase.HTMLAttributes<HTMLPublicNotificationElement>;
|
1605
|
+
"refine-selection": LocalJSX.RefineSelection & JSXBase.HTMLAttributes<HTMLRefineSelectionElement>;
|
1606
|
+
"refine-selection-tools": LocalJSX.RefineSelectionTools & JSXBase.HTMLAttributes<HTMLRefineSelectionToolsElement>;
|
1607
|
+
"solution-configuration": LocalJSX.SolutionConfiguration & JSXBase.HTMLAttributes<HTMLSolutionConfigurationElement>;
|
1608
|
+
"solution-contents": LocalJSX.SolutionContents & JSXBase.HTMLAttributes<HTMLSolutionContentsElement>;
|
1609
|
+
"solution-item": LocalJSX.SolutionItem & JSXBase.HTMLAttributes<HTMLSolutionItemElement>;
|
1610
|
+
"solution-item-details": LocalJSX.SolutionItemDetails & JSXBase.HTMLAttributes<HTMLSolutionItemDetailsElement>;
|
1611
|
+
"solution-item-icon": LocalJSX.SolutionItemIcon & JSXBase.HTMLAttributes<HTMLSolutionItemIconElement>;
|
1612
|
+
"solution-item-sharing": LocalJSX.SolutionItemSharing & JSXBase.HTMLAttributes<HTMLSolutionItemSharingElement>;
|
1613
|
+
"solution-organization-variables": LocalJSX.SolutionOrganizationVariables & JSXBase.HTMLAttributes<HTMLSolutionOrganizationVariablesElement>;
|
1614
|
+
"solution-resource-item": LocalJSX.SolutionResourceItem & JSXBase.HTMLAttributes<HTMLSolutionResourceItemElement>;
|
1615
|
+
"solution-spatial-ref": LocalJSX.SolutionSpatialRef & JSXBase.HTMLAttributes<HTMLSolutionSpatialRefElement>;
|
1616
|
+
"solution-template-data": LocalJSX.SolutionTemplateData & JSXBase.HTMLAttributes<HTMLSolutionTemplateDataElement>;
|
1617
|
+
"solution-variables": LocalJSX.SolutionVariables & JSXBase.HTMLAttributes<HTMLSolutionVariablesElement>;
|
1618
|
+
"store-manager": LocalJSX.StoreManager & JSXBase.HTMLAttributes<HTMLStoreManagerElement>;
|
1619
|
+
}
|
1620
|
+
}
|
1621
|
+
}
|