@bagelink/vue 0.0.869 → 0.0.875
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/components/MapEmbed.vue.d.ts +13 -5
- package/dist/components/MapEmbed.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/RichText2/Toolbar.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/SelectInput.vue.d.ts +3 -3
- package/dist/components/form/inputs/TextInput.vue.d.ts +2 -2
- package/dist/components/form/inputs/TextInput.vue.d.ts.map +1 -1
- package/dist/components/layout/BottomMenu.vue.d.ts +1 -0
- package/dist/components/layout/BottomMenu.vue.d.ts.map +1 -1
- package/dist/index.cjs +282 -259
- package/dist/index.mjs +282 -259
- package/dist/style.css +102 -97
- package/package.json +1 -1
- package/src/components/MapEmbed.vue +49 -18
- package/src/components/form/inputs/RichText2/Toolbar.vue +0 -1
- package/src/components/form/inputs/TextInput.vue +1 -1
- package/src/components/layout/BottomMenu.vue +1 -0
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
import { LatLngExpression } from 'leaflet';
|
|
2
2
|
type MapMarker = {
|
|
3
|
-
lat: number;
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
lat: number | string;
|
|
4
|
+
lng: number | string;
|
|
5
|
+
tooltip?: string;
|
|
6
|
+
popup?: string;
|
|
7
|
+
title?: string;
|
|
8
|
+
[key: string]: any;
|
|
9
|
+
} | [(number | string), (number | string), string?];
|
|
6
10
|
declare const _default: import('vue').DefineComponent<{
|
|
7
11
|
center?: LatLngExpression;
|
|
8
12
|
zoom?: number;
|
|
@@ -10,14 +14,18 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
10
14
|
zoomControl?: boolean;
|
|
11
15
|
markers?: MapMarker[];
|
|
12
16
|
markerIcon?: string;
|
|
13
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
17
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
18
|
+
select: (...args: any[]) => void;
|
|
19
|
+
}, string, import('vue').PublicProps, Readonly<{
|
|
14
20
|
center?: LatLngExpression;
|
|
15
21
|
zoom?: number;
|
|
16
22
|
height?: number;
|
|
17
23
|
zoomControl?: boolean;
|
|
18
24
|
markers?: MapMarker[];
|
|
19
25
|
markerIcon?: string;
|
|
20
|
-
}> & Readonly<{
|
|
26
|
+
}> & Readonly<{
|
|
27
|
+
onSelect?: ((...args: any[]) => any) | undefined;
|
|
28
|
+
}>, {
|
|
21
29
|
height: number;
|
|
22
30
|
center: LatLngExpression;
|
|
23
31
|
zoom: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MapEmbed.vue.d.ts","sourceRoot":"","sources":["../../src/components/MapEmbed.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"MapEmbed.vue.d.ts","sourceRoot":"","sources":["../../src/components/MapEmbed.vue"],"names":[],"mappings":"AAAA,OAoMO,KAAK,EAAE,gBAAgB,EAAsB,MAAM,SAAS,CAAA;AAGnE,OAAO,uBAAuB,CAAA;AAI9B,KAAK,SAAS,GAAG;IAChB,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;IACpB,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;IACpB,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;CAClB,GAAG,CAAC,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,MAAM,CAAC,CAAC,CAAA;;aAGxC,gBAAgB;WAClB,MAAM;aACJ,MAAM;kBACD,OAAO;cACX,SAAS,EAAE;iBACR,MAAM;;;;aALV,gBAAgB;WAClB,MAAM;aACJ,MAAM;kBACD,OAAO;cACX,SAAS,EAAE;iBACR,MAAM;;;;YAHV,MAAM;YAFN,gBAAgB;UAClB,MAAM;iBAEC,OAAO;gBAER,MAAM;;AA2JrB,wBAQG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Toolbar.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/form/inputs/RichText2/Toolbar.vue"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"Toolbar.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/form/inputs/RichText2/Toolbar.vue"],"names":[],"mappings":"AAAA,OAkFO,KAAK,EAAE,aAAa,EAAuB,MAAM,kBAAkB,CAAA;;YAK1C,aAAa;;;;YAAb,aAAa;;;;AAiJ7C,wBAOG"}
|
|
@@ -138,7 +138,7 @@ declare function __VLS_template(): {
|
|
|
138
138
|
multiline?: boolean;
|
|
139
139
|
autoheight?: boolean;
|
|
140
140
|
code?: boolean;
|
|
141
|
-
lines?: number;
|
|
141
|
+
lines?: number | string;
|
|
142
142
|
autocomplete?: AutoFillField;
|
|
143
143
|
autofocus?: boolean;
|
|
144
144
|
debounceDelay?: number;
|
|
@@ -171,7 +171,7 @@ declare function __VLS_template(): {
|
|
|
171
171
|
multiline?: boolean;
|
|
172
172
|
autoheight?: boolean;
|
|
173
173
|
code?: boolean;
|
|
174
|
-
lines?: number;
|
|
174
|
+
lines?: number | string;
|
|
175
175
|
autocomplete?: AutoFillField;
|
|
176
176
|
autofocus?: boolean;
|
|
177
177
|
debounceDelay?: number;
|
|
@@ -212,7 +212,7 @@ declare function __VLS_template(): {
|
|
|
212
212
|
multiline?: boolean;
|
|
213
213
|
autoheight?: boolean;
|
|
214
214
|
code?: boolean;
|
|
215
|
-
lines?: number;
|
|
215
|
+
lines?: number | string;
|
|
216
216
|
autocomplete?: AutoFillField;
|
|
217
217
|
autofocus?: boolean;
|
|
218
218
|
debounceDelay?: number;
|
|
@@ -21,7 +21,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
21
21
|
multiline?: boolean;
|
|
22
22
|
autoheight?: boolean;
|
|
23
23
|
code?: boolean;
|
|
24
|
-
lines?: number;
|
|
24
|
+
lines?: number | string;
|
|
25
25
|
autocomplete?: AutoFillField;
|
|
26
26
|
autofocus?: boolean;
|
|
27
27
|
debounceDelay?: number;
|
|
@@ -51,7 +51,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
51
51
|
multiline?: boolean;
|
|
52
52
|
autoheight?: boolean;
|
|
53
53
|
code?: boolean;
|
|
54
|
-
lines?: number;
|
|
54
|
+
lines?: number | string;
|
|
55
55
|
autocomplete?: AutoFillField;
|
|
56
56
|
autofocus?: boolean;
|
|
57
57
|
debounceDelay?: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TextInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/TextInput.vue"],"names":[],"mappings":"AA2NA,OAAO,EAEN,KAAK,aAAa,EAElB,MAAM,eAAe,CAAA;;SAMf,MAAM;YACH,MAAM;eACH,MAAM;kBACH,MAAM;iBACP,MAAM,GAAG,MAAM;YACpB,MAAM;YACN,OAAO;YACP,OAAO;eACJ,OAAO;cACR,MAAM;aACP,OAAO;eACL,OAAO;WACX,MAAM;uBACM;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;KAAE;WAClC,aAAa;gBACR,aAAa;gBACb,OAAO;iBACN,OAAO;WACb,OAAO;YACN,MAAM;
|
|
1
|
+
{"version":3,"file":"TextInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/TextInput.vue"],"names":[],"mappings":"AA2NA,OAAO,EAEN,KAAK,aAAa,EAElB,MAAM,eAAe,CAAA;;SAMf,MAAM;YACH,MAAM;eACH,MAAM;kBACH,MAAM;iBACP,MAAM,GAAG,MAAM;YACpB,MAAM;YACN,OAAO;YACP,OAAO;eACJ,OAAO;cACR,MAAM;aACP,OAAO;eACL,OAAO;WACX,MAAM;uBACM;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;KAAE;WAClC,aAAa;gBACR,aAAa;gBACb,OAAO;iBACN,OAAO;WACb,OAAO;YACN,MAAM,GAAG,MAAM;mBACR,aAAa;gBAChB,OAAO;oBACH,MAAM;iBACT,CAAC,CAAC,EAAE,UAAU,KAAK,IAAI;;;;;SAvB/B,MAAM;YACH,MAAM;eACH,MAAM;kBACH,MAAM;iBACP,MAAM,GAAG,MAAM;YACpB,MAAM;YACN,OAAO;YACP,OAAO;eACJ,OAAO;cACR,MAAM;aACP,OAAO;eACL,OAAO;WACX,MAAM;uBACM;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;KAAE;WAClC,aAAa;gBACR,aAAa;gBACb,OAAO;iBACN,OAAO;WACb,OAAO;YACN,MAAM,GAAG,MAAM;mBACR,aAAa;gBAChB,OAAO;oBACH,MAAM;iBACT,CAAC,CAAC,EAAE,UAAU,KAAK,IAAI;;;;;UAX7B,MAAM;gBARA,MAAM,GAAG,MAAM;mBAkBZ,MAAM;;AA+KxB,wBAQG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BottomMenu.vue.d.ts","sourceRoot":"","sources":["../../../src/components/layout/BottomMenu.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"BottomMenu.vue.d.ts","sourceRoot":"","sources":["../../../src/components/layout/BottomMenu.vue"],"names":[],"mappings":"AAuEA,OAAO,EAIN,KAAK,OAAO,EACZ,MAAM,eAAe,CAAA;AAatB,iBAAS,cAAc;;uBA4FI,GAAG;qBACJ,GAAG;;;WASf,OAAO,IAA6B;EAEjD;AAWD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;cA5HV,OAAO,EAAE;;cAAT,OAAO,EAAE;iGAkIlB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAWpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|