@autoafleveren/ui 0.15.7 → 0.16.0

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 (64) hide show
  1. package/dist/config/eslint.cjs +0 -3
  2. package/dist/icons.cjs +1168 -38
  3. package/dist/icons.js +11434 -7192
  4. package/dist/style.css +1 -1
  5. package/dist/types/components/AppActionBar/AppActionBarItem.vue.d.ts +6 -4
  6. package/dist/types/components/AppAlert/AppAlert.vue.d.ts +19 -17
  7. package/dist/types/components/AppAvatar/AppAvatar.vue.d.ts +1 -1
  8. package/dist/types/components/AppAvatar/DefaultAvatar.vue.d.ts +2 -2
  9. package/dist/types/components/AppBackButton/AppBackButton.vue.d.ts +10 -8
  10. package/dist/types/components/AppBadge/AppBadge.vue.d.ts +28 -14
  11. package/dist/types/components/AppButton/AppButton.vue.d.ts +8 -6
  12. package/dist/types/components/AppButton/ButtonIconSlot.vue.d.ts +8 -6
  13. package/dist/types/components/AppCard/AppCard.vue.d.ts +22 -20
  14. package/dist/types/components/AppCard/CardIconSlot.vue.d.ts +8 -6
  15. package/dist/types/components/AppConfirm/AppConfirm.vue.d.ts +7 -5
  16. package/dist/types/components/AppDataTable/AppDataTable.vue.d.ts +19 -87
  17. package/dist/types/components/AppDataTable/AppDataTableFooter.vue.d.ts +12 -10
  18. package/dist/types/components/AppDefinitionList/AppDefinitionItem.vue.d.ts +19 -20
  19. package/dist/types/components/AppDefinitionList/AppDefinitionList.vue.d.ts +2 -2
  20. package/dist/types/components/AppDisclosure/AppDisclosure.vue.d.ts +8 -6
  21. package/dist/types/components/AppDisclosure/AppDisclosureButton.vue.d.ts +4 -2
  22. package/dist/types/components/AppDisclosure/AppDisclosurePanel.vue.d.ts +10 -8
  23. package/dist/types/components/AppDropdownButton/AppDropdownButton.vue.d.ts +9 -7
  24. package/dist/types/components/AppDropdownButton/AppDropdownItem.vue.d.ts +4 -2
  25. package/dist/types/components/AppInput/AppInput.vue.d.ts +11 -87
  26. package/dist/types/components/AppInput/FileInput.vue.d.ts +6 -4
  27. package/dist/types/components/AppInput/Input.vue.d.ts +16 -45
  28. package/dist/types/components/AppInput/InputIconSlot.vue.d.ts +8 -6
  29. package/dist/types/components/AppInput/LocationInput.vue.d.ts +0 -1
  30. package/dist/types/components/AppInput/index.d.ts +1 -0
  31. package/dist/types/components/AppInputLabel/AppInputLabel.vue.d.ts +4 -2
  32. package/dist/types/components/AppLicensePlate/AppLicensePlate.vue.d.ts +14 -11
  33. package/dist/types/components/AppLoader/AppLoader.vue.d.ts +2 -2
  34. package/dist/types/components/AppMaps/AppMaps.vue.d.ts +16 -17
  35. package/dist/types/components/AppMaps/index.d.ts +0 -1
  36. package/dist/types/components/AppMenu/AppMenuItem.vue.d.ts +6 -4
  37. package/dist/types/components/AppModal/AppModal.vue.d.ts +17 -6
  38. package/dist/types/components/AppNavigationMenu/NavigationItem.vue.d.ts +2 -2
  39. package/dist/types/components/AppPagination/AppPagination.vue.d.ts +8 -8
  40. package/dist/types/components/AppPagination/AppPaginationItem.vue.d.ts +12 -10
  41. package/dist/types/components/AppSection/AppSection.vue.d.ts +10 -8
  42. package/dist/types/components/AppSelect/AppSelect.vue.d.ts +62 -60
  43. package/dist/types/components/AppTable/AppTable.vue.d.ts +4 -2
  44. package/dist/types/components/AppTimeline/AppTimeline.vue.d.ts +6 -4
  45. package/dist/types/components/AppTimeline/AppTimelineItem.vue.d.ts +11 -9
  46. package/dist/types/components/AppTimeline/AppTimelineItemIcon.vue.d.ts +1 -1
  47. package/dist/types/components/AppTimeline/index.d.ts +3 -0
  48. package/dist/types/composables/useNavigation/index.d.ts +13 -13
  49. package/dist/types/icons/ChatPersonRoundedIcon.vue.d.ts +2 -2
  50. package/dist/types/icons/HeroGirlIcon.vue.d.ts +5 -4
  51. package/dist/types/icons/HeroPersonIcon.vue.d.ts +4 -4
  52. package/dist/types/icons/HeroPersonRoundedIcon.vue.d.ts +4 -4
  53. package/dist/types/icons/HeroPersonWithBgIcon.vue.d.ts +4 -4
  54. package/dist/types/icons/index.d.ts +3 -1
  55. package/dist/types/layouts/Auth/Auth.vue.d.ts +4 -2
  56. package/dist/types/layouts/Base/Base.vue.d.ts +4 -2
  57. package/dist/types/layouts/Platform/Platform.vue.d.ts +4 -2
  58. package/dist/types/plugins/Toast/Toast.vue.d.ts +4 -4
  59. package/dist/types/plugins/index.d.ts +1 -0
  60. package/dist/ui-library.css +1 -1
  61. package/dist/ui.cjs +601 -53
  62. package/dist/ui.css +1 -1
  63. package/dist/ui.js +29891 -27341
  64. package/package.json +53 -59
@@ -1,26 +1,29 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
2
- license?: string | undefined;
3
- country?: "NL" | undefined;
4
- licensePlateClasses?: string | undefined;
1
+ import type { Country } from './index.d';
2
+ declare function __VLS_template(): {
3
+ default?(_: {}): any;
4
+ };
5
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
6
+ license?: string;
7
+ country?: Country;
8
+ licensePlateClasses?: string;
5
9
  }>, {
6
10
  license: undefined;
7
11
  country: string;
8
12
  licensePlateClasses: undefined;
9
13
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
10
- license?: string | undefined;
11
- country?: "NL" | undefined;
12
- licensePlateClasses?: string | undefined;
14
+ license?: string;
15
+ country?: Country;
16
+ licensePlateClasses?: string;
13
17
  }>, {
14
18
  license: undefined;
15
19
  country: string;
16
20
  licensePlateClasses: undefined;
17
21
  }>>>, {
18
22
  license: string;
19
- country: "NL";
23
+ country: Country;
20
24
  licensePlateClasses: string;
21
- }, {}>, {
22
- default?(_: {}): any;
23
- }>;
25
+ }, {}>;
26
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
24
27
  export default _default;
25
28
  type __VLS_WithDefaults<P, D> = {
26
29
  [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
@@ -1,10 +1,10 @@
1
1
  import type { Size } from './index.d';
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
3
- size?: Size | undefined;
3
+ size?: Size;
4
4
  }>, {
5
5
  size: string;
6
6
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
7
- size?: Size | undefined;
7
+ size?: Size;
8
8
  }>, {
9
9
  size: string;
10
10
  }>>>, {
@@ -1,13 +1,12 @@
1
- /// <reference types="google.maps" />
2
1
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
3
- withMarker?: boolean | undefined;
4
- disableMarkerClick?: boolean | undefined;
5
- markerLatitude?: number | null | undefined;
6
- markerLongitude?: number | null | undefined;
7
- disableUserInteraction?: boolean | undefined;
8
- mapCenterLatitude?: number | null | undefined;
9
- mapCenterLongitude?: number | null | undefined;
10
- mapOptions?: google.maps.MapOptions | null | undefined;
2
+ withMarker?: boolean;
3
+ disableMarkerClick?: boolean;
4
+ markerLatitude?: number | null;
5
+ markerLongitude?: number | null;
6
+ disableUserInteraction?: boolean;
7
+ mapCenterLatitude?: number | null;
8
+ mapCenterLongitude?: number | null;
9
+ mapOptions?: google.maps.MapOptions | null;
11
10
  }>, {
12
11
  mapOptions: null;
13
12
  withMarker: boolean;
@@ -18,14 +17,14 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
18
17
  disableMarkerClick: boolean;
19
18
  disableUserInteraction: boolean;
20
19
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
21
- withMarker?: boolean | undefined;
22
- disableMarkerClick?: boolean | undefined;
23
- markerLatitude?: number | null | undefined;
24
- markerLongitude?: number | null | undefined;
25
- disableUserInteraction?: boolean | undefined;
26
- mapCenterLatitude?: number | null | undefined;
27
- mapCenterLongitude?: number | null | undefined;
28
- mapOptions?: google.maps.MapOptions | null | undefined;
20
+ withMarker?: boolean;
21
+ disableMarkerClick?: boolean;
22
+ markerLatitude?: number | null;
23
+ markerLongitude?: number | null;
24
+ disableUserInteraction?: boolean;
25
+ mapCenterLatitude?: number | null;
26
+ mapCenterLongitude?: number | null;
27
+ mapOptions?: google.maps.MapOptions | null;
29
28
  }>, {
30
29
  mapOptions: null;
31
30
  withMarker: boolean;
@@ -1,4 +1,3 @@
1
- /// <reference types="google.maps" />
2
1
  export declare const defaultMapOptions: google.maps.MapOptions;
3
2
  export declare const disableUserInteractionMapOptions: google.maps.MapOptions;
4
3
  export declare const markerDomClasses: string[];
@@ -1,13 +1,15 @@
1
1
  import type { MenuItem } from './index.d';
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<MenuItem>, {
2
+ declare function __VLS_template(): {
3
+ default?(_: {}): any;
4
+ };
5
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<MenuItem>, {
3
6
  visible: boolean;
4
7
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<MenuItem>, {
5
8
  visible: boolean;
6
9
  }>>>, {
7
10
  visible: boolean;
8
- }, {}>, {
9
- default?(_: {}): any;
10
- }>;
11
+ }, {}>;
12
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
11
13
  export default _default;
12
14
  type __VLS_WithDefaults<P, D> = {
13
15
  [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
@@ -2,15 +2,22 @@ import type { ModalProps } from './index.d';
2
2
  declare function open(): Promise<void>;
3
3
  declare function close(): Promise<void>;
4
4
  declare function submit(): Promise<void>;
5
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Omit<ModalProps, "onSubmit" | "onCancel" | "onClose" | "onOpen">>, {
5
+ declare function __VLS_template(): {
6
+ title?(_: {}): any;
7
+ default?(_: {}): any;
8
+ };
9
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Omit<ModalProps, "onCancel" | "onClose" | "onOpen" | "plugins">>, {
6
10
  submitButtonText: string;
7
11
  cancelButtonText: string;
8
12
  withBackdrop: boolean;
9
13
  withFooter: boolean;
10
14
  preventBackdropClose: boolean;
11
15
  preventBackdropCloseOnLoading: boolean;
16
+ contentClasses: string;
17
+ modalClasses: string;
12
18
  title: string;
13
19
  content: string;
20
+ properties: undefined;
14
21
  }>, {
15
22
  isOpen: import("vue").Ref<boolean>;
16
23
  open: typeof open;
@@ -21,15 +28,18 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
21
28
  close: () => void;
22
29
  cancel: () => void;
23
30
  submit: (value: FormData) => void;
24
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Omit<ModalProps, "onSubmit" | "onCancel" | "onClose" | "onOpen">>, {
31
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Omit<ModalProps, "onCancel" | "onClose" | "onOpen" | "plugins">>, {
25
32
  submitButtonText: string;
26
33
  cancelButtonText: string;
27
34
  withBackdrop: boolean;
28
35
  withFooter: boolean;
29
36
  preventBackdropClose: boolean;
30
37
  preventBackdropCloseOnLoading: boolean;
38
+ contentClasses: string;
39
+ modalClasses: string;
31
40
  title: string;
32
41
  content: string;
42
+ properties: undefined;
33
43
  }>>> & {
34
44
  onSubmit?: ((value: FormData) => any) | undefined;
35
45
  onCancel?: (() => any) | undefined;
@@ -37,6 +47,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
37
47
  onOpen?: (() => any) | undefined;
38
48
  }, {
39
49
  title: string;
50
+ contentClasses: string;
40
51
  content: string | import("vue").Component;
41
52
  cancelButtonText: string | null;
42
53
  withBackdrop: boolean;
@@ -44,10 +55,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
44
55
  submitButtonText: string | null;
45
56
  withFooter: boolean;
46
57
  preventBackdropCloseOnLoading: boolean;
47
- }, {}>, {
48
- title?(_: {}): any;
49
- default?(_: {}): any;
50
- }>;
58
+ modalClasses: string;
59
+ properties: Record<string, unknown>;
60
+ }, {}>;
61
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
51
62
  export default _default;
52
63
  type __VLS_WithDefaults<P, D> = {
53
64
  [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
@@ -1,10 +1,10 @@
1
1
  import type { NavigationItem } from '~composables/useNavigation';
2
2
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
3
3
  item: NavigationItem;
4
- linkClasses?: string | undefined;
4
+ linkClasses?: string;
5
5
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
6
6
  item: NavigationItem;
7
- linkClasses?: string | undefined;
7
+ linkClasses?: string;
8
8
  }>>>, {}, {}>;
9
9
  export default _default;
10
10
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -1,9 +1,9 @@
1
1
  import type { PaginationMeta } from '.';
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
3
- meta?: PaginationMeta | undefined;
4
- currentPage?: number | undefined;
5
- lastPage?: number | undefined;
6
- loaded?: boolean | undefined;
3
+ meta?: PaginationMeta;
4
+ currentPage?: number;
5
+ lastPage?: number;
6
+ loaded?: boolean;
7
7
  }>, {
8
8
  meta: undefined;
9
9
  currentPage: undefined;
@@ -14,10 +14,10 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
14
14
  nextPage: () => void;
15
15
  previousPage: () => void;
16
16
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
17
- meta?: PaginationMeta | undefined;
18
- currentPage?: number | undefined;
19
- lastPage?: number | undefined;
20
- loaded?: boolean | undefined;
17
+ meta?: PaginationMeta;
18
+ currentPage?: number;
19
+ lastPage?: number;
20
+ loaded?: boolean;
21
21
  }>, {
22
22
  meta: undefined;
23
23
  currentPage: undefined;
@@ -1,16 +1,19 @@
1
1
  import type { Component } from 'vue';
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
3
- as?: string | Component | undefined;
4
- active?: boolean | undefined;
5
- disabled?: boolean | undefined;
2
+ declare function __VLS_template(): {
3
+ default?(_: {}): any;
4
+ };
5
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
6
+ as?: string | Component;
7
+ active?: boolean;
8
+ disabled?: boolean;
6
9
  }>, {
7
10
  as: string;
8
11
  active: boolean;
9
12
  disabled: boolean;
10
13
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
11
- as?: string | Component | undefined;
12
- active?: boolean | undefined;
13
- disabled?: boolean | undefined;
14
+ as?: string | Component;
15
+ active?: boolean;
16
+ disabled?: boolean;
14
17
  }>, {
15
18
  as: string;
16
19
  active: boolean;
@@ -19,9 +22,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
19
22
  disabled: boolean;
20
23
  as: string | Component;
21
24
  active: boolean;
22
- }, {}>, {
23
- default?(_: {}): any;
24
- }>;
25
+ }, {}>;
26
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
25
27
  export default _default;
26
28
  type __VLS_WithDefaults<P, D> = {
27
29
  [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
@@ -1,15 +1,17 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
2
- title?: string | undefined;
3
- description?: string | undefined;
4
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
5
- title?: string | undefined;
6
- description?: string | undefined;
7
- }>>>, {}, {}>, {
1
+ declare function __VLS_template(): {
8
2
  titleDescription?(_: {}): any;
9
3
  title?(_: {}): any;
10
4
  description?(_: {}): any;
11
5
  default?(_: {}): any;
12
- }>;
6
+ };
7
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<{
8
+ title?: string;
9
+ description?: string;
10
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
11
+ title?: string;
12
+ description?: string;
13
+ }>>>, {}, {}>;
14
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
13
15
  export default _default;
14
16
  type __VLS_WithTemplateSlots<T, S> = T & {
15
17
  new (): {
@@ -1,65 +1,13 @@
1
1
  import type { OpenDirection } from './index.d';
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
3
- wrapperClasses?: string | undefined;
4
- hasError?: boolean | undefined;
5
- errorMessage?: string | undefined;
6
- label?: string | undefined;
7
- optionLabel?: string | undefined;
8
- fetchOnOpen?: boolean | undefined;
9
- openDirection?: OpenDirection | undefined;
10
- dropdownClasses?: string | undefined;
11
- additionalClasses?: Record<string, string> | undefined;
12
- labelClasses?: string | undefined;
13
- }>, {
14
- wrapperClasses: undefined;
15
- errorMessage: undefined;
16
- label: undefined;
17
- optionLabel: string;
18
- fetchOnOpen: boolean;
19
- openDirection: string;
20
- dropdownClasses: undefined;
21
- additionalClasses: undefined;
22
- labelClasses: undefined;
23
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
24
- wrapperClasses?: string | undefined;
25
- hasError?: boolean | undefined;
26
- errorMessage?: string | undefined;
27
- label?: string | undefined;
28
- optionLabel?: string | undefined;
29
- fetchOnOpen?: boolean | undefined;
30
- openDirection?: OpenDirection | undefined;
31
- dropdownClasses?: string | undefined;
32
- additionalClasses?: Record<string, string> | undefined;
33
- labelClasses?: string | undefined;
34
- }>, {
35
- wrapperClasses: undefined;
36
- errorMessage: undefined;
37
- label: undefined;
38
- optionLabel: string;
39
- fetchOnOpen: boolean;
40
- openDirection: string;
41
- dropdownClasses: undefined;
42
- additionalClasses: undefined;
43
- labelClasses: undefined;
44
- }>>>, {
45
- label: string;
46
- openDirection: OpenDirection;
47
- errorMessage: string;
48
- wrapperClasses: string;
49
- labelClasses: string;
50
- optionLabel: string;
51
- fetchOnOpen: boolean;
52
- dropdownClasses: string;
53
- additionalClasses: Record<string, string>;
54
- }, {}>, Partial<Record<NonNullable<"clear" | "option" | "placeholder" | "tag" | "caret" | "spinner" | "afterlist" | "beforelist" | "multiplelabel" | "singlelabel" | "grouplabel" | "infinite" | "nooptions" | "noresults">, (_: {
2
+ declare function __VLS_template(): Partial<Record<NonNullable<"clear" | "option" | "placeholder" | "tag" | "caret" | "spinner" | "afterlist" | "beforelist" | "multiplelabel" | "singlelabel" | "grouplabel" | "infinite" | "nooptions" | "noresults">, (_: {
55
3
  classes: string | undefined;
56
4
  clear: () => void;
57
5
  } | {
58
6
  classes: string | undefined;
59
7
  option: any;
60
- isSelected: boolean;
61
- isPointed: boolean;
62
- search: string | null;
8
+ isSelected: (option: any) => boolean;
9
+ isPointed: (option: any) => boolean;
10
+ search: null | string;
63
11
  } | {
64
12
  classes: string | undefined;
65
13
  option: any;
@@ -74,15 +22,15 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
74
22
  options: any[];
75
23
  } | {
76
24
  classes: string | undefined;
77
- values: object | any[];
25
+ values: any[] | object;
78
26
  } | {
79
27
  classes: string | undefined;
80
28
  value: any;
81
29
  } | {
82
30
  classes: string | undefined;
83
31
  group: any;
84
- isSelected: boolean;
85
- isPointed: boolean;
32
+ isSelected: (option: any) => boolean;
33
+ isPointed: (option: any) => boolean;
86
34
  } | {
87
35
  classes: string | undefined;
88
36
  }) => any>> & {
@@ -92,7 +40,61 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
92
40
  option: any;
93
41
  handleTagRemove: (option: unknown, $event: Event) => void;
94
42
  }): any;
95
- }>;
43
+ };
44
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
45
+ wrapperClasses?: string;
46
+ hasError?: boolean;
47
+ errorMessage?: string;
48
+ label?: string;
49
+ optionLabel?: string;
50
+ fetchOnOpen?: boolean;
51
+ openDirection?: OpenDirection;
52
+ dropdownClasses?: string;
53
+ additionalClasses?: Record<string, string>;
54
+ labelClasses?: string;
55
+ }>, {
56
+ wrapperClasses: undefined;
57
+ errorMessage: undefined;
58
+ label: undefined;
59
+ optionLabel: string;
60
+ fetchOnOpen: boolean;
61
+ openDirection: string;
62
+ dropdownClasses: undefined;
63
+ additionalClasses: undefined;
64
+ labelClasses: undefined;
65
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
66
+ wrapperClasses?: string;
67
+ hasError?: boolean;
68
+ errorMessage?: string;
69
+ label?: string;
70
+ optionLabel?: string;
71
+ fetchOnOpen?: boolean;
72
+ openDirection?: OpenDirection;
73
+ dropdownClasses?: string;
74
+ additionalClasses?: Record<string, string>;
75
+ labelClasses?: string;
76
+ }>, {
77
+ wrapperClasses: undefined;
78
+ errorMessage: undefined;
79
+ label: undefined;
80
+ optionLabel: string;
81
+ fetchOnOpen: boolean;
82
+ openDirection: string;
83
+ dropdownClasses: undefined;
84
+ additionalClasses: undefined;
85
+ labelClasses: undefined;
86
+ }>>>, {
87
+ label: string;
88
+ openDirection: OpenDirection;
89
+ errorMessage: string;
90
+ wrapperClasses: string;
91
+ labelClasses: string;
92
+ optionLabel: string;
93
+ fetchOnOpen: boolean;
94
+ dropdownClasses: string;
95
+ additionalClasses: Record<string, string>;
96
+ }, {}>;
97
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
96
98
  export default _default;
97
99
  type __VLS_WithDefaults<P, D> = {
98
100
  [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
@@ -1,6 +1,8 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
1
+ declare function __VLS_template(): {
2
2
  default?(_: {}): any;
3
- }>;
3
+ };
4
+ declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
5
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
4
6
  export default _default;
5
7
  type __VLS_WithTemplateSlots<T, S> = T & {
6
8
  new (): {
@@ -1,13 +1,15 @@
1
1
  import type { TimelineProps } from './index.d';
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<TimelineProps>, {
2
+ declare function __VLS_template(): {
3
+ default?(_: {}): any;
4
+ };
5
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<TimelineProps>, {
3
6
  type: string;
4
7
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<TimelineProps>, {
5
8
  type: string;
6
9
  }>>>, {
7
10
  type: import("./index.d").TimelineType;
8
- }, {}>, {
9
- default?(_: {}): any;
10
- }>;
11
+ }, {}>;
12
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
11
13
  export default _default;
12
14
  type __VLS_WithDefaults<P, D> = {
13
15
  [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
@@ -1,11 +1,5 @@
1
- import type { TimelineItemProps } from '.';
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<TimelineItemProps>, {
3
- itemType: string;
4
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<TimelineItemProps>, {
5
- itemType: string;
6
- }>>>, {
7
- itemType: import(".").TimelineType;
8
- }, {}>, {
1
+ import type { TimelineItemProps } from './index.d';
2
+ declare function __VLS_template(): {
9
3
  icon?(_: {
10
4
  value: import("vue").Component | undefined;
11
5
  }): any;
@@ -18,7 +12,15 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
18
12
  default?(_: {
19
13
  value: string | undefined;
20
14
  }): any;
21
- }>;
15
+ };
16
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<TimelineItemProps>, {
17
+ itemType: string;
18
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<TimelineItemProps>, {
19
+ itemType: string;
20
+ }>>>, {
21
+ itemType: import("./index.d").TimelineType;
22
+ }, {}>;
23
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
22
24
  export default _default;
23
25
  type __VLS_WithDefaults<P, D> = {
24
26
  [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
@@ -1,4 +1,4 @@
1
- import type { TimelineItemIconProps } from '.';
1
+ import type { TimelineItemIconProps } from './index.d';
2
2
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<TimelineItemIconProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<TimelineItemIconProps>>>, {}, {}>;
3
3
  export default _default;
4
4
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -0,0 +1,3 @@
1
+ import type { TimelineBadgeType } from './index.d';
2
+ export declare const types: readonly ["plain", "default", "success", "warning", "error", "info", "inactive"];
3
+ export declare const domClassesPerType: Record<TimelineBadgeType, string[]>;
@@ -2,7 +2,7 @@ import type { Component, MaybeRef } from 'vue';
2
2
  import type { NavigationItem, Logo } from './index.d';
3
3
  export declare function useNavigation(): {
4
4
  setNavigationItems: (items: MaybeRef<NavigationItem[]>) => void;
5
- setNavigationComponent: (value: 'a' | Component) => void;
5
+ setNavigationComponent: (value: "a" | Component) => void;
6
6
  setLogo: (logo: Logo) => void;
7
7
  setAvatar: (avatar: Component) => void;
8
8
  openMainMenu: () => void;
@@ -17,28 +17,28 @@ export declare function useNavigation(): {
17
17
  mobileMenuOpenTransition: import("vue").ShallowRef<boolean>;
18
18
  navigationComponent: import("vue").ShallowRef<import("vue").ComponentOptions<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, any, any, any, any>> | import("vue").ShallowRef<import("vue").FunctionalComponent<any, {}, any, {}>> | import("vue").ShallowRef<{
19
19
  new (...args: any[]): any;
20
- __isFragment?: undefined;
21
- __isTeleport?: undefined;
22
- __isSuspense?: undefined;
20
+ __isFragment?: never;
21
+ __isTeleport?: never;
22
+ __isSuspense?: never;
23
23
  }> | import("vue").ShallowRef<"a">;
24
24
  logo: import("vue").ShallowRef<import("vue").ComponentOptions<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, any, any, any, any>> | import("vue").ShallowRef<import("vue").FunctionalComponent<any, {}, any, {}>> | import("vue").ShallowRef<{
25
25
  new (...args: any[]): any;
26
- __isFragment?: undefined;
27
- __isTeleport?: undefined;
28
- __isSuspense?: undefined;
26
+ __isFragment?: never;
27
+ __isTeleport?: never;
28
+ __isSuspense?: never;
29
29
  }> | import("vue").ShallowRef<null> | import("vue").ShallowRef<string>;
30
30
  avatar: import("vue").ShallowRef<import("vue").ComponentOptions<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, any, any, any, any>> | import("vue").ShallowRef<import("vue").FunctionalComponent<any, {}, any, {}>> | import("vue").ShallowRef<{
31
31
  new (...args: any[]): any;
32
- __isFragment?: undefined;
33
- __isTeleport?: undefined;
34
- __isSuspense?: undefined;
32
+ __isFragment?: never;
33
+ __isTeleport?: never;
34
+ __isSuspense?: never;
35
35
  }> | import("vue").ShallowRef<null>;
36
36
  contactRoute: import("vue").ShallowRef<string | null | undefined>;
37
37
  contactIcon: import("vue").ShallowRef<import("vue").ComponentOptions<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, any, any, any, any>> | import("vue").ShallowRef<import("vue").FunctionalComponent<any, {}, any, {}>> | import("vue").ShallowRef<{
38
38
  new (...args: any[]): any;
39
- __isFragment?: undefined;
40
- __isTeleport?: undefined;
41
- __isSuspense?: undefined;
39
+ __isFragment?: never;
40
+ __isTeleport?: never;
41
+ __isSuspense?: never;
42
42
  }> | import("vue").ShallowRef<string>;
43
43
  };
44
44
  export type { NavigationItem, Logo };
@@ -1,7 +1,7 @@
1
1
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
2
- primaryColor?: string | undefined;
2
+ primaryColor?: string;
3
3
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
4
- primaryColor?: string | undefined;
4
+ primaryColor?: string;
5
5
  }>>>, {}, {}>;
6
6
  export default _default;
7
7
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -1,11 +1,12 @@
1
1
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
2
- primaryColor?: string | undefined;
3
- secondaryColor?: string | undefined;
2
+ primaryColor?: string;
3
+ secondaryColor?: string;
4
4
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
5
- primaryColor?: string | undefined;
6
- secondaryColor?: string | undefined;
5
+ primaryColor?: string;
6
+ secondaryColor?: string;
7
7
  }>>>, {}, {}>;
8
8
  export default _default;
9
+
9
10
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
10
11
  type __VLS_TypePropsToOption<T> = {
11
12
  [K in keyof T]-?: {} extends Pick<T, K> ? {
@@ -1,9 +1,9 @@
1
1
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
2
- primaryColor?: string | undefined;
3
- secondaryColor?: string | undefined;
2
+ primaryColor?: string;
3
+ secondaryColor?: string;
4
4
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
5
- primaryColor?: string | undefined;
6
- secondaryColor?: string | undefined;
5
+ primaryColor?: string;
6
+ secondaryColor?: string;
7
7
  }>>>, {}, {}>;
8
8
  export default _default;
9
9
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -1,9 +1,9 @@
1
1
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
2
- primaryColor?: string | undefined;
3
- secondaryColor?: string | undefined;
2
+ primaryColor?: string;
3
+ secondaryColor?: string;
4
4
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
5
- primaryColor?: string | undefined;
6
- secondaryColor?: string | undefined;
5
+ primaryColor?: string;
6
+ secondaryColor?: string;
7
7
  }>>>, {}, {}>;
8
8
  export default _default;
9
9
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;