@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
|
@@ -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;
|