sag_components 2.0.0-beta188 → 2.0.0-beta189

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
@@ -10589,24 +10589,23 @@ const QuarterPopupPicker = ({
10589
10589
  };
10590
10590
 
10591
10591
  /* eslint-disable import/no-extraneous-dependencies */
10592
- const QuarterPicker = _ref => {
10593
- let {
10594
- availableQuarters,
10595
- // ["Q1-2024"]
10596
- label,
10597
- onChange,
10598
- borderRadius,
10599
- required,
10600
- width,
10601
- height,
10602
- placeholder,
10603
- disabled,
10604
- borderColor,
10605
- borderColorFocus,
10606
- textColor,
10607
- selectedValue,
10608
- startYear
10609
- } = _ref;
10592
+ const QuarterPicker = ({
10593
+ availableQuarters,
10594
+ // ["Q1-2024"]
10595
+ label,
10596
+ onChange,
10597
+ borderRadius,
10598
+ required,
10599
+ width,
10600
+ height,
10601
+ placeholder,
10602
+ disabled,
10603
+ borderColor,
10604
+ borderColorFocus,
10605
+ textColor,
10606
+ selectedValue,
10607
+ startYear
10608
+ }) => {
10610
10609
  const [isFocused, setIsFocused] = React$1.useState(false);
10611
10610
  const [isOpen, setIsOpen] = React$1.useState(false);
10612
10611
  const [value, setValue] = React$1.useState('');
@@ -11048,23 +11047,22 @@ const MonthPopupPicker = ({
11048
11047
  };
11049
11048
 
11050
11049
  /* eslint-disable import/no-extraneous-dependencies */
11051
- const MonthPicker = _ref => {
11052
- let {
11053
- availableMonths,
11054
- label,
11055
- onChange,
11056
- borderRadius,
11057
- required,
11058
- width,
11059
- height,
11060
- placeholder,
11061
- disabled,
11062
- borderColor,
11063
- borderColorFocus,
11064
- textColor,
11065
- selectedValue,
11066
- startYear
11067
- } = _ref;
11050
+ const MonthPicker = ({
11051
+ availableMonths,
11052
+ label,
11053
+ onChange,
11054
+ borderRadius,
11055
+ required,
11056
+ width,
11057
+ height,
11058
+ placeholder,
11059
+ disabled,
11060
+ borderColor,
11061
+ borderColorFocus,
11062
+ textColor,
11063
+ selectedValue,
11064
+ startYear
11065
+ }) => {
11068
11066
  const [isFocused, setIsFocused] = React$1.useState(false);
11069
11067
  const [isOpen, setIsOpen] = React$1.useState(false);
11070
11068
  const [value, setValue] = React$1.useState('');
@@ -24175,22 +24173,21 @@ const DeleteIcon = styled__default["default"].div`
24175
24173
  position: absolute;
24176
24174
  `;
24177
24175
 
24178
- const QuickFilterDropdownSingle = _ref => {
24179
- let {
24180
- label,
24181
- hoverColor,
24182
- options,
24183
- selectedValue,
24184
- placeHolder,
24185
- onChange,
24186
- disabled,
24187
- width,
24188
- error,
24189
- errorMessage,
24190
- xIconShow,
24191
- labelColor,
24192
- showLabelOnTop
24193
- } = _ref;
24176
+ const QuickFilterDropdownSingle = ({
24177
+ label,
24178
+ hoverColor,
24179
+ options,
24180
+ selectedValue,
24181
+ placeHolder,
24182
+ onChange,
24183
+ disabled,
24184
+ width,
24185
+ error,
24186
+ errorMessage,
24187
+ xIconShow,
24188
+ labelColor,
24189
+ showLabelOnTop
24190
+ }) => {
24194
24191
  const [isFocused, setIsFocused] = React$1.useState(false);
24195
24192
  const [showOptions, setShowOptions] = React$1.useState(false);
24196
24193
  const [inputValue, setInputValue] = React$1.useState("");
@@ -24587,24 +24584,23 @@ const IconContainer$2 = styled__default["default"].div`
24587
24584
  cursor: pointer;
24588
24585
  `;
24589
24586
 
24590
- const QuickFilterDropdownMultiSelection = _ref => {
24591
- let {
24592
- label,
24593
- labelEmptyValue,
24594
- options,
24595
- selectedValue,
24596
- placeHolder,
24597
- onChange,
24598
- required,
24599
- disabled,
24600
- width,
24601
- error,
24602
- errorMessage,
24603
- labelColor,
24604
- xIconShow,
24605
- checkBoxColor,
24606
- showLabelOnTop
24607
- } = _ref;
24587
+ const QuickFilterDropdownMultiSelection = ({
24588
+ label,
24589
+ labelEmptyValue,
24590
+ options,
24591
+ selectedValue,
24592
+ placeHolder,
24593
+ onChange,
24594
+ required,
24595
+ disabled,
24596
+ width,
24597
+ error,
24598
+ errorMessage,
24599
+ labelColor,
24600
+ xIconShow,
24601
+ checkBoxColor,
24602
+ showLabelOnTop
24603
+ }) => {
24608
24604
  const [isFocused, setIsFocused] = React$1.useState(false);
24609
24605
  const [showOptions, setShowOptions] = React$1.useState(false);
24610
24606
  const [inputValue, setInputValue] = React$1.useState('');
@@ -39752,11 +39748,11 @@ const ChromeShimmerText = ({
39752
39748
  transition: 'all 0.3s ease'
39753
39749
  };
39754
39750
  if (!isShimmering) {
39755
- return /*#__PURE__*/React.createElement("span", null, text);
39751
+ return /*#__PURE__*/React__default["default"].createElement("span", null, text);
39756
39752
  }
39757
- return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("span", {
39753
+ return /*#__PURE__*/React__default["default"].createElement(React__default["default"].Fragment, null, /*#__PURE__*/React__default["default"].createElement("span", {
39758
39754
  style: shimmerStyle
39759
- }, text), /*#__PURE__*/React.createElement("style", {
39755
+ }, text), /*#__PURE__*/React__default["default"].createElement("style", {
39760
39756
  jsx: true
39761
39757
  }, `
39762
39758
  @-webkit-keyframes chromeShine {