sag_components 2.0.0-beta4 → 2.0.0-beta5
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 +1 -0
- package/dist/index.esm.js +33 -34
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +33 -34
- package/dist/index.js.map +1 -1
- package/dist/types/components/FilterPanel/FilterPanel.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -273,6 +273,7 @@ declare namespace FilterPanel {
|
|
|
273
273
|
label: PropTypes.Requireable<string>;
|
|
274
274
|
labelEmptyValue: PropTypes.Requireable<string>;
|
|
275
275
|
name: PropTypes.Requireable<string>;
|
|
276
|
+
selectedValue: PropTypes.Requireable<string>;
|
|
276
277
|
value: PropTypes.Requireable<number>;
|
|
277
278
|
color: PropTypes.Requireable<string>;
|
|
278
279
|
dropdownOptions: PropTypes.Requireable<(PropTypes.InferProps<{
|
package/dist/index.esm.js
CHANGED
|
@@ -53455,6 +53455,7 @@ FilterPanel.propTypes = {
|
|
|
53455
53455
|
label: PropTypes.string,
|
|
53456
53456
|
labelEmptyValue: PropTypes.string,
|
|
53457
53457
|
name: PropTypes.string,
|
|
53458
|
+
selectedValue: PropTypes.string,
|
|
53458
53459
|
value: PropTypes.number,
|
|
53459
53460
|
color: PropTypes.string,
|
|
53460
53461
|
dropdownOptions: PropTypes.arrayOf(PropTypes.shape({
|
|
@@ -65823,22 +65824,21 @@ const DeleteIcon = dt.div`
|
|
|
65823
65824
|
position: absolute;
|
|
65824
65825
|
`;
|
|
65825
65826
|
|
|
65826
|
-
const QuickFilterDropdownSingle =
|
|
65827
|
-
|
|
65828
|
-
|
|
65829
|
-
|
|
65830
|
-
|
|
65831
|
-
|
|
65832
|
-
|
|
65833
|
-
|
|
65834
|
-
|
|
65835
|
-
|
|
65836
|
-
|
|
65837
|
-
|
|
65838
|
-
|
|
65839
|
-
|
|
65840
|
-
|
|
65841
|
-
} = _ref;
|
|
65827
|
+
const QuickFilterDropdownSingle = ({
|
|
65828
|
+
label,
|
|
65829
|
+
hoverColor,
|
|
65830
|
+
options,
|
|
65831
|
+
selectedValue,
|
|
65832
|
+
placeHolder,
|
|
65833
|
+
onChange,
|
|
65834
|
+
disabled,
|
|
65835
|
+
width,
|
|
65836
|
+
error,
|
|
65837
|
+
errorMessage,
|
|
65838
|
+
xIconShow,
|
|
65839
|
+
labelColor,
|
|
65840
|
+
showLabelOnTop
|
|
65841
|
+
}) => {
|
|
65842
65842
|
const [isFocused, setIsFocused] = useState(false);
|
|
65843
65843
|
const [showOptions, setShowOptions] = useState(false);
|
|
65844
65844
|
const [inputValue, setInputValue] = useState("");
|
|
@@ -66236,24 +66236,23 @@ const IconContainer$1 = dt.div`
|
|
|
66236
66236
|
cursor: pointer;
|
|
66237
66237
|
`;
|
|
66238
66238
|
|
|
66239
|
-
const QuickFilterDropdownMultiSelection =
|
|
66240
|
-
|
|
66241
|
-
|
|
66242
|
-
|
|
66243
|
-
|
|
66244
|
-
|
|
66245
|
-
|
|
66246
|
-
|
|
66247
|
-
|
|
66248
|
-
|
|
66249
|
-
|
|
66250
|
-
|
|
66251
|
-
|
|
66252
|
-
|
|
66253
|
-
|
|
66254
|
-
|
|
66255
|
-
|
|
66256
|
-
} = _ref;
|
|
66239
|
+
const QuickFilterDropdownMultiSelection = ({
|
|
66240
|
+
label,
|
|
66241
|
+
labelEmptyValue,
|
|
66242
|
+
options,
|
|
66243
|
+
selectedValue,
|
|
66244
|
+
placeHolder,
|
|
66245
|
+
onChange,
|
|
66246
|
+
required,
|
|
66247
|
+
disabled,
|
|
66248
|
+
width,
|
|
66249
|
+
error,
|
|
66250
|
+
errorMessage,
|
|
66251
|
+
labelColor,
|
|
66252
|
+
xIconShow,
|
|
66253
|
+
checkBoxColor,
|
|
66254
|
+
showLabelOnTop
|
|
66255
|
+
}) => {
|
|
66257
66256
|
const [isFocused, setIsFocused] = useState(false);
|
|
66258
66257
|
const [showOptions, setShowOptions] = useState(false);
|
|
66259
66258
|
const [inputValue, setInputValue] = useState('');
|