seat-editor 1.6.21 → 1.6.22
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 +43 -0
- package/dist/app/constant.js +2747 -0
- package/dist/app/layout.d.ts +1 -1
- package/dist/app/{layout.js → layout.jsx} +7 -2
- package/dist/app/new-board/page.d.ts +1 -1
- package/dist/app/new-board/page.jsx +2 -2
- package/dist/app/old-board/page.d.ts +2 -1
- package/dist/app/old-board/{page.js → page.jsx} +215 -82
- package/dist/app/only-view/page.d.ts +1 -1
- package/dist/app/only-view/{page.js → page.jsx} +1 -2
- package/dist/app/page.d.ts +1 -1
- package/dist/app/page.jsx +13 -0
- package/dist/app/test/page.d.ts +2 -1
- package/dist/app/test/{page.js → page.jsx} +5 -3
- package/dist/app/v2/page.d.ts +1 -1
- package/dist/app/v2/page.jsx +13 -0
- package/dist/components/button-tools/index.d.ts +1 -1
- package/dist/components/button-tools/index.jsx +17 -0
- package/dist/components/form-tools/label.d.ts +1 -1
- package/dist/components/form-tools/label.jsx +44 -0
- package/dist/components/form-tools/shape.d.ts +1 -1
- package/dist/components/form-tools/shape.jsx +66 -0
- package/dist/components/input/number-indicator.d.ts +1 -1
- package/dist/components/input/{number-indicator.js → number-indicator.jsx} +11 -2
- package/dist/components/joystick/index.d.ts +2 -1
- package/dist/components/joystick/{index.js → index.jsx} +14 -13
- package/dist/components/layer/index.d.ts +1 -1
- package/dist/components/layer/index.jsx +383 -0
- package/dist/components/layer-v2/index.d.ts +1 -1
- package/dist/components/layer-v2/index.jsx +370 -0
- package/dist/components/lib/index.d.ts +1 -1
- package/dist/components/lib/{index.js → index.jsx} +7 -2
- package/dist/components/modal-preview/index.d.ts +1 -1
- package/dist/components/modal-preview/index.jsx +11 -0
- package/dist/features/board/index.d.ts +1 -1
- package/dist/features/board/{index.js → index.jsx} +90 -31
- package/dist/features/board-v2/index.d.ts +2 -1
- package/dist/features/board-v2/{index.js → index.jsx} +98 -39
- package/dist/features/navbar/index.d.ts +1 -1
- package/dist/features/navbar/index.jsx +5 -0
- package/dist/features/package/index.d.ts +1 -1
- package/dist/features/package/{index.js → index.jsx} +16 -6
- package/dist/features/panel/index.d.ts +1 -1
- package/dist/features/panel/{index.js → index.jsx} +16 -8
- package/dist/features/panel/select-tool.d.ts +1 -1
- package/dist/features/panel/{select-tool.js → select-tool.jsx} +20 -8
- package/dist/features/panel/square-circle-tool.d.ts +1 -1
- package/dist/features/panel/{square-circle-tool.js → square-circle-tool.jsx} +4 -2
- package/dist/features/panel/table-seat-circle.d.ts +1 -1
- package/dist/features/panel/table-seat-circle.jsx +31 -0
- package/dist/features/panel/text-tool.d.ts +1 -1
- package/dist/features/panel/text-tool.jsx +26 -0
- package/dist/features/panel/upload-tool.d.ts +1 -1
- package/dist/features/panel/{upload-tool.js → upload-tool.jsx} +24 -2
- package/dist/features/side-tool/index.d.ts +1 -1
- package/dist/features/side-tool/{index.js → index.jsx} +90 -71
- package/dist/features/view/index.d.ts +1 -1
- package/dist/features/view-only/index.d.ts +1 -1
- package/dist/features/view-only/{index.js → index.jsx} +44 -35
- package/dist/provider/antd-provider.jsx +46 -0
- package/dist/provider/redux-provider.d.ts +1 -1
- package/dist/provider/{redux-provider.js → redux-provider.jsx} +1 -2
- package/dist/provider/store-provider.d.ts +1 -1
- package/dist/provider/{store-provider.js → store-provider.jsx} +3 -2
- package/package.json +1 -1
- package/dist/app/new-board/page.js +0 -34
- package/dist/app/page.js +0 -8
- package/dist/app/v2/page.js +0 -8
- package/dist/components/button-tools/index.js +0 -11
- package/dist/components/form-tools/label.js +0 -7
- package/dist/components/form-tools/shape.js +0 -25
- package/dist/components/layer/index.js +0 -295
- package/dist/components/layer-v2/index.js +0 -282
- package/dist/components/modal-preview/index.js +0 -10
- package/dist/features/navbar/index.js +0 -6
- package/dist/features/panel/table-seat-circle.js +0 -9
- package/dist/features/panel/text-tool.js +0 -7
- package/dist/features/view/index.js +0 -221
- package/dist/provider/antd-provider.js +0 -43
package/dist/app/constant.d.ts
CHANGED
|
@@ -56,3 +56,46 @@ export declare const data2: {
|
|
|
56
56
|
is_fdc: number;
|
|
57
57
|
max_pax_fdc: number;
|
|
58
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
|
+
}[];
|