@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.
Files changed (61) hide show
  1. package/dist/components/AnimatedNumber/AnimatedNumber.vue.d.ts +2 -1
  2. package/dist/components/Announcement/Announcement.vue.d.ts +5 -4
  3. package/dist/components/Avatar/Avatar.vue.d.ts +2 -1
  4. package/dist/components/Button/Button.vue.d.ts +5 -4
  5. package/dist/components/Calendar/Calendar.vue.d.ts +4 -2
  6. package/dist/components/Calendar/_CalendarDayView.vue.d.ts +2 -1
  7. package/dist/components/Calendar/_CalendarHeader.vue.d.ts +2 -1
  8. package/dist/components/Calendar/_CalendarMonthView.vue.d.ts +2 -1
  9. package/dist/components/Calendar/_CalendarTimePicker.vue.d.ts +2 -1
  10. package/dist/components/Calendar/_CalendarYearView.vue.d.ts +2 -1
  11. package/dist/components/Card/Card.vue.d.ts +3 -2
  12. package/dist/components/Checkbox/Checkbox.vue.d.ts +4 -2
  13. package/dist/components/Chip/Chip.vue.d.ts +4 -3
  14. package/dist/components/ColorPicker/ColorPicker.vue.d.ts +5 -3
  15. package/dist/components/Combobox/Combobox.vue.d.ts +5 -4
  16. package/dist/components/ComboboxPanel/ComboboxPanel.vue.d.ts +2 -1
  17. package/dist/components/ContactInfoCard/ContactInfoCard.vue.d.ts +3 -2
  18. package/dist/components/CountrySelect/CountrySelect.vue.d.ts +3 -2
  19. package/dist/components/CustomerJourneyTile/CustomerJourneyTile.vue.d.ts +2 -1
  20. package/dist/components/DatePicker/DatePicker.vue.d.ts +8 -6
  21. package/dist/components/DoughnutChart/DoughnutChart.vue.d.ts +3 -2
  22. package/dist/components/DropdownButton/DropdownButton.vue.d.ts +5 -4
  23. package/dist/components/FloatingPanel/FloatingPanel.vue.d.ts +5 -4
  24. package/dist/components/Header/Header.vue.d.ts +6 -5
  25. package/dist/components/Icon/Icon.vue.d.ts +2 -1
  26. package/dist/components/InfoBlock/InfoBlock.vue.d.ts +5 -4
  27. package/dist/components/InputField/InputField.vue.d.ts +7 -5
  28. package/dist/components/InputSelect/InputSelect.vue.d.ts +4 -2
  29. package/dist/components/Modal/Modal.vue.d.ts +9 -7
  30. package/dist/components/Pagination/Pagination.vue.d.ts +4 -2
  31. package/dist/components/PresenceIndicator/PresenceIndicator.vue.d.ts +2 -1
  32. package/dist/components/ProgressBar/ProgressBar.vue.d.ts +2 -1
  33. package/dist/components/PropertyCard/PropertyCard.vue.d.ts +2 -1
  34. package/dist/components/PropertyListing/PropertyListing.vue.d.ts +2 -1
  35. package/dist/components/Select/Select.vue.d.ts +4 -2
  36. package/dist/components/SidebarMenuItem/SidebarMenuItem.vue.d.ts +5 -4
  37. package/dist/components/Skeleton/Skeleton.vue.d.ts +2 -1
  38. package/dist/components/SkeletonPropertyCard/SkeletonPropertyCard.vue.d.ts +2 -1
  39. package/dist/components/SocialIcons/SocialIcons.vue.d.ts +2 -1
  40. package/dist/components/SocialMediaCustomTemplate/SocialMediaCustomTemplate.vue.d.ts +2 -1
  41. package/dist/components/SocialMediaTemplate/SocialMediaTemplate.vue.d.ts +2 -1
  42. package/dist/components/SocialMediaType/SocialMediaType.vue.d.ts +2 -1
  43. package/dist/components/Source/Source.vue.d.ts +2 -1
  44. package/dist/components/Squircle/Squircle.vue.d.ts +3 -2
  45. package/dist/components/StepperHeader/StepperHeader.vue.d.ts +5 -4
  46. package/dist/components/Switch/Switch.vue.d.ts +7 -5
  47. package/dist/components/TabbedContent/TabbedContent.vue.d.ts +7 -5
  48. package/dist/components/Table/Table.vue.d.ts +18 -13
  49. package/dist/components/Tabs/Tabs.vue.d.ts +4 -2
  50. package/dist/components/TimelineEvent/TimelineEvent.vue.d.ts +2 -1
  51. package/dist/components/TimelinePhaseblock/TimelinePhaseblock.vue.d.ts +2 -1
  52. package/dist/components/Toast/Toast.vue.d.ts +5 -4
  53. package/dist/components/Toaster/Toaster.vue.d.ts +2 -1
  54. package/dist/components/ToggleGroup/ToggleGroup.vue.d.ts +4 -2
  55. package/dist/components/Tooltip/Tooltip.vue.d.ts +6 -5
  56. package/dist/components/VideoPlayer/VideoPlayer.vue.d.ts +2 -1
  57. package/dist/index.js +236 -226
  58. package/package.json +9 -9
  59. package/src/components/Chip/Chip.vue +5 -1
  60. package/src/components/DropdownButton/DropdownButton.vue +2 -2
  61. 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 __VLS_PublicProps = __VLS_Props & {
16
+ type __VLS_ModelProps = {
17
17
  modelValue?: string | number | null;
18
18
  };
19
- declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
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 __VLS_8: {};
9
+ declare var __VLS_12: {};
10
10
  type __VLS_Slots = {} & {
11
- default?: (props: typeof __VLS_8) => any;
11
+ default?: (props: typeof __VLS_12) => any;
12
12
  };
13
- declare const __VLS_component: import('vue').DefineComponent<SidebarMenuItemProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
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 _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
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 _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
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 _default: import('vue').DefineComponent<NexxtSkeletonPropertyCardProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NexxtSkeletonPropertyCardProps> & Readonly<{}>, {
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 _default: import('vue').DefineComponent<NexxtSocialIconsProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NexxtSocialIconsProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
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 _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
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 _default: import('vue').DefineComponent<NexxtSocialMediaTemplateProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
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 _default: import('vue').DefineComponent<NexxtSocialMediaTypeProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
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: import('vue').DefineComponent<NexxtSourceProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NexxtSourceProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
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 __VLS_component: import('vue').DefineComponent<NexxtSquircleProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<NexxtSquircleProps> & Readonly<{}>, {
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 _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
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 __VLS_12: {};
10
+ declare var __VLS_17: {};
11
11
  type __VLS_Slots = {} & {
12
- default?: (props: typeof __VLS_12) => any;
12
+ default?: (props: typeof __VLS_17) => any;
13
13
  };
14
- declare const __VLS_component: import('vue').DefineComponent<NexxtStepperHeaderProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
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 _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
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 __VLS_PublicProps = __VLS_Props & {
10
+ type __VLS_ModelProps = {
11
11
  modelValue?: boolean;
12
12
  };
13
- declare var __VLS_1: {}, __VLS_9: {};
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 __VLS_9) => any;
18
+ default?: (props: typeof __VLS_13) => any;
18
19
  };
19
- declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
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 _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
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 __VLS_PublicProps = __VLS_Props & {
8
+ type __VLS_ModelProps = {
9
9
  modelValue?: string;
10
10
  };
11
- declare var __VLS_9: string, __VLS_10: {};
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 __VLS_9>]?: (props: typeof __VLS_10) => any;
14
+ [K in NonNullable<typeof __VLS_13>]?: (props: typeof __VLS_14) => any;
14
15
  };
15
- declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
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 _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
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 _default: <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_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
17
- props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
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
- }) & Partial<{}>> & import('vue').PublicProps;
27
- expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
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) & (((evt: "update:modelValue", value: TRow[]) => void) & ((evt: "update:sortKey", value: TKey | undefined) => void) & ((evt: "update:sortDirection", value: "desc" | "asc") => 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 __VLS_PublicProps = __VLS_Props & {
7
+ type __VLS_ModelProps = {
8
8
  modelValue?: typeof selected['value'];
9
9
  };
10
- declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
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 _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
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 _default: 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>;
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 __VLS_4: {};
17
+ declare var __VLS_6: {};
18
18
  type __VLS_Slots = {} & {
19
- default?: (props: typeof __VLS_4) => any;
19
+ default?: (props: typeof __VLS_6) => any;
20
20
  };
21
- declare const __VLS_component: import('vue').DefineComponent<NexxtToastProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
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 _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
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 _default: import('vue').DefineComponent<NexxtToasterProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
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 __VLS_PublicProps = __VLS_Props & {
15
+ type __VLS_ModelProps = {
16
16
  modelValue: string;
17
17
  };
18
- declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
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 __VLS_14: {}, __VLS_24: {};
9
+ declare var __VLS_20: {}, __VLS_34: {};
10
10
  type __VLS_Slots = {} & {
11
- default?: (props: typeof __VLS_14) => any;
11
+ default?: (props: typeof __VLS_20) => any;
12
12
  } & {
13
- tooltip?: (props: typeof __VLS_24) => any;
13
+ tooltip?: (props: typeof __VLS_34) => any;
14
14
  };
15
- declare const __VLS_component: 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 _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
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 _default: import('vue').DefineComponent<__VLS_Props, {
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;