Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalKowalczyk committed Oct 13, 2023
1 parent eeb12b0 commit 855cb1a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codeebo-react-grid",
"version": "1.3.3",
"version": "1.4.0",
"description": "React Grid Components - Row, Col, Grid, Container",
"repository": "MichalKowalczyk/codeebo-react-grid",
"license": "MIT",
Expand Down
15 changes: 12 additions & 3 deletions src/components/generic-list/generic-list.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ const meta: any = {
title: "Example/generic-list",
component: GenericList,
tags: ["autodocs"],
// parameters: {
// layout: "centered",
// },
parameters: {
layout: "centered",
},
} satisfies Meta<typeof GenericList>;

export default meta;
Expand All @@ -30,5 +30,14 @@ export const StandardList: Story = {
["Surname", "surname", 4],
["Email", "email", 4],
],

rowChildren: (x: any) => null,
hideHeader: false,
// actions?: NumberStringTuple;
status: "finished",
inputProps: {
onChange: (value: Array<object> | object) => alert(JSON.stringify(value)),
multiselect: true,
},
},
};

0 comments on commit 855cb1a

Please sign in to comment.