@react95/core 5.5.0 → 5.7.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.
Files changed (153) hide show
  1. package/@types/Alert/Alert.d.ts +1 -1
  2. package/@types/Avatar/Avatar.d.ts +8 -0
  3. package/@types/Avatar/index.d.ts +2 -0
  4. package/@types/List/ListItem.d.ts +1 -1
  5. package/@types/Modal/Modal.d.ts +1 -1
  6. package/@types/TextArea/TextArea.d.ts +1 -1
  7. package/@types/Tree/Node.d.ts +8 -8
  8. package/@types/Video/Video.d.ts +1 -0
  9. package/@types/Video/buttons/Fullscreen.d.ts +3 -0
  10. package/@types/Video/buttons/index.d.ts +2 -1
  11. package/@types/index.d.ts +2 -1
  12. package/@types/shared/test/utils.d.ts +1 -1
  13. package/README.md +4 -1
  14. package/cjs/Alert/Alert.js +11 -37
  15. package/cjs/Avatar/Avatar.js +63 -0
  16. package/cjs/Avatar/index.js +13 -0
  17. package/cjs/Button/Button.js +3 -11
  18. package/cjs/Checkbox/Checkbox.js +13 -59
  19. package/cjs/Dropdown/Dropdown.js +10 -26
  20. package/cjs/Fieldset/Fieldset.js +10 -26
  21. package/cjs/GlobalStyle/Borders.js +1 -1
  22. package/cjs/GlobalStyle/GlobalStyle.js +3 -11
  23. package/cjs/GlobalStyle/Scrollbar.js +1 -1
  24. package/cjs/Input/Input.js +3 -11
  25. package/cjs/List/List.js +3 -11
  26. package/cjs/List/ListDivider.js +3 -11
  27. package/cjs/List/ListItem.js +10 -26
  28. package/cjs/Modal/Modal.js +16 -82
  29. package/cjs/Modal/ModalProvider.js +6 -6
  30. package/cjs/ProgressBar/ProgressBar.js +13 -59
  31. package/cjs/RadioButton/RadioButton.js +13 -59
  32. package/cjs/Range/Range.js +7 -35
  33. package/cjs/Tabs/Tab.js +10 -26
  34. package/cjs/Tabs/Tabs.js +11 -27
  35. package/cjs/TaskBar/Clock.js +7 -15
  36. package/cjs/TaskBar/TaskBar.js +7 -15
  37. package/cjs/TaskBar/WindowButton.js +11 -37
  38. package/cjs/TextArea/TextArea.js +6 -14
  39. package/cjs/ThemeProvider/ThemeProvider.js +3 -3
  40. package/cjs/ThemeProvider/themes/azureOrange.js +5 -5
  41. package/cjs/ThemeProvider/themes/baseTheme.js +1 -1
  42. package/cjs/ThemeProvider/themes/bee.js +5 -5
  43. package/cjs/ThemeProvider/themes/blackAndWhite.js +5 -5
  44. package/cjs/ThemeProvider/themes/brick.js +5 -5
  45. package/cjs/ThemeProvider/themes/candy.js +5 -5
  46. package/cjs/ThemeProvider/themes/coldGray.js +5 -5
  47. package/cjs/ThemeProvider/themes/counterStrike.js +5 -5
  48. package/cjs/ThemeProvider/themes/eggplant.js +5 -5
  49. package/cjs/ThemeProvider/themes/highContrast.js +5 -5
  50. package/cjs/ThemeProvider/themes/lilac.js +5 -5
  51. package/cjs/ThemeProvider/themes/lilacRoseDark.js +5 -5
  52. package/cjs/ThemeProvider/themes/maple.js +5 -5
  53. package/cjs/ThemeProvider/themes/marine.js +5 -5
  54. package/cjs/ThemeProvider/themes/matrix.js +5 -5
  55. package/cjs/ThemeProvider/themes/millenium.js +5 -5
  56. package/cjs/ThemeProvider/themes/modernDark.js +5 -5
  57. package/cjs/ThemeProvider/themes/molecule.js +5 -5
  58. package/cjs/ThemeProvider/themes/ninjaTurtles.js +5 -5
  59. package/cjs/ThemeProvider/themes/olive.js +5 -5
  60. package/cjs/ThemeProvider/themes/pamelaAnderson.js +5 -5
  61. package/cjs/ThemeProvider/themes/plum.js +5 -5
  62. package/cjs/ThemeProvider/themes/rainyDay.js +5 -5
  63. package/cjs/ThemeProvider/themes/rose.js +5 -5
  64. package/cjs/ThemeProvider/themes/slate.js +5 -5
  65. package/cjs/ThemeProvider/themes/spruce.js +5 -5
  66. package/cjs/ThemeProvider/themes/storm.js +5 -5
  67. package/cjs/ThemeProvider/themes/theSixtiesUSA.js +5 -5
  68. package/cjs/ThemeProvider/themes/tokyoDark.js +5 -5
  69. package/cjs/ThemeProvider/themes/tooSexy.js +5 -5
  70. package/cjs/ThemeProvider/themes/travel.js +5 -5
  71. package/cjs/ThemeProvider/themes/vaporTeal.js +5 -5
  72. package/cjs/ThemeProvider/themes/vermillion.js +5 -5
  73. package/cjs/ThemeProvider/themes/violetDark.js +5 -5
  74. package/cjs/ThemeProvider/themes/water.js +5 -5
  75. package/cjs/ThemeProvider/themes/win95.js +5 -5
  76. package/cjs/TitleBar/TitleBar.js +9 -45
  77. package/cjs/Tooltip/Tooltip.js +11 -27
  78. package/cjs/Tree/Node.js +16 -72
  79. package/cjs/Tree/Tree.js +6 -4
  80. package/cjs/Video/Video.js +33 -96
  81. package/cjs/Video/buttons/Fullscreen.js +34 -0
  82. package/cjs/Video/buttons/Pause.js +3 -3
  83. package/cjs/Video/buttons/Play.js +3 -3
  84. package/cjs/Video/buttons/Stop.js +3 -3
  85. package/cjs/Video/buttons/index.js +10 -2
  86. package/cjs/index.js +38 -30
  87. package/esm/Alert/Alert.js +8 -34
  88. package/esm/Avatar/Avatar.js +43 -0
  89. package/esm/Avatar/index.js +2 -0
  90. package/esm/Button/Button.js +2 -10
  91. package/esm/Checkbox/Checkbox.js +10 -56
  92. package/esm/Dropdown/Dropdown.js +7 -23
  93. package/esm/Fieldset/Fieldset.js +7 -23
  94. package/esm/GlobalStyle/GlobalStyle.js +2 -10
  95. package/esm/Input/Input.js +2 -10
  96. package/esm/List/List.js +2 -10
  97. package/esm/List/ListDivider.js +2 -10
  98. package/esm/List/ListItem.js +7 -23
  99. package/esm/Modal/Modal.js +13 -79
  100. package/esm/Modal/ModalProvider.js +3 -3
  101. package/esm/ProgressBar/ProgressBar.js +10 -56
  102. package/esm/RadioButton/RadioButton.js +10 -56
  103. package/esm/Range/Range.js +4 -32
  104. package/esm/Tabs/Tab.js +7 -23
  105. package/esm/Tabs/Tabs.js +8 -24
  106. package/esm/TaskBar/Clock.js +4 -12
  107. package/esm/TaskBar/TaskBar.js +4 -12
  108. package/esm/TaskBar/WindowButton.js +8 -34
  109. package/esm/TextArea/TextArea.js +3 -11
  110. package/esm/ThemeProvider/themes/azureOrange.js +2 -2
  111. package/esm/ThemeProvider/themes/bee.js +2 -2
  112. package/esm/ThemeProvider/themes/blackAndWhite.js +2 -2
  113. package/esm/ThemeProvider/themes/brick.js +2 -2
  114. package/esm/ThemeProvider/themes/candy.js +2 -2
  115. package/esm/ThemeProvider/themes/coldGray.js +2 -2
  116. package/esm/ThemeProvider/themes/counterStrike.js +2 -2
  117. package/esm/ThemeProvider/themes/eggplant.js +2 -2
  118. package/esm/ThemeProvider/themes/highContrast.js +2 -2
  119. package/esm/ThemeProvider/themes/lilac.js +2 -2
  120. package/esm/ThemeProvider/themes/lilacRoseDark.js +2 -2
  121. package/esm/ThemeProvider/themes/maple.js +2 -2
  122. package/esm/ThemeProvider/themes/marine.js +2 -2
  123. package/esm/ThemeProvider/themes/matrix.js +2 -2
  124. package/esm/ThemeProvider/themes/millenium.js +2 -2
  125. package/esm/ThemeProvider/themes/modernDark.js +2 -2
  126. package/esm/ThemeProvider/themes/molecule.js +2 -2
  127. package/esm/ThemeProvider/themes/ninjaTurtles.js +2 -2
  128. package/esm/ThemeProvider/themes/olive.js +2 -2
  129. package/esm/ThemeProvider/themes/pamelaAnderson.js +2 -2
  130. package/esm/ThemeProvider/themes/plum.js +2 -2
  131. package/esm/ThemeProvider/themes/rainyDay.js +2 -2
  132. package/esm/ThemeProvider/themes/rose.js +2 -2
  133. package/esm/ThemeProvider/themes/slate.js +2 -2
  134. package/esm/ThemeProvider/themes/spruce.js +2 -2
  135. package/esm/ThemeProvider/themes/storm.js +2 -2
  136. package/esm/ThemeProvider/themes/theSixtiesUSA.js +2 -2
  137. package/esm/ThemeProvider/themes/tokyoDark.js +2 -2
  138. package/esm/ThemeProvider/themes/tooSexy.js +2 -2
  139. package/esm/ThemeProvider/themes/travel.js +2 -2
  140. package/esm/ThemeProvider/themes/vaporTeal.js +2 -2
  141. package/esm/ThemeProvider/themes/vermillion.js +2 -2
  142. package/esm/ThemeProvider/themes/violetDark.js +2 -2
  143. package/esm/ThemeProvider/themes/water.js +2 -2
  144. package/esm/ThemeProvider/themes/win95.js +2 -2
  145. package/esm/TitleBar/TitleBar.js +9 -45
  146. package/esm/Tooltip/Tooltip.js +8 -24
  147. package/esm/Tree/Node.js +12 -68
  148. package/esm/Tree/Tree.js +3 -1
  149. package/esm/Video/Video.js +31 -94
  150. package/esm/Video/buttons/Fullscreen.js +20 -0
  151. package/esm/Video/buttons/index.js +2 -1
  152. package/esm/index.js +2 -1
  153. package/package.json +4 -4
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
 
3
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
4
 
5
5
  Object.defineProperty(exports, "__esModule", {
6
6
  value: true
@@ -15,9 +15,13 @@ var _system = require("@xstyled/system");
15
15
 
16
16
  var _radioButtonStates = require("./radioButtonStates");
17
17
 
18
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
18
+ var _excluded = ["children", "disabled"];
19
19
 
20
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (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; }
20
+ var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5;
21
+
22
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
23
+
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; }
21
25
 
22
26
  function _extends() { _extends = Object.assign || 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
27
 
@@ -25,75 +29,25 @@ function _objectWithoutProperties(source, excluded) { if (source == null) return
25
29
 
26
30
  function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
27
31
 
28
- function _templateObject5() {
29
- var data = _taggedTemplateLiteral(["\n color: ", ";\n text-shadow: 0.5px 0.5px ", ";\n "]);
30
-
31
- _templateObject5 = function _templateObject5() {
32
- return data;
33
- };
34
-
35
- return data;
36
- }
37
-
38
- function _templateObject4() {
39
- var data = _taggedTemplateLiteral(["\n position: relative;\n margin-bottom: 10;\n display: block;\n\n ", "\n"]);
40
-
41
- _templateObject4 = function _templateObject4() {
42
- return data;
43
- };
44
-
45
- return data;
46
- }
47
-
48
- function _templateObject3() {
49
- var data = _taggedTemplateLiteral(["\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"]);
50
-
51
- _templateObject3 = function _templateObject3() {
52
- return data;
53
- };
54
-
55
- return data;
56
- }
57
-
58
- function _templateObject2() {
59
- var data = _taggedTemplateLiteral(["\n padding: 1;\n user-select: none;\n\n position: absolute;\n top: 0;\n left: 18px;\n"]);
60
-
61
- _templateObject2 = function _templateObject2() {
62
- return data;
63
- };
64
-
65
- return data;
66
- }
67
-
68
- function _templateObject() {
69
- var data = _taggedTemplateLiteral(["\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"]);
70
-
71
- _templateObject = function _templateObject() {
72
- return data;
73
- };
74
-
75
- return data;
76
- }
77
-
78
32
  function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
79
33
 
80
- var Icon = _styledComponents["default"].span(_templateObject(), _radioButtonStates.radioUnchecked);
34
+ var Icon = _styledComponents["default"].span(_templateObject || (_templateObject = _taggedTemplateLiteral(["\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);
81
35
 
82
- var Text = _styledComponents["default"].span(_templateObject2());
36
+ var Text = _styledComponents["default"].span(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n padding: 1;\n user-select: none;\n\n position: absolute;\n top: 0;\n left: 18px;\n"])));
83
37
 
84
38
  var Field = _styledComponents["default"].input.attrs({
85
39
  type: 'radio'
86
- })(_templateObject3(), Text, Text, Icon, _radioButtonStates.radioChecked, Icon, _radioButtonStates.radioUncheckedDisabled, Icon, _radioButtonStates.radioCheckedDisabled);
40
+ })(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\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);
87
41
 
88
- var Label = _styledComponents["default"].label(_templateObject4(), function (_ref) {
42
+ var Label = _styledComponents["default"].label(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["\n position: relative;\n margin-bottom: 10;\n display: block;\n\n ", "\n"])), function (_ref) {
89
43
  var disabled = _ref.disabled;
90
- return disabled && (0, _styledComponents.css)(_templateObject5(), (0, _system.th)('colors.materialTextDisabled'), (0, _system.th)('colors.materialTextDisabledShadow'));
44
+ return disabled && (0, _styledComponents.css)(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["\n color: ", ";\n text-shadow: 0.5px 0.5px ", ";\n "])), (0, _system.th)('colors.materialTextDisabled'), (0, _system.th)('colors.materialTextDisabledShadow'));
91
45
  });
92
46
 
93
47
  var RadioButton = /*#__PURE__*/(0, _react.forwardRef)(function (_ref2, ref) {
94
48
  var children = _ref2.children,
95
49
  disabled = _ref2.disabled,
96
- props = _objectWithoutProperties(_ref2, ["children", "disabled"]);
50
+ props = _objectWithoutProperties(_ref2, _excluded);
97
51
 
98
52
  return /*#__PURE__*/_react["default"].createElement(Label, {
99
53
  disabled: disabled
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
 
3
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
4
 
5
5
  Object.defineProperty(exports, "__esModule", {
6
6
  value: true
@@ -11,48 +11,20 @@ var _styledComponents = _interopRequireWildcard(require("@xstyled/styled-compone
11
11
 
12
12
  var _system = require("@xstyled/system");
13
13
 
14
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
14
+ var _templateObject, _templateObject2, _templateObject3;
15
15
 
16
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (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; }
16
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
17
17
 
18
- function _templateObject3() {
19
- var data = _taggedTemplateLiteral(["\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: ", ";\n }\n\n &::-moz-range-track {\n ", "\n }\n\n &::-moz-range-thumb {\n ", "\n }\n"]);
20
-
21
- _templateObject3 = function _templateObject3() {
22
- return data;
23
- };
24
-
25
- return data;
26
- }
27
-
28
- function _templateObject2() {
29
- var data = _taggedTemplateLiteral(["\n width: 12px;\n height: 20px;\n\n background-color: material;\n\n cursor: pointer;\n\n margin-top: -", "px;\n\n border-top: 1;\n border-top-color: ", ";\n border-right: 1;\n border-right-color: ", ";\n border-bottom: 1;\n border-bottom-color: ", ";\n border-left: 1;\n border-left-color: ", ";\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"]);
30
-
31
- _templateObject2 = function _templateObject2() {
32
- return data;
33
- };
34
-
35
- return data;
36
- }
37
-
38
- function _templateObject() {
39
- var data = _taggedTemplateLiteral(["\n width: 100%;\n height: 4px;\n\n background: ", ";\n\n cursor: pointer;\n\n border-top: 1;\n border-top-color: borderLight;\n border-right: 2;\n border-right-color: ", ";\n border-bottom: 1;\n border-bottom-color: borderLighter;\n border-left: 2;\n border-left-color: ", ";\n\n box-shadow: 0px 1px 0px 0px ", ";\n"]);
40
-
41
- _templateObject = function _templateObject() {
42
- return data;
43
- };
44
-
45
- return data;
46
- }
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; }
47
19
 
48
20
  function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
49
21
 
50
- var trackStyle = (0, _styledComponents.css)(_templateObject(), (0, _system.th)('colors.borderDarkest'), (0, _system.th)('colors.borderLightest'), (0, _system.th)('colors.borderLightest'), (0, _system.th)('colors.borderLightest'));
51
- var thumbStyle = (0, _styledComponents.css)(_templateObject2(), (0, _system.th)('space.8'), (0, _system.th)('colors.borderLightest'), (0, _system.th)('colors.borderDarkest'), (0, _system.th)('colors.borderDarkest'), (0, _system.th)('colors.borderLightest'), (0, _system.th)('colors.borderDark'), (0, _system.th)('colors.borderDark'), (0, _system.th)('colors.borderLighter'), (0, _system.th)('colors.borderLighter'));
22
+ var trackStyle = (0, _styledComponents.css)(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n width: 100%;\n height: 4px;\n\n background: ", ";\n\n cursor: pointer;\n\n border-top: 1;\n border-top-color: borderLight;\n border-right: 2;\n border-right-color: ", ";\n border-bottom: 1;\n border-bottom-color: borderLighter;\n border-left: 2;\n border-left-color: ", ";\n\n box-shadow: 0px 1px 0px 0px ", ";\n"])), (0, _system.th)('colors.borderDarkest'), (0, _system.th)('colors.borderLightest'), (0, _system.th)('colors.borderLightest'), (0, _system.th)('colors.borderLightest'));
23
+ var thumbStyle = (0, _styledComponents.css)(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n width: 12px;\n height: 20px;\n\n background-color: material;\n\n cursor: pointer;\n\n margin-top: -", "px;\n\n border-top: 1;\n border-top-color: ", ";\n border-right: 1;\n border-right-color: ", ";\n border-bottom: 1;\n border-bottom-color: ", ";\n border-left: 1;\n border-left-color: ", ";\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, _system.th)('space.8'), (0, _system.th)('colors.borderLightest'), (0, _system.th)('colors.borderDarkest'), (0, _system.th)('colors.borderDarkest'), (0, _system.th)('colors.borderLightest'), (0, _system.th)('colors.borderDark'), (0, _system.th)('colors.borderDark'), (0, _system.th)('colors.borderLighter'), (0, _system.th)('colors.borderLighter'));
52
24
 
53
25
  var Range = _styledComponents["default"].input.attrs({
54
26
  type: 'range'
55
- })(_templateObject3(), trackStyle, thumbStyle, (0, _system.th)('colors.borderDarkest'), trackStyle, thumbStyle);
27
+ })(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\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: ", ";\n }\n\n &::-moz-range-track {\n ", "\n }\n\n &::-moz-range-thumb {\n ", "\n }\n"])), trackStyle, thumbStyle, (0, _system.th)('colors.borderDarkest'), trackStyle, thumbStyle);
56
28
 
57
29
  var _default = Range;
58
30
  exports["default"] = _default;
package/cjs/Tabs/Tab.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
 
3
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
4
 
5
5
  Object.defineProperty(exports, "__esModule", {
6
6
  value: true
@@ -13,9 +13,13 @@ var _styledComponents = _interopRequireWildcard(require("@xstyled/styled-compone
13
13
 
14
14
  var _system = require("@xstyled/system");
15
15
 
16
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
16
+ var _excluded = ["activeTab", "title"];
17
17
 
18
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (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; }
18
+ var _templateObject, _templateObject2;
19
+
20
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
21
+
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; }
19
23
 
20
24
  function _extends() { _extends = Object.assign || 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
25
 
@@ -23,37 +27,17 @@ function _objectWithoutProperties(source, excluded) { if (source == null) return
23
27
 
24
28
  function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
25
29
 
26
- function _templateObject2() {
27
- var data = _taggedTemplateLiteral(["\n margin-top: -", "px;\n margin-left: -", "px;\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 "]);
28
-
29
- _templateObject2 = function _templateObject2() {
30
- return data;
31
- };
32
-
33
- return data;
34
- }
35
-
36
- function _templateObject() {
37
- var data = _taggedTemplateLiteral(["\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"]);
38
-
39
- _templateObject = function _templateObject() {
40
- return data;
41
- };
42
-
43
- return data;
44
- }
45
-
46
30
  function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
47
31
 
48
- var NavItem = _styledComponents["default"].li(_templateObject(), (0, _system.th)('colors.borderLightest'), (0, _system.th)('colors.material'), (0, _system.th)('colors.borderLightest'), (0, _system.th)('colors.borderLightest'), (0, _system.th)('colors.borderDark'), (0, _system.th)('colors.borderDarkest'), (0, _system.th)('colors.borderDarkest'), function (_ref) {
32
+ var NavItem = _styledComponents["default"].li(_templateObject || (_templateObject = _taggedTemplateLiteral(["\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, _system.th)('colors.borderLightest'), (0, _system.th)('colors.material'), (0, _system.th)('colors.borderLightest'), (0, _system.th)('colors.borderLightest'), (0, _system.th)('colors.borderDark'), (0, _system.th)('colors.borderDarkest'), (0, _system.th)('colors.borderDarkest'), function (_ref) {
49
33
  var active = _ref.active;
50
- return active && (0, _styledComponents.css)(_templateObject2(), (0, _system.th)('space.2'), (0, _system.th)('space.2'), (0, _system.th)('colors.borderLightest'), (0, _system.th)('colors.material'), (0, _system.th)('colors.material'), (0, _system.th)('colors.borderLightest'), (0, _system.th)('colors.borderLightest'), (0, _system.th)('colors.borderDark'), (0, _system.th)('colors.borderDarkest'), (0, _system.th)('colors.borderDarkest'), (0, _system.th)('colors.borderLightest'), (0, _system.th)('colors.borderDark'), (0, _system.th)('colors.borderDarkest'), (0, _system.th)('colors.borderDarkest'));
34
+ return active && (0, _styledComponents.css)(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n margin-top: -", "px;\n margin-left: -", "px;\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, _system.th)('space.2'), (0, _system.th)('space.2'), (0, _system.th)('colors.borderLightest'), (0, _system.th)('colors.material'), (0, _system.th)('colors.material'), (0, _system.th)('colors.borderLightest'), (0, _system.th)('colors.borderLightest'), (0, _system.th)('colors.borderDark'), (0, _system.th)('colors.borderDarkest'), (0, _system.th)('colors.borderDarkest'), (0, _system.th)('colors.borderLightest'), (0, _system.th)('colors.borderDark'), (0, _system.th)('colors.borderDarkest'), (0, _system.th)('colors.borderDarkest'));
51
35
  });
52
36
 
53
37
  var Tab = /*#__PURE__*/(0, _react.forwardRef)(function (_ref2, ref) {
54
38
  var activeTab = _ref2.activeTab,
55
39
  title = _ref2.title,
56
- rest = _objectWithoutProperties(_ref2, ["activeTab", "title"]);
40
+ rest = _objectWithoutProperties(_ref2, _excluded);
57
41
 
58
42
  return /*#__PURE__*/_react["default"].createElement(NavItem, _extends({}, rest, {
59
43
  active: activeTab === title,
package/cjs/Tabs/Tabs.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
 
3
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
4
 
5
5
  Object.defineProperty(exports, "__esModule", {
6
6
  value: true
@@ -15,11 +15,15 @@ var _Tab = _interopRequireDefault(require("./Tab"));
15
15
 
16
16
  var _Frame = _interopRequireDefault(require("../Frame"));
17
17
 
18
+ var _excluded = ["children", "style", "defaultActiveTab", "onChange"];
19
+
20
+ var _templateObject, _templateObject2;
21
+
18
22
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
19
23
 
20
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
24
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
21
25
 
22
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (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; }
26
+ 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
27
 
24
28
  function _extends() { _extends = Object.assign || 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
29
 
@@ -31,7 +35,7 @@ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o =
31
35
 
32
36
  function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
33
37
 
34
- function _iterableToArrayLimit(arr, i) { if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
38
+ function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
35
39
 
36
40
  function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
37
41
 
@@ -39,37 +43,17 @@ function _objectWithoutProperties(source, excluded) { if (source == null) return
39
43
 
40
44
  function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
41
45
 
42
- function _templateObject2() {
43
- var data = _taggedTemplateLiteral(["\n padding: 12;\n box-shadow: out;\n"]);
44
-
45
- _templateObject2 = function _templateObject2() {
46
- return data;
47
- };
48
-
49
- return data;
50
- }
51
-
52
- function _templateObject() {
53
- var data = _taggedTemplateLiteral(["\n display: flex;\n padding: 0;\n margin: 0;\n border: none;\n box-shadow: none;\n background-color: unset;\n"]);
54
-
55
- _templateObject = function _templateObject() {
56
- return data;
57
- };
58
-
59
- return data;
60
- }
61
-
62
46
  function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
63
47
 
64
- var Navbar = (0, _styledComponents["default"])(_Frame["default"])(_templateObject());
65
- var NavContainer = (0, _styledComponents["default"])(_Frame["default"])(_templateObject2());
48
+ var Navbar = (0, _styledComponents["default"])(_Frame["default"])(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n display: flex;\n padding: 0;\n margin: 0;\n border: none;\n box-shadow: none;\n background-color: unset;\n"])));
49
+ var NavContainer = (0, _styledComponents["default"])(_Frame["default"])(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n padding: 12;\n box-shadow: out;\n"])));
66
50
  NavContainer.displayName = 'NavContainer';
67
51
  var Tabs = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) {
68
52
  var children = _ref.children,
69
53
  style = _ref.style,
70
54
  defaultActiveTab = _ref.defaultActiveTab,
71
55
  onChange = _ref.onChange,
72
- rest = _objectWithoutProperties(_ref, ["children", "style", "defaultActiveTab", "onChange"]);
56
+ rest = _objectWithoutProperties(_ref, _excluded);
73
57
 
74
58
  var _ref2 = _react["default"].Children.toArray(children),
75
59
  _ref3 = _slicedToArray(_ref2, 1),
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
 
3
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
4
 
5
5
  Object.defineProperty(exports, "__esModule", {
6
6
  value: true
@@ -15,11 +15,13 @@ var _Frame = _interopRequireDefault(require("../Frame"));
15
15
 
16
16
  var _Tooltip = _interopRequireDefault(require("../Tooltip"));
17
17
 
18
+ var _templateObject;
19
+
18
20
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
19
21
 
20
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
22
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
21
23
 
22
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (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; }
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; }
23
25
 
24
26
  function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
25
27
 
@@ -29,23 +31,13 @@ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o =
29
31
 
30
32
  function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
31
33
 
32
- function _iterableToArrayLimit(arr, i) { if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
34
+ function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
33
35
 
34
36
  function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
35
37
 
36
- function _templateObject() {
37
- var data = _taggedTemplateLiteral(["\n div:first-child {\n right: 0;\n }\n"]);
38
-
39
- _templateObject = function _templateObject() {
40
- return data;
41
- };
42
-
43
- return data;
44
- }
45
-
46
38
  function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
47
39
 
48
- var StyledTooltip = (0, _styledComponents["default"])(_Tooltip["default"])(_templateObject());
40
+ var StyledTooltip = (0, _styledComponents["default"])(_Tooltip["default"])(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n div:first-child {\n right: 0;\n }\n"])));
49
41
 
50
42
  var Clock = function Clock() {
51
43
  var _useState = (0, _react.useState)(''),
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
 
3
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
4
 
5
5
  Object.defineProperty(exports, "__esModule", {
6
6
  value: true
@@ -21,11 +21,13 @@ var _WindowButton = _interopRequireDefault(require("./WindowButton"));
21
21
 
22
22
  var _icons = require("@react95/icons");
23
23
 
24
+ var _templateObject;
25
+
24
26
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
25
27
 
26
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
28
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
27
29
 
28
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (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; }
30
+ 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
31
 
30
32
  function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
31
33
 
@@ -35,23 +37,13 @@ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o =
35
37
 
36
38
  function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
37
39
 
38
- function _iterableToArrayLimit(arr, i) { if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
40
+ function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
39
41
 
40
42
  function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
41
43
 
42
- function _templateObject() {
43
- var data = _taggedTemplateLiteral(["\n overflow: hidden;\n display: -webkit-box;\n -webkit-line-clamp: 1;\n -webkit-box-orient: vertical;\n text-align: left;\n"]);
44
-
45
- _templateObject = function _templateObject() {
46
- return data;
47
- };
48
-
49
- return data;
50
- }
51
-
52
44
  function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
53
45
 
54
- var Truncate = _styledComponents["default"].span(_templateObject());
46
+ var Truncate = _styledComponents["default"].span(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n overflow: hidden;\n display: -webkit-box;\n -webkit-line-clamp: 1;\n -webkit-box-orient: vertical;\n text-align: left;\n"])));
55
47
 
56
48
  var TaskBar = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) {
57
49
  var list = _ref.list;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
 
3
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
4
 
5
5
  Object.defineProperty(exports, "__esModule", {
6
6
  value: true
@@ -17,9 +17,13 @@ var _Frame = _interopRequireDefault(require("../Frame/Frame"));
17
17
 
18
18
  var _icons = require("@react95/icons");
19
19
 
20
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
20
+ var _excluded = ["children", "small", "icon", "active"];
21
21
 
22
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (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; }
22
+ var _templateObject, _templateObject2, _templateObject3;
23
+
24
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
25
+
26
+ 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
27
 
24
28
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
25
29
 
@@ -29,48 +33,18 @@ function _objectWithoutProperties(source, excluded) { if (source == null) return
29
33
 
30
34
  function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
31
35
 
32
- function _templateObject3() {
33
- var data = _taggedTemplateLiteral(["\n img {\n margin-right: 4;\n min-width: 20;\n width: 20;\n height: 20;\n }\n"]);
34
-
35
- _templateObject3 = function _templateObject3() {
36
- return data;
37
- };
38
-
39
- return data;
40
- }
41
-
42
- function _templateObject2() {
43
- var data = _taggedTemplateLiteral(["\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 "]);
44
-
45
- _templateObject2 = function _templateObject2() {
46
- return data;
47
- };
48
-
49
- return data;
50
- }
51
-
52
- function _templateObject() {
53
- var data = _taggedTemplateLiteral(["\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"]);
54
-
55
- _templateObject = function _templateObject() {
56
- return data;
57
- };
58
-
59
- return data;
60
- }
61
-
62
36
  function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
63
37
 
64
- var Button = (0, _styledComponents["default"])(_Frame["default"])(_templateObject(), function (_ref) {
38
+ var Button = (0, _styledComponents["default"])(_Frame["default"])(_templateObject || (_templateObject = _taggedTemplateLiteral(["\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) {
65
39
  var small = _ref.small;
66
40
  return !small ? "\n width: 100%;\n " : '';
67
41
  }, function (_ref2) {
68
42
  var active = _ref2.active,
69
43
  small = _ref2.small;
70
- return active && small ? (0, _styledComponents.css)(_templateObject2(), (0, _system.th)('space.1'), (0, _system.th)('colors.borderDarkest'), (0, _system.th)('space.4')) : '';
44
+ return active && small ? (0, _styledComponents.css)(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\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, _system.th)('space.1'), (0, _system.th)('colors.borderDarkest'), (0, _system.th)('space.4')) : '';
71
45
  });
72
46
 
73
- var IconWrapper = _styledComponents["default"].div(_templateObject3());
47
+ var IconWrapper = _styledComponents["default"].div(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n img {\n margin-right: 4;\n min-width: 20;\n width: 20;\n height: 20;\n }\n"])));
74
48
 
75
49
  var WindowButton = function WindowButton(_ref3) {
76
50
  var _ref3$children = _ref3.children,
@@ -78,7 +52,7 @@ var WindowButton = function WindowButton(_ref3) {
78
52
  small = _ref3.small,
79
53
  icon = _ref3.icon,
80
54
  active = _ref3.active,
81
- props = _objectWithoutProperties(_ref3, ["children", "small", "icon", "active"]);
55
+ props = _objectWithoutProperties(_ref3, _excluded);
82
56
 
83
57
  return /*#__PURE__*/_react["default"].createElement(Button, _extends({
84
58
  active: active,
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
 
3
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
3
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
4
 
5
5
  Object.defineProperty(exports, "__esModule", {
6
6
  value: true
@@ -13,27 +13,19 @@ var _styledComponents = _interopRequireDefault(require("@xstyled/styled-componen
13
13
 
14
14
  var _styledSystem = require("styled-system");
15
15
 
16
+ var _templateObject;
17
+
16
18
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
17
19
 
18
- function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
20
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
19
21
 
20
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (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; }
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; }
21
23
 
22
24
  function _extends() { _extends = Object.assign || 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
25
 
24
- function _templateObject() {
25
- var data = _taggedTemplateLiteral(["\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-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 ", "\n ", "\n ", "\n"]);
26
-
27
- _templateObject = function _templateObject() {
28
- return data;
29
- };
30
-
31
- return data;
32
- }
33
-
34
26
  function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
35
27
 
36
- var TextAreaComponent = _styledComponents["default"].textarea(_templateObject(), _styledSystem.padding, _styledSystem.borders, _styledSystem.shadow);
28
+ var TextAreaComponent = _styledComponents["default"].textarea(_templateObject || (_templateObject = _taggedTemplateLiteral(["\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-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 ", "\n ", "\n ", "\n"])), _styledSystem.padding, _styledSystem.borders, _styledSystem.shadow);
37
29
 
38
30
  var TextArea = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
39
31
  return /*#__PURE__*/_react["default"].createElement(TextAreaComponent, _extends({}, props, {