labsense-ui-kit 1.3.84 → 1.3.86
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/Table/Table.d.ts +1 -0
- package/dist/index.js +7 -6
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +7 -6
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -9506,8 +9506,8 @@ var Input = styled.input(_templateObject2$c || (_templateObject2$c = _taggedTemp
|
|
|
9506
9506
|
}, function (_ref9) {
|
|
9507
9507
|
var $color = _ref9.$color,
|
|
9508
9508
|
theme = _ref9.theme,
|
|
9509
|
-
disabled = _ref9
|
|
9510
|
-
if (disabled) return '1px solid transparent';
|
|
9509
|
+
$disabled = _ref9.$disabled;
|
|
9510
|
+
if ($disabled) return '1px solid transparent';
|
|
9511
9511
|
var color;
|
|
9512
9512
|
switch ($color) {
|
|
9513
9513
|
case 'dark':
|
|
@@ -9984,8 +9984,8 @@ var TextAreaComponent = styled.textarea(_templateObject3$9 || (_templateObject3$
|
|
|
9984
9984
|
}, function (_ref10) {
|
|
9985
9985
|
var $color = _ref10.$color,
|
|
9986
9986
|
theme = _ref10.theme,
|
|
9987
|
-
disabled = _ref10
|
|
9988
|
-
return disabled ? undefined : $color || theme.vms.text.dark;
|
|
9987
|
+
$disabled = _ref10.$disabled;
|
|
9988
|
+
return $disabled ? undefined : $color || theme.vms.text.dark;
|
|
9989
9989
|
}, function (_ref11) {
|
|
9990
9990
|
var theme = _ref11.theme;
|
|
9991
9991
|
return theme.vms.text.light;
|
|
@@ -11445,7 +11445,8 @@ var Table = function Table(_ref9) {
|
|
|
11445
11445
|
filter = _ref9$filter === void 0 ? false : _ref9$filter,
|
|
11446
11446
|
loading = _ref9.loading,
|
|
11447
11447
|
_ref9$noDataText = _ref9.noDataText,
|
|
11448
|
-
noDataText = _ref9$noDataText === void 0 ? 'No Data Found!' : _ref9$noDataText
|
|
11448
|
+
noDataText = _ref9$noDataText === void 0 ? 'No Data Found!' : _ref9$noDataText,
|
|
11449
|
+
loadingTitle = _ref9.loadingTitle;
|
|
11449
11450
|
var themeColors = useTheme();
|
|
11450
11451
|
var rowconfig = tableObject.rowconfig,
|
|
11451
11452
|
tableheaderconfig = tableObject.tableheaderconfig;
|
|
@@ -11592,7 +11593,7 @@ var Table = function Table(_ref9) {
|
|
|
11592
11593
|
"$justifyContent": 'center',
|
|
11593
11594
|
"$padding": '24px 24px'
|
|
11594
11595
|
}, React.createElement(Loader$1, {
|
|
11595
|
-
title:
|
|
11596
|
+
title: loadingTitle
|
|
11596
11597
|
})) : rowconfig.length === 0 ? React.createElement(Container, {
|
|
11597
11598
|
"$flexDirection": 'column',
|
|
11598
11599
|
"$alignItems": 'center',
|