kitchen-simulator 4.4.6 → 5.0.0-new-api.1
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/es/LiteRenderer.js +15 -53
- package/es/assets/Window.hdr +2100 -0
- package/es/assets/img/default/maple.jpg +0 -0
- package/es/assets/img/default/steel.jpg +0 -0
- package/es/catalog/catalog.js +0 -2
- package/es/catalog/factories/area-factory-3d.js +0 -4
- package/es/catalog/holes/door-double/door_double.png +0 -0
- package/es/catalog/holes/door-panic/panicDoor.png +0 -0
- package/es/catalog/holes/door-panic-double/panicDoorDouble.png +0 -0
- package/es/catalog/holes/gate/gate.jpg +0 -0
- package/es/catalog/holes/window-clear/texture.png +0 -0
- package/es/catalog/holes/window-cross/texture.png +0 -0
- package/es/catalog/holes/window-double-hung/texture.png +0 -0
- package/es/catalog/holes/window-vertical/texture.png +0 -0
- package/es/catalog/utils/exporter.js +2 -0
- package/es/catalog/utils/item-loader.js +0 -4
- package/es/class/area.js +0 -1
- package/es/class/export.js +1 -3
- package/es/class/item.js +17 -6
- package/es/components/content.js +1 -3
- package/es/components/style/export.js +2 -28
- package/es/components/viewer2d/line.js +2 -2
- package/es/components/viewer2d/viewer2d.js +0 -1
- package/es/components/viewer3d/front3D.js +1 -2
- package/es/components/viewer3d/pointer-lock-navigation.js +0 -90
- package/es/components/viewer3d/scene-creator.js +0 -1
- package/es/components/viewer3d/three-memory-cleaner.js +0 -14
- package/es/components/viewer3d/viewer3d.js +1 -1
- package/es/constants.js +11 -6
- package/es/devLiteRenderer.js +124 -84
- package/es/mappings/external-events/mapExternalEventPayload.js +28 -0
- package/es/mappings/external-events/mappers/addItemMapper.js +86 -0
- package/es/mappings/external-events/mappers/ccdfMapper.js +86 -0
- package/es/mappings/external-events/mappers/ccdfToCDSMapper.js +31 -0
- package/es/mappings/external-events/mappers/changeDoorStyleMapper.js +37 -0
- package/es/mappings/external-events/mappers/loadProjectMapper.js +62 -0
- package/es/mappings/holesToCatalog.js +139 -0
- package/es/models.js +12 -1
- package/es/plugins/keyboard.js +1 -1
- package/es/reducers/export.js +2 -4
- package/es/reducers/items-reducer.js +1 -1
- package/es/reducers/project-reducer.js +1 -1
- package/es/reducers/reducer.js +2 -3
- package/es/shared/objects/immutable.js +3 -0
- package/es/utils/geometry.js +276 -74
- package/es/utils/history.js +2 -2
- package/es/utils/isolate-event-handler.js +57 -45
- package/es/utils/molding.js +5 -3
- package/lib/LiteRenderer.js +17 -55
- package/lib/assets/Window.hdr +2100 -0
- package/lib/assets/img/default/maple.jpg +0 -0
- package/lib/assets/img/default/steel.jpg +0 -0
- package/lib/catalog/catalog.js +0 -2
- package/lib/catalog/factories/area-factory-3d.js +0 -4
- package/lib/catalog/holes/door-double/door_double.png +0 -0
- package/lib/catalog/holes/door-panic/panicDoor.png +0 -0
- package/lib/catalog/holes/door-panic-double/panicDoorDouble.png +0 -0
- package/lib/catalog/holes/gate/gate.jpg +0 -0
- package/lib/catalog/holes/window-clear/texture.png +0 -0
- package/lib/catalog/holes/window-cross/texture.png +0 -0
- package/lib/catalog/holes/window-double-hung/texture.png +0 -0
- package/lib/catalog/holes/window-vertical/texture.png +0 -0
- package/lib/catalog/utils/exporter.js +2 -0
- package/lib/catalog/utils/item-loader.js +0 -4
- package/lib/class/area.js +0 -1
- package/lib/class/export.js +0 -8
- package/lib/class/item.js +17 -6
- package/lib/components/content.js +1 -3
- package/lib/components/style/export.js +1 -105
- package/lib/components/viewer2d/line.js +1 -1
- package/lib/components/viewer2d/viewer2d.js +0 -1
- package/lib/components/viewer3d/front3D.js +1 -2
- package/lib/components/viewer3d/pointer-lock-navigation.js +0 -90
- package/lib/components/viewer3d/scene-creator.js +0 -1
- package/lib/components/viewer3d/three-memory-cleaner.js +0 -14
- package/lib/constants.js +16 -11
- package/lib/devLiteRenderer.js +126 -86
- package/lib/mappings/external-events/mapExternalEventPayload.js +33 -0
- package/lib/mappings/external-events/mappers/addItemMapper.js +92 -0
- package/lib/mappings/external-events/mappers/ccdfMapper.js +93 -0
- package/lib/mappings/external-events/mappers/ccdfToCDSMapper.js +37 -0
- package/lib/mappings/external-events/mappers/changeDoorStyleMapper.js +44 -0
- package/lib/mappings/external-events/mappers/loadProjectMapper.js +70 -0
- package/lib/mappings/holesToCatalog.js +148 -0
- package/lib/models.js +12 -1
- package/lib/reducers/export.js +1 -9
- package/lib/reducers/reducer.js +0 -1
- package/lib/shared/objects/immutable.js +9 -0
- package/lib/utils/geometry.js +276 -74
- package/lib/utils/history.js +1 -1
- package/lib/utils/isolate-event-handler.js +57 -45
- package/lib/utils/molding.js +5 -3
- package/package.json +1 -1
- package/es/assets/gltf/door_closet.bin +0 -0
- package/es/assets/gltf/door_closet.fbx +0 -0
- package/es/assets/gltf/door_exterior.bin +0 -0
- package/es/assets/gltf/door_exterior.fbx +0 -0
- package/es/assets/gltf/door_interior.bin +0 -0
- package/es/assets/gltf/door_interior.fbx +0 -0
- package/es/assets/gltf/door_sliding.bin +0 -0
- package/es/assets/gltf/door_sliding.fbx +0 -0
- package/es/assets/img/png/helper/video_preview_3d.png +0 -0
- package/es/assets/img/png/helper/video_preview_start.png +0 -0
- package/es/assets/img/svg/color/Brown.svg +0 -9
- package/es/assets/img/svg/color/Dark.svg +0 -9
- package/es/assets/img/svg/color/Light.svg +0 -9
- package/es/assets/img/svg/color/Medium.svg +0 -9
- package/es/assets/img/svg/color/Unfinished.svg +0 -9
- package/es/catalog/lines/wall/textures/bricks-normal2.jpg +0 -0
- package/es/catalog/lines/wall/textures/bricks3.jpg +0 -0
- package/es/catalog/properties/export.js +0 -21
- package/es/catalog/properties/property-checkbox.js +0 -68
- package/es/catalog/properties/property-color.js +0 -39
- package/es/catalog/properties/property-enum.js +0 -50
- package/es/catalog/properties/property-hidden.js +0 -19
- package/es/catalog/properties/property-lenght-measure.js +0 -100
- package/es/catalog/properties/property-length-measure.js +0 -84
- package/es/catalog/properties/property-length-measure_hole.js +0 -100
- package/es/catalog/properties/property-number.js +0 -48
- package/es/catalog/properties/property-read-only.js +0 -26
- package/es/catalog/properties/property-string.js +0 -48
- package/es/catalog/properties/property-toggle.js +0 -39
- package/es/catalog/properties/shared-property-style.js +0 -14
- package/es/catalog/utils/FuseUtils.js +0 -79
- package/es/class/FuseUtils.js +0 -79
- package/es/components/style/button.js +0 -106
- package/es/components/style/cancel-button.js +0 -21
- package/es/components/style/content-container.js +0 -30
- package/es/components/style/content-title.js +0 -25
- package/es/components/style/delete-button.js +0 -24
- package/es/components/style/form-block.js +0 -20
- package/es/components/style/form-color-input.js +0 -26
- package/es/components/style/form-label.js +0 -22
- package/es/components/style/form-number-input_2.js +0 -200
- package/es/components/style/form-select.js +0 -19
- package/es/components/style/form-slider.js +0 -60
- package/es/components/style/form-text-input.js +0 -69
- package/es/reducers/user-reducer.js +0 -41
- package/es/styles/export.js +0 -5
- package/es/styles/tabs.css +0 -40
- package/lib/assets/gltf/door_closet.bin +0 -0
- package/lib/assets/gltf/door_closet.fbx +0 -0
- package/lib/assets/gltf/door_exterior.bin +0 -0
- package/lib/assets/gltf/door_exterior.fbx +0 -0
- package/lib/assets/gltf/door_interior.bin +0 -0
- package/lib/assets/gltf/door_interior.fbx +0 -0
- package/lib/assets/gltf/door_sliding.bin +0 -0
- package/lib/assets/gltf/door_sliding.fbx +0 -0
- package/lib/assets/img/png/helper/video_preview_3d.png +0 -0
- package/lib/assets/img/png/helper/video_preview_start.png +0 -0
- package/lib/assets/img/svg/color/Brown.svg +0 -9
- package/lib/assets/img/svg/color/Dark.svg +0 -9
- package/lib/assets/img/svg/color/Light.svg +0 -9
- package/lib/assets/img/svg/color/Medium.svg +0 -9
- package/lib/assets/img/svg/color/Unfinished.svg +0 -9
- package/lib/catalog/lines/wall/textures/bricks-normal2.jpg +0 -0
- package/lib/catalog/lines/wall/textures/bricks3.jpg +0 -0
- package/lib/catalog/properties/export.js +0 -81
- package/lib/catalog/properties/property-checkbox.js +0 -76
- package/lib/catalog/properties/property-color.js +0 -47
- package/lib/catalog/properties/property-enum.js +0 -58
- package/lib/catalog/properties/property-hidden.js +0 -27
- package/lib/catalog/properties/property-lenght-measure.js +0 -108
- package/lib/catalog/properties/property-length-measure.js +0 -92
- package/lib/catalog/properties/property-length-measure_hole.js +0 -108
- package/lib/catalog/properties/property-number.js +0 -56
- package/lib/catalog/properties/property-read-only.js +0 -34
- package/lib/catalog/properties/property-string.js +0 -56
- package/lib/catalog/properties/property-toggle.js +0 -47
- package/lib/catalog/properties/shared-property-style.js +0 -21
- package/lib/catalog/utils/FuseUtils.js +0 -87
- package/lib/class/FuseUtils.js +0 -87
- package/lib/components/style/button.js +0 -115
- package/lib/components/style/cancel-button.js +0 -29
- package/lib/components/style/content-container.js +0 -38
- package/lib/components/style/content-title.js +0 -35
- package/lib/components/style/delete-button.js +0 -34
- package/lib/components/style/form-block.js +0 -28
- package/lib/components/style/form-color-input.js +0 -34
- package/lib/components/style/form-label.js +0 -30
- package/lib/components/style/form-number-input_2.js +0 -209
- package/lib/components/style/form-select.js +0 -29
- package/lib/components/style/form-slider.js +0 -68
- package/lib/components/style/form-text-input.js +0 -78
- package/lib/reducers/user-reducer.js +0 -48
- package/lib/styles/export.js +0 -13
- package/lib/styles/tabs.css +0 -40
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
2
|
-
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
|
-
import _taggedTemplateLiteral from "@babel/runtime/helpers/esm/taggedTemplateLiteral";
|
|
4
|
-
var _excluded = ["children", "style"];
|
|
5
|
-
var _templateObject;
|
|
6
|
-
import React from 'react';
|
|
7
|
-
import * as SharedStyle from "../../shared-style";
|
|
8
|
-
import styled from 'styled-components';
|
|
9
|
-
import { TEXT_COLOR_NEUTRAL_3, DEFAULT_FONT_FAMILY, SECONDARY_PURPLE_COLOR } from "../../constants";
|
|
10
|
-
var StyledSelect = styled.select(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n display: block;\n width: 120px;\n float: right;\n padding: 15px 10px 12px 0px;\n color: ", ";\n border: 2px solid;\n font-family: ", ";\n font-size: 12px;\n font-weight: 600;\n line-height: 17px;\n text-align: right;\n outline: none;\n border-radius: 5px;\n :hover {\n border-color: ", ";\n }\n :focus {\n border-color: ", ";\n }\n"])), TEXT_COLOR_NEUTRAL_3, DEFAULT_FONT_FAMILY, SECONDARY_PURPLE_COLOR, SECONDARY_PURPLE_COLOR);
|
|
11
|
-
export default function FormSelect(_ref) {
|
|
12
|
-
var children = _ref.children,
|
|
13
|
-
style = _ref.style,
|
|
14
|
-
rest = _objectWithoutProperties(_ref, _excluded);
|
|
15
|
-
return /*#__PURE__*/React.createElement(StyledSelect, _extends({
|
|
16
|
-
type: "text",
|
|
17
|
-
style: style
|
|
18
|
-
}, rest), children);
|
|
19
|
-
}
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
2
|
-
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
|
-
var _excluded = ["value", "onChange", "min", "max", "step"];
|
|
4
|
-
import React from 'react';
|
|
5
|
-
import FormTextInput from "./form-text-input";
|
|
6
|
-
var sliderContainerStyle = {
|
|
7
|
-
display: 'inline-block',
|
|
8
|
-
width: '80%',
|
|
9
|
-
marginRight: '5%'
|
|
10
|
-
};
|
|
11
|
-
var sliderStyle = {
|
|
12
|
-
display: 'block',
|
|
13
|
-
width: '100%',
|
|
14
|
-
height: '30px'
|
|
15
|
-
};
|
|
16
|
-
var textContainerStyle = {
|
|
17
|
-
display: 'inline-block',
|
|
18
|
-
width: '15%',
|
|
19
|
-
"float": 'right'
|
|
20
|
-
};
|
|
21
|
-
var textStyle = {
|
|
22
|
-
height: '34px',
|
|
23
|
-
textAlign: 'center'
|
|
24
|
-
};
|
|
25
|
-
export default function FormNumberInput(_ref) {
|
|
26
|
-
var value = _ref.value,
|
|
27
|
-
onChange = _ref.onChange,
|
|
28
|
-
_ref$min = _ref.min,
|
|
29
|
-
min = _ref$min === void 0 ? 0 : _ref$min,
|
|
30
|
-
_ref$max = _ref.max,
|
|
31
|
-
max = _ref$max === void 0 ? 100 : _ref$max,
|
|
32
|
-
_ref$step = _ref.step,
|
|
33
|
-
step = _ref$step === void 0 ? 1 : _ref$step,
|
|
34
|
-
rest = _objectWithoutProperties(_ref, _excluded);
|
|
35
|
-
// Handle both slider and text input changes
|
|
36
|
-
var handleSliderChange = function handleSliderChange(e) {
|
|
37
|
-
onChange(Number(e.target.value));
|
|
38
|
-
};
|
|
39
|
-
var handleTextChange = function handleTextChange(e) {
|
|
40
|
-
var val = e.target.value === '' ? '' : Number(e.target.value);
|
|
41
|
-
onChange(val);
|
|
42
|
-
};
|
|
43
|
-
return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement("div", {
|
|
44
|
-
style: sliderContainerStyle
|
|
45
|
-
}, /*#__PURE__*/React.createElement("input", _extends({
|
|
46
|
-
type: "range",
|
|
47
|
-
style: sliderStyle,
|
|
48
|
-
min: min,
|
|
49
|
-
max: max,
|
|
50
|
-
step: step,
|
|
51
|
-
value: value,
|
|
52
|
-
onChange: handleSliderChange
|
|
53
|
-
}, rest))), /*#__PURE__*/React.createElement("div", {
|
|
54
|
-
style: textContainerStyle
|
|
55
|
-
}, /*#__PURE__*/React.createElement(FormTextInput, {
|
|
56
|
-
value: value,
|
|
57
|
-
onChange: handleTextChange,
|
|
58
|
-
style: textStyle
|
|
59
|
-
})));
|
|
60
|
-
}
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
2
|
-
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
|
-
import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
|
|
4
|
-
import _createClass from "@babel/runtime/helpers/esm/createClass";
|
|
5
|
-
import _possibleConstructorReturn from "@babel/runtime/helpers/esm/possibleConstructorReturn";
|
|
6
|
-
import _getPrototypeOf from "@babel/runtime/helpers/esm/getPrototypeOf";
|
|
7
|
-
import _inherits from "@babel/runtime/helpers/esm/inherits";
|
|
8
|
-
import _taggedTemplateLiteral from "@babel/runtime/helpers/esm/taggedTemplateLiteral";
|
|
9
|
-
var _excluded = ["style"];
|
|
10
|
-
var _templateObject;
|
|
11
|
-
function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
12
|
-
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
13
|
-
import React, { Component } from 'react';
|
|
14
|
-
import * as SharedStyle from "../../shared-style";
|
|
15
|
-
import { PROJECT_NAME_LENGTH_LIMIT, TEXT_COLOR_NEUTRAL_3, BG_COLOR_0, DEFAULT_FONT_FAMILY, SECONDARY_PURPLE_COLOR } from "../../constants";
|
|
16
|
-
import styled from 'styled-components';
|
|
17
|
-
var StyledInput = styled.input(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n display: block;\n padding: 15px 10px 12px 0px;\n width: 120px;\n font-family: ", ";\n font-size: 12px;\n font-weight: 600;\n line-height: 17px;\n color: ", ";\n background-color: ", ";\n border: 2px solid;\n text-align: right;\n float: right;\n border-radius: 5px;\n outline: 0;\n :focus {\n border-color: ", ";\n }\n"])), DEFAULT_FONT_FAMILY, TEXT_COLOR_NEUTRAL_3, BG_COLOR_0, SECONDARY_PURPLE_COLOR);
|
|
18
|
-
var FormTextInput = /*#__PURE__*/function (_Component) {
|
|
19
|
-
function FormTextInput(props) {
|
|
20
|
-
var _this;
|
|
21
|
-
_classCallCheck(this, FormTextInput);
|
|
22
|
-
_this = _callSuper(this, FormTextInput, [props]);
|
|
23
|
-
_this.state = {
|
|
24
|
-
focus: false
|
|
25
|
-
};
|
|
26
|
-
_this.input = /*#__PURE__*/React.createRef(null);
|
|
27
|
-
return _this;
|
|
28
|
-
}
|
|
29
|
-
_inherits(FormTextInput, _Component);
|
|
30
|
-
return _createClass(FormTextInput, [{
|
|
31
|
-
key: "componentDidMount",
|
|
32
|
-
value: function componentDidMount() {
|
|
33
|
-
if (this.input.current) {
|
|
34
|
-
this.input.current.select();
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
}, {
|
|
38
|
-
key: "render",
|
|
39
|
-
value: function render() {
|
|
40
|
-
var _this2 = this;
|
|
41
|
-
var _this$props = this.props,
|
|
42
|
-
style = _this$props.style,
|
|
43
|
-
rest = _objectWithoutProperties(_this$props, _excluded);
|
|
44
|
-
return /*#__PURE__*/React.createElement(StyledInput, _extends({
|
|
45
|
-
ref: this.input,
|
|
46
|
-
onFocus: function onFocus(e) {
|
|
47
|
-
return _this2.setState({
|
|
48
|
-
focus: true
|
|
49
|
-
});
|
|
50
|
-
},
|
|
51
|
-
onBlur: function onBlur(e) {
|
|
52
|
-
return _this2.setState({
|
|
53
|
-
focus: false
|
|
54
|
-
});
|
|
55
|
-
},
|
|
56
|
-
style: style
|
|
57
|
-
// autoFocus
|
|
58
|
-
,
|
|
59
|
-
type: "text"
|
|
60
|
-
}, rest, {
|
|
61
|
-
maxLength: PROJECT_NAME_LENGTH_LIMIT
|
|
62
|
-
}));
|
|
63
|
-
}
|
|
64
|
-
}]);
|
|
65
|
-
}(Component);
|
|
66
|
-
export { FormTextInput as default };
|
|
67
|
-
FormTextInput.defaultProps = {
|
|
68
|
-
style: {}
|
|
69
|
-
};
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { object } from 'prop-types';
|
|
2
|
-
import { LOGIN_SUCCESS, LOGIN_ERROR, LOGOUT } from "../constants";
|
|
3
|
-
var initialState = {
|
|
4
|
-
success: false,
|
|
5
|
-
error: {
|
|
6
|
-
username: null,
|
|
7
|
-
password: null
|
|
8
|
-
}
|
|
9
|
-
};
|
|
10
|
-
export default function (state, action) {
|
|
11
|
-
switch (action.type) {
|
|
12
|
-
case LOGIN_SUCCESS:
|
|
13
|
-
{
|
|
14
|
-
return state.merge({
|
|
15
|
-
login: true,
|
|
16
|
-
userId: action.userid
|
|
17
|
-
});
|
|
18
|
-
}
|
|
19
|
-
case LOGIN_ERROR:
|
|
20
|
-
{
|
|
21
|
-
return state.merge({
|
|
22
|
-
login: false,
|
|
23
|
-
userId: 0
|
|
24
|
-
});
|
|
25
|
-
}
|
|
26
|
-
case LOGOUT:
|
|
27
|
-
{
|
|
28
|
-
state = state.merge({
|
|
29
|
-
scene: state.scene.merge({
|
|
30
|
-
title: '',
|
|
31
|
-
currentProjectID: null
|
|
32
|
-
})
|
|
33
|
-
});
|
|
34
|
-
return state;
|
|
35
|
-
}
|
|
36
|
-
default:
|
|
37
|
-
{
|
|
38
|
-
return state;
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
}
|
package/es/styles/export.js
DELETED
package/es/styles/tabs.css
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
.react-tabs__tab-list {
|
|
2
|
-
border-bottom: 1px solid #aaa;
|
|
3
|
-
margin: 0 0 10px;
|
|
4
|
-
padding: 0;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.react-tabs__tab {
|
|
8
|
-
display: inline-block;
|
|
9
|
-
border: 1px solid transparent;
|
|
10
|
-
border-bottom: none;
|
|
11
|
-
bottom: -1px;
|
|
12
|
-
position: relative;
|
|
13
|
-
list-style: none;
|
|
14
|
-
padding: 6px 12px;
|
|
15
|
-
cursor: pointer;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.react-tabs__tab--selected,
|
|
19
|
-
.react-tabs__tab:focus {
|
|
20
|
-
border-color: #aaa;
|
|
21
|
-
color: #1ca6fc;
|
|
22
|
-
outline: none;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.react-tabs__tab-panel {
|
|
26
|
-
display: none;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.react-tabs__tab-panel--selected {
|
|
30
|
-
display: block;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
@keyframes spin {
|
|
34
|
-
from {
|
|
35
|
-
transform: rotate(0deg);
|
|
36
|
-
}
|
|
37
|
-
to {
|
|
38
|
-
transform: rotate(360deg);
|
|
39
|
-
}
|
|
40
|
-
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|