@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.
@@ -1,8 +1,12 @@
1
1
  import { LatLngExpression } from 'leaflet';
2
2
  type MapMarker = {
3
- lat: number;
4
- lon: number;
5
- } | [number, number];
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, {}, string, import('vue').PublicProps, Readonly<{
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":"AAqKA,OAAO,KAAK,EAAE,gBAAgB,EAAsB,MAAM,SAAS,CAAA;AAGnE,OAAO,uBAAuB,CAAA;AAI9B,KAAK,SAAS,GAAG;IAChB,GAAG,EAAE,MAAM,CAAA;IACX,GAAG,EAAE,MAAM,CAAA;CACX,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;;aAGT,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;;AAoIrB,wBAOG"}
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,OAmFO,KAAK,EAAE,aAAa,EAAuB,MAAM,kBAAkB,CAAA;;YAM1C,aAAa;;;;YAAb,aAAa;;;;AAiJ7C,wBAOG"}
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;mBACC,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;mBACC,aAAa;gBAChB,OAAO;oBACH,MAAM;iBACT,CAAC,CAAC,EAAE,UAAU,KAAK,IAAI;;;;;UAX7B,MAAM;gBARA,MAAM,GAAG,MAAM;mBAkBZ,MAAM;;AA+KxB,wBAQG"}
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"}
@@ -2,6 +2,7 @@ import { NavLink } from '../..';
2
2
  declare function __VLS_template(): {
3
3
  slots: {
4
4
  brand?(_: {}): any;
5
+ end?(_: {}): any;
5
6
  };
6
7
  refs: {};
7
8
  attrs: Partial<{}>;
@@ -1 +1 @@
1
- {"version":3,"file":"BottomMenu.vue.d.ts","sourceRoot":"","sources":["../../../src/components/layout/BottomMenu.vue"],"names":[],"mappings":"AAsEA,OAAO,EAIN,KAAK,OAAO,EACZ,MAAM,eAAe,CAAA;AAatB,iBAAS,cAAc;;uBA0FI,GAAG;;;WAShB,OAAO,IAA6B;EAEjD;AAWD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;cAzHV,OAAO,EAAE;;cAAT,OAAO,EAAE;iGA+HlB,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"}
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"}