seat-editor 3.5.6 → 3.5.8
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.
|
@@ -1915,7 +1915,7 @@ const BoardTemplate = ({ refs, loadingRender, disabled = false, }) => {
|
|
|
1915
1915
|
alignItems: "center",
|
|
1916
1916
|
gap: "8px", // gap-2 = 0.5rem = 8px
|
|
1917
1917
|
borderTop: "1px solid #d1d5db", // gray-300
|
|
1918
|
-
}, children: ["Select", " ", _jsx(Tag, { color: isShiftPressed ? "red" : "lime", children: footerInfoList[hasSelectionBox ? 1 : 0]["title"] }), " ", footerInfoList[hasSelectionBox ? 1 : 0]["desc"], hasSelectionBox && (_jsxs(_Fragment, { children: [_jsx(Tag, { color: "lime", children: _jsxs(Flex, { children: [_jsx(Command, { size: 16 }), "D"] }) }), "to deselect"] })), " "
|
|
1918
|
+
}, children: ["Select", " ", _jsx(Tag, { color: isShiftPressed ? "red" : "lime", children: footerInfoList[hasSelectionBox ? 1 : 0]["title"] }), " ", footerInfoList[hasSelectionBox ? 1 : 0]["desc"], hasSelectionBox && (_jsxs(_Fragment, { children: [_jsx(Tag, { color: "lime", children: _jsxs(Flex, { children: [_jsx(Command, { size: 16 }), "D"] }) }), "to deselect"] })), " "] }), _jsx(TransformWrapper, { ref: transformRef,
|
|
1919
1919
|
// limitToBounds={true}
|
|
1920
1920
|
panning: {
|
|
1921
1921
|
disabled: [
|
|
@@ -1948,7 +1948,7 @@ const BoardTemplate = ({ refs, loadingRender, disabled = false, }) => {
|
|
|
1948
1948
|
</Tag>
|
|
1949
1949
|
to deselect
|
|
1950
1950
|
</>)}{" "}
|
|
1951
|
-
| Table Total <Tag color="volcano">{componentsState
|
|
1951
|
+
{/* | Table Total <Tag color="volcano">{componentsState?.length}</Tag> */}
|
|
1952
1952
|
</div>
|
|
1953
1953
|
<TransformWrapper ref={transformRef}
|
|
1954
1954
|
// limitToBounds={true}
|
|
@@ -3,7 +3,6 @@ import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-run
|
|
|
3
3
|
import { optionsShape } from "../../components/form-tools/shape";
|
|
4
4
|
import { ColorPicker, Flex, Form, InputNumber, Select } from "antd";
|
|
5
5
|
import { useAppSelector } from "../../hooks/use-redux";
|
|
6
|
-
import SectionLabel from "../../components/form-tools/label";
|
|
7
6
|
import { useFormPlaceholder } from ".";
|
|
8
7
|
const { Option } = Select;
|
|
9
8
|
const SelectedGroup = () => {
|
|
@@ -53,6 +52,6 @@ const SelectedGroup = () => {
|
|
|
53
52
|
if (Number.isNaN(num))
|
|
54
53
|
return null;
|
|
55
54
|
return Math.min(100, Math.max(0, num));
|
|
56
|
-
}, suffix: "%" }) })] })
|
|
55
|
+
}, suffix: "%" }) })] })] })] }) }));
|
|
57
56
|
};
|
|
58
57
|
export default SelectedGroup;
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
import { optionsShape } from "../../components/form-tools/shape";
|
|
3
3
|
import { ColorPicker, Flex, Form, InputNumber, Select } from "antd";
|
|
4
4
|
import { useAppSelector } from "../../hooks/use-redux";
|
|
5
|
-
import SectionLabel from "../../components/form-tools/label";
|
|
6
5
|
import { useFormPlaceholder } from ".";
|
|
7
6
|
const { Option } = Select;
|
|
8
7
|
const SelectedGroup = () => {
|
|
@@ -126,7 +125,7 @@ const SelectedGroup = () => {
|
|
|
126
125
|
}} suffix="%"/>
|
|
127
126
|
</Form.Item>
|
|
128
127
|
</Flex>
|
|
129
|
-
{!allExtraComponent && <SectionLabel />}
|
|
128
|
+
{/* {!allExtraComponent && <SectionLabel />} */}
|
|
130
129
|
{/* </>
|
|
131
130
|
)} */}
|
|
132
131
|
</div>
|