sag_components 2.0.0-beta16 → 2.0.0-beta18
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 +47 -2
- package/dist/index.esm.js +669 -670
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +669 -670
- package/dist/index.js.map +1 -1
- package/dist/types/components/QuickFilter/QuickFilter.d.ts +46 -1
- package/package.json +9 -3
package/dist/index.js
CHANGED
|
@@ -1163,7 +1163,7 @@ if (process.env.NODE_ENV !== 'production') {
|
|
|
1163
1163
|
propTypes.exports = requireFactoryWithThrowingShims()();
|
|
1164
1164
|
}
|
|
1165
1165
|
var propTypesExports = propTypes.exports;
|
|
1166
|
-
var PropTypes = /*@__PURE__*/getDefaultExportFromCjs(propTypesExports);
|
|
1166
|
+
var PropTypes$1 = /*@__PURE__*/getDefaultExportFromCjs(propTypesExports);
|
|
1167
1167
|
|
|
1168
1168
|
/******************************************************************************
|
|
1169
1169
|
Copyright (c) Microsoft Corporation.
|
|
@@ -3523,8 +3523,8 @@ const NoDataFoundIcon = ({
|
|
|
3523
3523
|
strokeLinecap: "round"
|
|
3524
3524
|
}));
|
|
3525
3525
|
NoDataFoundIcon.propTypes = {
|
|
3526
|
-
height: PropTypes.string,
|
|
3527
|
-
width: PropTypes.string
|
|
3526
|
+
height: PropTypes$1.string,
|
|
3527
|
+
width: PropTypes$1.string
|
|
3528
3528
|
};
|
|
3529
3529
|
|
|
3530
3530
|
const NoDataFoundContainer = dt.div`
|
|
@@ -3575,7 +3575,7 @@ const NoDataFoundMessage = props => {
|
|
|
3575
3575
|
}, noDataText));
|
|
3576
3576
|
};
|
|
3577
3577
|
NoDataFoundMessage.propTypes = {
|
|
3578
|
-
noDataText: PropTypes.string
|
|
3578
|
+
noDataText: PropTypes$1.string
|
|
3579
3579
|
};
|
|
3580
3580
|
NoDataFoundMessage.defaultProps = {
|
|
3581
3581
|
noDataText: ''
|
|
@@ -3906,11 +3906,11 @@ const Tooltip$1 = props => {
|
|
|
3906
3906
|
}, content)));
|
|
3907
3907
|
};
|
|
3908
3908
|
Tooltip$1.propTypes = {
|
|
3909
|
-
children: PropTypes.node,
|
|
3910
|
-
content: PropTypes.node,
|
|
3911
|
-
direction: PropTypes.string,
|
|
3912
|
-
delay: PropTypes.string,
|
|
3913
|
-
topFactor: PropTypes.number
|
|
3909
|
+
children: PropTypes$1.node,
|
|
3910
|
+
content: PropTypes$1.node,
|
|
3911
|
+
direction: PropTypes$1.string,
|
|
3912
|
+
delay: PropTypes$1.string,
|
|
3913
|
+
topFactor: PropTypes$1.number
|
|
3914
3914
|
};
|
|
3915
3915
|
Tooltip$1.defaultProps = {
|
|
3916
3916
|
children: null,
|
|
@@ -4021,18 +4021,18 @@ const Benchmark = props => {
|
|
|
4021
4021
|
}))));
|
|
4022
4022
|
};
|
|
4023
4023
|
Benchmark.propTypes = {
|
|
4024
|
-
totalValue: PropTypes.number,
|
|
4025
|
-
currentValue: PropTypes.number,
|
|
4026
|
-
benchmarkValue: PropTypes.number,
|
|
4027
|
-
width: PropTypes.number,
|
|
4028
|
-
height: PropTypes.number,
|
|
4029
|
-
color: PropTypes.string,
|
|
4030
|
-
linearGradientColor: PropTypes.string,
|
|
4031
|
-
underAvarageColor: PropTypes.string,
|
|
4032
|
-
linearGradientUnderAvarageColor: PropTypes.string,
|
|
4033
|
-
backgroundColor: PropTypes.string,
|
|
4034
|
-
tooltipLabel: PropTypes.string,
|
|
4035
|
-
tooltipDirection: PropTypes.string
|
|
4024
|
+
totalValue: PropTypes$1.number,
|
|
4025
|
+
currentValue: PropTypes$1.number,
|
|
4026
|
+
benchmarkValue: PropTypes$1.number,
|
|
4027
|
+
width: PropTypes$1.number,
|
|
4028
|
+
height: PropTypes$1.number,
|
|
4029
|
+
color: PropTypes$1.string,
|
|
4030
|
+
linearGradientColor: PropTypes$1.string,
|
|
4031
|
+
underAvarageColor: PropTypes$1.string,
|
|
4032
|
+
linearGradientUnderAvarageColor: PropTypes$1.string,
|
|
4033
|
+
backgroundColor: PropTypes$1.string,
|
|
4034
|
+
tooltipLabel: PropTypes$1.string,
|
|
4035
|
+
tooltipDirection: PropTypes$1.string
|
|
4036
4036
|
};
|
|
4037
4037
|
Benchmark.defaultProps = {
|
|
4038
4038
|
totalValue: 100,
|
|
@@ -4164,27 +4164,27 @@ const PieChart = props => {
|
|
|
4164
4164
|
}, row.name, displayLegendValue(row)))))))));
|
|
4165
4165
|
};
|
|
4166
4166
|
PieChart.propTypes = {
|
|
4167
|
-
className: PropTypes.string,
|
|
4168
|
-
width: PropTypes.string,
|
|
4169
|
-
height: PropTypes.string,
|
|
4170
|
-
textcolor: PropTypes.string,
|
|
4171
|
-
title: PropTypes.string,
|
|
4172
|
-
value: PropTypes.number,
|
|
4173
|
-
currencySign: PropTypes.bool,
|
|
4174
|
-
currencyType: PropTypes.string,
|
|
4175
|
-
dotCut: PropTypes.bool,
|
|
4176
|
-
isPercent: PropTypes.bool,
|
|
4177
|
-
legendData: PropTypes.arrayOf(PropTypes.shape({
|
|
4178
|
-
name: PropTypes.string,
|
|
4179
|
-
description: PropTypes.string
|
|
4167
|
+
className: PropTypes$1.string,
|
|
4168
|
+
width: PropTypes$1.string,
|
|
4169
|
+
height: PropTypes$1.string,
|
|
4170
|
+
textcolor: PropTypes$1.string,
|
|
4171
|
+
title: PropTypes$1.string,
|
|
4172
|
+
value: PropTypes$1.number,
|
|
4173
|
+
currencySign: PropTypes$1.bool,
|
|
4174
|
+
currencyType: PropTypes$1.string,
|
|
4175
|
+
dotCut: PropTypes$1.bool,
|
|
4176
|
+
isPercent: PropTypes$1.bool,
|
|
4177
|
+
legendData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
4178
|
+
name: PropTypes$1.string,
|
|
4179
|
+
description: PropTypes$1.string
|
|
4180
4180
|
})),
|
|
4181
|
-
itemsBoldedValues: PropTypes.bool,
|
|
4182
|
-
itemsPercentagesValueAside: PropTypes.bool,
|
|
4183
|
-
itemsValuesSeparateLine: PropTypes.bool,
|
|
4184
|
-
hideTitleAndValue: PropTypes.bool,
|
|
4185
|
-
addingBenchmark: PropTypes.bool,
|
|
4186
|
-
textAfterValue: PropTypes.string,
|
|
4187
|
-
noDataText: PropTypes.string
|
|
4181
|
+
itemsBoldedValues: PropTypes$1.bool,
|
|
4182
|
+
itemsPercentagesValueAside: PropTypes$1.bool,
|
|
4183
|
+
itemsValuesSeparateLine: PropTypes$1.bool,
|
|
4184
|
+
hideTitleAndValue: PropTypes$1.bool,
|
|
4185
|
+
addingBenchmark: PropTypes$1.bool,
|
|
4186
|
+
textAfterValue: PropTypes$1.string,
|
|
4187
|
+
noDataText: PropTypes$1.string
|
|
4188
4188
|
};
|
|
4189
4189
|
PieChart.defaultProps = {
|
|
4190
4190
|
className: '',
|
|
@@ -4605,8 +4605,8 @@ const BannersDropdown = props => {
|
|
|
4605
4605
|
}, /*#__PURE__*/React__default["default"].createElement(IconWrap, null, banner.icon), "|", /*#__PURE__*/React__default["default"].createElement("span", null, banner.name)))))));
|
|
4606
4606
|
};
|
|
4607
4607
|
BannersDropdown.propTypes = {
|
|
4608
|
-
banners: PropTypes.arrayOf(propTypesExports.string),
|
|
4609
|
-
onClick: PropTypes.func
|
|
4608
|
+
banners: PropTypes$1.arrayOf(propTypesExports.string),
|
|
4609
|
+
onClick: PropTypes$1.func
|
|
4610
4610
|
};
|
|
4611
4611
|
BannersDropdown.defaultProps = {
|
|
4612
4612
|
banners: [{
|
|
@@ -4741,18 +4741,19 @@ const InfoIcon = _ref => {
|
|
|
4741
4741
|
}));
|
|
4742
4742
|
};
|
|
4743
4743
|
|
|
4744
|
-
const LinkButton =
|
|
4745
|
-
|
|
4746
|
-
|
|
4747
|
-
|
|
4748
|
-
|
|
4749
|
-
|
|
4750
|
-
|
|
4751
|
-
|
|
4752
|
-
|
|
4753
|
-
|
|
4754
|
-
|
|
4755
|
-
|
|
4744
|
+
const LinkButton = _ref => {
|
|
4745
|
+
let {
|
|
4746
|
+
text = '',
|
|
4747
|
+
type = 'primary',
|
|
4748
|
+
size = 'small',
|
|
4749
|
+
height = '',
|
|
4750
|
+
width = '',
|
|
4751
|
+
disabled = false,
|
|
4752
|
+
textColor = '',
|
|
4753
|
+
onClick,
|
|
4754
|
+
leftIcon = 'none',
|
|
4755
|
+
rightIcon = 'none'
|
|
4756
|
+
} = _ref;
|
|
4756
4757
|
// const {
|
|
4757
4758
|
// text,
|
|
4758
4759
|
// type,
|
|
@@ -5045,18 +5046,18 @@ const EventDetailsCard = props => {
|
|
|
5045
5046
|
}))));
|
|
5046
5047
|
};
|
|
5047
5048
|
EventDetailsCard.propTypes = {
|
|
5048
|
-
title: PropTypes.string,
|
|
5049
|
-
width: PropTypes.string,
|
|
5050
|
-
height: PropTypes.string,
|
|
5051
|
-
className: PropTypes.string,
|
|
5052
|
-
displayBannersDropdown: PropTypes.bool,
|
|
5053
|
-
banners: PropTypes.arrayOf(propTypesExports.string),
|
|
5054
|
-
data: PropTypes.arrayOf(PropTypes.shape({})),
|
|
5055
|
-
count: PropTypes.number,
|
|
5056
|
-
buttonText: PropTypes.string,
|
|
5057
|
-
onViewButtonClick: PropTypes.func,
|
|
5058
|
-
onBannersDropdownClick: PropTypes.func,
|
|
5059
|
-
disableViewDetailsButton: PropTypes.bool
|
|
5049
|
+
title: PropTypes$1.string,
|
|
5050
|
+
width: PropTypes$1.string,
|
|
5051
|
+
height: PropTypes$1.string,
|
|
5052
|
+
className: PropTypes$1.string,
|
|
5053
|
+
displayBannersDropdown: PropTypes$1.bool,
|
|
5054
|
+
banners: PropTypes$1.arrayOf(propTypesExports.string),
|
|
5055
|
+
data: PropTypes$1.arrayOf(PropTypes$1.shape({})),
|
|
5056
|
+
count: PropTypes$1.number,
|
|
5057
|
+
buttonText: PropTypes$1.string,
|
|
5058
|
+
onViewButtonClick: PropTypes$1.func,
|
|
5059
|
+
onBannersDropdownClick: PropTypes$1.func,
|
|
5060
|
+
disableViewDetailsButton: PropTypes$1.bool
|
|
5060
5061
|
};
|
|
5061
5062
|
EventDetailsCard.defaultProps = {
|
|
5062
5063
|
title: 'Dreft Portable Pretreater Pen',
|
|
@@ -5177,20 +5178,20 @@ const LinnerDataBox = props => {
|
|
|
5177
5178
|
}))));
|
|
5178
5179
|
};
|
|
5179
5180
|
LinnerDataBox.propTypes = {
|
|
5180
|
-
className: PropTypes.string,
|
|
5181
|
-
width: PropTypes.string,
|
|
5182
|
-
height: PropTypes.string,
|
|
5183
|
-
data: PropTypes.arrayOf(PropTypes.shape({
|
|
5184
|
-
title: PropTypes.string,
|
|
5185
|
-
value: PropTypes.number,
|
|
5186
|
-
sign: PropTypes.string,
|
|
5187
|
-
extraInfo: PropTypes.arrayOf(PropTypes.shape({
|
|
5188
|
-
title: PropTypes.string,
|
|
5189
|
-
value: PropTypes.number
|
|
5181
|
+
className: PropTypes$1.string,
|
|
5182
|
+
width: PropTypes$1.string,
|
|
5183
|
+
height: PropTypes$1.string,
|
|
5184
|
+
data: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
5185
|
+
title: PropTypes$1.string,
|
|
5186
|
+
value: PropTypes$1.number,
|
|
5187
|
+
sign: PropTypes$1.string,
|
|
5188
|
+
extraInfo: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
5189
|
+
title: PropTypes$1.string,
|
|
5190
|
+
value: PropTypes$1.number
|
|
5190
5191
|
}))
|
|
5191
5192
|
})),
|
|
5192
|
-
backgroundColor: PropTypes.string,
|
|
5193
|
-
customDataFormat: PropTypes.bool
|
|
5193
|
+
backgroundColor: PropTypes$1.string,
|
|
5194
|
+
customDataFormat: PropTypes$1.bool
|
|
5194
5195
|
};
|
|
5195
5196
|
LinnerDataBox.defaultProps = {
|
|
5196
5197
|
className: "",
|
|
@@ -5533,16 +5534,16 @@ const MarketShareDescription = props => {
|
|
|
5533
5534
|
}, displayRows());
|
|
5534
5535
|
};
|
|
5535
5536
|
MarketShareDescription.propTypes = {
|
|
5536
|
-
marketShareData: PropTypes.arrayOf(PropTypes.shape({
|
|
5537
|
-
label: PropTypes.string,
|
|
5538
|
-
checked: PropTypes.bool,
|
|
5539
|
-
disabled: PropTypes.bool
|
|
5537
|
+
marketShareData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
5538
|
+
label: PropTypes$1.string,
|
|
5539
|
+
checked: PropTypes$1.bool,
|
|
5540
|
+
disabled: PropTypes$1.bool
|
|
5540
5541
|
})),
|
|
5541
|
-
height: PropTypes.string,
|
|
5542
|
-
width: PropTypes.string,
|
|
5543
|
-
iconColor: PropTypes.string,
|
|
5544
|
-
onBannerClick: PropTypes.func,
|
|
5545
|
-
dotCut: PropTypes.bool
|
|
5542
|
+
height: PropTypes$1.string,
|
|
5543
|
+
width: PropTypes$1.string,
|
|
5544
|
+
iconColor: PropTypes$1.string,
|
|
5545
|
+
onBannerClick: PropTypes$1.func,
|
|
5546
|
+
dotCut: PropTypes$1.bool
|
|
5546
5547
|
};
|
|
5547
5548
|
MarketShareDescription.defaultProps = {
|
|
5548
5549
|
marketShareData: [],
|
|
@@ -5672,18 +5673,18 @@ const SagIconButton = props => {
|
|
|
5672
5673
|
}, getIcon(iconName), buttonText && /*#__PURE__*/React__default["default"].createElement(SpanText$1, null, buttonText));
|
|
5673
5674
|
};
|
|
5674
5675
|
SagIconButton.propTypes = {
|
|
5675
|
-
className: PropTypes.string,
|
|
5676
|
-
iconName: PropTypes.string,
|
|
5677
|
-
buttonText: PropTypes.string,
|
|
5678
|
-
height: PropTypes.string,
|
|
5679
|
-
color: PropTypes.string,
|
|
5680
|
-
backgroundColor: PropTypes.string,
|
|
5681
|
-
activeColor: PropTypes.string,
|
|
5682
|
-
iconHeight: PropTypes.number,
|
|
5683
|
-
iconWidth: PropTypes.number,
|
|
5684
|
-
openState: PropTypes.bool,
|
|
5685
|
-
disabled: PropTypes.bool,
|
|
5686
|
-
onButtonClick: PropTypes.func
|
|
5676
|
+
className: PropTypes$1.string,
|
|
5677
|
+
iconName: PropTypes$1.string,
|
|
5678
|
+
buttonText: PropTypes$1.string,
|
|
5679
|
+
height: PropTypes$1.string,
|
|
5680
|
+
color: PropTypes$1.string,
|
|
5681
|
+
backgroundColor: PropTypes$1.string,
|
|
5682
|
+
activeColor: PropTypes$1.string,
|
|
5683
|
+
iconHeight: PropTypes$1.number,
|
|
5684
|
+
iconWidth: PropTypes$1.number,
|
|
5685
|
+
openState: PropTypes$1.bool,
|
|
5686
|
+
disabled: PropTypes$1.bool,
|
|
5687
|
+
onButtonClick: PropTypes$1.func
|
|
5687
5688
|
};
|
|
5688
5689
|
SagIconButton.defaultProps = {
|
|
5689
5690
|
className: '',
|
|
@@ -5768,11 +5769,11 @@ const SearchInput = props => {
|
|
|
5768
5769
|
}), /*#__PURE__*/React__default["default"].createElement(SearchIcon, null));
|
|
5769
5770
|
};
|
|
5770
5771
|
SearchInput.propTypes = {
|
|
5771
|
-
placeholder: PropTypes.string,
|
|
5772
|
-
width: PropTypes.string,
|
|
5773
|
-
height: PropTypes.string,
|
|
5774
|
-
onTyping: PropTypes.func,
|
|
5775
|
-
className: PropTypes.string
|
|
5772
|
+
placeholder: PropTypes$1.string,
|
|
5773
|
+
width: PropTypes$1.string,
|
|
5774
|
+
height: PropTypes$1.string,
|
|
5775
|
+
onTyping: PropTypes$1.func,
|
|
5776
|
+
className: PropTypes$1.string
|
|
5776
5777
|
};
|
|
5777
5778
|
SearchInput.defaultProps = {
|
|
5778
5779
|
placeholder: 'Search',
|
|
@@ -5983,32 +5984,32 @@ const TabMenu = props => {
|
|
|
5983
5984
|
}, tabs[activeTab] && tabs[activeTab].content));
|
|
5984
5985
|
};
|
|
5985
5986
|
TabMenu.propTypes = {
|
|
5986
|
-
activeColor: PropTypes.string,
|
|
5987
|
-
children: PropTypes.node,
|
|
5988
|
-
className: PropTypes.string,
|
|
5989
|
-
color: PropTypes.string,
|
|
5990
|
-
currentTab: PropTypes.number,
|
|
5991
|
-
headlineInsteadTabs: PropTypes.bool,
|
|
5992
|
-
headlineText: PropTypes.string,
|
|
5993
|
-
inputWidth: PropTypes.string,
|
|
5994
|
-
onFilterButtonClick: PropTypes.func,
|
|
5995
|
-
onSearchFieldTyping: PropTypes.func,
|
|
5996
|
-
onTabChange: PropTypes.func,
|
|
5997
|
-
panelIsOpen: PropTypes.bool,
|
|
5998
|
-
setBackground: PropTypes.bool,
|
|
5999
|
-
showActions: PropTypes.bool,
|
|
6000
|
-
showFilterButton: PropTypes.bool,
|
|
6001
|
-
showLabel: PropTypes.bool,
|
|
6002
|
-
showSearchInput: PropTypes.bool,
|
|
6003
|
-
showViewOptionsButton: PropTypes.bool,
|
|
6004
|
-
disabledButton: PropTypes.bool,
|
|
6005
|
-
setTopRightButton: PropTypes.bool,
|
|
6006
|
-
rightButtonText: PropTypes.string,
|
|
6007
|
-
rightButtonIcon: PropTypes.string,
|
|
6008
|
-
onTopButtonClick: PropTypes.func,
|
|
6009
|
-
tabs: PropTypes.arrayOf(PropTypes.shape({
|
|
6010
|
-
title: PropTypes.string,
|
|
6011
|
-
content: PropTypes.node
|
|
5987
|
+
activeColor: PropTypes$1.string,
|
|
5988
|
+
children: PropTypes$1.node,
|
|
5989
|
+
className: PropTypes$1.string,
|
|
5990
|
+
color: PropTypes$1.string,
|
|
5991
|
+
currentTab: PropTypes$1.number,
|
|
5992
|
+
headlineInsteadTabs: PropTypes$1.bool,
|
|
5993
|
+
headlineText: PropTypes$1.string,
|
|
5994
|
+
inputWidth: PropTypes$1.string,
|
|
5995
|
+
onFilterButtonClick: PropTypes$1.func,
|
|
5996
|
+
onSearchFieldTyping: PropTypes$1.func,
|
|
5997
|
+
onTabChange: PropTypes$1.func,
|
|
5998
|
+
panelIsOpen: PropTypes$1.bool,
|
|
5999
|
+
setBackground: PropTypes$1.bool,
|
|
6000
|
+
showActions: PropTypes$1.bool,
|
|
6001
|
+
showFilterButton: PropTypes$1.bool,
|
|
6002
|
+
showLabel: PropTypes$1.bool,
|
|
6003
|
+
showSearchInput: PropTypes$1.bool,
|
|
6004
|
+
showViewOptionsButton: PropTypes$1.bool,
|
|
6005
|
+
disabledButton: PropTypes$1.bool,
|
|
6006
|
+
setTopRightButton: PropTypes$1.bool,
|
|
6007
|
+
rightButtonText: PropTypes$1.string,
|
|
6008
|
+
rightButtonIcon: PropTypes$1.string,
|
|
6009
|
+
onTopButtonClick: PropTypes$1.func,
|
|
6010
|
+
tabs: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
6011
|
+
title: PropTypes$1.string,
|
|
6012
|
+
content: PropTypes$1.node
|
|
6012
6013
|
}))
|
|
6013
6014
|
};
|
|
6014
6015
|
TabMenu.defaultProps = {
|
|
@@ -11111,26 +11112,26 @@ const DropdownSingleNew = ({
|
|
|
11111
11112
|
}, option.label)))));
|
|
11112
11113
|
};
|
|
11113
11114
|
DropdownSingleNew.propTypes = {
|
|
11114
|
-
placeHolder: PropTypes.string,
|
|
11115
|
-
label: PropTypes.string,
|
|
11116
|
-
labelEmptyValue: PropTypes.string,
|
|
11117
|
-
labelColor: PropTypes.string,
|
|
11118
|
-
required: PropTypes.bool,
|
|
11119
|
-
width: PropTypes.string,
|
|
11120
|
-
disabled: PropTypes.bool,
|
|
11121
|
-
error: PropTypes.bool,
|
|
11115
|
+
placeHolder: PropTypes$1.string,
|
|
11116
|
+
label: PropTypes$1.string,
|
|
11117
|
+
labelEmptyValue: PropTypes$1.string,
|
|
11118
|
+
labelColor: PropTypes$1.string,
|
|
11119
|
+
required: PropTypes$1.bool,
|
|
11120
|
+
width: PropTypes$1.string,
|
|
11121
|
+
disabled: PropTypes$1.bool,
|
|
11122
|
+
error: PropTypes$1.bool,
|
|
11122
11123
|
errorMessage: "",
|
|
11123
|
-
options: PropTypes.arrayOf(PropTypes.shape({
|
|
11124
|
-
value: PropTypes.string,
|
|
11125
|
-
label: PropTypes.string
|
|
11124
|
+
options: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
11125
|
+
value: PropTypes$1.string,
|
|
11126
|
+
label: PropTypes$1.string
|
|
11126
11127
|
})),
|
|
11127
|
-
selectedValue: PropTypes.arrayOf(PropTypes.shape({
|
|
11128
|
-
value: PropTypes.string,
|
|
11129
|
-
label: PropTypes.string
|
|
11128
|
+
selectedValue: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
11129
|
+
value: PropTypes$1.string,
|
|
11130
|
+
label: PropTypes$1.string
|
|
11130
11131
|
})),
|
|
11131
|
-
xIconShow: PropTypes.bool,
|
|
11132
|
-
onChange: PropTypes.func,
|
|
11133
|
-
showLabelOnTop: PropTypes.bool
|
|
11132
|
+
xIconShow: PropTypes$1.bool,
|
|
11133
|
+
onChange: PropTypes$1.func,
|
|
11134
|
+
showLabelOnTop: PropTypes$1.bool
|
|
11134
11135
|
};
|
|
11135
11136
|
DropdownSingleNew.defaultProps = {
|
|
11136
11137
|
placeHolder: "Type To Search",
|
|
@@ -11642,27 +11643,27 @@ const DropdownMultiNew = ({
|
|
|
11642
11643
|
})), option.label)))));
|
|
11643
11644
|
};
|
|
11644
11645
|
DropdownMultiNew.propTypes = {
|
|
11645
|
-
placeHolder: PropTypes.string,
|
|
11646
|
-
label: PropTypes.string,
|
|
11647
|
-
labelEmptyValue: PropTypes.string,
|
|
11648
|
-
labelColor: PropTypes.string,
|
|
11649
|
-
checkBoxColor: PropTypes.string,
|
|
11650
|
-
required: PropTypes.bool,
|
|
11651
|
-
width: PropTypes.string,
|
|
11652
|
-
disabled: PropTypes.bool,
|
|
11653
|
-
error: PropTypes.bool,
|
|
11646
|
+
placeHolder: PropTypes$1.string,
|
|
11647
|
+
label: PropTypes$1.string,
|
|
11648
|
+
labelEmptyValue: PropTypes$1.string,
|
|
11649
|
+
labelColor: PropTypes$1.string,
|
|
11650
|
+
checkBoxColor: PropTypes$1.string,
|
|
11651
|
+
required: PropTypes$1.bool,
|
|
11652
|
+
width: PropTypes$1.string,
|
|
11653
|
+
disabled: PropTypes$1.bool,
|
|
11654
|
+
error: PropTypes$1.bool,
|
|
11654
11655
|
errorMessage: "",
|
|
11655
|
-
options: PropTypes.arrayOf(PropTypes.shape({
|
|
11656
|
-
value: PropTypes.string,
|
|
11657
|
-
label: PropTypes.string
|
|
11656
|
+
options: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
11657
|
+
value: PropTypes$1.string,
|
|
11658
|
+
label: PropTypes$1.string
|
|
11658
11659
|
})),
|
|
11659
|
-
selectedValue: PropTypes.arrayOf(PropTypes.shape({
|
|
11660
|
-
value: PropTypes.string,
|
|
11661
|
-
label: PropTypes.string
|
|
11660
|
+
selectedValue: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
11661
|
+
value: PropTypes$1.string,
|
|
11662
|
+
label: PropTypes$1.string
|
|
11662
11663
|
})),
|
|
11663
|
-
onChange: PropTypes.func,
|
|
11664
|
-
xIconShow: PropTypes.bool,
|
|
11665
|
-
showLabelOnTop: PropTypes.bool
|
|
11664
|
+
onChange: PropTypes$1.func,
|
|
11665
|
+
xIconShow: PropTypes$1.bool,
|
|
11666
|
+
showLabelOnTop: PropTypes$1.bool
|
|
11666
11667
|
};
|
|
11667
11668
|
DropdownMultiNew.defaultProps = {
|
|
11668
11669
|
placeHolder: "Type To Search",
|
|
@@ -11699,89 +11700,92 @@ const DropdownMain = dt.div`
|
|
|
11699
11700
|
`;
|
|
11700
11701
|
|
|
11701
11702
|
/* eslint-disable react/prop-types */
|
|
11702
|
-
const DropdownNew =
|
|
11703
|
-
|
|
11704
|
-
|
|
11705
|
-
|
|
11706
|
-
|
|
11707
|
-
|
|
11708
|
-
|
|
11709
|
-
|
|
11710
|
-
|
|
11711
|
-
|
|
11712
|
-
|
|
11713
|
-
|
|
11714
|
-
|
|
11715
|
-
|
|
11716
|
-
|
|
11717
|
-
|
|
11718
|
-
|
|
11719
|
-
|
|
11720
|
-
|
|
11721
|
-
|
|
11722
|
-
|
|
11723
|
-
|
|
11724
|
-
|
|
11725
|
-
|
|
11726
|
-
|
|
11727
|
-
|
|
11728
|
-
|
|
11729
|
-
|
|
11730
|
-
|
|
11731
|
-
|
|
11732
|
-
|
|
11733
|
-
|
|
11734
|
-
|
|
11735
|
-
|
|
11736
|
-
|
|
11737
|
-
|
|
11738
|
-
|
|
11739
|
-
|
|
11740
|
-
|
|
11741
|
-
|
|
11742
|
-
|
|
11743
|
-
|
|
11744
|
-
|
|
11745
|
-
|
|
11746
|
-
|
|
11747
|
-
|
|
11748
|
-
|
|
11749
|
-
|
|
11750
|
-
|
|
11751
|
-
|
|
11752
|
-
|
|
11753
|
-
|
|
11754
|
-
|
|
11755
|
-
|
|
11756
|
-
|
|
11757
|
-
|
|
11758
|
-
|
|
11759
|
-
|
|
11760
|
-
|
|
11761
|
-
|
|
11762
|
-
|
|
11703
|
+
const DropdownNew = _ref => {
|
|
11704
|
+
let {
|
|
11705
|
+
isMulti,
|
|
11706
|
+
label,
|
|
11707
|
+
labelEmptyValue,
|
|
11708
|
+
options,
|
|
11709
|
+
selectedValue,
|
|
11710
|
+
placeHolder,
|
|
11711
|
+
onChange,
|
|
11712
|
+
required,
|
|
11713
|
+
disabled,
|
|
11714
|
+
width,
|
|
11715
|
+
error,
|
|
11716
|
+
errorMessage,
|
|
11717
|
+
labelColor,
|
|
11718
|
+
checkBoxColor,
|
|
11719
|
+
xIconShow,
|
|
11720
|
+
showLabelOnTop,
|
|
11721
|
+
orderBy,
|
|
11722
|
+
elementType
|
|
11723
|
+
} = _ref;
|
|
11724
|
+
return /*#__PURE__*/React__default["default"].createElement(DropdownMain, {
|
|
11725
|
+
className: "DropdownMain",
|
|
11726
|
+
width: width
|
|
11727
|
+
}, isMulti ? /*#__PURE__*/React__default["default"].createElement(DropdownMultiNew, {
|
|
11728
|
+
className: "DropdownMultiNew",
|
|
11729
|
+
placeHolder: placeHolder,
|
|
11730
|
+
label: label,
|
|
11731
|
+
labelEmptyValue: labelEmptyValue,
|
|
11732
|
+
labelColor: labelColor,
|
|
11733
|
+
checkBoxColor: checkBoxColor,
|
|
11734
|
+
required: required,
|
|
11735
|
+
options: options,
|
|
11736
|
+
width: width,
|
|
11737
|
+
disabled: disabled,
|
|
11738
|
+
error: error,
|
|
11739
|
+
errorMessage: errorMessage,
|
|
11740
|
+
selectedValue: selectedValue,
|
|
11741
|
+
xIconShow: xIconShow,
|
|
11742
|
+
onChange: onChange,
|
|
11743
|
+
showLabelOnTop: showLabelOnTop,
|
|
11744
|
+
orderBy: orderBy,
|
|
11745
|
+
elementType: elementType
|
|
11746
|
+
}) : /*#__PURE__*/React__default["default"].createElement(DropdownSingleNew, {
|
|
11747
|
+
className: "DropdownSingleNew",
|
|
11748
|
+
placeHolder: placeHolder,
|
|
11749
|
+
label: label,
|
|
11750
|
+
labelEmptyValue: labelEmptyValue,
|
|
11751
|
+
labelColor: labelColor,
|
|
11752
|
+
checkBoxColor: checkBoxColor,
|
|
11753
|
+
required: required,
|
|
11754
|
+
options: options,
|
|
11755
|
+
width: width,
|
|
11756
|
+
disabled: disabled,
|
|
11757
|
+
error: error,
|
|
11758
|
+
errorMessage: errorMessage,
|
|
11759
|
+
selectedValue: selectedValue,
|
|
11760
|
+
xIconShow: xIconShow,
|
|
11761
|
+
onChange: onChange,
|
|
11762
|
+
showLabelOnTop: showLabelOnTop,
|
|
11763
|
+
orderBy: orderBy,
|
|
11764
|
+
elementType: elementType
|
|
11765
|
+
}));
|
|
11766
|
+
};
|
|
11763
11767
|
DropdownNew.propTypes = {
|
|
11764
|
-
placeHolder: PropTypes.string,
|
|
11765
|
-
label: PropTypes.string,
|
|
11766
|
-
labelEmptyValue: PropTypes.string,
|
|
11767
|
-
labelColor: PropTypes.string,
|
|
11768
|
-
checkBoxColor: PropTypes.string,
|
|
11769
|
-
required: PropTypes.bool,
|
|
11770
|
-
width: PropTypes.string,
|
|
11771
|
-
disabled: PropTypes.bool,
|
|
11772
|
-
error: PropTypes.bool,
|
|
11773
|
-
errorMessage: PropTypes.string,
|
|
11774
|
-
options: PropTypes.arrayOf(PropTypes.shape({
|
|
11775
|
-
id: PropTypes.string,
|
|
11776
|
-
label: PropTypes.string
|
|
11768
|
+
placeHolder: PropTypes$1.string,
|
|
11769
|
+
label: PropTypes$1.string,
|
|
11770
|
+
labelEmptyValue: PropTypes$1.string,
|
|
11771
|
+
labelColor: PropTypes$1.string,
|
|
11772
|
+
checkBoxColor: PropTypes$1.string,
|
|
11773
|
+
required: PropTypes$1.bool,
|
|
11774
|
+
width: PropTypes$1.string,
|
|
11775
|
+
disabled: PropTypes$1.bool,
|
|
11776
|
+
error: PropTypes$1.bool,
|
|
11777
|
+
errorMessage: PropTypes$1.string,
|
|
11778
|
+
options: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
11779
|
+
id: PropTypes$1.string,
|
|
11780
|
+
label: PropTypes$1.string
|
|
11777
11781
|
})),
|
|
11778
|
-
selectedValue: PropTypes.arrayOf(PropTypes.shape({
|
|
11779
|
-
id: PropTypes.string,
|
|
11780
|
-
label: PropTypes.string
|
|
11782
|
+
selectedValue: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
11783
|
+
id: PropTypes$1.string,
|
|
11784
|
+
label: PropTypes$1.string
|
|
11781
11785
|
})),
|
|
11782
|
-
xIconShow: PropTypes.bool,
|
|
11783
|
-
onChange: PropTypes.func,
|
|
11784
|
-
showLabelOnTop: PropTypes.bool
|
|
11786
|
+
xIconShow: PropTypes$1.bool,
|
|
11787
|
+
onChange: PropTypes$1.func,
|
|
11788
|
+
showLabelOnTop: PropTypes$1.bool
|
|
11785
11789
|
};
|
|
11786
11790
|
DropdownNew.defaultProps = {
|
|
11787
11791
|
placeHolder: "Type...",
|
|
@@ -12173,20 +12177,21 @@ const DatePicker = ({
|
|
|
12173
12177
|
};
|
|
12174
12178
|
|
|
12175
12179
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
12176
|
-
const RangePicker =
|
|
12177
|
-
|
|
12178
|
-
|
|
12179
|
-
|
|
12180
|
-
|
|
12181
|
-
|
|
12182
|
-
|
|
12183
|
-
|
|
12184
|
-
|
|
12185
|
-
|
|
12186
|
-
|
|
12187
|
-
|
|
12188
|
-
|
|
12189
|
-
|
|
12180
|
+
const RangePicker = _ref => {
|
|
12181
|
+
let {
|
|
12182
|
+
label,
|
|
12183
|
+
onChange,
|
|
12184
|
+
borderRadius,
|
|
12185
|
+
required,
|
|
12186
|
+
width,
|
|
12187
|
+
height,
|
|
12188
|
+
placeholder,
|
|
12189
|
+
disabled,
|
|
12190
|
+
borderColor,
|
|
12191
|
+
borderColorFocus,
|
|
12192
|
+
textColor,
|
|
12193
|
+
selectedValue
|
|
12194
|
+
} = _ref;
|
|
12190
12195
|
const [isFocused, setIsFocused] = React$1.useState(false);
|
|
12191
12196
|
const [isOpen, setIsOpen] = React$1.useState(false);
|
|
12192
12197
|
const [value, setValue] = React$1.useState(''); // Added value state
|
|
@@ -12318,20 +12323,20 @@ const RangePicker = ({
|
|
|
12318
12323
|
})));
|
|
12319
12324
|
};
|
|
12320
12325
|
RangePicker.propTypes = {
|
|
12321
|
-
label: PropTypes.string.isRequired,
|
|
12322
|
-
onChange: PropTypes.func.isRequired,
|
|
12323
|
-
borderRadius: PropTypes.string.isRequired,
|
|
12324
|
-
required: PropTypes.bool,
|
|
12325
|
-
width: PropTypes.string,
|
|
12326
|
-
height: PropTypes.string,
|
|
12327
|
-
placeholder: PropTypes.string,
|
|
12328
|
-
disabled: PropTypes.bool,
|
|
12329
|
-
borderColor: PropTypes.string,
|
|
12326
|
+
label: PropTypes$1.string.isRequired,
|
|
12327
|
+
onChange: PropTypes$1.func.isRequired,
|
|
12328
|
+
borderRadius: PropTypes$1.string.isRequired,
|
|
12329
|
+
required: PropTypes$1.bool,
|
|
12330
|
+
width: PropTypes$1.string,
|
|
12331
|
+
height: PropTypes$1.string,
|
|
12332
|
+
placeholder: PropTypes$1.string,
|
|
12333
|
+
disabled: PropTypes$1.bool,
|
|
12334
|
+
borderColor: PropTypes$1.string,
|
|
12330
12335
|
// Added borderColor prop
|
|
12331
|
-
borderColorFocus: PropTypes.string,
|
|
12332
|
-
textColor: PropTypes.string,
|
|
12336
|
+
borderColorFocus: PropTypes$1.string,
|
|
12337
|
+
textColor: PropTypes$1.string,
|
|
12333
12338
|
// Added textColor prop
|
|
12334
|
-
selectedValue: PropTypes.string
|
|
12339
|
+
selectedValue: PropTypes$1.string
|
|
12335
12340
|
};
|
|
12336
12341
|
|
|
12337
12342
|
// Adding defaultProps
|
|
@@ -12751,19 +12756,19 @@ const QuarterPicker = ({
|
|
|
12751
12756
|
})));
|
|
12752
12757
|
};
|
|
12753
12758
|
QuarterPicker.propTypes = {
|
|
12754
|
-
availableQuarters: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12755
|
-
label: PropTypes.string.isRequired,
|
|
12756
|
-
onChange: PropTypes.func.isRequired,
|
|
12757
|
-
borderRadius: PropTypes.string.isRequired,
|
|
12758
|
-
required: PropTypes.bool,
|
|
12759
|
-
width: PropTypes.string,
|
|
12760
|
-
height: PropTypes.string,
|
|
12761
|
-
placeholder: PropTypes.string,
|
|
12762
|
-
disabled: PropTypes.bool,
|
|
12763
|
-
borderColor: PropTypes.string,
|
|
12764
|
-
borderColorFocus: PropTypes.string,
|
|
12765
|
-
textColor: PropTypes.string,
|
|
12766
|
-
selectedValue: PropTypes.string
|
|
12759
|
+
availableQuarters: PropTypes$1.arrayOf(PropTypes$1.string).isRequired,
|
|
12760
|
+
label: PropTypes$1.string.isRequired,
|
|
12761
|
+
onChange: PropTypes$1.func.isRequired,
|
|
12762
|
+
borderRadius: PropTypes$1.string.isRequired,
|
|
12763
|
+
required: PropTypes$1.bool,
|
|
12764
|
+
width: PropTypes$1.string,
|
|
12765
|
+
height: PropTypes$1.string,
|
|
12766
|
+
placeholder: PropTypes$1.string,
|
|
12767
|
+
disabled: PropTypes$1.bool,
|
|
12768
|
+
borderColor: PropTypes$1.string,
|
|
12769
|
+
borderColorFocus: PropTypes$1.string,
|
|
12770
|
+
textColor: PropTypes$1.string,
|
|
12771
|
+
selectedValue: PropTypes$1.string
|
|
12767
12772
|
};
|
|
12768
12773
|
QuarterPicker.defaultProps = {
|
|
12769
12774
|
required: true,
|
|
@@ -13201,22 +13206,22 @@ const MonthPicker = ({
|
|
|
13201
13206
|
})));
|
|
13202
13207
|
};
|
|
13203
13208
|
MonthPicker.propTypes = {
|
|
13204
|
-
availableMonths: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
13205
|
-
label: PropTypes.string.isRequired,
|
|
13206
|
-
onChange: PropTypes.func.isRequired,
|
|
13207
|
-
borderRadius: PropTypes.string.isRequired,
|
|
13208
|
-
required: PropTypes.bool,
|
|
13209
|
-
width: PropTypes.string,
|
|
13210
|
-
height: PropTypes.string,
|
|
13211
|
-
placeholder: PropTypes.string,
|
|
13212
|
-
disabled: PropTypes.bool,
|
|
13213
|
-
borderColor: PropTypes.string,
|
|
13209
|
+
availableMonths: PropTypes$1.arrayOf(PropTypes$1.string).isRequired,
|
|
13210
|
+
label: PropTypes$1.string.isRequired,
|
|
13211
|
+
onChange: PropTypes$1.func.isRequired,
|
|
13212
|
+
borderRadius: PropTypes$1.string.isRequired,
|
|
13213
|
+
required: PropTypes$1.bool,
|
|
13214
|
+
width: PropTypes$1.string,
|
|
13215
|
+
height: PropTypes$1.string,
|
|
13216
|
+
placeholder: PropTypes$1.string,
|
|
13217
|
+
disabled: PropTypes$1.bool,
|
|
13218
|
+
borderColor: PropTypes$1.string,
|
|
13214
13219
|
// Added borderColor prop
|
|
13215
|
-
borderColorFocus: PropTypes.string,
|
|
13220
|
+
borderColorFocus: PropTypes$1.string,
|
|
13216
13221
|
// Added borderColorFocus prop
|
|
13217
|
-
textColor: PropTypes.string,
|
|
13222
|
+
textColor: PropTypes$1.string,
|
|
13218
13223
|
// Added textColor prop
|
|
13219
|
-
selectedValue: PropTypes.string
|
|
13224
|
+
selectedValue: PropTypes$1.string
|
|
13220
13225
|
};
|
|
13221
13226
|
MonthPicker.defaultProps = {
|
|
13222
13227
|
required: true,
|
|
@@ -13882,50 +13887,50 @@ const FilterPanel = props => {
|
|
|
13882
13887
|
})));
|
|
13883
13888
|
};
|
|
13884
13889
|
FilterPanel.propTypes = {
|
|
13885
|
-
availableQuarters: PropTypes.arrayOf(PropTypes.string),
|
|
13886
|
-
availableMonths: PropTypes.arrayOf(PropTypes.string),
|
|
13887
|
-
availableYears: PropTypes.arrayOf(PropTypes.string),
|
|
13888
|
-
fieldsData: PropTypes.arrayOf(PropTypes.shape({
|
|
13889
|
-
disabled: PropTypes.bool,
|
|
13890
|
-
required: PropTypes.bool,
|
|
13891
|
-
inputType: PropTypes.string,
|
|
13892
|
-
placeHolder: PropTypes.string,
|
|
13893
|
-
xIconShow: PropTypes.bool,
|
|
13894
|
-
label: PropTypes.string,
|
|
13895
|
-
labelEmptyValue: PropTypes.string,
|
|
13896
|
-
name: PropTypes.string,
|
|
13897
|
-
periodPickerSelectedValue: PropTypes.string,
|
|
13898
|
-
selectedValue: PropTypes.arrayOf(PropTypes.shape({
|
|
13899
|
-
value: PropTypes.string,
|
|
13900
|
-
label: PropTypes.string
|
|
13890
|
+
availableQuarters: PropTypes$1.arrayOf(PropTypes$1.string),
|
|
13891
|
+
availableMonths: PropTypes$1.arrayOf(PropTypes$1.string),
|
|
13892
|
+
availableYears: PropTypes$1.arrayOf(PropTypes$1.string),
|
|
13893
|
+
fieldsData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
13894
|
+
disabled: PropTypes$1.bool,
|
|
13895
|
+
required: PropTypes$1.bool,
|
|
13896
|
+
inputType: PropTypes$1.string,
|
|
13897
|
+
placeHolder: PropTypes$1.string,
|
|
13898
|
+
xIconShow: PropTypes$1.bool,
|
|
13899
|
+
label: PropTypes$1.string,
|
|
13900
|
+
labelEmptyValue: PropTypes$1.string,
|
|
13901
|
+
name: PropTypes$1.string,
|
|
13902
|
+
periodPickerSelectedValue: PropTypes$1.string,
|
|
13903
|
+
selectedValue: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
13904
|
+
value: PropTypes$1.string,
|
|
13905
|
+
label: PropTypes$1.string
|
|
13901
13906
|
})),
|
|
13902
|
-
orderBy: PropTypes.string,
|
|
13903
|
-
elementType: PropTypes.string,
|
|
13904
|
-
value: PropTypes.number,
|
|
13905
|
-
color: PropTypes.string,
|
|
13906
|
-
defaultValueYears: PropTypes.shape({
|
|
13907
|
-
value: PropTypes.string,
|
|
13908
|
-
label: PropTypes.string
|
|
13907
|
+
orderBy: PropTypes$1.string,
|
|
13908
|
+
elementType: PropTypes$1.string,
|
|
13909
|
+
value: PropTypes$1.number,
|
|
13910
|
+
color: PropTypes$1.string,
|
|
13911
|
+
defaultValueYears: PropTypes$1.shape({
|
|
13912
|
+
value: PropTypes$1.string,
|
|
13913
|
+
label: PropTypes$1.string
|
|
13909
13914
|
}),
|
|
13910
|
-
dropdownOptions: PropTypes.arrayOf(PropTypes.shape({
|
|
13911
|
-
value: PropTypes.string,
|
|
13912
|
-
label: PropTypes.string
|
|
13915
|
+
dropdownOptions: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
13916
|
+
value: PropTypes$1.string,
|
|
13917
|
+
label: PropTypes$1.string
|
|
13913
13918
|
}))
|
|
13914
13919
|
})),
|
|
13915
|
-
width: PropTypes.string,
|
|
13916
|
-
height: PropTypes.string,
|
|
13917
|
-
okButtonBackgroundColor: PropTypes.string,
|
|
13918
|
-
okButtonHoverColor: PropTypes.string,
|
|
13919
|
-
resetButtonHoverColor: PropTypes.string,
|
|
13920
|
-
borderColor: PropTypes.string,
|
|
13921
|
-
onOkClick: PropTypes.func,
|
|
13922
|
-
onResetClick: PropTypes.func,
|
|
13923
|
-
onItemValueChanged: PropTypes.func,
|
|
13924
|
-
disableOKButton: PropTypes.bool,
|
|
13925
|
-
className: PropTypes.string,
|
|
13926
|
-
useExternalFilterState: PropTypes.bool,
|
|
13927
|
-
showShadow: PropTypes.bool,
|
|
13928
|
-
tooltipTextGoButton: PropTypes.string
|
|
13920
|
+
width: PropTypes$1.string,
|
|
13921
|
+
height: PropTypes$1.string,
|
|
13922
|
+
okButtonBackgroundColor: PropTypes$1.string,
|
|
13923
|
+
okButtonHoverColor: PropTypes$1.string,
|
|
13924
|
+
resetButtonHoverColor: PropTypes$1.string,
|
|
13925
|
+
borderColor: PropTypes$1.string,
|
|
13926
|
+
onOkClick: PropTypes$1.func,
|
|
13927
|
+
onResetClick: PropTypes$1.func,
|
|
13928
|
+
onItemValueChanged: PropTypes$1.func,
|
|
13929
|
+
disableOKButton: PropTypes$1.bool,
|
|
13930
|
+
className: PropTypes$1.string,
|
|
13931
|
+
useExternalFilterState: PropTypes$1.bool,
|
|
13932
|
+
showShadow: PropTypes$1.bool,
|
|
13933
|
+
tooltipTextGoButton: PropTypes$1.string
|
|
13929
13934
|
};
|
|
13930
13935
|
FilterPanel.defaultProps = {
|
|
13931
13936
|
availableQuarters: ['Q1-2024'],
|
|
@@ -14629,28 +14634,28 @@ const ReportTable = props => {
|
|
|
14629
14634
|
}), /*#__PURE__*/React__default["default"].createElement(InfoText, null, "Download table to get the full data")) : "");
|
|
14630
14635
|
};
|
|
14631
14636
|
ReportTable.propTypes = {
|
|
14632
|
-
buttonText: PropTypes.string,
|
|
14633
|
-
buttonIconName: PropTypes.string,
|
|
14634
|
-
tableData: PropTypes.shape({
|
|
14635
|
-
columnsHeadings: PropTypes.arrayOf(PropTypes.shape({
|
|
14636
|
-
label: PropTypes.string,
|
|
14637
|
-
key: PropTypes.string
|
|
14637
|
+
buttonText: PropTypes$1.string,
|
|
14638
|
+
buttonIconName: PropTypes$1.string,
|
|
14639
|
+
tableData: PropTypes$1.shape({
|
|
14640
|
+
columnsHeadings: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
14641
|
+
label: PropTypes$1.string,
|
|
14642
|
+
key: PropTypes$1.string
|
|
14638
14643
|
})),
|
|
14639
|
-
rowsValues: PropTypes.arrayOf(PropTypes.objectOf(PropTypes.string))
|
|
14644
|
+
rowsValues: PropTypes$1.arrayOf(PropTypes$1.objectOf(PropTypes$1.string))
|
|
14640
14645
|
}),
|
|
14641
|
-
maxColumnsNumber: PropTypes.number,
|
|
14642
|
-
useColorLinearGradient: PropTypes.bool,
|
|
14643
|
-
useSelectButtons: PropTypes.bool,
|
|
14644
|
-
disableSelectButtons: PropTypes.bool,
|
|
14645
|
-
disableInfo: PropTypes.bool,
|
|
14646
|
-
selectTextColor: PropTypes.string,
|
|
14647
|
-
onSelectRowClick: PropTypes.func,
|
|
14648
|
-
onCheckRowClick: PropTypes.func,
|
|
14649
|
-
onAllRowsCheckBoxClick: PropTypes.func,
|
|
14650
|
-
useCheckBoxes: PropTypes.bool,
|
|
14651
|
-
selectHoverColor: PropTypes.string,
|
|
14652
|
-
enableHover: PropTypes.bool,
|
|
14653
|
-
enablePagination: PropTypes.bool
|
|
14646
|
+
maxColumnsNumber: PropTypes$1.number,
|
|
14647
|
+
useColorLinearGradient: PropTypes$1.bool,
|
|
14648
|
+
useSelectButtons: PropTypes$1.bool,
|
|
14649
|
+
disableSelectButtons: PropTypes$1.bool,
|
|
14650
|
+
disableInfo: PropTypes$1.bool,
|
|
14651
|
+
selectTextColor: PropTypes$1.string,
|
|
14652
|
+
onSelectRowClick: PropTypes$1.func,
|
|
14653
|
+
onCheckRowClick: PropTypes$1.func,
|
|
14654
|
+
onAllRowsCheckBoxClick: PropTypes$1.func,
|
|
14655
|
+
useCheckBoxes: PropTypes$1.bool,
|
|
14656
|
+
selectHoverColor: PropTypes$1.string,
|
|
14657
|
+
enableHover: PropTypes$1.bool,
|
|
14658
|
+
enablePagination: PropTypes$1.bool
|
|
14654
14659
|
};
|
|
14655
14660
|
ReportTable.defaultProps = {
|
|
14656
14661
|
buttonText: "Select",
|
|
@@ -14784,12 +14789,12 @@ const EventListItem = props => {
|
|
|
14784
14789
|
})));
|
|
14785
14790
|
};
|
|
14786
14791
|
EventListItem.propTypes = {
|
|
14787
|
-
eventName: PropTypes.string,
|
|
14788
|
-
period: PropTypes.string,
|
|
14789
|
-
width: PropTypes.string,
|
|
14790
|
-
height: PropTypes.string,
|
|
14791
|
-
selectTextColor: PropTypes.string,
|
|
14792
|
-
onClick: PropTypes.func
|
|
14792
|
+
eventName: PropTypes$1.string,
|
|
14793
|
+
period: PropTypes$1.string,
|
|
14794
|
+
width: PropTypes$1.string,
|
|
14795
|
+
height: PropTypes$1.string,
|
|
14796
|
+
selectTextColor: PropTypes$1.string,
|
|
14797
|
+
onClick: PropTypes$1.func
|
|
14793
14798
|
};
|
|
14794
14799
|
EventListItem.defaultProps = {
|
|
14795
14800
|
eventName: '',
|
|
@@ -14873,15 +14878,15 @@ const EventList = props => {
|
|
|
14873
14878
|
//= ======================================== MAIN RETURN END====================================
|
|
14874
14879
|
};
|
|
14875
14880
|
EventList.propTypes = {
|
|
14876
|
-
eventsData: PropTypes.arrayOf(PropTypes.shape({
|
|
14877
|
-
eventName: PropTypes.string,
|
|
14878
|
-
period: PropTypes.string
|
|
14881
|
+
eventsData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
14882
|
+
eventName: PropTypes$1.string,
|
|
14883
|
+
period: PropTypes$1.string
|
|
14879
14884
|
})),
|
|
14880
|
-
selectTextColor: PropTypes.string,
|
|
14881
|
-
height: PropTypes.string,
|
|
14882
|
-
width: PropTypes.string,
|
|
14883
|
-
itemHeight: PropTypes.string,
|
|
14884
|
-
onSelectClick: PropTypes.func
|
|
14885
|
+
selectTextColor: PropTypes$1.string,
|
|
14886
|
+
height: PropTypes$1.string,
|
|
14887
|
+
width: PropTypes$1.string,
|
|
14888
|
+
itemHeight: PropTypes$1.string,
|
|
14889
|
+
onSelectClick: PropTypes$1.func
|
|
14885
14890
|
};
|
|
14886
14891
|
EventList.defaultProps = {
|
|
14887
14892
|
eventsData: [],
|
|
@@ -15205,15 +15210,15 @@ const BannerEventBox = props => {
|
|
|
15205
15210
|
}, /*#__PURE__*/React__default["default"].createElement(KeyBlock, null, /*#__PURE__*/React__default["default"].createElement(Key, null, item.name), /*#__PURE__*/React__default["default"].createElement("br", null), /*#__PURE__*/React__default["default"].createElement(Count, null, item.items)), index !== data.length - 1 && /*#__PURE__*/React__default["default"].createElement(Seperator, null)))));
|
|
15206
15211
|
};
|
|
15207
15212
|
BannerEventBox.propTypes = {
|
|
15208
|
-
width: PropTypes.string,
|
|
15209
|
-
height: PropTypes.string,
|
|
15210
|
-
banner: PropTypes.string,
|
|
15211
|
-
buttonText: PropTypes.string,
|
|
15212
|
-
description: PropTypes.string,
|
|
15213
|
-
disabled: PropTypes.bool,
|
|
15214
|
-
dates: PropTypes.arrayOf(PropTypes.string),
|
|
15215
|
-
data: PropTypes.arrayOf(PropTypes.shape({})),
|
|
15216
|
-
onInfoClick: PropTypes.func
|
|
15213
|
+
width: PropTypes$1.string,
|
|
15214
|
+
height: PropTypes$1.string,
|
|
15215
|
+
banner: PropTypes$1.string,
|
|
15216
|
+
buttonText: PropTypes$1.string,
|
|
15217
|
+
description: PropTypes$1.string,
|
|
15218
|
+
disabled: PropTypes$1.bool,
|
|
15219
|
+
dates: PropTypes$1.arrayOf(PropTypes$1.string),
|
|
15220
|
+
data: PropTypes$1.arrayOf(PropTypes$1.shape({})),
|
|
15221
|
+
onInfoClick: PropTypes$1.func
|
|
15217
15222
|
};
|
|
15218
15223
|
BannerEventBox.defaultProps = {
|
|
15219
15224
|
width: "auto",
|
|
@@ -15318,24 +15323,24 @@ const BannerEventBoxList = props => {
|
|
|
15318
15323
|
})), showDraft && /*#__PURE__*/React__default["default"].createElement(DraftTag$1, null, "DRAFT")) : children));
|
|
15319
15324
|
};
|
|
15320
15325
|
BannerEventBoxList.propTypes = {
|
|
15321
|
-
className: PropTypes.string,
|
|
15322
|
-
width: PropTypes.string,
|
|
15323
|
-
height: PropTypes.string,
|
|
15324
|
-
eventType: PropTypes.string,
|
|
15325
|
-
eventName: PropTypes.string,
|
|
15326
|
-
count: PropTypes.number,
|
|
15327
|
-
toggleColor: PropTypes.string,
|
|
15328
|
-
data: PropTypes.arrayOf(PropTypes.shape({})),
|
|
15329
|
-
retailer: PropTypes.string,
|
|
15330
|
-
retailerFile: PropTypes.func,
|
|
15331
|
-
showLoader: PropTypes.bool,
|
|
15332
|
-
showEventDetails: PropTypes.bool,
|
|
15333
|
-
cardsContent: PropTypes.bool,
|
|
15334
|
-
linkText: PropTypes.string,
|
|
15335
|
-
disableToggle: PropTypes.bool,
|
|
15336
|
-
children: PropTypes.node,
|
|
15337
|
-
bannerWidth: PropTypes.string,
|
|
15338
|
-
showDraft: PropTypes.bool
|
|
15326
|
+
className: PropTypes$1.string,
|
|
15327
|
+
width: PropTypes$1.string,
|
|
15328
|
+
height: PropTypes$1.string,
|
|
15329
|
+
eventType: PropTypes$1.string,
|
|
15330
|
+
eventName: PropTypes$1.string,
|
|
15331
|
+
count: PropTypes$1.number,
|
|
15332
|
+
toggleColor: PropTypes$1.string,
|
|
15333
|
+
data: PropTypes$1.arrayOf(PropTypes$1.shape({})),
|
|
15334
|
+
retailer: PropTypes$1.string,
|
|
15335
|
+
retailerFile: PropTypes$1.func,
|
|
15336
|
+
showLoader: PropTypes$1.bool,
|
|
15337
|
+
showEventDetails: PropTypes$1.bool,
|
|
15338
|
+
cardsContent: PropTypes$1.bool,
|
|
15339
|
+
linkText: PropTypes$1.string,
|
|
15340
|
+
disableToggle: PropTypes$1.bool,
|
|
15341
|
+
children: PropTypes$1.node,
|
|
15342
|
+
bannerWidth: PropTypes$1.string,
|
|
15343
|
+
showDraft: PropTypes$1.bool
|
|
15339
15344
|
};
|
|
15340
15345
|
BannerEventBoxList.defaultProps = {
|
|
15341
15346
|
className: '',
|
|
@@ -15480,10 +15485,10 @@ const DialogOverlay = props => {
|
|
|
15480
15485
|
}, children)));
|
|
15481
15486
|
};
|
|
15482
15487
|
DialogOverlay.propTypes = {
|
|
15483
|
-
title: PropTypes.string,
|
|
15484
|
-
children: PropTypes.node,
|
|
15485
|
-
onDialogClose: PropTypes.func,
|
|
15486
|
-
className: PropTypes.string
|
|
15488
|
+
title: PropTypes$1.string,
|
|
15489
|
+
children: PropTypes$1.node,
|
|
15490
|
+
onDialogClose: PropTypes$1.func,
|
|
15491
|
+
className: PropTypes$1.string
|
|
15487
15492
|
};
|
|
15488
15493
|
DialogOverlay.defaultProps = {
|
|
15489
15494
|
title: 'Title',
|
|
@@ -26070,35 +26075,35 @@ const CollapseHeader = props => {
|
|
|
26070
26075
|
}, data.eventDatesValue) : "")))));
|
|
26071
26076
|
};
|
|
26072
26077
|
CollapseHeader.propTypes = {
|
|
26073
|
-
className: PropTypes.string,
|
|
26074
|
-
showRetailerIcon: PropTypes.bool,
|
|
26075
|
-
showPeriodIcon: PropTypes.bool,
|
|
26076
|
-
viewCreativeRetailersData: PropTypes.arrayOf(PropTypes.shape({
|
|
26077
|
-
label: PropTypes.string
|
|
26078
|
+
className: PropTypes$1.string,
|
|
26079
|
+
showRetailerIcon: PropTypes$1.bool,
|
|
26080
|
+
showPeriodIcon: PropTypes$1.bool,
|
|
26081
|
+
viewCreativeRetailersData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
26082
|
+
label: PropTypes$1.string
|
|
26078
26083
|
})),
|
|
26079
|
-
data: PropTypes.shape({
|
|
26080
|
-
eventType: PropTypes.string,
|
|
26081
|
-
retailer: PropTypes.string,
|
|
26082
|
-
eventDescription: PropTypes.string,
|
|
26083
|
-
objectivesDescription: PropTypes.string,
|
|
26084
|
-
eventDatesValue: PropTypes.string,
|
|
26085
|
-
externalEventDescription: PropTypes.string,
|
|
26086
|
-
externalEventID: PropTypes.string,
|
|
26087
|
-
storeType: PropTypes.string,
|
|
26088
|
-
category: PropTypes.string,
|
|
26089
|
-
supplier: PropTypes.string,
|
|
26090
|
-
brand: PropTypes.string
|
|
26084
|
+
data: PropTypes$1.shape({
|
|
26085
|
+
eventType: PropTypes$1.string,
|
|
26086
|
+
retailer: PropTypes$1.string,
|
|
26087
|
+
eventDescription: PropTypes$1.string,
|
|
26088
|
+
objectivesDescription: PropTypes$1.string,
|
|
26089
|
+
eventDatesValue: PropTypes$1.string,
|
|
26090
|
+
externalEventDescription: PropTypes$1.string,
|
|
26091
|
+
externalEventID: PropTypes$1.string,
|
|
26092
|
+
storeType: PropTypes$1.string,
|
|
26093
|
+
category: PropTypes$1.string,
|
|
26094
|
+
supplier: PropTypes$1.string,
|
|
26095
|
+
brand: PropTypes$1.string
|
|
26091
26096
|
}),
|
|
26092
|
-
showViewCreativeButton: PropTypes.bool,
|
|
26093
|
-
viewCreativeOnClick: PropTypes.func,
|
|
26094
|
-
descriptionTitle: PropTypes.string,
|
|
26095
|
-
datesTitle: PropTypes.string,
|
|
26096
|
-
width: PropTypes.string,
|
|
26097
|
-
height: PropTypes.string,
|
|
26098
|
-
textcolor: PropTypes.string,
|
|
26099
|
-
showDraft: PropTypes.bool,
|
|
26100
|
-
buttonText: PropTypes.string,
|
|
26101
|
-
disabled: PropTypes.bool
|
|
26097
|
+
showViewCreativeButton: PropTypes$1.bool,
|
|
26098
|
+
viewCreativeOnClick: PropTypes$1.func,
|
|
26099
|
+
descriptionTitle: PropTypes$1.string,
|
|
26100
|
+
datesTitle: PropTypes$1.string,
|
|
26101
|
+
width: PropTypes$1.string,
|
|
26102
|
+
height: PropTypes$1.string,
|
|
26103
|
+
textcolor: PropTypes$1.string,
|
|
26104
|
+
showDraft: PropTypes$1.bool,
|
|
26105
|
+
buttonText: PropTypes$1.string,
|
|
26106
|
+
disabled: PropTypes$1.bool
|
|
26102
26107
|
};
|
|
26103
26108
|
CollapseHeader.defaultProps = {
|
|
26104
26109
|
className: "",
|
|
@@ -26461,25 +26466,25 @@ const QuickFilterDropdownSingle = ({
|
|
|
26461
26466
|
}, highlightText(option.label, inputValue))))));
|
|
26462
26467
|
};
|
|
26463
26468
|
QuickFilterDropdownSingle.propTypes = {
|
|
26464
|
-
placeHolder: PropTypes.string,
|
|
26465
|
-
label: PropTypes.string,
|
|
26466
|
-
labelColor: PropTypes.string,
|
|
26467
|
-
hoverColor: PropTypes.string,
|
|
26468
|
-
width: PropTypes.string,
|
|
26469
|
-
disabled: PropTypes.bool,
|
|
26470
|
-
error: PropTypes.bool,
|
|
26469
|
+
placeHolder: PropTypes$1.string,
|
|
26470
|
+
label: PropTypes$1.string,
|
|
26471
|
+
labelColor: PropTypes$1.string,
|
|
26472
|
+
hoverColor: PropTypes$1.string,
|
|
26473
|
+
width: PropTypes$1.string,
|
|
26474
|
+
disabled: PropTypes$1.bool,
|
|
26475
|
+
error: PropTypes$1.bool,
|
|
26471
26476
|
errorMessage: "",
|
|
26472
|
-
options: PropTypes.arrayOf(PropTypes.shape({
|
|
26473
|
-
value: PropTypes.string,
|
|
26474
|
-
label: PropTypes.string
|
|
26477
|
+
options: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
26478
|
+
value: PropTypes$1.string,
|
|
26479
|
+
label: PropTypes$1.string
|
|
26475
26480
|
})),
|
|
26476
|
-
selectedValue: PropTypes.arrayOf(PropTypes.shape({
|
|
26477
|
-
value: PropTypes.string,
|
|
26478
|
-
label: PropTypes.string
|
|
26481
|
+
selectedValue: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
26482
|
+
value: PropTypes$1.string,
|
|
26483
|
+
label: PropTypes$1.string
|
|
26479
26484
|
})),
|
|
26480
|
-
xIconShow: PropTypes.bool,
|
|
26481
|
-
onChange: PropTypes.func,
|
|
26482
|
-
showLabelOnTop: PropTypes.bool
|
|
26485
|
+
xIconShow: PropTypes$1.bool,
|
|
26486
|
+
onChange: PropTypes$1.func,
|
|
26487
|
+
showLabelOnTop: PropTypes$1.bool
|
|
26483
26488
|
};
|
|
26484
26489
|
QuickFilterDropdownSingle.defaultProps = {
|
|
26485
26490
|
placeHolder: "Type...",
|
|
@@ -26938,27 +26943,27 @@ const QuickFilterDropdownMultiSelection = ({
|
|
|
26938
26943
|
})), option.label)))));
|
|
26939
26944
|
};
|
|
26940
26945
|
QuickFilterDropdownMultiSelection.propTypes = {
|
|
26941
|
-
placeHolder: PropTypes.string,
|
|
26942
|
-
label: PropTypes.string,
|
|
26943
|
-
labelEmptyValue: PropTypes.string,
|
|
26944
|
-
labelColor: PropTypes.string,
|
|
26945
|
-
checkBoxColor: PropTypes.string,
|
|
26946
|
-
required: PropTypes.bool,
|
|
26947
|
-
width: PropTypes.string,
|
|
26948
|
-
disabled: PropTypes.bool,
|
|
26949
|
-
error: PropTypes.bool,
|
|
26946
|
+
placeHolder: PropTypes$1.string,
|
|
26947
|
+
label: PropTypes$1.string,
|
|
26948
|
+
labelEmptyValue: PropTypes$1.string,
|
|
26949
|
+
labelColor: PropTypes$1.string,
|
|
26950
|
+
checkBoxColor: PropTypes$1.string,
|
|
26951
|
+
required: PropTypes$1.bool,
|
|
26952
|
+
width: PropTypes$1.string,
|
|
26953
|
+
disabled: PropTypes$1.bool,
|
|
26954
|
+
error: PropTypes$1.bool,
|
|
26950
26955
|
errorMessage: '',
|
|
26951
|
-
options: PropTypes.arrayOf(PropTypes.shape({
|
|
26952
|
-
value: PropTypes.string,
|
|
26953
|
-
label: PropTypes.string
|
|
26956
|
+
options: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
26957
|
+
value: PropTypes$1.string,
|
|
26958
|
+
label: PropTypes$1.string
|
|
26954
26959
|
})),
|
|
26955
|
-
selectedValue: PropTypes.arrayOf(PropTypes.shape({
|
|
26956
|
-
value: PropTypes.string,
|
|
26957
|
-
label: PropTypes.string
|
|
26960
|
+
selectedValue: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
26961
|
+
value: PropTypes$1.string,
|
|
26962
|
+
label: PropTypes$1.string
|
|
26958
26963
|
})),
|
|
26959
|
-
onChange: PropTypes.func,
|
|
26960
|
-
xIconShow: PropTypes.bool,
|
|
26961
|
-
showLabelOnTop: PropTypes.bool
|
|
26964
|
+
onChange: PropTypes$1.func,
|
|
26965
|
+
xIconShow: PropTypes$1.bool,
|
|
26966
|
+
showLabelOnTop: PropTypes$1.bool
|
|
26962
26967
|
};
|
|
26963
26968
|
QuickFilterDropdownMultiSelection.defaultProps = {
|
|
26964
26969
|
placeHolder: 'Type...',
|
|
@@ -27005,7 +27010,7 @@ const QuickFilter = _ref => {
|
|
|
27005
27010
|
placeHolder = "Select From List",
|
|
27006
27011
|
width = "auto",
|
|
27007
27012
|
checkBoxColor = "#229E38",
|
|
27008
|
-
onChange =
|
|
27013
|
+
onChange = () => {},
|
|
27009
27014
|
options = [],
|
|
27010
27015
|
selectedValue = []
|
|
27011
27016
|
} = _ref;
|
|
@@ -27042,48 +27047,42 @@ const QuickFilter = _ref => {
|
|
|
27042
27047
|
xIconShow: xIconShow
|
|
27043
27048
|
}));
|
|
27044
27049
|
};
|
|
27045
|
-
|
|
27046
|
-
|
|
27047
|
-
|
|
27048
|
-
|
|
27049
|
-
|
|
27050
|
-
|
|
27051
|
-
|
|
27052
|
-
|
|
27053
|
-
|
|
27054
|
-
|
|
27055
|
-
|
|
27056
|
-
|
|
27057
|
-
|
|
27058
|
-
|
|
27059
|
-
|
|
27060
|
-
|
|
27061
|
-
|
|
27062
|
-
|
|
27063
|
-
|
|
27064
|
-
|
|
27065
|
-
|
|
27066
|
-
|
|
27067
|
-
|
|
27068
|
-
|
|
27069
|
-
|
|
27070
|
-
|
|
27071
|
-
|
|
27072
|
-
|
|
27073
|
-
|
|
27074
|
-
|
|
27075
|
-
|
|
27076
|
-
|
|
27077
|
-
|
|
27078
|
-
|
|
27079
|
-
|
|
27080
|
-
|
|
27081
|
-
// width: "auto",
|
|
27082
|
-
// checkBoxColor: "#229E38",
|
|
27083
|
-
// onChange: () => {},
|
|
27084
|
-
// options: [],
|
|
27085
|
-
// selectedValue: [],
|
|
27086
|
-
// };
|
|
27050
|
+
QuickFilter.propTypes = {
|
|
27051
|
+
hoverColor: PropTypes.string,
|
|
27052
|
+
multipleSelection: PropTypes.bool,
|
|
27053
|
+
disabled: PropTypes.bool,
|
|
27054
|
+
error: PropTypes.bool,
|
|
27055
|
+
errorMessage: PropTypes.string,
|
|
27056
|
+
label: PropTypes.string,
|
|
27057
|
+
labelColor: PropTypes.string,
|
|
27058
|
+
placeHolder: PropTypes.string,
|
|
27059
|
+
width: PropTypes.string,
|
|
27060
|
+
checkBoxColor: PropTypes.string,
|
|
27061
|
+
onChange: PropTypes.func,
|
|
27062
|
+
options: PropTypes.arrayOf(PropTypes.shape({
|
|
27063
|
+
id: PropTypes.string,
|
|
27064
|
+
label: PropTypes.string
|
|
27065
|
+
})),
|
|
27066
|
+
selectedValue: PropTypes.arrayOf(PropTypes.shape({
|
|
27067
|
+
id: PropTypes.string,
|
|
27068
|
+
label: PropTypes.string
|
|
27069
|
+
}))
|
|
27070
|
+
};
|
|
27071
|
+
QuickFilter.defaultProps = {
|
|
27072
|
+
hoverColor: "#066768",
|
|
27073
|
+
multipleSelection: false,
|
|
27074
|
+
disabled: false,
|
|
27075
|
+
error: false,
|
|
27076
|
+
errorMessage: "",
|
|
27077
|
+
label: "Unit Type:",
|
|
27078
|
+
labelColor: "#066768",
|
|
27079
|
+
placeHolder: "Select From List",
|
|
27080
|
+
width: "auto",
|
|
27081
|
+
checkBoxColor: "#229E38",
|
|
27082
|
+
onChange: () => {},
|
|
27083
|
+
options: [],
|
|
27084
|
+
selectedValue: []
|
|
27085
|
+
};
|
|
27087
27086
|
|
|
27088
27087
|
var classnames = {exports: {}};
|
|
27089
27088
|
|
|
@@ -27490,18 +27489,18 @@ const FormattedValue$2 = props => {
|
|
|
27490
27489
|
}, subtitle) : '')));
|
|
27491
27490
|
};
|
|
27492
27491
|
FormattedValue$2.propTypes = {
|
|
27493
|
-
className: PropTypes.string,
|
|
27494
|
-
title: PropTypes.string,
|
|
27495
|
-
subtitle: PropTypes.string,
|
|
27496
|
-
showTopValue: PropTypes.bool,
|
|
27497
|
-
value: PropTypes.number,
|
|
27498
|
-
dotCut: PropTypes.bool,
|
|
27499
|
-
currencySign: PropTypes.bool,
|
|
27500
|
-
currencyType: PropTypes.string,
|
|
27501
|
-
width: PropTypes.string,
|
|
27502
|
-
height: PropTypes.string,
|
|
27503
|
-
textcolor: PropTypes.string,
|
|
27504
|
-
isPercent: PropTypes.bool
|
|
27492
|
+
className: PropTypes$1.string,
|
|
27493
|
+
title: PropTypes$1.string,
|
|
27494
|
+
subtitle: PropTypes$1.string,
|
|
27495
|
+
showTopValue: PropTypes$1.bool,
|
|
27496
|
+
value: PropTypes$1.number,
|
|
27497
|
+
dotCut: PropTypes$1.bool,
|
|
27498
|
+
currencySign: PropTypes$1.bool,
|
|
27499
|
+
currencyType: PropTypes$1.string,
|
|
27500
|
+
width: PropTypes$1.string,
|
|
27501
|
+
height: PropTypes$1.string,
|
|
27502
|
+
textcolor: PropTypes$1.string,
|
|
27503
|
+
isPercent: PropTypes$1.bool
|
|
27505
27504
|
};
|
|
27506
27505
|
FormattedValue$2.defaultProps = {
|
|
27507
27506
|
className: 'FormattedValue_ControlsContainer',
|
|
@@ -27733,13 +27732,13 @@ const PerformanceAnalyticsLegend = props => {
|
|
|
27733
27732
|
}, item.title))))) : '');
|
|
27734
27733
|
};
|
|
27735
27734
|
PerformanceAnalyticsLegend.propTypes = {
|
|
27736
|
-
className: PropTypes.string,
|
|
27737
|
-
width: PropTypes.string,
|
|
27738
|
-
height: PropTypes.string,
|
|
27739
|
-
legendData: PropTypes.arrayOf(PropTypes.shape({
|
|
27740
|
-
title: PropTypes.string.isRequired,
|
|
27741
|
-
iconType: PropTypes.oneOf([ICON_TYPE_SQUARE$1, ICON_TYPE_LEGEND_UNION_ICON$1, ICON_TYPE_LEGEND_LINE_ICON$1]).isRequired,
|
|
27742
|
-
iconColor: PropTypes.string.isRequired
|
|
27735
|
+
className: PropTypes$1.string,
|
|
27736
|
+
width: PropTypes$1.string,
|
|
27737
|
+
height: PropTypes$1.string,
|
|
27738
|
+
legendData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
27739
|
+
title: PropTypes$1.string.isRequired,
|
|
27740
|
+
iconType: PropTypes$1.oneOf([ICON_TYPE_SQUARE$1, ICON_TYPE_LEGEND_UNION_ICON$1, ICON_TYPE_LEGEND_LINE_ICON$1]).isRequired,
|
|
27741
|
+
iconColor: PropTypes$1.string.isRequired
|
|
27743
27742
|
}))
|
|
27744
27743
|
};
|
|
27745
27744
|
PerformanceAnalyticsLegend.defaultProps = {
|
|
@@ -27968,41 +27967,41 @@ const BarChartsByWeeks = props => {
|
|
|
27968
27967
|
}))));
|
|
27969
27968
|
};
|
|
27970
27969
|
BarChartsByWeeks.propTypes = {
|
|
27971
|
-
className: PropTypes.string,
|
|
27972
|
-
title: PropTypes.string,
|
|
27973
|
-
showHeaderTopValue: PropTypes.bool,
|
|
27974
|
-
headerValueTopTitle: PropTypes.string,
|
|
27975
|
-
headerValueBottomTitle: PropTypes.string,
|
|
27976
|
-
headerValue: PropTypes.number,
|
|
27977
|
-
HeaderValueCurrencyType: PropTypes.string,
|
|
27978
|
-
HeaderValueIsPercent: PropTypes.bool,
|
|
27979
|
-
barChartData: PropTypes.arrayOf(PropTypes.shape({
|
|
27980
|
-
title: PropTypes.string,
|
|
27981
|
-
value: PropTypes.number
|
|
27970
|
+
className: PropTypes$1.string,
|
|
27971
|
+
title: PropTypes$1.string,
|
|
27972
|
+
showHeaderTopValue: PropTypes$1.bool,
|
|
27973
|
+
headerValueTopTitle: PropTypes$1.string,
|
|
27974
|
+
headerValueBottomTitle: PropTypes$1.string,
|
|
27975
|
+
headerValue: PropTypes$1.number,
|
|
27976
|
+
HeaderValueCurrencyType: PropTypes$1.string,
|
|
27977
|
+
HeaderValueIsPercent: PropTypes$1.bool,
|
|
27978
|
+
barChartData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
27979
|
+
title: PropTypes$1.string,
|
|
27980
|
+
value: PropTypes$1.number
|
|
27982
27981
|
})),
|
|
27983
|
-
isTitleOriganal: PropTypes.bool,
|
|
27984
|
-
width: PropTypes.string,
|
|
27985
|
-
height: PropTypes.string,
|
|
27986
|
-
barChartColor: PropTypes.string,
|
|
27987
|
-
barChartSecondColor: PropTypes.string,
|
|
27988
|
-
xselectedColor: PropTypes.string,
|
|
27989
|
-
startWeekRange: PropTypes.string,
|
|
27990
|
-
endWeekRange: PropTypes.string,
|
|
27991
|
-
tooltipTitle: PropTypes.string,
|
|
27992
|
-
tooltipSecondTitle: PropTypes.string,
|
|
27993
|
-
yAxisCounter: PropTypes.number,
|
|
27994
|
-
isPercentValue: PropTypes.bool,
|
|
27995
|
-
interval: PropTypes.string,
|
|
27996
|
-
showTitle: PropTypes.bool,
|
|
27997
|
-
showLegend: PropTypes.bool,
|
|
27998
|
-
legendData: PropTypes.arrayOf(PropTypes.shape({
|
|
27999
|
-
title: PropTypes.string.isRequired,
|
|
28000
|
-
iconType: PropTypes.oneOf([ICON_TYPE_SQUARE, ICON_TYPE_LEGEND_UNION_ICON, ICON_TYPE_LEGEND_LINE_ICON]).isRequired,
|
|
28001
|
-
iconColor: PropTypes.string.isRequired
|
|
27982
|
+
isTitleOriganal: PropTypes$1.bool,
|
|
27983
|
+
width: PropTypes$1.string,
|
|
27984
|
+
height: PropTypes$1.string,
|
|
27985
|
+
barChartColor: PropTypes$1.string,
|
|
27986
|
+
barChartSecondColor: PropTypes$1.string,
|
|
27987
|
+
xselectedColor: PropTypes$1.string,
|
|
27988
|
+
startWeekRange: PropTypes$1.string,
|
|
27989
|
+
endWeekRange: PropTypes$1.string,
|
|
27990
|
+
tooltipTitle: PropTypes$1.string,
|
|
27991
|
+
tooltipSecondTitle: PropTypes$1.string,
|
|
27992
|
+
yAxisCounter: PropTypes$1.number,
|
|
27993
|
+
isPercentValue: PropTypes$1.bool,
|
|
27994
|
+
interval: PropTypes$1.string,
|
|
27995
|
+
showTitle: PropTypes$1.bool,
|
|
27996
|
+
showLegend: PropTypes$1.bool,
|
|
27997
|
+
legendData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
27998
|
+
title: PropTypes$1.string.isRequired,
|
|
27999
|
+
iconType: PropTypes$1.oneOf([ICON_TYPE_SQUARE, ICON_TYPE_LEGEND_UNION_ICON, ICON_TYPE_LEGEND_LINE_ICON]).isRequired,
|
|
28000
|
+
iconColor: PropTypes$1.string.isRequired
|
|
28002
28001
|
})),
|
|
28003
|
-
showTwoBars: PropTypes.bool,
|
|
28004
|
-
setLimitHeight: PropTypes.number,
|
|
28005
|
-
setLimitLow: PropTypes.number
|
|
28002
|
+
showTwoBars: PropTypes$1.bool,
|
|
28003
|
+
setLimitHeight: PropTypes$1.number,
|
|
28004
|
+
setLimitLow: PropTypes$1.number
|
|
28006
28005
|
};
|
|
28007
28006
|
BarChartsByWeeks.defaultProps = {
|
|
28008
28007
|
className: '',
|
|
@@ -28376,27 +28375,27 @@ const TotalDoughnutChart = props => {
|
|
|
28376
28375
|
}, row.name, displayLegendValue(row)))))))));
|
|
28377
28376
|
};
|
|
28378
28377
|
TotalDoughnutChart.propTypes = {
|
|
28379
|
-
className: PropTypes.string,
|
|
28380
|
-
title: PropTypes.string,
|
|
28381
|
-
value: PropTypes.number,
|
|
28382
|
-
addingBenchmark: PropTypes.bool,
|
|
28383
|
-
dotCut: PropTypes.bool,
|
|
28384
|
-
currencySign: PropTypes.bool,
|
|
28385
|
-
currencyType: PropTypes.string,
|
|
28386
|
-
legendData: PropTypes.arrayOf(PropTypes.shape({
|
|
28387
|
-
name: PropTypes.string,
|
|
28388
|
-
description: PropTypes.string
|
|
28378
|
+
className: PropTypes$1.string,
|
|
28379
|
+
title: PropTypes$1.string,
|
|
28380
|
+
value: PropTypes$1.number,
|
|
28381
|
+
addingBenchmark: PropTypes$1.bool,
|
|
28382
|
+
dotCut: PropTypes$1.bool,
|
|
28383
|
+
currencySign: PropTypes$1.bool,
|
|
28384
|
+
currencyType: PropTypes$1.string,
|
|
28385
|
+
legendData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
28386
|
+
name: PropTypes$1.string,
|
|
28387
|
+
description: PropTypes$1.string
|
|
28389
28388
|
})),
|
|
28390
|
-
itemsPercentagesValueAside: PropTypes.bool,
|
|
28391
|
-
itemsBoldedValues: PropTypes.bool,
|
|
28392
|
-
itemsValuesSeparateLine: PropTypes.bool,
|
|
28393
|
-
width: PropTypes.string,
|
|
28394
|
-
height: PropTypes.string,
|
|
28395
|
-
textcolor: PropTypes.string,
|
|
28396
|
-
isPercent: PropTypes.bool,
|
|
28397
|
-
hideTitleAndValue: PropTypes.bool,
|
|
28398
|
-
noDataText: PropTypes.string,
|
|
28399
|
-
textAfterValue: PropTypes.string
|
|
28389
|
+
itemsPercentagesValueAside: PropTypes$1.bool,
|
|
28390
|
+
itemsBoldedValues: PropTypes$1.bool,
|
|
28391
|
+
itemsValuesSeparateLine: PropTypes$1.bool,
|
|
28392
|
+
width: PropTypes$1.string,
|
|
28393
|
+
height: PropTypes$1.string,
|
|
28394
|
+
textcolor: PropTypes$1.string,
|
|
28395
|
+
isPercent: PropTypes$1.bool,
|
|
28396
|
+
hideTitleAndValue: PropTypes$1.bool,
|
|
28397
|
+
noDataText: PropTypes$1.string,
|
|
28398
|
+
textAfterValue: PropTypes$1.string
|
|
28400
28399
|
};
|
|
28401
28400
|
TotalDoughnutChart.defaultProps = {
|
|
28402
28401
|
className: '',
|
|
@@ -28433,13 +28432,13 @@ function CustomTooltip(_ref) {
|
|
|
28433
28432
|
}
|
|
28434
28433
|
CustomTooltip.propTypes = {
|
|
28435
28434
|
// eslint-disable-next-line react/forbid-prop-types
|
|
28436
|
-
active: PropTypes.any,
|
|
28435
|
+
active: PropTypes$1.any,
|
|
28437
28436
|
// eslint-disable-next-line react/forbid-prop-types
|
|
28438
|
-
payload: PropTypes.any,
|
|
28437
|
+
payload: PropTypes$1.any,
|
|
28439
28438
|
// eslint-disable-next-line react/forbid-prop-types
|
|
28440
|
-
value: PropTypes.any,
|
|
28439
|
+
value: PropTypes$1.any,
|
|
28441
28440
|
// eslint-disable-next-line react/forbid-prop-types
|
|
28442
|
-
isPercent: PropTypes.any
|
|
28441
|
+
isPercent: PropTypes$1.any
|
|
28443
28442
|
};
|
|
28444
28443
|
CustomTooltip.defaultProps = {
|
|
28445
28444
|
active: '',
|
|
@@ -28563,11 +28562,11 @@ const Tooltip = props => {
|
|
|
28563
28562
|
}, content)));
|
|
28564
28563
|
};
|
|
28565
28564
|
Tooltip.propTypes = {
|
|
28566
|
-
className: PropTypes.string,
|
|
28567
|
-
top: PropTypes.number,
|
|
28568
|
-
left: PropTypes.number,
|
|
28569
|
-
direction: PropTypes.string,
|
|
28570
|
-
content: PropTypes.string
|
|
28565
|
+
className: PropTypes$1.string,
|
|
28566
|
+
top: PropTypes$1.number,
|
|
28567
|
+
left: PropTypes$1.number,
|
|
28568
|
+
direction: PropTypes$1.string,
|
|
28569
|
+
content: PropTypes$1.string
|
|
28571
28570
|
};
|
|
28572
28571
|
Tooltip.defaultProps = {
|
|
28573
28572
|
className: '',
|
|
@@ -28856,31 +28855,31 @@ const TotalHorizontalCharts = props => {
|
|
|
28856
28855
|
}));
|
|
28857
28856
|
};
|
|
28858
28857
|
TotalHorizontalCharts.propTypes = {
|
|
28859
|
-
className: PropTypes.string,
|
|
28860
|
-
title: PropTypes.string,
|
|
28861
|
-
value: PropTypes.number,
|
|
28862
|
-
dotCut: PropTypes.bool,
|
|
28863
|
-
currencySign: PropTypes.bool,
|
|
28864
|
-
currencyType: PropTypes.string,
|
|
28865
|
-
chartsData: PropTypes.arrayOf(PropTypes.shape({
|
|
28866
|
-
name: PropTypes.string,
|
|
28867
|
-
value: PropTypes.number,
|
|
28868
|
-
color: PropTypes.string
|
|
28858
|
+
className: PropTypes$1.string,
|
|
28859
|
+
title: PropTypes$1.string,
|
|
28860
|
+
value: PropTypes$1.number,
|
|
28861
|
+
dotCut: PropTypes$1.bool,
|
|
28862
|
+
currencySign: PropTypes$1.bool,
|
|
28863
|
+
currencyType: PropTypes$1.string,
|
|
28864
|
+
chartsData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
28865
|
+
name: PropTypes$1.string,
|
|
28866
|
+
value: PropTypes$1.number,
|
|
28867
|
+
color: PropTypes$1.string
|
|
28869
28868
|
})),
|
|
28870
|
-
showScrollerBarsCount: PropTypes.number,
|
|
28871
|
-
showPercentAsideValue: PropTypes.bool,
|
|
28872
|
-
labelFontSize: PropTypes.number,
|
|
28873
|
-
labelLimitedLetters: PropTypes.number,
|
|
28874
|
-
width: PropTypes.string,
|
|
28875
|
-
height: PropTypes.string,
|
|
28876
|
-
rightGap: PropTypes.number,
|
|
28877
|
-
textColor: PropTypes.string,
|
|
28878
|
-
noDataText: PropTypes.string,
|
|
28879
|
-
isDollar: PropTypes.bool,
|
|
28880
|
-
isPercentage: PropTypes.bool,
|
|
28881
|
-
showDollarSign: PropTypes.bool,
|
|
28882
|
-
hideTotalValue: PropTypes.bool,
|
|
28883
|
-
hideTitle: PropTypes.bool
|
|
28869
|
+
showScrollerBarsCount: PropTypes$1.number,
|
|
28870
|
+
showPercentAsideValue: PropTypes$1.bool,
|
|
28871
|
+
labelFontSize: PropTypes$1.number,
|
|
28872
|
+
labelLimitedLetters: PropTypes$1.number,
|
|
28873
|
+
width: PropTypes$1.string,
|
|
28874
|
+
height: PropTypes$1.string,
|
|
28875
|
+
rightGap: PropTypes$1.number,
|
|
28876
|
+
textColor: PropTypes$1.string,
|
|
28877
|
+
noDataText: PropTypes$1.string,
|
|
28878
|
+
isDollar: PropTypes$1.bool,
|
|
28879
|
+
isPercentage: PropTypes$1.bool,
|
|
28880
|
+
showDollarSign: PropTypes$1.bool,
|
|
28881
|
+
hideTotalValue: PropTypes$1.bool,
|
|
28882
|
+
hideTitle: PropTypes$1.bool
|
|
28884
28883
|
};
|
|
28885
28884
|
TotalHorizontalCharts.defaultProps = {
|
|
28886
28885
|
className: '',
|
|
@@ -29069,23 +29068,23 @@ const SalesAndROI = props => {
|
|
|
29069
29068
|
}));
|
|
29070
29069
|
};
|
|
29071
29070
|
SalesAndROI.propTypes = {
|
|
29072
|
-
title: PropTypes.string,
|
|
29073
|
-
dotCut: PropTypes.bool,
|
|
29074
|
-
currencySign: PropTypes.bool,
|
|
29075
|
-
currencyType: PropTypes.string,
|
|
29076
|
-
salesData: PropTypes.arrayOf(PropTypes.shape({
|
|
29077
|
-
name: PropTypes.string,
|
|
29078
|
-
value: PropTypes.number,
|
|
29079
|
-
labelBefore: PropTypes.string,
|
|
29080
|
-
labelAfter: PropTypes.string
|
|
29071
|
+
title: PropTypes$1.string,
|
|
29072
|
+
dotCut: PropTypes$1.bool,
|
|
29073
|
+
currencySign: PropTypes$1.bool,
|
|
29074
|
+
currencyType: PropTypes$1.string,
|
|
29075
|
+
salesData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
29076
|
+
name: PropTypes$1.string,
|
|
29077
|
+
value: PropTypes$1.number,
|
|
29078
|
+
labelBefore: PropTypes$1.string,
|
|
29079
|
+
labelAfter: PropTypes$1.string
|
|
29081
29080
|
})),
|
|
29082
|
-
width: PropTypes.string,
|
|
29083
|
-
height: PropTypes.string,
|
|
29084
|
-
textColor: PropTypes.string,
|
|
29085
|
-
showBanner: PropTypes.bool,
|
|
29086
|
-
noDataText: PropTypes.string,
|
|
29087
|
-
onBannerClick: PropTypes.func,
|
|
29088
|
-
showBorderShadow: PropTypes.bool
|
|
29081
|
+
width: PropTypes$1.string,
|
|
29082
|
+
height: PropTypes$1.string,
|
|
29083
|
+
textColor: PropTypes$1.string,
|
|
29084
|
+
showBanner: PropTypes$1.bool,
|
|
29085
|
+
noDataText: PropTypes$1.string,
|
|
29086
|
+
onBannerClick: PropTypes$1.func,
|
|
29087
|
+
showBorderShadow: PropTypes$1.bool
|
|
29089
29088
|
};
|
|
29090
29089
|
SalesAndROI.defaultProps = {
|
|
29091
29090
|
title: 'SALES',
|
|
@@ -29381,25 +29380,25 @@ const PopupCharts = props => {
|
|
|
29381
29380
|
}, popupChartsItemsData.map(item => displayChartItem(item))))));
|
|
29382
29381
|
};
|
|
29383
29382
|
PopupCharts.propTypes = {
|
|
29384
|
-
title: PropTypes.string,
|
|
29385
|
-
chartType: PropTypes.string,
|
|
29383
|
+
title: PropTypes$1.string,
|
|
29384
|
+
chartType: PropTypes$1.string,
|
|
29386
29385
|
// eslint-disable-next-line react/require-default-props
|
|
29387
|
-
popupChartsItemsData: PropTypes.arrayOf(PropTypes.shape({
|
|
29388
|
-
title: PropTypes.string,
|
|
29389
|
-
chartType: PropTypes.string,
|
|
29390
|
-
value: PropTypes.number,
|
|
29391
|
-
legendData: PropTypes.arrayOf(PropTypes.shape({
|
|
29392
|
-
color: PropTypes.string,
|
|
29393
|
-
name: PropTypes.string,
|
|
29394
|
-
value: PropTypes.number
|
|
29386
|
+
popupChartsItemsData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
29387
|
+
title: PropTypes$1.string,
|
|
29388
|
+
chartType: PropTypes$1.string,
|
|
29389
|
+
value: PropTypes$1.number,
|
|
29390
|
+
legendData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
29391
|
+
color: PropTypes$1.string,
|
|
29392
|
+
name: PropTypes$1.string,
|
|
29393
|
+
value: PropTypes$1.number
|
|
29395
29394
|
})),
|
|
29396
|
-
noDataText: PropTypes.string
|
|
29395
|
+
noDataText: PropTypes$1.string
|
|
29397
29396
|
})),
|
|
29398
|
-
isPopupChartsOpen: PropTypes.bool,
|
|
29399
|
-
width: PropTypes.string,
|
|
29400
|
-
height: PropTypes.string,
|
|
29401
|
-
onCloseClick: PropTypes.func,
|
|
29402
|
-
subtitleTextColor: PropTypes.string
|
|
29397
|
+
isPopupChartsOpen: PropTypes$1.bool,
|
|
29398
|
+
width: PropTypes$1.string,
|
|
29399
|
+
height: PropTypes$1.string,
|
|
29400
|
+
onCloseClick: PropTypes$1.func,
|
|
29401
|
+
subtitleTextColor: PropTypes$1.string
|
|
29403
29402
|
};
|
|
29404
29403
|
PopupCharts.defaultProps = {
|
|
29405
29404
|
title: 'Switching Pattern',
|
|
@@ -29507,12 +29506,12 @@ const TopToggleList = props => {
|
|
|
29507
29506
|
}, /*#__PURE__*/React__default["default"].createElement(Item, null, item.label)))));
|
|
29508
29507
|
};
|
|
29509
29508
|
TopToggleList.propTypes = {
|
|
29510
|
-
width: PropTypes.string,
|
|
29511
|
-
height: PropTypes.string,
|
|
29512
|
-
title: PropTypes.string,
|
|
29513
|
-
list: PropTypes.arrayOf({
|
|
29514
|
-
value: PropTypes.string,
|
|
29515
|
-
label: PropTypes.string
|
|
29509
|
+
width: PropTypes$1.string,
|
|
29510
|
+
height: PropTypes$1.string,
|
|
29511
|
+
title: PropTypes$1.string,
|
|
29512
|
+
list: PropTypes$1.arrayOf({
|
|
29513
|
+
value: PropTypes$1.string,
|
|
29514
|
+
label: PropTypes$1.string
|
|
29516
29515
|
})
|
|
29517
29516
|
};
|
|
29518
29517
|
TopToggleList.defaultProps = {
|
|
@@ -29842,14 +29841,14 @@ const Heatmap = props => {
|
|
|
29842
29841
|
}, title)), refreshRequired && renderBars(), !refreshRequired && renderBars(), renderLegend()));
|
|
29843
29842
|
};
|
|
29844
29843
|
Heatmap.propTypes = {
|
|
29845
|
-
title: PropTypes.string.isRequired,
|
|
29846
|
-
data: PropTypes.arrayOf(PropTypes.shape({
|
|
29847
|
-
value: PropTypes.number.isRequired,
|
|
29848
|
-
label: PropTypes.string.isRequired,
|
|
29849
|
-
color: PropTypes.string.isRequired
|
|
29844
|
+
title: PropTypes$1.string.isRequired,
|
|
29845
|
+
data: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
29846
|
+
value: PropTypes$1.number.isRequired,
|
|
29847
|
+
label: PropTypes$1.string.isRequired,
|
|
29848
|
+
color: PropTypes$1.string.isRequired
|
|
29850
29849
|
})).isRequired,
|
|
29851
|
-
lowLimit: PropTypes.number.isRequired,
|
|
29852
|
-
barHeight: PropTypes.string.isRequired
|
|
29850
|
+
lowLimit: PropTypes$1.number.isRequired,
|
|
29851
|
+
barHeight: PropTypes$1.string.isRequired
|
|
29853
29852
|
};
|
|
29854
29853
|
|
|
29855
29854
|
const ButtonWrapper = dt.div`
|
|
@@ -30024,19 +30023,19 @@ const IconButton = props => {
|
|
|
30024
30023
|
IconButton.propTypes = {
|
|
30025
30024
|
// downloadStatus: PropTypes.string,
|
|
30026
30025
|
// fileName: PropTypes.string,
|
|
30027
|
-
fileLink: PropTypes.string,
|
|
30028
|
-
showProcess: PropTypes.bool,
|
|
30029
|
-
buttonText: PropTypes.string,
|
|
30030
|
-
iconName: PropTypes.string,
|
|
30031
|
-
contentColor: PropTypes.string,
|
|
30032
|
-
backgroundColor: PropTypes.string,
|
|
30033
|
-
borderColor: PropTypes.string,
|
|
30034
|
-
borderRadius: PropTypes.string,
|
|
30035
|
-
iconHeight: PropTypes.number,
|
|
30036
|
-
iconWidth: PropTypes.number,
|
|
30037
|
-
disabled: PropTypes.bool,
|
|
30038
|
-
onClick: PropTypes.func,
|
|
30039
|
-
onCancelClick: PropTypes.func
|
|
30026
|
+
fileLink: PropTypes$1.string,
|
|
30027
|
+
showProcess: PropTypes$1.bool,
|
|
30028
|
+
buttonText: PropTypes$1.string,
|
|
30029
|
+
iconName: PropTypes$1.string,
|
|
30030
|
+
contentColor: PropTypes$1.string,
|
|
30031
|
+
backgroundColor: PropTypes$1.string,
|
|
30032
|
+
borderColor: PropTypes$1.string,
|
|
30033
|
+
borderRadius: PropTypes$1.string,
|
|
30034
|
+
iconHeight: PropTypes$1.number,
|
|
30035
|
+
iconWidth: PropTypes$1.number,
|
|
30036
|
+
disabled: PropTypes$1.bool,
|
|
30037
|
+
onClick: PropTypes$1.func,
|
|
30038
|
+
onCancelClick: PropTypes$1.func
|
|
30040
30039
|
};
|
|
30041
30040
|
IconButton.defaultProps = {
|
|
30042
30041
|
// downloadStatus: '',
|