tsv2-library 1.0.61-alpha.111 → 1.0.61-alpha.112

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tsv2-library",
3
3
  "author": "fixedassetv2-fe",
4
- "version": "1.0.61-alpha.111",
4
+ "version": "1.0.61-alpha.112",
5
5
  "license": "ISC",
6
6
  "homepage": "https://github.com/fixedassetv2-fe/tsv2-library#readme",
7
7
  "repository": {
@@ -39,6 +39,10 @@ export interface LatLngValue {
39
39
  lng: number | null;
40
40
  }
41
41
 
42
+ export interface CoordinateValue extends LatLngValue {
43
+ address?: string;
44
+ }
45
+
42
46
  export type InputMapMode = 'click' | 'drag' | 'center';
43
47
 
44
48
  export type MarkerConfig =
@@ -1,12 +1,12 @@
1
1
  import { DefineComponent } from 'vue';
2
2
  import { Nullable } from '../ts-helpers';
3
- import { LatLngValue } from '../DialogCoordinate/DialogCoordinate.vue';
3
+ import { CoordinateValue } from '../DialogCoordinate/DialogCoordinate.vue.d';
4
4
 
5
5
  /**
6
6
  * InputCoordinate component props
7
7
  */
8
8
  export interface InputCoordinateProps {
9
- modelValue?: Nullable<LatLngValue>;
9
+ modelValue?: Nullable<CoordinateValue>;
10
10
  /**
11
11
  * Disabled state for both input fields.
12
12
  */
@@ -43,7 +43,7 @@ export interface InputCoordinateProps {
43
43
  * InputCoordinate component emits
44
44
  */
45
45
  export type InputCoordinateEmits = {
46
- 'update:modelValue': [payload?: Nullable<LatLngValue>];
46
+ 'update:modelValue': [payload?: Nullable<CoordinateValue>];
47
47
  };
48
48
 
49
49
  /**