@lumx/vue 4.8.0-next.0 → 4.8.0-next.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.
@@ -0,0 +1,13 @@
1
+ import { InlineListProps as UIProps } from '@lumx/core/js/components/InlineList';
2
+ import { VueToJSXProps } from '../../utils/VueToJSX';
3
+ export type InlineListProps = VueToJSXProps<UIProps, 'items'>;
4
+ /**
5
+ * InlineList component.
6
+ *
7
+ * @param props Component props.
8
+ * @return Vue element.
9
+ */
10
+ declare const InlineList: import('vue').DefineSetupFnComponent<InlineListProps, {}, {}, Omit<UIProps, "className" | import('@lumx/core/js/types').PropsToOverride | "children" | "items"> & {
11
+ class?: string;
12
+ } & {}, import('vue').PublicProps>;
13
+ export default InlineList;
@@ -0,0 +1,53 @@
1
+ declare const _default: {
2
+ component: any;
3
+ argTypes: {
4
+ typography: {
5
+ control: {
6
+ type: "select" | "inline-radio";
7
+ };
8
+ options: ("caption" | "title" | "overline" | "body1" | "body2" | "subtitle1" | "subtitle2" | "headline" | "display1" | "custom-title1" | "custom-title2" | "custom-title3" | "custom-title4" | "custom-title5" | "custom-title6" | "custom-intro" | "custom-body-large" | "custom-body" | "custom-quote" | "custom-publish-info" | "custom-button")[];
9
+ mapping: Record<string, "caption" | "title" | "overline" | "body1" | "body2" | "subtitle1" | "subtitle2" | "headline" | "display1" | "custom-title1" | "custom-title2" | "custom-title3" | "custom-title4" | "custom-title5" | "custom-title6" | "custom-intro" | "custom-body-large" | "custom-body" | "custom-quote" | "custom-publish-info" | "custom-button"> | undefined;
10
+ };
11
+ color: {
12
+ control: {
13
+ type: "select" | "inline-radio";
14
+ };
15
+ options: ("light" | "dark" | "primary" | "secondary" | "blue" | "green" | "yellow" | "red" | "grey" | undefined)[];
16
+ mapping: Record<string, "light" | "dark" | "primary" | "secondary" | "blue" | "green" | "yellow" | "red" | "grey" | undefined> | undefined;
17
+ };
18
+ colorVariant: {
19
+ control: {
20
+ type: "select" | "inline-radio";
21
+ };
22
+ options: ("D1" | "D2" | "L1" | "L2" | "L3" | "L4" | "L5" | "L6" | "N")[];
23
+ mapping: Record<string, "D1" | "D2" | "L1" | "L2" | "L3" | "L4" | "L5" | "L6" | "N"> | undefined;
24
+ };
25
+ children: {
26
+ control: boolean;
27
+ };
28
+ };
29
+ title: string;
30
+ };
31
+ export default _default;
32
+ export declare const WithElements: {
33
+ render: (args: any) => import("vue/jsx-runtime").JSX.Element;
34
+ };
35
+ export declare const MixedNoWrapAndTruncate: {
36
+ args: {
37
+ typography: string;
38
+ color: string;
39
+ colorVariant: string;
40
+ style: {
41
+ width: string;
42
+ };
43
+ };
44
+ render: ({ children, ...args }: any) => import("vue/jsx-runtime").JSX.Element;
45
+ decorators: ((story: any, context: any) => any)[];
46
+ };
47
+ export declare const Wrap: {
48
+ args: {
49
+ wrap: boolean;
50
+ };
51
+ render: ({ children, ...args }: any) => import("vue/jsx-runtime").JSX.Element;
52
+ decorators: ((story: any, context: any) => any)[];
53
+ };
@@ -0,0 +1,3 @@
1
+ import { default as InlineList, InlineListProps } from './InlineList';
2
+ export { InlineList };
3
+ export type { InlineListProps };
package/index.d.ts CHANGED
@@ -25,6 +25,7 @@ export * from './components/switch';
25
25
  export * from './components/text-field';
26
26
  export * from './components/uploader';
27
27
  export * from './components/generic-block';
28
+ export * from './components/inline-list';
28
29
  export * from './components/table';
29
30
  export * from './components/text';
30
31
  export * from './components/thumbnail';