ablok-components 0.3.39 → 0.3.40

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.
Files changed (30) hide show
  1. package/dist/ablok-components.css +1 -1
  2. package/dist/ablok-components.es.js +46671 -7080
  3. package/dist/ablok-components.umd.js +179 -4
  4. package/dist/components/atoms/base-button/base-button.vue.d.ts +1 -1
  5. package/dist/components/atoms/input-file/input-file.vue.d.ts +9 -9
  6. package/dist/components/atoms/input-passcode/input-passcode.vue.d.ts +1 -1
  7. package/dist/components/molecules/auto-suggest/auto-suggest.vue.d.ts +0 -9
  8. package/dist/components/molecules/hint-system/hint-system.vue.d.ts +1 -1
  9. package/dist/components/molecules/image-crop/image-crop.vue.d.ts +10 -6
  10. package/dist/components/molecules/image-crop-resize/image-crop-resize.vue.d.ts +2 -210
  11. package/dist/components/molecules/image-resize/image-resize.vue.d.ts +4 -420
  12. package/dist/components/molecules/image-upload/image-upload.vue.d.ts +1 -1
  13. package/dist/components/molecules/popover-tooltip/popover-tooltip.vue.d.ts +4 -2
  14. package/dist/components/molecules/progress-steps/progress-steps.vue.d.ts +1 -1
  15. package/dist/components/molecules/upload-group/upload-group.vue.d.ts +1 -1
  16. package/dist/components/organisms/asset-uploader/asset-uploader.vue.d.ts +1 -1
  17. package/dist/components/templates/modal-dialog/modal-dialog.vue.d.ts +1 -1
  18. package/dist/composables/useConfetti.d.ts +2 -1
  19. package/dist/i18n.d.ts +0 -21
  20. package/dist/index.d.ts +0 -9
  21. package/dist/locales/en.d.ts +0 -21
  22. package/package.json +1 -1
  23. package/dist/components/molecules/base-map/base-map.spec.d.ts +0 -1
  24. package/dist/components/molecules/base-map/base-map.vue.d.ts +0 -284
  25. package/dist/components/molecules/location-list/location-list.vue.d.ts +0 -75
  26. package/dist/components/organisms/location-finder/location-finder.spec.d.ts +0 -1
  27. package/dist/components/organisms/location-finder/location-finder.vue.d.ts +0 -472
  28. package/dist/composables/useDirections.d.ts +0 -38
  29. package/dist/composables/useGeocoding.d.ts +0 -53
  30. package/dist/composables/useGeolocation.d.ts +0 -20
@@ -1,284 +0,0 @@
1
- import { PropType } from '../../../../vue/dist/vue.esm-bundler.js';
2
- export interface MapPosition {
3
- lat: number;
4
- lng: number;
5
- }
6
- export type MapMarkerType = 'list' | 'selected' | 'search' | 'user';
7
- export interface MapMarker extends MapPosition {
8
- id?: string | number;
9
- label?: string;
10
- type?: MapMarkerType;
11
- }
12
- export type MapStylePreset = 'streets' | 'light' | 'dark' | 'minimal' | 'popover' | 'custom';
13
- declare function __VLS_template(): {
14
- attrs: Partial<{}>;
15
- slots: {
16
- label?(_: {}): any;
17
- };
18
- refs: {};
19
- rootEl: HTMLDivElement;
20
- };
21
- type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
22
- declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
23
- label: {
24
- type: StringConstructor;
25
- default: string;
26
- };
27
- modelValue: {
28
- type: PropType<MapPosition | null>;
29
- default: null;
30
- };
31
- center: {
32
- type: PropType<MapPosition>;
33
- default: () => {
34
- lat: number;
35
- lng: number;
36
- };
37
- };
38
- zoom: {
39
- type: NumberConstructor;
40
- default: number;
41
- };
42
- markers: {
43
- type: PropType<MapMarker[]>;
44
- default: () => never[];
45
- };
46
- routeCoordinates: {
47
- type: PropType<Array<[number, number] | MapPosition>>;
48
- default: () => never[];
49
- };
50
- routeColor: {
51
- type: StringConstructor;
52
- default: string;
53
- };
54
- routeWeight: {
55
- type: NumberConstructor;
56
- default: number;
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
- };
86
- userLocation: {
87
- type: PropType<MapPosition | null>;
88
- default: null;
89
- };
90
- userLocationLabel: {
91
- type: StringConstructor;
92
- default: string;
93
- };
94
- selectedLocationLabel: {
95
- type: StringConstructor;
96
- default: string;
97
- };
98
- height: {
99
- type: StringConstructor;
100
- default: string;
101
- };
102
- interactive: {
103
- type: BooleanConstructor;
104
- default: boolean;
105
- };
106
- disabled: {
107
- type: BooleanConstructor;
108
- default: boolean;
109
- };
110
- showSelectedMarker: {
111
- type: BooleanConstructor;
112
- default: boolean;
113
- };
114
- helperText: {
115
- type: StringConstructor;
116
- default: string;
117
- };
118
- mapStyle: {
119
- type: PropType<MapStylePreset>;
120
- default: string;
121
- };
122
- tileLayerUrl: {
123
- type: StringConstructor;
124
- default: string;
125
- };
126
- tileLayerAttribution: {
127
- type: StringConstructor;
128
- default: string;
129
- };
130
- }>, {}, {}, {}, {}, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
131
- "update:modelValue": (...args: any[]) => void;
132
- "update:center": (...args: any[]) => void;
133
- "update:zoom": (...args: any[]) => void;
134
- "map-click": (...args: any[]) => void;
135
- "marker-click": (...args: any[]) => void;
136
- }, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
137
- label: {
138
- type: StringConstructor;
139
- default: string;
140
- };
141
- modelValue: {
142
- type: PropType<MapPosition | null>;
143
- default: null;
144
- };
145
- center: {
146
- type: PropType<MapPosition>;
147
- default: () => {
148
- lat: number;
149
- lng: number;
150
- };
151
- };
152
- zoom: {
153
- type: NumberConstructor;
154
- default: number;
155
- };
156
- markers: {
157
- type: PropType<MapMarker[]>;
158
- default: () => never[];
159
- };
160
- routeCoordinates: {
161
- type: PropType<Array<[number, number] | MapPosition>>;
162
- default: () => never[];
163
- };
164
- routeColor: {
165
- type: StringConstructor;
166
- default: string;
167
- };
168
- routeWeight: {
169
- type: NumberConstructor;
170
- default: number;
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
- };
200
- userLocation: {
201
- type: PropType<MapPosition | null>;
202
- default: null;
203
- };
204
- userLocationLabel: {
205
- type: StringConstructor;
206
- default: string;
207
- };
208
- selectedLocationLabel: {
209
- type: StringConstructor;
210
- default: string;
211
- };
212
- height: {
213
- type: StringConstructor;
214
- default: string;
215
- };
216
- interactive: {
217
- type: BooleanConstructor;
218
- default: boolean;
219
- };
220
- disabled: {
221
- type: BooleanConstructor;
222
- default: boolean;
223
- };
224
- showSelectedMarker: {
225
- type: BooleanConstructor;
226
- default: boolean;
227
- };
228
- helperText: {
229
- type: StringConstructor;
230
- default: string;
231
- };
232
- mapStyle: {
233
- type: PropType<MapStylePreset>;
234
- default: string;
235
- };
236
- tileLayerUrl: {
237
- type: StringConstructor;
238
- default: string;
239
- };
240
- tileLayerAttribution: {
241
- type: StringConstructor;
242
- default: string;
243
- };
244
- }>> & Readonly<{
245
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
246
- "onUpdate:center"?: ((...args: any[]) => any) | undefined;
247
- "onUpdate:zoom"?: ((...args: any[]) => any) | undefined;
248
- "onMap-click"?: ((...args: any[]) => any) | undefined;
249
- "onMarker-click"?: ((...args: any[]) => any) | undefined;
250
- }>, {
251
- label: string;
252
- zoom: number;
253
- modelValue: MapPosition | null;
254
- disabled: boolean;
255
- markers: MapMarker[];
256
- center: MapPosition;
257
- height: string;
258
- routeCoordinates: (MapPosition | [number, number])[];
259
- routeColor: string;
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;
268
- userLocation: MapPosition | null;
269
- userLocationLabel: string;
270
- selectedLocationLabel: string;
271
- interactive: boolean;
272
- showSelectedMarker: boolean;
273
- helperText: string;
274
- mapStyle: MapStylePreset;
275
- tileLayerUrl: string;
276
- tileLayerAttribution: string;
277
- }, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, HTMLDivElement>;
278
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
279
- export default _default;
280
- type __VLS_WithTemplateSlots<T, S> = T & {
281
- new (): {
282
- $slots: S;
283
- };
284
- };
@@ -1,75 +0,0 @@
1
- import { PropType } from '../../../../vue/dist/vue.esm-bundler.js';
2
- declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').DefineComponent<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
3
- modelValue: {
4
- type: null;
5
- default: null;
6
- };
7
- locations: {
8
- type: PropType<Array<any>>;
9
- default: () => never[];
10
- };
11
- label: {
12
- type: StringConstructor;
13
- default: string;
14
- };
15
- titleKey: {
16
- type: StringConstructor;
17
- default: string;
18
- };
19
- descriptionKey: {
20
- type: StringConstructor;
21
- default: string;
22
- };
23
- emptyText: {
24
- type: StringConstructor;
25
- default: string;
26
- };
27
- showDistance: {
28
- type: BooleanConstructor;
29
- default: boolean;
30
- };
31
- }>, {}, {}, {}, {}, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
32
- select: (...args: any[]) => void;
33
- "update:modelValue": (...args: any[]) => void;
34
- }, string, import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
35
- modelValue: {
36
- type: null;
37
- default: null;
38
- };
39
- locations: {
40
- type: PropType<Array<any>>;
41
- default: () => never[];
42
- };
43
- label: {
44
- type: StringConstructor;
45
- default: string;
46
- };
47
- titleKey: {
48
- type: StringConstructor;
49
- default: string;
50
- };
51
- descriptionKey: {
52
- type: StringConstructor;
53
- default: string;
54
- };
55
- emptyText: {
56
- type: StringConstructor;
57
- default: string;
58
- };
59
- showDistance: {
60
- type: BooleanConstructor;
61
- default: boolean;
62
- };
63
- }>> & Readonly<{
64
- onSelect?: ((...args: any[]) => any) | undefined;
65
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
66
- }>, {
67
- label: string;
68
- modelValue: any;
69
- locations: any[];
70
- titleKey: string;
71
- descriptionKey: string;
72
- emptyText: string;
73
- showDistance: boolean;
74
- }, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, true, {}, HTMLDivElement>;
75
- export default _default;