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/Table/Table.d.ts
CHANGED
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;
|
|
@@ -11449,7 +11449,8 @@ var Table = function Table(_ref9) {
|
|
|
11449
11449
|
filter = _ref9$filter === void 0 ? false : _ref9$filter,
|
|
11450
11450
|
loading = _ref9.loading,
|
|
11451
11451
|
_ref9$noDataText = _ref9.noDataText,
|
|
11452
|
-
noDataText = _ref9$noDataText === void 0 ? 'No Data Found!' : _ref9$noDataText
|
|
11452
|
+
noDataText = _ref9$noDataText === void 0 ? 'No Data Found!' : _ref9$noDataText,
|
|
11453
|
+
loadingTitle = _ref9.loadingTitle;
|
|
11453
11454
|
var themeColors = useTheme();
|
|
11454
11455
|
var rowconfig = tableObject.rowconfig,
|
|
11455
11456
|
tableheaderconfig = tableObject.tableheaderconfig;
|
|
@@ -11596,7 +11597,7 @@ var Table = function Table(_ref9) {
|
|
|
11596
11597
|
"$justifyContent": 'center',
|
|
11597
11598
|
"$padding": '24px 24px'
|
|
11598
11599
|
}, React__default.createElement(Loader$1, {
|
|
11599
|
-
title:
|
|
11600
|
+
title: loadingTitle
|
|
11600
11601
|
})) : rowconfig.length === 0 ? React__default.createElement(Container, {
|
|
11601
11602
|
"$flexDirection": 'column',
|
|
11602
11603
|
"$alignItems": 'center',
|