sag_components 2.0.0-beta138 → 2.0.0-beta139

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
@@ -8720,24 +8720,25 @@ const IconContainer$5 = styled__default["default"].div`
8720
8720
  cursor: pointer;
8721
8721
  `;
8722
8722
 
8723
- const DropdownSingleNew = ({
8724
- label,
8725
- labelEmptyValue,
8726
- options,
8727
- selectedValue,
8728
- onChange,
8729
- required,
8730
- disabled,
8731
- width,
8732
- withMarginBottom = true,
8733
- error,
8734
- errorMessage,
8735
- xIconShow,
8736
- labelColor,
8737
- showLabelOnTop,
8738
- orderBy,
8739
- elementType
8740
- }) => {
8723
+ const DropdownSingleNew = _ref => {
8724
+ let {
8725
+ label,
8726
+ labelEmptyValue,
8727
+ options,
8728
+ selectedValue,
8729
+ onChange,
8730
+ required,
8731
+ disabled,
8732
+ width,
8733
+ withMarginBottom = true,
8734
+ error,
8735
+ errorMessage,
8736
+ xIconShow,
8737
+ labelColor,
8738
+ showLabelOnTop,
8739
+ orderBy,
8740
+ elementType
8741
+ } = _ref;
8741
8742
  const [isFocused, setIsFocused] = React$1.useState(false);
8742
8743
  const [showOptions, setShowOptions] = React$1.useState(false);
8743
8744
  const [showAbove, setShowAbove] = React$1.useState(false);
@@ -9209,25 +9210,26 @@ const IconContainer$4 = styled__default["default"].div`
9209
9210
  cursor: pointer;
9210
9211
  `;
9211
9212
 
9212
- const DropdownMultiNew = ({
9213
- label,
9214
- labelEmptyValue,
9215
- options,
9216
- selectedValue,
9217
- onChange,
9218
- required,
9219
- disabled,
9220
- width,
9221
- withMarginBottom = true,
9222
- error,
9223
- errorMessage,
9224
- labelColor,
9225
- xIconShow,
9226
- checkBoxColor,
9227
- showLabelOnTop,
9228
- orderBy,
9229
- elementType
9230
- }) => {
9213
+ const DropdownMultiNew = _ref => {
9214
+ let {
9215
+ label,
9216
+ labelEmptyValue,
9217
+ options,
9218
+ selectedValue,
9219
+ onChange,
9220
+ required,
9221
+ disabled,
9222
+ width,
9223
+ withMarginBottom = true,
9224
+ error,
9225
+ errorMessage,
9226
+ labelColor,
9227
+ xIconShow,
9228
+ checkBoxColor,
9229
+ showLabelOnTop,
9230
+ orderBy,
9231
+ elementType
9232
+ } = _ref;
9231
9233
  const [isFocused, setIsFocused] = React$1.useState(false);
9232
9234
  const [showOptions, setShowOptions] = React$1.useState(false);
9233
9235
  const [showAbove, setShowAbove] = React$1.useState(false);
@@ -23913,21 +23915,22 @@ const DeleteIcon = styled__default["default"].div`
23913
23915
  position: absolute;
23914
23916
  `;
23915
23917
 
23916
- const QuickFilterDropdownSingle = ({
23917
- label,
23918
- hoverColor,
23919
- options,
23920
- selectedValue,
23921
- placeHolder,
23922
- onChange,
23923
- disabled,
23924
- width,
23925
- error,
23926
- errorMessage,
23927
- xIconShow,
23928
- labelColor,
23929
- showLabelOnTop
23930
- }) => {
23918
+ const QuickFilterDropdownSingle = _ref => {
23919
+ let {
23920
+ label,
23921
+ hoverColor,
23922
+ options,
23923
+ selectedValue,
23924
+ placeHolder,
23925
+ onChange,
23926
+ disabled,
23927
+ width,
23928
+ error,
23929
+ errorMessage,
23930
+ xIconShow,
23931
+ labelColor,
23932
+ showLabelOnTop
23933
+ } = _ref;
23931
23934
  const [isFocused, setIsFocused] = React$1.useState(false);
23932
23935
  const [showOptions, setShowOptions] = React$1.useState(false);
23933
23936
  const [inputValue, setInputValue] = React$1.useState("");
@@ -24324,23 +24327,24 @@ const IconContainer$2 = styled__default["default"].div`
24324
24327
  cursor: pointer;
24325
24328
  `;
24326
24329
 
24327
- const QuickFilterDropdownMultiSelection = ({
24328
- label,
24329
- labelEmptyValue,
24330
- options,
24331
- selectedValue,
24332
- placeHolder,
24333
- onChange,
24334
- required,
24335
- disabled,
24336
- width,
24337
- error,
24338
- errorMessage,
24339
- labelColor,
24340
- xIconShow,
24341
- checkBoxColor,
24342
- showLabelOnTop
24343
- }) => {
24330
+ const QuickFilterDropdownMultiSelection = _ref => {
24331
+ let {
24332
+ label,
24333
+ labelEmptyValue,
24334
+ options,
24335
+ selectedValue,
24336
+ placeHolder,
24337
+ onChange,
24338
+ required,
24339
+ disabled,
24340
+ width,
24341
+ error,
24342
+ errorMessage,
24343
+ labelColor,
24344
+ xIconShow,
24345
+ checkBoxColor,
24346
+ showLabelOnTop
24347
+ } = _ref;
24344
24348
  const [isFocused, setIsFocused] = React$1.useState(false);
24345
24349
  const [showOptions, setShowOptions] = React$1.useState(false);
24346
24350
  const [inputValue, setInputValue] = React$1.useState('');
@@ -52389,6 +52393,7 @@ const StatusCard = styled__default["default"].div`
52389
52393
  padding: 12px 16px;
52390
52394
  flex-grow: 1;
52391
52395
  flex-basis: 0;
52396
+ box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.10);
52392
52397
  `;
52393
52398
  const CardHeader = styled__default["default"].div`
52394
52399
  display: flex;
@@ -52449,7 +52454,7 @@ const StatusCount = styled__default["default"].span`
52449
52454
  line-height: 1;
52450
52455
  `;
52451
52456
 
52452
- const EventStatusCards = _ref => {
52457
+ const QuickFilterCards = _ref => {
52453
52458
  let {
52454
52459
  data = [],
52455
52460
  onCardToggle = () => {},
@@ -52472,7 +52477,7 @@ const EventStatusCards = _ref => {
52472
52477
  };
52473
52478
  return /*#__PURE__*/React__default["default"].createElement(CardsContainer, {
52474
52479
  width: width,
52475
- className: "EventStatusCardsContainer"
52480
+ className: "QuickFilterCardsContainer"
52476
52481
  }, items.map(_ref2 => {
52477
52482
  let {
52478
52483
  status,
@@ -52528,7 +52533,6 @@ exports.DownloadProgress = DownloadProgress;
52528
52533
  exports.DropdownNew = DropdownNew;
52529
52534
  exports.EventDetailsCard = EventDetailsCard;
52530
52535
  exports.EventList = EventList;
52531
- exports.EventStatusCards = EventStatusCards;
52532
52536
  exports.Execute = Execute;
52533
52537
  exports.FilterPanel = FilterPanel;
52534
52538
  exports.FilterPop = FilterPop;
@@ -52550,6 +52554,7 @@ exports.PerformanceAnalyticsLegend = PerformanceAnalyticsLegend;
52550
52554
  exports.PieChart = PieChart;
52551
52555
  exports.PopupCharts = PopupCharts;
52552
52556
  exports.QuickFilter = QuickFilter;
52557
+ exports.QuickFilterCards = QuickFilterCards;
52553
52558
  exports.RangePicker = RangePicker;
52554
52559
  exports.RangePop = RangePop;
52555
52560
  exports.ReportTable = ReportTable;