@elaraai/east-ui 1.0.13 → 1.0.15
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/src/collections/index.d.ts +1 -0
- package/dist/src/collections/index.d.ts.map +1 -1
- package/dist/src/collections/index.js +1 -0
- package/dist/src/collections/index.js.map +1 -1
- package/dist/src/collections/map/index.d.ts +1180 -0
- package/dist/src/collections/map/index.d.ts.map +1 -0
- package/dist/src/collections/map/index.js +802 -0
- package/dist/src/collections/map/index.js.map +1 -0
- package/dist/src/collections/map/types.d.ts +586 -0
- package/dist/src/collections/map/types.d.ts.map +1 -0
- package/dist/src/collections/map/types.js +315 -0
- package/dist/src/collections/map/types.js.map +1 -0
- package/dist/src/component.d.ts +225 -0
- package/dist/src/component.d.ts.map +1 -1
- package/dist/src/component.js +36 -0
- package/dist/src/component.js.map +1 -1
- package/dist/src/index.d.ts +1 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +1 -1
- package/dist/src/index.js.map +1 -1
- package/dist/src/internal.d.ts +1 -1
- package/dist/src/internal.d.ts.map +1 -1
- package/dist/src/internal.js +1 -1
- package/dist/src/internal.js.map +1 -1
- package/dist/src/runtime/collections/index.d.ts +1 -0
- package/dist/src/runtime/collections/index.d.ts.map +1 -1
- package/dist/src/runtime/collections/index.js +1 -0
- package/dist/src/runtime/collections/index.js.map +1 -1
- package/dist/src/runtime/collections/map.d.ts +74 -0
- package/dist/src/runtime/collections/map.d.ts.map +1 -0
- package/dist/src/runtime/collections/map.js +70 -0
- package/dist/src/runtime/collections/map.js.map +1 -0
- package/dist/test/collections/map.examples.d.ts +8 -0
- package/dist/test/collections/map.examples.d.ts.map +1 -0
- package/dist/test/collections/map.examples.js +150 -0
- package/dist/test/collections/map.examples.js.map +1 -0
- package/dist/test/collections/schematic.examples.d.ts.map +1 -1
- package/dist/test/collections/schematic.examples.js +30 -2
- package/dist/test/collections/schematic.examples.js.map +1 -1
- package/package.json +3 -3
|
@@ -0,0 +1,315 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2025 Elara AI Pty Ltd
|
|
3
|
+
* Dual-licensed under AGPL-3.0 and commercial license. See LICENSE for details.
|
|
4
|
+
*/
|
|
5
|
+
import { ArrayType, BooleanType, FloatType, IntegerType, NullType, OptionType, StringType, StructType, VariantType, } from "@elaraai/east";
|
|
6
|
+
import { StatusTokenType } from "../../style/interaction.js";
|
|
7
|
+
/**
|
|
8
|
+
* A geographic point.
|
|
9
|
+
*
|
|
10
|
+
* @remarks
|
|
11
|
+
* Leaflet's coordinate order is `[lat, lng]` and H3 cell boundaries match,
|
|
12
|
+
* so values flow straight through to the renderer with no swap.
|
|
13
|
+
*
|
|
14
|
+
* @property lat - Latitude in degrees
|
|
15
|
+
* @property lng - Longitude in degrees
|
|
16
|
+
*/
|
|
17
|
+
export const MapLatLngType = StructType({
|
|
18
|
+
/** Latitude in degrees */
|
|
19
|
+
lat: FloatType,
|
|
20
|
+
/** Longitude in degrees */
|
|
21
|
+
lng: FloatType,
|
|
22
|
+
});
|
|
23
|
+
/**
|
|
24
|
+
* Theme tone for area fills, hex strokes, markers, and lines.
|
|
25
|
+
*
|
|
26
|
+
* @remarks
|
|
27
|
+
* Colour stays theme-owned: data selects a tone and the renderer's recipe
|
|
28
|
+
* maps each tone to its token.
|
|
29
|
+
*
|
|
30
|
+
* @property brand - Brand teal
|
|
31
|
+
* @property ink - Foreground ink
|
|
32
|
+
* @property muted - Muted foreground
|
|
33
|
+
* @property success - Status ok
|
|
34
|
+
* @property warning - Status warn
|
|
35
|
+
* @property danger - Status bad
|
|
36
|
+
*/
|
|
37
|
+
export const MapToneType = VariantType({
|
|
38
|
+
/** Brand teal */
|
|
39
|
+
brand: NullType,
|
|
40
|
+
/** Foreground ink */
|
|
41
|
+
ink: NullType,
|
|
42
|
+
/** Muted foreground */
|
|
43
|
+
muted: NullType,
|
|
44
|
+
/** Status ok */
|
|
45
|
+
success: NullType,
|
|
46
|
+
/** Status warn */
|
|
47
|
+
warning: NullType,
|
|
48
|
+
/** Status bad */
|
|
49
|
+
danger: NullType,
|
|
50
|
+
});
|
|
51
|
+
/**
|
|
52
|
+
* CARTO raster basemap preset.
|
|
53
|
+
*
|
|
54
|
+
* @property positron - Light, low-saturation base (default)
|
|
55
|
+
* @property darkMatter - Dark base
|
|
56
|
+
* @property voyager - Balanced colour base
|
|
57
|
+
*/
|
|
58
|
+
export const MapCartoStyleType = VariantType({
|
|
59
|
+
/** Light, low-saturation base (default) */
|
|
60
|
+
positron: NullType,
|
|
61
|
+
/** Dark base */
|
|
62
|
+
darkMatter: NullType,
|
|
63
|
+
/** Balanced colour base */
|
|
64
|
+
voyager: NullType,
|
|
65
|
+
});
|
|
66
|
+
/**
|
|
67
|
+
* Basemap source — closed CARTO / OSM presets plus a raw XYZ escape hatch.
|
|
68
|
+
*
|
|
69
|
+
* @remarks
|
|
70
|
+
* The `custom` case keeps `attribution` required: tile providers (CARTO,
|
|
71
|
+
* OSM) require their credit to stay visible.
|
|
72
|
+
*
|
|
73
|
+
* @property carto - A CARTO raster preset
|
|
74
|
+
* @property osm - OpenStreetMap standard raster tiles
|
|
75
|
+
* @property custom - A raw XYZ tile template with explicit attribution
|
|
76
|
+
*/
|
|
77
|
+
export const MapTileType = VariantType({
|
|
78
|
+
/** A CARTO raster preset */
|
|
79
|
+
carto: StructType({
|
|
80
|
+
/** The CARTO preset */
|
|
81
|
+
style: MapCartoStyleType,
|
|
82
|
+
}),
|
|
83
|
+
/** OpenStreetMap standard raster tiles */
|
|
84
|
+
osm: NullType,
|
|
85
|
+
/** A raw XYZ tile template with explicit attribution */
|
|
86
|
+
custom: StructType({
|
|
87
|
+
/** XYZ tile URL template (e.g. `https://{s}.tiles.example/{z}/{x}/{y}.png`) */
|
|
88
|
+
url: StringType,
|
|
89
|
+
/** Attribution HTML kept visible in the corner */
|
|
90
|
+
attribution: StringType,
|
|
91
|
+
/** Optional `{s}` subdomain list (default none) */
|
|
92
|
+
subdomains: OptionType(ArrayType(StringType)),
|
|
93
|
+
/** Optional max zoom for the layer (default the map's `maxZoom`) */
|
|
94
|
+
maxZoom: OptionType(IntegerType),
|
|
95
|
+
/** Optional retina `{r}` tiles (default off) */
|
|
96
|
+
detectRetina: OptionType(BooleanType),
|
|
97
|
+
}),
|
|
98
|
+
});
|
|
99
|
+
/**
|
|
100
|
+
* A `flyTo` / `fitBounds` camera target.
|
|
101
|
+
*
|
|
102
|
+
* @property point - Centre on a point at a zoom level
|
|
103
|
+
* @property bounds - Frame a south-west / north-east bounding box
|
|
104
|
+
*/
|
|
105
|
+
export const MapFocusType = VariantType({
|
|
106
|
+
/** Centre on a point at a zoom level */
|
|
107
|
+
point: StructType({
|
|
108
|
+
/** The centre */
|
|
109
|
+
center: MapLatLngType,
|
|
110
|
+
/** The zoom level to settle at */
|
|
111
|
+
zoom: IntegerType,
|
|
112
|
+
}),
|
|
113
|
+
/** Frame a south-west / north-east bounding box */
|
|
114
|
+
bounds: StructType({
|
|
115
|
+
/** South-west corner */
|
|
116
|
+
sw: MapLatLngType,
|
|
117
|
+
/** North-east corner */
|
|
118
|
+
ne: MapLatLngType,
|
|
119
|
+
}),
|
|
120
|
+
});
|
|
121
|
+
/**
|
|
122
|
+
* An area boundary — an H3 disk, an explicit ring, or explicit H3 cell ids.
|
|
123
|
+
*
|
|
124
|
+
* @remarks
|
|
125
|
+
* The value stores H3 *inputs* (centre / `k` / resolution, or cell ids), not
|
|
126
|
+
* expanded boundary coordinates — the renderer owns `h3-js` and computes the
|
|
127
|
+
* rings, keeping the serialized value small.
|
|
128
|
+
*
|
|
129
|
+
* @property hexDisk - A `gridDisk(origin, k)` blob at a resolution
|
|
130
|
+
* @property polygon - An explicit ring of points
|
|
131
|
+
* @property cells - Explicit H3 cell ids
|
|
132
|
+
*/
|
|
133
|
+
export const MapAreaShapeType = VariantType({
|
|
134
|
+
/** A `gridDisk(origin, k)` blob at a resolution */
|
|
135
|
+
hexDisk: StructType({
|
|
136
|
+
/** The disk origin */
|
|
137
|
+
center: MapLatLngType,
|
|
138
|
+
/** Ring count (`k`) around the origin */
|
|
139
|
+
k: IntegerType,
|
|
140
|
+
/** H3 resolution */
|
|
141
|
+
resolution: IntegerType,
|
|
142
|
+
}),
|
|
143
|
+
/** An explicit ring of points */
|
|
144
|
+
polygon: ArrayType(MapLatLngType),
|
|
145
|
+
/** Explicit H3 cell ids */
|
|
146
|
+
cells: ArrayType(StringType),
|
|
147
|
+
});
|
|
148
|
+
/**
|
|
149
|
+
* A filled, clickable area (e.g. a postcode).
|
|
150
|
+
*
|
|
151
|
+
* @remarks
|
|
152
|
+
* `status` drives both colour and the pulse animation; `bad` ⇒ red pulse,
|
|
153
|
+
* `success` / `info` ⇒ teal pulse, neutral ⇒ static.
|
|
154
|
+
*
|
|
155
|
+
* @property key - Area identity — `onAreaClick` returns it; `flyTo` target id
|
|
156
|
+
* @property shape - The H3 / polygon boundary
|
|
157
|
+
* @property label - Optional permanent tooltip
|
|
158
|
+
* @property detailLabel - Optional richer label shown only at/after `lodZoom`
|
|
159
|
+
* @property status - Optional status token; drives colour + pulse
|
|
160
|
+
* @property tone - Optional explicit tone override; absent ⇒ `status` drives colour
|
|
161
|
+
* @property color - Optional raw CSS colour; wins over `tone`
|
|
162
|
+
* @property fillOpacity - Optional fill alpha (0–1)
|
|
163
|
+
* @property weight - Optional stroke width in px
|
|
164
|
+
* @property pulse - Optional explicit pulse override; absent ⇒ derived from `status`
|
|
165
|
+
* @property flyTo - Optional click camera target; absent ⇒ frame the shape
|
|
166
|
+
*/
|
|
167
|
+
export const MapAreaType = StructType({
|
|
168
|
+
/** Area identity — `onAreaClick` returns it; `flyTo` target id */
|
|
169
|
+
key: StringType,
|
|
170
|
+
/** The H3 / polygon boundary */
|
|
171
|
+
shape: MapAreaShapeType,
|
|
172
|
+
/** Optional permanent tooltip */
|
|
173
|
+
label: OptionType(StringType),
|
|
174
|
+
/** Optional richer label shown only at/after `lodZoom` */
|
|
175
|
+
detailLabel: OptionType(StringType),
|
|
176
|
+
/** Optional status token; drives colour + pulse */
|
|
177
|
+
status: OptionType(StatusTokenType),
|
|
178
|
+
/** Optional explicit tone override; absent ⇒ `status` drives colour */
|
|
179
|
+
tone: OptionType(MapToneType),
|
|
180
|
+
/** Optional raw CSS colour (e.g. `"#2D7FF9"`); wins over `tone` */
|
|
181
|
+
color: OptionType(StringType),
|
|
182
|
+
/** Optional fill alpha (0–1) */
|
|
183
|
+
fillOpacity: OptionType(FloatType),
|
|
184
|
+
/** Optional stroke width in px */
|
|
185
|
+
weight: OptionType(FloatType),
|
|
186
|
+
/** Optional explicit pulse override; absent ⇒ derived from `status` */
|
|
187
|
+
pulse: OptionType(BooleanType),
|
|
188
|
+
/** Optional click camera target; absent ⇒ frame the shape */
|
|
189
|
+
flyTo: OptionType(MapFocusType),
|
|
190
|
+
});
|
|
191
|
+
/**
|
|
192
|
+
* The res-8 hex lattice plus per-cell detail revealed at LOD.
|
|
193
|
+
*
|
|
194
|
+
* @remarks
|
|
195
|
+
* First-class so the renderer can compute disks / boundaries with `h3-js`
|
|
196
|
+
* and gate per-cell detail on zoom; the value stays compact (cell ids, not
|
|
197
|
+
* boundary coordinates).
|
|
198
|
+
*
|
|
199
|
+
* @property lattice - Optional faint background lattice (a disk of cells)
|
|
200
|
+
* @property cells - Per-cell detail (id + optional status / fill / detail text)
|
|
201
|
+
* @property tone - Optional lattice stroke tone (default `muted`)
|
|
202
|
+
* @property interactive - Optional click-through flag (default false — decorative)
|
|
203
|
+
*/
|
|
204
|
+
export const MapHexLayerType = StructType({
|
|
205
|
+
/** Optional faint background lattice (a disk of cells around a centre) */
|
|
206
|
+
lattice: OptionType(StructType({
|
|
207
|
+
/** The lattice centre */
|
|
208
|
+
center: MapLatLngType,
|
|
209
|
+
/** Ring count (`k`) around the centre */
|
|
210
|
+
k: IntegerType,
|
|
211
|
+
/** H3 resolution */
|
|
212
|
+
resolution: IntegerType,
|
|
213
|
+
})),
|
|
214
|
+
/** Per-cell detail */
|
|
215
|
+
cells: ArrayType(StructType({
|
|
216
|
+
/** H3 cell id (the renderer calls `cellToBoundary`) */
|
|
217
|
+
id: StringType,
|
|
218
|
+
/** Optional status token for the cell fill */
|
|
219
|
+
status: OptionType(StatusTokenType),
|
|
220
|
+
/** Optional fill alpha (0–1) */
|
|
221
|
+
fillOpacity: OptionType(FloatType),
|
|
222
|
+
/** Optional detail text shown only when zoom ≥ `lodZoom` */
|
|
223
|
+
detail: OptionType(StringType),
|
|
224
|
+
})),
|
|
225
|
+
/** Optional lattice stroke tone (default `muted`) */
|
|
226
|
+
tone: OptionType(MapToneType),
|
|
227
|
+
/** Optional click-through flag (default false — decorative) */
|
|
228
|
+
interactive: OptionType(BooleanType),
|
|
229
|
+
});
|
|
230
|
+
/**
|
|
231
|
+
* A pin (home / POI). `minZoom` is the LOD gate; `icon` is a Font Awesome name.
|
|
232
|
+
*
|
|
233
|
+
* @property key - Marker identity — `onMarkerClick` returns it
|
|
234
|
+
* @property at - The pin location
|
|
235
|
+
* @property label - Optional permanent tooltip
|
|
236
|
+
* @property icon - Optional Font Awesome solid icon name
|
|
237
|
+
* @property tone - Optional marker tone
|
|
238
|
+
* @property minZoom - Optional LOD gate; the pin appears only at/after this zoom
|
|
239
|
+
* @property interactive - Optional click flag (default true)
|
|
240
|
+
*/
|
|
241
|
+
export const MapMarkerType = StructType({
|
|
242
|
+
/** Marker identity — `onMarkerClick` returns it */
|
|
243
|
+
key: StringType,
|
|
244
|
+
/** The pin location */
|
|
245
|
+
at: MapLatLngType,
|
|
246
|
+
/** Optional permanent tooltip */
|
|
247
|
+
label: OptionType(StringType),
|
|
248
|
+
/** Optional Font Awesome solid icon name */
|
|
249
|
+
icon: OptionType(StringType),
|
|
250
|
+
/** Optional marker tone */
|
|
251
|
+
tone: OptionType(MapToneType),
|
|
252
|
+
/** Optional LOD gate; the pin appears only at/after this zoom */
|
|
253
|
+
minZoom: OptionType(IntegerType),
|
|
254
|
+
/** Optional click flag (default true) */
|
|
255
|
+
interactive: OptionType(BooleanType),
|
|
256
|
+
});
|
|
257
|
+
/**
|
|
258
|
+
* Line render style.
|
|
259
|
+
*
|
|
260
|
+
* @property solid - A solid connector
|
|
261
|
+
* @property dashed - A dashed / routing connector
|
|
262
|
+
*/
|
|
263
|
+
export const MapLineStyleType = VariantType({
|
|
264
|
+
/** A solid connector */
|
|
265
|
+
solid: StructType({
|
|
266
|
+
/** Stroke tone (default `brand`) */
|
|
267
|
+
tone: OptionType(MapToneType),
|
|
268
|
+
/** Stroke width in px (default 2.5) */
|
|
269
|
+
weight: OptionType(FloatType),
|
|
270
|
+
}),
|
|
271
|
+
/** A dashed / routing connector */
|
|
272
|
+
dashed: StructType({
|
|
273
|
+
/** Stroke tone (default `brand`) */
|
|
274
|
+
tone: OptionType(MapToneType),
|
|
275
|
+
/** Stroke width in px (default 2) */
|
|
276
|
+
weight: OptionType(FloatType),
|
|
277
|
+
}),
|
|
278
|
+
});
|
|
279
|
+
/**
|
|
280
|
+
* A connector / move arrow between geographic points.
|
|
281
|
+
*
|
|
282
|
+
* @property key - Line identity
|
|
283
|
+
* @property points - The polyline points, in order
|
|
284
|
+
* @property style - Render style (`solid` / `dashed`)
|
|
285
|
+
* @property flow - Optional animated dash-offset when active (default off)
|
|
286
|
+
* @property arrow - Optional arrowhead at the destination (default off)
|
|
287
|
+
*/
|
|
288
|
+
export const MapLineType = StructType({
|
|
289
|
+
/** Line identity */
|
|
290
|
+
key: StringType,
|
|
291
|
+
/** The polyline points, in order */
|
|
292
|
+
points: ArrayType(MapLatLngType),
|
|
293
|
+
/** Render style (`solid` / `dashed`) */
|
|
294
|
+
style: MapLineStyleType,
|
|
295
|
+
/** Optional animated dash-offset when active (default off) */
|
|
296
|
+
flow: OptionType(BooleanType),
|
|
297
|
+
/** Optional arrowhead at the destination (default off) */
|
|
298
|
+
arrow: OptionType(BooleanType),
|
|
299
|
+
});
|
|
300
|
+
/**
|
|
301
|
+
* A standalone label (e.g. a suburb name) not tied to an area.
|
|
302
|
+
*
|
|
303
|
+
* @property key - Label identity
|
|
304
|
+
* @property at - The label anchor
|
|
305
|
+
* @property text - The label text
|
|
306
|
+
*/
|
|
307
|
+
export const MapLabelType = StructType({
|
|
308
|
+
/** Label identity */
|
|
309
|
+
key: StringType,
|
|
310
|
+
/** The label anchor */
|
|
311
|
+
at: MapLatLngType,
|
|
312
|
+
/** The label text */
|
|
313
|
+
text: StringType,
|
|
314
|
+
});
|
|
315
|
+
//# sourceMappingURL=types.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../src/collections/map/types.ts"],"names":[],"mappings":"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"}
|
package/dist/src/component.d.ts
CHANGED
|
@@ -12538,6 +12538,231 @@ declare const UIComponentTypeImpl: RecursiveType<VariantType<{
|
|
|
12538
12538
|
readonly height: OptionType<StringType>;
|
|
12539
12539
|
readonly onSelect: OptionType<FunctionType<[StringType], NullType>>;
|
|
12540
12540
|
}>;
|
|
12541
|
+
readonly Map: StructType<{
|
|
12542
|
+
readonly tiles: VariantType<{
|
|
12543
|
+
readonly carto: StructType<{
|
|
12544
|
+
readonly style: VariantType<{
|
|
12545
|
+
readonly positron: NullType;
|
|
12546
|
+
readonly darkMatter: NullType;
|
|
12547
|
+
readonly voyager: NullType;
|
|
12548
|
+
}>;
|
|
12549
|
+
}>;
|
|
12550
|
+
readonly osm: NullType;
|
|
12551
|
+
readonly custom: StructType<{
|
|
12552
|
+
readonly url: StringType;
|
|
12553
|
+
readonly attribution: StringType;
|
|
12554
|
+
readonly subdomains: OptionType<ArrayType<StringType>>;
|
|
12555
|
+
readonly maxZoom: OptionType<IntegerType>;
|
|
12556
|
+
readonly detectRetina: OptionType<BooleanType>;
|
|
12557
|
+
}>;
|
|
12558
|
+
}>;
|
|
12559
|
+
readonly center: StructType<{
|
|
12560
|
+
readonly lat: FloatType;
|
|
12561
|
+
readonly lng: FloatType;
|
|
12562
|
+
}>;
|
|
12563
|
+
readonly zoom: IntegerType;
|
|
12564
|
+
readonly minZoom: OptionType<IntegerType>;
|
|
12565
|
+
readonly maxZoom: OptionType<IntegerType>;
|
|
12566
|
+
readonly lodZoom: OptionType<IntegerType>;
|
|
12567
|
+
readonly fitBounds: OptionType<VariantType<{
|
|
12568
|
+
readonly point: StructType<{
|
|
12569
|
+
readonly center: StructType<{
|
|
12570
|
+
readonly lat: FloatType;
|
|
12571
|
+
readonly lng: FloatType;
|
|
12572
|
+
}>;
|
|
12573
|
+
readonly zoom: IntegerType;
|
|
12574
|
+
}>;
|
|
12575
|
+
readonly bounds: StructType<{
|
|
12576
|
+
readonly sw: StructType<{
|
|
12577
|
+
readonly lat: FloatType;
|
|
12578
|
+
readonly lng: FloatType;
|
|
12579
|
+
}>;
|
|
12580
|
+
readonly ne: StructType<{
|
|
12581
|
+
readonly lat: FloatType;
|
|
12582
|
+
readonly lng: FloatType;
|
|
12583
|
+
}>;
|
|
12584
|
+
}>;
|
|
12585
|
+
}>>;
|
|
12586
|
+
readonly areas: ArrayType<StructType<{
|
|
12587
|
+
readonly key: StringType;
|
|
12588
|
+
readonly shape: VariantType<{
|
|
12589
|
+
readonly hexDisk: StructType<{
|
|
12590
|
+
readonly center: StructType<{
|
|
12591
|
+
readonly lat: FloatType;
|
|
12592
|
+
readonly lng: FloatType;
|
|
12593
|
+
}>;
|
|
12594
|
+
readonly k: IntegerType;
|
|
12595
|
+
readonly resolution: IntegerType;
|
|
12596
|
+
}>;
|
|
12597
|
+
readonly polygon: ArrayType<StructType<{
|
|
12598
|
+
readonly lat: FloatType;
|
|
12599
|
+
readonly lng: FloatType;
|
|
12600
|
+
}>>;
|
|
12601
|
+
readonly cells: ArrayType<StringType>;
|
|
12602
|
+
}>;
|
|
12603
|
+
readonly label: OptionType<StringType>;
|
|
12604
|
+
readonly detailLabel: OptionType<StringType>;
|
|
12605
|
+
readonly status: OptionType<VariantType<{
|
|
12606
|
+
readonly success: NullType;
|
|
12607
|
+
readonly warning: NullType;
|
|
12608
|
+
readonly danger: NullType;
|
|
12609
|
+
readonly info: NullType;
|
|
12610
|
+
readonly neutral: NullType;
|
|
12611
|
+
}>>;
|
|
12612
|
+
readonly tone: OptionType<VariantType<{
|
|
12613
|
+
readonly brand: NullType;
|
|
12614
|
+
readonly ink: NullType;
|
|
12615
|
+
readonly muted: NullType;
|
|
12616
|
+
readonly success: NullType;
|
|
12617
|
+
readonly warning: NullType;
|
|
12618
|
+
readonly danger: NullType;
|
|
12619
|
+
}>>;
|
|
12620
|
+
readonly color: OptionType<StringType>;
|
|
12621
|
+
readonly fillOpacity: OptionType<FloatType>;
|
|
12622
|
+
readonly weight: OptionType<FloatType>;
|
|
12623
|
+
readonly pulse: OptionType<BooleanType>;
|
|
12624
|
+
readonly flyTo: OptionType<VariantType<{
|
|
12625
|
+
readonly point: StructType<{
|
|
12626
|
+
readonly center: StructType<{
|
|
12627
|
+
readonly lat: FloatType;
|
|
12628
|
+
readonly lng: FloatType;
|
|
12629
|
+
}>;
|
|
12630
|
+
readonly zoom: IntegerType;
|
|
12631
|
+
}>;
|
|
12632
|
+
readonly bounds: StructType<{
|
|
12633
|
+
readonly sw: StructType<{
|
|
12634
|
+
readonly lat: FloatType;
|
|
12635
|
+
readonly lng: FloatType;
|
|
12636
|
+
}>;
|
|
12637
|
+
readonly ne: StructType<{
|
|
12638
|
+
readonly lat: FloatType;
|
|
12639
|
+
readonly lng: FloatType;
|
|
12640
|
+
}>;
|
|
12641
|
+
}>;
|
|
12642
|
+
}>>;
|
|
12643
|
+
}>>;
|
|
12644
|
+
readonly hexes: OptionType<StructType<{
|
|
12645
|
+
readonly lattice: OptionType<StructType<{
|
|
12646
|
+
readonly center: StructType<{
|
|
12647
|
+
readonly lat: FloatType;
|
|
12648
|
+
readonly lng: FloatType;
|
|
12649
|
+
}>;
|
|
12650
|
+
readonly k: IntegerType;
|
|
12651
|
+
readonly resolution: IntegerType;
|
|
12652
|
+
}>>;
|
|
12653
|
+
readonly cells: ArrayType<StructType<{
|
|
12654
|
+
readonly id: StringType;
|
|
12655
|
+
readonly status: OptionType<VariantType<{
|
|
12656
|
+
readonly success: NullType;
|
|
12657
|
+
readonly warning: NullType;
|
|
12658
|
+
readonly danger: NullType;
|
|
12659
|
+
readonly info: NullType;
|
|
12660
|
+
readonly neutral: NullType;
|
|
12661
|
+
}>>;
|
|
12662
|
+
readonly fillOpacity: OptionType<FloatType>;
|
|
12663
|
+
readonly detail: OptionType<StringType>;
|
|
12664
|
+
}>>;
|
|
12665
|
+
readonly tone: OptionType<VariantType<{
|
|
12666
|
+
readonly brand: NullType;
|
|
12667
|
+
readonly ink: NullType;
|
|
12668
|
+
readonly muted: NullType;
|
|
12669
|
+
readonly success: NullType;
|
|
12670
|
+
readonly warning: NullType;
|
|
12671
|
+
readonly danger: NullType;
|
|
12672
|
+
}>>;
|
|
12673
|
+
readonly interactive: OptionType<BooleanType>;
|
|
12674
|
+
}>>;
|
|
12675
|
+
readonly markers: ArrayType<StructType<{
|
|
12676
|
+
readonly key: StringType;
|
|
12677
|
+
readonly at: StructType<{
|
|
12678
|
+
readonly lat: FloatType;
|
|
12679
|
+
readonly lng: FloatType;
|
|
12680
|
+
}>;
|
|
12681
|
+
readonly label: OptionType<StringType>;
|
|
12682
|
+
readonly icon: OptionType<StringType>;
|
|
12683
|
+
readonly tone: OptionType<VariantType<{
|
|
12684
|
+
readonly brand: NullType;
|
|
12685
|
+
readonly ink: NullType;
|
|
12686
|
+
readonly muted: NullType;
|
|
12687
|
+
readonly success: NullType;
|
|
12688
|
+
readonly warning: NullType;
|
|
12689
|
+
readonly danger: NullType;
|
|
12690
|
+
}>>;
|
|
12691
|
+
readonly minZoom: OptionType<IntegerType>;
|
|
12692
|
+
readonly interactive: OptionType<BooleanType>;
|
|
12693
|
+
}>>;
|
|
12694
|
+
readonly lines: ArrayType<StructType<{
|
|
12695
|
+
readonly key: StringType;
|
|
12696
|
+
readonly points: ArrayType<StructType<{
|
|
12697
|
+
readonly lat: FloatType;
|
|
12698
|
+
readonly lng: FloatType;
|
|
12699
|
+
}>>;
|
|
12700
|
+
readonly style: VariantType<{
|
|
12701
|
+
readonly solid: StructType<{
|
|
12702
|
+
readonly tone: OptionType<VariantType<{
|
|
12703
|
+
readonly brand: NullType;
|
|
12704
|
+
readonly ink: NullType;
|
|
12705
|
+
readonly muted: NullType;
|
|
12706
|
+
readonly success: NullType;
|
|
12707
|
+
readonly warning: NullType;
|
|
12708
|
+
readonly danger: NullType;
|
|
12709
|
+
}>>;
|
|
12710
|
+
readonly weight: OptionType<FloatType>;
|
|
12711
|
+
}>;
|
|
12712
|
+
readonly dashed: StructType<{
|
|
12713
|
+
readonly tone: OptionType<VariantType<{
|
|
12714
|
+
readonly brand: NullType;
|
|
12715
|
+
readonly ink: NullType;
|
|
12716
|
+
readonly muted: NullType;
|
|
12717
|
+
readonly success: NullType;
|
|
12718
|
+
readonly warning: NullType;
|
|
12719
|
+
readonly danger: NullType;
|
|
12720
|
+
}>>;
|
|
12721
|
+
readonly weight: OptionType<FloatType>;
|
|
12722
|
+
}>;
|
|
12723
|
+
}>;
|
|
12724
|
+
readonly flow: OptionType<BooleanType>;
|
|
12725
|
+
readonly arrow: OptionType<BooleanType>;
|
|
12726
|
+
}>>;
|
|
12727
|
+
readonly labels: ArrayType<StructType<{
|
|
12728
|
+
readonly key: StringType;
|
|
12729
|
+
readonly at: StructType<{
|
|
12730
|
+
readonly lat: FloatType;
|
|
12731
|
+
readonly lng: FloatType;
|
|
12732
|
+
}>;
|
|
12733
|
+
readonly text: StringType;
|
|
12734
|
+
}>>;
|
|
12735
|
+
readonly overlays: ArrayType<StructType<{
|
|
12736
|
+
readonly content: import("@elaraai/east").RecursiveTypeMarker;
|
|
12737
|
+
readonly align: VariantType<{
|
|
12738
|
+
readonly start: NullType;
|
|
12739
|
+
readonly center: NullType;
|
|
12740
|
+
readonly end: NullType;
|
|
12741
|
+
}>;
|
|
12742
|
+
readonly verticalAlign: VariantType<{
|
|
12743
|
+
readonly start: NullType;
|
|
12744
|
+
readonly center: NullType;
|
|
12745
|
+
readonly end: NullType;
|
|
12746
|
+
}>;
|
|
12747
|
+
readonly key: OptionType<StringType>;
|
|
12748
|
+
readonly geoAnchor: OptionType<StructType<{
|
|
12749
|
+
readonly lat: FloatType;
|
|
12750
|
+
readonly lng: FloatType;
|
|
12751
|
+
}>>;
|
|
12752
|
+
readonly offset: OptionType<StructType<{
|
|
12753
|
+
readonly x: FloatType;
|
|
12754
|
+
readonly y: FloatType;
|
|
12755
|
+
}>>;
|
|
12756
|
+
readonly interactive: OptionType<BooleanType>;
|
|
12757
|
+
}>>;
|
|
12758
|
+
readonly scrollWheelZoom: OptionType<BooleanType>;
|
|
12759
|
+
readonly attributionPrefix: OptionType<BooleanType>;
|
|
12760
|
+
readonly height: OptionType<StringType>;
|
|
12761
|
+
readonly onAreaClick: OptionType<FunctionType<[StringType], NullType>>;
|
|
12762
|
+
readonly onMarkerClick: OptionType<FunctionType<[StringType], NullType>>;
|
|
12763
|
+
readonly onZoom: OptionType<FunctionType<[IntegerType], NullType>>;
|
|
12764
|
+
readonly onSelect: OptionType<FunctionType<[StringType], NullType>>;
|
|
12765
|
+
}>;
|
|
12541
12766
|
readonly Blend: StructType<{
|
|
12542
12767
|
readonly id: StringType;
|
|
12543
12768
|
readonly sources: ArrayType<StringType>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"component.d.ts","sourceRoot":"","sources":["../../src/component.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EACH,aAAa,EACb,WAAW,EACX,SAAS,EACT,UAAU,EACV,UAAU,EACV,UAAU,EACV,WAAW,EACX,SAAS,EACT,WAAW,EACX,QAAQ,EACR,YAAY,EACZ,QAAQ,EACR,QAAQ,EACR,YAAY,EAGf,MAAM,eAAe,CAAC;AAwLvB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0CG;AACH,QAAA,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAQrB;;;;OAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAOH;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAQH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAcH,4FAA4F;;;;;;;;;;;;;;;;;;;;;;;;;IAE5F;;;;OAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IASH;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA0BC,4FAA4F;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAcxF,gEAAgE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAoBxE;;;OAGG;;;;;;;;;;;;;;IAQH;;;OAGG;;;;;;;;;;;;;;;;;;IAOH;;;;OAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAgCH;;;;OAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAeH;;OAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAUH;;OAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA4FH;;;;OAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAsDH,4FAA4F;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAoK5F;;;;;;OAMG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAiBH;;;;;;OAMG;;;;;;;;;;;;;;;;;;;;;;;;;;IAiBH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAcH;;;;;;;;;OASG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAYH;;;;;;OAMG;;;;;;;;IASH;;;;;OAKG;;;;;;;;;;IAOH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAYH;;;;OAIG;;;;;;;;;;;;;IASH;;;OAGG;;;;;;;;;;;IASH;;OAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA+EC,+DAA+D;;;IAInE;;;;;;;;;OASG;;;;;GAKJ,CAAC;AAEJ,KAAK,mBAAmB,GACpB,OAAO,mBAAmB,SAAS,aAAa,CAAC,MAAM,IAAI,CAAC,GAAG,IAAI,GAAG,KAAK,CAAC;AAEhF;;;;;;;;;;;;;;GAcG;AAEH,MAAM,WAAW,eAAgB,SAAQ,mBAAmB;CAAG;AAE/D,eAAO,MAAM,eAAe,EAAE,aAAa,CAAC,eAAe,CAAuB,CAAC;AAEnF;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG,OAAO,eAAe,CAAC;AAMrD;;;;;;;;;;;;;;;;;GAiBG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;EAI3B,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,OAAO,gBAAgB,CAAC"}
|
|
1
|
+
{"version":3,"file":"component.d.ts","sourceRoot":"","sources":["../../src/component.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EACH,aAAa,EACb,WAAW,EACX,SAAS,EACT,UAAU,EACV,UAAU,EACV,UAAU,EACV,WAAW,EACX,SAAS,EACT,WAAW,EACX,QAAQ,EACR,YAAY,EACZ,QAAQ,EACR,QAAQ,EACR,YAAY,EAGf,MAAM,eAAe,CAAC;AAkMvB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0CG;AACH,QAAA,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAQrB;;;;OAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAOH;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAQH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAcH,4FAA4F;;;;;;;;;;;;;;;;;;;;;;;;;IAE5F;;;;OAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IASH;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA0BC,4FAA4F;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAcxF,gEAAgE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAoBxE;;;OAGG;;;;;;;;;;;;;;IAQH;;;OAGG;;;;;;;;;;;;;;;;;;IAOH;;;;OAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAgCH;;;;OAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAeH;;OAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAUH;;OAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA4FH;;;;OAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAsDH,4FAA4F;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAwM5F;;;;;;OAMG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAiBH;;;;;;OAMG;;;;;;;;;;;;;;;;;;;;;;;;;;IAiBH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAcH;;;;;;;;;OASG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAYH;;;;;;OAMG;;;;;;;;IASH;;;;;OAKG;;;;;;;;;;IAOH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAYH;;;;OAIG;;;;;;;;;;;;;IASH;;;OAGG;;;;;;;;;;;IASH;;OAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA+EC,+DAA+D;;;IAInE;;;;;;;;;OASG;;;;;GAKJ,CAAC;AAEJ,KAAK,mBAAmB,GACpB,OAAO,mBAAmB,SAAS,aAAa,CAAC,MAAM,IAAI,CAAC,GAAG,IAAI,GAAG,KAAK,CAAC;AAEhF;;;;;;;;;;;;;;GAcG;AAEH,MAAM,WAAW,eAAgB,SAAQ,mBAAmB;CAAG;AAE/D,eAAO,MAAM,eAAe,EAAE,aAAa,CAAC,eAAe,CAAuB,CAAC;AAEnF;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG,OAAO,eAAe,CAAC;AAMrD;;;;;;;;;;;;;;;;;GAiBG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;EAI3B,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,OAAO,gBAAgB,CAAC"}
|
package/dist/src/component.js
CHANGED
|
@@ -75,6 +75,7 @@ import { LibraryRootType } from "./collections/library/types.js";
|
|
|
75
75
|
import { RosterRootType } from "./collections/roster/types.js";
|
|
76
76
|
import { CalendarRootType } from "./collections/calendar/types.js";
|
|
77
77
|
import { SchematicRootType } from "./collections/schematic/types.js";
|
|
78
|
+
import { MapLatLngType, MapTileType, MapFocusType, MapAreaType, MapHexLayerType, MapMarkerType, MapLineType, MapLabelType, } from "./collections/map/types.js";
|
|
78
79
|
import { BlendRootType } from "./collections/blend/types.js";
|
|
79
80
|
import { StatusTokenType } from "./style/interaction.js";
|
|
80
81
|
import { CardStyleType } from "./container/card/types.js";
|
|
@@ -660,6 +661,41 @@ const UIComponentTypeImpl = RecursiveType(node => VariantType({
|
|
|
660
661
|
Calendar: CalendarRootType,
|
|
661
662
|
// Schematic — read-only 2D world-coordinate canvas
|
|
662
663
|
Schematic: SchematicRootType,
|
|
664
|
+
// Map — interactive geographic basemap + H3 / area overlay. The
|
|
665
|
+
// `overlays` slot hosts arbitrary UIComponent children via the
|
|
666
|
+
// recursion `node`; mirror this shape with `MapRootType` in
|
|
667
|
+
// `collections/map/index.ts` (which spells the same fields with the
|
|
668
|
+
// resolved `UIComponentType`).
|
|
669
|
+
Map: StructType({
|
|
670
|
+
tiles: MapTileType,
|
|
671
|
+
center: MapLatLngType,
|
|
672
|
+
zoom: IntegerType,
|
|
673
|
+
minZoom: OptionType(IntegerType),
|
|
674
|
+
maxZoom: OptionType(IntegerType),
|
|
675
|
+
lodZoom: OptionType(IntegerType),
|
|
676
|
+
fitBounds: OptionType(MapFocusType),
|
|
677
|
+
areas: ArrayType(MapAreaType),
|
|
678
|
+
hexes: OptionType(MapHexLayerType),
|
|
679
|
+
markers: ArrayType(MapMarkerType),
|
|
680
|
+
lines: ArrayType(MapLineType),
|
|
681
|
+
labels: ArrayType(MapLabelType),
|
|
682
|
+
overlays: ArrayType(StructType({
|
|
683
|
+
content: node,
|
|
684
|
+
align: AlignType,
|
|
685
|
+
verticalAlign: AlignType,
|
|
686
|
+
key: OptionType(StringType),
|
|
687
|
+
geoAnchor: OptionType(MapLatLngType),
|
|
688
|
+
offset: OptionType(StructType({ x: FloatType, y: FloatType })),
|
|
689
|
+
interactive: OptionType(BooleanType),
|
|
690
|
+
})),
|
|
691
|
+
scrollWheelZoom: OptionType(BooleanType),
|
|
692
|
+
attributionPrefix: OptionType(BooleanType),
|
|
693
|
+
height: OptionType(StringType),
|
|
694
|
+
onAreaClick: OptionType(FunctionType([StringType], NullType)),
|
|
695
|
+
onMarkerClick: OptionType(FunctionType([StringType], NullType)),
|
|
696
|
+
onZoom: OptionType(FunctionType([IntegerType], NullType)),
|
|
697
|
+
onSelect: OptionType(FunctionType([StringType], NullType)),
|
|
698
|
+
}),
|
|
663
699
|
// Blend — assembly surface for blending / batching decisions
|
|
664
700
|
Blend: BlendRootType,
|
|
665
701
|
// Disclosure
|