sag_components 2.0.0-beta273 → 2.0.0-beta274
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.esm.js +39 -39
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +39 -39
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -24165,22 +24165,21 @@ const DeleteIcon = styled.div`
|
|
|
24165
24165
|
position: absolute;
|
|
24166
24166
|
`;
|
|
24167
24167
|
|
|
24168
|
-
const QuickFilterDropdownSingle =
|
|
24169
|
-
|
|
24170
|
-
|
|
24171
|
-
|
|
24172
|
-
|
|
24173
|
-
|
|
24174
|
-
|
|
24175
|
-
|
|
24176
|
-
|
|
24177
|
-
|
|
24178
|
-
|
|
24179
|
-
|
|
24180
|
-
|
|
24181
|
-
|
|
24182
|
-
|
|
24183
|
-
} = _ref;
|
|
24168
|
+
const QuickFilterDropdownSingle = ({
|
|
24169
|
+
label,
|
|
24170
|
+
hoverColor,
|
|
24171
|
+
options,
|
|
24172
|
+
selectedValue,
|
|
24173
|
+
placeHolder,
|
|
24174
|
+
onChange,
|
|
24175
|
+
disabled,
|
|
24176
|
+
width,
|
|
24177
|
+
error,
|
|
24178
|
+
errorMessage,
|
|
24179
|
+
xIconShow,
|
|
24180
|
+
labelColor,
|
|
24181
|
+
showLabelOnTop
|
|
24182
|
+
}) => {
|
|
24184
24183
|
const [isFocused, setIsFocused] = useState(false);
|
|
24185
24184
|
const [showOptions, setShowOptions] = useState(false);
|
|
24186
24185
|
const [inputValue, setInputValue] = useState("");
|
|
@@ -24637,26 +24636,25 @@ const IconContainer$2 = styled.div`
|
|
|
24637
24636
|
cursor: pointer;
|
|
24638
24637
|
`;
|
|
24639
24638
|
|
|
24640
|
-
const QuickFilterDropdownMultiSelection =
|
|
24641
|
-
|
|
24642
|
-
|
|
24643
|
-
|
|
24644
|
-
|
|
24645
|
-
|
|
24646
|
-
|
|
24647
|
-
|
|
24648
|
-
|
|
24649
|
-
|
|
24650
|
-
|
|
24651
|
-
|
|
24652
|
-
|
|
24653
|
-
|
|
24654
|
-
|
|
24655
|
-
|
|
24656
|
-
|
|
24657
|
-
|
|
24658
|
-
|
|
24659
|
-
} = _ref;
|
|
24639
|
+
const QuickFilterDropdownMultiSelection = ({
|
|
24640
|
+
label,
|
|
24641
|
+
labelEmptyValue,
|
|
24642
|
+
options,
|
|
24643
|
+
selectedValue,
|
|
24644
|
+
placeHolder,
|
|
24645
|
+
onChange,
|
|
24646
|
+
required,
|
|
24647
|
+
disabled,
|
|
24648
|
+
width,
|
|
24649
|
+
height,
|
|
24650
|
+
error,
|
|
24651
|
+
errorMessage,
|
|
24652
|
+
labelColor,
|
|
24653
|
+
xIconShow,
|
|
24654
|
+
checkBoxColor,
|
|
24655
|
+
showLabelOnTop,
|
|
24656
|
+
dropdownHeight
|
|
24657
|
+
}) => {
|
|
24660
24658
|
const [isFocused, setIsFocused] = useState(false);
|
|
24661
24659
|
const [showOptions, setShowOptions] = useState(false);
|
|
24662
24660
|
const [inputValue, setInputValue] = useState('');
|
|
@@ -36173,9 +36171,9 @@ const ToggleSlider = styled.span`
|
|
|
36173
36171
|
}
|
|
36174
36172
|
`;
|
|
36175
36173
|
|
|
36176
|
-
/**
|
|
36177
|
-
* ToggleSwitch component for on/off states.
|
|
36178
|
-
* Supports small/large sizes and disabled state.
|
|
36174
|
+
/**
|
|
36175
|
+
* ToggleSwitch component for on/off states.
|
|
36176
|
+
* Supports small/large sizes and disabled state.
|
|
36179
36177
|
*/
|
|
36180
36178
|
function ToggleSwitch(_ref) {
|
|
36181
36179
|
let {
|
|
@@ -47064,6 +47062,8 @@ const Table = props => {
|
|
|
47064
47062
|
return /*#__PURE__*/React$1.createElement(NoEvents, null);
|
|
47065
47063
|
case "Upc":
|
|
47066
47064
|
return /*#__PURE__*/React$1.createElement(NoUpcIcon, null);
|
|
47065
|
+
case "Ntt":
|
|
47066
|
+
return /*#__PURE__*/React$1.createElement(NothingToTrackIcon, null);
|
|
47067
47067
|
default:
|
|
47068
47068
|
return null;
|
|
47069
47069
|
}
|