ablok-components 0.3.30 → 0.3.32
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/ablok-components.es.js +1 -1
- package/dist/ablok-components.umd.js +42 -42
- package/dist/components/molecules/base-map/base-map.vue.d.ts +73 -0
- package/dist/components/organisms/location-finder/location-finder.vue.d.ts +55 -0
- package/dist/{index-B_VYRhwH.mjs → index-DRs70Bbq.mjs} +11246 -11141
- package/dist/{leaflet-src-BQxLAcUw.mjs → leaflet-src-A6pQC5uS.mjs} +1 -1
- package/dist/{vue-leaflet.es-Dd9DkQEo.mjs → vue-leaflet.es-CwA58gXi.mjs} +1 -1
- package/package.json +1 -1
|
@@ -9,6 +9,7 @@ export interface MapMarker extends MapPosition {
|
|
|
9
9
|
label?: string;
|
|
10
10
|
type?: MapMarkerType;
|
|
11
11
|
}
|
|
12
|
+
export type MapStylePreset = 'streets' | 'light' | 'dark' | 'minimal' | 'popover' | 'custom';
|
|
12
13
|
declare function __VLS_template(): {
|
|
13
14
|
attrs: Partial<{}>;
|
|
14
15
|
slots: {
|
|
@@ -54,6 +55,34 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
54
55
|
type: NumberConstructor;
|
|
55
56
|
default: number;
|
|
56
57
|
};
|
|
58
|
+
selectionRadius: {
|
|
59
|
+
type: NumberConstructor;
|
|
60
|
+
default: number;
|
|
61
|
+
};
|
|
62
|
+
selectionRadiusCenter: {
|
|
63
|
+
type: PropType<MapPosition | null>;
|
|
64
|
+
default: null;
|
|
65
|
+
};
|
|
66
|
+
selectionRadiusColor: {
|
|
67
|
+
type: StringConstructor;
|
|
68
|
+
default: string;
|
|
69
|
+
};
|
|
70
|
+
selectionRadiusFillColor: {
|
|
71
|
+
type: StringConstructor;
|
|
72
|
+
default: string;
|
|
73
|
+
};
|
|
74
|
+
selectionRadiusFillOpacity: {
|
|
75
|
+
type: NumberConstructor;
|
|
76
|
+
default: number;
|
|
77
|
+
};
|
|
78
|
+
selectionRadiusOpacity: {
|
|
79
|
+
type: NumberConstructor;
|
|
80
|
+
default: number;
|
|
81
|
+
};
|
|
82
|
+
selectionRadiusStrokeWeight: {
|
|
83
|
+
type: NumberConstructor;
|
|
84
|
+
default: number;
|
|
85
|
+
};
|
|
57
86
|
userLocation: {
|
|
58
87
|
type: PropType<MapPosition | null>;
|
|
59
88
|
default: null;
|
|
@@ -86,6 +115,10 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
86
115
|
type: StringConstructor;
|
|
87
116
|
default: string;
|
|
88
117
|
};
|
|
118
|
+
mapStyle: {
|
|
119
|
+
type: PropType<MapStylePreset>;
|
|
120
|
+
default: string;
|
|
121
|
+
};
|
|
89
122
|
tileLayerUrl: {
|
|
90
123
|
type: StringConstructor;
|
|
91
124
|
default: string;
|
|
@@ -136,6 +169,34 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
136
169
|
type: NumberConstructor;
|
|
137
170
|
default: number;
|
|
138
171
|
};
|
|
172
|
+
selectionRadius: {
|
|
173
|
+
type: NumberConstructor;
|
|
174
|
+
default: number;
|
|
175
|
+
};
|
|
176
|
+
selectionRadiusCenter: {
|
|
177
|
+
type: PropType<MapPosition | null>;
|
|
178
|
+
default: null;
|
|
179
|
+
};
|
|
180
|
+
selectionRadiusColor: {
|
|
181
|
+
type: StringConstructor;
|
|
182
|
+
default: string;
|
|
183
|
+
};
|
|
184
|
+
selectionRadiusFillColor: {
|
|
185
|
+
type: StringConstructor;
|
|
186
|
+
default: string;
|
|
187
|
+
};
|
|
188
|
+
selectionRadiusFillOpacity: {
|
|
189
|
+
type: NumberConstructor;
|
|
190
|
+
default: number;
|
|
191
|
+
};
|
|
192
|
+
selectionRadiusOpacity: {
|
|
193
|
+
type: NumberConstructor;
|
|
194
|
+
default: number;
|
|
195
|
+
};
|
|
196
|
+
selectionRadiusStrokeWeight: {
|
|
197
|
+
type: NumberConstructor;
|
|
198
|
+
default: number;
|
|
199
|
+
};
|
|
139
200
|
userLocation: {
|
|
140
201
|
type: PropType<MapPosition | null>;
|
|
141
202
|
default: null;
|
|
@@ -168,6 +229,10 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
168
229
|
type: StringConstructor;
|
|
169
230
|
default: string;
|
|
170
231
|
};
|
|
232
|
+
mapStyle: {
|
|
233
|
+
type: PropType<MapStylePreset>;
|
|
234
|
+
default: string;
|
|
235
|
+
};
|
|
171
236
|
tileLayerUrl: {
|
|
172
237
|
type: StringConstructor;
|
|
173
238
|
default: string;
|
|
@@ -193,12 +258,20 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
193
258
|
routeCoordinates: (MapPosition | [number, number])[];
|
|
194
259
|
routeColor: string;
|
|
195
260
|
routeWeight: number;
|
|
261
|
+
selectionRadius: number;
|
|
262
|
+
selectionRadiusCenter: MapPosition | null;
|
|
263
|
+
selectionRadiusColor: string;
|
|
264
|
+
selectionRadiusFillColor: string;
|
|
265
|
+
selectionRadiusFillOpacity: number;
|
|
266
|
+
selectionRadiusOpacity: number;
|
|
267
|
+
selectionRadiusStrokeWeight: number;
|
|
196
268
|
userLocation: MapPosition | null;
|
|
197
269
|
userLocationLabel: string;
|
|
198
270
|
selectedLocationLabel: string;
|
|
199
271
|
interactive: boolean;
|
|
200
272
|
showSelectedMarker: boolean;
|
|
201
273
|
helperText: string;
|
|
274
|
+
mapStyle: MapStylePreset;
|
|
202
275
|
tileLayerUrl: string;
|
|
203
276
|
tileLayerAttribution: string;
|
|
204
277
|
}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { PropType } from '../../../../vue/dist/vue.esm-bundler.js';
|
|
2
|
+
import { MapStylePreset } from '../../molecules/base-map/base-map.vue';
|
|
2
3
|
interface LocationFinderItem {
|
|
3
4
|
id?: string | number;
|
|
4
5
|
title?: string;
|
|
@@ -163,6 +164,30 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
163
164
|
type: NumberConstructor;
|
|
164
165
|
default: number;
|
|
165
166
|
};
|
|
167
|
+
selectionRadius: {
|
|
168
|
+
type: NumberConstructor;
|
|
169
|
+
default: number;
|
|
170
|
+
};
|
|
171
|
+
selectionRadiusColor: {
|
|
172
|
+
type: StringConstructor;
|
|
173
|
+
default: string;
|
|
174
|
+
};
|
|
175
|
+
selectionRadiusFillColor: {
|
|
176
|
+
type: StringConstructor;
|
|
177
|
+
default: string;
|
|
178
|
+
};
|
|
179
|
+
mapStyle: {
|
|
180
|
+
type: PropType<MapStylePreset>;
|
|
181
|
+
default: string;
|
|
182
|
+
};
|
|
183
|
+
tileLayerUrl: {
|
|
184
|
+
type: StringConstructor;
|
|
185
|
+
default: string;
|
|
186
|
+
};
|
|
187
|
+
tileLayerAttribution: {
|
|
188
|
+
type: StringConstructor;
|
|
189
|
+
default: string;
|
|
190
|
+
};
|
|
166
191
|
disabled: {
|
|
167
192
|
type: BooleanConstructor;
|
|
168
193
|
default: boolean;
|
|
@@ -330,6 +355,30 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
330
355
|
type: NumberConstructor;
|
|
331
356
|
default: number;
|
|
332
357
|
};
|
|
358
|
+
selectionRadius: {
|
|
359
|
+
type: NumberConstructor;
|
|
360
|
+
default: number;
|
|
361
|
+
};
|
|
362
|
+
selectionRadiusColor: {
|
|
363
|
+
type: StringConstructor;
|
|
364
|
+
default: string;
|
|
365
|
+
};
|
|
366
|
+
selectionRadiusFillColor: {
|
|
367
|
+
type: StringConstructor;
|
|
368
|
+
default: string;
|
|
369
|
+
};
|
|
370
|
+
mapStyle: {
|
|
371
|
+
type: PropType<MapStylePreset>;
|
|
372
|
+
default: string;
|
|
373
|
+
};
|
|
374
|
+
tileLayerUrl: {
|
|
375
|
+
type: StringConstructor;
|
|
376
|
+
default: string;
|
|
377
|
+
};
|
|
378
|
+
tileLayerAttribution: {
|
|
379
|
+
type: StringConstructor;
|
|
380
|
+
default: string;
|
|
381
|
+
};
|
|
333
382
|
disabled: {
|
|
334
383
|
type: BooleanConstructor;
|
|
335
384
|
default: boolean;
|
|
@@ -378,11 +427,17 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
|
|
|
378
427
|
} | null;
|
|
379
428
|
routeColor: string;
|
|
380
429
|
routeWeight: number;
|
|
430
|
+
selectionRadius: number;
|
|
431
|
+
selectionRadiusColor: string;
|
|
432
|
+
selectionRadiusFillColor: string;
|
|
381
433
|
userLocation: {
|
|
382
434
|
lat: number;
|
|
383
435
|
lng: number;
|
|
384
436
|
} | null;
|
|
385
437
|
interactive: boolean;
|
|
438
|
+
mapStyle: MapStylePreset;
|
|
439
|
+
tileLayerUrl: string;
|
|
440
|
+
tileLayerAttribution: string;
|
|
386
441
|
locations: LocationFinderItem[];
|
|
387
442
|
emptyText: string;
|
|
388
443
|
distance: number | null;
|