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.
Files changed (102) hide show
  1. package/dist/app/constant.d.ts +101 -0
  2. package/dist/app/constant.js +3064 -0
  3. package/dist/app/layout.d.ts +6 -0
  4. package/dist/app/layout.js +22 -0
  5. package/dist/app/new-board/page.d.ts +1 -0
  6. package/dist/app/new-board/page.js +34 -0
  7. package/dist/app/old-board/page.d.ts +2 -0
  8. package/dist/app/old-board/page.js +377 -0
  9. package/dist/app/only-view/constant.d.ts +40 -0
  10. package/dist/app/only-view/constant.js +1336 -0
  11. package/dist/app/only-view/page.d.ts +2 -0
  12. package/dist/app/only-view/page.js +41 -0
  13. package/dist/app/page.d.ts +2 -0
  14. package/dist/app/page.js +8 -0
  15. package/dist/app/test/page.d.ts +1 -0
  16. package/dist/app/test/page.js +43 -0
  17. package/dist/app/v2/page.d.ts +2 -0
  18. package/dist/app/v2/page.js +8 -0
  19. package/dist/components/button-tools/index.d.ts +11 -0
  20. package/dist/components/button-tools/index.js +11 -0
  21. package/dist/components/form-tools/label.d.ts +2 -0
  22. package/dist/components/form-tools/label.js +7 -0
  23. package/dist/components/form-tools/shape.d.ts +4 -0
  24. package/dist/components/form-tools/shape.js +25 -0
  25. package/dist/components/input/number-indicator.d.ts +7 -0
  26. package/dist/components/input/number-indicator.js +27 -0
  27. package/dist/components/joystick/index.d.ts +11 -0
  28. package/dist/components/joystick/index.js +48 -0
  29. package/dist/components/layer/index.d.ts +19 -0
  30. package/dist/components/layer/index.js +295 -0
  31. package/dist/components/layer-v2/index.d.ts +19 -0
  32. package/dist/components/layer-v2/index.js +282 -0
  33. package/dist/components/layer-v3/index.d.ts +19 -0
  34. package/dist/components/layer-v3/index.js +337 -0
  35. package/dist/components/lib/index.d.ts +8 -0
  36. package/dist/components/lib/index.js +28 -0
  37. package/dist/components/modal-preview/index.d.ts +4 -0
  38. package/dist/components/modal-preview/index.js +10 -0
  39. package/dist/features/board/board-slice.d.ts +14 -0
  40. package/dist/features/board/board-slice.js +52 -0
  41. package/dist/features/board/index.d.ts +6 -0
  42. package/dist/features/board/index.js +666 -0
  43. package/dist/features/board-v2/board-slice.d.ts +14 -0
  44. package/dist/features/board-v2/board-slice.js +52 -0
  45. package/dist/features/board-v2/index.d.ts +7 -0
  46. package/dist/features/board-v2/index.js +807 -0
  47. package/dist/features/board-v3/board-slice.d.ts +16 -0
  48. package/dist/features/board-v3/board-slice.js +83 -0
  49. package/dist/features/board-v3/history-slice.d.ts +27 -0
  50. package/dist/features/board-v3/history-slice.js +27 -0
  51. package/dist/features/board-v3/index.d.ts +7 -0
  52. package/dist/features/board-v3/index.js +785 -0
  53. package/dist/features/navbar/index.d.ts +2 -0
  54. package/dist/features/navbar/index.js +6 -0
  55. package/dist/features/package/index.d.ts +31 -0
  56. package/dist/features/package/index.js +104 -0
  57. package/dist/features/panel/index.d.ts +11 -0
  58. package/dist/features/panel/index.js +130 -0
  59. package/dist/features/panel/panel-slice.d.ts +16 -0
  60. package/dist/features/panel/panel-slice.js +31 -0
  61. package/dist/features/panel/select-tool.d.ts +6 -0
  62. package/dist/features/panel/select-tool.js +48 -0
  63. package/dist/features/panel/square-circle-tool.d.ts +2 -0
  64. package/dist/features/panel/square-circle-tool.js +8 -0
  65. package/dist/features/panel/table-seat-circle.d.ts +2 -0
  66. package/dist/features/panel/table-seat-circle.js +9 -0
  67. package/dist/features/panel/text-tool.d.ts +2 -0
  68. package/dist/features/panel/text-tool.js +7 -0
  69. package/dist/features/panel/upload-tool.d.ts +14 -0
  70. package/dist/features/panel/upload-tool.js +130 -0
  71. package/dist/features/side-tool/index.d.ts +8 -0
  72. package/dist/features/side-tool/index.js +349 -0
  73. package/dist/features/side-tool/side-tool-slice.d.ts +16 -0
  74. package/dist/features/side-tool/side-tool-slice.js +28 -0
  75. package/dist/features/theme/theme-slice.d.ts +12 -0
  76. package/dist/features/theme/theme-slice.js +15 -0
  77. package/dist/features/view/index.d.ts +19 -0
  78. package/dist/features/view/index.js +221 -0
  79. package/dist/features/view-only/index.d.ts +19 -0
  80. package/dist/features/view-only/index.js +199 -0
  81. package/dist/features/view-only-2/index.d.ts +19 -0
  82. package/dist/features/view-only-2/index.js +178 -0
  83. package/dist/hooks/use-redux.d.ts +4 -0
  84. package/dist/hooks/use-redux.js +3 -0
  85. package/dist/index.d.ts +8 -0
  86. package/dist/index.js +8 -0
  87. package/dist/libs/middleware.d.ts +2 -0
  88. package/dist/libs/middleware.js +5 -0
  89. package/dist/libs/rootReducer.d.ts +12 -0
  90. package/dist/libs/rootReducer.js +14 -0
  91. package/dist/libs/store.d.ts +18 -0
  92. package/dist/libs/store.js +19 -0
  93. package/dist/provider/antd-provider.d.ts +4 -0
  94. package/dist/provider/antd-provider.js +43 -0
  95. package/dist/provider/redux-provider.d.ts +3 -0
  96. package/dist/provider/redux-provider.js +7 -0
  97. package/dist/provider/store-provider.d.ts +4 -0
  98. package/dist/provider/store-provider.js +9 -0
  99. package/dist/seat-editor.css +1 -1
  100. package/dist/utils/injectCss.d.ts +1 -0
  101. package/dist/utils/injectCss.js +13 -0
  102. 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
+ }[];