seat-editor 1.2.20 → 1.2.21
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 +8 -3
- package/dist/app/layout.d.ts +1 -1
- package/dist/app/new-board/page.d.ts +1 -1
- package/dist/app/old-board/page.d.ts +1 -2
- package/dist/app/only-view/constant.d.ts +18 -20
- package/dist/app/only-view/constant.js +1307 -1385
- package/dist/app/only-view/page.d.ts +1 -1
- package/dist/app/page.d.ts +1 -1
- package/dist/components/button-tools/index.d.ts +1 -1
- package/dist/components/form-tools/label.d.ts +1 -1
- package/dist/components/form-tools/shape.d.ts +1 -1
- package/dist/components/input/number-indicator.d.ts +1 -1
- package/dist/components/layer/index.d.ts +1 -1
- package/dist/components/layer/index.js +3 -3
- package/dist/components/lib/index.d.ts +1 -1
- package/dist/components/modal-preview/index.d.ts +1 -1
- package/dist/features/board/board-slice.js +1 -1
- package/dist/features/board/index.d.ts +1 -1
- package/dist/features/board/index.js +21 -1
- package/dist/features/board/index.jsx +20 -0
- package/dist/features/navbar/index.d.ts +1 -1
- package/dist/features/package/index.d.ts +8 -1
- package/dist/features/package/index.js +13 -6
- package/dist/features/package/index.jsx +6 -5
- package/dist/features/panel/index.d.ts +10 -1
- package/dist/features/panel/index.js +5 -5
- package/dist/features/panel/index.jsx +5 -5
- package/dist/features/panel/select-tool.d.ts +1 -1
- package/dist/features/panel/square-circle-tool.d.ts +1 -1
- package/dist/features/panel/table-seat-circle.d.ts +1 -1
- package/dist/features/panel/text-tool.d.ts +1 -1
- package/dist/features/panel/upload-tool.d.ts +8 -1
- package/dist/features/panel/upload-tool.js +94 -38
- package/dist/features/panel/upload-tool.jsx +94 -38
- package/dist/features/side-tool/index.d.ts +1 -1
- package/dist/features/view/index.d.ts +1 -1
- package/dist/features/view/index.js +17 -7
- package/dist/features/view/index.jsx +3 -3
- package/dist/provider/redux-provider.d.ts +1 -1
- package/dist/provider/store-provider.d.ts +1 -1
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -95,8 +95,13 @@ export default OnlyView;
|
|
|
95
95
|
| `selectedTableColor` | `string` | Color value for highlighting selected components. |
|
|
96
96
|
| `colorMatchKey` | `{ color: string, key: string }[]` | Array to match status keys with specific colors. |
|
|
97
97
|
| `statusKey` | `string` | Key name used from each component to determine its current status. |
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
98
|
+
| `action` | `File` | You can put logic to this props|
|
|
99
|
+
| `mappingProps` | `any` | responseMapping?: {
|
|
100
|
+
status: string;
|
|
101
|
+
message: string;
|
|
102
|
+
data: string;
|
|
103
|
+
src: string;
|
|
104
|
+
};|
|
|
105
|
+
|
|
101
106
|
|
|
102
107
|
|
package/dist/app/layout.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default function NewBoard(): import("react").JSX.Element;
|
|
1
|
+
export default function NewBoard(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -18,25 +18,23 @@ export declare const dummyImage: {
|
|
|
18
18
|
}[];
|
|
19
19
|
}[];
|
|
20
20
|
export declare const dataDummy: {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
21
|
+
x: number;
|
|
22
|
+
y: number;
|
|
23
|
+
width: number;
|
|
24
|
+
height: number;
|
|
25
|
+
shape: string;
|
|
26
|
+
id: number;
|
|
27
|
+
fill: string;
|
|
28
|
+
rotation: number;
|
|
29
|
+
seatCount: number;
|
|
30
|
+
text: string;
|
|
31
|
+
labels: ({
|
|
32
|
+
label: string;
|
|
33
|
+
fontSize: number;
|
|
34
|
+
y: number;
|
|
35
|
+
} | {
|
|
36
|
+
label: string;
|
|
24
37
|
y: number;
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
shape: string;
|
|
28
|
-
id: number;
|
|
29
|
-
fill: string;
|
|
30
|
-
rotation: number;
|
|
31
|
-
seatCount: number;
|
|
32
|
-
text: string;
|
|
33
|
-
opacity: number;
|
|
34
|
-
labels: {
|
|
35
|
-
label: string;
|
|
36
|
-
fontColor: string;
|
|
37
|
-
x: number;
|
|
38
|
-
fontSize: number;
|
|
39
|
-
y: number;
|
|
40
|
-
}[];
|
|
41
|
-
};
|
|
38
|
+
fontSize?: undefined;
|
|
39
|
+
})[];
|
|
42
40
|
}[];
|