@nexxtmove/ui 1.1.0 → 1.1.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/components/AnimatedNumber/AnimatedNumber.vue.d.ts +2 -1
- package/dist/components/Announcement/Announcement.vue.d.ts +5 -4
- package/dist/components/Avatar/Avatar.vue.d.ts +2 -1
- package/dist/components/Button/Button.vue.d.ts +5 -4
- package/dist/components/Calendar/Calendar.vue.d.ts +4 -2
- package/dist/components/Calendar/_CalendarDayView.vue.d.ts +2 -1
- package/dist/components/Calendar/_CalendarHeader.vue.d.ts +2 -1
- package/dist/components/Calendar/_CalendarMonthView.vue.d.ts +2 -1
- package/dist/components/Calendar/_CalendarTimePicker.vue.d.ts +2 -1
- package/dist/components/Calendar/_CalendarYearView.vue.d.ts +2 -1
- package/dist/components/Card/Card.vue.d.ts +3 -2
- package/dist/components/Checkbox/Checkbox.vue.d.ts +4 -2
- package/dist/components/Chip/Chip.vue.d.ts +4 -3
- package/dist/components/ColorPicker/ColorPicker.vue.d.ts +5 -3
- package/dist/components/Combobox/Combobox.vue.d.ts +5 -4
- package/dist/components/ComboboxPanel/ComboboxPanel.vue.d.ts +2 -1
- package/dist/components/ContactInfoCard/ContactInfoCard.vue.d.ts +3 -2
- package/dist/components/CountrySelect/CountrySelect.vue.d.ts +3 -2
- package/dist/components/CustomerJourneyTile/CustomerJourneyTile.vue.d.ts +2 -1
- package/dist/components/DatePicker/DatePicker.vue.d.ts +8 -6
- package/dist/components/DoughnutChart/DoughnutChart.vue.d.ts +3 -2
- package/dist/components/DropdownButton/DropdownButton.vue.d.ts +5 -4
- package/dist/components/FloatingPanel/FloatingPanel.vue.d.ts +5 -4
- package/dist/components/Header/Header.vue.d.ts +6 -5
- package/dist/components/Icon/Icon.vue.d.ts +2 -1
- package/dist/components/InfoBlock/InfoBlock.vue.d.ts +5 -4
- package/dist/components/InputField/InputField.vue.d.ts +7 -5
- package/dist/components/InputSelect/InputSelect.vue.d.ts +4 -2
- package/dist/components/Modal/Modal.vue.d.ts +9 -7
- package/dist/components/Pagination/Pagination.vue.d.ts +4 -2
- package/dist/components/PresenceIndicator/PresenceIndicator.vue.d.ts +2 -1
- package/dist/components/ProgressBar/ProgressBar.vue.d.ts +2 -1
- package/dist/components/PropertyCard/PropertyCard.vue.d.ts +2 -1
- package/dist/components/PropertyListing/PropertyListing.vue.d.ts +2 -1
- package/dist/components/Select/Select.vue.d.ts +4 -2
- package/dist/components/SidebarMenuItem/SidebarMenuItem.vue.d.ts +5 -4
- package/dist/components/Skeleton/Skeleton.vue.d.ts +2 -1
- package/dist/components/SkeletonPropertyCard/SkeletonPropertyCard.vue.d.ts +2 -1
- package/dist/components/SocialIcons/SocialIcons.vue.d.ts +2 -1
- package/dist/components/SocialMediaCustomTemplate/SocialMediaCustomTemplate.vue.d.ts +2 -1
- package/dist/components/SocialMediaTemplate/SocialMediaTemplate.vue.d.ts +2 -1
- package/dist/components/SocialMediaType/SocialMediaType.vue.d.ts +2 -1
- package/dist/components/Source/Source.vue.d.ts +2 -1
- package/dist/components/Squircle/Squircle.vue.d.ts +3 -2
- package/dist/components/StepperHeader/StepperHeader.vue.d.ts +5 -4
- package/dist/components/Switch/Switch.vue.d.ts +7 -5
- package/dist/components/TabbedContent/TabbedContent.vue.d.ts +7 -5
- package/dist/components/Table/Table.vue.d.ts +18 -13
- package/dist/components/Tabs/Tabs.vue.d.ts +4 -2
- package/dist/components/TimelineEvent/TimelineEvent.vue.d.ts +2 -1
- package/dist/components/TimelinePhaseblock/TimelinePhaseblock.vue.d.ts +2 -1
- package/dist/components/Toast/Toast.vue.d.ts +5 -4
- package/dist/components/Toaster/Toaster.vue.d.ts +2 -1
- package/dist/components/ToggleGroup/ToggleGroup.vue.d.ts +4 -2
- package/dist/components/Tooltip/Tooltip.vue.d.ts +6 -5
- package/dist/components/VideoPlayer/VideoPlayer.vue.d.ts +2 -1
- package/dist/index.js +236 -226
- package/package.json +9 -9
- package/src/components/Chip/Chip.vue +5 -1
- package/src/components/DropdownButton/DropdownButton.vue +2 -2
- package/src/index.ts +2 -0
|
@@ -3,5 +3,6 @@ type __VLS_Props = {
|
|
|
3
3
|
duration?: number;
|
|
4
4
|
delay?: number;
|
|
5
5
|
};
|
|
6
|
-
declare const
|
|
6
|
+
declare const __VLS_export: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
declare const _default: typeof __VLS_export;
|
|
7
8
|
export default _default;
|
|
@@ -5,16 +5,17 @@ interface NexxtAnnouncementProps {
|
|
|
5
5
|
icon?: InstanceType<typeof NexxtIcon>['name'];
|
|
6
6
|
showHideButton?: boolean;
|
|
7
7
|
}
|
|
8
|
-
declare var
|
|
8
|
+
declare var __VLS_6: {};
|
|
9
9
|
type __VLS_Slots = {} & {
|
|
10
|
-
default?: (props: typeof
|
|
10
|
+
default?: (props: typeof __VLS_6) => any;
|
|
11
11
|
};
|
|
12
|
-
declare const
|
|
12
|
+
declare const __VLS_base: import('vue').DefineComponent<NexxtAnnouncementProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13
13
|
hide: () => any;
|
|
14
14
|
}, string, import('vue').PublicProps, Readonly<NexxtAnnouncementProps> & Readonly<{
|
|
15
15
|
onHide?: (() => any) | undefined;
|
|
16
16
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
17
|
-
declare const
|
|
17
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
18
|
+
declare const _default: typeof __VLS_export;
|
|
18
19
|
export default _default;
|
|
19
20
|
type __VLS_WithSlots<T, S> = T & {
|
|
20
21
|
new (): {
|
|
@@ -3,8 +3,9 @@ interface NexxtAvatarProps {
|
|
|
3
3
|
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
4
4
|
squircle?: boolean;
|
|
5
5
|
}
|
|
6
|
-
declare const
|
|
6
|
+
declare const __VLS_export: import('vue').DefineComponent<NexxtAvatarProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NexxtAvatarProps> & Readonly<{}>, {
|
|
7
7
|
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
8
8
|
squircle: boolean;
|
|
9
9
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
declare const _default: typeof __VLS_export;
|
|
10
11
|
export default _default;
|
|
@@ -9,12 +9,13 @@ interface NexxtButtonProps {
|
|
|
9
9
|
rounded?: boolean;
|
|
10
10
|
fullWidth?: boolean;
|
|
11
11
|
}
|
|
12
|
-
declare var
|
|
12
|
+
declare var __VLS_6: {};
|
|
13
13
|
type __VLS_Slots = {} & {
|
|
14
|
-
default?: (props: typeof
|
|
14
|
+
default?: (props: typeof __VLS_6) => any;
|
|
15
15
|
};
|
|
16
|
-
declare const
|
|
17
|
-
declare const
|
|
16
|
+
declare const __VLS_base: import('vue').DefineComponent<NexxtButtonProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NexxtButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
17
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
18
|
+
declare const _default: typeof __VLS_export;
|
|
18
19
|
export default _default;
|
|
19
20
|
type __VLS_WithSlots<T, S> = T & {
|
|
20
21
|
new (): {
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { NexxtCalendarProps } from './calendar.types';
|
|
2
2
|
export type { NexxtCalendarProps };
|
|
3
3
|
type __VLS_Props = NexxtCalendarProps;
|
|
4
|
-
type
|
|
4
|
+
type __VLS_ModelProps = {
|
|
5
5
|
modelValue?: Date | null;
|
|
6
6
|
};
|
|
7
|
-
|
|
7
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
8
|
+
declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
8
9
|
"update:modelValue": (value: Date | null) => any;
|
|
9
10
|
} & {
|
|
10
11
|
select: (day: Date) => any;
|
|
@@ -12,4 +13,5 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
12
13
|
onSelect?: ((day: Date) => any) | undefined;
|
|
13
14
|
"onUpdate:modelValue"?: ((value: Date | null) => any) | undefined;
|
|
14
15
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
declare const _default: typeof __VLS_export;
|
|
15
17
|
export default _default;
|
|
@@ -8,11 +8,12 @@ export interface CalendarDayViewProps {
|
|
|
8
8
|
isDisabled: (day: Date) => boolean;
|
|
9
9
|
timezone: string;
|
|
10
10
|
}
|
|
11
|
-
declare const
|
|
11
|
+
declare const __VLS_export: import('vue').DefineComponent<CalendarDayViewProps, {
|
|
12
12
|
focus: (date: Date) => void;
|
|
13
13
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
14
14
|
select: (day: Date) => any;
|
|
15
15
|
}, string, import('vue').PublicProps, Readonly<CalendarDayViewProps> & Readonly<{
|
|
16
16
|
onSelect?: ((day: Date) => any) | undefined;
|
|
17
17
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
18
|
+
declare const _default: typeof __VLS_export;
|
|
18
19
|
export default _default;
|
|
@@ -7,7 +7,7 @@ interface CalendarHeaderProps {
|
|
|
7
7
|
canGoPrev: boolean;
|
|
8
8
|
canGoNext: boolean;
|
|
9
9
|
}
|
|
10
|
-
declare const
|
|
10
|
+
declare const __VLS_export: import('vue').DefineComponent<CalendarHeaderProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
11
11
|
prev: () => any;
|
|
12
12
|
next: () => any;
|
|
13
13
|
openMonthPicker: () => any;
|
|
@@ -20,4 +20,5 @@ declare const _default: import('vue').DefineComponent<CalendarHeaderProps, {}, {
|
|
|
20
20
|
onOpenYearPicker?: (() => any) | undefined;
|
|
21
21
|
onClosePicker?: (() => any) | undefined;
|
|
22
22
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
23
|
+
declare const _default: typeof __VLS_export;
|
|
23
24
|
export default _default;
|
|
@@ -8,9 +8,10 @@ interface CalendarMonthViewProps {
|
|
|
8
8
|
locale: Locale;
|
|
9
9
|
timezone: string;
|
|
10
10
|
}
|
|
11
|
-
declare const
|
|
11
|
+
declare const __VLS_export: import('vue').DefineComponent<CalendarMonthViewProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
12
12
|
select: (month: number) => any;
|
|
13
13
|
}, string, import('vue').PublicProps, Readonly<CalendarMonthViewProps> & Readonly<{
|
|
14
14
|
onSelect?: ((month: number) => any) | undefined;
|
|
15
15
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
declare const _default: typeof __VLS_export;
|
|
16
17
|
export default _default;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
type __VLS_Props = {
|
|
2
2
|
modelValue: Date | null;
|
|
3
3
|
};
|
|
4
|
-
declare const
|
|
4
|
+
declare const __VLS_export: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
5
5
|
"update:modelValue": (value: Date | null) => any;
|
|
6
6
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
7
7
|
"onUpdate:modelValue"?: ((value: Date | null) => any) | undefined;
|
|
8
8
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
9
|
+
declare const _default: typeof __VLS_export;
|
|
9
10
|
export default _default;
|
|
@@ -4,9 +4,10 @@ interface CalendarYearViewProps {
|
|
|
4
4
|
maxDate?: Date;
|
|
5
5
|
timezone: string;
|
|
6
6
|
}
|
|
7
|
-
declare const
|
|
7
|
+
declare const __VLS_export: import('vue').DefineComponent<CalendarYearViewProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
8
8
|
select: (year: number) => any;
|
|
9
9
|
}, string, import('vue').PublicProps, Readonly<CalendarYearViewProps> & Readonly<{
|
|
10
10
|
onSelect?: ((year: number) => any) | undefined;
|
|
11
11
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
12
|
+
declare const _default: typeof __VLS_export;
|
|
12
13
|
export default _default;
|
|
@@ -8,8 +8,9 @@ type __VLS_Slots = {} & {
|
|
|
8
8
|
} & {
|
|
9
9
|
default?: (props: typeof __VLS_3) => any;
|
|
10
10
|
};
|
|
11
|
-
declare const
|
|
12
|
-
declare const
|
|
11
|
+
declare const __VLS_base: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
12
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
13
|
+
declare const _default: typeof __VLS_export;
|
|
13
14
|
export default _default;
|
|
14
15
|
type __VLS_WithSlots<T, S> = T & {
|
|
15
16
|
new (): {
|
|
@@ -3,12 +3,14 @@ interface NexxtCheckboxProps {
|
|
|
3
3
|
indeterminate?: boolean;
|
|
4
4
|
}
|
|
5
5
|
type __VLS_Props = NexxtCheckboxProps;
|
|
6
|
-
type
|
|
6
|
+
type __VLS_ModelProps = {
|
|
7
7
|
modelValue?: boolean;
|
|
8
8
|
};
|
|
9
|
-
|
|
9
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
10
|
+
declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
10
11
|
"update:modelValue": (value: boolean | undefined) => any;
|
|
11
12
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
12
13
|
"onUpdate:modelValue"?: ((value: boolean | undefined) => any) | undefined;
|
|
13
14
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
declare const _default: typeof __VLS_export;
|
|
14
16
|
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
interface NexxtChipProps {
|
|
2
|
-
variant?: 'default' | 'warning' | 'success' | 'danger';
|
|
2
|
+
variant?: 'default' | 'warning' | 'success' | 'danger' | 'neutral';
|
|
3
3
|
ghost?: boolean;
|
|
4
4
|
}
|
|
5
5
|
declare var __VLS_1: {}, __VLS_3: {};
|
|
@@ -8,8 +8,9 @@ type __VLS_Slots = {} & {
|
|
|
8
8
|
} & {
|
|
9
9
|
close?: (props: typeof __VLS_3) => any;
|
|
10
10
|
};
|
|
11
|
-
declare const
|
|
12
|
-
declare const
|
|
11
|
+
declare const __VLS_base: import('vue').DefineComponent<NexxtChipProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NexxtChipProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
12
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
13
|
+
declare const _default: typeof __VLS_export;
|
|
13
14
|
export default _default;
|
|
14
15
|
type __VLS_WithSlots<T, S> = T & {
|
|
15
16
|
new (): {
|
|
@@ -11,18 +11,20 @@ export interface NexxtColorPickerProps {
|
|
|
11
11
|
matchWidth?: boolean;
|
|
12
12
|
}
|
|
13
13
|
type __VLS_Props = NexxtColorPickerProps;
|
|
14
|
-
type
|
|
14
|
+
type __VLS_ModelProps = {
|
|
15
15
|
modelValue?: string;
|
|
16
16
|
};
|
|
17
|
-
|
|
17
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
18
|
+
declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
18
19
|
"update:modelValue": (value: string) => any;
|
|
19
20
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
20
21
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
21
22
|
}>, {
|
|
22
|
-
placeholder: string;
|
|
23
23
|
fullWidth: boolean;
|
|
24
24
|
matchWidth: boolean;
|
|
25
|
+
placeholder: string;
|
|
25
26
|
showAlpha: boolean;
|
|
26
27
|
formats: ColorFormat[];
|
|
27
28
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
29
|
+
declare const _default: typeof __VLS_export;
|
|
28
30
|
export default _default;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
declare var
|
|
1
|
+
declare var __VLS_19: {};
|
|
2
2
|
type __VLS_Slots = {} & {
|
|
3
|
-
default?: (props: typeof
|
|
3
|
+
default?: (props: typeof __VLS_19) => any;
|
|
4
4
|
};
|
|
5
|
-
declare const
|
|
6
|
-
declare const
|
|
5
|
+
declare const __VLS_base: import('vue').DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, import('vue').PublicProps>;
|
|
6
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
7
|
+
declare const _default: typeof __VLS_export;
|
|
7
8
|
export default _default;
|
|
8
9
|
type __VLS_WithSlots<T, S> = T & {
|
|
9
10
|
new (): {
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const __VLS_export: import('vue').DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, import('vue').PublicProps>;
|
|
2
|
+
declare const _default: typeof __VLS_export;
|
|
2
3
|
export default _default;
|
|
@@ -4,8 +4,9 @@ type __VLS_Slots = {} & {
|
|
|
4
4
|
} & {
|
|
5
5
|
content?: (props: typeof __VLS_3) => any;
|
|
6
6
|
};
|
|
7
|
-
declare const
|
|
8
|
-
declare const
|
|
7
|
+
declare const __VLS_base: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
8
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
9
|
+
declare const _default: typeof __VLS_export;
|
|
9
10
|
export default _default;
|
|
10
11
|
type __VLS_WithSlots<T, S> = T & {
|
|
11
12
|
new (): {
|
|
@@ -6,7 +6,9 @@ export interface NexxtCountrySelectProps {
|
|
|
6
6
|
required?: boolean;
|
|
7
7
|
pinnedCountries?: string[];
|
|
8
8
|
}
|
|
9
|
-
declare const _default:
|
|
9
|
+
declare const _default: typeof __VLS_export;
|
|
10
|
+
export default _default;
|
|
11
|
+
declare const __VLS_export: import('vue').DefineComponent<NexxtCountrySelectProps & {
|
|
10
12
|
modelValue?: string | null;
|
|
11
13
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
12
14
|
"update:modelValue": (value: string | null) => any;
|
|
@@ -18,4 +20,3 @@ declare const _default: import('vue').DefineComponent<NexxtCountrySelectProps &
|
|
|
18
20
|
placeholder: string;
|
|
19
21
|
pinnedCountries: string[];
|
|
20
22
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
21
|
-
export default _default;
|
|
@@ -10,5 +10,6 @@ interface NexxtCustomerJourneyTileProps {
|
|
|
10
10
|
variant?: 'information' | 'display';
|
|
11
11
|
selected?: boolean;
|
|
12
12
|
}
|
|
13
|
-
declare const
|
|
13
|
+
declare const __VLS_export: import('vue').DefineComponent<NexxtCustomerJourneyTileProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NexxtCustomerJourneyTileProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
declare const _default: typeof __VLS_export;
|
|
14
15
|
export default _default;
|
|
@@ -6,26 +6,28 @@ interface NexxtDatePickerProps extends NexxtCalendarProps {
|
|
|
6
6
|
autoClose?: boolean;
|
|
7
7
|
}
|
|
8
8
|
type __VLS_Props = NexxtDatePickerProps;
|
|
9
|
-
type
|
|
9
|
+
type __VLS_ModelProps = {
|
|
10
10
|
modelValue?: Date | null;
|
|
11
11
|
};
|
|
12
|
-
|
|
12
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
13
|
+
declare var __VLS_13: {
|
|
13
14
|
isOpen: boolean;
|
|
14
15
|
toggle: () => void | Promise<void>;
|
|
15
16
|
};
|
|
16
17
|
type __VLS_Slots = {} & {
|
|
17
|
-
trigger?: (props: typeof
|
|
18
|
+
trigger?: (props: typeof __VLS_13) => any;
|
|
18
19
|
};
|
|
19
|
-
declare const
|
|
20
|
+
declare const __VLS_base: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
20
21
|
"update:modelValue": (value: Date | null) => any;
|
|
21
22
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
22
23
|
"onUpdate:modelValue"?: ((value: Date | null) => any) | undefined;
|
|
23
24
|
}>, {
|
|
24
|
-
placeholder: string;
|
|
25
25
|
anchor: CalendarAnchor;
|
|
26
|
+
placeholder: string;
|
|
26
27
|
autoClose: boolean;
|
|
27
28
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
28
|
-
declare const
|
|
29
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
30
|
+
declare const _default: typeof __VLS_export;
|
|
29
31
|
export default _default;
|
|
30
32
|
type __VLS_WithSlots<T, S> = T & {
|
|
31
33
|
new (): {
|
|
@@ -18,8 +18,9 @@ declare var __VLS_1: {};
|
|
|
18
18
|
type __VLS_Slots = {} & {
|
|
19
19
|
default?: (props: typeof __VLS_1) => any;
|
|
20
20
|
};
|
|
21
|
-
declare const
|
|
22
|
-
declare const
|
|
21
|
+
declare const __VLS_base: import('vue').DefineComponent<NexxtDoughnutChartProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NexxtDoughnutChartProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
22
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
23
|
+
declare const _default: typeof __VLS_export;
|
|
23
24
|
export default _default;
|
|
24
25
|
type __VLS_WithSlots<T, S> = T & {
|
|
25
26
|
new (): {
|
|
@@ -20,16 +20,16 @@ type NexxtDropdownButtonBase = {
|
|
|
20
20
|
export type NexxtDropdownButtonProps = (NexxtDropdownButtonBase & {
|
|
21
21
|
iconOnly?: false;
|
|
22
22
|
label: string;
|
|
23
|
-
action
|
|
23
|
+
action?: string | (() => void);
|
|
24
24
|
}) | (NexxtDropdownButtonBase & {
|
|
25
25
|
iconOnly: true;
|
|
26
26
|
label?: string;
|
|
27
27
|
action?: string | (() => void);
|
|
28
28
|
});
|
|
29
|
-
declare const
|
|
29
|
+
declare const __VLS_export: import('vue').DefineComponent<(NexxtDropdownButtonBase & {
|
|
30
30
|
iconOnly?: false;
|
|
31
31
|
label: string;
|
|
32
|
-
action
|
|
32
|
+
action?: string | (() => void);
|
|
33
33
|
}) | (NexxtDropdownButtonBase & {
|
|
34
34
|
iconOnly: true;
|
|
35
35
|
label?: string;
|
|
@@ -40,7 +40,7 @@ declare const _default: import('vue').DefineComponent<(NexxtDropdownButtonBase &
|
|
|
40
40
|
}, string, import('vue').PublicProps, Readonly<(NexxtDropdownButtonBase & {
|
|
41
41
|
iconOnly?: false;
|
|
42
42
|
label: string;
|
|
43
|
-
action
|
|
43
|
+
action?: string | (() => void);
|
|
44
44
|
}) | (NexxtDropdownButtonBase & {
|
|
45
45
|
iconOnly: true;
|
|
46
46
|
label?: string;
|
|
@@ -49,4 +49,5 @@ declare const _default: import('vue').DefineComponent<(NexxtDropdownButtonBase &
|
|
|
49
49
|
onNavigate?: ((url: string) => any) | undefined;
|
|
50
50
|
onCheckboxChange?: ((label: string, checked: boolean) => any) | undefined;
|
|
51
51
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
52
|
+
declare const _default: typeof __VLS_export;
|
|
52
53
|
export default _default;
|
|
@@ -19,13 +19,13 @@ type __VLS_Slots = {} & {
|
|
|
19
19
|
} & {
|
|
20
20
|
content?: (props: typeof __VLS_11) => any;
|
|
21
21
|
};
|
|
22
|
-
declare const
|
|
22
|
+
declare const __VLS_base: import('vue').DefineComponent<NexxtFloatingPanelProps, {
|
|
23
23
|
isOpen: import('vue').Ref<boolean, boolean>;
|
|
24
24
|
open: () => Promise<void>;
|
|
25
25
|
close: () => void;
|
|
26
26
|
toggle: () => void | Promise<void>;
|
|
27
|
-
triggerRef: Readonly<import('vue').ShallowRef<HTMLSpanElement | null>>;
|
|
28
|
-
floatingRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
|
|
27
|
+
triggerRef: Readonly<import('vue').ShallowRef<HTMLSpanElement | null, HTMLSpanElement | null>>;
|
|
28
|
+
floatingRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null, HTMLDivElement | null>>;
|
|
29
29
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
30
30
|
close: () => any;
|
|
31
31
|
open: () => any;
|
|
@@ -37,7 +37,8 @@ declare const __VLS_component: import('vue').DefineComponent<NexxtFloatingPanelP
|
|
|
37
37
|
offsetDistance: number;
|
|
38
38
|
matchWidth: boolean;
|
|
39
39
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
40
|
-
declare const
|
|
40
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
41
|
+
declare const _default: typeof __VLS_export;
|
|
41
42
|
export default _default;
|
|
42
43
|
type __VLS_WithSlots<T, S> = T & {
|
|
43
44
|
new (): {
|
|
@@ -4,16 +4,17 @@ interface NexxtHeaderProps {
|
|
|
4
4
|
backButtonText?: string;
|
|
5
5
|
backButtonAction?: () => void;
|
|
6
6
|
}
|
|
7
|
-
declare var __VLS_1: {},
|
|
7
|
+
declare var __VLS_1: {}, __VLS_11: {}, __VLS_13: {};
|
|
8
8
|
type __VLS_Slots = {} & {
|
|
9
9
|
'back-button'?: (props: typeof __VLS_1) => any;
|
|
10
10
|
} & {
|
|
11
|
-
center?: (props: typeof
|
|
11
|
+
center?: (props: typeof __VLS_11) => any;
|
|
12
12
|
} & {
|
|
13
|
-
right?: (props: typeof
|
|
13
|
+
right?: (props: typeof __VLS_13) => any;
|
|
14
14
|
};
|
|
15
|
-
declare const
|
|
16
|
-
declare const
|
|
15
|
+
declare const __VLS_base: import('vue').DefineComponent<NexxtHeaderProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NexxtHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
17
|
+
declare const _default: typeof __VLS_export;
|
|
17
18
|
export default _default;
|
|
18
19
|
type __VLS_WithSlots<T, S> = T & {
|
|
19
20
|
new (): {
|
|
@@ -4,5 +4,6 @@ interface NexxtIconProps {
|
|
|
4
4
|
name: IconName;
|
|
5
5
|
type?: IconType;
|
|
6
6
|
}
|
|
7
|
-
declare const
|
|
7
|
+
declare const __VLS_export: import('vue').DefineComponent<NexxtIconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NexxtIconProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
8
|
+
declare const _default: typeof __VLS_export;
|
|
8
9
|
export default _default;
|
|
@@ -3,12 +3,13 @@ interface NexxtInfoBlockProps {
|
|
|
3
3
|
icon: InstanceType<typeof Icon>['name'];
|
|
4
4
|
color?: 'green' | 'purple' | 'blue' | 'rose';
|
|
5
5
|
}
|
|
6
|
-
declare var
|
|
6
|
+
declare var __VLS_6: {};
|
|
7
7
|
type __VLS_Slots = {} & {
|
|
8
|
-
default?: (props: typeof
|
|
8
|
+
default?: (props: typeof __VLS_6) => any;
|
|
9
9
|
};
|
|
10
|
-
declare const
|
|
11
|
-
declare const
|
|
10
|
+
declare const __VLS_base: import('vue').DefineComponent<NexxtInfoBlockProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NexxtInfoBlockProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
11
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
12
|
+
declare const _default: typeof __VLS_export;
|
|
12
13
|
export default _default;
|
|
13
14
|
type __VLS_WithSlots<T, S> = T & {
|
|
14
15
|
new (): {
|
|
@@ -9,19 +9,21 @@ export interface NexxtInputFieldProps {
|
|
|
9
9
|
required?: boolean;
|
|
10
10
|
}
|
|
11
11
|
type __VLS_Props = NexxtInputFieldProps;
|
|
12
|
-
type
|
|
12
|
+
type __VLS_ModelProps = {
|
|
13
13
|
modelValue?: string | number;
|
|
14
14
|
};
|
|
15
|
-
|
|
15
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
16
|
+
declare var __VLS_6: {};
|
|
16
17
|
type __VLS_Slots = {} & {
|
|
17
|
-
right?: (props: typeof
|
|
18
|
+
right?: (props: typeof __VLS_6) => any;
|
|
18
19
|
};
|
|
19
|
-
declare const
|
|
20
|
+
declare const __VLS_base: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
20
21
|
"update:modelValue": (value: string | number | undefined) => any;
|
|
21
22
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
22
23
|
"onUpdate:modelValue"?: ((value: string | number | undefined) => any) | undefined;
|
|
23
24
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
24
|
-
declare const
|
|
25
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
26
|
+
declare const _default: typeof __VLS_export;
|
|
25
27
|
export default _default;
|
|
26
28
|
type __VLS_WithSlots<T, S> = T & {
|
|
27
29
|
new (): {
|
|
@@ -13,11 +13,12 @@ export interface NexxtInputSelectProps {
|
|
|
13
13
|
leftIcon?: InstanceType<typeof Icon>['name'];
|
|
14
14
|
}
|
|
15
15
|
type __VLS_Props = NexxtInputSelectProps;
|
|
16
|
-
type
|
|
16
|
+
type __VLS_ModelProps = {
|
|
17
17
|
'input'?: string | number;
|
|
18
18
|
'select'?: string | number | null;
|
|
19
19
|
};
|
|
20
|
-
|
|
20
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
21
|
+
declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
21
22
|
"update:input": (value: string | number | undefined) => any;
|
|
22
23
|
"update:select": (value: string | number | null) => any;
|
|
23
24
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
@@ -27,4 +28,5 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
27
28
|
selectPlaceholder: string;
|
|
28
29
|
selectPosition: "before" | "after";
|
|
29
30
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
31
|
+
declare const _default: typeof __VLS_export;
|
|
30
32
|
export default _default;
|
|
@@ -8,23 +8,25 @@ interface NexxtModalProps {
|
|
|
8
8
|
beforeClose?: () => boolean | Promise<boolean>;
|
|
9
9
|
}
|
|
10
10
|
type __VLS_Props = NexxtModalProps;
|
|
11
|
-
type
|
|
11
|
+
type __VLS_ModelProps = {
|
|
12
12
|
modelValue?: boolean;
|
|
13
13
|
};
|
|
14
|
-
|
|
14
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
15
|
+
declare var __VLS_55: {}, __VLS_79: {}, __VLS_81: {};
|
|
15
16
|
type __VLS_Slots = {} & {
|
|
16
|
-
header?: (props: typeof
|
|
17
|
+
header?: (props: typeof __VLS_55) => any;
|
|
17
18
|
} & {
|
|
18
|
-
default?: (props: typeof
|
|
19
|
+
default?: (props: typeof __VLS_79) => any;
|
|
19
20
|
} & {
|
|
20
|
-
footer?: (props: typeof
|
|
21
|
+
footer?: (props: typeof __VLS_81) => any;
|
|
21
22
|
};
|
|
22
|
-
declare const
|
|
23
|
+
declare const __VLS_base: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
23
24
|
"update:modelValue": (value: boolean) => any;
|
|
24
25
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
25
26
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
26
27
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
27
|
-
declare const
|
|
28
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
29
|
+
declare const _default: typeof __VLS_export;
|
|
28
30
|
export default _default;
|
|
29
31
|
type __VLS_WithSlots<T, S> = T & {
|
|
30
32
|
new (): {
|
|
@@ -6,12 +6,14 @@ interface NexxtPaginationProps {
|
|
|
6
6
|
disabled?: boolean;
|
|
7
7
|
}
|
|
8
8
|
type __VLS_Props = NexxtPaginationProps;
|
|
9
|
-
type
|
|
9
|
+
type __VLS_ModelProps = {
|
|
10
10
|
'page'?: number;
|
|
11
11
|
};
|
|
12
|
-
|
|
12
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
13
|
+
declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13
14
|
"update:page": (value: number) => any;
|
|
14
15
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
15
16
|
"onUpdate:page"?: ((value: number) => any) | undefined;
|
|
16
17
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
18
|
+
declare const _default: typeof __VLS_export;
|
|
17
19
|
export default _default;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export interface NexxtPresenceIndicatorProps {
|
|
2
2
|
online?: boolean;
|
|
3
3
|
}
|
|
4
|
-
declare const
|
|
4
|
+
declare const __VLS_export: import('vue').DefineComponent<NexxtPresenceIndicatorProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NexxtPresenceIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
5
6
|
export default _default;
|
|
@@ -5,9 +5,10 @@ interface NexxtProgressBarProps {
|
|
|
5
5
|
progressLabel?: string;
|
|
6
6
|
stepTitles?: string[];
|
|
7
7
|
}
|
|
8
|
-
declare const
|
|
8
|
+
declare const __VLS_export: import('vue').DefineComponent<NexxtProgressBarProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
9
|
"update:currentStep": (...args: any[]) => void;
|
|
10
10
|
}, string, import('vue').PublicProps, Readonly<NexxtProgressBarProps> & Readonly<{
|
|
11
11
|
"onUpdate:currentStep"?: ((...args: any[]) => any) | undefined;
|
|
12
12
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
declare const _default: typeof __VLS_export;
|
|
13
14
|
export default _default;
|
|
@@ -5,5 +5,6 @@ export interface NexxtPropertyCardProps {
|
|
|
5
5
|
city: string;
|
|
6
6
|
text?: string;
|
|
7
7
|
}
|
|
8
|
-
declare const
|
|
8
|
+
declare const __VLS_export: import('vue').DefineComponent<NexxtPropertyCardProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NexxtPropertyCardProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
9
|
+
declare const _default: typeof __VLS_export;
|
|
9
10
|
export default _default;
|
|
@@ -3,5 +3,6 @@ interface Props {
|
|
|
3
3
|
city: string;
|
|
4
4
|
text?: string;
|
|
5
5
|
}
|
|
6
|
-
declare const
|
|
6
|
+
declare const __VLS_export: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
declare const _default: typeof __VLS_export;
|
|
7
8
|
export default _default;
|