sag_components 2.0.0-beta14 → 2.0.0-beta15
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
CHANGED
|
@@ -14247,13 +14247,16 @@ const Td = dt.td`
|
|
|
14247
14247
|
`;
|
|
14248
14248
|
const Tr = dt.tr`
|
|
14249
14249
|
border-bottom: 1px solid #f3f4f6;
|
|
14250
|
-
${
|
|
14251
|
-
|
|
14252
|
-
|
|
14253
|
-
|
|
14250
|
+
${_ref => {
|
|
14251
|
+
let {
|
|
14252
|
+
enableHover,
|
|
14253
|
+
selectHoverColor
|
|
14254
|
+
} = _ref;
|
|
14255
|
+
return enableHover && `&:hover {
|
|
14254
14256
|
background-color: ${selectHoverColor};
|
|
14255
14257
|
cursor: pointer;
|
|
14256
|
-
}
|
|
14258
|
+
}`;
|
|
14259
|
+
}}
|
|
14257
14260
|
`;
|
|
14258
14261
|
const InfoText = dt.div`
|
|
14259
14262
|
font-weight: 400;
|
|
@@ -27358,46 +27361,6 @@ const OneColumnContainer = props => {
|
|
|
27358
27361
|
containerClassName: "avatar-skeleton"
|
|
27359
27362
|
})))));
|
|
27360
27363
|
};
|
|
27361
|
-
OneColumnContainer.propTypes = {
|
|
27362
|
-
children: PropTypes.string,
|
|
27363
|
-
display: PropTypes.string,
|
|
27364
|
-
isLoading: PropTypes.bool,
|
|
27365
|
-
gridTemplateColumns: PropTypes.string,
|
|
27366
|
-
itemClass: PropTypes.string,
|
|
27367
|
-
divStyle: PropTypes.string,
|
|
27368
|
-
overStyle: PropTypes.string,
|
|
27369
|
-
draggingStyle: PropTypes.string,
|
|
27370
|
-
droppedStyle: PropTypes.string,
|
|
27371
|
-
width: PropTypes.string,
|
|
27372
|
-
height: PropTypes.string,
|
|
27373
|
-
overflow: PropTypes.string,
|
|
27374
|
-
infoTitle: PropTypes.string,
|
|
27375
|
-
infoText: PropTypes.string,
|
|
27376
|
-
disableInfo: PropTypes.bool,
|
|
27377
|
-
showViewByBannerButton: PropTypes.bool,
|
|
27378
|
-
onBannerClick: PropTypes.func,
|
|
27379
|
-
columnTitle: PropTypes.string
|
|
27380
|
-
};
|
|
27381
|
-
OneColumnContainer.defaultProps = {
|
|
27382
|
-
children: '',
|
|
27383
|
-
display: 'block',
|
|
27384
|
-
isLoading: '',
|
|
27385
|
-
gridTemplateColumns: '',
|
|
27386
|
-
itemClass: '',
|
|
27387
|
-
divStyle: '',
|
|
27388
|
-
overStyle: '',
|
|
27389
|
-
draggingStyle: '',
|
|
27390
|
-
droppedStyle: '',
|
|
27391
|
-
width: '300px',
|
|
27392
|
-
height: '300px',
|
|
27393
|
-
overflow: 'hidden',
|
|
27394
|
-
infoTitle: '',
|
|
27395
|
-
infoText: '',
|
|
27396
|
-
disableInfo: false,
|
|
27397
|
-
showViewByBannerButton: false,
|
|
27398
|
-
onBannerClick: () => {},
|
|
27399
|
-
columnTitle: ''
|
|
27400
|
-
};
|
|
27401
27364
|
|
|
27402
27365
|
const scrollableStyles$3 = `
|
|
27403
27366
|
overflow-y: auto;
|