sag_components 2.0.0-beta121 → 2.0.0-beta122
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 +42 -36
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +42 -36
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -23897,21 +23897,22 @@ const DeleteIcon = styled.div`
|
|
|
23897
23897
|
position: absolute;
|
|
23898
23898
|
`;
|
|
23899
23899
|
|
|
23900
|
-
const QuickFilterDropdownSingle =
|
|
23901
|
-
|
|
23902
|
-
|
|
23903
|
-
|
|
23904
|
-
|
|
23905
|
-
|
|
23906
|
-
|
|
23907
|
-
|
|
23908
|
-
|
|
23909
|
-
|
|
23910
|
-
|
|
23911
|
-
|
|
23912
|
-
|
|
23913
|
-
|
|
23914
|
-
|
|
23900
|
+
const QuickFilterDropdownSingle = _ref => {
|
|
23901
|
+
let {
|
|
23902
|
+
label,
|
|
23903
|
+
hoverColor,
|
|
23904
|
+
options,
|
|
23905
|
+
selectedValue,
|
|
23906
|
+
placeHolder,
|
|
23907
|
+
onChange,
|
|
23908
|
+
disabled,
|
|
23909
|
+
width,
|
|
23910
|
+
error,
|
|
23911
|
+
errorMessage,
|
|
23912
|
+
xIconShow,
|
|
23913
|
+
labelColor,
|
|
23914
|
+
showLabelOnTop
|
|
23915
|
+
} = _ref;
|
|
23915
23916
|
const [isFocused, setIsFocused] = useState(false);
|
|
23916
23917
|
const [showOptions, setShowOptions] = useState(false);
|
|
23917
23918
|
const [inputValue, setInputValue] = useState("");
|
|
@@ -24308,23 +24309,24 @@ const IconContainer$2 = styled.div`
|
|
|
24308
24309
|
cursor: pointer;
|
|
24309
24310
|
`;
|
|
24310
24311
|
|
|
24311
|
-
const QuickFilterDropdownMultiSelection =
|
|
24312
|
-
|
|
24313
|
-
|
|
24314
|
-
|
|
24315
|
-
|
|
24316
|
-
|
|
24317
|
-
|
|
24318
|
-
|
|
24319
|
-
|
|
24320
|
-
|
|
24321
|
-
|
|
24322
|
-
|
|
24323
|
-
|
|
24324
|
-
|
|
24325
|
-
|
|
24326
|
-
|
|
24327
|
-
|
|
24312
|
+
const QuickFilterDropdownMultiSelection = _ref => {
|
|
24313
|
+
let {
|
|
24314
|
+
label,
|
|
24315
|
+
labelEmptyValue,
|
|
24316
|
+
options,
|
|
24317
|
+
selectedValue,
|
|
24318
|
+
placeHolder,
|
|
24319
|
+
onChange,
|
|
24320
|
+
required,
|
|
24321
|
+
disabled,
|
|
24322
|
+
width,
|
|
24323
|
+
error,
|
|
24324
|
+
errorMessage,
|
|
24325
|
+
labelColor,
|
|
24326
|
+
xIconShow,
|
|
24327
|
+
checkBoxColor,
|
|
24328
|
+
showLabelOnTop
|
|
24329
|
+
} = _ref;
|
|
24328
24330
|
const [isFocused, setIsFocused] = useState(false);
|
|
24329
24331
|
const [showOptions, setShowOptions] = useState(false);
|
|
24330
24332
|
const [inputValue, setInputValue] = useState('');
|
|
@@ -34434,11 +34436,11 @@ const ModalWithOverlay = props => {
|
|
|
34434
34436
|
disabled: disableOkButton,
|
|
34435
34437
|
text: okButtonText,
|
|
34436
34438
|
onClick: onOk,
|
|
34439
|
+
hoverTextColor: "#ffffff",
|
|
34437
34440
|
borderColor: okButtonColor,
|
|
34438
34441
|
backgroundColor: okButtonColor,
|
|
34439
34442
|
hoverBorderColor: okButtonHoverBackgroundColor,
|
|
34440
|
-
hoverBackgroundColor: okButtonHoverBackgroundColor
|
|
34441
|
-
hoverTextColor: "#212121"
|
|
34443
|
+
hoverBackgroundColor: okButtonHoverBackgroundColor
|
|
34442
34444
|
})) : /*#__PURE__*/React$1.createElement(Button$1, {
|
|
34443
34445
|
size: "medium",
|
|
34444
34446
|
type: okButtonType,
|
|
@@ -34447,11 +34449,11 @@ const ModalWithOverlay = props => {
|
|
|
34447
34449
|
disabled: disableOkButton,
|
|
34448
34450
|
text: okButtonText,
|
|
34449
34451
|
onClick: onOk,
|
|
34452
|
+
hoverTextColor: "#ffffff",
|
|
34450
34453
|
borderColor: okButtonColor,
|
|
34451
34454
|
backgroundColor: okButtonColor,
|
|
34452
34455
|
hoverBorderColor: okButtonHoverBackgroundColor,
|
|
34453
|
-
hoverBackgroundColor: okButtonHoverBackgroundColor
|
|
34454
|
-
hoverTextColor: "#212121"
|
|
34456
|
+
hoverBackgroundColor: okButtonHoverBackgroundColor
|
|
34455
34457
|
})))), /*#__PURE__*/React$1.createElement(ModalBody, {
|
|
34456
34458
|
className: "modal-body"
|
|
34457
34459
|
}, children)));
|
|
@@ -41356,6 +41358,8 @@ const Table = props => {
|
|
|
41356
41358
|
leftIcon: "Plus",
|
|
41357
41359
|
text: "New Event",
|
|
41358
41360
|
borderRadius: "12px",
|
|
41361
|
+
borderColor: sideButtonColor,
|
|
41362
|
+
hoverBorderColor: sideButtonHoverColor,
|
|
41359
41363
|
backgroundColor: sideButtonColor,
|
|
41360
41364
|
hoverBackgroundColor: sideButtonHoverColor,
|
|
41361
41365
|
onClick: onSideButtonClick
|
|
@@ -41382,6 +41386,8 @@ const Table = props => {
|
|
|
41382
41386
|
leftIcon: "Plus",
|
|
41383
41387
|
text: "New Event",
|
|
41384
41388
|
borderRadius: "12px",
|
|
41389
|
+
borderColor: buttonColor,
|
|
41390
|
+
hoverBorderColor: buttonHoverColor,
|
|
41385
41391
|
backgroundColor: buttonColor,
|
|
41386
41392
|
hoverBackgroundColor: buttonHoverColor,
|
|
41387
41393
|
onClick: onButtonClick
|