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.js
CHANGED
|
@@ -24175,22 +24175,21 @@ const DeleteIcon = styled__default["default"].div`
|
|
|
24175
24175
|
position: absolute;
|
|
24176
24176
|
`;
|
|
24177
24177
|
|
|
24178
|
-
const QuickFilterDropdownSingle =
|
|
24179
|
-
|
|
24180
|
-
|
|
24181
|
-
|
|
24182
|
-
|
|
24183
|
-
|
|
24184
|
-
|
|
24185
|
-
|
|
24186
|
-
|
|
24187
|
-
|
|
24188
|
-
|
|
24189
|
-
|
|
24190
|
-
|
|
24191
|
-
|
|
24192
|
-
|
|
24193
|
-
} = _ref;
|
|
24178
|
+
const QuickFilterDropdownSingle = ({
|
|
24179
|
+
label,
|
|
24180
|
+
hoverColor,
|
|
24181
|
+
options,
|
|
24182
|
+
selectedValue,
|
|
24183
|
+
placeHolder,
|
|
24184
|
+
onChange,
|
|
24185
|
+
disabled,
|
|
24186
|
+
width,
|
|
24187
|
+
error,
|
|
24188
|
+
errorMessage,
|
|
24189
|
+
xIconShow,
|
|
24190
|
+
labelColor,
|
|
24191
|
+
showLabelOnTop
|
|
24192
|
+
}) => {
|
|
24194
24193
|
const [isFocused, setIsFocused] = React$1.useState(false);
|
|
24195
24194
|
const [showOptions, setShowOptions] = React$1.useState(false);
|
|
24196
24195
|
const [inputValue, setInputValue] = React$1.useState("");
|
|
@@ -24647,26 +24646,25 @@ const IconContainer$2 = styled__default["default"].div`
|
|
|
24647
24646
|
cursor: pointer;
|
|
24648
24647
|
`;
|
|
24649
24648
|
|
|
24650
|
-
const QuickFilterDropdownMultiSelection =
|
|
24651
|
-
|
|
24652
|
-
|
|
24653
|
-
|
|
24654
|
-
|
|
24655
|
-
|
|
24656
|
-
|
|
24657
|
-
|
|
24658
|
-
|
|
24659
|
-
|
|
24660
|
-
|
|
24661
|
-
|
|
24662
|
-
|
|
24663
|
-
|
|
24664
|
-
|
|
24665
|
-
|
|
24666
|
-
|
|
24667
|
-
|
|
24668
|
-
|
|
24669
|
-
} = _ref;
|
|
24649
|
+
const QuickFilterDropdownMultiSelection = ({
|
|
24650
|
+
label,
|
|
24651
|
+
labelEmptyValue,
|
|
24652
|
+
options,
|
|
24653
|
+
selectedValue,
|
|
24654
|
+
placeHolder,
|
|
24655
|
+
onChange,
|
|
24656
|
+
required,
|
|
24657
|
+
disabled,
|
|
24658
|
+
width,
|
|
24659
|
+
height,
|
|
24660
|
+
error,
|
|
24661
|
+
errorMessage,
|
|
24662
|
+
labelColor,
|
|
24663
|
+
xIconShow,
|
|
24664
|
+
checkBoxColor,
|
|
24665
|
+
showLabelOnTop,
|
|
24666
|
+
dropdownHeight
|
|
24667
|
+
}) => {
|
|
24670
24668
|
const [isFocused, setIsFocused] = React$1.useState(false);
|
|
24671
24669
|
const [showOptions, setShowOptions] = React$1.useState(false);
|
|
24672
24670
|
const [inputValue, setInputValue] = React$1.useState('');
|
|
@@ -36183,9 +36181,9 @@ const ToggleSlider = styled__default["default"].span`
|
|
|
36183
36181
|
}
|
|
36184
36182
|
`;
|
|
36185
36183
|
|
|
36186
|
-
/**
|
|
36187
|
-
* ToggleSwitch component for on/off states.
|
|
36188
|
-
* Supports small/large sizes and disabled state.
|
|
36184
|
+
/**
|
|
36185
|
+
* ToggleSwitch component for on/off states.
|
|
36186
|
+
* Supports small/large sizes and disabled state.
|
|
36189
36187
|
*/
|
|
36190
36188
|
function ToggleSwitch(_ref) {
|
|
36191
36189
|
let {
|
|
@@ -47074,6 +47072,8 @@ const Table = props => {
|
|
|
47074
47072
|
return /*#__PURE__*/React__default["default"].createElement(NoEvents, null);
|
|
47075
47073
|
case "Upc":
|
|
47076
47074
|
return /*#__PURE__*/React__default["default"].createElement(NoUpcIcon, null);
|
|
47075
|
+
case "Ntt":
|
|
47076
|
+
return /*#__PURE__*/React__default["default"].createElement(NothingToTrackIcon, null);
|
|
47077
47077
|
default:
|
|
47078
47078
|
return null;
|
|
47079
47079
|
}
|