@codeandfunction/callaloo 1.0.3 → 1.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -6
- package/dist/components/{Icon.vue.d.ts → Assets/Icon.vue.d.ts} +10 -6
- package/dist/components/{A11yButton.vue.d.ts → Buttons/A11yButton.vue.d.ts} +4 -0
- package/dist/components/{Button.vue.d.ts → Buttons/Button.vue.d.ts} +31 -24
- package/dist/components/{Card.vue.d.ts → Containers/Card.vue.d.ts} +39 -27
- package/dist/components/Containers/Carousel/Carousel.vue.d.ts +53 -0
- package/dist/components/{NavSection.vue.d.ts → Containers/Carousel/CarouselNavigation.vue.d.ts} +11 -3
- package/dist/components/{Disclosure.vue.d.ts → Containers/Disclosure.vue.d.ts} +18 -17
- package/dist/components/{Checkbox.vue.d.ts → Form/Checkbox.vue.d.ts} +9 -9
- package/dist/components/{Input.vue.d.ts → Form/Input.vue.d.ts} +13 -16
- package/dist/components/{InputMessages.vue.d.ts → Form/InputMessages.vue.d.ts} +2 -2
- package/dist/components/{RadioButton.vue.d.ts → Form/RadioButton.vue.d.ts} +9 -9
- package/dist/components/{Select.vue.d.ts → Form/Select.vue.d.ts} +10 -13
- package/dist/components/{TextArea.vue.d.ts → Form/TextArea.vue.d.ts} +10 -13
- package/dist/components/{Pill.vue.d.ts → Indicators/Badge.vue.d.ts} +10 -7
- package/dist/components/{Banner.vue.d.ts → Indicators/Banner.vue.d.ts} +10 -10
- package/dist/components/Indicators/Pill.vue.d.ts +38 -0
- package/dist/components/{Spinner.vue.d.ts → Loading/Spinner.vue.d.ts} +17 -17
- package/dist/components/{Link.vue.d.ts → Navigation/Link.vue.d.ts} +16 -7
- package/dist/components/{NavLink.vue.d.ts → Navigation/NavLink.vue.d.ts} +8 -2
- package/dist/components/{Badge.vue.d.ts → Navigation/NavSection.vue.d.ts} +6 -7
- package/dist/components/{Carousel.vue.d.ts → Popups/Menu.vue.d.ts} +12 -14
- package/dist/components/{Toast.vue.d.ts → Popups/Toast.vue.d.ts} +6 -6
- package/dist/components/{Table.vue.d.ts → Table/Table.vue.d.ts} +5 -5
- package/dist/components/{Heading.vue.d.ts → Typography/Heading.vue.d.ts} +14 -13
- package/dist/components/{Text.vue.d.ts → Typography/Text.vue.d.ts} +13 -9
- package/dist/composables/useDropdown.d.ts +14 -0
- package/dist/composables/useEsc.d.ts +5 -0
- package/dist/index.d.ts +32 -31
- package/dist/index.js +4270 -2763
- package/dist/index.umd.cjs +4765 -2
- package/dist/types.d.ts +54 -13
- package/package.json +12 -11
- /package/dist/components/{Skeleton.vue.d.ts → Loading/Skeleton.vue.d.ts} +0 -0
- /package/dist/components/{TableBody.vue.d.ts → Table/TableBody.vue.d.ts} +0 -0
- /package/dist/components/{TableCell.vue.d.ts → Table/TableCell.vue.d.ts} +0 -0
- /package/dist/components/{TableFooter.vue.d.ts → Table/TableFooter.vue.d.ts} +0 -0
- /package/dist/components/{TableHeader.vue.d.ts → Table/TableHeader.vue.d.ts} +0 -0
- /package/dist/components/{TableNestedCell.vue.d.ts → Table/TableNestedCell.vue.d.ts} +0 -0
- /package/dist/components/{TableRow.vue.d.ts → Table/TableRow.vue.d.ts} +0 -0
package/README.md
CHANGED
|
@@ -1,19 +1,15 @@
|
|
|
1
|
-
# [Callaloo](https://callaloo.
|
|
1
|
+
# [Callaloo](https://callaloo.codeandfunction.com)
|
|
2
2
|
|
|
3
3
|
Callaloo is a free super simple Vue3+ component library.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
|
-
### NPM
|
|
8
|
-
|
|
9
7
|
```sh
|
|
10
8
|
npm install @codeandfunction/callaloo
|
|
11
9
|
```
|
|
12
10
|
|
|
13
11
|
**or**
|
|
14
12
|
|
|
15
|
-
### Yarn
|
|
16
|
-
|
|
17
13
|
```sh
|
|
18
14
|
yarn add @codeandfunction/callaloo
|
|
19
15
|
```
|
|
@@ -22,7 +18,7 @@ yarn add @codeandfunction/callaloo
|
|
|
22
18
|
|
|
23
19
|
The following example demonstrates how to use a Callaloo component in your Vue project.
|
|
24
20
|
|
|
25
|
-
```
|
|
21
|
+
```tsx
|
|
26
22
|
<script setup lang="ts">
|
|
27
23
|
import { CLButton } from '@codeandfunction/callaloo';
|
|
28
24
|
|
|
@@ -1,15 +1,19 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CLIconNames, CLIconStrokeWeight, CLSizes } from '../../index';
|
|
2
2
|
|
|
3
3
|
export interface Props {
|
|
4
|
-
name:
|
|
5
|
-
size?:
|
|
4
|
+
name: CLIconNames;
|
|
5
|
+
size?: CLSizes;
|
|
6
|
+
strokeWeight?: CLIconStrokeWeight;
|
|
6
7
|
}
|
|
7
8
|
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
8
|
-
size:
|
|
9
|
+
size: CLSizes;
|
|
10
|
+
strokeWeight: CLIconStrokeWeight;
|
|
9
11
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
10
|
-
size:
|
|
12
|
+
size: CLSizes;
|
|
13
|
+
strokeWeight: CLIconStrokeWeight;
|
|
11
14
|
}>>>, {
|
|
12
|
-
size:
|
|
15
|
+
size: CLSizes;
|
|
16
|
+
strokeWeight: CLIconStrokeWeight;
|
|
13
17
|
}, {}>;
|
|
14
18
|
export default _default;
|
|
15
19
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export interface Props {
|
|
2
2
|
enabled?: boolean;
|
|
3
|
+
fluid?: boolean;
|
|
3
4
|
rounded: boolean;
|
|
4
5
|
}
|
|
5
6
|
declare function __VLS_template(): {
|
|
@@ -7,10 +8,13 @@ declare function __VLS_template(): {
|
|
|
7
8
|
};
|
|
8
9
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
9
10
|
enabled: boolean;
|
|
11
|
+
fluid: boolean;
|
|
10
12
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
11
13
|
enabled: boolean;
|
|
14
|
+
fluid: boolean;
|
|
12
15
|
}>>>, {
|
|
13
16
|
enabled: boolean;
|
|
17
|
+
fluid: boolean;
|
|
14
18
|
}, {}>;
|
|
15
19
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
16
20
|
export default _default;
|
|
@@ -1,52 +1,59 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CLAlign, CLButtonTypes, CLIconNames, CLSizes, CLThemes } from '../../index';
|
|
2
2
|
|
|
3
3
|
export interface Props {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
size?: Sizes;
|
|
4
|
+
alignContent?: CLAlign;
|
|
5
|
+
ariaLabel?: string;
|
|
7
6
|
busy?: boolean;
|
|
8
|
-
|
|
7
|
+
elevated?: boolean;
|
|
8
|
+
form?: string;
|
|
9
|
+
height?: string;
|
|
10
|
+
iconAfter?: CLIconNames;
|
|
11
|
+
iconBefore?: CLIconNames;
|
|
12
|
+
iconSize?: CLSizes;
|
|
13
|
+
link?: boolean;
|
|
14
|
+
pill?: boolean;
|
|
15
|
+
type?: CLButtonTypes;
|
|
16
|
+
theme?: CLThemes;
|
|
9
17
|
rounded?: boolean;
|
|
18
|
+
size?: CLSizes;
|
|
10
19
|
width?: string;
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
iconBefore?: IconNames;
|
|
14
|
-
iconAfter?: IconNames;
|
|
15
|
-
iconSize?: Sizes;
|
|
16
|
-
alignContent?: Align;
|
|
20
|
+
wrap?: boolean;
|
|
21
|
+
forwardRef?: (elem: HTMLButtonElement) => void;
|
|
17
22
|
onClick?: (event?: Event) => void;
|
|
18
|
-
ariaLabel?: string;
|
|
19
23
|
}
|
|
20
24
|
declare function __VLS_template(): {
|
|
21
25
|
default?(_: {}): any;
|
|
22
26
|
};
|
|
23
27
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
24
|
-
type:
|
|
25
|
-
theme:
|
|
26
|
-
size:
|
|
28
|
+
type: CLButtonTypes;
|
|
29
|
+
theme: CLThemes;
|
|
30
|
+
size: CLSizes;
|
|
27
31
|
wrap: boolean;
|
|
28
32
|
width: string;
|
|
29
33
|
height: string;
|
|
34
|
+
elevated: boolean;
|
|
30
35
|
rounded: boolean;
|
|
31
|
-
alignContent:
|
|
36
|
+
alignContent: CLAlign;
|
|
32
37
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
33
|
-
type:
|
|
34
|
-
theme:
|
|
35
|
-
size:
|
|
38
|
+
type: CLButtonTypes;
|
|
39
|
+
theme: CLThemes;
|
|
40
|
+
size: CLSizes;
|
|
36
41
|
wrap: boolean;
|
|
37
42
|
width: string;
|
|
38
43
|
height: string;
|
|
44
|
+
elevated: boolean;
|
|
39
45
|
rounded: boolean;
|
|
40
|
-
alignContent:
|
|
46
|
+
alignContent: CLAlign;
|
|
41
47
|
}>>>, {
|
|
42
48
|
rounded: boolean;
|
|
43
|
-
type:
|
|
44
|
-
|
|
45
|
-
|
|
49
|
+
type: CLButtonTypes;
|
|
50
|
+
elevated: boolean;
|
|
51
|
+
theme: CLThemes;
|
|
46
52
|
width: string;
|
|
47
53
|
height: string;
|
|
54
|
+
alignContent: CLAlign;
|
|
55
|
+
size: CLSizes;
|
|
48
56
|
wrap: boolean;
|
|
49
|
-
alignContent: Align;
|
|
50
57
|
}, {}>;
|
|
51
58
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
52
59
|
export default _default;
|
|
@@ -1,47 +1,59 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CLAlign, CLCardProps, CLCardTypes, CLHeadingTypes, CLHeadingLevels, CLLinkTarget, CLThemes } from '../../index';
|
|
2
2
|
|
|
3
3
|
declare function __VLS_template(): {
|
|
4
4
|
default?(_: {}): any;
|
|
5
5
|
};
|
|
6
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<
|
|
7
|
-
titleType: HeadingTypes;
|
|
8
|
-
busy: boolean;
|
|
9
|
-
type: CardTypes;
|
|
10
|
-
theme: Themes;
|
|
6
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<CLCardProps>, {
|
|
11
7
|
active: boolean;
|
|
12
|
-
align:
|
|
13
|
-
|
|
8
|
+
align: CLAlign;
|
|
9
|
+
busy: boolean;
|
|
10
|
+
elevated: boolean;
|
|
14
11
|
height: string;
|
|
15
|
-
|
|
16
|
-
imageWidth: string;
|
|
12
|
+
imageAltText: string;
|
|
17
13
|
imageHeight: string;
|
|
14
|
+
imageWidth: string;
|
|
15
|
+
padded: boolean;
|
|
18
16
|
rounded: boolean;
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
active: boolean;
|
|
25
|
-
align: Align;
|
|
17
|
+
theme: CLThemes;
|
|
18
|
+
target: CLLinkTarget;
|
|
19
|
+
titleType: CLHeadingTypes;
|
|
20
|
+
titleHLevel: CLHeadingLevels;
|
|
21
|
+
type: CLCardTypes;
|
|
26
22
|
width: string;
|
|
23
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<CLCardProps>, {
|
|
24
|
+
active: boolean;
|
|
25
|
+
align: CLAlign;
|
|
26
|
+
busy: boolean;
|
|
27
|
+
elevated: boolean;
|
|
27
28
|
height: string;
|
|
28
|
-
|
|
29
|
-
imageWidth: string;
|
|
29
|
+
imageAltText: string;
|
|
30
30
|
imageHeight: string;
|
|
31
|
+
imageWidth: string;
|
|
32
|
+
padded: boolean;
|
|
31
33
|
rounded: boolean;
|
|
34
|
+
theme: CLThemes;
|
|
35
|
+
target: CLLinkTarget;
|
|
36
|
+
titleType: CLHeadingTypes;
|
|
37
|
+
titleHLevel: CLHeadingLevels;
|
|
38
|
+
type: CLCardTypes;
|
|
39
|
+
width: string;
|
|
32
40
|
}>>>, {
|
|
33
41
|
rounded: boolean;
|
|
34
|
-
type:
|
|
35
|
-
|
|
42
|
+
type: CLCardTypes;
|
|
43
|
+
target: CLLinkTarget;
|
|
44
|
+
elevated: boolean;
|
|
45
|
+
theme: CLThemes;
|
|
46
|
+
busy: boolean;
|
|
36
47
|
width: string;
|
|
37
48
|
height: string;
|
|
38
|
-
align:
|
|
39
|
-
busy: boolean;
|
|
40
|
-
imageRight: boolean;
|
|
41
|
-
imageWidth: string;
|
|
42
|
-
imageHeight: string;
|
|
43
|
-
titleType: HeadingTypes;
|
|
49
|
+
align: CLAlign;
|
|
44
50
|
active: boolean;
|
|
51
|
+
imageAltText: string;
|
|
52
|
+
imageHeight: string;
|
|
53
|
+
imageWidth: string;
|
|
54
|
+
padded: boolean;
|
|
55
|
+
titleType: CLHeadingTypes;
|
|
56
|
+
titleHLevel: CLHeadingLevels;
|
|
45
57
|
}, {}>;
|
|
46
58
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
47
59
|
export default _default;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { CLAlign, CLOrder, CLThemes } from '../../../index';
|
|
2
|
+
|
|
3
|
+
export interface Props {
|
|
4
|
+
enabled?: boolean;
|
|
5
|
+
title?: string;
|
|
6
|
+
theme?: CLThemes;
|
|
7
|
+
controlPosition?: CLOrder;
|
|
8
|
+
controlAlign?: CLAlign;
|
|
9
|
+
onShowMore?: (event?: Event) => void;
|
|
10
|
+
}
|
|
11
|
+
declare function __VLS_template(): {
|
|
12
|
+
default?(_: {}): any;
|
|
13
|
+
};
|
|
14
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
15
|
+
enabled: boolean;
|
|
16
|
+
theme: CLThemes;
|
|
17
|
+
controlPosition: CLOrder;
|
|
18
|
+
controlAlign: CLAlign;
|
|
19
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
20
|
+
enabled: boolean;
|
|
21
|
+
theme: CLThemes;
|
|
22
|
+
controlPosition: CLOrder;
|
|
23
|
+
controlAlign: CLAlign;
|
|
24
|
+
}>>>, {
|
|
25
|
+
enabled: boolean;
|
|
26
|
+
theme: CLThemes;
|
|
27
|
+
controlPosition: CLOrder;
|
|
28
|
+
controlAlign: CLAlign;
|
|
29
|
+
}, {}>;
|
|
30
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
31
|
+
export default _default;
|
|
32
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
33
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
34
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
35
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
36
|
+
} : {
|
|
37
|
+
type: import('vue').PropType<T[K]>;
|
|
38
|
+
required: true;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
type __VLS_WithDefaults<P, D> = {
|
|
42
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
43
|
+
default: D[K];
|
|
44
|
+
}> : P[K];
|
|
45
|
+
};
|
|
46
|
+
type __VLS_Prettify<T> = {
|
|
47
|
+
[K in keyof T]: T[K];
|
|
48
|
+
} & {};
|
|
49
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
50
|
+
new (): {
|
|
51
|
+
$slots: S;
|
|
52
|
+
};
|
|
53
|
+
};
|
package/dist/components/{NavSection.vue.d.ts → Containers/Carousel/CarouselNavigation.vue.d.ts}
RENAMED
|
@@ -1,7 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CLThemes } from '../../../index';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
interface Props {
|
|
4
|
+
prefix: string;
|
|
5
|
+
currentPage: number;
|
|
6
|
+
totalPages: number;
|
|
7
|
+
theme: CLThemes;
|
|
8
|
+
nextPageEnabled: boolean;
|
|
9
|
+
prevPageEnabled: boolean;
|
|
10
|
+
showPrevItems?: () => void;
|
|
11
|
+
showNextItems?: () => void;
|
|
12
|
+
showMore?: () => void;
|
|
5
13
|
}
|
|
6
14
|
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>>, {}, {}>;
|
|
7
15
|
export default _default;
|
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CLHeadingTypes, CLHeadingLevels, CLIconNames, CLTextTypes } from '../../index';
|
|
2
2
|
|
|
3
3
|
export interface Props {
|
|
4
4
|
heading: string;
|
|
5
|
-
headingType?:
|
|
5
|
+
headingType?: CLHeadingTypes;
|
|
6
|
+
headingLevel?: CLHeadingLevels;
|
|
6
7
|
subHeading?: string;
|
|
7
|
-
subHeadingType?:
|
|
8
|
-
icon?:
|
|
9
|
-
expandedIcon?:
|
|
8
|
+
subHeadingType?: CLTextTypes;
|
|
9
|
+
icon?: CLIconNames;
|
|
10
|
+
expandedIcon?: CLIconNames;
|
|
10
11
|
rounded?: boolean;
|
|
11
12
|
contentSpacing?: boolean;
|
|
12
13
|
expanded?: boolean;
|
|
@@ -15,27 +16,27 @@ declare function __VLS_template(): {
|
|
|
15
16
|
default?(_: {}): any;
|
|
16
17
|
};
|
|
17
18
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
18
|
-
headingType:
|
|
19
|
-
subHeadingType:
|
|
20
|
-
icon:
|
|
21
|
-
expandedIcon:
|
|
19
|
+
headingType: CLHeadingTypes;
|
|
20
|
+
subHeadingType: CLTextTypes;
|
|
21
|
+
icon: CLIconNames;
|
|
22
|
+
expandedIcon: CLIconNames;
|
|
22
23
|
rounded: boolean;
|
|
23
24
|
contentSpacing: boolean;
|
|
24
25
|
expanded: boolean;
|
|
25
26
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
26
|
-
headingType:
|
|
27
|
-
subHeadingType:
|
|
28
|
-
icon:
|
|
29
|
-
expandedIcon:
|
|
27
|
+
headingType: CLHeadingTypes;
|
|
28
|
+
subHeadingType: CLTextTypes;
|
|
29
|
+
icon: CLIconNames;
|
|
30
|
+
expandedIcon: CLIconNames;
|
|
30
31
|
rounded: boolean;
|
|
31
32
|
contentSpacing: boolean;
|
|
32
33
|
expanded: boolean;
|
|
33
34
|
}>>>, {
|
|
34
35
|
rounded: boolean;
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
expandedIcon:
|
|
36
|
+
headingType: CLHeadingTypes;
|
|
37
|
+
subHeadingType: CLTextTypes;
|
|
38
|
+
icon: CLIconNames;
|
|
39
|
+
expandedIcon: CLIconNames;
|
|
39
40
|
contentSpacing: boolean;
|
|
40
41
|
expanded: boolean;
|
|
41
42
|
}, {}>;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CLInputProps, CLSizes, CLThemes } from '../../index';
|
|
2
2
|
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Omit<
|
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Omit<CLInputProps, "fluid" | "pattern" | "prefix" | "width" | "autoComplete" | "floatingLabel" | "grouped" | "labelSize" | "maxLength" | "minLength" | "options" | "placeholder" | "readonly" | "resizable" | "rows" | "spellcheck" | "suffix">>, {
|
|
4
4
|
rounded: boolean;
|
|
5
|
-
size:
|
|
6
|
-
theme:
|
|
7
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Omit<
|
|
5
|
+
size: CLSizes;
|
|
6
|
+
theme: CLThemes;
|
|
7
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Omit<CLInputProps, "fluid" | "pattern" | "prefix" | "width" | "autoComplete" | "floatingLabel" | "grouped" | "labelSize" | "maxLength" | "minLength" | "options" | "placeholder" | "readonly" | "resizable" | "rows" | "spellcheck" | "suffix">>, {
|
|
8
8
|
rounded: boolean;
|
|
9
|
-
size:
|
|
10
|
-
theme:
|
|
9
|
+
size: CLSizes;
|
|
10
|
+
theme: CLThemes;
|
|
11
11
|
}>>>, {
|
|
12
12
|
rounded: boolean;
|
|
13
|
-
theme:
|
|
14
|
-
size:
|
|
13
|
+
theme: CLThemes;
|
|
14
|
+
size: CLSizes;
|
|
15
15
|
}, {}>;
|
|
16
16
|
export default _default;
|
|
17
17
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -1,26 +1,23 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CLInputTypes, CLInputProps, CLSizes, CLThemes } from '../../index';
|
|
2
2
|
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Omit<
|
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Omit<CLInputProps, "options" | "resizable" | "rows" | "checked">>, {
|
|
4
4
|
rounded: boolean;
|
|
5
|
-
size:
|
|
6
|
-
theme:
|
|
7
|
-
type:
|
|
5
|
+
size: CLSizes;
|
|
6
|
+
theme: CLThemes;
|
|
7
|
+
type: CLInputTypes;
|
|
8
8
|
fluid: boolean;
|
|
9
|
-
|
|
10
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Omit<InputProps, "options" | "resizable" | "rows" | "checked">>, {
|
|
9
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Omit<CLInputProps, "options" | "resizable" | "rows" | "checked">>, {
|
|
11
10
|
rounded: boolean;
|
|
12
|
-
size:
|
|
13
|
-
theme:
|
|
14
|
-
type:
|
|
11
|
+
size: CLSizes;
|
|
12
|
+
theme: CLThemes;
|
|
13
|
+
type: CLInputTypes;
|
|
15
14
|
fluid: boolean;
|
|
16
|
-
width: string;
|
|
17
15
|
}>>>, {
|
|
18
|
-
rounded: boolean;
|
|
19
|
-
type: InputTypes;
|
|
20
|
-
theme: Themes;
|
|
21
|
-
size: Sizes;
|
|
22
|
-
width: string;
|
|
23
16
|
fluid: boolean;
|
|
17
|
+
rounded: boolean;
|
|
18
|
+
type: CLInputTypes;
|
|
19
|
+
theme: CLThemes;
|
|
20
|
+
size: CLSizes;
|
|
24
21
|
}, {}>;
|
|
25
22
|
export default _default;
|
|
26
23
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CLMessageType } from '../../index';
|
|
2
2
|
|
|
3
3
|
export interface Props {
|
|
4
4
|
id: string;
|
|
5
5
|
messages?: string[];
|
|
6
|
-
messageType?:
|
|
6
|
+
messageType?: CLMessageType;
|
|
7
7
|
}
|
|
8
8
|
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>>, {}, {}>;
|
|
9
9
|
export default _default;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CLInputProps, CLSizes, CLThemes } from '../../index';
|
|
2
2
|
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Omit<
|
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Omit<CLInputProps, "fluid" | "pattern" | "prefix" | "width" | "autoComplete" | "floatingLabel" | "grouped" | "labelSize" | "maxLength" | "minLength" | "options" | "placeholder" | "readonly" | "resizable" | "rows" | "spellcheck" | "suffix">>, {
|
|
4
4
|
rounded: boolean;
|
|
5
|
-
size:
|
|
6
|
-
theme:
|
|
7
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Omit<
|
|
5
|
+
size: CLSizes;
|
|
6
|
+
theme: CLThemes;
|
|
7
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Omit<CLInputProps, "fluid" | "pattern" | "prefix" | "width" | "autoComplete" | "floatingLabel" | "grouped" | "labelSize" | "maxLength" | "minLength" | "options" | "placeholder" | "readonly" | "resizable" | "rows" | "spellcheck" | "suffix">>, {
|
|
8
8
|
rounded: boolean;
|
|
9
|
-
size:
|
|
10
|
-
theme:
|
|
9
|
+
size: CLSizes;
|
|
10
|
+
theme: CLThemes;
|
|
11
11
|
}>>>, {
|
|
12
12
|
rounded: boolean;
|
|
13
|
-
theme:
|
|
14
|
-
size:
|
|
13
|
+
theme: CLThemes;
|
|
14
|
+
size: CLSizes;
|
|
15
15
|
}, {}>;
|
|
16
16
|
export default _default;
|
|
17
17
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -1,23 +1,20 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CLInputProps, CLSizes, CLThemes } from '../../index';
|
|
2
2
|
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Omit<
|
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Omit<CLInputProps, "pattern" | "prefix" | "autoComplete" | "grouped" | "maxLength" | "minLength" | "placeholder" | "readonly" | "resizable" | "rows" | "spellcheck" | "suffix">>, {
|
|
4
4
|
rounded: boolean;
|
|
5
|
-
size:
|
|
6
|
-
theme:
|
|
5
|
+
size: CLSizes;
|
|
6
|
+
theme: CLThemes;
|
|
7
7
|
fluid: boolean;
|
|
8
|
-
|
|
9
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Omit<InputProps, "pattern" | "prefix" | "autoComplete" | "grouped" | "maxLength" | "minLength" | "placeholder" | "readonly" | "resizable" | "rows" | "spellcheck" | "suffix">>, {
|
|
8
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Omit<CLInputProps, "pattern" | "prefix" | "autoComplete" | "grouped" | "maxLength" | "minLength" | "placeholder" | "readonly" | "resizable" | "rows" | "spellcheck" | "suffix">>, {
|
|
10
9
|
rounded: boolean;
|
|
11
|
-
size:
|
|
12
|
-
theme:
|
|
10
|
+
size: CLSizes;
|
|
11
|
+
theme: CLThemes;
|
|
13
12
|
fluid: boolean;
|
|
14
|
-
width: string;
|
|
15
13
|
}>>>, {
|
|
16
|
-
rounded: boolean;
|
|
17
|
-
theme: Themes;
|
|
18
|
-
size: Sizes;
|
|
19
|
-
width: string;
|
|
20
14
|
fluid: boolean;
|
|
15
|
+
rounded: boolean;
|
|
16
|
+
theme: CLThemes;
|
|
17
|
+
size: CLSizes;
|
|
21
18
|
}, {}>;
|
|
22
19
|
export default _default;
|
|
23
20
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -1,25 +1,22 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CLInputProps, CLSizes, CLThemes } from '../../index';
|
|
2
2
|
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Omit<
|
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Omit<CLInputProps, "type" | "prefix" | "pill" | "grouped" | "options" | "suffix" | "checked">>, {
|
|
4
4
|
rounded: boolean;
|
|
5
|
-
size:
|
|
6
|
-
theme:
|
|
5
|
+
size: CLSizes;
|
|
6
|
+
theme: CLThemes;
|
|
7
7
|
resizable: boolean;
|
|
8
8
|
fluid: boolean;
|
|
9
|
-
|
|
10
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Omit<InputProps, "type" | "prefix" | "grouped" | "options" | "suffix" | "checked" | "pill">>, {
|
|
9
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Omit<CLInputProps, "type" | "prefix" | "pill" | "grouped" | "options" | "suffix" | "checked">>, {
|
|
11
10
|
rounded: boolean;
|
|
12
|
-
size:
|
|
13
|
-
theme:
|
|
11
|
+
size: CLSizes;
|
|
12
|
+
theme: CLThemes;
|
|
14
13
|
resizable: boolean;
|
|
15
14
|
fluid: boolean;
|
|
16
|
-
width: string;
|
|
17
15
|
}>>>, {
|
|
18
|
-
rounded: boolean;
|
|
19
|
-
theme: Themes;
|
|
20
|
-
size: Sizes;
|
|
21
|
-
width: string;
|
|
22
16
|
fluid: boolean;
|
|
17
|
+
rounded: boolean;
|
|
18
|
+
theme: CLThemes;
|
|
19
|
+
size: CLSizes;
|
|
23
20
|
resizable: boolean;
|
|
24
21
|
}, {}>;
|
|
25
22
|
export default _default;
|
|
@@ -1,17 +1,20 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CLBadgeThemes, CLThemes } from '../../index';
|
|
2
2
|
|
|
3
3
|
export interface Props {
|
|
4
|
-
label: string;
|
|
5
4
|
count?: number;
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
limit?: number;
|
|
6
|
+
elevated?: boolean;
|
|
7
|
+
theme?: CLBadgeThemes;
|
|
8
8
|
}
|
|
9
9
|
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
10
|
-
|
|
10
|
+
elevated: boolean;
|
|
11
|
+
theme: CLThemes;
|
|
11
12
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
12
|
-
|
|
13
|
+
elevated: boolean;
|
|
14
|
+
theme: CLThemes;
|
|
13
15
|
}>>>, {
|
|
14
|
-
|
|
16
|
+
elevated: boolean;
|
|
17
|
+
theme: CLBadgeThemes;
|
|
15
18
|
}, {}>;
|
|
16
19
|
export default _default;
|
|
17
20
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CLAlign, CLBannerProps, CLThemes } from '../../index';
|
|
2
2
|
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<
|
|
3
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<CLBannerProps>, {
|
|
4
4
|
busy: boolean;
|
|
5
|
-
theme:
|
|
6
|
-
align:
|
|
5
|
+
theme: CLThemes;
|
|
6
|
+
align: CLAlign;
|
|
7
7
|
width: string;
|
|
8
8
|
height: string;
|
|
9
9
|
rounded: boolean;
|
|
10
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<
|
|
10
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<CLBannerProps>, {
|
|
11
11
|
busy: boolean;
|
|
12
|
-
theme:
|
|
13
|
-
align:
|
|
12
|
+
theme: CLThemes;
|
|
13
|
+
align: CLAlign;
|
|
14
14
|
width: string;
|
|
15
15
|
height: string;
|
|
16
16
|
rounded: boolean;
|
|
17
17
|
}>>>, {
|
|
18
18
|
rounded: boolean;
|
|
19
|
-
theme: import('
|
|
19
|
+
theme: import('../../types').BannerThemes;
|
|
20
|
+
busy: boolean;
|
|
20
21
|
width: string;
|
|
21
22
|
height: string;
|
|
22
|
-
align:
|
|
23
|
-
busy: boolean;
|
|
23
|
+
align: CLAlign;
|
|
24
24
|
}, {}>;
|
|
25
25
|
export default _default;
|
|
26
26
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|