@codeandfunction/callaloo 1.0.3 → 1.1.3
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 +1 -1
- package/dist/components/NavSection.vue.d.ts +17 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +306 -304
- package/dist/index.umd.cjs +2 -2
- package/dist/types.d.ts +4 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,9 +1,16 @@
|
|
|
1
|
-
import { NavItem } from '../types';
|
|
1
|
+
import { NavItem, Orientation } from '../types';
|
|
2
2
|
|
|
3
3
|
export interface Props {
|
|
4
4
|
navItems: NavItem[];
|
|
5
|
+
type?: Orientation;
|
|
5
6
|
}
|
|
6
|
-
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
7
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
8
|
+
type: Orientation;
|
|
9
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
10
|
+
type: Orientation;
|
|
11
|
+
}>>>, {
|
|
12
|
+
type: Orientation;
|
|
13
|
+
}, {}>;
|
|
7
14
|
export default _default;
|
|
8
15
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
9
16
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -14,3 +21,11 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
14
21
|
required: true;
|
|
15
22
|
};
|
|
16
23
|
};
|
|
24
|
+
type __VLS_WithDefaults<P, D> = {
|
|
25
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
26
|
+
default: D[K];
|
|
27
|
+
}> : P[K];
|
|
28
|
+
};
|
|
29
|
+
type __VLS_Prettify<T> = {
|
|
30
|
+
[K in keyof T]: T[K];
|
|
31
|
+
} & {};
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { Align as CLAlign, ButtonTypes as CLButtonTypes, CardTypes as CLCardTypes, DarkMode as CLDarkMode, HeadingTypes as CLHeadingTypes, IconNames as CLIconNames, InputTypes as CLInputTypes, LinkTarget as CLLinkTarget, 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, DarkMode as CLDarkMode, HeadingTypes as CLHeadingTypes, IconNames as CLIconNames, InputTypes as CLInputTypes, LinkTarget as CLLinkTarget, Orientation as CLOrientation, Position as CLPosition, Sizes as CLSizes, TableTypes as CLTableTypes, TextTypes as CLTextTypes, Themes as CLThemes, } from './types';
|
|
2
2
|
export type { BannerProps as CLBannerProps, CardProps as CLCardProps, InputProps as CLInputProps, NavItem as CLNavItem, Option as CLOption, ToastProps as CLToastProps, } from './types';
|
|
3
3
|
export { default as CLA11yButton } from './components/A11yButton.vue';
|
|
4
4
|
export { default as CLBadge } from './components/Badge.vue';
|