From 22f22f2fac11f0804b77c76cb278074ad9d187ac Mon Sep 17 00:00:00 2001 From: Akalanka Perera Date: Tue, 27 Aug 2024 22:00:54 +0530 Subject: [PATCH] Docs: updated images --- README.md | 9 +- src/stories/designer/categorized.stories.tsx | 784 +++++++++++++++++++ 2 files changed, 789 insertions(+), 4 deletions(-) create mode 100644 src/stories/designer/categorized.stories.tsx diff --git a/README.md b/README.md index 6298248..86c0571 100644 --- a/README.md +++ b/README.md @@ -20,11 +20,11 @@
-image +image

- image - image + image + image

## Features @@ -40,7 +40,7 @@ - Change seat colors ✓ - Change seat labels ✓ - Change seat status ✓ - - Group seats together into categories ✓ + - Group seats into categories ✓ - Categorizer (Manage seat categories) ✓ - **Pen** @@ -69,6 +69,7 @@ - **Miscallaneous** - Add, move around and scale background images ✓ - Multiple element selection and deselection ✓ + - Rotate elements ✓ - Bring elements to front or back ✓ - **Responsive**: The layout is responsive and can be viewed on any device ✓ diff --git a/src/stories/designer/categorized.stories.tsx b/src/stories/designer/categorized.stories.tsx new file mode 100644 index 0000000..85de1d0 --- /dev/null +++ b/src/stories/designer/categorized.stories.tsx @@ -0,0 +1,784 @@ +import SeatToolkit from "@/index"; +import { STKMode } from "../_utils"; +import { options } from "../options"; + +export default { + title: "Designer/Categorized", + component: SeatToolkit, + ...options +}; + +export const Story = { + render: (props) => ( + + ) +};