@lumx/vue 4.3.2-alpha.5 → 4.3.2-alpha.7

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,9 @@
1
+ import { GridColumnProps as UIProps, GridColumnGapSize, CLASSNAME, COMPONENT_NAME, DEFAULT_PROPS } from '@lumx/core/js/components/GridColumn';
2
+ import { VueToJSXProps } from '../../utils/VueToJSX';
3
+ export type GridColumnProps = VueToJSXProps<UIProps>;
4
+ export { CLASSNAME, COMPONENT_NAME, DEFAULT_PROPS };
5
+ export type { GridColumnGapSize };
6
+ declare const GridColumn: import('vue').DefineSetupFnComponent<GridColumnProps, {}, {}, Omit<UIProps, "className" | "children" | "ref" | "onChange" | "onClick"> & {
7
+ class?: string;
8
+ } & {}, import('vue').PublicProps>;
9
+ export default GridColumn;
@@ -0,0 +1,42 @@
1
+ declare const _default: {
2
+ component: any;
3
+ render: any;
4
+ argTypes: {
5
+ nbItems: {
6
+ control: string;
7
+ };
8
+ gap: {
9
+ control: {
10
+ type: "select" | "inline-radio";
11
+ };
12
+ options: (import('../..').GridColumnGapSize | undefined)[];
13
+ mapping: Record<string, import('../..').GridColumnGapSize | undefined> | undefined;
14
+ };
15
+ itemMinWidth: {
16
+ control: string;
17
+ };
18
+ maxColumns: {
19
+ control: string;
20
+ };
21
+ };
22
+ args: {
23
+ nbItems: number;
24
+ as?: any;
25
+ children?: import('react').ReactNode;
26
+ gap?: import('../..').GridColumnGapSize | undefined;
27
+ maxColumns?: number | undefined;
28
+ itemMinWidth?: number | undefined;
29
+ style?: any;
30
+ ref?: import('../..').CommonRef;
31
+ className?: string | undefined;
32
+ };
33
+ title: string;
34
+ };
35
+ export default _default;
36
+ export declare const Default: {};
37
+ export declare const Columns: {
38
+ args: {
39
+ maxColumns: number;
40
+ itemMinWidth: number;
41
+ };
42
+ };
@@ -0,0 +1,3 @@
1
+ export { default as GridColumn } from './GridColumn';
2
+ export type { GridColumnProps, GridColumnGapSize } from './GridColumn';
3
+ export { CLASSNAME as GRID_COLUMN_CLASSNAME, COMPONENT_NAME as GRID_COLUMN_COMPONENT_NAME } from './GridColumn';
package/index.d.ts CHANGED
@@ -6,6 +6,7 @@ export * from './components/checkbox';
6
6
  export * from './components/divider';
7
7
  export * from './components/flag';
8
8
  export * from './components/flex-box';
9
+ export * from './components/grid-column';
9
10
  export * from './components/heading';
10
11
  export * from './components/icon';
11
12
  export * from './components/input-helper';