@nexxtmove/ui 1.1.0 → 1.1.1
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 +2 -1
- 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 +10 -0
- package/package.json +9 -9
- package/src/components/Chip/Chip.vue +5 -1
- 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 (): {
|
|
@@ -26,7 +26,7 @@ export type NexxtDropdownButtonProps = (NexxtDropdownButtonBase & {
|
|
|
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
32
|
action: string | (() => void);
|
|
@@ -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;
|
|
@@ -13,14 +13,16 @@ interface NexxtSelectProps {
|
|
|
13
13
|
required?: boolean;
|
|
14
14
|
}
|
|
15
15
|
type __VLS_Props = NexxtSelectProps;
|
|
16
|
-
type
|
|
16
|
+
type __VLS_ModelProps = {
|
|
17
17
|
modelValue?: string | number | null;
|
|
18
18
|
};
|
|
19
|
-
|
|
19
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
20
|
+
declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
20
21
|
"update:modelValue": (value: string | number | null) => any;
|
|
21
22
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
22
23
|
"onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
|
|
23
24
|
}>, {
|
|
24
25
|
placeholder: string;
|
|
25
26
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
27
|
+
declare const _default: typeof __VLS_export;
|
|
26
28
|
export default _default;
|
|
@@ -6,16 +6,17 @@ interface SidebarMenuItemProps {
|
|
|
6
6
|
isCurentRoute?: boolean;
|
|
7
7
|
variant?: 'default' | 'danger';
|
|
8
8
|
}
|
|
9
|
-
declare var
|
|
9
|
+
declare var __VLS_12: {};
|
|
10
10
|
type __VLS_Slots = {} & {
|
|
11
|
-
default?: (props: typeof
|
|
11
|
+
default?: (props: typeof __VLS_12) => any;
|
|
12
12
|
};
|
|
13
|
-
declare const
|
|
13
|
+
declare const __VLS_base: import('vue').DefineComponent<SidebarMenuItemProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
14
14
|
click: () => any;
|
|
15
15
|
}, string, import('vue').PublicProps, Readonly<SidebarMenuItemProps> & Readonly<{
|
|
16
16
|
onClick?: (() => any) | undefined;
|
|
17
17
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
18
|
-
declare const
|
|
18
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
19
|
+
declare const _default: typeof __VLS_export;
|
|
19
20
|
export default _default;
|
|
20
21
|
type __VLS_WithSlots<T, S> = T & {
|
|
21
22
|
new (): {
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const __VLS_export: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
declare const _default: typeof __VLS_export;
|
|
2
3
|
export default _default;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
export interface NexxtSkeletonPropertyCardProps {
|
|
2
2
|
ariaLabel?: string;
|
|
3
3
|
}
|
|
4
|
-
declare const
|
|
4
|
+
declare const __VLS_export: import('vue').DefineComponent<NexxtSkeletonPropertyCardProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NexxtSkeletonPropertyCardProps> & Readonly<{}>, {
|
|
5
5
|
ariaLabel: string;
|
|
6
6
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
declare const _default: typeof __VLS_export;
|
|
7
8
|
export default _default;
|
|
@@ -6,5 +6,6 @@ export interface NexxtSocialIconsProps {
|
|
|
6
6
|
google?: boolean;
|
|
7
7
|
tiktok?: boolean;
|
|
8
8
|
}
|
|
9
|
-
declare const
|
|
9
|
+
declare const __VLS_export: import('vue').DefineComponent<NexxtSocialIconsProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NexxtSocialIconsProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
declare const _default: typeof __VLS_export;
|
|
10
11
|
export default _default;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const __VLS_export: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
declare const _default: typeof __VLS_export;
|
|
2
3
|
export default _default;
|
|
@@ -9,9 +9,10 @@ interface NexxtSocialMediaTemplateProps {
|
|
|
9
9
|
muted?: boolean;
|
|
10
10
|
aspectRatio?: string;
|
|
11
11
|
}
|
|
12
|
-
declare const
|
|
12
|
+
declare const __VLS_export: import('vue').DefineComponent<NexxtSocialMediaTemplateProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13
13
|
click: (...args: any[]) => void;
|
|
14
14
|
}, string, import('vue').PublicProps, Readonly<NexxtSocialMediaTemplateProps> & Readonly<{
|
|
15
15
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
16
16
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
17
|
+
declare const _default: typeof __VLS_export;
|
|
17
18
|
export default _default;
|
|
@@ -6,9 +6,10 @@ interface NexxtSocialMediaTypeProps {
|
|
|
6
6
|
selected?: boolean;
|
|
7
7
|
icons?: SocialPlatform[];
|
|
8
8
|
}
|
|
9
|
-
declare const
|
|
9
|
+
declare const __VLS_export: import('vue').DefineComponent<NexxtSocialMediaTypeProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
10
10
|
click: (...args: any[]) => void;
|
|
11
11
|
}, string, import('vue').PublicProps, Readonly<NexxtSocialMediaTypeProps> & Readonly<{
|
|
12
12
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
13
13
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
declare const _default: typeof __VLS_export;
|
|
14
15
|
export default _default;
|
|
@@ -18,5 +18,6 @@ export declare const SOURCE_MAP: {
|
|
|
18
18
|
readonly forms: "Forms";
|
|
19
19
|
readonly dossier_data: "Dossier Data";
|
|
20
20
|
};
|
|
21
|
-
declare const _default:
|
|
21
|
+
declare const _default: typeof __VLS_export;
|
|
22
22
|
export default _default;
|
|
23
|
+
declare const __VLS_export: import('vue').DefineComponent<NexxtSourceProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NexxtSourceProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
@@ -5,10 +5,11 @@ declare var __VLS_1: {};
|
|
|
5
5
|
type __VLS_Slots = {} & {
|
|
6
6
|
default?: (props: typeof __VLS_1) => any;
|
|
7
7
|
};
|
|
8
|
-
declare const
|
|
8
|
+
declare const __VLS_base: import('vue').DefineComponent<NexxtSquircleProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NexxtSquircleProps> & Readonly<{}>, {
|
|
9
9
|
size: "xs" | "sm" | "md" | "lg" | "xl" | number;
|
|
10
10
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
11
|
-
declare const
|
|
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 (): {
|
|
@@ -7,16 +7,17 @@ interface NexxtStepperHeaderProps {
|
|
|
7
7
|
backButtonText?: InstanceType<typeof Header>['backButtonText'];
|
|
8
8
|
backButtonAction: InstanceType<typeof Header>['backButtonAction'];
|
|
9
9
|
}
|
|
10
|
-
declare var
|
|
10
|
+
declare var __VLS_17: {};
|
|
11
11
|
type __VLS_Slots = {} & {
|
|
12
|
-
default?: (props: typeof
|
|
12
|
+
default?: (props: typeof __VLS_17) => any;
|
|
13
13
|
};
|
|
14
|
-
declare const
|
|
14
|
+
declare const __VLS_base: import('vue').DefineComponent<NexxtStepperHeaderProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
15
15
|
"update:currentStep": (...args: any[]) => void;
|
|
16
16
|
}, string, import('vue').PublicProps, Readonly<NexxtStepperHeaderProps> & Readonly<{
|
|
17
17
|
"onUpdate:currentStep"?: ((...args: any[]) => any) | undefined;
|
|
18
18
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
19
|
-
declare const
|
|
19
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
20
|
+
declare const _default: typeof __VLS_export;
|
|
20
21
|
export default _default;
|
|
21
22
|
type __VLS_WithSlots<T, S> = T & {
|
|
22
23
|
new (): {
|
|
@@ -7,21 +7,23 @@ interface NexxtSwitchProps {
|
|
|
7
7
|
iconOff?: IconName;
|
|
8
8
|
}
|
|
9
9
|
type __VLS_Props = NexxtSwitchProps;
|
|
10
|
-
type
|
|
10
|
+
type __VLS_ModelProps = {
|
|
11
11
|
modelValue?: boolean;
|
|
12
12
|
};
|
|
13
|
-
|
|
13
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
14
|
+
declare var __VLS_1: {}, __VLS_13: {};
|
|
14
15
|
type __VLS_Slots = {} & {
|
|
15
16
|
default?: (props: typeof __VLS_1) => any;
|
|
16
17
|
} & {
|
|
17
|
-
default?: (props: typeof
|
|
18
|
+
default?: (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: boolean | undefined) => any;
|
|
21
22
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
22
23
|
"onUpdate:modelValue"?: ((value: boolean | 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 (): {
|
|
@@ -5,19 +5,21 @@ interface NexxtTabbedContent {
|
|
|
5
5
|
label?: string;
|
|
6
6
|
}
|
|
7
7
|
type __VLS_Props = NexxtTabbedContent;
|
|
8
|
-
type
|
|
8
|
+
type __VLS_ModelProps = {
|
|
9
9
|
modelValue?: string;
|
|
10
10
|
};
|
|
11
|
-
|
|
11
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
12
|
+
declare var __VLS_13: string, __VLS_14: {};
|
|
12
13
|
type __VLS_Slots = {} & {
|
|
13
|
-
[K in NonNullable<typeof
|
|
14
|
+
[K in NonNullable<typeof __VLS_13>]?: (props: typeof __VLS_14) => any;
|
|
14
15
|
};
|
|
15
|
-
declare const
|
|
16
|
+
declare const __VLS_base: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
17
|
"update:modelValue": (value: string) => any;
|
|
17
18
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
18
19
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
19
20
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
20
|
-
declare const
|
|
21
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
22
|
+
declare const _default: typeof __VLS_export;
|
|
21
23
|
export default _default;
|
|
22
24
|
type __VLS_WithSlots<T, S> = T & {
|
|
23
25
|
new (): {
|
|
@@ -13,18 +13,20 @@ export interface NexxtTableProps<TKey extends string = string, TRow extends Reco
|
|
|
13
13
|
selectOnRowClick?: boolean;
|
|
14
14
|
loading?: boolean;
|
|
15
15
|
}
|
|
16
|
-
declare const
|
|
17
|
-
props: __VLS_PrettifyLocal<
|
|
18
|
-
readonly "onUpdate:modelValue"?: ((value: TRow[]) => any) | undefined;
|
|
19
|
-
readonly "onUpdate:sortKey"?: ((value: TKey | undefined) => any) | undefined;
|
|
20
|
-
readonly "onUpdate:sortDirection"?: ((value: "desc" | "asc") => any) | undefined;
|
|
21
|
-
readonly "onRow-click"?: ((row: TRow) => any) | undefined;
|
|
22
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onUpdate:modelValue" | "onUpdate:sortKey" | "onUpdate:sortDirection" | "onRow-click"> & (NexxtTableProps<TKey, TRow> & {
|
|
16
|
+
declare const __VLS_export: <TKey extends string, TRow extends Record<TKey, unknown>>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
17
|
+
props: import('vue').PublicProps & __VLS_PrettifyLocal<(NexxtTableProps<TKey, TRow> & {
|
|
23
18
|
modelValue?: TRow[];
|
|
24
19
|
sortKey?: TKey;
|
|
25
20
|
sortDirection?: "asc" | "desc";
|
|
26
|
-
}) &
|
|
27
|
-
|
|
21
|
+
}) & {
|
|
22
|
+
"onUpdate:modelValue"?: ((value: TRow[]) => any) | undefined;
|
|
23
|
+
"onRow-click"?: ((row: TRow) => any) | undefined;
|
|
24
|
+
"onUpdate:sortKey"?: ((value: TKey | undefined) => any) | undefined;
|
|
25
|
+
"onUpdate:sortDirection"?: ((value: "desc" | "asc") => any) | undefined;
|
|
26
|
+
}> & (typeof globalThis extends {
|
|
27
|
+
__VLS_PROPS_FALLBACK: infer P;
|
|
28
|
+
} ? P : {});
|
|
29
|
+
expose: (exposed: {}) => void;
|
|
28
30
|
attrs: any;
|
|
29
31
|
slots: { [K in TKey as `cell-${K}`]?: ((props: {
|
|
30
32
|
row: TRow;
|
|
@@ -32,11 +34,14 @@ declare const _default: <TKey extends string, TRow extends Record<TKey, unknown>
|
|
|
32
34
|
}) => unknown) | undefined; } & {
|
|
33
35
|
[key: string]: ((props: Record<string, unknown>) => unknown) | undefined;
|
|
34
36
|
};
|
|
35
|
-
emit: ((evt: "row-click", row: TRow) => void) & (((
|
|
37
|
+
emit: ((evt: "row-click", row: TRow) => void) & (((event: "update:modelValue", value: TRow[]) => void) & ((event: "update:sortKey", value: TKey | undefined) => void) & ((event: "update:sortDirection", value: "desc" | "asc") => void));
|
|
36
38
|
}>) => import('vue').VNode & {
|
|
37
|
-
__ctx?: Awaited<typeof __VLS_setup
|
|
39
|
+
__ctx?: NonNullable<Awaited<typeof __VLS_setup>>;
|
|
38
40
|
};
|
|
41
|
+
declare const _default: typeof __VLS_export;
|
|
39
42
|
export default _default;
|
|
40
|
-
type __VLS_PrettifyLocal<T> = {
|
|
43
|
+
type __VLS_PrettifyLocal<T> = (T extends any ? {
|
|
41
44
|
[K in keyof T]: T[K];
|
|
42
|
-
}
|
|
45
|
+
} : {
|
|
46
|
+
[K in keyof T as K]: T[K];
|
|
47
|
+
}) & {};
|
|
@@ -4,12 +4,14 @@ interface NexxtTabs {
|
|
|
4
4
|
}
|
|
5
5
|
type __VLS_Props = NexxtTabs;
|
|
6
6
|
declare const selected: import('vue').ModelRef<string, string, string, string>;
|
|
7
|
-
type
|
|
7
|
+
type __VLS_ModelProps = {
|
|
8
8
|
modelValue?: typeof selected['value'];
|
|
9
9
|
};
|
|
10
|
-
|
|
10
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
11
|
+
declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
12
|
"update:modelValue": (value: string) => any;
|
|
12
13
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
13
14
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
14
15
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
declare const _default: typeof __VLS_export;
|
|
15
17
|
export default _default;
|
|
@@ -3,7 +3,8 @@ type __VLS_Props = {
|
|
|
3
3
|
event: Event;
|
|
4
4
|
splitView?: boolean;
|
|
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<{}>, {
|
|
7
7
|
splitView: boolean;
|
|
8
8
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
9
|
+
declare const _default: typeof __VLS_export;
|
|
9
10
|
export default _default;
|
|
@@ -8,5 +8,6 @@ type __VLS_Props = {
|
|
|
8
8
|
isSplitView: boolean;
|
|
9
9
|
isLast: boolean;
|
|
10
10
|
};
|
|
11
|
-
declare const
|
|
11
|
+
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>;
|
|
12
|
+
declare const _default: typeof __VLS_export;
|
|
12
13
|
export default _default;
|
|
@@ -14,16 +14,17 @@ export interface NexxtToastProps {
|
|
|
14
14
|
dismissible?: boolean;
|
|
15
15
|
autoClose?: number;
|
|
16
16
|
}
|
|
17
|
-
declare var
|
|
17
|
+
declare var __VLS_6: {};
|
|
18
18
|
type __VLS_Slots = {} & {
|
|
19
|
-
default?: (props: typeof
|
|
19
|
+
default?: (props: typeof __VLS_6) => any;
|
|
20
20
|
};
|
|
21
|
-
declare const
|
|
21
|
+
declare const __VLS_base: import('vue').DefineComponent<NexxtToastProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
22
22
|
dismiss: () => any;
|
|
23
23
|
}, string, import('vue').PublicProps, Readonly<NexxtToastProps> & Readonly<{
|
|
24
24
|
onDismiss?: (() => any) | undefined;
|
|
25
25
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
26
|
-
declare const
|
|
26
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
27
|
+
declare const _default: typeof __VLS_export;
|
|
27
28
|
export default _default;
|
|
28
29
|
type __VLS_WithSlots<T, S> = T & {
|
|
29
30
|
new (): {
|
|
@@ -4,9 +4,10 @@ interface NexxtToasterProps {
|
|
|
4
4
|
toasts: ToastItem[];
|
|
5
5
|
position?: ToasterPosition;
|
|
6
6
|
}
|
|
7
|
-
declare const
|
|
7
|
+
declare const __VLS_export: import('vue').DefineComponent<NexxtToasterProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
8
8
|
dismiss: (id: string) => any;
|
|
9
9
|
}, string, import('vue').PublicProps, Readonly<NexxtToasterProps> & Readonly<{
|
|
10
10
|
onDismiss?: ((id: string) => any) | undefined;
|
|
11
11
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
12
|
+
declare const _default: typeof __VLS_export;
|
|
12
13
|
export default _default;
|
|
@@ -12,14 +12,16 @@ interface NexxtToggleGroupProps {
|
|
|
12
12
|
equalWidth?: boolean;
|
|
13
13
|
}
|
|
14
14
|
type __VLS_Props = NexxtToggleGroupProps;
|
|
15
|
-
type
|
|
15
|
+
type __VLS_ModelProps = {
|
|
16
16
|
modelValue: string;
|
|
17
17
|
};
|
|
18
|
-
|
|
18
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
19
|
+
declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
19
20
|
"update:modelValue": (value: string) => any;
|
|
20
21
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
21
22
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
22
23
|
}>, {
|
|
23
24
|
equalWidth: boolean;
|
|
24
25
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
26
|
+
declare const _default: typeof __VLS_export;
|
|
25
27
|
export default _default;
|
|
@@ -6,14 +6,15 @@ interface NexxtTooltip {
|
|
|
6
6
|
disableHoverableContent?: boolean;
|
|
7
7
|
disableClosingTrigger?: boolean;
|
|
8
8
|
}
|
|
9
|
-
declare var
|
|
9
|
+
declare var __VLS_20: {}, __VLS_34: {};
|
|
10
10
|
type __VLS_Slots = {} & {
|
|
11
|
-
default?: (props: typeof
|
|
11
|
+
default?: (props: typeof __VLS_20) => any;
|
|
12
12
|
} & {
|
|
13
|
-
tooltip?: (props: typeof
|
|
13
|
+
tooltip?: (props: typeof __VLS_34) => any;
|
|
14
14
|
};
|
|
15
|
-
declare const
|
|
16
|
-
declare const
|
|
15
|
+
declare const __VLS_base: import('vue').DefineComponent<NexxtTooltip, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NexxtTooltip> & 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 (): {
|
|
@@ -16,8 +16,9 @@ type __VLS_Props = {
|
|
|
16
16
|
video?: string;
|
|
17
17
|
};
|
|
18
18
|
};
|
|
19
|
-
declare const
|
|
19
|
+
declare const __VLS_export: import('vue').DefineComponent<__VLS_Props, {
|
|
20
20
|
playing: import('vue').ShallowRef<boolean>;
|
|
21
21
|
muted: import('vue').ShallowRef<boolean>;
|
|
22
22
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
23
|
+
declare const _default: typeof __VLS_export;
|
|
23
24
|
export default _default;
|
package/dist/index.js
CHANGED
|
@@ -811,6 +811,11 @@ var tt = /* @__PURE__ */ p({
|
|
|
811
811
|
border: "border border-brick-500",
|
|
812
812
|
text: "text-brick-500"
|
|
813
813
|
};
|
|
814
|
+
case "neutral": return {
|
|
815
|
+
bg: "bg-gray-100",
|
|
816
|
+
border: "border border-gray-600",
|
|
817
|
+
text: "text-gray-700"
|
|
818
|
+
};
|
|
814
819
|
default: return {
|
|
815
820
|
bg: "bg-cornflower-blue-50",
|
|
816
821
|
border: "border border-cornflower-blue-500",
|
|
@@ -833,6 +838,11 @@ var tt = /* @__PURE__ */ p({
|
|
|
833
838
|
border: "",
|
|
834
839
|
text: "text-white"
|
|
835
840
|
};
|
|
841
|
+
case "neutral": return {
|
|
842
|
+
bg: "bg-gray-700",
|
|
843
|
+
border: "",
|
|
844
|
+
text: "text-white"
|
|
845
|
+
};
|
|
836
846
|
default: return {
|
|
837
847
|
bg: "bg-cornflower-blue-600",
|
|
838
848
|
border: "",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nexxtmove/ui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.1",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"@eslint/js": "^10.0.1",
|
|
35
35
|
"@nuxt/kit": "^4.4.8",
|
|
36
36
|
"@nuxt/schema": "^4.4.4",
|
|
37
|
-
"@storybook/addon-a11y": "^10.
|
|
38
|
-
"@storybook/addon-designs": "^11.1.
|
|
39
|
-
"@storybook/addon-docs": "^10.
|
|
40
|
-
"@storybook/addon-vitest": "^10.
|
|
41
|
-
"@storybook/builder-vite": "^10.
|
|
42
|
-
"@storybook/vue3-vite": "^10.
|
|
37
|
+
"@storybook/addon-a11y": "^10.5.0",
|
|
38
|
+
"@storybook/addon-designs": "^11.1.4",
|
|
39
|
+
"@storybook/addon-docs": "^10.5.0",
|
|
40
|
+
"@storybook/addon-vitest": "^10.5.0",
|
|
41
|
+
"@storybook/builder-vite": "^10.5.0",
|
|
42
|
+
"@storybook/vue3-vite": "^10.5.0",
|
|
43
43
|
"@tailwindcss/vite": "^4.3.1",
|
|
44
44
|
"@types/node": "^26.0.1",
|
|
45
45
|
"@types/react": "^19.2.17",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"eslint": "^10.6.0",
|
|
54
54
|
"eslint-config-prettier": "^10.1.8",
|
|
55
55
|
"eslint-plugin-prettier": "^5.5.6",
|
|
56
|
-
"eslint-plugin-storybook": "10.
|
|
56
|
+
"eslint-plugin-storybook": "10.5.0",
|
|
57
57
|
"eslint-plugin-vue": "^10.9.2",
|
|
58
58
|
"flag-icons": "^7.5.0",
|
|
59
59
|
"globals": "^17.7.0",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"react": "^19.2.7",
|
|
64
64
|
"react-dom": "^19.2.7",
|
|
65
65
|
"remark-frontmatter": "^5.0.0",
|
|
66
|
-
"storybook": "^10.
|
|
66
|
+
"storybook": "^10.5.0",
|
|
67
67
|
"typescript-eslint": "^8.62.0",
|
|
68
68
|
"vite": "^8.1.0",
|
|
69
69
|
"vite-plugin-dts": "^5.0.3",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { computed } from 'vue'
|
|
3
3
|
|
|
4
4
|
interface NexxtChipProps {
|
|
5
|
-
variant?: 'default' | 'warning' | 'success' | 'danger'
|
|
5
|
+
variant?: 'default' | 'warning' | 'success' | 'danger' | 'neutral'
|
|
6
6
|
ghost?: boolean
|
|
7
7
|
}
|
|
8
8
|
|
|
@@ -21,6 +21,8 @@ const styles = computed(() => {
|
|
|
21
21
|
return { bg: 'bg-green-50', border: 'border border-green-500', text: 'text-green-500' }
|
|
22
22
|
case 'danger':
|
|
23
23
|
return { bg: 'bg-brick-100/20', border: 'border border-brick-500', text: 'text-brick-500' }
|
|
24
|
+
case 'neutral':
|
|
25
|
+
return { bg: 'bg-gray-100', border: 'border border-gray-600', text: 'text-gray-700' }
|
|
24
26
|
default:
|
|
25
27
|
return {
|
|
26
28
|
bg: 'bg-cornflower-blue-50',
|
|
@@ -36,6 +38,8 @@ const styles = computed(() => {
|
|
|
36
38
|
return { bg: 'bg-green-500', border: '', text: 'text-white' }
|
|
37
39
|
case 'danger':
|
|
38
40
|
return { bg: 'bg-brick-500', border: '', text: 'text-white' }
|
|
41
|
+
case 'neutral':
|
|
42
|
+
return { bg: 'bg-gray-700', border: '', text: 'text-white' }
|
|
39
43
|
default:
|
|
40
44
|
return { bg: 'bg-cornflower-blue-600', border: '', text: 'text-white' }
|
|
41
45
|
}
|
package/src/index.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
// This file is auto-generated by scripts/generate-index.ts
|
|
2
|
+
// Third-party type re-exports for consumers of this library
|
|
2
3
|
export type { Placement } from '@floating-ui/vue'
|
|
4
|
+
|
|
3
5
|
export { default as NexxtAnimatedNumber } from './components/AnimatedNumber/AnimatedNumber.vue'
|
|
4
6
|
export { default as NexxtAnnouncement } from './components/Announcement/Announcement.vue'
|
|
5
7
|
export { default as NexxtAvatar } from './components/Avatar/Avatar.vue'
|