@codeandfunction/callaloo 1.15.3 → 1.16.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 -1
- package/dist/components/Assets/CLIcon.vue.d.ts +1 -1
- package/dist/components/Buttons/CLA11yButton.vue.d.ts +3 -2
- package/dist/components/Containers/CLCard.vue.d.ts +3 -2
- package/dist/components/Containers/CLDisclosure.vue.d.ts +3 -2
- package/dist/components/Containers/Carousel/CLCarousel.vue.d.ts +3 -2
- package/dist/components/Containers/Carousel/CLCarouselSlide.vue.d.ts +3 -2
- package/dist/components/Form/CLCheckbox.vue.d.ts +2 -2
- package/dist/components/Form/CLFormField.vue.d.ts +23 -0
- package/dist/components/Form/CLInput.vue.d.ts +6 -3
- package/dist/components/Form/CLRadioButton.vue.d.ts +2 -2
- package/dist/components/Form/CLSelect.vue.d.ts +5 -3
- package/dist/components/Form/CLTextArea.vue.d.ts +5 -3
- package/dist/components/Indicators/CLBadge.vue.d.ts +1 -1
- package/dist/components/Indicators/CLBanner.vue.d.ts +1 -1
- package/dist/components/Loading/CLSkeleton.vue.d.ts +1 -1
- package/dist/components/Loading/CLSpinner.vue.d.ts +1 -1
- package/dist/components/Modals/CLModal.vue.d.ts +2 -1
- package/dist/components/Navigation/CLLink.vue.d.ts +3 -2
- package/dist/components/Navigation/CLNavLink.vue.d.ts +3 -2
- package/dist/components/Navigation/CLNavSection.vue.d.ts +1 -1
- package/dist/components/Popups/CLDropdownMenu.vue.d.ts +3 -2
- package/dist/components/Popups/CLToast.vue.d.ts +1 -1
- package/dist/components/Table/CLTable.vue.d.ts +3 -2
- package/dist/components/Table/CLTableBody.vue.d.ts +3 -2
- package/dist/components/Table/CLTableCell.vue.d.ts +2 -1
- package/dist/components/Table/CLTableFooter.vue.d.ts +3 -2
- package/dist/components/Table/CLTableHeader.vue.d.ts +3 -2
- package/dist/components/Table/CLTableNestedCell.vue.d.ts +3 -2
- package/dist/components/Table/CLTableRow.vue.d.ts +3 -2
- package/dist/components/Theme/CLThemeProvider.vue.d.ts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +3859 -3792
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +1 -1
- package/package.json +18 -18
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { CLOrientation } from '../../index';
|
|
2
|
+
interface Props {
|
|
3
|
+
fluid?: boolean;
|
|
4
|
+
hasPill?: boolean;
|
|
5
|
+
orientation?: CLOrientation;
|
|
6
|
+
}
|
|
7
|
+
declare function __VLS_template(): {
|
|
8
|
+
attrs: Partial<{}>;
|
|
9
|
+
slots: {
|
|
10
|
+
default?(_: {}): any;
|
|
11
|
+
};
|
|
12
|
+
refs: {};
|
|
13
|
+
rootEl: HTMLDivElement;
|
|
14
|
+
};
|
|
15
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
16
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
17
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
18
|
+
export default _default;
|
|
19
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
20
|
+
new (): {
|
|
21
|
+
$slots: S;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CLBorderRadius, CLIconNames, CLInputTypes, CLGenericFocusFunction, CLGenericFunction, CLSizes, CLInputThemes, CLMessageThemes } from '../../index';
|
|
1
|
+
import { CLBorderRadius, CLIconNames, CLInputTypes, CLGenericFocusFunction, CLGenericFunction, CLSizes, CLInputThemes, CLMessageThemes, CLOrientation } from '../../index';
|
|
2
2
|
interface Props {
|
|
3
3
|
/** Sets the aria-label on the input. It should be used when there is no label present. */
|
|
4
4
|
ariaLabel?: string;
|
|
@@ -26,10 +26,12 @@ interface Props {
|
|
|
26
26
|
minLength?: number;
|
|
27
27
|
/** An array of messages to be displayed. */
|
|
28
28
|
messages?: string[];
|
|
29
|
-
/** The message type. The property can be one of `
|
|
29
|
+
/** The message type. The property can be one of `CLThemes`, e.g. `CLThemes.Danger`. */
|
|
30
30
|
messageType?: CLMessageThemes;
|
|
31
31
|
/** A string representing name of the input. The name is submitted along with the input value when the form it belongs to is submitted. */
|
|
32
32
|
name: string;
|
|
33
|
+
/** Sets the label position to be above or to the left of the form element. The property can be one of `CLOrientation` */
|
|
34
|
+
orientation?: CLOrientation;
|
|
33
35
|
/** A regexp pattern that can be used for validation. */
|
|
34
36
|
pattern?: string;
|
|
35
37
|
/** Setting this value would render the string the `<CLPill />` component below the input. */
|
|
@@ -74,5 +76,6 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
74
76
|
type: CLInputTypes;
|
|
75
77
|
theme: CLInputThemes;
|
|
76
78
|
size: CLSizes;
|
|
77
|
-
|
|
79
|
+
orientation: CLOrientation;
|
|
80
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
78
81
|
export default _default;
|
|
@@ -18,7 +18,7 @@ interface Props {
|
|
|
18
18
|
label?: string;
|
|
19
19
|
/** An array of messages to be displayed. */
|
|
20
20
|
messages?: string[];
|
|
21
|
-
/** The message type. The property can be one of `
|
|
21
|
+
/** The message type. The property can be one of `CLThemes`, e.g. `CLThemes.Danger`. */
|
|
22
22
|
messageType?: CLMessageThemes;
|
|
23
23
|
/** A string representing name of the radiobutton. The name is submitted along with the radiobutton value when the form it belongs to is submitted. */
|
|
24
24
|
name: string;
|
|
@@ -48,5 +48,5 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
48
48
|
testId: string;
|
|
49
49
|
theme: CLInputThemes;
|
|
50
50
|
size: CLSizes;
|
|
51
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
51
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
52
52
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CLBorderRadius, CLGenericFocusFunction, CLGenericFunction, CLInputThemes, CLMessageThemes, CLOption, CLSizes } from '../../index';
|
|
1
|
+
import { CLBorderRadius, CLGenericFocusFunction, CLGenericFunction, CLInputThemes, CLMessageThemes, CLOption, CLOrientation, CLSizes } from '../../index';
|
|
2
2
|
interface Props {
|
|
3
3
|
/** Sets the aria-label on the input. It should be used when there is no label present. */
|
|
4
4
|
ariaLabel?: string;
|
|
@@ -18,10 +18,12 @@ interface Props {
|
|
|
18
18
|
label?: string;
|
|
19
19
|
/** An array of messages to be displayed. */
|
|
20
20
|
messages?: string[];
|
|
21
|
-
/** The message type. The property can be one of `
|
|
21
|
+
/** The message type. The property can be one of `CLThemes`, e.g. `CLThemes.Danger`. */
|
|
22
22
|
messageType?: CLMessageThemes;
|
|
23
23
|
/** A string representing name of the select. The name is submitted along with the select value when the form it belongs to is submitted. */
|
|
24
24
|
name: string;
|
|
25
|
+
/** Sets the label position to be above or to the left of the form element. The property can be one of `CLOrientation` */
|
|
26
|
+
orientation?: CLOrientation;
|
|
25
27
|
/** A list of options */
|
|
26
28
|
options: CLOption[];
|
|
27
29
|
/** Set the required state. */
|
|
@@ -51,5 +53,5 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
51
53
|
testId: string;
|
|
52
54
|
theme: CLInputThemes;
|
|
53
55
|
size: CLSizes;
|
|
54
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
56
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
55
57
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CLBorderRadius, CLGenericFunction, CLGenericFocusFunction, CLMessageThemes, CLSizes, CLInputThemes } from '../../index';
|
|
1
|
+
import { CLBorderRadius, CLGenericFunction, CLGenericFocusFunction, CLMessageThemes, CLOrientation, CLSizes, CLInputThemes } from '../../index';
|
|
2
2
|
interface Props {
|
|
3
3
|
/** Sets the aria-label on the textarea. It should be used when there is no label present. */
|
|
4
4
|
ariaLabel?: string;
|
|
@@ -26,10 +26,12 @@ interface Props {
|
|
|
26
26
|
minLength?: number;
|
|
27
27
|
/** An array of messages to be displayed. */
|
|
28
28
|
messages?: string[];
|
|
29
|
-
/** The message type. The property can be one of `
|
|
29
|
+
/** The message type. The property can be one of `CLThemes`, e.g. `CLThemes.Danger`. */
|
|
30
30
|
messageType?: CLMessageThemes;
|
|
31
31
|
/** A string representing name of the textarea. The name is submitted along with the textarea value when the form it belongs to is submitted. */
|
|
32
32
|
name: string;
|
|
33
|
+
/** Sets the label position to be above or to the left of the form element. The property can be one of `CLOrientation` */
|
|
34
|
+
orientation?: CLOrientation;
|
|
33
35
|
/** A regexp pattern that can be used for validation. */
|
|
34
36
|
pattern?: string;
|
|
35
37
|
/** The default text shown when there is no value. Useful for providing a hint of what type of textarea is expected. */
|
|
@@ -70,5 +72,5 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
70
72
|
theme: CLInputThemes;
|
|
71
73
|
size: CLSizes;
|
|
72
74
|
resizable: boolean;
|
|
73
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
75
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
74
76
|
export default _default;
|
|
@@ -17,5 +17,5 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
17
17
|
testId: string;
|
|
18
18
|
elevated: boolean;
|
|
19
19
|
theme: CLBadgeThemes;
|
|
20
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
20
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
21
21
|
export default _default;
|
|
@@ -8,5 +8,5 @@ declare const _default: import('vue').DefineComponent<CLBannerProps, {}, {}, {},
|
|
|
8
8
|
busy: boolean;
|
|
9
9
|
height: string;
|
|
10
10
|
width: string;
|
|
11
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
11
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
12
12
|
export default _default;
|
|
@@ -16,5 +16,5 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
16
16
|
testId: string;
|
|
17
17
|
height: string;
|
|
18
18
|
width: string;
|
|
19
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
19
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
20
20
|
export default _default;
|
|
@@ -17,5 +17,5 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
17
17
|
align: CLAlign;
|
|
18
18
|
size: CLSizes;
|
|
19
19
|
position: CLPosition;
|
|
20
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
20
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
21
21
|
export default _default;
|
|
@@ -16,6 +16,7 @@ interface Props {
|
|
|
16
16
|
zIndex?: number;
|
|
17
17
|
}
|
|
18
18
|
declare function __VLS_template(): {
|
|
19
|
+
attrs: Partial<{}>;
|
|
19
20
|
slots: {
|
|
20
21
|
header?(_: {}): any;
|
|
21
22
|
body?(_: {}): any;
|
|
@@ -24,7 +25,7 @@ declare function __VLS_template(): {
|
|
|
24
25
|
refs: {
|
|
25
26
|
modalWindow: HTMLDivElement;
|
|
26
27
|
};
|
|
27
|
-
|
|
28
|
+
rootEl: any;
|
|
28
29
|
};
|
|
29
30
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
30
31
|
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
@@ -20,11 +20,12 @@ export interface Props {
|
|
|
20
20
|
underline?: boolean;
|
|
21
21
|
}
|
|
22
22
|
declare function __VLS_template(): {
|
|
23
|
+
attrs: Partial<{}>;
|
|
23
24
|
slots: {
|
|
24
25
|
default?(_: {}): any;
|
|
25
26
|
};
|
|
26
27
|
refs: {};
|
|
27
|
-
|
|
28
|
+
rootEl: HTMLAnchorElement;
|
|
28
29
|
};
|
|
29
30
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
30
31
|
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
@@ -34,7 +35,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
34
35
|
external: boolean;
|
|
35
36
|
rel: string;
|
|
36
37
|
underline: boolean;
|
|
37
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
38
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLAnchorElement>;
|
|
38
39
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
39
40
|
export default _default;
|
|
40
41
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -20,11 +20,12 @@ export interface Props {
|
|
|
20
20
|
theme?: CLSimpleThemes;
|
|
21
21
|
}
|
|
22
22
|
declare function __VLS_template(): {
|
|
23
|
+
attrs: Partial<{}>;
|
|
23
24
|
slots: {
|
|
24
25
|
default?(_: {}): any;
|
|
25
26
|
};
|
|
26
27
|
refs: {};
|
|
27
|
-
|
|
28
|
+
rootEl: HTMLAnchorElement;
|
|
28
29
|
};
|
|
29
30
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
30
31
|
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
@@ -32,7 +33,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
32
33
|
theme: CLSimpleThemes;
|
|
33
34
|
external: boolean;
|
|
34
35
|
rel: string;
|
|
35
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
36
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLAnchorElement>;
|
|
36
37
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
37
38
|
export default _default;
|
|
38
39
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -13,5 +13,5 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
13
13
|
testId: string;
|
|
14
14
|
type: CLOrientation;
|
|
15
15
|
theme: CLSimpleThemes;
|
|
16
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
16
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLUListElement>;
|
|
17
17
|
export default _default;
|
|
@@ -38,6 +38,7 @@ interface Props {
|
|
|
38
38
|
zIndex?: number;
|
|
39
39
|
}
|
|
40
40
|
declare function __VLS_template(): {
|
|
41
|
+
attrs: Partial<{}>;
|
|
41
42
|
slots: {
|
|
42
43
|
content?(_: {}): any;
|
|
43
44
|
};
|
|
@@ -266,7 +267,7 @@ declare function __VLS_template(): {
|
|
|
266
267
|
}> | null;
|
|
267
268
|
dropdownElem: HTMLDivElement;
|
|
268
269
|
};
|
|
269
|
-
|
|
270
|
+
rootEl: HTMLDivElement;
|
|
270
271
|
};
|
|
271
272
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
272
273
|
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
@@ -280,7 +281,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
280
281
|
isOpen: boolean;
|
|
281
282
|
placement: CLPlacement;
|
|
282
283
|
zIndex: number;
|
|
283
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
284
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
284
285
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
285
286
|
export default _default;
|
|
286
287
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -6,5 +6,5 @@ declare const _default: import('vue').DefineComponent<CLToastProps, {}, {}, {},
|
|
|
6
6
|
width: string;
|
|
7
7
|
iconSize: CLIconSizes;
|
|
8
8
|
dismissTimer: number;
|
|
9
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
9
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLOutputElement>;
|
|
10
10
|
export default _default;
|
|
@@ -22,11 +22,12 @@ export interface Props {
|
|
|
22
22
|
withVerticalLines?: boolean;
|
|
23
23
|
}
|
|
24
24
|
declare function __VLS_template(): {
|
|
25
|
+
attrs: Partial<{}>;
|
|
25
26
|
slots: {
|
|
26
27
|
default?(_: {}): any;
|
|
27
28
|
};
|
|
28
29
|
refs: {};
|
|
29
|
-
|
|
30
|
+
rootEl: HTMLDivElement;
|
|
30
31
|
};
|
|
31
32
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
32
33
|
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
@@ -35,7 +36,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
35
36
|
type: CLTableTypes;
|
|
36
37
|
id: string;
|
|
37
38
|
rowHeight: string;
|
|
38
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
39
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
39
40
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
40
41
|
export default _default;
|
|
41
42
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
2
3
|
slots: {
|
|
3
4
|
default?(_: {}): any;
|
|
4
5
|
};
|
|
5
6
|
refs: {};
|
|
6
|
-
|
|
7
|
+
rootEl: HTMLTableSectionElement;
|
|
7
8
|
};
|
|
8
9
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
9
|
-
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
10
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLTableSectionElement>;
|
|
10
11
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
11
12
|
export default _default;
|
|
12
13
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -14,6 +14,7 @@ export interface Props {
|
|
|
14
14
|
onClick?: CLGenericFunction;
|
|
15
15
|
}
|
|
16
16
|
declare function __VLS_template(): {
|
|
17
|
+
attrs: Partial<{}>;
|
|
17
18
|
slots: {
|
|
18
19
|
default?(_: {}): any;
|
|
19
20
|
default?(_: {}): any;
|
|
@@ -21,7 +22,7 @@ declare function __VLS_template(): {
|
|
|
21
22
|
default?(_: {}): any;
|
|
22
23
|
};
|
|
23
24
|
refs: {};
|
|
24
|
-
|
|
25
|
+
rootEl: any;
|
|
25
26
|
};
|
|
26
27
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
27
28
|
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
2
3
|
slots: {
|
|
3
4
|
default?(_: {}): any;
|
|
4
5
|
};
|
|
5
6
|
refs: {};
|
|
6
|
-
|
|
7
|
+
rootEl: HTMLTableSectionElement;
|
|
7
8
|
};
|
|
8
9
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
9
|
-
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
10
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLTableSectionElement>;
|
|
10
11
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
11
12
|
export default _default;
|
|
12
13
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
2
3
|
slots: {
|
|
3
4
|
default?(_: {}): any;
|
|
4
5
|
};
|
|
5
6
|
refs: {};
|
|
6
|
-
|
|
7
|
+
rootEl: HTMLTableSectionElement;
|
|
7
8
|
};
|
|
8
9
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
9
|
-
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
10
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLTableSectionElement>;
|
|
10
11
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
11
12
|
export default _default;
|
|
12
13
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -2,14 +2,15 @@ export interface Props {
|
|
|
2
2
|
truncate?: boolean;
|
|
3
3
|
}
|
|
4
4
|
declare function __VLS_template(): {
|
|
5
|
+
attrs: Partial<{}>;
|
|
5
6
|
slots: {
|
|
6
7
|
default?(_: {}): any;
|
|
7
8
|
};
|
|
8
9
|
refs: {};
|
|
9
|
-
|
|
10
|
+
rootEl: HTMLDivElement;
|
|
10
11
|
};
|
|
11
12
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
12
|
-
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
13
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
13
14
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
14
15
|
export default _default;
|
|
15
16
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -4,14 +4,15 @@ export interface Props {
|
|
|
4
4
|
onClick?: CLGenericFunction;
|
|
5
5
|
}
|
|
6
6
|
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
7
8
|
slots: {
|
|
8
9
|
default?(_: {}): any;
|
|
9
10
|
};
|
|
10
11
|
refs: {};
|
|
11
|
-
|
|
12
|
+
rootEl: HTMLTableRowElement;
|
|
12
13
|
};
|
|
13
14
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
14
|
-
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLTableRowElement>;
|
|
15
16
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
16
17
|
export default _default;
|
|
17
18
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -4,11 +4,12 @@ interface Props {
|
|
|
4
4
|
themeConfig?: CLThemeConfig;
|
|
5
5
|
}
|
|
6
6
|
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
7
8
|
slots: {
|
|
8
9
|
default?(_: {}): any;
|
|
9
10
|
};
|
|
10
11
|
refs: {};
|
|
11
|
-
|
|
12
|
+
rootEl: any;
|
|
12
13
|
};
|
|
13
14
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
14
15
|
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { Align as CLAlign, BorderRadius as CLBorderRadius, ButtonTypes as CLButtonTypes, CardTypes as CLCardTypes, DarkMode as CLDarkMode, HeadingLevels as CLHeadingLevels, HeadingTypes as CLHeadingTypes, IconSizes as CLIconSizes, IconNames as CLIconNames, InputTypes as CLInputTypes, LinkTarget as CLLinkTarget,
|
|
1
|
+
export { Align as CLAlign, BorderRadius as CLBorderRadius, ButtonTypes as CLButtonTypes, CardTypes as CLCardTypes, DarkMode as CLDarkMode, HeadingLevels as CLHeadingLevels, HeadingTypes as CLHeadingTypes, IconSizes as CLIconSizes, IconNames as CLIconNames, InputTypes as CLInputTypes, LinkTarget as CLLinkTarget, Orientation as CLOrientation, Order as CLOrder, PaginationType as CLPaginationType, Placement as CLPlacement, Position as CLPosition, Sizes as CLSizes, TableTypes as CLTableTypes, TextTypes as CLTextTypes, Themes as CLThemes, } from './types';
|
|
2
2
|
export type { BadgeThemes as CLBadgeThemes, BannerProps as CLBannerProps, CardProps as CLCardProps, HeadingThemes as CLHeadingThemes, InputThemes as CLInputThemes, GenericFunction as CLGenericFunction, GenericFocusFunction as CLGenericFocusFunction, MessageThemes as CLMessageThemes, NavItem as CLNavItem, PillThemes as CLPillThemes, Option as CLOption, SimpleThemes as CLSimpleThemes, SpinnerThemes as CLSpinnerThemes, Theme as CLTheme, ThemeConfig as CLThemeConfig, ThemeKeys as CLThemeKeys, TextThemes as CLTextThemes, TextHtmlTags as CLTextHtmlTags, ToastProps as CLToastProps, ToastThemes as CLToastThemes, } from './types';
|
|
3
3
|
export { default as CLA11yButton } from './components/Buttons/CLA11yButton.vue';
|
|
4
4
|
export { default as CLBadge } from './components/Indicators/CLBadge.vue';
|
|
@@ -9,6 +9,7 @@ export { default as CLCarousel } from './components/Containers/Carousel/CLCarous
|
|
|
9
9
|
export { default as CLCarouselSlide } from './components/Containers/Carousel/CLCarouselSlide.vue';
|
|
10
10
|
export { default as CLCheckbox } from './components/Form/CLCheckbox.vue';
|
|
11
11
|
export { default as CLDisclosure } from './components/Containers/CLDisclosure.vue';
|
|
12
|
+
export { default as CLFormField } from './components/Form/CLFormField.vue';
|
|
12
13
|
export { default as CLHeading } from './components/Typography/CLHeading.vue';
|
|
13
14
|
export { default as CLIcon } from './components/Assets/CLIcon.vue';
|
|
14
15
|
export { default as CLInput } from './components/Form/CLInput.vue';
|