labsense-ui-kit 1.3.84 → 1.3.85
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/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +4 -4
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -9510,8 +9510,8 @@ var Input = styled__default.input(_templateObject2$c || (_templateObject2$c = _t
|
|
|
9510
9510
|
}, function (_ref9) {
|
|
9511
9511
|
var $color = _ref9.$color,
|
|
9512
9512
|
theme = _ref9.theme,
|
|
9513
|
-
disabled = _ref9
|
|
9514
|
-
if (disabled) return '1px solid transparent';
|
|
9513
|
+
$disabled = _ref9.$disabled;
|
|
9514
|
+
if ($disabled) return '1px solid transparent';
|
|
9515
9515
|
var color;
|
|
9516
9516
|
switch ($color) {
|
|
9517
9517
|
case 'dark':
|
|
@@ -9988,8 +9988,8 @@ var TextAreaComponent = styled__default.textarea(_templateObject3$9 || (_templat
|
|
|
9988
9988
|
}, function (_ref10) {
|
|
9989
9989
|
var $color = _ref10.$color,
|
|
9990
9990
|
theme = _ref10.theme,
|
|
9991
|
-
disabled = _ref10
|
|
9992
|
-
return disabled ? undefined : $color || theme.vms.text.dark;
|
|
9991
|
+
$disabled = _ref10.$disabled;
|
|
9992
|
+
return $disabled ? undefined : $color || theme.vms.text.dark;
|
|
9993
9993
|
}, function (_ref11) {
|
|
9994
9994
|
var theme = _ref11.theme;
|
|
9995
9995
|
return theme.vms.text.light;
|