seat-editor 2.1.1 → 2.1.2
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/dist/app/constant.d.ts +101 -0
- package/dist/app/constant.js +3064 -0
- package/dist/app/layout.d.ts +6 -0
- package/dist/app/layout.js +22 -0
- package/dist/app/new-board/page.d.ts +1 -0
- package/dist/app/new-board/page.js +34 -0
- package/dist/app/old-board/page.d.ts +2 -0
- package/dist/app/old-board/page.js +377 -0
- package/dist/app/only-view/constant.d.ts +40 -0
- package/dist/app/only-view/constant.js +1336 -0
- package/dist/app/only-view/page.d.ts +2 -0
- package/dist/app/only-view/page.js +41 -0
- package/dist/app/page.d.ts +2 -0
- package/dist/app/page.js +8 -0
- package/dist/app/test/page.d.ts +1 -0
- package/dist/app/test/page.js +43 -0
- package/dist/app/v2/page.d.ts +2 -0
- package/dist/app/v2/page.js +8 -0
- package/dist/components/button-tools/index.d.ts +11 -0
- package/dist/components/button-tools/index.js +11 -0
- package/dist/components/form-tools/label.d.ts +2 -0
- package/dist/components/form-tools/label.js +7 -0
- package/dist/components/form-tools/shape.d.ts +4 -0
- package/dist/components/form-tools/shape.js +25 -0
- package/dist/components/input/number-indicator.d.ts +7 -0
- package/dist/components/input/number-indicator.js +27 -0
- package/dist/components/joystick/index.d.ts +11 -0
- package/dist/components/joystick/index.js +48 -0
- package/dist/components/layer/index.d.ts +19 -0
- package/dist/components/layer/index.js +295 -0
- package/dist/components/layer-v2/index.d.ts +19 -0
- package/dist/components/layer-v2/index.js +282 -0
- package/dist/components/layer-v3/index.d.ts +19 -0
- package/dist/components/layer-v3/index.js +337 -0
- package/dist/components/lib/index.d.ts +8 -0
- package/dist/components/lib/index.js +28 -0
- package/dist/components/modal-preview/index.d.ts +4 -0
- package/dist/components/modal-preview/index.js +10 -0
- package/dist/features/board/board-slice.d.ts +14 -0
- package/dist/features/board/board-slice.js +52 -0
- package/dist/features/board/index.d.ts +6 -0
- package/dist/features/board/index.js +666 -0
- package/dist/features/board-v2/board-slice.d.ts +14 -0
- package/dist/features/board-v2/board-slice.js +52 -0
- package/dist/features/board-v2/index.d.ts +7 -0
- package/dist/features/board-v2/index.js +807 -0
- package/dist/features/board-v3/board-slice.d.ts +16 -0
- package/dist/features/board-v3/board-slice.js +83 -0
- package/dist/features/board-v3/history-slice.d.ts +27 -0
- package/dist/features/board-v3/history-slice.js +27 -0
- package/dist/features/board-v3/index.d.ts +7 -0
- package/dist/features/board-v3/index.js +785 -0
- package/dist/features/navbar/index.d.ts +2 -0
- package/dist/features/navbar/index.js +6 -0
- package/dist/features/package/index.d.ts +31 -0
- package/dist/features/package/index.js +104 -0
- package/dist/features/panel/index.d.ts +11 -0
- package/dist/features/panel/index.js +130 -0
- package/dist/features/panel/panel-slice.d.ts +16 -0
- package/dist/features/panel/panel-slice.js +31 -0
- package/dist/features/panel/select-tool.d.ts +6 -0
- package/dist/features/panel/select-tool.js +48 -0
- package/dist/features/panel/square-circle-tool.d.ts +2 -0
- package/dist/features/panel/square-circle-tool.js +8 -0
- package/dist/features/panel/table-seat-circle.d.ts +2 -0
- package/dist/features/panel/table-seat-circle.js +9 -0
- package/dist/features/panel/text-tool.d.ts +2 -0
- package/dist/features/panel/text-tool.js +7 -0
- package/dist/features/panel/upload-tool.d.ts +14 -0
- package/dist/features/panel/upload-tool.js +130 -0
- package/dist/features/side-tool/index.d.ts +8 -0
- package/dist/features/side-tool/index.js +349 -0
- package/dist/features/side-tool/side-tool-slice.d.ts +16 -0
- package/dist/features/side-tool/side-tool-slice.js +28 -0
- package/dist/features/theme/theme-slice.d.ts +12 -0
- package/dist/features/theme/theme-slice.js +15 -0
- package/dist/features/view/index.d.ts +19 -0
- package/dist/features/view/index.js +221 -0
- package/dist/features/view-only/index.d.ts +19 -0
- package/dist/features/view-only/index.js +199 -0
- package/dist/features/view-only-2/index.d.ts +19 -0
- package/dist/features/view-only-2/index.js +178 -0
- package/dist/hooks/use-redux.d.ts +4 -0
- package/dist/hooks/use-redux.js +3 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +8 -0
- package/dist/libs/middleware.d.ts +2 -0
- package/dist/libs/middleware.js +5 -0
- package/dist/libs/rootReducer.d.ts +12 -0
- package/dist/libs/rootReducer.js +14 -0
- package/dist/libs/store.d.ts +18 -0
- package/dist/libs/store.js +19 -0
- package/dist/provider/antd-provider.d.ts +4 -0
- package/dist/provider/antd-provider.js +43 -0
- package/dist/provider/redux-provider.d.ts +3 -0
- package/dist/provider/redux-provider.js +7 -0
- package/dist/provider/store-provider.d.ts +4 -0
- package/dist/provider/store-provider.js +9 -0
- package/dist/seat-editor.css +1 -1
- package/dist/utils/injectCss.d.ts +1 -0
- package/dist/utils/injectCss.js +13 -0
- package/package.json +1 -1
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
export declare const constantData: {
|
|
2
|
+
properties: {
|
|
3
|
+
id: number;
|
|
4
|
+
x: number;
|
|
5
|
+
y: number;
|
|
6
|
+
width: number;
|
|
7
|
+
height: number;
|
|
8
|
+
color: string;
|
|
9
|
+
pax: string;
|
|
10
|
+
rotation: number;
|
|
11
|
+
shape: string;
|
|
12
|
+
};
|
|
13
|
+
janu: string;
|
|
14
|
+
}[];
|
|
15
|
+
export declare const data2: {
|
|
16
|
+
uuid: string;
|
|
17
|
+
uuid_event_outlet: string;
|
|
18
|
+
uuid_area: any;
|
|
19
|
+
area_name: any;
|
|
20
|
+
uuid_area_group: string;
|
|
21
|
+
area_group_name: string;
|
|
22
|
+
uuid_table: string;
|
|
23
|
+
table_name: string;
|
|
24
|
+
name: string;
|
|
25
|
+
capacity: number;
|
|
26
|
+
max_capacity: any;
|
|
27
|
+
mc_amount: string;
|
|
28
|
+
dp_mc_amount: string;
|
|
29
|
+
price: string;
|
|
30
|
+
benefit: string;
|
|
31
|
+
notes: string;
|
|
32
|
+
properties: {
|
|
33
|
+
x: number;
|
|
34
|
+
y: number;
|
|
35
|
+
id: number;
|
|
36
|
+
src: string;
|
|
37
|
+
fill: string;
|
|
38
|
+
image: string;
|
|
39
|
+
shape: string;
|
|
40
|
+
width: number;
|
|
41
|
+
height: number;
|
|
42
|
+
labels: {
|
|
43
|
+
x: number;
|
|
44
|
+
y: number;
|
|
45
|
+
label: string;
|
|
46
|
+
fontSize: number;
|
|
47
|
+
fontColor: string;
|
|
48
|
+
}[];
|
|
49
|
+
opacity: number;
|
|
50
|
+
rotation: number;
|
|
51
|
+
seatCount: number;
|
|
52
|
+
uuid_table: string;
|
|
53
|
+
};
|
|
54
|
+
status: number;
|
|
55
|
+
media: any;
|
|
56
|
+
is_fdc: number;
|
|
57
|
+
max_pax_fdc: number;
|
|
58
|
+
}[];
|
|
59
|
+
export declare const data3: {
|
|
60
|
+
uuid: string;
|
|
61
|
+
uuid_event_outlet: string;
|
|
62
|
+
uuid_area: any;
|
|
63
|
+
area_name: any;
|
|
64
|
+
uuid_area_group: string;
|
|
65
|
+
area_group_name: string;
|
|
66
|
+
uuid_table: string;
|
|
67
|
+
table_name: string;
|
|
68
|
+
name: string;
|
|
69
|
+
capacity: number;
|
|
70
|
+
max_capacity: any;
|
|
71
|
+
mc_amount: string;
|
|
72
|
+
dp_mc_amount: string;
|
|
73
|
+
price: string;
|
|
74
|
+
benefit: string;
|
|
75
|
+
notes: string;
|
|
76
|
+
properties: {
|
|
77
|
+
x: number;
|
|
78
|
+
y: number;
|
|
79
|
+
id: number;
|
|
80
|
+
fill: string;
|
|
81
|
+
text: string;
|
|
82
|
+
shape: string;
|
|
83
|
+
width: number;
|
|
84
|
+
height: number;
|
|
85
|
+
labels: {
|
|
86
|
+
x: number;
|
|
87
|
+
y: number;
|
|
88
|
+
label: string;
|
|
89
|
+
fontSize: number;
|
|
90
|
+
fontColor: string;
|
|
91
|
+
}[];
|
|
92
|
+
opacity: number;
|
|
93
|
+
rotation: number;
|
|
94
|
+
seatCount: number;
|
|
95
|
+
uuid_table: string;
|
|
96
|
+
};
|
|
97
|
+
status: number;
|
|
98
|
+
media: any;
|
|
99
|
+
is_fdc: number;
|
|
100
|
+
max_pax_fdc: number;
|
|
101
|
+
}[];
|