@stachelock/ui 0.6.1 → 0.6.2
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/composables/index.js +33 -30
- package/dist/index.js +2396 -1152
- package/dist/src/components/UiBanner.d.ts +1 -1
- package/dist/src/components/UiLoadingDots.d.ts +1 -1
- package/dist/src/components/UiMenu.d.ts +1 -1
- package/dist/src/components/UiModal.d.ts +1 -1
- package/dist/src/components/collection-editor/CollectionItemList.d.ts +42 -0
- package/dist/src/components/collection-editor/OrganizationsEditor.d.ts +29 -0
- package/dist/src/components/collection-editor/RelatedNamesEditor.d.ts +26 -0
- package/dist/src/components/collection-editor/SocialLinksEditor.d.ts +26 -0
- package/dist/src/components/collection-editor/index.d.ts +5 -0
- package/dist/src/components/forms/FormFieldWrapper.d.ts +1 -1
- package/dist/src/components/index.d.ts +2 -0
- package/dist/src/components/inputs/AddressInput.d.ts +1 -1
- package/dist/src/components/inputs/ComboboxInput.d.ts +2 -2
- package/dist/src/components/inputs/DatepickerInput.d.ts +12 -12
- package/dist/src/components/inputs/EmailInput.d.ts +2 -2
- package/dist/src/components/inputs/PhoneInput.d.ts +2 -2
- package/dist/src/components/inputs/RichTextInput.d.ts +2 -2
- package/dist/src/components/inputs/SelectInput.d.ts +2 -2
- package/dist/src/components/inputs/SelectTextInput.d.ts +4 -4
- package/dist/src/components/inputs/TagifyInput.d.ts +2 -2
- package/dist/src/components/inputs/TextInput.d.ts +3 -3
- package/dist/src/components/layouts/CardLayout.d.ts +1 -1
- package/dist/src/components/maps/UiInfoWindow.d.ts +2 -2
- package/dist/src/components/maps/UiMap.d.ts +1 -1
- package/dist/src/components/maps/UiMapAll.d.ts +6 -6
- package/dist/src/components/maps/UiMapMarker.d.ts +2 -2
- package/dist/src/components/modals/BaseModal.d.ts +1 -1
- package/dist/src/components/profiles/BentoProfileLayout.d.ts +9 -0
- package/dist/src/components/profiles/ProfileCard.d.ts +30 -0
- package/dist/src/components/profiles/ProfileContactCard.d.ts +12 -0
- package/dist/src/components/profiles/ProfileHeaderCard.d.ts +20 -0
- package/dist/src/components/profiles/ProfileLocationCard.d.ts +17 -0
- package/dist/src/components/profiles/ProfileOrganizationsCard.d.ts +11 -0
- package/dist/src/components/profiles/ProfilePersonalCard.d.ts +10 -0
- package/dist/src/components/profiles/ProfileProfessionalCard.d.ts +11 -0
- package/dist/src/components/profiles/ProfileRelatedNamesCard.d.ts +11 -0
- package/dist/src/components/profiles/index.d.ts +9 -0
- package/dist/src/composables/index.d.ts +1 -0
- package/dist/src/composables/useCollectionEditor.d.ts +64 -0
- package/dist/src/composables/useNotifications.d.ts +4 -4
- package/dist/src/types/collection-editor.d.ts +134 -0
- package/dist/src/types/index.d.ts +2 -0
- package/dist/src/types/profiles.d.ts +149 -0
- package/dist/style.css +1 -1
- package/dist/ui.css +1 -1
- package/dist/useCollectionEditor-BYyoAT0U.js +121 -0
- package/package.json +1 -1
|
@@ -55,12 +55,12 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
55
55
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
56
56
|
onAction?: ((action: BannerAction) => any) | undefined;
|
|
57
57
|
}>, {
|
|
58
|
+
position: BannerPosition;
|
|
58
59
|
rounded: boolean;
|
|
59
60
|
compact: boolean;
|
|
60
61
|
icon: string | false;
|
|
61
62
|
modelValue: boolean;
|
|
62
63
|
theme: BannerTheme;
|
|
63
|
-
position: BannerPosition;
|
|
64
64
|
zIndex: number;
|
|
65
65
|
actions: BannerAction[];
|
|
66
66
|
dismissible: boolean;
|
|
@@ -22,9 +22,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<Pr
|
|
|
22
22
|
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
23
23
|
"onItem-click"?: ((item: MenuItemType) => any) | undefined;
|
|
24
24
|
}>, {
|
|
25
|
+
items: MenuItemType[];
|
|
25
26
|
disabled: boolean;
|
|
26
27
|
width: MenuWidth;
|
|
27
|
-
items: MenuItemType[];
|
|
28
28
|
placement: MenuPlacement;
|
|
29
29
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
|
|
30
30
|
trigger?(_: {}): any;
|
|
@@ -78,8 +78,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
78
78
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
79
79
|
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
80
80
|
}>, {
|
|
81
|
-
size: string;
|
|
82
81
|
position: string;
|
|
82
|
+
size: string;
|
|
83
83
|
showCancel: boolean;
|
|
84
84
|
showConfirm: boolean;
|
|
85
85
|
cancelText: string;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { CollectionItem } from '../../types/collection-editor';
|
|
2
|
+
interface DisplayField {
|
|
3
|
+
key: string;
|
|
4
|
+
label?: string;
|
|
5
|
+
format?: (value: unknown) => string;
|
|
6
|
+
}
|
|
7
|
+
interface Props {
|
|
8
|
+
items?: CollectionItem[];
|
|
9
|
+
selected?: CollectionItem | null;
|
|
10
|
+
canEdit?: boolean;
|
|
11
|
+
groupBy?: string;
|
|
12
|
+
title?: string;
|
|
13
|
+
emptyMessage?: string;
|
|
14
|
+
primaryField?: string;
|
|
15
|
+
secondaryField?: string;
|
|
16
|
+
displayFields?: DisplayField[];
|
|
17
|
+
}
|
|
18
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
19
|
+
select: (item: CollectionItem) => any;
|
|
20
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
21
|
+
onSelect?: ((item: CollectionItem) => any) | undefined;
|
|
22
|
+
}>, {
|
|
23
|
+
items: CollectionItem[];
|
|
24
|
+
title: string;
|
|
25
|
+
canEdit: boolean;
|
|
26
|
+
emptyMessage: string;
|
|
27
|
+
primaryField: string;
|
|
28
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>, {
|
|
29
|
+
'item-content'?(_: {
|
|
30
|
+
item: CollectionItem;
|
|
31
|
+
}): any;
|
|
32
|
+
'item-secondary'?(_: {
|
|
33
|
+
item: CollectionItem;
|
|
34
|
+
}): any;
|
|
35
|
+
empty?(_: {}): any;
|
|
36
|
+
}>;
|
|
37
|
+
export default _default;
|
|
38
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
39
|
+
new (): {
|
|
40
|
+
$slots: S;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { OrganizationCollectionItem, ListItem } from '../../types/collection-editor';
|
|
2
|
+
interface Props {
|
|
3
|
+
/** Field name for form binding */
|
|
4
|
+
name: string;
|
|
5
|
+
/** Current organizations (v-model) */
|
|
6
|
+
modelValue?: OrganizationCollectionItem[];
|
|
7
|
+
/** Available organization options */
|
|
8
|
+
organizations?: ListItem[];
|
|
9
|
+
/** Available position options */
|
|
10
|
+
positions?: ListItem[];
|
|
11
|
+
/** Display label */
|
|
12
|
+
label?: string;
|
|
13
|
+
}
|
|
14
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
15
|
+
"update:modelValue": (value: OrganizationCollectionItem[]) => any;
|
|
16
|
+
"item-updated": (item: OrganizationCollectionItem) => any;
|
|
17
|
+
"item-deleted": (item: OrganizationCollectionItem) => any;
|
|
18
|
+
"item-added": (item: OrganizationCollectionItem) => any;
|
|
19
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
20
|
+
"onUpdate:modelValue"?: ((value: OrganizationCollectionItem[]) => any) | undefined;
|
|
21
|
+
"onItem-updated"?: ((item: OrganizationCollectionItem) => any) | undefined;
|
|
22
|
+
"onItem-deleted"?: ((item: OrganizationCollectionItem) => any) | undefined;
|
|
23
|
+
"onItem-added"?: ((item: OrganizationCollectionItem) => any) | undefined;
|
|
24
|
+
}>, {
|
|
25
|
+
organizations: ListItem[];
|
|
26
|
+
modelValue: OrganizationCollectionItem[];
|
|
27
|
+
positions: ListItem[];
|
|
28
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
29
|
+
export default _default;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { RelatedNameCollectionItem, ListItem } from '../../types/collection-editor';
|
|
2
|
+
interface Props {
|
|
3
|
+
/** Field name for form binding */
|
|
4
|
+
name: string;
|
|
5
|
+
/** Current related names (v-model) */
|
|
6
|
+
modelValue?: RelatedNameCollectionItem[];
|
|
7
|
+
/** Available relationship label options */
|
|
8
|
+
labels?: ListItem[];
|
|
9
|
+
/** Display label */
|
|
10
|
+
label?: string;
|
|
11
|
+
}
|
|
12
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13
|
+
"update:modelValue": (value: RelatedNameCollectionItem[]) => any;
|
|
14
|
+
"item-updated": (item: RelatedNameCollectionItem) => any;
|
|
15
|
+
"item-deleted": (item: RelatedNameCollectionItem) => any;
|
|
16
|
+
"item-added": (item: RelatedNameCollectionItem) => any;
|
|
17
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
18
|
+
"onUpdate:modelValue"?: ((value: RelatedNameCollectionItem[]) => any) | undefined;
|
|
19
|
+
"onItem-updated"?: ((item: RelatedNameCollectionItem) => any) | undefined;
|
|
20
|
+
"onItem-deleted"?: ((item: RelatedNameCollectionItem) => any) | undefined;
|
|
21
|
+
"onItem-added"?: ((item: RelatedNameCollectionItem) => any) | undefined;
|
|
22
|
+
}>, {
|
|
23
|
+
modelValue: RelatedNameCollectionItem[];
|
|
24
|
+
labels: ListItem[];
|
|
25
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
26
|
+
export default _default;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { SocialLinkCollectionItem, ListItem } from '../../types/collection-editor';
|
|
2
|
+
interface Props {
|
|
3
|
+
/** Field name for form binding */
|
|
4
|
+
name: string;
|
|
5
|
+
/** Current social links (v-model) */
|
|
6
|
+
modelValue?: SocialLinkCollectionItem[];
|
|
7
|
+
/** Available platform options */
|
|
8
|
+
platforms?: ListItem[];
|
|
9
|
+
/** Display label */
|
|
10
|
+
label?: string;
|
|
11
|
+
}
|
|
12
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13
|
+
"update:modelValue": (value: SocialLinkCollectionItem[]) => any;
|
|
14
|
+
"item-updated": (item: SocialLinkCollectionItem) => any;
|
|
15
|
+
"item-deleted": (item: SocialLinkCollectionItem) => any;
|
|
16
|
+
"item-added": (item: SocialLinkCollectionItem) => any;
|
|
17
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
18
|
+
"onUpdate:modelValue"?: ((value: SocialLinkCollectionItem[]) => any) | undefined;
|
|
19
|
+
"onItem-updated"?: ((item: SocialLinkCollectionItem) => any) | undefined;
|
|
20
|
+
"onItem-deleted"?: ((item: SocialLinkCollectionItem) => any) | undefined;
|
|
21
|
+
"onItem-added"?: ((item: SocialLinkCollectionItem) => any) | undefined;
|
|
22
|
+
}>, {
|
|
23
|
+
modelValue: SocialLinkCollectionItem[];
|
|
24
|
+
platforms: ListItem[];
|
|
25
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
26
|
+
export default _default;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { default as CollectionEditor } from './CollectionEditor';
|
|
2
|
+
export { default as CollectionItemList } from './CollectionItemList';
|
|
3
|
+
export { default as OrganizationsEditor } from './OrganizationsEditor';
|
|
4
|
+
export { default as RelatedNamesEditor } from './RelatedNamesEditor';
|
|
5
|
+
export { default as SocialLinksEditor } from './SocialLinksEditor';
|
|
@@ -21,9 +21,9 @@ interface FormFieldWrapperProps {
|
|
|
21
21
|
}
|
|
22
22
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<FormFieldWrapperProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<FormFieldWrapperProps> & Readonly<{}>, {
|
|
23
23
|
label: string;
|
|
24
|
+
tertiaryLabel: string;
|
|
24
25
|
errorMessage: string | null;
|
|
25
26
|
disabled: boolean;
|
|
26
|
-
tertiaryLabel: string;
|
|
27
27
|
successMessage: string;
|
|
28
28
|
isValid: boolean;
|
|
29
29
|
isTouched: boolean;
|
|
@@ -19,6 +19,7 @@ export { default as Table } from './UiTable';
|
|
|
19
19
|
export { default as Transition } from './UiTransition';
|
|
20
20
|
export * from './calendars';
|
|
21
21
|
export * from './charts';
|
|
22
|
+
export * from './collection-editor';
|
|
22
23
|
export * from './empty-state';
|
|
23
24
|
export * from './forms';
|
|
24
25
|
export * from './inputs';
|
|
@@ -27,6 +28,7 @@ export * from './loading';
|
|
|
27
28
|
export * from './maps';
|
|
28
29
|
export * from './modals';
|
|
29
30
|
export * from './notifications';
|
|
31
|
+
export * from './profiles';
|
|
30
32
|
export * from './stepper';
|
|
31
33
|
export * from './tabs';
|
|
32
34
|
export * from './wrappers';
|
|
@@ -30,8 +30,8 @@ declare const _default: import('vue').DefineComponent<Props, {
|
|
|
30
30
|
}>, {
|
|
31
31
|
label: string;
|
|
32
32
|
placeholder: string;
|
|
33
|
-
disabled: boolean;
|
|
34
33
|
tertiaryLabel: string;
|
|
34
|
+
disabled: boolean;
|
|
35
35
|
successMessage: string;
|
|
36
36
|
validateOnMount: boolean;
|
|
37
37
|
showSuggestionCount: boolean;
|
|
@@ -30,11 +30,11 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
30
30
|
"onUpdate:modelValue"?: ((value: SelectItemValue | ComboboxItem | ComboboxItem[]) => any) | undefined;
|
|
31
31
|
"onUpdate:query"?: ((query: string) => any) | undefined;
|
|
32
32
|
}>, {
|
|
33
|
+
itemKey: string;
|
|
34
|
+
itemText: string;
|
|
33
35
|
boxShadow: boolean;
|
|
34
36
|
multiple: boolean;
|
|
35
37
|
showAll: boolean;
|
|
36
|
-
itemKey: string;
|
|
37
|
-
itemText: string;
|
|
38
38
|
loading: boolean;
|
|
39
39
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
40
40
|
export default _default;
|
|
@@ -716,10 +716,11 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
716
716
|
[x: `on${Capitalize<any>}`]: ((...args: any[] | unknown[]) => any) | undefined;
|
|
717
717
|
}>, {
|
|
718
718
|
locale: string;
|
|
719
|
-
dark: boolean;
|
|
720
719
|
label: string;
|
|
721
|
-
placeholder: string;
|
|
722
720
|
rules: AnySchema;
|
|
721
|
+
placeholder: string;
|
|
722
|
+
tertiaryLabel: string;
|
|
723
|
+
dark: boolean;
|
|
723
724
|
inline: boolean;
|
|
724
725
|
value: DatepickerModelValue;
|
|
725
726
|
disabled: boolean;
|
|
@@ -727,7 +728,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
727
728
|
[x: string]: (...args: never) => any;
|
|
728
729
|
}>;
|
|
729
730
|
range: boolean;
|
|
730
|
-
tertiaryLabel: string;
|
|
731
731
|
successMessage: string;
|
|
732
732
|
showErrors: boolean;
|
|
733
733
|
showValidCheck: boolean;
|
|
@@ -738,6 +738,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
738
738
|
markers: DatepickerMarker[];
|
|
739
739
|
cancelText: string;
|
|
740
740
|
highlight: Date[] | DatepickerHighlight | ((date: Date) => boolean);
|
|
741
|
+
monthPicker: boolean;
|
|
741
742
|
is24: boolean;
|
|
742
743
|
enableTimePicker: boolean;
|
|
743
744
|
multiCalendars: number | boolean | {
|
|
@@ -759,7 +760,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
759
760
|
disabledDates: Date[] | ((date: Date) => boolean);
|
|
760
761
|
selectText: string;
|
|
761
762
|
autoPosition: boolean;
|
|
762
|
-
monthPicker: boolean;
|
|
763
763
|
timePicker: boolean;
|
|
764
764
|
textInput: boolean | {
|
|
765
765
|
enterSubmit?: boolean | undefined;
|
|
@@ -933,9 +933,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
933
933
|
} | {
|
|
934
934
|
readonly state?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
935
935
|
readonly locale?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
936
|
-
readonly dark?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
937
936
|
readonly name?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
937
|
+
readonly position?: import('vue').Prop<"center" | "left" | "right" | undefined, "center" | "left" | "right" | undefined> | null | undefined;
|
|
938
938
|
readonly placeholder?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
939
|
+
readonly dark?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
939
940
|
readonly inline?: import('vue').Prop<boolean | {
|
|
940
941
|
input?: boolean | undefined;
|
|
941
942
|
} | undefined, boolean | {
|
|
@@ -944,6 +945,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
944
945
|
readonly disabled?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
945
946
|
readonly calendar?: import('vue').Prop<((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined, ((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined> | null | undefined;
|
|
946
947
|
readonly range?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
948
|
+
readonly uid?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
947
949
|
readonly required?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
948
950
|
readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
|
|
949
951
|
readonly filters?: import('vue').Prop<{
|
|
@@ -964,7 +966,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
964
966
|
} | undefined;
|
|
965
967
|
} | undefined> | null | undefined;
|
|
966
968
|
readonly startTime?: import('vue').Prop<import('@vuepic/vue-datepicker').PartialTimeObj | import('@vuepic/vue-datepicker').PartialTimeObj[] | undefined, import('@vuepic/vue-datepicker').PartialTimeObj | import('@vuepic/vue-datepicker').PartialTimeObj[] | undefined> | null | undefined;
|
|
967
|
-
readonly position?: import('vue').Prop<"center" | "left" | "right" | undefined, "center" | "left" | "right" | undefined> | null | undefined;
|
|
968
969
|
readonly markers?: import('vue').Prop<import('@vuepic/vue-datepicker').DatePickerMarker[] | undefined, import('@vuepic/vue-datepicker').DatePickerMarker[] | undefined> | null | undefined;
|
|
969
970
|
readonly offset?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
970
971
|
readonly cancelText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
@@ -983,7 +984,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
983
984
|
}) => boolean) | Partial<import('@vuepic/vue-datepicker').Highlight> | undefined> | null | undefined;
|
|
984
985
|
readonly vertical?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
985
986
|
readonly autocomplete?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
986
|
-
readonly
|
|
987
|
+
readonly monthPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
987
988
|
readonly is24?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
988
989
|
readonly enableTimePicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
989
990
|
readonly multiCalendars?: import('vue').Prop<import('@vuepic/vue-datepicker').DpOptionEnabled | Partial<{
|
|
@@ -1029,7 +1030,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1029
1030
|
readonly selectText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1030
1031
|
readonly weekNumName?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1031
1032
|
readonly autoPosition?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1032
|
-
readonly monthPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1033
1033
|
readonly timePicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1034
1034
|
readonly textInput?: import('vue').Prop<boolean | {
|
|
1035
1035
|
enterSubmit?: boolean | undefined;
|
|
@@ -1442,9 +1442,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1442
1442
|
} | {
|
|
1443
1443
|
readonly state?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1444
1444
|
readonly locale?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1445
|
-
readonly dark?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1446
1445
|
readonly name?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1446
|
+
readonly position?: import('vue').Prop<"center" | "left" | "right" | undefined, "center" | "left" | "right" | undefined> | null | undefined;
|
|
1447
1447
|
readonly placeholder?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1448
|
+
readonly dark?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1448
1449
|
readonly inline?: import('vue').Prop<boolean | {
|
|
1449
1450
|
input?: boolean | undefined;
|
|
1450
1451
|
} | undefined, boolean | {
|
|
@@ -1453,6 +1454,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1453
1454
|
readonly disabled?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1454
1455
|
readonly calendar?: import('vue').Prop<((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined, ((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined> | null | undefined;
|
|
1455
1456
|
readonly range?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1457
|
+
readonly uid?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1456
1458
|
readonly required?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1457
1459
|
readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
|
|
1458
1460
|
readonly filters?: import('vue').Prop<{
|
|
@@ -1473,7 +1475,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1473
1475
|
} | undefined;
|
|
1474
1476
|
} | undefined> | null | undefined;
|
|
1475
1477
|
readonly startTime?: import('vue').Prop<import('@vuepic/vue-datepicker').PartialTimeObj | import('@vuepic/vue-datepicker').PartialTimeObj[] | undefined, import('@vuepic/vue-datepicker').PartialTimeObj | import('@vuepic/vue-datepicker').PartialTimeObj[] | undefined> | null | undefined;
|
|
1476
|
-
readonly position?: import('vue').Prop<"center" | "left" | "right" | undefined, "center" | "left" | "right" | undefined> | null | undefined;
|
|
1477
1478
|
readonly markers?: import('vue').Prop<import('@vuepic/vue-datepicker').DatePickerMarker[] | undefined, import('@vuepic/vue-datepicker').DatePickerMarker[] | undefined> | null | undefined;
|
|
1478
1479
|
readonly offset?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
1479
1480
|
readonly cancelText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
@@ -1492,7 +1493,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1492
1493
|
}) => boolean) | Partial<import('@vuepic/vue-datepicker').Highlight> | undefined> | null | undefined;
|
|
1493
1494
|
readonly vertical?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1494
1495
|
readonly autocomplete?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1495
|
-
readonly
|
|
1496
|
+
readonly monthPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1496
1497
|
readonly is24?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1497
1498
|
readonly enableTimePicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1498
1499
|
readonly multiCalendars?: import('vue').Prop<import('@vuepic/vue-datepicker').DpOptionEnabled | Partial<{
|
|
@@ -1538,7 +1539,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1538
1539
|
readonly selectText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1539
1540
|
readonly weekNumName?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1540
1541
|
readonly autoPosition?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1541
|
-
readonly monthPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1542
1542
|
readonly timePicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1543
1543
|
readonly textInput?: import('vue').Prop<boolean | {
|
|
1544
1544
|
enterSubmit?: boolean | undefined;
|
|
@@ -32,11 +32,11 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<Pr
|
|
|
32
32
|
"onUpdate:validity"?: ((isValid: boolean) => any) | undefined;
|
|
33
33
|
}>, {
|
|
34
34
|
label: string;
|
|
35
|
-
placeholder: string;
|
|
36
35
|
rules: AnySchema;
|
|
36
|
+
placeholder: string;
|
|
37
|
+
tertiaryLabel: string;
|
|
37
38
|
value: string;
|
|
38
39
|
disabled: boolean;
|
|
39
|
-
tertiaryLabel: string;
|
|
40
40
|
successMessage: string;
|
|
41
41
|
showErrors: boolean;
|
|
42
42
|
showValidCheck: boolean;
|
|
@@ -183,11 +183,11 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
183
183
|
onValidated?: ((value: PhoneValidationResult) => any) | undefined;
|
|
184
184
|
}>, {
|
|
185
185
|
label: string;
|
|
186
|
-
placeholder: string;
|
|
187
186
|
rules: AnySchema;
|
|
187
|
+
placeholder: string;
|
|
188
|
+
tertiaryLabel: string;
|
|
188
189
|
value: string;
|
|
189
190
|
disabled: boolean;
|
|
190
|
-
tertiaryLabel: string;
|
|
191
191
|
successMessage: string;
|
|
192
192
|
showErrors: boolean;
|
|
193
193
|
colorfulValidation: boolean;
|
|
@@ -28,12 +28,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
28
28
|
"onUpdate:value"?: ((value: string) => any) | undefined;
|
|
29
29
|
}>, {
|
|
30
30
|
label: string;
|
|
31
|
-
placeholder: string;
|
|
32
31
|
rules: AnySchema;
|
|
32
|
+
placeholder: string;
|
|
33
|
+
tertiaryLabel: string;
|
|
33
34
|
value: string;
|
|
34
35
|
disabled: boolean;
|
|
35
36
|
minimal: boolean;
|
|
36
|
-
tertiaryLabel: string;
|
|
37
37
|
showErrors: boolean;
|
|
38
38
|
maxHeight: string;
|
|
39
39
|
hint: string;
|
|
@@ -23,11 +23,11 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
23
23
|
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
24
24
|
"onUpdate:modelValue"?: ((value: SelectItemValue | SelectItem | SelectItem[]) => any) | undefined;
|
|
25
25
|
}>, {
|
|
26
|
+
itemKey: string;
|
|
27
|
+
itemText: string;
|
|
26
28
|
boxShadow: boolean;
|
|
27
29
|
multiple: boolean;
|
|
28
30
|
showAll: boolean;
|
|
29
|
-
itemKey: string;
|
|
30
|
-
itemText: string;
|
|
31
31
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
32
32
|
listboxButtonRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
33
33
|
as: {
|
|
@@ -48,7 +48,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
48
48
|
type: PropType<{
|
|
49
49
|
label?: string | undefined;
|
|
50
50
|
placeholder?: string | undefined;
|
|
51
|
-
inputMode?: "numeric" | "none" | "
|
|
51
|
+
inputMode?: "numeric" | "none" | "url" | "text" | "email" | "tel" | "search" | "decimal" | undefined;
|
|
52
52
|
maxLength?: number | undefined;
|
|
53
53
|
}>;
|
|
54
54
|
default: () => {};
|
|
@@ -138,7 +138,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
138
138
|
type: PropType<{
|
|
139
139
|
label?: string | undefined;
|
|
140
140
|
placeholder?: string | undefined;
|
|
141
|
-
inputMode?: "numeric" | "none" | "
|
|
141
|
+
inputMode?: "numeric" | "none" | "url" | "text" | "email" | "tel" | "search" | "decimal" | undefined;
|
|
142
142
|
maxLength?: number | undefined;
|
|
143
143
|
}>;
|
|
144
144
|
default: () => {};
|
|
@@ -191,12 +191,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
191
191
|
"onUpdate:validity"?: ((isValid: boolean) => any) | undefined;
|
|
192
192
|
}>, {
|
|
193
193
|
label: string;
|
|
194
|
+
tertiaryLabel: string;
|
|
194
195
|
labelIconLeft: Component;
|
|
195
196
|
hasError: boolean;
|
|
196
197
|
text: {
|
|
197
198
|
label?: string | undefined;
|
|
198
199
|
placeholder?: string | undefined;
|
|
199
|
-
inputMode?: "numeric" | "none" | "
|
|
200
|
+
inputMode?: "numeric" | "none" | "url" | "text" | "email" | "tel" | "search" | "decimal" | undefined;
|
|
200
201
|
maxLength?: number | undefined;
|
|
201
202
|
};
|
|
202
203
|
select: {
|
|
@@ -206,7 +207,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
206
207
|
};
|
|
207
208
|
value: CompositePropValue;
|
|
208
209
|
disabled: boolean;
|
|
209
|
-
tertiaryLabel: string;
|
|
210
210
|
showErrors: boolean;
|
|
211
211
|
showValidCheck: boolean;
|
|
212
212
|
colorfulValidation: boolean;
|
|
@@ -164,6 +164,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
164
164
|
"onUpdate:query"?: ((...args: any[]) => any) | undefined;
|
|
165
165
|
"onInvalid-tag"?: ((...args: any[]) => any) | undefined;
|
|
166
166
|
}>, {
|
|
167
|
+
itemKey: string;
|
|
168
|
+
itemText: string;
|
|
167
169
|
placeholder: string;
|
|
168
170
|
errorMessage: string;
|
|
169
171
|
inline: boolean;
|
|
@@ -171,8 +173,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
171
173
|
disabled: boolean;
|
|
172
174
|
optional: boolean;
|
|
173
175
|
pattern: RegExp;
|
|
174
|
-
itemKey: string;
|
|
175
|
-
itemText: string;
|
|
176
176
|
itemSubtext: string;
|
|
177
177
|
showSubext: boolean;
|
|
178
178
|
tagDisplayKey: string;
|
|
@@ -16,11 +16,12 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<Te
|
|
|
16
16
|
"onUpdate:validity"?: ((isValid: boolean) => any) | undefined;
|
|
17
17
|
}>, {
|
|
18
18
|
label: string;
|
|
19
|
-
|
|
19
|
+
type: string;
|
|
20
20
|
rules: any;
|
|
21
|
+
placeholder: string;
|
|
22
|
+
tertiaryLabel: string;
|
|
21
23
|
value: string;
|
|
22
24
|
disabled: boolean;
|
|
23
|
-
tertiaryLabel: string;
|
|
24
25
|
successMessage: string;
|
|
25
26
|
showErrors: boolean;
|
|
26
27
|
showValidCheck: boolean;
|
|
@@ -28,7 +29,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<Te
|
|
|
28
29
|
disabledMessage: string;
|
|
29
30
|
boxShadow: boolean;
|
|
30
31
|
lazy: boolean;
|
|
31
|
-
type: string;
|
|
32
32
|
validateOnMount: boolean;
|
|
33
33
|
inputClass: string | string[];
|
|
34
34
|
inputStyle: string;
|
|
@@ -59,8 +59,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<Pr
|
|
|
59
59
|
loading: boolean;
|
|
60
60
|
shadow: Shadow;
|
|
61
61
|
variant: Variant;
|
|
62
|
-
showHeader: boolean;
|
|
63
62
|
showFooter: boolean;
|
|
63
|
+
showHeader: boolean;
|
|
64
64
|
divided: boolean;
|
|
65
65
|
collapsible: boolean;
|
|
66
66
|
collapsed: boolean;
|
|
@@ -329,6 +329,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
329
329
|
"onUpdate:visible"?: ((value: boolean) => any) | undefined;
|
|
330
330
|
}>, {
|
|
331
331
|
error: string | null;
|
|
332
|
+
title: string;
|
|
332
333
|
data: Record<string, any>;
|
|
333
334
|
details: {
|
|
334
335
|
/**
|
|
@@ -371,7 +372,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
371
372
|
*/
|
|
372
373
|
type?: "link" | "text" | "email" | "phone" | "address" | undefined;
|
|
373
374
|
}[] | undefined;
|
|
374
|
-
title: string;
|
|
375
375
|
loading: boolean;
|
|
376
376
|
visible: boolean;
|
|
377
377
|
closeOnEscape: boolean;
|
|
@@ -419,10 +419,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
419
419
|
imageUrl: string;
|
|
420
420
|
content: string;
|
|
421
421
|
subtitle: string;
|
|
422
|
+
closeOnBackdrop: boolean;
|
|
422
423
|
loadingText: string;
|
|
423
424
|
showRetry: boolean;
|
|
424
425
|
showAvatar: boolean;
|
|
425
|
-
closeOnBackdrop: boolean;
|
|
426
426
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
|
|
427
427
|
title?(_: {}): any;
|
|
428
428
|
subtitle?(_: {}): any;
|
|
@@ -658,8 +658,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
658
658
|
}>> & Readonly<{
|
|
659
659
|
[x: `on${Capitalize<any>}`]: ((...args: any[] | unknown[]) => any) | undefined;
|
|
660
660
|
}>, {
|
|
661
|
-
center: LatLngLiteral;
|
|
662
661
|
id: string;
|
|
662
|
+
center: LatLngLiteral;
|
|
663
663
|
width: string;
|
|
664
664
|
theme: MapTheme;
|
|
665
665
|
heading: number;
|
|
@@ -529,9 +529,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
529
529
|
}) => any) | undefined;
|
|
530
530
|
"onUpdate:visible-markers"?: ((markers: MapMarker<unknown>[]) => any) | undefined;
|
|
531
531
|
}>, {
|
|
532
|
+
items: MapMarker<unknown>[] | Record<string, unknown>[];
|
|
532
533
|
center: LatLngLiteral;
|
|
533
534
|
width: string;
|
|
534
|
-
items: MapMarker<unknown>[] | Record<string, unknown>[];
|
|
535
535
|
theme: MapTheme;
|
|
536
536
|
height: string;
|
|
537
537
|
zoom: number;
|
|
@@ -573,8 +573,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
573
573
|
$: import('vue').ComponentInternalInstance;
|
|
574
574
|
$data: {};
|
|
575
575
|
$props: Partial<{
|
|
576
|
-
center: LatLngLiteral;
|
|
577
576
|
id: string;
|
|
577
|
+
center: LatLngLiteral;
|
|
578
578
|
width: string;
|
|
579
579
|
theme: MapTheme;
|
|
580
580
|
heading: number;
|
|
@@ -665,7 +665,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
665
665
|
strictBounds?: boolean | undefined;
|
|
666
666
|
} | undefined;
|
|
667
667
|
readonly mapStyle?: Record<string, any> | undefined;
|
|
668
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "
|
|
668
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "id" | "center" | "width" | "theme" | "heading" | "maxZoom" | "draggable" | "height" | "styles" | "containerClass" | "zoom" | "apiKey" | "loadingText" | "clickableIcons" | "disableDefaultUi" | "disableDoubleClickZoom" | "fullscreenControl" | "gestureHandling" | "keyboardShortcuts" | "mapTypeControl" | "mapTypeId" | "minZoom" | "restriction" | "rotateControl" | "scaleControl" | "scrollwheel" | "streetViewControl" | "tilt" | "zoomControl" | "showRetry" | "autoTheme" | "lightTheme" | "darkTheme" | "mapClass" | "mapStyle" | "hideLoadingState" | "hideErrorState" | "showAddressUnavailable" | "addressUnavailableMessage" | "showCustomControls" | "showDefaultZoomControls" | "controlsPosition">;
|
|
669
669
|
$attrs: {
|
|
670
670
|
[x: string]: unknown;
|
|
671
671
|
};
|
|
@@ -1360,8 +1360,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1360
1360
|
} & {
|
|
1361
1361
|
[x: string]: any;
|
|
1362
1362
|
}, string, {
|
|
1363
|
-
center: LatLngLiteral;
|
|
1364
1363
|
id: string;
|
|
1364
|
+
center: LatLngLiteral;
|
|
1365
1365
|
width: string;
|
|
1366
1366
|
theme: MapTheme;
|
|
1367
1367
|
heading: number;
|
|
@@ -1426,8 +1426,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1426
1426
|
$nextTick: typeof import('vue').nextTick;
|
|
1427
1427
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
|
|
1428
1428
|
} & Readonly<{
|
|
1429
|
-
center: LatLngLiteral;
|
|
1430
1429
|
id: string;
|
|
1430
|
+
center: LatLngLiteral;
|
|
1431
1431
|
width: string;
|
|
1432
1432
|
theme: MapTheme;
|
|
1433
1433
|
heading: number;
|
|
@@ -1645,7 +1645,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1645
1645
|
};
|
|
1646
1646
|
}>> & Readonly<{
|
|
1647
1647
|
[x: `on${Capitalize<any>}`]: ((...args: any[] | unknown[]) => any) | undefined;
|
|
1648
|
-
}>, "reset" | "fitBounds" | "getBounds" | "getCenter" | "getZoom" | "panBy" | "panTo" | "setCenter" | "setZoom" | "getMap" | "fitToMarkers" | "addMarker" | "removeMarker" | "updateMarker" | "clearMarkers" | "getMarkers" | "getVisibleMarkers" | ("
|
|
1648
|
+
}>, "reset" | "fitBounds" | "getBounds" | "getCenter" | "getZoom" | "panBy" | "panTo" | "setCenter" | "setZoom" | "getMap" | "fitToMarkers" | "addMarker" | "removeMarker" | "updateMarker" | "clearMarkers" | "getMarkers" | "getVisibleMarkers" | ("id" | "center" | "width" | "theme" | "heading" | "maxZoom" | "draggable" | "height" | "styles" | "containerClass" | "zoom" | "apiKey" | "loadingText" | "clickableIcons" | "disableDefaultUi" | "disableDoubleClickZoom" | "fullscreenControl" | "gestureHandling" | "keyboardShortcuts" | "mapTypeControl" | "mapTypeId" | "minZoom" | "restriction" | "rotateControl" | "scaleControl" | "scrollwheel" | "streetViewControl" | "tilt" | "zoomControl" | "showRetry" | "autoTheme" | "lightTheme" | "darkTheme" | "mapClass" | "mapStyle" | "hideLoadingState" | "hideErrorState" | "showAddressUnavailable" | "addressUnavailableMessage" | "showCustomControls" | "showDefaultZoomControls" | "controlsPosition")> & import('vue').ShallowUnwrapRef<{
|
|
1649
1649
|
getMap(): google.maps.Map | null;
|
|
1650
1650
|
panTo(position: LatLngLiteral): void;
|
|
1651
1651
|
panBy(x: number, y: number): void; /** Data loading state */
|