@codeandfunction/callaloo 1.6.0 → 1.7.1
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/dist/assets/index.css +1 -0
- package/dist/components/Assets/Icon.vue.d.ts +1 -5
- package/dist/components/Buttons/A11yButton.vue.d.ts +4 -0
- package/dist/components/Buttons/Button.vue.d.ts +152 -71
- package/dist/components/Containers/Card.vue.d.ts +5 -2
- package/dist/components/Containers/Carousel/Carousel.vue.d.ts +11 -8
- package/dist/components/Containers/Disclosure.vue.d.ts +11 -7
- package/dist/components/Indicators/Pill.vue.d.ts +7 -3
- package/dist/components/Navigation/Link.vue.d.ts +13 -5
- package/dist/components/Navigation/NavLink.vue.d.ts +13 -5
- package/dist/components/Navigation/NavSection.vue.d.ts +6 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +451 -2202
- package/dist/index.js.map +1 -0
- package/dist/types.d.ts +14 -8
- package/package.json +14 -9
- package/dist/index.umd.cjs +0 -4858
|
@@ -1,82 +1,163 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
1
2
|
import { CLAlign, CLButtonTypes, CLIconNames, CLSizes, CLThemes } from '../../index';
|
|
2
3
|
|
|
3
|
-
|
|
4
|
-
alignContent
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
4
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
5
|
+
alignContent: {
|
|
6
|
+
type: PropType<CLAlign>;
|
|
7
|
+
default: CLAlign;
|
|
8
|
+
};
|
|
9
|
+
ariaLabel: {
|
|
10
|
+
type: StringConstructor;
|
|
11
|
+
};
|
|
12
|
+
busy: {
|
|
13
|
+
type: BooleanConstructor;
|
|
14
|
+
};
|
|
15
|
+
elevated: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
19
|
+
form: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
};
|
|
22
|
+
forwardRef: {
|
|
23
|
+
type: FunctionConstructor;
|
|
24
|
+
};
|
|
25
|
+
height: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
29
|
+
iconAfter: {
|
|
30
|
+
type: PropType<CLIconNames>;
|
|
31
|
+
};
|
|
32
|
+
iconBefore: {
|
|
33
|
+
type: PropType<CLIconNames>;
|
|
34
|
+
};
|
|
35
|
+
iconSize: {
|
|
36
|
+
type: PropType<CLSizes>;
|
|
37
|
+
};
|
|
38
|
+
link: {
|
|
39
|
+
type: BooleanConstructor;
|
|
40
|
+
};
|
|
41
|
+
onClick: {
|
|
42
|
+
type: FunctionConstructor;
|
|
43
|
+
};
|
|
44
|
+
pill: {
|
|
45
|
+
type: BooleanConstructor;
|
|
46
|
+
};
|
|
47
|
+
rounded: {
|
|
48
|
+
type: BooleanConstructor;
|
|
49
|
+
default: boolean;
|
|
50
|
+
};
|
|
51
|
+
size: {
|
|
52
|
+
type: PropType<CLSizes>;
|
|
53
|
+
default: CLSizes;
|
|
54
|
+
};
|
|
55
|
+
title: {
|
|
56
|
+
type: StringConstructor;
|
|
57
|
+
};
|
|
58
|
+
testId: {
|
|
59
|
+
type: StringConstructor;
|
|
60
|
+
default: string;
|
|
61
|
+
};
|
|
62
|
+
type: {
|
|
63
|
+
type: PropType<CLButtonTypes>;
|
|
64
|
+
};
|
|
65
|
+
theme: {
|
|
66
|
+
type: PropType<CLThemes>;
|
|
67
|
+
};
|
|
68
|
+
width: {
|
|
69
|
+
type: StringConstructor;
|
|
70
|
+
default: string;
|
|
71
|
+
};
|
|
72
|
+
wrap: {
|
|
73
|
+
type: BooleanConstructor;
|
|
74
|
+
default: boolean;
|
|
75
|
+
};
|
|
76
|
+
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
77
|
+
[key: string]: any;
|
|
78
|
+
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
79
|
+
alignContent: {
|
|
80
|
+
type: PropType<CLAlign>;
|
|
81
|
+
default: CLAlign;
|
|
82
|
+
};
|
|
83
|
+
ariaLabel: {
|
|
84
|
+
type: StringConstructor;
|
|
85
|
+
};
|
|
86
|
+
busy: {
|
|
87
|
+
type: BooleanConstructor;
|
|
88
|
+
};
|
|
89
|
+
elevated: {
|
|
90
|
+
type: BooleanConstructor;
|
|
91
|
+
default: boolean;
|
|
92
|
+
};
|
|
93
|
+
form: {
|
|
94
|
+
type: StringConstructor;
|
|
95
|
+
};
|
|
96
|
+
forwardRef: {
|
|
97
|
+
type: FunctionConstructor;
|
|
98
|
+
};
|
|
99
|
+
height: {
|
|
100
|
+
type: StringConstructor;
|
|
101
|
+
default: string;
|
|
102
|
+
};
|
|
103
|
+
iconAfter: {
|
|
104
|
+
type: PropType<CLIconNames>;
|
|
105
|
+
};
|
|
106
|
+
iconBefore: {
|
|
107
|
+
type: PropType<CLIconNames>;
|
|
108
|
+
};
|
|
109
|
+
iconSize: {
|
|
110
|
+
type: PropType<CLSizes>;
|
|
111
|
+
};
|
|
112
|
+
link: {
|
|
113
|
+
type: BooleanConstructor;
|
|
114
|
+
};
|
|
115
|
+
onClick: {
|
|
116
|
+
type: FunctionConstructor;
|
|
117
|
+
};
|
|
118
|
+
pill: {
|
|
119
|
+
type: BooleanConstructor;
|
|
120
|
+
};
|
|
121
|
+
rounded: {
|
|
122
|
+
type: BooleanConstructor;
|
|
123
|
+
default: boolean;
|
|
124
|
+
};
|
|
125
|
+
size: {
|
|
126
|
+
type: PropType<CLSizes>;
|
|
127
|
+
default: CLSizes;
|
|
128
|
+
};
|
|
129
|
+
title: {
|
|
130
|
+
type: StringConstructor;
|
|
131
|
+
};
|
|
132
|
+
testId: {
|
|
133
|
+
type: StringConstructor;
|
|
134
|
+
default: string;
|
|
135
|
+
};
|
|
136
|
+
type: {
|
|
137
|
+
type: PropType<CLButtonTypes>;
|
|
138
|
+
};
|
|
139
|
+
theme: {
|
|
140
|
+
type: PropType<CLThemes>;
|
|
141
|
+
};
|
|
142
|
+
width: {
|
|
143
|
+
type: StringConstructor;
|
|
144
|
+
default: string;
|
|
145
|
+
};
|
|
146
|
+
wrap: {
|
|
147
|
+
type: BooleanConstructor;
|
|
148
|
+
default: boolean;
|
|
149
|
+
};
|
|
150
|
+
}>> & Readonly<{}>, {
|
|
49
151
|
rounded: boolean;
|
|
50
|
-
|
|
152
|
+
testId: string;
|
|
153
|
+
link: boolean;
|
|
51
154
|
elevated: boolean;
|
|
52
|
-
|
|
155
|
+
busy: boolean;
|
|
53
156
|
width: string;
|
|
54
157
|
height: string;
|
|
55
158
|
alignContent: CLAlign;
|
|
159
|
+
pill: boolean;
|
|
56
160
|
size: CLSizes;
|
|
57
161
|
wrap: boolean;
|
|
58
162
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
59
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
60
163
|
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
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
79
|
-
new (): {
|
|
80
|
-
$slots: S;
|
|
81
|
-
};
|
|
82
|
-
};
|
|
@@ -14,8 +14,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
14
14
|
imageWidth: string;
|
|
15
15
|
padded: boolean;
|
|
16
16
|
rounded: boolean;
|
|
17
|
-
theme: CLThemes;
|
|
18
17
|
target: CLLinkTarget;
|
|
18
|
+
testId: string;
|
|
19
|
+
theme: CLThemes;
|
|
19
20
|
titleType: CLHeadingTypes;
|
|
20
21
|
titleHLevel: CLHeadingLevels;
|
|
21
22
|
type: CLCardTypes;
|
|
@@ -31,14 +32,16 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
31
32
|
imageWidth: string;
|
|
32
33
|
padded: boolean;
|
|
33
34
|
rounded: boolean;
|
|
34
|
-
theme: CLThemes;
|
|
35
35
|
target: CLLinkTarget;
|
|
36
|
+
testId: string;
|
|
37
|
+
theme: CLThemes;
|
|
36
38
|
titleType: CLHeadingTypes;
|
|
37
39
|
titleHLevel: CLHeadingLevels;
|
|
38
40
|
type: CLCardTypes;
|
|
39
41
|
width: string;
|
|
40
42
|
}>>> & Readonly<{}>, {
|
|
41
43
|
rounded: boolean;
|
|
44
|
+
testId: string;
|
|
42
45
|
type: CLCardTypes;
|
|
43
46
|
target: CLLinkTarget;
|
|
44
47
|
elevated: boolean;
|
|
@@ -1,31 +1,34 @@
|
|
|
1
1
|
import { CLAlign, CLOrder, CLThemes } from '../../../index';
|
|
2
2
|
|
|
3
3
|
export interface Props {
|
|
4
|
+
controlAlign?: CLAlign;
|
|
5
|
+
controlPosition?: CLOrder;
|
|
4
6
|
enabled?: boolean;
|
|
7
|
+
onShowMore?: (event?: Event) => void;
|
|
8
|
+
testId?: string;
|
|
5
9
|
title?: string;
|
|
6
10
|
theme?: CLThemes;
|
|
7
|
-
controlPosition?: CLOrder;
|
|
8
|
-
controlAlign?: CLAlign;
|
|
9
|
-
onShowMore?: (event?: Event) => void;
|
|
10
11
|
}
|
|
11
12
|
declare function __VLS_template(): {
|
|
12
13
|
default?(_: {}): any;
|
|
13
14
|
};
|
|
14
15
|
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
16
|
+
controlAlign: CLAlign;
|
|
17
|
+
controlPosition: CLOrder;
|
|
15
18
|
enabled: boolean;
|
|
19
|
+
testid: string;
|
|
16
20
|
theme: CLThemes;
|
|
17
|
-
controlPosition: CLOrder;
|
|
18
|
-
controlAlign: CLAlign;
|
|
19
21
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
22
|
+
controlAlign: CLAlign;
|
|
23
|
+
controlPosition: CLOrder;
|
|
20
24
|
enabled: boolean;
|
|
25
|
+
testid: string;
|
|
21
26
|
theme: CLThemes;
|
|
22
|
-
controlPosition: CLOrder;
|
|
23
|
-
controlAlign: CLAlign;
|
|
24
27
|
}>>> & Readonly<{}>, {
|
|
25
28
|
enabled: boolean;
|
|
26
29
|
theme: CLThemes;
|
|
27
|
-
controlPosition: CLOrder;
|
|
28
30
|
controlAlign: CLAlign;
|
|
31
|
+
controlPosition: CLOrder;
|
|
29
32
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
30
33
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
31
34
|
export default _default;
|
|
@@ -13,31 +13,35 @@ export interface Props {
|
|
|
13
13
|
rounded?: boolean;
|
|
14
14
|
subHeading?: string;
|
|
15
15
|
subHeadingType?: CLTextTypes;
|
|
16
|
+
testId?: string;
|
|
16
17
|
transparent?: boolean;
|
|
17
18
|
}
|
|
18
19
|
declare function __VLS_template(): {
|
|
19
20
|
default?(_: {}): any;
|
|
20
21
|
};
|
|
21
22
|
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
23
|
+
contentSpacing: boolean;
|
|
24
|
+
expanded: boolean;
|
|
25
|
+
expandedIcon: CLIconNames;
|
|
22
26
|
headingType: CLHeadingTypes;
|
|
23
|
-
subHeadingType: CLTextTypes;
|
|
24
27
|
icon: CLIconNames;
|
|
25
28
|
iconSize: CLSizes;
|
|
26
|
-
expandedIcon: CLIconNames;
|
|
27
29
|
rounded: boolean;
|
|
30
|
+
testId: string;
|
|
31
|
+
subHeadingType: CLTextTypes;
|
|
32
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
28
33
|
contentSpacing: boolean;
|
|
29
34
|
expanded: boolean;
|
|
30
|
-
|
|
35
|
+
expandedIcon: CLIconNames;
|
|
31
36
|
headingType: CLHeadingTypes;
|
|
32
|
-
subHeadingType: CLTextTypes;
|
|
33
37
|
icon: CLIconNames;
|
|
34
38
|
iconSize: CLSizes;
|
|
35
|
-
expandedIcon: CLIconNames;
|
|
36
39
|
rounded: boolean;
|
|
37
|
-
|
|
38
|
-
|
|
40
|
+
testId: string;
|
|
41
|
+
subHeadingType: CLTextTypes;
|
|
39
42
|
}>>> & Readonly<{}>, {
|
|
40
43
|
rounded: boolean;
|
|
44
|
+
testId: string;
|
|
41
45
|
iconSize: CLSizes;
|
|
42
46
|
contentSpacing: boolean;
|
|
43
47
|
expanded: boolean;
|
|
@@ -3,18 +3,22 @@ import { CLIconNames, CLPillThemes, CLThemes } from '../../index';
|
|
|
3
3
|
export interface Props {
|
|
4
4
|
label: string;
|
|
5
5
|
count?: number;
|
|
6
|
+
elevated?: boolean;
|
|
6
7
|
icon?: CLIconNames;
|
|
8
|
+
rounded?: boolean;
|
|
7
9
|
theme?: CLPillThemes;
|
|
8
|
-
elevated?: boolean;
|
|
9
10
|
onClick?: () => void;
|
|
10
11
|
}
|
|
11
12
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
12
|
-
theme: CLThemes;
|
|
13
13
|
elevated: boolean;
|
|
14
|
-
|
|
14
|
+
rounded: boolean;
|
|
15
15
|
theme: CLThemes;
|
|
16
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
16
17
|
elevated: boolean;
|
|
18
|
+
rounded: boolean;
|
|
19
|
+
theme: CLThemes;
|
|
17
20
|
}>>> & Readonly<{}>, {
|
|
21
|
+
rounded: boolean;
|
|
18
22
|
elevated: boolean;
|
|
19
23
|
theme: CLPillThemes;
|
|
20
24
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,13 +1,15 @@
|
|
|
1
|
-
import { CLLinkTarget } from '../../index';
|
|
1
|
+
import { CLLinkTarget, CLSimpleThemes, CLThemes } from '../../index';
|
|
2
2
|
|
|
3
3
|
export interface Props {
|
|
4
4
|
ariaLabel?: string;
|
|
5
5
|
external?: boolean;
|
|
6
6
|
href?: string;
|
|
7
|
-
target: CLLinkTarget;
|
|
8
|
-
underline?: boolean;
|
|
9
|
-
rel?: string;
|
|
10
7
|
onClick?: (event?: Event) => void;
|
|
8
|
+
rel?: string;
|
|
9
|
+
target?: CLLinkTarget;
|
|
10
|
+
theme?: CLSimpleThemes;
|
|
11
|
+
testId?: string;
|
|
12
|
+
underline?: boolean;
|
|
11
13
|
}
|
|
12
14
|
declare function __VLS_template(): {
|
|
13
15
|
default?(_: {}): any;
|
|
@@ -15,18 +17,24 @@ declare function __VLS_template(): {
|
|
|
15
17
|
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
16
18
|
external: boolean;
|
|
17
19
|
rel: string;
|
|
20
|
+
testId: string;
|
|
21
|
+
theme: CLThemes;
|
|
18
22
|
target: CLLinkTarget;
|
|
19
23
|
underline: boolean;
|
|
20
24
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
21
25
|
external: boolean;
|
|
22
26
|
rel: string;
|
|
27
|
+
testId: string;
|
|
28
|
+
theme: CLThemes;
|
|
23
29
|
target: CLLinkTarget;
|
|
24
30
|
underline: boolean;
|
|
25
31
|
}>>> & Readonly<{}>, {
|
|
32
|
+
testId: string;
|
|
26
33
|
target: CLLinkTarget;
|
|
34
|
+
theme: CLSimpleThemes;
|
|
27
35
|
external: boolean;
|
|
28
|
-
underline: boolean;
|
|
29
36
|
rel: string;
|
|
37
|
+
underline: boolean;
|
|
30
38
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
31
39
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
32
40
|
export default _default;
|
|
@@ -1,24 +1,32 @@
|
|
|
1
|
-
import { CLLinkTarget } from '../../index';
|
|
1
|
+
import { CLLinkTarget, CLSimpleThemes, CLThemes } from '../../index';
|
|
2
2
|
|
|
3
3
|
export interface Props {
|
|
4
|
-
id?: string;
|
|
5
4
|
ariaLabel?: string;
|
|
6
|
-
href?: string;
|
|
7
|
-
target?: CLLinkTarget;
|
|
8
5
|
external?: boolean;
|
|
9
|
-
|
|
6
|
+
href?: string;
|
|
7
|
+
id?: string;
|
|
8
|
+
theme?: CLSimpleThemes;
|
|
10
9
|
onClick?: (event?: Event) => void;
|
|
10
|
+
rel?: string;
|
|
11
|
+
target?: CLLinkTarget;
|
|
12
|
+
testId?: string;
|
|
11
13
|
}
|
|
12
14
|
declare function __VLS_template(): {
|
|
13
15
|
default?(_: {}): any;
|
|
14
16
|
};
|
|
15
17
|
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
16
18
|
external: boolean;
|
|
19
|
+
theme: CLThemes;
|
|
20
|
+
testId: string;
|
|
17
21
|
rel: string;
|
|
18
22
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
19
23
|
external: boolean;
|
|
24
|
+
theme: CLThemes;
|
|
25
|
+
testId: string;
|
|
20
26
|
rel: string;
|
|
21
27
|
}>>> & Readonly<{}>, {
|
|
28
|
+
testId: string;
|
|
29
|
+
theme: CLSimpleThemes;
|
|
22
30
|
external: boolean;
|
|
23
31
|
rel: string;
|
|
24
32
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,14 +1,19 @@
|
|
|
1
|
-
import { CLNavItem, CLOrientation } from '../../index';
|
|
1
|
+
import { CLNavItem, CLOrientation, CLSimpleThemes } from '../../index';
|
|
2
2
|
|
|
3
3
|
export interface Props {
|
|
4
4
|
navItems: CLNavItem[];
|
|
5
|
+
theme?: CLSimpleThemes;
|
|
6
|
+
testId?: string;
|
|
5
7
|
type?: CLOrientation;
|
|
6
8
|
}
|
|
7
9
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
10
|
+
testId: string;
|
|
8
11
|
type: CLOrientation;
|
|
9
12
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
13
|
+
testId: string;
|
|
10
14
|
type: CLOrientation;
|
|
11
15
|
}>>> & Readonly<{}>, {
|
|
16
|
+
testId: string;
|
|
12
17
|
type: CLOrientation;
|
|
13
18
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
14
19
|
export default _default;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { Align as CLAlign, ButtonTypes as CLButtonTypes, CardTypes as CLCardTypes, DarkMode as CLDarkMode, HeadingLevels as CLHeadingLevels, HeadingTypes as CLHeadingTypes, IconNames as CLIconNames,
|
|
2
|
-
export type { BadgeThemes as CLBadgeThemes, BannerProps as CLBannerProps, CardProps as CLCardProps, HeadingThemes as CLHeadingThemes, InputProps as CLInputProps, NavItem as CLNavItem, PillThemes as CLPillThemes, Option as CLOption, SpinnerThemes as CLSpinnerThemes, ToastProps as CLToastProps, TextThemes as CLTextThemes, TextHtmlTags as CLTextHtmlTags, } from './types';
|
|
1
|
+
export { Align as CLAlign, ButtonTypes as CLButtonTypes, CardTypes as CLCardTypes, DarkMode as CLDarkMode, HeadingLevels as CLHeadingLevels, HeadingTypes as CLHeadingTypes, IconNames as CLIconNames, InputTypes as CLInputTypes, LinkTarget as CLLinkTarget, MessageType as CLMessageType, Orientation as CLOrientation, Order as CLOrder, Position as CLPosition, Sizes as CLSizes, TableTypes as CLTableTypes, TextTypes as CLTextTypes, Themes as CLThemes, } from './types';
|
|
2
|
+
export type { BadgeThemes as CLBadgeThemes, BannerProps as CLBannerProps, CardProps as CLCardProps, HeadingThemes as CLHeadingThemes, InputProps as CLInputProps, NavItem as CLNavItem, PillThemes as CLPillThemes, Option as CLOption, SimpleThemes as CLSimpleThemes, SpinnerThemes as CLSpinnerThemes, ToastProps as CLToastProps, TextThemes as CLTextThemes, TextHtmlTags as CLTextHtmlTags, } from './types';
|
|
3
3
|
export { default as CLA11yButton } from './components/Buttons/A11yButton.vue';
|
|
4
4
|
export { default as CLBadge } from './components/Indicators/Badge.vue';
|
|
5
5
|
export { default as CLBanner } from './components/Indicators/Banner.vue';
|