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.js
CHANGED
|
@@ -23907,21 +23907,22 @@ const DeleteIcon = styled__default["default"].div`
|
|
|
23907
23907
|
position: absolute;
|
|
23908
23908
|
`;
|
|
23909
23909
|
|
|
23910
|
-
const QuickFilterDropdownSingle =
|
|
23911
|
-
|
|
23912
|
-
|
|
23913
|
-
|
|
23914
|
-
|
|
23915
|
-
|
|
23916
|
-
|
|
23917
|
-
|
|
23918
|
-
|
|
23919
|
-
|
|
23920
|
-
|
|
23921
|
-
|
|
23922
|
-
|
|
23923
|
-
|
|
23924
|
-
|
|
23910
|
+
const QuickFilterDropdownSingle = _ref => {
|
|
23911
|
+
let {
|
|
23912
|
+
label,
|
|
23913
|
+
hoverColor,
|
|
23914
|
+
options,
|
|
23915
|
+
selectedValue,
|
|
23916
|
+
placeHolder,
|
|
23917
|
+
onChange,
|
|
23918
|
+
disabled,
|
|
23919
|
+
width,
|
|
23920
|
+
error,
|
|
23921
|
+
errorMessage,
|
|
23922
|
+
xIconShow,
|
|
23923
|
+
labelColor,
|
|
23924
|
+
showLabelOnTop
|
|
23925
|
+
} = _ref;
|
|
23925
23926
|
const [isFocused, setIsFocused] = React$1.useState(false);
|
|
23926
23927
|
const [showOptions, setShowOptions] = React$1.useState(false);
|
|
23927
23928
|
const [inputValue, setInputValue] = React$1.useState("");
|
|
@@ -24318,23 +24319,24 @@ const IconContainer$2 = styled__default["default"].div`
|
|
|
24318
24319
|
cursor: pointer;
|
|
24319
24320
|
`;
|
|
24320
24321
|
|
|
24321
|
-
const QuickFilterDropdownMultiSelection =
|
|
24322
|
-
|
|
24323
|
-
|
|
24324
|
-
|
|
24325
|
-
|
|
24326
|
-
|
|
24327
|
-
|
|
24328
|
-
|
|
24329
|
-
|
|
24330
|
-
|
|
24331
|
-
|
|
24332
|
-
|
|
24333
|
-
|
|
24334
|
-
|
|
24335
|
-
|
|
24336
|
-
|
|
24337
|
-
|
|
24322
|
+
const QuickFilterDropdownMultiSelection = _ref => {
|
|
24323
|
+
let {
|
|
24324
|
+
label,
|
|
24325
|
+
labelEmptyValue,
|
|
24326
|
+
options,
|
|
24327
|
+
selectedValue,
|
|
24328
|
+
placeHolder,
|
|
24329
|
+
onChange,
|
|
24330
|
+
required,
|
|
24331
|
+
disabled,
|
|
24332
|
+
width,
|
|
24333
|
+
error,
|
|
24334
|
+
errorMessage,
|
|
24335
|
+
labelColor,
|
|
24336
|
+
xIconShow,
|
|
24337
|
+
checkBoxColor,
|
|
24338
|
+
showLabelOnTop
|
|
24339
|
+
} = _ref;
|
|
24338
24340
|
const [isFocused, setIsFocused] = React$1.useState(false);
|
|
24339
24341
|
const [showOptions, setShowOptions] = React$1.useState(false);
|
|
24340
24342
|
const [inputValue, setInputValue] = React$1.useState('');
|
|
@@ -34444,11 +34446,11 @@ const ModalWithOverlay = props => {
|
|
|
34444
34446
|
disabled: disableOkButton,
|
|
34445
34447
|
text: okButtonText,
|
|
34446
34448
|
onClick: onOk,
|
|
34449
|
+
hoverTextColor: "#ffffff",
|
|
34447
34450
|
borderColor: okButtonColor,
|
|
34448
34451
|
backgroundColor: okButtonColor,
|
|
34449
34452
|
hoverBorderColor: okButtonHoverBackgroundColor,
|
|
34450
|
-
hoverBackgroundColor: okButtonHoverBackgroundColor
|
|
34451
|
-
hoverTextColor: "#212121"
|
|
34453
|
+
hoverBackgroundColor: okButtonHoverBackgroundColor
|
|
34452
34454
|
})) : /*#__PURE__*/React__default["default"].createElement(Button$1, {
|
|
34453
34455
|
size: "medium",
|
|
34454
34456
|
type: okButtonType,
|
|
@@ -34457,11 +34459,11 @@ const ModalWithOverlay = props => {
|
|
|
34457
34459
|
disabled: disableOkButton,
|
|
34458
34460
|
text: okButtonText,
|
|
34459
34461
|
onClick: onOk,
|
|
34462
|
+
hoverTextColor: "#ffffff",
|
|
34460
34463
|
borderColor: okButtonColor,
|
|
34461
34464
|
backgroundColor: okButtonColor,
|
|
34462
34465
|
hoverBorderColor: okButtonHoverBackgroundColor,
|
|
34463
|
-
hoverBackgroundColor: okButtonHoverBackgroundColor
|
|
34464
|
-
hoverTextColor: "#212121"
|
|
34466
|
+
hoverBackgroundColor: okButtonHoverBackgroundColor
|
|
34465
34467
|
})))), /*#__PURE__*/React__default["default"].createElement(ModalBody, {
|
|
34466
34468
|
className: "modal-body"
|
|
34467
34469
|
}, children)));
|
|
@@ -41366,6 +41368,8 @@ const Table = props => {
|
|
|
41366
41368
|
leftIcon: "Plus",
|
|
41367
41369
|
text: "New Event",
|
|
41368
41370
|
borderRadius: "12px",
|
|
41371
|
+
borderColor: sideButtonColor,
|
|
41372
|
+
hoverBorderColor: sideButtonHoverColor,
|
|
41369
41373
|
backgroundColor: sideButtonColor,
|
|
41370
41374
|
hoverBackgroundColor: sideButtonHoverColor,
|
|
41371
41375
|
onClick: onSideButtonClick
|
|
@@ -41392,6 +41396,8 @@ const Table = props => {
|
|
|
41392
41396
|
leftIcon: "Plus",
|
|
41393
41397
|
text: "New Event",
|
|
41394
41398
|
borderRadius: "12px",
|
|
41399
|
+
borderColor: buttonColor,
|
|
41400
|
+
hoverBorderColor: buttonHoverColor,
|
|
41395
41401
|
backgroundColor: buttonColor,
|
|
41396
41402
|
hoverBackgroundColor: buttonHoverColor,
|
|
41397
41403
|
onClick: onButtonClick
|