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.esm.js
CHANGED
|
@@ -1154,7 +1154,7 @@ if (process.env.NODE_ENV !== 'production') {
|
|
|
1154
1154
|
propTypes.exports = requireFactoryWithThrowingShims()();
|
|
1155
1155
|
}
|
|
1156
1156
|
var propTypesExports = propTypes.exports;
|
|
1157
|
-
var PropTypes = /*@__PURE__*/getDefaultExportFromCjs(propTypesExports);
|
|
1157
|
+
var PropTypes$1 = /*@__PURE__*/getDefaultExportFromCjs(propTypesExports);
|
|
1158
1158
|
|
|
1159
1159
|
/******************************************************************************
|
|
1160
1160
|
Copyright (c) Microsoft Corporation.
|
|
@@ -3514,8 +3514,8 @@ const NoDataFoundIcon = ({
|
|
|
3514
3514
|
strokeLinecap: "round"
|
|
3515
3515
|
}));
|
|
3516
3516
|
NoDataFoundIcon.propTypes = {
|
|
3517
|
-
height: PropTypes.string,
|
|
3518
|
-
width: PropTypes.string
|
|
3517
|
+
height: PropTypes$1.string,
|
|
3518
|
+
width: PropTypes$1.string
|
|
3519
3519
|
};
|
|
3520
3520
|
|
|
3521
3521
|
const NoDataFoundContainer = dt.div`
|
|
@@ -3566,7 +3566,7 @@ const NoDataFoundMessage = props => {
|
|
|
3566
3566
|
}, noDataText));
|
|
3567
3567
|
};
|
|
3568
3568
|
NoDataFoundMessage.propTypes = {
|
|
3569
|
-
noDataText: PropTypes.string
|
|
3569
|
+
noDataText: PropTypes$1.string
|
|
3570
3570
|
};
|
|
3571
3571
|
NoDataFoundMessage.defaultProps = {
|
|
3572
3572
|
noDataText: ''
|
|
@@ -3897,11 +3897,11 @@ const Tooltip$1 = props => {
|
|
|
3897
3897
|
}, content)));
|
|
3898
3898
|
};
|
|
3899
3899
|
Tooltip$1.propTypes = {
|
|
3900
|
-
children: PropTypes.node,
|
|
3901
|
-
content: PropTypes.node,
|
|
3902
|
-
direction: PropTypes.string,
|
|
3903
|
-
delay: PropTypes.string,
|
|
3904
|
-
topFactor: PropTypes.number
|
|
3900
|
+
children: PropTypes$1.node,
|
|
3901
|
+
content: PropTypes$1.node,
|
|
3902
|
+
direction: PropTypes$1.string,
|
|
3903
|
+
delay: PropTypes$1.string,
|
|
3904
|
+
topFactor: PropTypes$1.number
|
|
3905
3905
|
};
|
|
3906
3906
|
Tooltip$1.defaultProps = {
|
|
3907
3907
|
children: null,
|
|
@@ -4012,18 +4012,18 @@ const Benchmark = props => {
|
|
|
4012
4012
|
}))));
|
|
4013
4013
|
};
|
|
4014
4014
|
Benchmark.propTypes = {
|
|
4015
|
-
totalValue: PropTypes.number,
|
|
4016
|
-
currentValue: PropTypes.number,
|
|
4017
|
-
benchmarkValue: PropTypes.number,
|
|
4018
|
-
width: PropTypes.number,
|
|
4019
|
-
height: PropTypes.number,
|
|
4020
|
-
color: PropTypes.string,
|
|
4021
|
-
linearGradientColor: PropTypes.string,
|
|
4022
|
-
underAvarageColor: PropTypes.string,
|
|
4023
|
-
linearGradientUnderAvarageColor: PropTypes.string,
|
|
4024
|
-
backgroundColor: PropTypes.string,
|
|
4025
|
-
tooltipLabel: PropTypes.string,
|
|
4026
|
-
tooltipDirection: PropTypes.string
|
|
4015
|
+
totalValue: PropTypes$1.number,
|
|
4016
|
+
currentValue: PropTypes$1.number,
|
|
4017
|
+
benchmarkValue: PropTypes$1.number,
|
|
4018
|
+
width: PropTypes$1.number,
|
|
4019
|
+
height: PropTypes$1.number,
|
|
4020
|
+
color: PropTypes$1.string,
|
|
4021
|
+
linearGradientColor: PropTypes$1.string,
|
|
4022
|
+
underAvarageColor: PropTypes$1.string,
|
|
4023
|
+
linearGradientUnderAvarageColor: PropTypes$1.string,
|
|
4024
|
+
backgroundColor: PropTypes$1.string,
|
|
4025
|
+
tooltipLabel: PropTypes$1.string,
|
|
4026
|
+
tooltipDirection: PropTypes$1.string
|
|
4027
4027
|
};
|
|
4028
4028
|
Benchmark.defaultProps = {
|
|
4029
4029
|
totalValue: 100,
|
|
@@ -4155,27 +4155,27 @@ const PieChart = props => {
|
|
|
4155
4155
|
}, row.name, displayLegendValue(row)))))))));
|
|
4156
4156
|
};
|
|
4157
4157
|
PieChart.propTypes = {
|
|
4158
|
-
className: PropTypes.string,
|
|
4159
|
-
width: PropTypes.string,
|
|
4160
|
-
height: PropTypes.string,
|
|
4161
|
-
textcolor: PropTypes.string,
|
|
4162
|
-
title: PropTypes.string,
|
|
4163
|
-
value: PropTypes.number,
|
|
4164
|
-
currencySign: PropTypes.bool,
|
|
4165
|
-
currencyType: PropTypes.string,
|
|
4166
|
-
dotCut: PropTypes.bool,
|
|
4167
|
-
isPercent: PropTypes.bool,
|
|
4168
|
-
legendData: PropTypes.arrayOf(PropTypes.shape({
|
|
4169
|
-
name: PropTypes.string,
|
|
4170
|
-
description: PropTypes.string
|
|
4158
|
+
className: PropTypes$1.string,
|
|
4159
|
+
width: PropTypes$1.string,
|
|
4160
|
+
height: PropTypes$1.string,
|
|
4161
|
+
textcolor: PropTypes$1.string,
|
|
4162
|
+
title: PropTypes$1.string,
|
|
4163
|
+
value: PropTypes$1.number,
|
|
4164
|
+
currencySign: PropTypes$1.bool,
|
|
4165
|
+
currencyType: PropTypes$1.string,
|
|
4166
|
+
dotCut: PropTypes$1.bool,
|
|
4167
|
+
isPercent: PropTypes$1.bool,
|
|
4168
|
+
legendData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
4169
|
+
name: PropTypes$1.string,
|
|
4170
|
+
description: PropTypes$1.string
|
|
4171
4171
|
})),
|
|
4172
|
-
itemsBoldedValues: PropTypes.bool,
|
|
4173
|
-
itemsPercentagesValueAside: PropTypes.bool,
|
|
4174
|
-
itemsValuesSeparateLine: PropTypes.bool,
|
|
4175
|
-
hideTitleAndValue: PropTypes.bool,
|
|
4176
|
-
addingBenchmark: PropTypes.bool,
|
|
4177
|
-
textAfterValue: PropTypes.string,
|
|
4178
|
-
noDataText: PropTypes.string
|
|
4172
|
+
itemsBoldedValues: PropTypes$1.bool,
|
|
4173
|
+
itemsPercentagesValueAside: PropTypes$1.bool,
|
|
4174
|
+
itemsValuesSeparateLine: PropTypes$1.bool,
|
|
4175
|
+
hideTitleAndValue: PropTypes$1.bool,
|
|
4176
|
+
addingBenchmark: PropTypes$1.bool,
|
|
4177
|
+
textAfterValue: PropTypes$1.string,
|
|
4178
|
+
noDataText: PropTypes$1.string
|
|
4179
4179
|
};
|
|
4180
4180
|
PieChart.defaultProps = {
|
|
4181
4181
|
className: '',
|
|
@@ -4596,8 +4596,8 @@ const BannersDropdown = props => {
|
|
|
4596
4596
|
}, /*#__PURE__*/React$1.createElement(IconWrap, null, banner.icon), "|", /*#__PURE__*/React$1.createElement("span", null, banner.name)))))));
|
|
4597
4597
|
};
|
|
4598
4598
|
BannersDropdown.propTypes = {
|
|
4599
|
-
banners: PropTypes.arrayOf(propTypesExports.string),
|
|
4600
|
-
onClick: PropTypes.func
|
|
4599
|
+
banners: PropTypes$1.arrayOf(propTypesExports.string),
|
|
4600
|
+
onClick: PropTypes$1.func
|
|
4601
4601
|
};
|
|
4602
4602
|
BannersDropdown.defaultProps = {
|
|
4603
4603
|
banners: [{
|
|
@@ -4732,18 +4732,19 @@ const InfoIcon = _ref => {
|
|
|
4732
4732
|
}));
|
|
4733
4733
|
};
|
|
4734
4734
|
|
|
4735
|
-
const LinkButton =
|
|
4736
|
-
|
|
4737
|
-
|
|
4738
|
-
|
|
4739
|
-
|
|
4740
|
-
|
|
4741
|
-
|
|
4742
|
-
|
|
4743
|
-
|
|
4744
|
-
|
|
4745
|
-
|
|
4746
|
-
|
|
4735
|
+
const LinkButton = _ref => {
|
|
4736
|
+
let {
|
|
4737
|
+
text = '',
|
|
4738
|
+
type = 'primary',
|
|
4739
|
+
size = 'small',
|
|
4740
|
+
height = '',
|
|
4741
|
+
width = '',
|
|
4742
|
+
disabled = false,
|
|
4743
|
+
textColor = '',
|
|
4744
|
+
onClick,
|
|
4745
|
+
leftIcon = 'none',
|
|
4746
|
+
rightIcon = 'none'
|
|
4747
|
+
} = _ref;
|
|
4747
4748
|
// const {
|
|
4748
4749
|
// text,
|
|
4749
4750
|
// type,
|
|
@@ -5036,18 +5037,18 @@ const EventDetailsCard = props => {
|
|
|
5036
5037
|
}))));
|
|
5037
5038
|
};
|
|
5038
5039
|
EventDetailsCard.propTypes = {
|
|
5039
|
-
title: PropTypes.string,
|
|
5040
|
-
width: PropTypes.string,
|
|
5041
|
-
height: PropTypes.string,
|
|
5042
|
-
className: PropTypes.string,
|
|
5043
|
-
displayBannersDropdown: PropTypes.bool,
|
|
5044
|
-
banners: PropTypes.arrayOf(propTypesExports.string),
|
|
5045
|
-
data: PropTypes.arrayOf(PropTypes.shape({})),
|
|
5046
|
-
count: PropTypes.number,
|
|
5047
|
-
buttonText: PropTypes.string,
|
|
5048
|
-
onViewButtonClick: PropTypes.func,
|
|
5049
|
-
onBannersDropdownClick: PropTypes.func,
|
|
5050
|
-
disableViewDetailsButton: PropTypes.bool
|
|
5040
|
+
title: PropTypes$1.string,
|
|
5041
|
+
width: PropTypes$1.string,
|
|
5042
|
+
height: PropTypes$1.string,
|
|
5043
|
+
className: PropTypes$1.string,
|
|
5044
|
+
displayBannersDropdown: PropTypes$1.bool,
|
|
5045
|
+
banners: PropTypes$1.arrayOf(propTypesExports.string),
|
|
5046
|
+
data: PropTypes$1.arrayOf(PropTypes$1.shape({})),
|
|
5047
|
+
count: PropTypes$1.number,
|
|
5048
|
+
buttonText: PropTypes$1.string,
|
|
5049
|
+
onViewButtonClick: PropTypes$1.func,
|
|
5050
|
+
onBannersDropdownClick: PropTypes$1.func,
|
|
5051
|
+
disableViewDetailsButton: PropTypes$1.bool
|
|
5051
5052
|
};
|
|
5052
5053
|
EventDetailsCard.defaultProps = {
|
|
5053
5054
|
title: 'Dreft Portable Pretreater Pen',
|
|
@@ -5168,20 +5169,20 @@ const LinnerDataBox = props => {
|
|
|
5168
5169
|
}))));
|
|
5169
5170
|
};
|
|
5170
5171
|
LinnerDataBox.propTypes = {
|
|
5171
|
-
className: PropTypes.string,
|
|
5172
|
-
width: PropTypes.string,
|
|
5173
|
-
height: PropTypes.string,
|
|
5174
|
-
data: PropTypes.arrayOf(PropTypes.shape({
|
|
5175
|
-
title: PropTypes.string,
|
|
5176
|
-
value: PropTypes.number,
|
|
5177
|
-
sign: PropTypes.string,
|
|
5178
|
-
extraInfo: PropTypes.arrayOf(PropTypes.shape({
|
|
5179
|
-
title: PropTypes.string,
|
|
5180
|
-
value: PropTypes.number
|
|
5172
|
+
className: PropTypes$1.string,
|
|
5173
|
+
width: PropTypes$1.string,
|
|
5174
|
+
height: PropTypes$1.string,
|
|
5175
|
+
data: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
5176
|
+
title: PropTypes$1.string,
|
|
5177
|
+
value: PropTypes$1.number,
|
|
5178
|
+
sign: PropTypes$1.string,
|
|
5179
|
+
extraInfo: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
5180
|
+
title: PropTypes$1.string,
|
|
5181
|
+
value: PropTypes$1.number
|
|
5181
5182
|
}))
|
|
5182
5183
|
})),
|
|
5183
|
-
backgroundColor: PropTypes.string,
|
|
5184
|
-
customDataFormat: PropTypes.bool
|
|
5184
|
+
backgroundColor: PropTypes$1.string,
|
|
5185
|
+
customDataFormat: PropTypes$1.bool
|
|
5185
5186
|
};
|
|
5186
5187
|
LinnerDataBox.defaultProps = {
|
|
5187
5188
|
className: "",
|
|
@@ -5524,16 +5525,16 @@ const MarketShareDescription = props => {
|
|
|
5524
5525
|
}, displayRows());
|
|
5525
5526
|
};
|
|
5526
5527
|
MarketShareDescription.propTypes = {
|
|
5527
|
-
marketShareData: PropTypes.arrayOf(PropTypes.shape({
|
|
5528
|
-
label: PropTypes.string,
|
|
5529
|
-
checked: PropTypes.bool,
|
|
5530
|
-
disabled: PropTypes.bool
|
|
5528
|
+
marketShareData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
5529
|
+
label: PropTypes$1.string,
|
|
5530
|
+
checked: PropTypes$1.bool,
|
|
5531
|
+
disabled: PropTypes$1.bool
|
|
5531
5532
|
})),
|
|
5532
|
-
height: PropTypes.string,
|
|
5533
|
-
width: PropTypes.string,
|
|
5534
|
-
iconColor: PropTypes.string,
|
|
5535
|
-
onBannerClick: PropTypes.func,
|
|
5536
|
-
dotCut: PropTypes.bool
|
|
5533
|
+
height: PropTypes$1.string,
|
|
5534
|
+
width: PropTypes$1.string,
|
|
5535
|
+
iconColor: PropTypes$1.string,
|
|
5536
|
+
onBannerClick: PropTypes$1.func,
|
|
5537
|
+
dotCut: PropTypes$1.bool
|
|
5537
5538
|
};
|
|
5538
5539
|
MarketShareDescription.defaultProps = {
|
|
5539
5540
|
marketShareData: [],
|
|
@@ -5663,18 +5664,18 @@ const SagIconButton = props => {
|
|
|
5663
5664
|
}, getIcon(iconName), buttonText && /*#__PURE__*/React$1.createElement(SpanText$1, null, buttonText));
|
|
5664
5665
|
};
|
|
5665
5666
|
SagIconButton.propTypes = {
|
|
5666
|
-
className: PropTypes.string,
|
|
5667
|
-
iconName: PropTypes.string,
|
|
5668
|
-
buttonText: PropTypes.string,
|
|
5669
|
-
height: PropTypes.string,
|
|
5670
|
-
color: PropTypes.string,
|
|
5671
|
-
backgroundColor: PropTypes.string,
|
|
5672
|
-
activeColor: PropTypes.string,
|
|
5673
|
-
iconHeight: PropTypes.number,
|
|
5674
|
-
iconWidth: PropTypes.number,
|
|
5675
|
-
openState: PropTypes.bool,
|
|
5676
|
-
disabled: PropTypes.bool,
|
|
5677
|
-
onButtonClick: PropTypes.func
|
|
5667
|
+
className: PropTypes$1.string,
|
|
5668
|
+
iconName: PropTypes$1.string,
|
|
5669
|
+
buttonText: PropTypes$1.string,
|
|
5670
|
+
height: PropTypes$1.string,
|
|
5671
|
+
color: PropTypes$1.string,
|
|
5672
|
+
backgroundColor: PropTypes$1.string,
|
|
5673
|
+
activeColor: PropTypes$1.string,
|
|
5674
|
+
iconHeight: PropTypes$1.number,
|
|
5675
|
+
iconWidth: PropTypes$1.number,
|
|
5676
|
+
openState: PropTypes$1.bool,
|
|
5677
|
+
disabled: PropTypes$1.bool,
|
|
5678
|
+
onButtonClick: PropTypes$1.func
|
|
5678
5679
|
};
|
|
5679
5680
|
SagIconButton.defaultProps = {
|
|
5680
5681
|
className: '',
|
|
@@ -5759,11 +5760,11 @@ const SearchInput = props => {
|
|
|
5759
5760
|
}), /*#__PURE__*/React$1.createElement(SearchIcon, null));
|
|
5760
5761
|
};
|
|
5761
5762
|
SearchInput.propTypes = {
|
|
5762
|
-
placeholder: PropTypes.string,
|
|
5763
|
-
width: PropTypes.string,
|
|
5764
|
-
height: PropTypes.string,
|
|
5765
|
-
onTyping: PropTypes.func,
|
|
5766
|
-
className: PropTypes.string
|
|
5763
|
+
placeholder: PropTypes$1.string,
|
|
5764
|
+
width: PropTypes$1.string,
|
|
5765
|
+
height: PropTypes$1.string,
|
|
5766
|
+
onTyping: PropTypes$1.func,
|
|
5767
|
+
className: PropTypes$1.string
|
|
5767
5768
|
};
|
|
5768
5769
|
SearchInput.defaultProps = {
|
|
5769
5770
|
placeholder: 'Search',
|
|
@@ -5974,32 +5975,32 @@ const TabMenu = props => {
|
|
|
5974
5975
|
}, tabs[activeTab] && tabs[activeTab].content));
|
|
5975
5976
|
};
|
|
5976
5977
|
TabMenu.propTypes = {
|
|
5977
|
-
activeColor: PropTypes.string,
|
|
5978
|
-
children: PropTypes.node,
|
|
5979
|
-
className: PropTypes.string,
|
|
5980
|
-
color: PropTypes.string,
|
|
5981
|
-
currentTab: PropTypes.number,
|
|
5982
|
-
headlineInsteadTabs: PropTypes.bool,
|
|
5983
|
-
headlineText: PropTypes.string,
|
|
5984
|
-
inputWidth: PropTypes.string,
|
|
5985
|
-
onFilterButtonClick: PropTypes.func,
|
|
5986
|
-
onSearchFieldTyping: PropTypes.func,
|
|
5987
|
-
onTabChange: PropTypes.func,
|
|
5988
|
-
panelIsOpen: PropTypes.bool,
|
|
5989
|
-
setBackground: PropTypes.bool,
|
|
5990
|
-
showActions: PropTypes.bool,
|
|
5991
|
-
showFilterButton: PropTypes.bool,
|
|
5992
|
-
showLabel: PropTypes.bool,
|
|
5993
|
-
showSearchInput: PropTypes.bool,
|
|
5994
|
-
showViewOptionsButton: PropTypes.bool,
|
|
5995
|
-
disabledButton: PropTypes.bool,
|
|
5996
|
-
setTopRightButton: PropTypes.bool,
|
|
5997
|
-
rightButtonText: PropTypes.string,
|
|
5998
|
-
rightButtonIcon: PropTypes.string,
|
|
5999
|
-
onTopButtonClick: PropTypes.func,
|
|
6000
|
-
tabs: PropTypes.arrayOf(PropTypes.shape({
|
|
6001
|
-
title: PropTypes.string,
|
|
6002
|
-
content: PropTypes.node
|
|
5978
|
+
activeColor: PropTypes$1.string,
|
|
5979
|
+
children: PropTypes$1.node,
|
|
5980
|
+
className: PropTypes$1.string,
|
|
5981
|
+
color: PropTypes$1.string,
|
|
5982
|
+
currentTab: PropTypes$1.number,
|
|
5983
|
+
headlineInsteadTabs: PropTypes$1.bool,
|
|
5984
|
+
headlineText: PropTypes$1.string,
|
|
5985
|
+
inputWidth: PropTypes$1.string,
|
|
5986
|
+
onFilterButtonClick: PropTypes$1.func,
|
|
5987
|
+
onSearchFieldTyping: PropTypes$1.func,
|
|
5988
|
+
onTabChange: PropTypes$1.func,
|
|
5989
|
+
panelIsOpen: PropTypes$1.bool,
|
|
5990
|
+
setBackground: PropTypes$1.bool,
|
|
5991
|
+
showActions: PropTypes$1.bool,
|
|
5992
|
+
showFilterButton: PropTypes$1.bool,
|
|
5993
|
+
showLabel: PropTypes$1.bool,
|
|
5994
|
+
showSearchInput: PropTypes$1.bool,
|
|
5995
|
+
showViewOptionsButton: PropTypes$1.bool,
|
|
5996
|
+
disabledButton: PropTypes$1.bool,
|
|
5997
|
+
setTopRightButton: PropTypes$1.bool,
|
|
5998
|
+
rightButtonText: PropTypes$1.string,
|
|
5999
|
+
rightButtonIcon: PropTypes$1.string,
|
|
6000
|
+
onTopButtonClick: PropTypes$1.func,
|
|
6001
|
+
tabs: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
6002
|
+
title: PropTypes$1.string,
|
|
6003
|
+
content: PropTypes$1.node
|
|
6003
6004
|
}))
|
|
6004
6005
|
};
|
|
6005
6006
|
TabMenu.defaultProps = {
|
|
@@ -11102,26 +11103,26 @@ const DropdownSingleNew = ({
|
|
|
11102
11103
|
}, option.label)))));
|
|
11103
11104
|
};
|
|
11104
11105
|
DropdownSingleNew.propTypes = {
|
|
11105
|
-
placeHolder: PropTypes.string,
|
|
11106
|
-
label: PropTypes.string,
|
|
11107
|
-
labelEmptyValue: PropTypes.string,
|
|
11108
|
-
labelColor: PropTypes.string,
|
|
11109
|
-
required: PropTypes.bool,
|
|
11110
|
-
width: PropTypes.string,
|
|
11111
|
-
disabled: PropTypes.bool,
|
|
11112
|
-
error: PropTypes.bool,
|
|
11106
|
+
placeHolder: PropTypes$1.string,
|
|
11107
|
+
label: PropTypes$1.string,
|
|
11108
|
+
labelEmptyValue: PropTypes$1.string,
|
|
11109
|
+
labelColor: PropTypes$1.string,
|
|
11110
|
+
required: PropTypes$1.bool,
|
|
11111
|
+
width: PropTypes$1.string,
|
|
11112
|
+
disabled: PropTypes$1.bool,
|
|
11113
|
+
error: PropTypes$1.bool,
|
|
11113
11114
|
errorMessage: "",
|
|
11114
|
-
options: PropTypes.arrayOf(PropTypes.shape({
|
|
11115
|
-
value: PropTypes.string,
|
|
11116
|
-
label: PropTypes.string
|
|
11115
|
+
options: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
11116
|
+
value: PropTypes$1.string,
|
|
11117
|
+
label: PropTypes$1.string
|
|
11117
11118
|
})),
|
|
11118
|
-
selectedValue: PropTypes.arrayOf(PropTypes.shape({
|
|
11119
|
-
value: PropTypes.string,
|
|
11120
|
-
label: PropTypes.string
|
|
11119
|
+
selectedValue: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
11120
|
+
value: PropTypes$1.string,
|
|
11121
|
+
label: PropTypes$1.string
|
|
11121
11122
|
})),
|
|
11122
|
-
xIconShow: PropTypes.bool,
|
|
11123
|
-
onChange: PropTypes.func,
|
|
11124
|
-
showLabelOnTop: PropTypes.bool
|
|
11123
|
+
xIconShow: PropTypes$1.bool,
|
|
11124
|
+
onChange: PropTypes$1.func,
|
|
11125
|
+
showLabelOnTop: PropTypes$1.bool
|
|
11125
11126
|
};
|
|
11126
11127
|
DropdownSingleNew.defaultProps = {
|
|
11127
11128
|
placeHolder: "Type To Search",
|
|
@@ -11633,27 +11634,27 @@ const DropdownMultiNew = ({
|
|
|
11633
11634
|
})), option.label)))));
|
|
11634
11635
|
};
|
|
11635
11636
|
DropdownMultiNew.propTypes = {
|
|
11636
|
-
placeHolder: PropTypes.string,
|
|
11637
|
-
label: PropTypes.string,
|
|
11638
|
-
labelEmptyValue: PropTypes.string,
|
|
11639
|
-
labelColor: PropTypes.string,
|
|
11640
|
-
checkBoxColor: PropTypes.string,
|
|
11641
|
-
required: PropTypes.bool,
|
|
11642
|
-
width: PropTypes.string,
|
|
11643
|
-
disabled: PropTypes.bool,
|
|
11644
|
-
error: PropTypes.bool,
|
|
11637
|
+
placeHolder: PropTypes$1.string,
|
|
11638
|
+
label: PropTypes$1.string,
|
|
11639
|
+
labelEmptyValue: PropTypes$1.string,
|
|
11640
|
+
labelColor: PropTypes$1.string,
|
|
11641
|
+
checkBoxColor: PropTypes$1.string,
|
|
11642
|
+
required: PropTypes$1.bool,
|
|
11643
|
+
width: PropTypes$1.string,
|
|
11644
|
+
disabled: PropTypes$1.bool,
|
|
11645
|
+
error: PropTypes$1.bool,
|
|
11645
11646
|
errorMessage: "",
|
|
11646
|
-
options: PropTypes.arrayOf(PropTypes.shape({
|
|
11647
|
-
value: PropTypes.string,
|
|
11648
|
-
label: PropTypes.string
|
|
11647
|
+
options: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
11648
|
+
value: PropTypes$1.string,
|
|
11649
|
+
label: PropTypes$1.string
|
|
11649
11650
|
})),
|
|
11650
|
-
selectedValue: PropTypes.arrayOf(PropTypes.shape({
|
|
11651
|
-
value: PropTypes.string,
|
|
11652
|
-
label: PropTypes.string
|
|
11651
|
+
selectedValue: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
11652
|
+
value: PropTypes$1.string,
|
|
11653
|
+
label: PropTypes$1.string
|
|
11653
11654
|
})),
|
|
11654
|
-
onChange: PropTypes.func,
|
|
11655
|
-
xIconShow: PropTypes.bool,
|
|
11656
|
-
showLabelOnTop: PropTypes.bool
|
|
11655
|
+
onChange: PropTypes$1.func,
|
|
11656
|
+
xIconShow: PropTypes$1.bool,
|
|
11657
|
+
showLabelOnTop: PropTypes$1.bool
|
|
11657
11658
|
};
|
|
11658
11659
|
DropdownMultiNew.defaultProps = {
|
|
11659
11660
|
placeHolder: "Type To Search",
|
|
@@ -11690,89 +11691,92 @@ const DropdownMain = dt.div`
|
|
|
11690
11691
|
`;
|
|
11691
11692
|
|
|
11692
11693
|
/* eslint-disable react/prop-types */
|
|
11693
|
-
const DropdownNew =
|
|
11694
|
-
|
|
11695
|
-
|
|
11696
|
-
|
|
11697
|
-
|
|
11698
|
-
|
|
11699
|
-
|
|
11700
|
-
|
|
11701
|
-
|
|
11702
|
-
|
|
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
|
-
|
|
11694
|
+
const DropdownNew = _ref => {
|
|
11695
|
+
let {
|
|
11696
|
+
isMulti,
|
|
11697
|
+
label,
|
|
11698
|
+
labelEmptyValue,
|
|
11699
|
+
options,
|
|
11700
|
+
selectedValue,
|
|
11701
|
+
placeHolder,
|
|
11702
|
+
onChange,
|
|
11703
|
+
required,
|
|
11704
|
+
disabled,
|
|
11705
|
+
width,
|
|
11706
|
+
error,
|
|
11707
|
+
errorMessage,
|
|
11708
|
+
labelColor,
|
|
11709
|
+
checkBoxColor,
|
|
11710
|
+
xIconShow,
|
|
11711
|
+
showLabelOnTop,
|
|
11712
|
+
orderBy,
|
|
11713
|
+
elementType
|
|
11714
|
+
} = _ref;
|
|
11715
|
+
return /*#__PURE__*/React$1.createElement(DropdownMain, {
|
|
11716
|
+
className: "DropdownMain",
|
|
11717
|
+
width: width
|
|
11718
|
+
}, isMulti ? /*#__PURE__*/React$1.createElement(DropdownMultiNew, {
|
|
11719
|
+
className: "DropdownMultiNew",
|
|
11720
|
+
placeHolder: placeHolder,
|
|
11721
|
+
label: label,
|
|
11722
|
+
labelEmptyValue: labelEmptyValue,
|
|
11723
|
+
labelColor: labelColor,
|
|
11724
|
+
checkBoxColor: checkBoxColor,
|
|
11725
|
+
required: required,
|
|
11726
|
+
options: options,
|
|
11727
|
+
width: width,
|
|
11728
|
+
disabled: disabled,
|
|
11729
|
+
error: error,
|
|
11730
|
+
errorMessage: errorMessage,
|
|
11731
|
+
selectedValue: selectedValue,
|
|
11732
|
+
xIconShow: xIconShow,
|
|
11733
|
+
onChange: onChange,
|
|
11734
|
+
showLabelOnTop: showLabelOnTop,
|
|
11735
|
+
orderBy: orderBy,
|
|
11736
|
+
elementType: elementType
|
|
11737
|
+
}) : /*#__PURE__*/React$1.createElement(DropdownSingleNew, {
|
|
11738
|
+
className: "DropdownSingleNew",
|
|
11739
|
+
placeHolder: placeHolder,
|
|
11740
|
+
label: label,
|
|
11741
|
+
labelEmptyValue: labelEmptyValue,
|
|
11742
|
+
labelColor: labelColor,
|
|
11743
|
+
checkBoxColor: checkBoxColor,
|
|
11744
|
+
required: required,
|
|
11745
|
+
options: options,
|
|
11746
|
+
width: width,
|
|
11747
|
+
disabled: disabled,
|
|
11748
|
+
error: error,
|
|
11749
|
+
errorMessage: errorMessage,
|
|
11750
|
+
selectedValue: selectedValue,
|
|
11751
|
+
xIconShow: xIconShow,
|
|
11752
|
+
onChange: onChange,
|
|
11753
|
+
showLabelOnTop: showLabelOnTop,
|
|
11754
|
+
orderBy: orderBy,
|
|
11755
|
+
elementType: elementType
|
|
11756
|
+
}));
|
|
11757
|
+
};
|
|
11754
11758
|
DropdownNew.propTypes = {
|
|
11755
|
-
placeHolder: PropTypes.string,
|
|
11756
|
-
label: PropTypes.string,
|
|
11757
|
-
labelEmptyValue: PropTypes.string,
|
|
11758
|
-
labelColor: PropTypes.string,
|
|
11759
|
-
checkBoxColor: PropTypes.string,
|
|
11760
|
-
required: PropTypes.bool,
|
|
11761
|
-
width: PropTypes.string,
|
|
11762
|
-
disabled: PropTypes.bool,
|
|
11763
|
-
error: PropTypes.bool,
|
|
11764
|
-
errorMessage: PropTypes.string,
|
|
11765
|
-
options: PropTypes.arrayOf(PropTypes.shape({
|
|
11766
|
-
id: PropTypes.string,
|
|
11767
|
-
label: PropTypes.string
|
|
11759
|
+
placeHolder: PropTypes$1.string,
|
|
11760
|
+
label: PropTypes$1.string,
|
|
11761
|
+
labelEmptyValue: PropTypes$1.string,
|
|
11762
|
+
labelColor: PropTypes$1.string,
|
|
11763
|
+
checkBoxColor: PropTypes$1.string,
|
|
11764
|
+
required: PropTypes$1.bool,
|
|
11765
|
+
width: PropTypes$1.string,
|
|
11766
|
+
disabled: PropTypes$1.bool,
|
|
11767
|
+
error: PropTypes$1.bool,
|
|
11768
|
+
errorMessage: PropTypes$1.string,
|
|
11769
|
+
options: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
11770
|
+
id: PropTypes$1.string,
|
|
11771
|
+
label: PropTypes$1.string
|
|
11768
11772
|
})),
|
|
11769
|
-
selectedValue: PropTypes.arrayOf(PropTypes.shape({
|
|
11770
|
-
id: PropTypes.string,
|
|
11771
|
-
label: PropTypes.string
|
|
11773
|
+
selectedValue: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
11774
|
+
id: PropTypes$1.string,
|
|
11775
|
+
label: PropTypes$1.string
|
|
11772
11776
|
})),
|
|
11773
|
-
xIconShow: PropTypes.bool,
|
|
11774
|
-
onChange: PropTypes.func,
|
|
11775
|
-
showLabelOnTop: PropTypes.bool
|
|
11777
|
+
xIconShow: PropTypes$1.bool,
|
|
11778
|
+
onChange: PropTypes$1.func,
|
|
11779
|
+
showLabelOnTop: PropTypes$1.bool
|
|
11776
11780
|
};
|
|
11777
11781
|
DropdownNew.defaultProps = {
|
|
11778
11782
|
placeHolder: "Type...",
|
|
@@ -12164,20 +12168,21 @@ const DatePicker = ({
|
|
|
12164
12168
|
};
|
|
12165
12169
|
|
|
12166
12170
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
12167
|
-
const RangePicker =
|
|
12168
|
-
|
|
12169
|
-
|
|
12170
|
-
|
|
12171
|
-
|
|
12172
|
-
|
|
12173
|
-
|
|
12174
|
-
|
|
12175
|
-
|
|
12176
|
-
|
|
12177
|
-
|
|
12178
|
-
|
|
12179
|
-
|
|
12180
|
-
|
|
12171
|
+
const RangePicker = _ref => {
|
|
12172
|
+
let {
|
|
12173
|
+
label,
|
|
12174
|
+
onChange,
|
|
12175
|
+
borderRadius,
|
|
12176
|
+
required,
|
|
12177
|
+
width,
|
|
12178
|
+
height,
|
|
12179
|
+
placeholder,
|
|
12180
|
+
disabled,
|
|
12181
|
+
borderColor,
|
|
12182
|
+
borderColorFocus,
|
|
12183
|
+
textColor,
|
|
12184
|
+
selectedValue
|
|
12185
|
+
} = _ref;
|
|
12181
12186
|
const [isFocused, setIsFocused] = useState(false);
|
|
12182
12187
|
const [isOpen, setIsOpen] = useState(false);
|
|
12183
12188
|
const [value, setValue] = useState(''); // Added value state
|
|
@@ -12309,20 +12314,20 @@ const RangePicker = ({
|
|
|
12309
12314
|
})));
|
|
12310
12315
|
};
|
|
12311
12316
|
RangePicker.propTypes = {
|
|
12312
|
-
label: PropTypes.string.isRequired,
|
|
12313
|
-
onChange: PropTypes.func.isRequired,
|
|
12314
|
-
borderRadius: PropTypes.string.isRequired,
|
|
12315
|
-
required: PropTypes.bool,
|
|
12316
|
-
width: PropTypes.string,
|
|
12317
|
-
height: PropTypes.string,
|
|
12318
|
-
placeholder: PropTypes.string,
|
|
12319
|
-
disabled: PropTypes.bool,
|
|
12320
|
-
borderColor: PropTypes.string,
|
|
12317
|
+
label: PropTypes$1.string.isRequired,
|
|
12318
|
+
onChange: PropTypes$1.func.isRequired,
|
|
12319
|
+
borderRadius: PropTypes$1.string.isRequired,
|
|
12320
|
+
required: PropTypes$1.bool,
|
|
12321
|
+
width: PropTypes$1.string,
|
|
12322
|
+
height: PropTypes$1.string,
|
|
12323
|
+
placeholder: PropTypes$1.string,
|
|
12324
|
+
disabled: PropTypes$1.bool,
|
|
12325
|
+
borderColor: PropTypes$1.string,
|
|
12321
12326
|
// Added borderColor prop
|
|
12322
|
-
borderColorFocus: PropTypes.string,
|
|
12323
|
-
textColor: PropTypes.string,
|
|
12327
|
+
borderColorFocus: PropTypes$1.string,
|
|
12328
|
+
textColor: PropTypes$1.string,
|
|
12324
12329
|
// Added textColor prop
|
|
12325
|
-
selectedValue: PropTypes.string
|
|
12330
|
+
selectedValue: PropTypes$1.string
|
|
12326
12331
|
};
|
|
12327
12332
|
|
|
12328
12333
|
// Adding defaultProps
|
|
@@ -12742,19 +12747,19 @@ const QuarterPicker = ({
|
|
|
12742
12747
|
})));
|
|
12743
12748
|
};
|
|
12744
12749
|
QuarterPicker.propTypes = {
|
|
12745
|
-
availableQuarters: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12746
|
-
label: PropTypes.string.isRequired,
|
|
12747
|
-
onChange: PropTypes.func.isRequired,
|
|
12748
|
-
borderRadius: PropTypes.string.isRequired,
|
|
12749
|
-
required: PropTypes.bool,
|
|
12750
|
-
width: PropTypes.string,
|
|
12751
|
-
height: PropTypes.string,
|
|
12752
|
-
placeholder: PropTypes.string,
|
|
12753
|
-
disabled: PropTypes.bool,
|
|
12754
|
-
borderColor: PropTypes.string,
|
|
12755
|
-
borderColorFocus: PropTypes.string,
|
|
12756
|
-
textColor: PropTypes.string,
|
|
12757
|
-
selectedValue: PropTypes.string
|
|
12750
|
+
availableQuarters: PropTypes$1.arrayOf(PropTypes$1.string).isRequired,
|
|
12751
|
+
label: PropTypes$1.string.isRequired,
|
|
12752
|
+
onChange: PropTypes$1.func.isRequired,
|
|
12753
|
+
borderRadius: PropTypes$1.string.isRequired,
|
|
12754
|
+
required: PropTypes$1.bool,
|
|
12755
|
+
width: PropTypes$1.string,
|
|
12756
|
+
height: PropTypes$1.string,
|
|
12757
|
+
placeholder: PropTypes$1.string,
|
|
12758
|
+
disabled: PropTypes$1.bool,
|
|
12759
|
+
borderColor: PropTypes$1.string,
|
|
12760
|
+
borderColorFocus: PropTypes$1.string,
|
|
12761
|
+
textColor: PropTypes$1.string,
|
|
12762
|
+
selectedValue: PropTypes$1.string
|
|
12758
12763
|
};
|
|
12759
12764
|
QuarterPicker.defaultProps = {
|
|
12760
12765
|
required: true,
|
|
@@ -13192,22 +13197,22 @@ const MonthPicker = ({
|
|
|
13192
13197
|
})));
|
|
13193
13198
|
};
|
|
13194
13199
|
MonthPicker.propTypes = {
|
|
13195
|
-
availableMonths: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
13196
|
-
label: PropTypes.string.isRequired,
|
|
13197
|
-
onChange: PropTypes.func.isRequired,
|
|
13198
|
-
borderRadius: PropTypes.string.isRequired,
|
|
13199
|
-
required: PropTypes.bool,
|
|
13200
|
-
width: PropTypes.string,
|
|
13201
|
-
height: PropTypes.string,
|
|
13202
|
-
placeholder: PropTypes.string,
|
|
13203
|
-
disabled: PropTypes.bool,
|
|
13204
|
-
borderColor: PropTypes.string,
|
|
13200
|
+
availableMonths: PropTypes$1.arrayOf(PropTypes$1.string).isRequired,
|
|
13201
|
+
label: PropTypes$1.string.isRequired,
|
|
13202
|
+
onChange: PropTypes$1.func.isRequired,
|
|
13203
|
+
borderRadius: PropTypes$1.string.isRequired,
|
|
13204
|
+
required: PropTypes$1.bool,
|
|
13205
|
+
width: PropTypes$1.string,
|
|
13206
|
+
height: PropTypes$1.string,
|
|
13207
|
+
placeholder: PropTypes$1.string,
|
|
13208
|
+
disabled: PropTypes$1.bool,
|
|
13209
|
+
borderColor: PropTypes$1.string,
|
|
13205
13210
|
// Added borderColor prop
|
|
13206
|
-
borderColorFocus: PropTypes.string,
|
|
13211
|
+
borderColorFocus: PropTypes$1.string,
|
|
13207
13212
|
// Added borderColorFocus prop
|
|
13208
|
-
textColor: PropTypes.string,
|
|
13213
|
+
textColor: PropTypes$1.string,
|
|
13209
13214
|
// Added textColor prop
|
|
13210
|
-
selectedValue: PropTypes.string
|
|
13215
|
+
selectedValue: PropTypes$1.string
|
|
13211
13216
|
};
|
|
13212
13217
|
MonthPicker.defaultProps = {
|
|
13213
13218
|
required: true,
|
|
@@ -13873,50 +13878,50 @@ const FilterPanel = props => {
|
|
|
13873
13878
|
})));
|
|
13874
13879
|
};
|
|
13875
13880
|
FilterPanel.propTypes = {
|
|
13876
|
-
availableQuarters: PropTypes.arrayOf(PropTypes.string),
|
|
13877
|
-
availableMonths: PropTypes.arrayOf(PropTypes.string),
|
|
13878
|
-
availableYears: PropTypes.arrayOf(PropTypes.string),
|
|
13879
|
-
fieldsData: PropTypes.arrayOf(PropTypes.shape({
|
|
13880
|
-
disabled: PropTypes.bool,
|
|
13881
|
-
required: PropTypes.bool,
|
|
13882
|
-
inputType: PropTypes.string,
|
|
13883
|
-
placeHolder: PropTypes.string,
|
|
13884
|
-
xIconShow: PropTypes.bool,
|
|
13885
|
-
label: PropTypes.string,
|
|
13886
|
-
labelEmptyValue: PropTypes.string,
|
|
13887
|
-
name: PropTypes.string,
|
|
13888
|
-
periodPickerSelectedValue: PropTypes.string,
|
|
13889
|
-
selectedValue: PropTypes.arrayOf(PropTypes.shape({
|
|
13890
|
-
value: PropTypes.string,
|
|
13891
|
-
label: PropTypes.string
|
|
13881
|
+
availableQuarters: PropTypes$1.arrayOf(PropTypes$1.string),
|
|
13882
|
+
availableMonths: PropTypes$1.arrayOf(PropTypes$1.string),
|
|
13883
|
+
availableYears: PropTypes$1.arrayOf(PropTypes$1.string),
|
|
13884
|
+
fieldsData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
13885
|
+
disabled: PropTypes$1.bool,
|
|
13886
|
+
required: PropTypes$1.bool,
|
|
13887
|
+
inputType: PropTypes$1.string,
|
|
13888
|
+
placeHolder: PropTypes$1.string,
|
|
13889
|
+
xIconShow: PropTypes$1.bool,
|
|
13890
|
+
label: PropTypes$1.string,
|
|
13891
|
+
labelEmptyValue: PropTypes$1.string,
|
|
13892
|
+
name: PropTypes$1.string,
|
|
13893
|
+
periodPickerSelectedValue: PropTypes$1.string,
|
|
13894
|
+
selectedValue: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
13895
|
+
value: PropTypes$1.string,
|
|
13896
|
+
label: PropTypes$1.string
|
|
13892
13897
|
})),
|
|
13893
|
-
orderBy: PropTypes.string,
|
|
13894
|
-
elementType: PropTypes.string,
|
|
13895
|
-
value: PropTypes.number,
|
|
13896
|
-
color: PropTypes.string,
|
|
13897
|
-
defaultValueYears: PropTypes.shape({
|
|
13898
|
-
value: PropTypes.string,
|
|
13899
|
-
label: PropTypes.string
|
|
13898
|
+
orderBy: PropTypes$1.string,
|
|
13899
|
+
elementType: PropTypes$1.string,
|
|
13900
|
+
value: PropTypes$1.number,
|
|
13901
|
+
color: PropTypes$1.string,
|
|
13902
|
+
defaultValueYears: PropTypes$1.shape({
|
|
13903
|
+
value: PropTypes$1.string,
|
|
13904
|
+
label: PropTypes$1.string
|
|
13900
13905
|
}),
|
|
13901
|
-
dropdownOptions: PropTypes.arrayOf(PropTypes.shape({
|
|
13902
|
-
value: PropTypes.string,
|
|
13903
|
-
label: PropTypes.string
|
|
13906
|
+
dropdownOptions: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
13907
|
+
value: PropTypes$1.string,
|
|
13908
|
+
label: PropTypes$1.string
|
|
13904
13909
|
}))
|
|
13905
13910
|
})),
|
|
13906
|
-
width: PropTypes.string,
|
|
13907
|
-
height: PropTypes.string,
|
|
13908
|
-
okButtonBackgroundColor: PropTypes.string,
|
|
13909
|
-
okButtonHoverColor: PropTypes.string,
|
|
13910
|
-
resetButtonHoverColor: PropTypes.string,
|
|
13911
|
-
borderColor: PropTypes.string,
|
|
13912
|
-
onOkClick: PropTypes.func,
|
|
13913
|
-
onResetClick: PropTypes.func,
|
|
13914
|
-
onItemValueChanged: PropTypes.func,
|
|
13915
|
-
disableOKButton: PropTypes.bool,
|
|
13916
|
-
className: PropTypes.string,
|
|
13917
|
-
useExternalFilterState: PropTypes.bool,
|
|
13918
|
-
showShadow: PropTypes.bool,
|
|
13919
|
-
tooltipTextGoButton: PropTypes.string
|
|
13911
|
+
width: PropTypes$1.string,
|
|
13912
|
+
height: PropTypes$1.string,
|
|
13913
|
+
okButtonBackgroundColor: PropTypes$1.string,
|
|
13914
|
+
okButtonHoverColor: PropTypes$1.string,
|
|
13915
|
+
resetButtonHoverColor: PropTypes$1.string,
|
|
13916
|
+
borderColor: PropTypes$1.string,
|
|
13917
|
+
onOkClick: PropTypes$1.func,
|
|
13918
|
+
onResetClick: PropTypes$1.func,
|
|
13919
|
+
onItemValueChanged: PropTypes$1.func,
|
|
13920
|
+
disableOKButton: PropTypes$1.bool,
|
|
13921
|
+
className: PropTypes$1.string,
|
|
13922
|
+
useExternalFilterState: PropTypes$1.bool,
|
|
13923
|
+
showShadow: PropTypes$1.bool,
|
|
13924
|
+
tooltipTextGoButton: PropTypes$1.string
|
|
13920
13925
|
};
|
|
13921
13926
|
FilterPanel.defaultProps = {
|
|
13922
13927
|
availableQuarters: ['Q1-2024'],
|
|
@@ -14620,28 +14625,28 @@ const ReportTable = props => {
|
|
|
14620
14625
|
}), /*#__PURE__*/React$1.createElement(InfoText, null, "Download table to get the full data")) : "");
|
|
14621
14626
|
};
|
|
14622
14627
|
ReportTable.propTypes = {
|
|
14623
|
-
buttonText: PropTypes.string,
|
|
14624
|
-
buttonIconName: PropTypes.string,
|
|
14625
|
-
tableData: PropTypes.shape({
|
|
14626
|
-
columnsHeadings: PropTypes.arrayOf(PropTypes.shape({
|
|
14627
|
-
label: PropTypes.string,
|
|
14628
|
-
key: PropTypes.string
|
|
14628
|
+
buttonText: PropTypes$1.string,
|
|
14629
|
+
buttonIconName: PropTypes$1.string,
|
|
14630
|
+
tableData: PropTypes$1.shape({
|
|
14631
|
+
columnsHeadings: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
14632
|
+
label: PropTypes$1.string,
|
|
14633
|
+
key: PropTypes$1.string
|
|
14629
14634
|
})),
|
|
14630
|
-
rowsValues: PropTypes.arrayOf(PropTypes.objectOf(PropTypes.string))
|
|
14635
|
+
rowsValues: PropTypes$1.arrayOf(PropTypes$1.objectOf(PropTypes$1.string))
|
|
14631
14636
|
}),
|
|
14632
|
-
maxColumnsNumber: PropTypes.number,
|
|
14633
|
-
useColorLinearGradient: PropTypes.bool,
|
|
14634
|
-
useSelectButtons: PropTypes.bool,
|
|
14635
|
-
disableSelectButtons: PropTypes.bool,
|
|
14636
|
-
disableInfo: PropTypes.bool,
|
|
14637
|
-
selectTextColor: PropTypes.string,
|
|
14638
|
-
onSelectRowClick: PropTypes.func,
|
|
14639
|
-
onCheckRowClick: PropTypes.func,
|
|
14640
|
-
onAllRowsCheckBoxClick: PropTypes.func,
|
|
14641
|
-
useCheckBoxes: PropTypes.bool,
|
|
14642
|
-
selectHoverColor: PropTypes.string,
|
|
14643
|
-
enableHover: PropTypes.bool,
|
|
14644
|
-
enablePagination: PropTypes.bool
|
|
14637
|
+
maxColumnsNumber: PropTypes$1.number,
|
|
14638
|
+
useColorLinearGradient: PropTypes$1.bool,
|
|
14639
|
+
useSelectButtons: PropTypes$1.bool,
|
|
14640
|
+
disableSelectButtons: PropTypes$1.bool,
|
|
14641
|
+
disableInfo: PropTypes$1.bool,
|
|
14642
|
+
selectTextColor: PropTypes$1.string,
|
|
14643
|
+
onSelectRowClick: PropTypes$1.func,
|
|
14644
|
+
onCheckRowClick: PropTypes$1.func,
|
|
14645
|
+
onAllRowsCheckBoxClick: PropTypes$1.func,
|
|
14646
|
+
useCheckBoxes: PropTypes$1.bool,
|
|
14647
|
+
selectHoverColor: PropTypes$1.string,
|
|
14648
|
+
enableHover: PropTypes$1.bool,
|
|
14649
|
+
enablePagination: PropTypes$1.bool
|
|
14645
14650
|
};
|
|
14646
14651
|
ReportTable.defaultProps = {
|
|
14647
14652
|
buttonText: "Select",
|
|
@@ -14775,12 +14780,12 @@ const EventListItem = props => {
|
|
|
14775
14780
|
})));
|
|
14776
14781
|
};
|
|
14777
14782
|
EventListItem.propTypes = {
|
|
14778
|
-
eventName: PropTypes.string,
|
|
14779
|
-
period: PropTypes.string,
|
|
14780
|
-
width: PropTypes.string,
|
|
14781
|
-
height: PropTypes.string,
|
|
14782
|
-
selectTextColor: PropTypes.string,
|
|
14783
|
-
onClick: PropTypes.func
|
|
14783
|
+
eventName: PropTypes$1.string,
|
|
14784
|
+
period: PropTypes$1.string,
|
|
14785
|
+
width: PropTypes$1.string,
|
|
14786
|
+
height: PropTypes$1.string,
|
|
14787
|
+
selectTextColor: PropTypes$1.string,
|
|
14788
|
+
onClick: PropTypes$1.func
|
|
14784
14789
|
};
|
|
14785
14790
|
EventListItem.defaultProps = {
|
|
14786
14791
|
eventName: '',
|
|
@@ -14864,15 +14869,15 @@ const EventList = props => {
|
|
|
14864
14869
|
//= ======================================== MAIN RETURN END====================================
|
|
14865
14870
|
};
|
|
14866
14871
|
EventList.propTypes = {
|
|
14867
|
-
eventsData: PropTypes.arrayOf(PropTypes.shape({
|
|
14868
|
-
eventName: PropTypes.string,
|
|
14869
|
-
period: PropTypes.string
|
|
14872
|
+
eventsData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
14873
|
+
eventName: PropTypes$1.string,
|
|
14874
|
+
period: PropTypes$1.string
|
|
14870
14875
|
})),
|
|
14871
|
-
selectTextColor: PropTypes.string,
|
|
14872
|
-
height: PropTypes.string,
|
|
14873
|
-
width: PropTypes.string,
|
|
14874
|
-
itemHeight: PropTypes.string,
|
|
14875
|
-
onSelectClick: PropTypes.func
|
|
14876
|
+
selectTextColor: PropTypes$1.string,
|
|
14877
|
+
height: PropTypes$1.string,
|
|
14878
|
+
width: PropTypes$1.string,
|
|
14879
|
+
itemHeight: PropTypes$1.string,
|
|
14880
|
+
onSelectClick: PropTypes$1.func
|
|
14876
14881
|
};
|
|
14877
14882
|
EventList.defaultProps = {
|
|
14878
14883
|
eventsData: [],
|
|
@@ -15196,15 +15201,15 @@ const BannerEventBox = props => {
|
|
|
15196
15201
|
}, /*#__PURE__*/React$1.createElement(KeyBlock, null, /*#__PURE__*/React$1.createElement(Key, null, item.name), /*#__PURE__*/React$1.createElement("br", null), /*#__PURE__*/React$1.createElement(Count, null, item.items)), index !== data.length - 1 && /*#__PURE__*/React$1.createElement(Seperator, null)))));
|
|
15197
15202
|
};
|
|
15198
15203
|
BannerEventBox.propTypes = {
|
|
15199
|
-
width: PropTypes.string,
|
|
15200
|
-
height: PropTypes.string,
|
|
15201
|
-
banner: PropTypes.string,
|
|
15202
|
-
buttonText: PropTypes.string,
|
|
15203
|
-
description: PropTypes.string,
|
|
15204
|
-
disabled: PropTypes.bool,
|
|
15205
|
-
dates: PropTypes.arrayOf(PropTypes.string),
|
|
15206
|
-
data: PropTypes.arrayOf(PropTypes.shape({})),
|
|
15207
|
-
onInfoClick: PropTypes.func
|
|
15204
|
+
width: PropTypes$1.string,
|
|
15205
|
+
height: PropTypes$1.string,
|
|
15206
|
+
banner: PropTypes$1.string,
|
|
15207
|
+
buttonText: PropTypes$1.string,
|
|
15208
|
+
description: PropTypes$1.string,
|
|
15209
|
+
disabled: PropTypes$1.bool,
|
|
15210
|
+
dates: PropTypes$1.arrayOf(PropTypes$1.string),
|
|
15211
|
+
data: PropTypes$1.arrayOf(PropTypes$1.shape({})),
|
|
15212
|
+
onInfoClick: PropTypes$1.func
|
|
15208
15213
|
};
|
|
15209
15214
|
BannerEventBox.defaultProps = {
|
|
15210
15215
|
width: "auto",
|
|
@@ -15309,24 +15314,24 @@ const BannerEventBoxList = props => {
|
|
|
15309
15314
|
})), showDraft && /*#__PURE__*/React$1.createElement(DraftTag$1, null, "DRAFT")) : children));
|
|
15310
15315
|
};
|
|
15311
15316
|
BannerEventBoxList.propTypes = {
|
|
15312
|
-
className: PropTypes.string,
|
|
15313
|
-
width: PropTypes.string,
|
|
15314
|
-
height: PropTypes.string,
|
|
15315
|
-
eventType: PropTypes.string,
|
|
15316
|
-
eventName: PropTypes.string,
|
|
15317
|
-
count: PropTypes.number,
|
|
15318
|
-
toggleColor: PropTypes.string,
|
|
15319
|
-
data: PropTypes.arrayOf(PropTypes.shape({})),
|
|
15320
|
-
retailer: PropTypes.string,
|
|
15321
|
-
retailerFile: PropTypes.func,
|
|
15322
|
-
showLoader: PropTypes.bool,
|
|
15323
|
-
showEventDetails: PropTypes.bool,
|
|
15324
|
-
cardsContent: PropTypes.bool,
|
|
15325
|
-
linkText: PropTypes.string,
|
|
15326
|
-
disableToggle: PropTypes.bool,
|
|
15327
|
-
children: PropTypes.node,
|
|
15328
|
-
bannerWidth: PropTypes.string,
|
|
15329
|
-
showDraft: PropTypes.bool
|
|
15317
|
+
className: PropTypes$1.string,
|
|
15318
|
+
width: PropTypes$1.string,
|
|
15319
|
+
height: PropTypes$1.string,
|
|
15320
|
+
eventType: PropTypes$1.string,
|
|
15321
|
+
eventName: PropTypes$1.string,
|
|
15322
|
+
count: PropTypes$1.number,
|
|
15323
|
+
toggleColor: PropTypes$1.string,
|
|
15324
|
+
data: PropTypes$1.arrayOf(PropTypes$1.shape({})),
|
|
15325
|
+
retailer: PropTypes$1.string,
|
|
15326
|
+
retailerFile: PropTypes$1.func,
|
|
15327
|
+
showLoader: PropTypes$1.bool,
|
|
15328
|
+
showEventDetails: PropTypes$1.bool,
|
|
15329
|
+
cardsContent: PropTypes$1.bool,
|
|
15330
|
+
linkText: PropTypes$1.string,
|
|
15331
|
+
disableToggle: PropTypes$1.bool,
|
|
15332
|
+
children: PropTypes$1.node,
|
|
15333
|
+
bannerWidth: PropTypes$1.string,
|
|
15334
|
+
showDraft: PropTypes$1.bool
|
|
15330
15335
|
};
|
|
15331
15336
|
BannerEventBoxList.defaultProps = {
|
|
15332
15337
|
className: '',
|
|
@@ -15471,10 +15476,10 @@ const DialogOverlay = props => {
|
|
|
15471
15476
|
}, children)));
|
|
15472
15477
|
};
|
|
15473
15478
|
DialogOverlay.propTypes = {
|
|
15474
|
-
title: PropTypes.string,
|
|
15475
|
-
children: PropTypes.node,
|
|
15476
|
-
onDialogClose: PropTypes.func,
|
|
15477
|
-
className: PropTypes.string
|
|
15479
|
+
title: PropTypes$1.string,
|
|
15480
|
+
children: PropTypes$1.node,
|
|
15481
|
+
onDialogClose: PropTypes$1.func,
|
|
15482
|
+
className: PropTypes$1.string
|
|
15478
15483
|
};
|
|
15479
15484
|
DialogOverlay.defaultProps = {
|
|
15480
15485
|
title: 'Title',
|
|
@@ -26061,35 +26066,35 @@ const CollapseHeader = props => {
|
|
|
26061
26066
|
}, data.eventDatesValue) : "")))));
|
|
26062
26067
|
};
|
|
26063
26068
|
CollapseHeader.propTypes = {
|
|
26064
|
-
className: PropTypes.string,
|
|
26065
|
-
showRetailerIcon: PropTypes.bool,
|
|
26066
|
-
showPeriodIcon: PropTypes.bool,
|
|
26067
|
-
viewCreativeRetailersData: PropTypes.arrayOf(PropTypes.shape({
|
|
26068
|
-
label: PropTypes.string
|
|
26069
|
+
className: PropTypes$1.string,
|
|
26070
|
+
showRetailerIcon: PropTypes$1.bool,
|
|
26071
|
+
showPeriodIcon: PropTypes$1.bool,
|
|
26072
|
+
viewCreativeRetailersData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
26073
|
+
label: PropTypes$1.string
|
|
26069
26074
|
})),
|
|
26070
|
-
data: PropTypes.shape({
|
|
26071
|
-
eventType: PropTypes.string,
|
|
26072
|
-
retailer: PropTypes.string,
|
|
26073
|
-
eventDescription: PropTypes.string,
|
|
26074
|
-
objectivesDescription: PropTypes.string,
|
|
26075
|
-
eventDatesValue: PropTypes.string,
|
|
26076
|
-
externalEventDescription: PropTypes.string,
|
|
26077
|
-
externalEventID: PropTypes.string,
|
|
26078
|
-
storeType: PropTypes.string,
|
|
26079
|
-
category: PropTypes.string,
|
|
26080
|
-
supplier: PropTypes.string,
|
|
26081
|
-
brand: PropTypes.string
|
|
26075
|
+
data: PropTypes$1.shape({
|
|
26076
|
+
eventType: PropTypes$1.string,
|
|
26077
|
+
retailer: PropTypes$1.string,
|
|
26078
|
+
eventDescription: PropTypes$1.string,
|
|
26079
|
+
objectivesDescription: PropTypes$1.string,
|
|
26080
|
+
eventDatesValue: PropTypes$1.string,
|
|
26081
|
+
externalEventDescription: PropTypes$1.string,
|
|
26082
|
+
externalEventID: PropTypes$1.string,
|
|
26083
|
+
storeType: PropTypes$1.string,
|
|
26084
|
+
category: PropTypes$1.string,
|
|
26085
|
+
supplier: PropTypes$1.string,
|
|
26086
|
+
brand: PropTypes$1.string
|
|
26082
26087
|
}),
|
|
26083
|
-
showViewCreativeButton: PropTypes.bool,
|
|
26084
|
-
viewCreativeOnClick: PropTypes.func,
|
|
26085
|
-
descriptionTitle: PropTypes.string,
|
|
26086
|
-
datesTitle: PropTypes.string,
|
|
26087
|
-
width: PropTypes.string,
|
|
26088
|
-
height: PropTypes.string,
|
|
26089
|
-
textcolor: PropTypes.string,
|
|
26090
|
-
showDraft: PropTypes.bool,
|
|
26091
|
-
buttonText: PropTypes.string,
|
|
26092
|
-
disabled: PropTypes.bool
|
|
26088
|
+
showViewCreativeButton: PropTypes$1.bool,
|
|
26089
|
+
viewCreativeOnClick: PropTypes$1.func,
|
|
26090
|
+
descriptionTitle: PropTypes$1.string,
|
|
26091
|
+
datesTitle: PropTypes$1.string,
|
|
26092
|
+
width: PropTypes$1.string,
|
|
26093
|
+
height: PropTypes$1.string,
|
|
26094
|
+
textcolor: PropTypes$1.string,
|
|
26095
|
+
showDraft: PropTypes$1.bool,
|
|
26096
|
+
buttonText: PropTypes$1.string,
|
|
26097
|
+
disabled: PropTypes$1.bool
|
|
26093
26098
|
};
|
|
26094
26099
|
CollapseHeader.defaultProps = {
|
|
26095
26100
|
className: "",
|
|
@@ -26452,25 +26457,25 @@ const QuickFilterDropdownSingle = ({
|
|
|
26452
26457
|
}, highlightText(option.label, inputValue))))));
|
|
26453
26458
|
};
|
|
26454
26459
|
QuickFilterDropdownSingle.propTypes = {
|
|
26455
|
-
placeHolder: PropTypes.string,
|
|
26456
|
-
label: PropTypes.string,
|
|
26457
|
-
labelColor: PropTypes.string,
|
|
26458
|
-
hoverColor: PropTypes.string,
|
|
26459
|
-
width: PropTypes.string,
|
|
26460
|
-
disabled: PropTypes.bool,
|
|
26461
|
-
error: PropTypes.bool,
|
|
26460
|
+
placeHolder: PropTypes$1.string,
|
|
26461
|
+
label: PropTypes$1.string,
|
|
26462
|
+
labelColor: PropTypes$1.string,
|
|
26463
|
+
hoverColor: PropTypes$1.string,
|
|
26464
|
+
width: PropTypes$1.string,
|
|
26465
|
+
disabled: PropTypes$1.bool,
|
|
26466
|
+
error: PropTypes$1.bool,
|
|
26462
26467
|
errorMessage: "",
|
|
26463
|
-
options: PropTypes.arrayOf(PropTypes.shape({
|
|
26464
|
-
value: PropTypes.string,
|
|
26465
|
-
label: PropTypes.string
|
|
26468
|
+
options: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
26469
|
+
value: PropTypes$1.string,
|
|
26470
|
+
label: PropTypes$1.string
|
|
26466
26471
|
})),
|
|
26467
|
-
selectedValue: PropTypes.arrayOf(PropTypes.shape({
|
|
26468
|
-
value: PropTypes.string,
|
|
26469
|
-
label: PropTypes.string
|
|
26472
|
+
selectedValue: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
26473
|
+
value: PropTypes$1.string,
|
|
26474
|
+
label: PropTypes$1.string
|
|
26470
26475
|
})),
|
|
26471
|
-
xIconShow: PropTypes.bool,
|
|
26472
|
-
onChange: PropTypes.func,
|
|
26473
|
-
showLabelOnTop: PropTypes.bool
|
|
26476
|
+
xIconShow: PropTypes$1.bool,
|
|
26477
|
+
onChange: PropTypes$1.func,
|
|
26478
|
+
showLabelOnTop: PropTypes$1.bool
|
|
26474
26479
|
};
|
|
26475
26480
|
QuickFilterDropdownSingle.defaultProps = {
|
|
26476
26481
|
placeHolder: "Type...",
|
|
@@ -26929,27 +26934,27 @@ const QuickFilterDropdownMultiSelection = ({
|
|
|
26929
26934
|
})), option.label)))));
|
|
26930
26935
|
};
|
|
26931
26936
|
QuickFilterDropdownMultiSelection.propTypes = {
|
|
26932
|
-
placeHolder: PropTypes.string,
|
|
26933
|
-
label: PropTypes.string,
|
|
26934
|
-
labelEmptyValue: PropTypes.string,
|
|
26935
|
-
labelColor: PropTypes.string,
|
|
26936
|
-
checkBoxColor: PropTypes.string,
|
|
26937
|
-
required: PropTypes.bool,
|
|
26938
|
-
width: PropTypes.string,
|
|
26939
|
-
disabled: PropTypes.bool,
|
|
26940
|
-
error: PropTypes.bool,
|
|
26937
|
+
placeHolder: PropTypes$1.string,
|
|
26938
|
+
label: PropTypes$1.string,
|
|
26939
|
+
labelEmptyValue: PropTypes$1.string,
|
|
26940
|
+
labelColor: PropTypes$1.string,
|
|
26941
|
+
checkBoxColor: PropTypes$1.string,
|
|
26942
|
+
required: PropTypes$1.bool,
|
|
26943
|
+
width: PropTypes$1.string,
|
|
26944
|
+
disabled: PropTypes$1.bool,
|
|
26945
|
+
error: PropTypes$1.bool,
|
|
26941
26946
|
errorMessage: '',
|
|
26942
|
-
options: PropTypes.arrayOf(PropTypes.shape({
|
|
26943
|
-
value: PropTypes.string,
|
|
26944
|
-
label: PropTypes.string
|
|
26947
|
+
options: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
26948
|
+
value: PropTypes$1.string,
|
|
26949
|
+
label: PropTypes$1.string
|
|
26945
26950
|
})),
|
|
26946
|
-
selectedValue: PropTypes.arrayOf(PropTypes.shape({
|
|
26947
|
-
value: PropTypes.string,
|
|
26948
|
-
label: PropTypes.string
|
|
26951
|
+
selectedValue: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
26952
|
+
value: PropTypes$1.string,
|
|
26953
|
+
label: PropTypes$1.string
|
|
26949
26954
|
})),
|
|
26950
|
-
onChange: PropTypes.func,
|
|
26951
|
-
xIconShow: PropTypes.bool,
|
|
26952
|
-
showLabelOnTop: PropTypes.bool
|
|
26955
|
+
onChange: PropTypes$1.func,
|
|
26956
|
+
xIconShow: PropTypes$1.bool,
|
|
26957
|
+
showLabelOnTop: PropTypes$1.bool
|
|
26953
26958
|
};
|
|
26954
26959
|
QuickFilterDropdownMultiSelection.defaultProps = {
|
|
26955
26960
|
placeHolder: 'Type...',
|
|
@@ -26996,7 +27001,7 @@ const QuickFilter = _ref => {
|
|
|
26996
27001
|
placeHolder = "Select From List",
|
|
26997
27002
|
width = "auto",
|
|
26998
27003
|
checkBoxColor = "#229E38",
|
|
26999
|
-
onChange =
|
|
27004
|
+
onChange = () => {},
|
|
27000
27005
|
options = [],
|
|
27001
27006
|
selectedValue = []
|
|
27002
27007
|
} = _ref;
|
|
@@ -27033,48 +27038,42 @@ const QuickFilter = _ref => {
|
|
|
27033
27038
|
xIconShow: xIconShow
|
|
27034
27039
|
}));
|
|
27035
27040
|
};
|
|
27036
|
-
|
|
27037
|
-
|
|
27038
|
-
|
|
27039
|
-
|
|
27040
|
-
|
|
27041
|
-
|
|
27042
|
-
|
|
27043
|
-
|
|
27044
|
-
|
|
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
|
-
// width: "auto",
|
|
27073
|
-
// checkBoxColor: "#229E38",
|
|
27074
|
-
// onChange: () => {},
|
|
27075
|
-
// options: [],
|
|
27076
|
-
// selectedValue: [],
|
|
27077
|
-
// };
|
|
27041
|
+
QuickFilter.propTypes = {
|
|
27042
|
+
hoverColor: PropTypes.string,
|
|
27043
|
+
multipleSelection: PropTypes.bool,
|
|
27044
|
+
disabled: PropTypes.bool,
|
|
27045
|
+
error: PropTypes.bool,
|
|
27046
|
+
errorMessage: PropTypes.string,
|
|
27047
|
+
label: PropTypes.string,
|
|
27048
|
+
labelColor: PropTypes.string,
|
|
27049
|
+
placeHolder: PropTypes.string,
|
|
27050
|
+
width: PropTypes.string,
|
|
27051
|
+
checkBoxColor: PropTypes.string,
|
|
27052
|
+
onChange: PropTypes.func,
|
|
27053
|
+
options: PropTypes.arrayOf(PropTypes.shape({
|
|
27054
|
+
id: PropTypes.string,
|
|
27055
|
+
label: PropTypes.string
|
|
27056
|
+
})),
|
|
27057
|
+
selectedValue: PropTypes.arrayOf(PropTypes.shape({
|
|
27058
|
+
id: PropTypes.string,
|
|
27059
|
+
label: PropTypes.string
|
|
27060
|
+
}))
|
|
27061
|
+
};
|
|
27062
|
+
QuickFilter.defaultProps = {
|
|
27063
|
+
hoverColor: "#066768",
|
|
27064
|
+
multipleSelection: false,
|
|
27065
|
+
disabled: false,
|
|
27066
|
+
error: false,
|
|
27067
|
+
errorMessage: "",
|
|
27068
|
+
label: "Unit Type:",
|
|
27069
|
+
labelColor: "#066768",
|
|
27070
|
+
placeHolder: "Select From List",
|
|
27071
|
+
width: "auto",
|
|
27072
|
+
checkBoxColor: "#229E38",
|
|
27073
|
+
onChange: () => {},
|
|
27074
|
+
options: [],
|
|
27075
|
+
selectedValue: []
|
|
27076
|
+
};
|
|
27078
27077
|
|
|
27079
27078
|
var classnames = {exports: {}};
|
|
27080
27079
|
|
|
@@ -27481,18 +27480,18 @@ const FormattedValue$2 = props => {
|
|
|
27481
27480
|
}, subtitle) : '')));
|
|
27482
27481
|
};
|
|
27483
27482
|
FormattedValue$2.propTypes = {
|
|
27484
|
-
className: PropTypes.string,
|
|
27485
|
-
title: PropTypes.string,
|
|
27486
|
-
subtitle: PropTypes.string,
|
|
27487
|
-
showTopValue: PropTypes.bool,
|
|
27488
|
-
value: PropTypes.number,
|
|
27489
|
-
dotCut: PropTypes.bool,
|
|
27490
|
-
currencySign: PropTypes.bool,
|
|
27491
|
-
currencyType: PropTypes.string,
|
|
27492
|
-
width: PropTypes.string,
|
|
27493
|
-
height: PropTypes.string,
|
|
27494
|
-
textcolor: PropTypes.string,
|
|
27495
|
-
isPercent: PropTypes.bool
|
|
27483
|
+
className: PropTypes$1.string,
|
|
27484
|
+
title: PropTypes$1.string,
|
|
27485
|
+
subtitle: PropTypes$1.string,
|
|
27486
|
+
showTopValue: PropTypes$1.bool,
|
|
27487
|
+
value: PropTypes$1.number,
|
|
27488
|
+
dotCut: PropTypes$1.bool,
|
|
27489
|
+
currencySign: PropTypes$1.bool,
|
|
27490
|
+
currencyType: PropTypes$1.string,
|
|
27491
|
+
width: PropTypes$1.string,
|
|
27492
|
+
height: PropTypes$1.string,
|
|
27493
|
+
textcolor: PropTypes$1.string,
|
|
27494
|
+
isPercent: PropTypes$1.bool
|
|
27496
27495
|
};
|
|
27497
27496
|
FormattedValue$2.defaultProps = {
|
|
27498
27497
|
className: 'FormattedValue_ControlsContainer',
|
|
@@ -27724,13 +27723,13 @@ const PerformanceAnalyticsLegend = props => {
|
|
|
27724
27723
|
}, item.title))))) : '');
|
|
27725
27724
|
};
|
|
27726
27725
|
PerformanceAnalyticsLegend.propTypes = {
|
|
27727
|
-
className: PropTypes.string,
|
|
27728
|
-
width: PropTypes.string,
|
|
27729
|
-
height: PropTypes.string,
|
|
27730
|
-
legendData: PropTypes.arrayOf(PropTypes.shape({
|
|
27731
|
-
title: PropTypes.string.isRequired,
|
|
27732
|
-
iconType: PropTypes.oneOf([ICON_TYPE_SQUARE$1, ICON_TYPE_LEGEND_UNION_ICON$1, ICON_TYPE_LEGEND_LINE_ICON$1]).isRequired,
|
|
27733
|
-
iconColor: PropTypes.string.isRequired
|
|
27726
|
+
className: PropTypes$1.string,
|
|
27727
|
+
width: PropTypes$1.string,
|
|
27728
|
+
height: PropTypes$1.string,
|
|
27729
|
+
legendData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
27730
|
+
title: PropTypes$1.string.isRequired,
|
|
27731
|
+
iconType: PropTypes$1.oneOf([ICON_TYPE_SQUARE$1, ICON_TYPE_LEGEND_UNION_ICON$1, ICON_TYPE_LEGEND_LINE_ICON$1]).isRequired,
|
|
27732
|
+
iconColor: PropTypes$1.string.isRequired
|
|
27734
27733
|
}))
|
|
27735
27734
|
};
|
|
27736
27735
|
PerformanceAnalyticsLegend.defaultProps = {
|
|
@@ -27959,41 +27958,41 @@ const BarChartsByWeeks = props => {
|
|
|
27959
27958
|
}))));
|
|
27960
27959
|
};
|
|
27961
27960
|
BarChartsByWeeks.propTypes = {
|
|
27962
|
-
className: PropTypes.string,
|
|
27963
|
-
title: PropTypes.string,
|
|
27964
|
-
showHeaderTopValue: PropTypes.bool,
|
|
27965
|
-
headerValueTopTitle: PropTypes.string,
|
|
27966
|
-
headerValueBottomTitle: PropTypes.string,
|
|
27967
|
-
headerValue: PropTypes.number,
|
|
27968
|
-
HeaderValueCurrencyType: PropTypes.string,
|
|
27969
|
-
HeaderValueIsPercent: PropTypes.bool,
|
|
27970
|
-
barChartData: PropTypes.arrayOf(PropTypes.shape({
|
|
27971
|
-
title: PropTypes.string,
|
|
27972
|
-
value: PropTypes.number
|
|
27961
|
+
className: PropTypes$1.string,
|
|
27962
|
+
title: PropTypes$1.string,
|
|
27963
|
+
showHeaderTopValue: PropTypes$1.bool,
|
|
27964
|
+
headerValueTopTitle: PropTypes$1.string,
|
|
27965
|
+
headerValueBottomTitle: PropTypes$1.string,
|
|
27966
|
+
headerValue: PropTypes$1.number,
|
|
27967
|
+
HeaderValueCurrencyType: PropTypes$1.string,
|
|
27968
|
+
HeaderValueIsPercent: PropTypes$1.bool,
|
|
27969
|
+
barChartData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
27970
|
+
title: PropTypes$1.string,
|
|
27971
|
+
value: PropTypes$1.number
|
|
27973
27972
|
})),
|
|
27974
|
-
isTitleOriganal: PropTypes.bool,
|
|
27975
|
-
width: PropTypes.string,
|
|
27976
|
-
height: PropTypes.string,
|
|
27977
|
-
barChartColor: PropTypes.string,
|
|
27978
|
-
barChartSecondColor: PropTypes.string,
|
|
27979
|
-
xselectedColor: PropTypes.string,
|
|
27980
|
-
startWeekRange: PropTypes.string,
|
|
27981
|
-
endWeekRange: PropTypes.string,
|
|
27982
|
-
tooltipTitle: PropTypes.string,
|
|
27983
|
-
tooltipSecondTitle: PropTypes.string,
|
|
27984
|
-
yAxisCounter: PropTypes.number,
|
|
27985
|
-
isPercentValue: PropTypes.bool,
|
|
27986
|
-
interval: PropTypes.string,
|
|
27987
|
-
showTitle: PropTypes.bool,
|
|
27988
|
-
showLegend: PropTypes.bool,
|
|
27989
|
-
legendData: PropTypes.arrayOf(PropTypes.shape({
|
|
27990
|
-
title: PropTypes.string.isRequired,
|
|
27991
|
-
iconType: PropTypes.oneOf([ICON_TYPE_SQUARE, ICON_TYPE_LEGEND_UNION_ICON, ICON_TYPE_LEGEND_LINE_ICON]).isRequired,
|
|
27992
|
-
iconColor: PropTypes.string.isRequired
|
|
27973
|
+
isTitleOriganal: PropTypes$1.bool,
|
|
27974
|
+
width: PropTypes$1.string,
|
|
27975
|
+
height: PropTypes$1.string,
|
|
27976
|
+
barChartColor: PropTypes$1.string,
|
|
27977
|
+
barChartSecondColor: PropTypes$1.string,
|
|
27978
|
+
xselectedColor: PropTypes$1.string,
|
|
27979
|
+
startWeekRange: PropTypes$1.string,
|
|
27980
|
+
endWeekRange: PropTypes$1.string,
|
|
27981
|
+
tooltipTitle: PropTypes$1.string,
|
|
27982
|
+
tooltipSecondTitle: PropTypes$1.string,
|
|
27983
|
+
yAxisCounter: PropTypes$1.number,
|
|
27984
|
+
isPercentValue: PropTypes$1.bool,
|
|
27985
|
+
interval: PropTypes$1.string,
|
|
27986
|
+
showTitle: PropTypes$1.bool,
|
|
27987
|
+
showLegend: PropTypes$1.bool,
|
|
27988
|
+
legendData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
27989
|
+
title: PropTypes$1.string.isRequired,
|
|
27990
|
+
iconType: PropTypes$1.oneOf([ICON_TYPE_SQUARE, ICON_TYPE_LEGEND_UNION_ICON, ICON_TYPE_LEGEND_LINE_ICON]).isRequired,
|
|
27991
|
+
iconColor: PropTypes$1.string.isRequired
|
|
27993
27992
|
})),
|
|
27994
|
-
showTwoBars: PropTypes.bool,
|
|
27995
|
-
setLimitHeight: PropTypes.number,
|
|
27996
|
-
setLimitLow: PropTypes.number
|
|
27993
|
+
showTwoBars: PropTypes$1.bool,
|
|
27994
|
+
setLimitHeight: PropTypes$1.number,
|
|
27995
|
+
setLimitLow: PropTypes$1.number
|
|
27997
27996
|
};
|
|
27998
27997
|
BarChartsByWeeks.defaultProps = {
|
|
27999
27998
|
className: '',
|
|
@@ -28367,27 +28366,27 @@ const TotalDoughnutChart = props => {
|
|
|
28367
28366
|
}, row.name, displayLegendValue(row)))))))));
|
|
28368
28367
|
};
|
|
28369
28368
|
TotalDoughnutChart.propTypes = {
|
|
28370
|
-
className: PropTypes.string,
|
|
28371
|
-
title: PropTypes.string,
|
|
28372
|
-
value: PropTypes.number,
|
|
28373
|
-
addingBenchmark: PropTypes.bool,
|
|
28374
|
-
dotCut: PropTypes.bool,
|
|
28375
|
-
currencySign: PropTypes.bool,
|
|
28376
|
-
currencyType: PropTypes.string,
|
|
28377
|
-
legendData: PropTypes.arrayOf(PropTypes.shape({
|
|
28378
|
-
name: PropTypes.string,
|
|
28379
|
-
description: PropTypes.string
|
|
28369
|
+
className: PropTypes$1.string,
|
|
28370
|
+
title: PropTypes$1.string,
|
|
28371
|
+
value: PropTypes$1.number,
|
|
28372
|
+
addingBenchmark: PropTypes$1.bool,
|
|
28373
|
+
dotCut: PropTypes$1.bool,
|
|
28374
|
+
currencySign: PropTypes$1.bool,
|
|
28375
|
+
currencyType: PropTypes$1.string,
|
|
28376
|
+
legendData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
28377
|
+
name: PropTypes$1.string,
|
|
28378
|
+
description: PropTypes$1.string
|
|
28380
28379
|
})),
|
|
28381
|
-
itemsPercentagesValueAside: PropTypes.bool,
|
|
28382
|
-
itemsBoldedValues: PropTypes.bool,
|
|
28383
|
-
itemsValuesSeparateLine: PropTypes.bool,
|
|
28384
|
-
width: PropTypes.string,
|
|
28385
|
-
height: PropTypes.string,
|
|
28386
|
-
textcolor: PropTypes.string,
|
|
28387
|
-
isPercent: PropTypes.bool,
|
|
28388
|
-
hideTitleAndValue: PropTypes.bool,
|
|
28389
|
-
noDataText: PropTypes.string,
|
|
28390
|
-
textAfterValue: PropTypes.string
|
|
28380
|
+
itemsPercentagesValueAside: PropTypes$1.bool,
|
|
28381
|
+
itemsBoldedValues: PropTypes$1.bool,
|
|
28382
|
+
itemsValuesSeparateLine: PropTypes$1.bool,
|
|
28383
|
+
width: PropTypes$1.string,
|
|
28384
|
+
height: PropTypes$1.string,
|
|
28385
|
+
textcolor: PropTypes$1.string,
|
|
28386
|
+
isPercent: PropTypes$1.bool,
|
|
28387
|
+
hideTitleAndValue: PropTypes$1.bool,
|
|
28388
|
+
noDataText: PropTypes$1.string,
|
|
28389
|
+
textAfterValue: PropTypes$1.string
|
|
28391
28390
|
};
|
|
28392
28391
|
TotalDoughnutChart.defaultProps = {
|
|
28393
28392
|
className: '',
|
|
@@ -28424,13 +28423,13 @@ function CustomTooltip(_ref) {
|
|
|
28424
28423
|
}
|
|
28425
28424
|
CustomTooltip.propTypes = {
|
|
28426
28425
|
// eslint-disable-next-line react/forbid-prop-types
|
|
28427
|
-
active: PropTypes.any,
|
|
28426
|
+
active: PropTypes$1.any,
|
|
28428
28427
|
// eslint-disable-next-line react/forbid-prop-types
|
|
28429
|
-
payload: PropTypes.any,
|
|
28428
|
+
payload: PropTypes$1.any,
|
|
28430
28429
|
// eslint-disable-next-line react/forbid-prop-types
|
|
28431
|
-
value: PropTypes.any,
|
|
28430
|
+
value: PropTypes$1.any,
|
|
28432
28431
|
// eslint-disable-next-line react/forbid-prop-types
|
|
28433
|
-
isPercent: PropTypes.any
|
|
28432
|
+
isPercent: PropTypes$1.any
|
|
28434
28433
|
};
|
|
28435
28434
|
CustomTooltip.defaultProps = {
|
|
28436
28435
|
active: '',
|
|
@@ -28554,11 +28553,11 @@ const Tooltip = props => {
|
|
|
28554
28553
|
}, content)));
|
|
28555
28554
|
};
|
|
28556
28555
|
Tooltip.propTypes = {
|
|
28557
|
-
className: PropTypes.string,
|
|
28558
|
-
top: PropTypes.number,
|
|
28559
|
-
left: PropTypes.number,
|
|
28560
|
-
direction: PropTypes.string,
|
|
28561
|
-
content: PropTypes.string
|
|
28556
|
+
className: PropTypes$1.string,
|
|
28557
|
+
top: PropTypes$1.number,
|
|
28558
|
+
left: PropTypes$1.number,
|
|
28559
|
+
direction: PropTypes$1.string,
|
|
28560
|
+
content: PropTypes$1.string
|
|
28562
28561
|
};
|
|
28563
28562
|
Tooltip.defaultProps = {
|
|
28564
28563
|
className: '',
|
|
@@ -28847,31 +28846,31 @@ const TotalHorizontalCharts = props => {
|
|
|
28847
28846
|
}));
|
|
28848
28847
|
};
|
|
28849
28848
|
TotalHorizontalCharts.propTypes = {
|
|
28850
|
-
className: PropTypes.string,
|
|
28851
|
-
title: PropTypes.string,
|
|
28852
|
-
value: PropTypes.number,
|
|
28853
|
-
dotCut: PropTypes.bool,
|
|
28854
|
-
currencySign: PropTypes.bool,
|
|
28855
|
-
currencyType: PropTypes.string,
|
|
28856
|
-
chartsData: PropTypes.arrayOf(PropTypes.shape({
|
|
28857
|
-
name: PropTypes.string,
|
|
28858
|
-
value: PropTypes.number,
|
|
28859
|
-
color: PropTypes.string
|
|
28849
|
+
className: PropTypes$1.string,
|
|
28850
|
+
title: PropTypes$1.string,
|
|
28851
|
+
value: PropTypes$1.number,
|
|
28852
|
+
dotCut: PropTypes$1.bool,
|
|
28853
|
+
currencySign: PropTypes$1.bool,
|
|
28854
|
+
currencyType: PropTypes$1.string,
|
|
28855
|
+
chartsData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
28856
|
+
name: PropTypes$1.string,
|
|
28857
|
+
value: PropTypes$1.number,
|
|
28858
|
+
color: PropTypes$1.string
|
|
28860
28859
|
})),
|
|
28861
|
-
showScrollerBarsCount: PropTypes.number,
|
|
28862
|
-
showPercentAsideValue: PropTypes.bool,
|
|
28863
|
-
labelFontSize: PropTypes.number,
|
|
28864
|
-
labelLimitedLetters: PropTypes.number,
|
|
28865
|
-
width: PropTypes.string,
|
|
28866
|
-
height: PropTypes.string,
|
|
28867
|
-
rightGap: PropTypes.number,
|
|
28868
|
-
textColor: PropTypes.string,
|
|
28869
|
-
noDataText: PropTypes.string,
|
|
28870
|
-
isDollar: PropTypes.bool,
|
|
28871
|
-
isPercentage: PropTypes.bool,
|
|
28872
|
-
showDollarSign: PropTypes.bool,
|
|
28873
|
-
hideTotalValue: PropTypes.bool,
|
|
28874
|
-
hideTitle: PropTypes.bool
|
|
28860
|
+
showScrollerBarsCount: PropTypes$1.number,
|
|
28861
|
+
showPercentAsideValue: PropTypes$1.bool,
|
|
28862
|
+
labelFontSize: PropTypes$1.number,
|
|
28863
|
+
labelLimitedLetters: PropTypes$1.number,
|
|
28864
|
+
width: PropTypes$1.string,
|
|
28865
|
+
height: PropTypes$1.string,
|
|
28866
|
+
rightGap: PropTypes$1.number,
|
|
28867
|
+
textColor: PropTypes$1.string,
|
|
28868
|
+
noDataText: PropTypes$1.string,
|
|
28869
|
+
isDollar: PropTypes$1.bool,
|
|
28870
|
+
isPercentage: PropTypes$1.bool,
|
|
28871
|
+
showDollarSign: PropTypes$1.bool,
|
|
28872
|
+
hideTotalValue: PropTypes$1.bool,
|
|
28873
|
+
hideTitle: PropTypes$1.bool
|
|
28875
28874
|
};
|
|
28876
28875
|
TotalHorizontalCharts.defaultProps = {
|
|
28877
28876
|
className: '',
|
|
@@ -29060,23 +29059,23 @@ const SalesAndROI = props => {
|
|
|
29060
29059
|
}));
|
|
29061
29060
|
};
|
|
29062
29061
|
SalesAndROI.propTypes = {
|
|
29063
|
-
title: PropTypes.string,
|
|
29064
|
-
dotCut: PropTypes.bool,
|
|
29065
|
-
currencySign: PropTypes.bool,
|
|
29066
|
-
currencyType: PropTypes.string,
|
|
29067
|
-
salesData: PropTypes.arrayOf(PropTypes.shape({
|
|
29068
|
-
name: PropTypes.string,
|
|
29069
|
-
value: PropTypes.number,
|
|
29070
|
-
labelBefore: PropTypes.string,
|
|
29071
|
-
labelAfter: PropTypes.string
|
|
29062
|
+
title: PropTypes$1.string,
|
|
29063
|
+
dotCut: PropTypes$1.bool,
|
|
29064
|
+
currencySign: PropTypes$1.bool,
|
|
29065
|
+
currencyType: PropTypes$1.string,
|
|
29066
|
+
salesData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
29067
|
+
name: PropTypes$1.string,
|
|
29068
|
+
value: PropTypes$1.number,
|
|
29069
|
+
labelBefore: PropTypes$1.string,
|
|
29070
|
+
labelAfter: PropTypes$1.string
|
|
29072
29071
|
})),
|
|
29073
|
-
width: PropTypes.string,
|
|
29074
|
-
height: PropTypes.string,
|
|
29075
|
-
textColor: PropTypes.string,
|
|
29076
|
-
showBanner: PropTypes.bool,
|
|
29077
|
-
noDataText: PropTypes.string,
|
|
29078
|
-
onBannerClick: PropTypes.func,
|
|
29079
|
-
showBorderShadow: PropTypes.bool
|
|
29072
|
+
width: PropTypes$1.string,
|
|
29073
|
+
height: PropTypes$1.string,
|
|
29074
|
+
textColor: PropTypes$1.string,
|
|
29075
|
+
showBanner: PropTypes$1.bool,
|
|
29076
|
+
noDataText: PropTypes$1.string,
|
|
29077
|
+
onBannerClick: PropTypes$1.func,
|
|
29078
|
+
showBorderShadow: PropTypes$1.bool
|
|
29080
29079
|
};
|
|
29081
29080
|
SalesAndROI.defaultProps = {
|
|
29082
29081
|
title: 'SALES',
|
|
@@ -29372,25 +29371,25 @@ const PopupCharts = props => {
|
|
|
29372
29371
|
}, popupChartsItemsData.map(item => displayChartItem(item))))));
|
|
29373
29372
|
};
|
|
29374
29373
|
PopupCharts.propTypes = {
|
|
29375
|
-
title: PropTypes.string,
|
|
29376
|
-
chartType: PropTypes.string,
|
|
29374
|
+
title: PropTypes$1.string,
|
|
29375
|
+
chartType: PropTypes$1.string,
|
|
29377
29376
|
// eslint-disable-next-line react/require-default-props
|
|
29378
|
-
popupChartsItemsData: PropTypes.arrayOf(PropTypes.shape({
|
|
29379
|
-
title: PropTypes.string,
|
|
29380
|
-
chartType: PropTypes.string,
|
|
29381
|
-
value: PropTypes.number,
|
|
29382
|
-
legendData: PropTypes.arrayOf(PropTypes.shape({
|
|
29383
|
-
color: PropTypes.string,
|
|
29384
|
-
name: PropTypes.string,
|
|
29385
|
-
value: PropTypes.number
|
|
29377
|
+
popupChartsItemsData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
29378
|
+
title: PropTypes$1.string,
|
|
29379
|
+
chartType: PropTypes$1.string,
|
|
29380
|
+
value: PropTypes$1.number,
|
|
29381
|
+
legendData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
29382
|
+
color: PropTypes$1.string,
|
|
29383
|
+
name: PropTypes$1.string,
|
|
29384
|
+
value: PropTypes$1.number
|
|
29386
29385
|
})),
|
|
29387
|
-
noDataText: PropTypes.string
|
|
29386
|
+
noDataText: PropTypes$1.string
|
|
29388
29387
|
})),
|
|
29389
|
-
isPopupChartsOpen: PropTypes.bool,
|
|
29390
|
-
width: PropTypes.string,
|
|
29391
|
-
height: PropTypes.string,
|
|
29392
|
-
onCloseClick: PropTypes.func,
|
|
29393
|
-
subtitleTextColor: PropTypes.string
|
|
29388
|
+
isPopupChartsOpen: PropTypes$1.bool,
|
|
29389
|
+
width: PropTypes$1.string,
|
|
29390
|
+
height: PropTypes$1.string,
|
|
29391
|
+
onCloseClick: PropTypes$1.func,
|
|
29392
|
+
subtitleTextColor: PropTypes$1.string
|
|
29394
29393
|
};
|
|
29395
29394
|
PopupCharts.defaultProps = {
|
|
29396
29395
|
title: 'Switching Pattern',
|
|
@@ -29498,12 +29497,12 @@ const TopToggleList = props => {
|
|
|
29498
29497
|
}, /*#__PURE__*/React$1.createElement(Item, null, item.label)))));
|
|
29499
29498
|
};
|
|
29500
29499
|
TopToggleList.propTypes = {
|
|
29501
|
-
width: PropTypes.string,
|
|
29502
|
-
height: PropTypes.string,
|
|
29503
|
-
title: PropTypes.string,
|
|
29504
|
-
list: PropTypes.arrayOf({
|
|
29505
|
-
value: PropTypes.string,
|
|
29506
|
-
label: PropTypes.string
|
|
29500
|
+
width: PropTypes$1.string,
|
|
29501
|
+
height: PropTypes$1.string,
|
|
29502
|
+
title: PropTypes$1.string,
|
|
29503
|
+
list: PropTypes$1.arrayOf({
|
|
29504
|
+
value: PropTypes$1.string,
|
|
29505
|
+
label: PropTypes$1.string
|
|
29507
29506
|
})
|
|
29508
29507
|
};
|
|
29509
29508
|
TopToggleList.defaultProps = {
|
|
@@ -29833,14 +29832,14 @@ const Heatmap = props => {
|
|
|
29833
29832
|
}, title)), refreshRequired && renderBars(), !refreshRequired && renderBars(), renderLegend()));
|
|
29834
29833
|
};
|
|
29835
29834
|
Heatmap.propTypes = {
|
|
29836
|
-
title: PropTypes.string.isRequired,
|
|
29837
|
-
data: PropTypes.arrayOf(PropTypes.shape({
|
|
29838
|
-
value: PropTypes.number.isRequired,
|
|
29839
|
-
label: PropTypes.string.isRequired,
|
|
29840
|
-
color: PropTypes.string.isRequired
|
|
29835
|
+
title: PropTypes$1.string.isRequired,
|
|
29836
|
+
data: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
29837
|
+
value: PropTypes$1.number.isRequired,
|
|
29838
|
+
label: PropTypes$1.string.isRequired,
|
|
29839
|
+
color: PropTypes$1.string.isRequired
|
|
29841
29840
|
})).isRequired,
|
|
29842
|
-
lowLimit: PropTypes.number.isRequired,
|
|
29843
|
-
barHeight: PropTypes.string.isRequired
|
|
29841
|
+
lowLimit: PropTypes$1.number.isRequired,
|
|
29842
|
+
barHeight: PropTypes$1.string.isRequired
|
|
29844
29843
|
};
|
|
29845
29844
|
|
|
29846
29845
|
const ButtonWrapper = dt.div`
|
|
@@ -30015,19 +30014,19 @@ const IconButton = props => {
|
|
|
30015
30014
|
IconButton.propTypes = {
|
|
30016
30015
|
// downloadStatus: PropTypes.string,
|
|
30017
30016
|
// fileName: PropTypes.string,
|
|
30018
|
-
fileLink: PropTypes.string,
|
|
30019
|
-
showProcess: PropTypes.bool,
|
|
30020
|
-
buttonText: PropTypes.string,
|
|
30021
|
-
iconName: PropTypes.string,
|
|
30022
|
-
contentColor: PropTypes.string,
|
|
30023
|
-
backgroundColor: PropTypes.string,
|
|
30024
|
-
borderColor: PropTypes.string,
|
|
30025
|
-
borderRadius: PropTypes.string,
|
|
30026
|
-
iconHeight: PropTypes.number,
|
|
30027
|
-
iconWidth: PropTypes.number,
|
|
30028
|
-
disabled: PropTypes.bool,
|
|
30029
|
-
onClick: PropTypes.func,
|
|
30030
|
-
onCancelClick: PropTypes.func
|
|
30017
|
+
fileLink: PropTypes$1.string,
|
|
30018
|
+
showProcess: PropTypes$1.bool,
|
|
30019
|
+
buttonText: PropTypes$1.string,
|
|
30020
|
+
iconName: PropTypes$1.string,
|
|
30021
|
+
contentColor: PropTypes$1.string,
|
|
30022
|
+
backgroundColor: PropTypes$1.string,
|
|
30023
|
+
borderColor: PropTypes$1.string,
|
|
30024
|
+
borderRadius: PropTypes$1.string,
|
|
30025
|
+
iconHeight: PropTypes$1.number,
|
|
30026
|
+
iconWidth: PropTypes$1.number,
|
|
30027
|
+
disabled: PropTypes$1.bool,
|
|
30028
|
+
onClick: PropTypes$1.func,
|
|
30029
|
+
onCancelClick: PropTypes$1.func
|
|
30031
30030
|
};
|
|
30032
30031
|
IconButton.defaultProps = {
|
|
30033
30032
|
// downloadStatus: '',
|