@react95/core 6.0.1 → 6.0.4
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/@types/shared/test/utils.d.ts +2 -2
- package/cjs/Alert/Alert.js +4 -4
- package/cjs/Avatar/Avatar.js +5 -5
- package/cjs/Button/Button.js +1 -1
- package/cjs/Checkbox/Checkbox.js +6 -6
- package/cjs/Cursor/Cursor.js +1 -1
- package/cjs/Dropdown/Dropdown.js +3 -3
- package/cjs/Fieldset/Fieldset.js +3 -3
- package/cjs/GlobalStyle/Borders.js +13 -13
- package/cjs/GlobalStyle/GlobalStyle.js +1 -1
- package/cjs/GlobalStyle/Scrollbar.js +2 -2
- package/cjs/Input/Input.js +1 -1
- package/cjs/List/List.js +1 -1
- package/cjs/List/ListDivider.js +1 -1
- package/cjs/List/ListItem.js +3 -3
- package/cjs/Modal/Modal.js +8 -8
- package/cjs/ProgressBar/ProgressBar.js +6 -6
- package/cjs/RadioButton/RadioButton.js +6 -6
- package/cjs/Range/Range.js +3 -3
- package/cjs/Tabs/Tab.js +3 -3
- package/cjs/Tabs/Tabs.js +3 -3
- package/cjs/TaskBar/Clock.js +2 -2
- package/cjs/TaskBar/TaskBar.js +1 -1
- package/cjs/TaskBar/WindowButton.js +4 -4
- package/cjs/TextArea/TextArea.js +2 -2
- package/cjs/TitleBar/TitleBar.js +4 -4
- package/cjs/Tooltip/Tooltip.js +3 -3
- package/cjs/Tree/Node.js +7 -7
- package/cjs/Tree/Tree.js +2 -2
- package/cjs/Video/Video.js +9 -9
- package/cjs/Video/buttons/Fullscreen.js +1 -1
- package/cjs/Video/buttons/Pause.js +1 -1
- package/cjs/Video/buttons/Play.js +1 -1
- package/cjs/Video/buttons/Stop.js +1 -1
- package/cjs/shared/test/utils.js +102 -0
- package/esm/Alert/Alert.js +4 -4
- package/esm/Avatar/Avatar.js +5 -5
- package/esm/Button/Button.js +1 -1
- package/esm/Checkbox/Checkbox.js +6 -6
- package/esm/Cursor/Cursor.js +1 -1
- package/esm/Dropdown/Dropdown.js +3 -3
- package/esm/Fieldset/Fieldset.js +3 -3
- package/esm/GlobalStyle/Borders.js +13 -13
- package/esm/GlobalStyle/GlobalStyle.js +1 -1
- package/esm/GlobalStyle/Scrollbar.js +2 -2
- package/esm/Input/Input.js +1 -1
- package/esm/List/List.js +1 -1
- package/esm/List/ListDivider.js +1 -1
- package/esm/List/ListItem.js +3 -3
- package/esm/Modal/Modal.js +8 -8
- package/esm/ProgressBar/ProgressBar.js +6 -6
- package/esm/RadioButton/RadioButton.js +6 -6
- package/esm/Range/Range.js +3 -3
- package/esm/Tabs/Tab.js +3 -3
- package/esm/Tabs/Tabs.js +3 -3
- package/esm/TaskBar/Clock.js +2 -2
- package/esm/TaskBar/TaskBar.js +1 -1
- package/esm/TaskBar/WindowButton.js +4 -4
- package/esm/TextArea/TextArea.js +2 -2
- package/esm/TitleBar/TitleBar.js +4 -4
- package/esm/Tooltip/Tooltip.js +3 -3
- package/esm/Tree/Node.js +7 -7
- package/esm/Tree/Tree.js +2 -2
- package/esm/Video/Video.js +9 -9
- package/esm/Video/buttons/Fullscreen.js +1 -1
- package/esm/Video/buttons/Pause.js +1 -1
- package/esm/Video/buttons/Play.js +1 -1
- package/esm/Video/buttons/Stop.js +1 -1
- package/esm/shared/test/utils.js +75 -0
- package/package.json +2 -2
|
@@ -19,7 +19,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
19
19
|
|
|
20
20
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
21
21
|
|
|
22
|
-
function _extends() { _extends = Object.assign
|
|
22
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
23
23
|
|
|
24
24
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
25
25
|
|
|
@@ -28,26 +28,26 @@ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) r
|
|
|
28
28
|
var Icon = _styledComponents["default"].span.withConfig({
|
|
29
29
|
displayName: "RadioButton__Icon",
|
|
30
30
|
componentId: "sc-1nrg9a4-0"
|
|
31
|
-
})(["width:12px
|
|
31
|
+
})(["\n width: 12px;\n height: 12px;\n\n content: '';\n display: inline-block;\n\n position: absolute;\n left: 0;\n top: 0;\n\n background-image: url(", ");\n"], _radioButtonStates.radioUnchecked);
|
|
32
32
|
|
|
33
33
|
var Text = _styledComponents["default"].span.withConfig({
|
|
34
34
|
displayName: "RadioButton__Text",
|
|
35
35
|
componentId: "sc-1nrg9a4-1"
|
|
36
|
-
})(["padding:1
|
|
36
|
+
})(["\n padding: 1;\n user-select: none;\n\n position: absolute;\n top: 0;\n left: 18px;\n"]);
|
|
37
37
|
|
|
38
38
|
var Field = _styledComponents["default"].input.attrs({
|
|
39
39
|
type: 'radio'
|
|
40
40
|
}).withConfig({
|
|
41
41
|
displayName: "RadioButton__Field",
|
|
42
42
|
componentId: "sc-1nrg9a4-2"
|
|
43
|
-
})(["margin:0
|
|
43
|
+
})(["\n margin: 0;\n opacity: 0;\n\n &:focus ~ ", ", &:active + ", " {\n border-width: 1;\n border-style: dotted;\n padding: 0;\n }\n\n &:checked + ", " {\n background-image: url(", ");\n }\n\n &:disabled + ", " {\n background-image: url(", ");\n }\n\n &:checked:disabled + ", " {\n background-image: url(", ");\n }\n"], Text, Text, Icon, _radioButtonStates.radioChecked, Icon, _radioButtonStates.radioUncheckedDisabled, Icon, _radioButtonStates.radioCheckedDisabled);
|
|
44
44
|
|
|
45
45
|
var Label = _styledComponents["default"].label.withConfig({
|
|
46
46
|
displayName: "RadioButton__Label",
|
|
47
47
|
componentId: "sc-1nrg9a4-3"
|
|
48
|
-
})(["position:relative
|
|
48
|
+
})(["\n position: relative;\n margin-bottom: 10;\n display: block;\n\n ", "\n"], function (_ref) {
|
|
49
49
|
var disabled = _ref.disabled;
|
|
50
|
-
return disabled && (0, _styledComponents.css)(["color:materialTextDisabled
|
|
50
|
+
return disabled && (0, _styledComponents.css)(["\n color: materialTextDisabled;\n text-shadow: 0.5px 0.5px ", ";\n "], (0, _styledComponents.th)('colors.materialTextDisabledShadow'));
|
|
51
51
|
});
|
|
52
52
|
|
|
53
53
|
var RadioButton = /*#__PURE__*/(0, _react.forwardRef)(function (_ref2, ref) {
|
package/cjs/Range/Range.js
CHANGED
|
@@ -13,15 +13,15 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
13
13
|
|
|
14
14
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
15
15
|
|
|
16
|
-
var trackStyle = (0, _styledComponents.css)(["width:100
|
|
17
|
-
var thumbStyle = (0, _styledComponents.css)(["width:12px
|
|
16
|
+
var trackStyle = (0, _styledComponents.css)(["\n width: 100%;\n height: 4px;\n\n background-color: borderDarkest;\n\n cursor: pointer;\n\n border-top: 1;\n border-top-color: borderLight;\n border-right: 2;\n border-right-color: borderLightest;\n border-bottom: 1;\n border-bottom-color: borderLighter;\n border-left: 2;\n border-left-color: borderLightest;\n\n box-shadow: 0px 1px 0px 0px ", ";\n"], (0, _styledComponents.th)('colors.borderLightest'));
|
|
17
|
+
var thumbStyle = (0, _styledComponents.css)(["\n width: 12px;\n height: 20px;\n\n background-color: material;\n\n cursor: pointer;\n\n margin-top: -8;\n\n border-top: 1;\n border-top-color: borderLightest;\n border-right: 1;\n border-right-color: borderDarkest;\n border-bottom: 1;\n border-bottom-color: borderDarkest;\n border-left: 1;\n border-left-color: borderLightest;\n\n box-shadow: inset 0px -1px 0px ", ",\n inset -1px 0px 0px ", ",\n inset 0px 1px 0px ", ",\n inset 1px 0px 0px ", ";\n\n -webkit-appearance: none;\n"], (0, _styledComponents.th)('colors.borderDark'), (0, _styledComponents.th)('colors.borderDark'), (0, _styledComponents.th)('colors.borderLighter'), (0, _styledComponents.th)('colors.borderLighter'));
|
|
18
18
|
|
|
19
19
|
var Range = _styledComponents["default"].input.attrs({
|
|
20
20
|
type: 'range'
|
|
21
21
|
}).withConfig({
|
|
22
22
|
displayName: "Range",
|
|
23
23
|
componentId: "sc-1p4whtx-0"
|
|
24
|
-
})(["-webkit-appearance:none
|
|
24
|
+
})(["\n -webkit-appearance: none;\n width: 100%;\n\n &:hover,\n &:focus,\n &:active {\n outline: none;\n }\n\n &::-webkit-slider-runnable-track {\n ", "\n }\n\n &::-webkit-slider-thumb {\n ", "\n }\n\n &:focus::-webkit-slider-runnable-track {\n background-color: borderDarkest;\n }\n\n &::-moz-range-track {\n ", "\n }\n\n &::-moz-range-thumb {\n ", "\n }\n"], trackStyle, thumbStyle, trackStyle, thumbStyle);
|
|
25
25
|
|
|
26
26
|
var _default = Range;
|
|
27
27
|
exports["default"] = _default;
|
package/cjs/Tabs/Tab.js
CHANGED
|
@@ -17,7 +17,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
17
17
|
|
|
18
18
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
19
19
|
|
|
20
|
-
function _extends() { _extends = Object.assign
|
|
20
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
21
21
|
|
|
22
22
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
23
23
|
|
|
@@ -26,9 +26,9 @@ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) r
|
|
|
26
26
|
var NavItem = _styledComponents["default"].li.withConfig({
|
|
27
27
|
displayName: "Tab__NavItem",
|
|
28
28
|
componentId: "sc-vz441a-0"
|
|
29
|
-
})(["list-style:none
|
|
29
|
+
})(["\n list-style: none;\n padding: 3 6;\n background-color: material;\n box-shadow: inset 0 1px 0 0 ", ",\n -2px 1px 0 -1px ", ",\n -3px 1px 0 -1px ", ",\n -2px 0 0 -1px ", ",\n 2px 1px 0 -1px ", ",\n 2px 0 0 -1px ", ",\n 3px 1px 0 -1px ", ";\n margin-right: 2;\n margin-left: 2;\n\n &:first-child {\n margin-left: 4;\n }\n\n ", "\n"], (0, _styledComponents.th)('colors.borderLightest'), (0, _styledComponents.th)('colors.material'), (0, _styledComponents.th)('colors.borderLightest'), (0, _styledComponents.th)('colors.borderLightest'), (0, _styledComponents.th)('colors.borderDark'), (0, _styledComponents.th)('colors.borderDarkest'), (0, _styledComponents.th)('colors.borderDarkest'), function (_ref) {
|
|
30
30
|
var active = _ref.active;
|
|
31
|
-
return active && (0, _styledComponents.css)(["margin-top
|
|
31
|
+
return active && (0, _styledComponents.css)(["\n margin-top: -2;\n margin-left: -2;\n margin-bottom: 1;\n\n &:first-child {\n margin-left: 2;\n }\n\n box-shadow: inset 0 1px 0 0 ", ",\n -2px 1px 0 -1px ", ",\n -0.5px 3px 0 0.5px ", ",\n -2px 2px 0 0 ", ",\n -2px 0 0 -1px ", ",\n 1px 2px 0 0 ", ",\n 2px 0 0 -1px ", ",\n 2px 2px 0 0 ", ";\n\n & + li {\n margin-left: 0;\n box-shadow: inset 0 1px 0 0 ", ",\n 2px 1px 0 -1px ", ",\n 2px 0 0 -1px ", ",\n 3px 1px 0 -1px ", ";\n }\n "], (0, _styledComponents.th)('colors.borderLightest'), (0, _styledComponents.th)('colors.material'), (0, _styledComponents.th)('colors.material'), (0, _styledComponents.th)('colors.borderLightest'), (0, _styledComponents.th)('colors.borderLightest'), (0, _styledComponents.th)('colors.borderDark'), (0, _styledComponents.th)('colors.borderDarkest'), (0, _styledComponents.th)('colors.borderDarkest'), (0, _styledComponents.th)('colors.borderLightest'), (0, _styledComponents.th)('colors.borderDark'), (0, _styledComponents.th)('colors.borderDarkest'), (0, _styledComponents.th)('colors.borderDarkest'));
|
|
32
32
|
});
|
|
33
33
|
|
|
34
34
|
var Tab = /*#__PURE__*/(0, _react.forwardRef)(function (_ref2, ref) {
|
package/cjs/Tabs/Tabs.js
CHANGED
|
@@ -23,7 +23,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
23
23
|
|
|
24
24
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
25
25
|
|
|
26
|
-
function _extends() { _extends = Object.assign
|
|
26
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
27
27
|
|
|
28
28
|
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
29
29
|
|
|
@@ -44,11 +44,11 @@ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) r
|
|
|
44
44
|
var Navbar = (0, _styledComponents["default"])(_Frame["default"]).withConfig({
|
|
45
45
|
displayName: "Tabs__Navbar",
|
|
46
46
|
componentId: "sc-1r3cxnf-0"
|
|
47
|
-
})(["display:flex
|
|
47
|
+
})(["\n display: flex;\n padding: 0;\n margin: 0;\n border: none;\n box-shadow: none;\n background-color: unset;\n"]);
|
|
48
48
|
var NavContainer = (0, _styledComponents["default"])(_Frame["default"]).withConfig({
|
|
49
49
|
displayName: "Tabs__NavContainer",
|
|
50
50
|
componentId: "sc-1r3cxnf-1"
|
|
51
|
-
})(["padding:12
|
|
51
|
+
})(["\n padding: 12;\n box-shadow: out;\n"]);
|
|
52
52
|
NavContainer.displayName = 'NavContainer';
|
|
53
53
|
var Tabs = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) {
|
|
54
54
|
var children = _ref.children,
|
package/cjs/TaskBar/Clock.js
CHANGED
|
@@ -36,7 +36,7 @@ function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
|
36
36
|
var StyledTooltip = (0, _styledComponents["default"])(_Tooltip["default"]).withConfig({
|
|
37
37
|
displayName: "Clock__StyledTooltip",
|
|
38
38
|
componentId: "sc-1tq15w4-0"
|
|
39
|
-
})(["div:first-child{right:0
|
|
39
|
+
})(["\n div:first-child {\n right: 0;\n }\n"]);
|
|
40
40
|
|
|
41
41
|
var Clock = function Clock() {
|
|
42
42
|
var _useState = (0, _react.useState)(''),
|
|
@@ -58,7 +58,7 @@ var Clock = function Clock() {
|
|
|
58
58
|
return function () {
|
|
59
59
|
return clearInterval(interval);
|
|
60
60
|
};
|
|
61
|
-
});
|
|
61
|
+
}, []);
|
|
62
62
|
return /*#__PURE__*/_react["default"].createElement(_Frame["default"], {
|
|
63
63
|
boxShadow: "in",
|
|
64
64
|
bg: "transparent",
|
package/cjs/TaskBar/TaskBar.js
CHANGED
|
@@ -42,7 +42,7 @@ function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
|
42
42
|
var Truncate = _styledComponents["default"].span.withConfig({
|
|
43
43
|
displayName: "TaskBar__Truncate",
|
|
44
44
|
componentId: "sc-2weywn-0"
|
|
45
|
-
})(["overflow:hidden
|
|
45
|
+
})(["\n overflow: hidden;\n display: -webkit-box;\n -webkit-line-clamp: 1;\n -webkit-box-orient: vertical;\n text-align: left;\n"]);
|
|
46
46
|
|
|
47
47
|
var TaskBar = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) {
|
|
48
48
|
var list = _ref.list;
|
|
@@ -23,7 +23,7 @@ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj &&
|
|
|
23
23
|
|
|
24
24
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
25
25
|
|
|
26
|
-
function _extends() { _extends = Object.assign
|
|
26
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
27
27
|
|
|
28
28
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
29
29
|
|
|
@@ -32,19 +32,19 @@ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) r
|
|
|
32
32
|
var Button = (0, _styledComponents["default"])(_Frame["default"]).withConfig({
|
|
33
33
|
displayName: "WindowButton__Button",
|
|
34
34
|
componentId: "sc-1vv5l1a-0"
|
|
35
|
-
})(["display:inline-flex
|
|
35
|
+
})(["\n display: inline-flex;\n justify-content: flex-start;\n align-items: center;\n padding: 2 3;\n margin-right: 2;\n max-width: 150px;\n border: none;\n outline: none;\n\n ", "\n\n ", "\n"], function (_ref) {
|
|
36
36
|
var small = _ref.small;
|
|
37
37
|
return !small ? "\n width: 100%;\n " : '';
|
|
38
38
|
}, function (_ref2) {
|
|
39
39
|
var active = _ref2.active,
|
|
40
40
|
small = _ref2.small;
|
|
41
|
-
return active && small ? (0, _styledComponents.css)(["outline:", "px dotted ", "
|
|
41
|
+
return active && small ? (0, _styledComponents.css)(["\n outline: ", "px dotted ", ";\n outline-offset: -", "px;\n padding-top: 4;\n padding-right: 2;\n padding-bottom: 0;\n padding-left: 4;\n "], (0, _styledComponents.th)('space.1'), (0, _styledComponents.th)('colors.borderDarkest'), (0, _styledComponents.th)('space.4')) : '';
|
|
42
42
|
});
|
|
43
43
|
|
|
44
44
|
var IconWrapper = _styledComponents["default"].div.withConfig({
|
|
45
45
|
displayName: "WindowButton__IconWrapper",
|
|
46
46
|
componentId: "sc-1vv5l1a-1"
|
|
47
|
-
})(["img{margin-right:4
|
|
47
|
+
})(["\n img {\n margin-right: 4;\n min-width: 20;\n width: 20;\n height: 20;\n }\n"]);
|
|
48
48
|
|
|
49
49
|
var WindowButton = function WindowButton(_ref3) {
|
|
50
50
|
var _ref3$children = _ref3.children,
|
package/cjs/TextArea/TextArea.js
CHANGED
|
@@ -19,12 +19,12 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
19
19
|
|
|
20
20
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
21
21
|
|
|
22
|
-
function _extends() { _extends = Object.assign
|
|
22
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
23
23
|
|
|
24
24
|
var TextAreaComponent = _styledComponents["default"].textarea.withConfig({
|
|
25
25
|
displayName: "TextArea__TextAreaComponent",
|
|
26
26
|
componentId: "sc-nssclc-0"
|
|
27
|
-
})(["outline:none
|
|
27
|
+
})(["\n outline: none;\n border: none;\n cursor: text;\n\n padding: 3 3 5 3;\n\n color: materialText;\n background-color: inputBackground;\n\n border-radius: 0;\n\n border-top-width: 1;\n border-top-style: 1;\n border-top-color: borderDark;\n\n border-right-width: 0;\n border-bottom-width: 0;\n\n border-left-width: 1;\n border-left-style: 1;\n border-left-color: borderDark;\n\n box-shadow: input;\n\n -webkit-appearance: none;\n\n ", "\n ", "\n ", "\n"], _styledSystem.padding, _styledSystem.borders, _styledSystem.shadow);
|
|
28
28
|
|
|
29
29
|
var TextArea = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
30
30
|
return /*#__PURE__*/_react["default"].createElement(TextAreaComponent, _extends({}, props, {
|
package/cjs/TitleBar/TitleBar.js
CHANGED
|
@@ -24,19 +24,19 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
|
|
|
24
24
|
var OptionsBox = _styledComponents["default"].ul.withConfig({
|
|
25
25
|
displayName: "TitleBar__OptionsBox",
|
|
26
26
|
componentId: "sc-5cvtvn-0"
|
|
27
|
-
})(["list-style:none
|
|
27
|
+
})(["\n list-style: none;\n padding: 0;\n margin: 0;\n\n display: flex;\n"]);
|
|
28
28
|
|
|
29
29
|
var Option = (0, _styledComponents["default"])(_Button["default"]).attrs({
|
|
30
30
|
as: 'li'
|
|
31
31
|
}).withConfig({
|
|
32
32
|
displayName: "TitleBar__Option",
|
|
33
33
|
componentId: "sc-5cvtvn-1"
|
|
34
|
-
})(["display:flex
|
|
34
|
+
})(["\n display: flex;\n align-items: center;\n justify-content: center;\n\n margin-left: 2;\n padding: 0;\n\n width: 17px;\n height: 14px;\n\n min-width: 0;\n font-weight: 600;\n font-size: 10;\n\n &:active {\n padding: 1 0 0 1;\n\n outline: none;\n }\n\n &:first-child {\n margin-right: 0;\n }\n\n &:focus {\n box-shadow: inset 1px 1px 0px 1px ", ",\n inset -1px -1px 0px 1px ", ";\n }\n"], (0, _styledComponents.th)('colors.borderLightest'), (0, _styledComponents.th)('colors.borderDark'));
|
|
35
35
|
Option.displayName = 'Option';
|
|
36
36
|
var TitleBarBackground = (0, _styledComponents["default"])(_Frame["default"]).withConfig({
|
|
37
37
|
displayName: "TitleBar__TitleBarBackground",
|
|
38
38
|
componentId: "sc-5cvtvn-2"
|
|
39
|
-
})(["height:18
|
|
39
|
+
})(["\n height: 18;\n margin-bottom: 2;\n\n padding: 2;\n\n display: flex;\n\n box-shadow: none;\n\n img {\n width: 15;\n height: 14;\n margin-right: 4;\n }\n\n background: ", ";\n"], function (_ref) {
|
|
40
40
|
var active = _ref.active,
|
|
41
41
|
theme = _ref.theme;
|
|
42
42
|
return active ? theme.colors.headerBackground : theme.colors.headerNotActiveBackground;
|
|
@@ -45,7 +45,7 @@ var TitleBarBackground = (0, _styledComponents["default"])(_Frame["default"]).wi
|
|
|
45
45
|
var Title = _styledComponents["default"].div.withConfig({
|
|
46
46
|
displayName: "TitleBar__Title",
|
|
47
47
|
componentId: "sc-5cvtvn-3"
|
|
48
|
-
})(["flex-grow:1
|
|
48
|
+
})(["\n flex-grow: 1;\n font-weight: bold;\n line-height: 1.4em;\n margin: 0;\n font-size: 1em;\n"]);
|
|
49
49
|
|
|
50
50
|
var TitleBarRenderer = function TitleBarRenderer(_ref2, ref) {
|
|
51
51
|
var children = _ref2.children,
|
package/cjs/Tooltip/Tooltip.js
CHANGED
|
@@ -21,7 +21,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
21
21
|
|
|
22
22
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
23
23
|
|
|
24
|
-
function _extends() { _extends = Object.assign
|
|
24
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
25
25
|
|
|
26
26
|
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
27
27
|
|
|
@@ -42,12 +42,12 @@ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) r
|
|
|
42
42
|
var Tip = (0, _styledComponents["default"])(_Frame["default"]).withConfig({
|
|
43
43
|
displayName: "Tooltip__Tip",
|
|
44
44
|
componentId: "sc-klr207-0"
|
|
45
|
-
})(["background:radial-gradient(#ff0 20%,transparent 20%) 0 0
|
|
45
|
+
})(["\n background: radial-gradient(#ff0 20%, transparent 20%) 0 0,\n radial-gradient(#ff0 20%, transparent 20%) 4px 4px,\n radial-gradient(rgba(255, 255, 255, 0.1) 20%, transparent 25%) 0 1px,\n radial-gradient(rgba(255, 255, 255, 0.1) 20%, transparent 25%) 3px 4px;\n background-size: 7px 7px;\n background-color: borderLightest;\n border: 1;\n padding: 2 2 2 4;\n box-shadow: none;\n position: absolute;\n top: -20px;\n text-align: center;\n z-index: taskbar;\n"]);
|
|
46
46
|
|
|
47
47
|
var Wrapper = _styledComponents["default"].div.withConfig({
|
|
48
48
|
displayName: "Tooltip__Wrapper",
|
|
49
49
|
componentId: "sc-klr207-1"
|
|
50
|
-
})(["display:inline-block
|
|
50
|
+
})(["\n display: inline-block;\n position: relative;\n cursor: default;\n white-space: nowrap;\n"]);
|
|
51
51
|
|
|
52
52
|
var TooltipRenderer = function TooltipRenderer(_ref, ref) {
|
|
53
53
|
var children = _ref.children,
|
package/cjs/Tree/Node.js
CHANGED
|
@@ -27,7 +27,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
27
27
|
|
|
28
28
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
29
29
|
|
|
30
|
-
function _extends() { _extends = Object.assign
|
|
30
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
31
31
|
|
|
32
32
|
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
33
33
|
|
|
@@ -60,7 +60,7 @@ exports.icons = icons;
|
|
|
60
60
|
var NodeItem = _styledComponents["default"].div.withConfig({
|
|
61
61
|
displayName: "Node__NodeItem",
|
|
62
62
|
componentId: "sc-284w29-0"
|
|
63
|
-
})(["list-style-type:none
|
|
63
|
+
})(["\n list-style-type: none;\n background-repeat: no-repeat;\n background-image: url(", ");\n\n &:last-child {\n background-image: url(", ");\n }\n"], _treeMid["default"], function (_ref) {
|
|
64
64
|
var isOpen = _ref.isOpen;
|
|
65
65
|
return isOpen ? _treeMid["default"] : _treeLast["default"];
|
|
66
66
|
});
|
|
@@ -68,17 +68,17 @@ var NodeItem = _styledComponents["default"].div.withConfig({
|
|
|
68
68
|
var NodeInfo = _styledComponents["default"].div.withConfig({
|
|
69
69
|
displayName: "Node__NodeInfo",
|
|
70
70
|
componentId: "sc-284w29-1"
|
|
71
|
-
})(["display:flex
|
|
71
|
+
})(["\n display: flex;\n align-items: center;\n user-select: none;\n -webkit-user-select: none;\n -khtml-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n"]);
|
|
72
72
|
|
|
73
73
|
var FolderStatus = _styledComponents["default"].div.withConfig({
|
|
74
74
|
displayName: "Node__FolderStatus",
|
|
75
75
|
componentId: "sc-284w29-2"
|
|
76
|
-
})(["display:flex
|
|
76
|
+
})(["\n display: flex;\n align-items: center;\n justify-content: center;\n width: 10px;\n height: 10px;\n border: 1;\n border-color: borderDarkest;\n background-color: inputBackground;\n font-size: 11px;\n"]);
|
|
77
77
|
|
|
78
78
|
var IconContainer = _styledComponents["default"].div.withConfig({
|
|
79
79
|
displayName: "Node__IconContainer",
|
|
80
80
|
componentId: "sc-284w29-3"
|
|
81
|
-
})(["display:flex
|
|
81
|
+
})(["\n display: flex;\n align-items: center;\n justify-content: center;\n width: 20px;\n height: 20px;\n margin-right: 6;\n margin-left: ", "px;\n\n > img {\n width: 14px;\n height: 14px;\n }\n"], function (_ref2) {
|
|
82
82
|
var hasChildren = _ref2.hasChildren;
|
|
83
83
|
return hasChildren ? 8 : 18;
|
|
84
84
|
});
|
|
@@ -86,12 +86,12 @@ var IconContainer = _styledComponents["default"].div.withConfig({
|
|
|
86
86
|
var NodeChildren = _styledComponents["default"].ul.withConfig({
|
|
87
87
|
displayName: "Node__NodeChildren",
|
|
88
88
|
componentId: "sc-284w29-4"
|
|
89
|
-
})(["padding:0 0 0 22
|
|
89
|
+
})(["\n padding: 0 0 0 22;\n background-image: url(", ");\n background-repeat: repeat-y;\n"], _treeNodeChildren["default"]);
|
|
90
90
|
|
|
91
91
|
var Label = _styledComponents["default"].span.withConfig({
|
|
92
92
|
displayName: "Node__Label",
|
|
93
93
|
componentId: "sc-284w29-5"
|
|
94
|
-
})(["outline:none
|
|
94
|
+
})(["\n outline: none;\n padding: 1;\n\n :focus {\n border-width: 1;\n border-style: dotted;\n padding: 0;\n }\n"]);
|
|
95
95
|
|
|
96
96
|
var NodeIcon = function NodeIcon(_ref3) {
|
|
97
97
|
var hasChildren = _ref3.hasChildren,
|
package/cjs/Tree/Tree.js
CHANGED
|
@@ -21,7 +21,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
21
21
|
|
|
22
22
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
23
23
|
|
|
24
|
-
function _extends() { _extends = Object.assign
|
|
24
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
25
25
|
|
|
26
26
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
27
27
|
|
|
@@ -30,7 +30,7 @@ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) r
|
|
|
30
30
|
var TreeParent = _styledComponents["default"].ul.withConfig({
|
|
31
31
|
displayName: "Tree__TreeParent",
|
|
32
32
|
componentId: "sc-1wiuvvx-0"
|
|
33
|
-
})(["padding:0
|
|
33
|
+
})(["\n padding: 0;\n"]);
|
|
34
34
|
|
|
35
35
|
var Tree = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) {
|
|
36
36
|
var data = _ref.data,
|
package/cjs/Video/Video.js
CHANGED
|
@@ -33,7 +33,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
33
33
|
|
|
34
34
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
35
35
|
|
|
36
|
-
function _extends() { _extends = Object.assign
|
|
36
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
37
37
|
|
|
38
38
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
39
39
|
|
|
@@ -60,7 +60,7 @@ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) r
|
|
|
60
60
|
var VideoTag = _styledComponents["default"].video.withConfig({
|
|
61
61
|
displayName: "Video__VideoTag",
|
|
62
62
|
componentId: "sc-aeevd2-0"
|
|
63
|
-
})(["width:100
|
|
63
|
+
})(["\n width: 100%;\n padding: 2;\n\n display: ", ";\n"], function (_ref) {
|
|
64
64
|
var visible = _ref.visible;
|
|
65
65
|
return visible ? 'block' : 'none';
|
|
66
66
|
});
|
|
@@ -76,34 +76,34 @@ var Source = function Source(_ref2) {
|
|
|
76
76
|
var ControlBtn = (0, _styledComponents["default"])(_Button["default"]).withConfig({
|
|
77
77
|
displayName: "Video__ControlBtn",
|
|
78
78
|
componentId: "sc-aeevd2-1"
|
|
79
|
-
})(["display:inline-flex
|
|
79
|
+
})(["\n display: inline-flex;\n justify-content: center;\n align-items: center;\n\n svg {\n fill: materialText;\n }\n\n &&,\n &:active,\n &:focus {\n width: 20px;\n height: 20px;\n padding: 7;\n\n ", "\n }\n"], function (_ref3) {
|
|
80
80
|
var disabled = _ref3.disabled;
|
|
81
|
-
return disabled && (0, _styledComponents.css)(["padding:4
|
|
81
|
+
return disabled && (0, _styledComponents.css)(["\n padding: 4;\n svg {\n fill: borderDark;\n border-bottom: 1px solid;\n border-bottom-color: borderLightest;\n border-right: 1px solid;\n border-right-color: borderLightest;\n }\n "]);
|
|
82
82
|
});
|
|
83
83
|
|
|
84
84
|
var Controls = _styledComponents["default"].div.withConfig({
|
|
85
85
|
displayName: "Video__Controls",
|
|
86
86
|
componentId: "sc-aeevd2-2"
|
|
87
|
-
})(["display:flex
|
|
87
|
+
})(["\n display: flex;\n align-items: center;\n padding: 2 0;\n"]);
|
|
88
88
|
|
|
89
89
|
var CountDownContainer = (0, _styledComponents["default"])(_Frame["default"]).withConfig({
|
|
90
90
|
displayName: "Video__CountDownContainer",
|
|
91
91
|
componentId: "sc-aeevd2-3"
|
|
92
|
-
})(["display:flex
|
|
92
|
+
})(["\n display: flex;\n padding: 6;\n margin-bottom: 4;\n\n box-shadow: in;\n background-color: canvas;\n height: 50px;\n\n color: canvasText;\n"]);
|
|
93
93
|
|
|
94
94
|
var VideoFont = _styledComponents["default"].span.withConfig({
|
|
95
95
|
displayName: "Video__VideoFont",
|
|
96
96
|
componentId: "sc-aeevd2-4"
|
|
97
|
-
})(["font-family:'React95Video-Numbers'
|
|
97
|
+
})(["\n font-family: 'React95Video-Numbers';\n text-transform: uppercase;\n"]);
|
|
98
98
|
|
|
99
99
|
var ResetFrame = (0, _styledComponents["default"])(_Frame["default"]).withConfig({
|
|
100
100
|
displayName: "Video__ResetFrame",
|
|
101
101
|
componentId: "sc-aeevd2-5"
|
|
102
|
-
})(["background-color:transparent
|
|
102
|
+
})(["\n background-color: transparent;\n box-shadow: none;\n"]);
|
|
103
103
|
var VideoRange = (0, _styledComponents["default"])(_Range["default"]).withConfig({
|
|
104
104
|
displayName: "Video__VideoRange",
|
|
105
105
|
componentId: "sc-aeevd2-6"
|
|
106
|
-
})(["&::-webkit-slider-thumb{height:18px
|
|
106
|
+
})(["\n &::-webkit-slider-thumb {\n height: 18px;\n margin-top: -7px;\n width: 10px;\n }\n\n &[value='0']::-webkit-slider-thumb {\n margin-left: -2px;\n }\n"]);
|
|
107
107
|
|
|
108
108
|
var PlayOrPause = function PlayOrPause(_ref4) {
|
|
109
109
|
var playing = _ref4.playing;
|
|
@@ -13,7 +13,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
13
13
|
|
|
14
14
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
15
15
|
|
|
16
|
-
function _extends() { _extends = Object.assign
|
|
16
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
17
17
|
|
|
18
18
|
var Fullscreen = function Fullscreen(props) {
|
|
19
19
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
@@ -13,7 +13,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
13
13
|
|
|
14
14
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
15
15
|
|
|
16
|
-
function _extends() { _extends = Object.assign
|
|
16
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
17
17
|
|
|
18
18
|
var Pause = function Pause(props) {
|
|
19
19
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
@@ -13,7 +13,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
13
13
|
|
|
14
14
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
15
15
|
|
|
16
|
-
function _extends() { _extends = Object.assign
|
|
16
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
17
17
|
|
|
18
18
|
var Play = function Play(props) {
|
|
19
19
|
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
@@ -13,7 +13,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
13
13
|
|
|
14
14
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
15
15
|
|
|
16
|
-
function _extends() { _extends = Object.assign
|
|
16
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
17
17
|
|
|
18
18
|
var Stop = function Stop(props) {
|
|
19
19
|
return /*#__PURE__*/React.createElement("svg", _extends({
|