@codeandfunction/callaloo 1.12.0 → 1.13.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 (41) hide show
  1. package/dist/assets/index.css +1 -1
  2. package/dist/components/Assets/Icon.vue.d.ts +3 -25
  3. package/dist/components/Buttons/A11yButton.vue.d.ts +11 -29
  4. package/dist/components/Buttons/Button.vue.d.ts +0 -1
  5. package/dist/components/Containers/Card.vue.d.ts +12 -58
  6. package/dist/components/Containers/Carousel/Carousel.vue.d.ts +12 -35
  7. package/dist/components/Containers/Carousel/CarouselNavigation.vue.d.ts +1 -11
  8. package/dist/components/Containers/Disclosure.vue.d.ts +9 -48
  9. package/dist/components/Form/Checkbox.vue.d.ts +2 -28
  10. package/dist/components/Form/Input.vue.d.ts +2 -32
  11. package/dist/components/Form/InputMessages.vue.d.ts +1 -11
  12. package/dist/components/Form/RadioButton.vue.d.ts +2 -28
  13. package/dist/components/Form/Select.vue.d.ts +2 -30
  14. package/dist/components/Form/TextArea.vue.d.ts +2 -32
  15. package/dist/components/Indicators/Badge.vue.d.ts +3 -27
  16. package/dist/components/Indicators/Banner.vue.d.ts +3 -35
  17. package/dist/components/Indicators/Pill.vue.d.ts +3 -29
  18. package/dist/components/Loading/Skeleton.vue.d.ts +2 -28
  19. package/dist/components/Loading/Spinner.vue.d.ts +3 -31
  20. package/dist/components/Modals/CLModal.vue.d.ts +31 -0
  21. package/dist/components/Navigation/Link.vue.d.ts +11 -38
  22. package/dist/components/Navigation/NavLink.vue.d.ts +11 -34
  23. package/dist/components/Navigation/NavSection.vue.d.ts +2 -26
  24. package/dist/components/Popups/DropdownMenu.vue.d.ts +211 -44
  25. package/dist/components/Popups/Toast.vue.d.ts +2 -30
  26. package/dist/components/Table/Table.vue.d.ts +9 -32
  27. package/dist/components/Table/TableBody.vue.d.ts +7 -2
  28. package/dist/components/Table/TableCell.vue.d.ts +13 -34
  29. package/dist/components/Table/TableFooter.vue.d.ts +7 -2
  30. package/dist/components/Table/TableHeader.vue.d.ts +7 -2
  31. package/dist/components/Table/TableNestedCell.vue.d.ts +8 -12
  32. package/dist/components/Table/TableRow.vue.d.ts +9 -13
  33. package/dist/components/Typography/Heading.vue.d.ts +0 -1
  34. package/dist/components/Typography/Text.vue.d.ts +0 -1
  35. package/dist/composables/useDropdown.d.ts +0 -1
  36. package/dist/composables/useEsc.d.ts +0 -1
  37. package/dist/index.d.ts +1 -0
  38. package/dist/index.js +332 -228
  39. package/dist/index.js.map +1 -1
  40. package/dist/types.d.ts +4 -1
  41. package/package.json +32 -25
@@ -1,42 +1,10 @@
1
- import { CLAlign, CLBannerProps, CLThemes } from '../../index';
2
-
3
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<CLBannerProps>, {
4
- busy: boolean;
5
- theme: CLThemes;
6
- align: CLAlign;
7
- width: string;
8
- height: string;
9
- rounded: boolean;
10
- }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<CLBannerProps>, {
11
- busy: boolean;
12
- theme: CLThemes;
13
- align: CLAlign;
14
- width: string;
15
- height: string;
16
- rounded: boolean;
17
- }>>> & Readonly<{}>, {
1
+ import { CLAlign, CLBannerProps } from '../../index';
2
+ declare const _default: import('vue').DefineComponent<CLBannerProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<CLBannerProps> & Readonly<{}>, {
18
3
  rounded: boolean;
19
4
  theme: import('../../types').BannerThemes;
20
5
  busy: boolean;
21
6
  width: string;
22
7
  height: string;
23
8
  align: CLAlign;
24
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
9
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
25
10
  export default _default;
26
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
27
- type __VLS_TypePropsToRuntimeProps<T> = {
28
- [K in keyof T]-?: {} extends Pick<T, K> ? {
29
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
30
- } : {
31
- type: import('vue').PropType<T[K]>;
32
- required: true;
33
- };
34
- };
35
- type __VLS_WithDefaults<P, D> = {
36
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
37
- default: D[K];
38
- }> : P[K];
39
- };
40
- type __VLS_Prettify<T> = {
41
- [K in keyof T]: T[K];
42
- } & {};
@@ -1,5 +1,4 @@
1
- import { CLIconNames, CLPillThemes, CLThemes } from '../../index';
2
-
1
+ import { CLIconNames, CLPillThemes } from '../../index';
3
2
  export interface Props {
4
3
  label: string;
5
4
  count?: number;
@@ -9,34 +8,9 @@ export interface Props {
9
8
  theme?: CLPillThemes;
10
9
  onClick?: () => void;
11
10
  }
12
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
13
- elevated: boolean;
14
- rounded: boolean;
15
- theme: CLThemes;
16
- }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
17
- elevated: boolean;
18
- rounded: boolean;
19
- theme: CLThemes;
20
- }>>> & Readonly<{}>, {
11
+ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
21
12
  rounded: boolean;
22
13
  elevated: boolean;
23
14
  theme: CLPillThemes;
24
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
15
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
25
16
  export default _default;
26
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
27
- type __VLS_TypePropsToRuntimeProps<T> = {
28
- [K in keyof T]-?: {} extends Pick<T, K> ? {
29
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
30
- } : {
31
- type: import('vue').PropType<T[K]>;
32
- required: true;
33
- };
34
- };
35
- type __VLS_WithDefaults<P, D> = {
36
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
37
- default: D[K];
38
- }> : P[K];
39
- };
40
- type __VLS_Prettify<T> = {
41
- [K in keyof T]: T[K];
42
- } & {};
@@ -1,39 +1,13 @@
1
1
  import { CLBorderRadius } from '../../index';
2
-
3
2
  export interface Props {
4
3
  borderRadius?: CLBorderRadius;
5
4
  height?: string;
6
5
  rounded?: boolean;
7
6
  width?: string;
8
7
  }
9
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
10
- rounded: boolean;
11
- height: string;
12
- width: string;
13
- }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
14
- rounded: boolean;
15
- height: string;
16
- width: string;
17
- }>>> & Readonly<{}>, {
8
+ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
18
9
  rounded: boolean;
19
10
  width: string;
20
11
  height: string;
21
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
12
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
22
13
  export default _default;
23
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
24
- type __VLS_TypePropsToRuntimeProps<T> = {
25
- [K in keyof T]-?: {} extends Pick<T, K> ? {
26
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
27
- } : {
28
- type: import('vue').PropType<T[K]>;
29
- required: true;
30
- };
31
- };
32
- type __VLS_WithDefaults<P, D> = {
33
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
34
- default: D[K];
35
- }> : P[K];
36
- };
37
- type __VLS_Prettify<T> = {
38
- [K in keyof T]: T[K];
39
- } & {};
@@ -1,42 +1,14 @@
1
- import { CLAlign, CLPosition, CLSpinnerThemes, CLSizes, CLThemes } from '../../index';
2
-
1
+ import { CLAlign, CLPosition, CLSpinnerThemes, CLSizes } from '../../index';
3
2
  export interface Props {
4
3
  theme?: CLSpinnerThemes;
5
4
  size?: CLSizes;
6
5
  align?: CLAlign;
7
6
  position?: CLPosition;
8
7
  }
9
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
10
- theme: CLThemes;
11
- size: CLSizes;
12
- align: CLAlign;
13
- position: CLPosition;
14
- }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
15
- theme: CLThemes;
16
- size: CLSizes;
17
- align: CLAlign;
18
- position: CLPosition;
19
- }>>> & Readonly<{}>, {
8
+ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
20
9
  theme: CLSpinnerThemes;
21
10
  align: CLAlign;
22
11
  size: CLSizes;
23
12
  position: CLPosition;
24
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
13
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
25
14
  export default _default;
26
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
27
- type __VLS_TypePropsToRuntimeProps<T> = {
28
- [K in keyof T]-?: {} extends Pick<T, K> ? {
29
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
30
- } : {
31
- type: import('vue').PropType<T[K]>;
32
- required: true;
33
- };
34
- };
35
- type __VLS_WithDefaults<P, D> = {
36
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
37
- default: D[K];
38
- }> : P[K];
39
- };
40
- type __VLS_Prettify<T> = {
41
- [K in keyof T]: T[K];
42
- } & {};
@@ -0,0 +1,31 @@
1
+ import { CLBorderRadius } from '../../index';
2
+ interface Props {
3
+ borderRadius?: CLBorderRadius;
4
+ fullscreen?: boolean;
5
+ isOpen: boolean;
6
+ onClose: () => void;
7
+ title?: string;
8
+ zIndex?: number;
9
+ }
10
+ declare function __VLS_template(): {
11
+ slots: {
12
+ body?(_: {}): any;
13
+ footer?(_: {}): any;
14
+ };
15
+ refs: {};
16
+ attrs: Partial<{}>;
17
+ };
18
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
19
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
20
+ borderRadius: CLBorderRadius;
21
+ isOpen: boolean;
22
+ zIndex: number;
23
+ fullscreen: boolean;
24
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
25
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
26
+ export default _default;
27
+ type __VLS_WithTemplateSlots<T, S> = T & {
28
+ new (): {
29
+ $slots: S;
30
+ };
31
+ };
@@ -1,10 +1,9 @@
1
- import { CLLinkTarget, CLSimpleThemes, CLThemes } from '../../index';
2
-
1
+ import { CLLinkTarget, CLSimpleThemes } from '../../index';
3
2
  export interface Props {
4
3
  ariaLabel?: string;
5
4
  external?: boolean;
6
5
  href?: string;
7
- onClick?: (event?: Event) => void;
6
+ onClick?: () => void;
8
7
  rel?: string;
9
8
  target?: CLLinkTarget;
10
9
  theme?: CLSimpleThemes;
@@ -12,49 +11,23 @@ export interface Props {
12
11
  underline?: boolean;
13
12
  }
14
13
  declare function __VLS_template(): {
15
- default?(_: {}): any;
14
+ slots: {
15
+ default?(_: {}): any;
16
+ };
17
+ refs: {};
18
+ attrs: Partial<{}>;
16
19
  };
17
- declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
18
- external: boolean;
19
- rel: string;
20
- testId: string;
21
- theme: CLThemes;
22
- target: CLLinkTarget;
23
- underline: boolean;
24
- }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
25
- external: boolean;
26
- rel: string;
27
- testId: string;
28
- theme: CLThemes;
29
- target: CLLinkTarget;
30
- underline: boolean;
31
- }>>> & Readonly<{}>, {
20
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
21
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
32
22
  testId: string;
33
23
  target: CLLinkTarget;
34
24
  theme: CLSimpleThemes;
35
25
  external: boolean;
36
26
  rel: string;
37
27
  underline: boolean;
38
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
39
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
28
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
29
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
40
30
  export default _default;
41
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
42
- type __VLS_TypePropsToRuntimeProps<T> = {
43
- [K in keyof T]-?: {} extends Pick<T, K> ? {
44
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
45
- } : {
46
- type: import('vue').PropType<T[K]>;
47
- required: true;
48
- };
49
- };
50
- type __VLS_WithDefaults<P, D> = {
51
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
52
- default: D[K];
53
- }> : P[K];
54
- };
55
- type __VLS_Prettify<T> = {
56
- [K in keyof T]: T[K];
57
- } & {};
58
31
  type __VLS_WithTemplateSlots<T, S> = T & {
59
32
  new (): {
60
33
  $slots: S;
@@ -1,54 +1,31 @@
1
- import { CLLinkTarget, CLSimpleThemes, CLThemes } from '../../index';
2
-
1
+ import { CLLinkTarget, CLSimpleThemes } from '../../index';
3
2
  export interface Props {
4
3
  ariaLabel?: string;
5
4
  external?: boolean;
6
5
  href?: string;
7
6
  id?: string;
8
7
  theme?: CLSimpleThemes;
9
- onClick?: (event?: Event) => void;
8
+ onClick?: () => void;
10
9
  rel?: string;
11
10
  target?: CLLinkTarget;
12
11
  testId?: string;
13
12
  }
14
13
  declare function __VLS_template(): {
15
- default?(_: {}): any;
14
+ slots: {
15
+ default?(_: {}): any;
16
+ };
17
+ refs: {};
18
+ attrs: Partial<{}>;
16
19
  };
17
- declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
18
- external: boolean;
19
- theme: CLThemes;
20
- testId: string;
21
- rel: string;
22
- }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
23
- external: boolean;
24
- theme: CLThemes;
25
- testId: string;
26
- rel: string;
27
- }>>> & Readonly<{}>, {
20
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
21
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
28
22
  testId: string;
29
23
  theme: CLSimpleThemes;
30
24
  external: boolean;
31
25
  rel: string;
32
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
33
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
26
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
27
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
34
28
  export default _default;
35
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
36
- type __VLS_TypePropsToRuntimeProps<T> = {
37
- [K in keyof T]-?: {} extends Pick<T, K> ? {
38
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
39
- } : {
40
- type: import('vue').PropType<T[K]>;
41
- required: true;
42
- };
43
- };
44
- type __VLS_WithDefaults<P, D> = {
45
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
46
- default: D[K];
47
- }> : P[K];
48
- };
49
- type __VLS_Prettify<T> = {
50
- [K in keyof T]: T[K];
51
- } & {};
52
29
  type __VLS_WithTemplateSlots<T, S> = T & {
53
30
  new (): {
54
31
  $slots: S;
@@ -1,36 +1,12 @@
1
1
  import { CLNavItem, CLOrientation, CLSimpleThemes } from '../../index';
2
-
3
2
  export interface Props {
4
3
  navItems: CLNavItem[];
5
4
  theme?: CLSimpleThemes;
6
5
  testId?: string;
7
6
  type?: CLOrientation;
8
7
  }
9
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
8
+ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
10
9
  testId: string;
11
10
  type: CLOrientation;
12
- }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
13
- testId: string;
14
- type: CLOrientation;
15
- }>>> & Readonly<{}>, {
16
- testId: string;
17
- type: CLOrientation;
18
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
11
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
19
12
  export default _default;
20
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
21
- type __VLS_TypePropsToRuntimeProps<T> = {
22
- [K in keyof T]-?: {} extends Pick<T, K> ? {
23
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
24
- } : {
25
- type: import('vue').PropType<T[K]>;
26
- required: true;
27
- };
28
- };
29
- type __VLS_WithDefaults<P, D> = {
30
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
31
- default: D[K];
32
- }> : P[K];
33
- };
34
- type __VLS_Prettify<T> = {
35
- [K in keyof T]: T[K];
36
- } & {};
@@ -1,5 +1,4 @@
1
1
  import { CLBorderRadius, CLIconNames, CLPlacement, CLSizes, CLThemes } from '../../index';
2
-
3
2
  interface Props {
4
3
  buttonAriaLabel: string;
5
4
  buttonBorderRadius?: CLBorderRadius;
@@ -20,31 +19,216 @@ interface Props {
20
19
  zIndex?: number;
21
20
  }
22
21
  declare function __VLS_template(): {
23
- content?(_: {}): any;
22
+ slots: {
23
+ content?(_: {}): any;
24
+ };
25
+ refs: {
26
+ anchor: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
27
+ alignContent: {
28
+ type: import('vue').PropType<import('../../types').Align>;
29
+ default: import('../../types').Align;
30
+ };
31
+ ariaLabel: {
32
+ type: StringConstructor;
33
+ };
34
+ borderRadius: {
35
+ type: import('vue').PropType<CLBorderRadius>;
36
+ };
37
+ busy: {
38
+ type: BooleanConstructor;
39
+ };
40
+ elevated: {
41
+ type: BooleanConstructor;
42
+ default: boolean;
43
+ };
44
+ form: {
45
+ type: StringConstructor;
46
+ };
47
+ forwardRef: {
48
+ type: FunctionConstructor;
49
+ };
50
+ height: {
51
+ type: StringConstructor;
52
+ default: string;
53
+ };
54
+ iconAfter: {
55
+ type: import('vue').PropType<CLIconNames>;
56
+ };
57
+ iconBefore: {
58
+ type: import('vue').PropType<CLIconNames>;
59
+ };
60
+ iconSize: {
61
+ type: import('vue').PropType<CLSizes>;
62
+ };
63
+ iconAfterSize: {
64
+ type: import('vue').PropType<CLSizes>;
65
+ };
66
+ link: {
67
+ type: BooleanConstructor;
68
+ };
69
+ onClick: {
70
+ type: FunctionConstructor;
71
+ };
72
+ pill: {
73
+ type: BooleanConstructor;
74
+ };
75
+ rounded: {
76
+ type: BooleanConstructor;
77
+ default: boolean;
78
+ };
79
+ size: {
80
+ type: import('vue').PropType<CLSizes>;
81
+ default: CLSizes;
82
+ };
83
+ title: {
84
+ type: StringConstructor;
85
+ };
86
+ testId: {
87
+ type: StringConstructor;
88
+ default: string;
89
+ };
90
+ type: {
91
+ type: import('vue').PropType<import('../../types').ButtonTypes>;
92
+ default: import('../../types').ButtonTypes;
93
+ };
94
+ theme: {
95
+ type: import('vue').PropType<CLThemes>;
96
+ default: CLThemes;
97
+ };
98
+ width: {
99
+ type: StringConstructor;
100
+ default: string;
101
+ };
102
+ wrap: {
103
+ type: BooleanConstructor;
104
+ default: boolean;
105
+ };
106
+ }>> & Readonly<{}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
107
+ [key: string]: any;
108
+ }>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
109
+ rounded: boolean;
110
+ testId: string;
111
+ type: import('../../types').ButtonTypes;
112
+ link: boolean;
113
+ elevated: boolean;
114
+ theme: CLThemes;
115
+ busy: boolean;
116
+ width: string;
117
+ height: string;
118
+ alignContent: import('../../types').Align;
119
+ pill: boolean;
120
+ size: CLSizes;
121
+ wrap: boolean;
122
+ }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
123
+ P: {};
124
+ B: {};
125
+ D: {};
126
+ C: {};
127
+ M: {};
128
+ Defaults: {};
129
+ }, Readonly<import('vue').ExtractPropTypes<{
130
+ alignContent: {
131
+ type: import('vue').PropType<import('../../types').Align>;
132
+ default: import('../../types').Align;
133
+ };
134
+ ariaLabel: {
135
+ type: StringConstructor;
136
+ };
137
+ borderRadius: {
138
+ type: import('vue').PropType<CLBorderRadius>;
139
+ };
140
+ busy: {
141
+ type: BooleanConstructor;
142
+ };
143
+ elevated: {
144
+ type: BooleanConstructor;
145
+ default: boolean;
146
+ };
147
+ form: {
148
+ type: StringConstructor;
149
+ };
150
+ forwardRef: {
151
+ type: FunctionConstructor;
152
+ };
153
+ height: {
154
+ type: StringConstructor;
155
+ default: string;
156
+ };
157
+ iconAfter: {
158
+ type: import('vue').PropType<CLIconNames>;
159
+ };
160
+ iconBefore: {
161
+ type: import('vue').PropType<CLIconNames>;
162
+ };
163
+ iconSize: {
164
+ type: import('vue').PropType<CLSizes>;
165
+ };
166
+ iconAfterSize: {
167
+ type: import('vue').PropType<CLSizes>;
168
+ };
169
+ link: {
170
+ type: BooleanConstructor;
171
+ };
172
+ onClick: {
173
+ type: FunctionConstructor;
174
+ };
175
+ pill: {
176
+ type: BooleanConstructor;
177
+ };
178
+ rounded: {
179
+ type: BooleanConstructor;
180
+ default: boolean;
181
+ };
182
+ size: {
183
+ type: import('vue').PropType<CLSizes>;
184
+ default: CLSizes;
185
+ };
186
+ title: {
187
+ type: StringConstructor;
188
+ };
189
+ testId: {
190
+ type: StringConstructor;
191
+ default: string;
192
+ };
193
+ type: {
194
+ type: import('vue').PropType<import('../../types').ButtonTypes>;
195
+ default: import('../../types').ButtonTypes;
196
+ };
197
+ theme: {
198
+ type: import('vue').PropType<CLThemes>;
199
+ default: CLThemes;
200
+ };
201
+ width: {
202
+ type: StringConstructor;
203
+ default: string;
204
+ };
205
+ wrap: {
206
+ type: BooleanConstructor;
207
+ default: boolean;
208
+ };
209
+ }>> & Readonly<{}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
210
+ [key: string]: any;
211
+ }>, {}, {}, {}, {
212
+ rounded: boolean;
213
+ testId: string;
214
+ type: import('../../types').ButtonTypes;
215
+ link: boolean;
216
+ elevated: boolean;
217
+ theme: CLThemes;
218
+ busy: boolean;
219
+ width: string;
220
+ height: string;
221
+ alignContent: import('../../types').Align;
222
+ pill: boolean;
223
+ size: CLSizes;
224
+ wrap: boolean;
225
+ }> | null;
226
+ dropdownElem: HTMLDivElement;
227
+ };
228
+ attrs: Partial<{}>;
24
229
  };
25
- declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
26
- buttonSize: CLSizes;
27
- buttonTheme: CLThemes;
28
- containerTheme: CLThemes;
29
- contentWidth: string;
30
- iconAfter: CLIconNames;
31
- iconAfterSize: CLSizes;
32
- iconSize: CLSizes;
33
- isOpen: boolean;
34
- placement: CLPlacement;
35
- zIndex: number;
36
- }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
37
- buttonSize: CLSizes;
38
- buttonTheme: CLThemes;
39
- containerTheme: CLThemes;
40
- contentWidth: string;
41
- iconAfter: CLIconNames;
42
- iconAfterSize: CLSizes;
43
- iconSize: CLSizes;
44
- isOpen: boolean;
45
- placement: CLPlacement;
46
- zIndex: number;
47
- }>>> & Readonly<{}>, {
230
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
231
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
48
232
  iconAfter: CLIconNames;
49
233
  iconSize: CLSizes;
50
234
  iconAfterSize: CLSizes;
@@ -55,26 +239,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
55
239
  isOpen: boolean;
56
240
  placement: CLPlacement;
57
241
  zIndex: number;
58
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
59
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
242
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
243
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
60
244
  export default _default;
61
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
62
- type __VLS_TypePropsToRuntimeProps<T> = {
63
- [K in keyof T]-?: {} extends Pick<T, K> ? {
64
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
65
- } : {
66
- type: import('vue').PropType<T[K]>;
67
- required: true;
68
- };
69
- };
70
- type __VLS_WithDefaults<P, D> = {
71
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
72
- default: D[K];
73
- }> : P[K];
74
- };
75
- type __VLS_Prettify<T> = {
76
- [K in keyof T]: T[K];
77
- } & {};
78
245
  type __VLS_WithTemplateSlots<T, S> = T & {
79
246
  new (): {
80
247
  $slots: S;