@codeandfunction/callaloo 1.8.1 → 1.9.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.
- package/dist/assets/index.css +1 -1
- package/dist/components/Buttons/Button.vue.d.ts +7 -1
- package/dist/components/Containers/Disclosure.vue.d.ts +2 -1
- package/dist/components/Indicators/Badge.vue.d.ts +3 -2
- package/dist/components/Loading/Skeleton.vue.d.ts +8 -5
- package/dist/components/Popups/DropdownMenu.vue.d.ts +3 -1
- package/dist/components/Table/Table.vue.d.ts +9 -8
- package/dist/index.d.ts +1 -1
- package/dist/index.js +184 -127
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +37 -14
- package/package.json +15 -15
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
|
-
import { CLAlign, CLButtonTypes, CLIconNames, CLSizes, CLThemes } from '../../index';
|
|
2
|
+
import { CLAlign, CLBorderRadius, CLButtonTypes, CLIconNames, CLSizes, CLThemes } from '../../index';
|
|
3
3
|
|
|
4
4
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
5
5
|
alignContent: {
|
|
@@ -9,6 +9,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
9
9
|
ariaLabel: {
|
|
10
10
|
type: StringConstructor;
|
|
11
11
|
};
|
|
12
|
+
borderRadius: {
|
|
13
|
+
type: PropType<CLBorderRadius>;
|
|
14
|
+
};
|
|
12
15
|
busy: {
|
|
13
16
|
type: BooleanConstructor;
|
|
14
17
|
};
|
|
@@ -88,6 +91,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
88
91
|
ariaLabel: {
|
|
89
92
|
type: StringConstructor;
|
|
90
93
|
};
|
|
94
|
+
borderRadius: {
|
|
95
|
+
type: PropType<CLBorderRadius>;
|
|
96
|
+
};
|
|
91
97
|
busy: {
|
|
92
98
|
type: BooleanConstructor;
|
|
93
99
|
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { CLHeadingTypes, CLHeadingLevels, CLIconNames, CLTextTypes, CLSizes } from '../../index';
|
|
1
|
+
import { CLHeadingTypes, CLHeadingLevels, CLIconNames, CLTextTypes, CLSizes, CLBorderRadius } from '../../index';
|
|
2
2
|
|
|
3
3
|
export interface Props {
|
|
4
|
+
borderRadius?: CLBorderRadius;
|
|
4
5
|
compact?: boolean;
|
|
5
6
|
contentSpacing?: boolean;
|
|
6
7
|
disclosureId: string;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { CLBadgeThemes, CLThemes } from '../../index';
|
|
1
|
+
import { CLBadgeThemes, CLBorderRadius, CLThemes } from '../../index';
|
|
2
2
|
|
|
3
3
|
export interface Props {
|
|
4
|
+
borderRadius?: CLBorderRadius;
|
|
4
5
|
count?: number;
|
|
5
|
-
limit?: number;
|
|
6
6
|
elevated?: boolean;
|
|
7
|
+
limit?: number;
|
|
7
8
|
theme?: CLBadgeThemes;
|
|
8
9
|
}
|
|
9
10
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
@@ -1,16 +1,19 @@
|
|
|
1
|
+
import { CLBorderRadius } from '../../index';
|
|
2
|
+
|
|
1
3
|
export interface Props {
|
|
2
|
-
|
|
4
|
+
borderRadius?: CLBorderRadius;
|
|
3
5
|
height?: string;
|
|
4
6
|
rounded?: boolean;
|
|
7
|
+
width?: string;
|
|
5
8
|
}
|
|
6
9
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
7
|
-
width: string;
|
|
8
|
-
height: string;
|
|
9
10
|
rounded: boolean;
|
|
10
|
-
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
11
|
-
width: string;
|
|
12
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>, {
|
|
13
14
|
rounded: boolean;
|
|
15
|
+
height: string;
|
|
16
|
+
width: string;
|
|
14
17
|
}>>> & Readonly<{}>, {
|
|
15
18
|
rounded: boolean;
|
|
16
19
|
width: string;
|
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
import { CLIconNames, CLPlacement, CLSizes, CLThemes } from '../../index';
|
|
1
|
+
import { CLBorderRadius, CLIconNames, CLPlacement, CLSizes, CLThemes } from '../../index';
|
|
2
2
|
|
|
3
3
|
interface Props {
|
|
4
4
|
buttonAriaLabel: string;
|
|
5
|
+
buttonBorderRadius?: CLBorderRadius;
|
|
5
6
|
buttonSize?: CLSizes;
|
|
6
7
|
buttonTheme?: CLThemes;
|
|
7
8
|
onCloseHandler?: () => void;
|
|
9
|
+
containerBorderRadius?: CLBorderRadius;
|
|
8
10
|
containerTheme?: CLThemes.Light | CLThemes.Dark;
|
|
9
11
|
contentWidth?: string;
|
|
10
12
|
iconAfter?: CLIconNames;
|
|
@@ -1,28 +1,29 @@
|
|
|
1
|
-
import { CLTableTypes } from '../../index';
|
|
1
|
+
import { CLBorderRadius, CLTableTypes } from '../../index';
|
|
2
2
|
|
|
3
3
|
export interface Props {
|
|
4
|
-
id?: string;
|
|
5
|
-
type?: CLTableTypes;
|
|
6
|
-
striped?: boolean;
|
|
7
|
-
withVerticalLines?: boolean;
|
|
8
4
|
bordered?: boolean;
|
|
5
|
+
borderRadius?: CLBorderRadius;
|
|
9
6
|
colWidths?: string[];
|
|
10
|
-
|
|
7
|
+
id?: string;
|
|
11
8
|
rounded?: boolean;
|
|
9
|
+
rowHeight?: string;
|
|
10
|
+
striped?: boolean;
|
|
11
|
+
type?: CLTableTypes;
|
|
12
|
+
withVerticalLines?: boolean;
|
|
12
13
|
}
|
|
13
14
|
declare function __VLS_template(): {
|
|
14
15
|
default?(_: {}): any;
|
|
15
16
|
};
|
|
16
17
|
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
17
18
|
id: string;
|
|
18
|
-
type: CLTableTypes;
|
|
19
19
|
rounded: boolean;
|
|
20
20
|
rowHeight: string;
|
|
21
|
+
type: CLTableTypes;
|
|
21
22
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
22
23
|
id: string;
|
|
23
|
-
type: CLTableTypes;
|
|
24
24
|
rounded: boolean;
|
|
25
25
|
rowHeight: string;
|
|
26
|
+
type: CLTableTypes;
|
|
26
27
|
}>>> & Readonly<{}>, {
|
|
27
28
|
rounded: boolean;
|
|
28
29
|
type: CLTableTypes;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
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, Placement as CLPlacement, Position as CLPosition, Sizes as CLSizes, TableTypes as CLTableTypes, TextTypes as CLTextTypes, Themes as CLThemes, } from './types';
|
|
1
|
+
export { Align as CLAlign, ButtonTypes as CLButtonTypes, CardTypes as CLCardTypes, BorderRadius as CLBorderRadius, 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, 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, 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';
|