@ambita/design-system 6.0.2-421.0 → 6.1.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 (66) hide show
  1. package/README.md +2 -2
  2. package/dist/css/ambita-dark.scss +1 -0
  3. package/dist/css/ambita-light.scss +1 -0
  4. package/dist/css/ambita-old.scss +1 -0
  5. package/dist/css/base.scss +1 -0
  6. package/dist/css/byggesoknaden.scss +1 -0
  7. package/dist/css/neo-tokens.scss +42 -17
  8. package/dist/css/utilities.scss +59 -0
  9. package/dist/ds.cjs +3 -3
  10. package/dist/ds.js +17291 -18235
  11. package/dist/ds.umd.cjs +4 -4
  12. package/dist/index.css +1 -1
  13. package/dist/themes/ambita-dark.css +1 -1
  14. package/dist/themes/ambita-light.css +1 -1
  15. package/dist/themes/ambita-old.css +1 -1
  16. package/dist/themes/byggesoknaden.css +1 -1
  17. package/dist/types/App.vue.d.ts +1 -79
  18. package/dist/types/components/AuxCheckbox/AuxCheckbox.vue.d.ts +51 -0
  19. package/dist/types/components/{Checkbox/CheckboxCard.vue.d.ts → AuxCheckbox/AuxCheckboxCard.vue.d.ts} +9 -0
  20. package/dist/types/components/{Checkbox/CheckboxRegular.vue.d.ts → AuxCheckbox/AuxCheckboxRegular.vue.d.ts} +9 -0
  21. package/dist/types/components/AuxDefinition/AuxDefinition.vue.d.ts +24 -0
  22. package/dist/types/components/AuxModal/AuxModal.vue.d.ts +16 -70
  23. package/dist/types/components/AuxNotification/AuxNotification.vue.d.ts +22 -0
  24. package/dist/types/components/AuxNotification/AuxNotifications.vue.d.ts +15 -0
  25. package/dist/types/components/AuxNotification/constants.d.ts +2 -0
  26. package/dist/types/components/AuxRadio/AuxRadio.vue.d.ts +31 -0
  27. package/dist/types/components/AuxSpinner/AuxSpinner.vue.d.ts +23 -0
  28. package/dist/types/components/AuxTag/AuxTag.vue.d.ts +18 -0
  29. package/dist/types/components/Button/NeoButton.vue.d.ts +2 -0
  30. package/dist/types/components/Button/NeoLoadingButton.vue.d.ts +33 -0
  31. package/dist/types/components/CheckboxDropdown/CheckboxDropdown.vue.d.ts +41 -307
  32. package/dist/types/components/CheckboxGroup/CheckboxGroup.vue.d.ts +17 -310
  33. package/dist/types/components/CheckboxGroup/types.d.ts +6 -0
  34. package/dist/types/components/Details/Details.vue.d.ts +5 -12
  35. package/dist/types/components/DirectionalArrow/DirectionalArrow.vue.d.ts +6 -14
  36. package/dist/types/components/FormElement/FormElement.vue.d.ts +5 -12
  37. package/dist/types/components/Input/Input.vue.d.ts +6 -13
  38. package/dist/types/components/Input/NeoInput.vue.d.ts +2 -2
  39. package/dist/types/components/NeoBanner/NeoBanner.vue.d.ts +1 -1
  40. package/dist/types/components/NeoComboBox/NeoComboBox.vue.d.ts +1 -1
  41. package/dist/types/components/NeoDatePicker/NeoDatePicker.vue.d.ts +2 -2
  42. package/dist/types/components/NeoSelect/NeoSelect.vue.d.ts +1 -1
  43. package/dist/types/components/NeoTagsInput/TagsInput.vue.d.ts +2 -2
  44. package/dist/types/components/RadioGroup/RadioGroup.vue.d.ts +18 -309
  45. package/dist/types/components/RadioGroup/RadioGroupCardElement.vue.d.ts +1 -1
  46. package/dist/types/components/RadioGroup/RadioGroupElement.vue.d.ts +1 -1
  47. package/dist/types/components/Select/Select.vue.d.ts +6 -13
  48. package/dist/types/components/StatusBadge/StatusBadge.vue.d.ts +19 -44
  49. package/dist/types/components/TextArea/TextArea.vue.d.ts +6 -13
  50. package/dist/types/components/Typography/NeoFormField.vue.d.ts +2 -3
  51. package/dist/types/components/Upload/Upload.vue.d.ts +5 -12
  52. package/dist/types/index.d.ts +10 -6
  53. package/dist/types/main.d.ts +0 -1
  54. package/package.json +80 -75
  55. package/dist/types/components/Checkbox/Checkbox.vue.d.ts +0 -239
  56. package/dist/types/components/Definition/Definition.vue.d.ts +0 -59
  57. package/dist/types/components/Notification/Notification.vue.d.ts +0 -35
  58. package/dist/types/components/Notification/Notifications.vue.d.ts +0 -53
  59. package/dist/types/components/Notification/constants.d.ts +0 -2
  60. package/dist/types/components/Radio/Radio.vue.d.ts +0 -51
  61. package/dist/types/components/Spinner/Spinner.vue.d.ts +0 -23
  62. package/dist/types/components/Tag/Tag.vue.d.ts +0 -22
  63. /package/dist/types/components/{Checkbox → AuxCheckbox}/constants.d.ts +0 -0
  64. /package/dist/types/components/{Spinner → AuxSpinner}/constants.d.ts +0 -0
  65. /package/dist/types/components/{Tag → AuxTag}/Colors.d.ts +0 -0
  66. /package/dist/types/components/{Seperator → Separator}/NeoSeparator.vue.d.ts +0 -0
@@ -0,0 +1,51 @@
1
+ type __VLS_Props = {
2
+ value?: string | number | boolean;
3
+ disabled?: boolean;
4
+ id?: string;
5
+ name?: string;
6
+ /** @deprecated Use v-model instead */
7
+ selected?: boolean;
8
+ modelValue?: boolean;
9
+ indeterminate?: boolean;
10
+ layout?: 'regular' | 'card';
11
+ hideLabel?: boolean;
12
+ };
13
+ declare var __VLS_10: {};
14
+ type __VLS_Slots = {} & {
15
+ default?: (props: typeof __VLS_10) => any;
16
+ };
17
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18
+ "update:modelValue": (value: boolean) => any;
19
+ change: (value: {
20
+ checked: boolean;
21
+ option: string | number | boolean | undefined;
22
+ }) => any;
23
+ "update:selected": (value: {
24
+ checked: boolean;
25
+ option: string | number | boolean | undefined;
26
+ }) => any;
27
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
28
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
29
+ onChange?: ((value: {
30
+ checked: boolean;
31
+ option: string | number | boolean | undefined;
32
+ }) => any) | undefined;
33
+ "onUpdate:selected"?: ((value: {
34
+ checked: boolean;
35
+ option: string | number | boolean | undefined;
36
+ }) => any) | undefined;
37
+ }>, {
38
+ id: string;
39
+ selected: boolean;
40
+ hideLabel: boolean;
41
+ layout: "regular" | "card";
42
+ indeterminate: boolean;
43
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
44
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
45
+ declare const _default: typeof __VLS_export;
46
+ export default _default;
47
+ type __VLS_WithSlots<T, S> = T & {
48
+ new (): {
49
+ $slots: S;
50
+ };
51
+ };
@@ -23,6 +23,10 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
23
23
  type: BooleanConstructor;
24
24
  default: boolean;
25
25
  };
26
+ hideLabel: {
27
+ type: BooleanConstructor;
28
+ default: boolean;
29
+ };
26
30
  }>, {
27
31
  changeEvent: (event: Event) => void;
28
32
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
@@ -48,11 +52,16 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
48
52
  type: BooleanConstructor;
49
53
  default: boolean;
50
54
  };
55
+ hideLabel: {
56
+ type: BooleanConstructor;
57
+ default: boolean;
58
+ };
51
59
  }>> & Readonly<{
52
60
  onChange?: ((...args: any[]) => any) | undefined;
53
61
  }>, {
54
62
  disabled: boolean;
55
63
  id: string;
56
64
  selected: boolean;
65
+ hideLabel: boolean;
57
66
  indeterminate: boolean;
58
67
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -23,6 +23,10 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
23
23
  type: BooleanConstructor;
24
24
  default: boolean;
25
25
  };
26
+ hideLabel: {
27
+ type: BooleanConstructor;
28
+ default: boolean;
29
+ };
26
30
  }>, {
27
31
  changeEvent: (event: Event) => void;
28
32
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
@@ -48,11 +52,16 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
48
52
  type: BooleanConstructor;
49
53
  default: boolean;
50
54
  };
55
+ hideLabel: {
56
+ type: BooleanConstructor;
57
+ default: boolean;
58
+ };
51
59
  }>> & Readonly<{
52
60
  onChange?: ((...args: any[]) => any) | undefined;
53
61
  }>, {
54
62
  disabled: boolean;
55
63
  id: string;
56
64
  selected: boolean;
65
+ hideLabel: boolean;
57
66
  indeterminate: boolean;
58
67
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -0,0 +1,24 @@
1
+ type __VLS_Props = {
2
+ label: string;
3
+ suffix?: string;
4
+ vertical?: boolean;
5
+ dataTestid?: string;
6
+ size?: 'small' | 'medium' | 'large';
7
+ };
8
+ declare var __VLS_1: {};
9
+ type __VLS_Slots = {} & {
10
+ default?: (props: typeof __VLS_1) => any;
11
+ };
12
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
13
+ vertical: boolean;
14
+ size: "small" | "medium" | "large";
15
+ suffix: string;
16
+ }, {}, {}, {}, 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;
19
+ export default _default;
20
+ type __VLS_WithSlots<T, S> = T & {
21
+ new (): {
22
+ $slots: S;
23
+ };
24
+ };
@@ -1,84 +1,30 @@
1
- import type { PropType } from 'vue';
2
1
  import type { Action } from '@/components/AuxModal/Action';
2
+ type __VLS_Props = {
3
+ actions?: Action[];
4
+ id?: string;
5
+ size?: 'small' | 'medium' | 'large' | 'x-large';
6
+ title?: string;
7
+ buttonsMobileLayout?: 'vertical' | 'horizontal';
8
+ dataTestid?: string;
9
+ disableCloseOnOutsideClick?: boolean;
10
+ };
3
11
  declare var __VLS_6: {}, __VLS_15: {};
4
12
  type __VLS_Slots = {} & {
5
13
  default?: (props: typeof __VLS_6) => any;
6
14
  } & {
7
15
  footerRight?: (props: typeof __VLS_15) => any;
8
16
  };
9
- declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
10
- actions: {
11
- type: PropType<Action[]>;
12
- default: () => never[];
13
- };
14
- id: {
15
- type: StringConstructor;
16
- default: (<T extends ArrayLike<number>>(options: import("uuid").V4Options | null | undefined, buffer: T, offset?: number) => T) & ((options?: import("uuid").V4Options) => string);
17
- };
18
- size: {
19
- type: StringConstructor;
20
- default: string;
21
- validator: (value: string) => boolean;
22
- };
23
- title: {
24
- type: StringConstructor;
25
- validator: (value: string) => boolean;
26
- };
27
- buttonsMobileLayout: {
28
- type: PropType<"vertical" | "horizontal">;
29
- default: string;
30
- validator: (value: string) => boolean;
31
- };
32
- dataTestid: {
33
- type: StringConstructor;
34
- required: false;
35
- };
36
- disableCloseOnOutsideClick: {
37
- type: BooleanConstructor;
38
- required: false;
39
- };
40
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
41
- [x: string]: (...args: any[]) => any;
42
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
43
- actions: {
44
- type: PropType<Action[]>;
45
- default: () => never[];
46
- };
47
- id: {
48
- type: StringConstructor;
49
- default: (<T extends ArrayLike<number>>(options: import("uuid").V4Options | null | undefined, buffer: T, offset?: number) => T) & ((options?: import("uuid").V4Options) => string);
50
- };
51
- size: {
52
- type: StringConstructor;
53
- default: string;
54
- validator: (value: string) => boolean;
55
- };
56
- title: {
57
- type: StringConstructor;
58
- validator: (value: string) => boolean;
59
- };
60
- buttonsMobileLayout: {
61
- type: PropType<"vertical" | "horizontal">;
62
- default: string;
63
- validator: (value: string) => boolean;
64
- };
65
- dataTestid: {
66
- type: StringConstructor;
67
- required: false;
68
- };
69
- disableCloseOnOutsideClick: {
70
- type: BooleanConstructor;
71
- required: false;
72
- };
73
- }>> & Readonly<{
74
- [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
17
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18
+ [x: string]: (...args: unknown[]) => any;
19
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
20
+ [x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
75
21
  }>, {
76
- size: string;
22
+ size: "small" | "medium" | "large" | "x-large";
77
23
  id: string;
78
24
  actions: Action[];
79
- buttonsMobileLayout: "horizontal" | "vertical";
25
+ buttonsMobileLayout: "vertical" | "horizontal";
80
26
  disableCloseOnOutsideClick: boolean;
81
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
27
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
82
28
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
83
29
  declare const _default: typeof __VLS_export;
84
30
  export default _default;
@@ -0,0 +1,22 @@
1
+ import type { AuxNotificationData } from './AuxNotification';
2
+ type __VLS_Props = {
3
+ type: AuxNotificationData['type'];
4
+ id: string;
5
+ };
6
+ declare var __VLS_6: {};
7
+ type __VLS_Slots = {} & {
8
+ default?: (props: typeof __VLS_6) => any;
9
+ };
10
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
11
+ "remove-notification": (id: string) => any;
12
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
13
+ "onRemove-notification"?: ((id: string) => any) | undefined;
14
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
16
+ declare const _default: typeof __VLS_export;
17
+ export default _default;
18
+ type __VLS_WithSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -0,0 +1,15 @@
1
+ import type { AuxNotificationData } from './AuxNotification';
2
+ type __VLS_Props = {
3
+ notifications?: AuxNotificationData[];
4
+ position?: 'bottom-right' | 'top-right';
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
+ "remove-notification": (id: string) => any;
8
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
9
+ "onRemove-notification"?: ((id: string) => any) | undefined;
10
+ }>, {
11
+ notifications: AuxNotificationData[];
12
+ position: "bottom-right" | "top-right";
13
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
14
+ declare const _default: typeof __VLS_export;
15
+ export default _default;
@@ -0,0 +1,2 @@
1
+ import type { AuxNotificationData } from './AuxNotification';
2
+ export declare const TYPES: AuxNotificationData['type'][];
@@ -0,0 +1,31 @@
1
+ type __VLS_Props = {
2
+ value?: string | number;
3
+ disabled?: boolean;
4
+ id?: string;
5
+ name: string;
6
+ /** @deprecated Use v-model instead */
7
+ selected?: string | number;
8
+ modelValue?: string | number;
9
+ };
10
+ declare var __VLS_1: {};
11
+ type __VLS_Slots = {} & {
12
+ default?: (props: typeof __VLS_1) => any;
13
+ };
14
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
15
+ "update:modelValue": (value: string) => any;
16
+ change: (value: string) => any;
17
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
18
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
19
+ onChange?: ((value: string) => any) | undefined;
20
+ }>, {
21
+ disabled: boolean;
22
+ id: string;
23
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
24
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
25
+ declare const _default: typeof __VLS_export;
26
+ export default _default;
27
+ type __VLS_WithSlots<T, S> = T & {
28
+ new (): {
29
+ $slots: S;
30
+ };
31
+ };
@@ -0,0 +1,23 @@
1
+ type __VLS_Props = {
2
+ size?: 'small' | 'medium' | 'large';
3
+ /** Text announced to screen readers. Should always be provided so screen reader users get meaningful feedback. */
4
+ label?: string;
5
+ dataTestid?: string;
6
+ };
7
+ declare var __VLS_1: {}, __VLS_3: {};
8
+ type __VLS_Slots = {} & {
9
+ default?: (props: typeof __VLS_1) => any;
10
+ } & {
11
+ default?: (props: typeof __VLS_3) => any;
12
+ };
13
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
14
+ size: "small" | "medium" | "large";
15
+ }, {}, {}, {}, 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;
18
+ export default _default;
19
+ type __VLS_WithSlots<T, S> = T & {
20
+ new (): {
21
+ $slots: S;
22
+ };
23
+ };
@@ -0,0 +1,18 @@
1
+ type __VLS_Props = {
2
+ color?: 'grey-2' | 'yellow' | 'red' | 'mint-3' | 'mint-1' | 'blue' | 'purple-1' | 'purple-2';
3
+ };
4
+ declare var __VLS_1: {};
5
+ type __VLS_Slots = {} & {
6
+ default?: (props: typeof __VLS_1) => any;
7
+ };
8
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
9
+ color: "grey-2" | "yellow" | "red" | "mint-3" | "mint-1" | "blue" | "purple-1" | "purple-2";
10
+ }, {}, {}, {}, 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;
13
+ export default _default;
14
+ type __VLS_WithSlots<T, S> = T & {
15
+ new (): {
16
+ $slots: S;
17
+ };
18
+ };
@@ -1,6 +1,7 @@
1
1
  interface Props {
2
2
  primary?: boolean;
3
3
  secondary?: boolean;
4
+ tertiary?: boolean;
4
5
  disabled?: boolean;
5
6
  size?: 'small' | 'medium';
6
7
  dataTestid?: string;
@@ -22,6 +23,7 @@ declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, i
22
23
  size: "small" | "medium";
23
24
  stackDirection: "horizontal" | "vertical" | "none";
24
25
  secondary: boolean;
26
+ tertiary: boolean;
25
27
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
26
28
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
27
29
  declare const _default: typeof __VLS_export;
@@ -0,0 +1,33 @@
1
+ interface Props {
2
+ primary?: boolean;
3
+ secondary?: boolean;
4
+ tertiary?: boolean;
5
+ loading?: boolean;
6
+ disabled?: boolean;
7
+ size?: 'small' | 'medium';
8
+ dataTestid?: string;
9
+ type?: 'button' | 'submit' | 'reset';
10
+ /** Screen reader text announced while loading. */
11
+ label?: string;
12
+ }
13
+ declare var __VLS_13: {};
14
+ type __VLS_Slots = {} & {
15
+ default?: (props: typeof __VLS_13) => any;
16
+ };
17
+ declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
18
+ primary: boolean;
19
+ type: "button" | "submit" | "reset";
20
+ disabled: boolean;
21
+ size: "small" | "medium";
22
+ secondary: boolean;
23
+ tertiary: boolean;
24
+ loading: boolean;
25
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
26
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
27
+ declare const _default: typeof __VLS_export;
28
+ export default _default;
29
+ type __VLS_WithSlots<T, S> = T & {
30
+ new (): {
31
+ $slots: S;
32
+ };
33
+ };