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.d.ts CHANGED
@@ -645,67 +645,7 @@ declare function QuickFilter({ hoverColor, multipleSelection, xIconShow, disable
645
645
  selectedValue?: any[] | undefined;
646
646
  }): react_jsx_runtime.JSX.Element;
647
647
 
648
- declare function OneColumnContainer(props: any): react_jsx_runtime.JSX.Element;
649
- declare namespace OneColumnContainer {
650
- namespace propTypes {
651
- const children: PropTypes.Requireable<string>;
652
- const display: PropTypes.Requireable<string>;
653
- const isLoading: PropTypes.Requireable<boolean>;
654
- const gridTemplateColumns: PropTypes.Requireable<string>;
655
- const itemClass: PropTypes.Requireable<string>;
656
- const divStyle: PropTypes.Requireable<string>;
657
- const overStyle: PropTypes.Requireable<string>;
658
- const draggingStyle: PropTypes.Requireable<string>;
659
- const droppedStyle: PropTypes.Requireable<string>;
660
- const width: PropTypes.Requireable<string>;
661
- const height: PropTypes.Requireable<string>;
662
- const overflow: PropTypes.Requireable<string>;
663
- const infoTitle: PropTypes.Requireable<string>;
664
- const infoText: PropTypes.Requireable<string>;
665
- const disableInfo: PropTypes.Requireable<boolean>;
666
- const showViewByBannerButton: PropTypes.Requireable<boolean>;
667
- const onBannerClick: PropTypes.Requireable<(...args: any[]) => any>;
668
- const columnTitle: PropTypes.Requireable<string>;
669
- }
670
- namespace defaultProps {
671
- const children_1: string;
672
- export { children_1 as children };
673
- const display_1: string;
674
- export { display_1 as display };
675
- const isLoading_1: string;
676
- export { isLoading_1 as isLoading };
677
- const gridTemplateColumns_1: string;
678
- export { gridTemplateColumns_1 as gridTemplateColumns };
679
- const itemClass_1: string;
680
- export { itemClass_1 as itemClass };
681
- const divStyle_1: string;
682
- export { divStyle_1 as divStyle };
683
- const overStyle_1: string;
684
- export { overStyle_1 as overStyle };
685
- const draggingStyle_1: string;
686
- export { draggingStyle_1 as draggingStyle };
687
- const droppedStyle_1: string;
688
- export { droppedStyle_1 as droppedStyle };
689
- const width_1: string;
690
- export { width_1 as width };
691
- const height_1: string;
692
- export { height_1 as height };
693
- const overflow_1: string;
694
- export { overflow_1 as overflow };
695
- const infoTitle_1: string;
696
- export { infoTitle_1 as infoTitle };
697
- const infoText_1: string;
698
- export { infoText_1 as infoText };
699
- const disableInfo_1: boolean;
700
- export { disableInfo_1 as disableInfo };
701
- const showViewByBannerButton_1: boolean;
702
- export { showViewByBannerButton_1 as showViewByBannerButton };
703
- export function onBannerClick_1(): void;
704
- export { onBannerClick_1 as onBannerClick };
705
- const columnTitle_1: string;
706
- export { columnTitle_1 as columnTitle };
707
- }
708
- }
648
+ declare function OneColumnContainer(props: any): react_jsx_runtime.JSX.Element;
709
649
 
710
650
  declare function BarChartsByWeeks(props: any): react_jsx_runtime.JSX.Element;
711
651
  declare namespace BarChartsByWeeks {
package/dist/index.esm.js CHANGED
@@ -14238,13 +14238,16 @@ const Td = dt.td`
14238
14238
  `;
14239
14239
  const Tr = dt.tr`
14240
14240
  border-bottom: 1px solid #f3f4f6;
14241
- ${({
14242
- enableHover,
14243
- selectHoverColor
14244
- }) => enableHover && `&:hover {
14241
+ ${_ref => {
14242
+ let {
14243
+ enableHover,
14244
+ selectHoverColor
14245
+ } = _ref;
14246
+ return enableHover && `&:hover {
14245
14247
  background-color: ${selectHoverColor};
14246
14248
  cursor: pointer;
14247
- }`}
14249
+ }`;
14250
+ }}
14248
14251
  `;
14249
14252
  const InfoText = dt.div`
14250
14253
  font-weight: 400;
@@ -27349,46 +27352,6 @@ const OneColumnContainer = props => {
27349
27352
  containerClassName: "avatar-skeleton"
27350
27353
  })))));
27351
27354
  };
27352
- OneColumnContainer.propTypes = {
27353
- children: PropTypes.string,
27354
- display: PropTypes.string,
27355
- isLoading: PropTypes.bool,
27356
- gridTemplateColumns: PropTypes.string,
27357
- itemClass: PropTypes.string,
27358
- divStyle: PropTypes.string,
27359
- overStyle: PropTypes.string,
27360
- draggingStyle: PropTypes.string,
27361
- droppedStyle: PropTypes.string,
27362
- width: PropTypes.string,
27363
- height: PropTypes.string,
27364
- overflow: PropTypes.string,
27365
- infoTitle: PropTypes.string,
27366
- infoText: PropTypes.string,
27367
- disableInfo: PropTypes.bool,
27368
- showViewByBannerButton: PropTypes.bool,
27369
- onBannerClick: PropTypes.func,
27370
- columnTitle: PropTypes.string
27371
- };
27372
- OneColumnContainer.defaultProps = {
27373
- children: '',
27374
- display: 'block',
27375
- isLoading: '',
27376
- gridTemplateColumns: '',
27377
- itemClass: '',
27378
- divStyle: '',
27379
- overStyle: '',
27380
- draggingStyle: '',
27381
- droppedStyle: '',
27382
- width: '300px',
27383
- height: '300px',
27384
- overflow: 'hidden',
27385
- infoTitle: '',
27386
- infoText: '',
27387
- disableInfo: false,
27388
- showViewByBannerButton: false,
27389
- onBannerClick: () => {},
27390
- columnTitle: ''
27391
- };
27392
27355
 
27393
27356
  const scrollableStyles$3 = `
27394
27357
  overflow-y: auto;