sag_components 2.0.0-beta17 → 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 +61 -1
- package/dist/index.esm.js +637 -644
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +637 -644
- package/dist/index.js.map +1 -1
- package/dist/types/components/QuickFilter/QuickFilter.d.ts +61 -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",
|
|
@@ -11755,27 +11756,27 @@ const DropdownNew = _ref => {
|
|
|
11755
11756
|
}));
|
|
11756
11757
|
};
|
|
11757
11758
|
DropdownNew.propTypes = {
|
|
11758
|
-
placeHolder: PropTypes.string,
|
|
11759
|
-
label: PropTypes.string,
|
|
11760
|
-
labelEmptyValue: PropTypes.string,
|
|
11761
|
-
labelColor: PropTypes.string,
|
|
11762
|
-
checkBoxColor: PropTypes.string,
|
|
11763
|
-
required: PropTypes.bool,
|
|
11764
|
-
width: PropTypes.string,
|
|
11765
|
-
disabled: PropTypes.bool,
|
|
11766
|
-
error: PropTypes.bool,
|
|
11767
|
-
errorMessage: PropTypes.string,
|
|
11768
|
-
options: PropTypes.arrayOf(PropTypes.shape({
|
|
11769
|
-
id: PropTypes.string,
|
|
11770
|
-
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
|
|
11771
11772
|
})),
|
|
11772
|
-
selectedValue: PropTypes.arrayOf(PropTypes.shape({
|
|
11773
|
-
id: PropTypes.string,
|
|
11774
|
-
label: PropTypes.string
|
|
11773
|
+
selectedValue: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
11774
|
+
id: PropTypes$1.string,
|
|
11775
|
+
label: PropTypes$1.string
|
|
11775
11776
|
})),
|
|
11776
|
-
xIconShow: PropTypes.bool,
|
|
11777
|
-
onChange: PropTypes.func,
|
|
11778
|
-
showLabelOnTop: PropTypes.bool
|
|
11777
|
+
xIconShow: PropTypes$1.bool,
|
|
11778
|
+
onChange: PropTypes$1.func,
|
|
11779
|
+
showLabelOnTop: PropTypes$1.bool
|
|
11779
11780
|
};
|
|
11780
11781
|
DropdownNew.defaultProps = {
|
|
11781
11782
|
placeHolder: "Type...",
|
|
@@ -12313,20 +12314,20 @@ const RangePicker = _ref => {
|
|
|
12313
12314
|
})));
|
|
12314
12315
|
};
|
|
12315
12316
|
RangePicker.propTypes = {
|
|
12316
|
-
label: PropTypes.string.isRequired,
|
|
12317
|
-
onChange: PropTypes.func.isRequired,
|
|
12318
|
-
borderRadius: PropTypes.string.isRequired,
|
|
12319
|
-
required: PropTypes.bool,
|
|
12320
|
-
width: PropTypes.string,
|
|
12321
|
-
height: PropTypes.string,
|
|
12322
|
-
placeholder: PropTypes.string,
|
|
12323
|
-
disabled: PropTypes.bool,
|
|
12324
|
-
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,
|
|
12325
12326
|
// Added borderColor prop
|
|
12326
|
-
borderColorFocus: PropTypes.string,
|
|
12327
|
-
textColor: PropTypes.string,
|
|
12327
|
+
borderColorFocus: PropTypes$1.string,
|
|
12328
|
+
textColor: PropTypes$1.string,
|
|
12328
12329
|
// Added textColor prop
|
|
12329
|
-
selectedValue: PropTypes.string
|
|
12330
|
+
selectedValue: PropTypes$1.string
|
|
12330
12331
|
};
|
|
12331
12332
|
|
|
12332
12333
|
// Adding defaultProps
|
|
@@ -12609,23 +12610,22 @@ const QuarterPopupPicker = ({
|
|
|
12609
12610
|
};
|
|
12610
12611
|
|
|
12611
12612
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
12612
|
-
const QuarterPicker =
|
|
12613
|
-
|
|
12614
|
-
|
|
12615
|
-
|
|
12616
|
-
|
|
12617
|
-
|
|
12618
|
-
|
|
12619
|
-
|
|
12620
|
-
|
|
12621
|
-
|
|
12622
|
-
|
|
12623
|
-
|
|
12624
|
-
|
|
12625
|
-
|
|
12626
|
-
|
|
12627
|
-
|
|
12628
|
-
} = _ref;
|
|
12613
|
+
const QuarterPicker = ({
|
|
12614
|
+
availableQuarters,
|
|
12615
|
+
// ["Q1-2024"]
|
|
12616
|
+
label,
|
|
12617
|
+
onChange,
|
|
12618
|
+
borderRadius,
|
|
12619
|
+
required,
|
|
12620
|
+
width,
|
|
12621
|
+
height,
|
|
12622
|
+
placeholder,
|
|
12623
|
+
disabled,
|
|
12624
|
+
borderColor,
|
|
12625
|
+
borderColorFocus,
|
|
12626
|
+
textColor,
|
|
12627
|
+
selectedValue
|
|
12628
|
+
}) => {
|
|
12629
12629
|
const [isFocused, setIsFocused] = useState(false);
|
|
12630
12630
|
const [isOpen, setIsOpen] = useState(false);
|
|
12631
12631
|
const [value, setValue] = useState('');
|
|
@@ -12747,19 +12747,19 @@ const QuarterPicker = _ref => {
|
|
|
12747
12747
|
})));
|
|
12748
12748
|
};
|
|
12749
12749
|
QuarterPicker.propTypes = {
|
|
12750
|
-
availableQuarters: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12751
|
-
label: PropTypes.string.isRequired,
|
|
12752
|
-
onChange: PropTypes.func.isRequired,
|
|
12753
|
-
borderRadius: PropTypes.string.isRequired,
|
|
12754
|
-
required: PropTypes.bool,
|
|
12755
|
-
width: PropTypes.string,
|
|
12756
|
-
height: PropTypes.string,
|
|
12757
|
-
placeholder: PropTypes.string,
|
|
12758
|
-
disabled: PropTypes.bool,
|
|
12759
|
-
borderColor: PropTypes.string,
|
|
12760
|
-
borderColorFocus: PropTypes.string,
|
|
12761
|
-
textColor: PropTypes.string,
|
|
12762
|
-
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
|
|
12763
12763
|
};
|
|
12764
12764
|
QuarterPicker.defaultProps = {
|
|
12765
12765
|
required: true,
|
|
@@ -13062,22 +13062,21 @@ const MonthPopupPicker = ({
|
|
|
13062
13062
|
};
|
|
13063
13063
|
|
|
13064
13064
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
13065
|
-
const MonthPicker =
|
|
13066
|
-
|
|
13067
|
-
|
|
13068
|
-
|
|
13069
|
-
|
|
13070
|
-
|
|
13071
|
-
|
|
13072
|
-
|
|
13073
|
-
|
|
13074
|
-
|
|
13075
|
-
|
|
13076
|
-
|
|
13077
|
-
|
|
13078
|
-
|
|
13079
|
-
|
|
13080
|
-
} = _ref;
|
|
13065
|
+
const MonthPicker = ({
|
|
13066
|
+
availableMonths,
|
|
13067
|
+
label,
|
|
13068
|
+
onChange,
|
|
13069
|
+
borderRadius,
|
|
13070
|
+
required,
|
|
13071
|
+
width,
|
|
13072
|
+
height,
|
|
13073
|
+
placeholder,
|
|
13074
|
+
disabled,
|
|
13075
|
+
borderColor,
|
|
13076
|
+
borderColorFocus,
|
|
13077
|
+
textColor,
|
|
13078
|
+
selectedValue
|
|
13079
|
+
}) => {
|
|
13081
13080
|
const [isFocused, setIsFocused] = useState(false);
|
|
13082
13081
|
const [isOpen, setIsOpen] = useState(false);
|
|
13083
13082
|
const [value, setValue] = useState('');
|
|
@@ -13198,22 +13197,22 @@ const MonthPicker = _ref => {
|
|
|
13198
13197
|
})));
|
|
13199
13198
|
};
|
|
13200
13199
|
MonthPicker.propTypes = {
|
|
13201
|
-
availableMonths: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
13202
|
-
label: PropTypes.string.isRequired,
|
|
13203
|
-
onChange: PropTypes.func.isRequired,
|
|
13204
|
-
borderRadius: PropTypes.string.isRequired,
|
|
13205
|
-
required: PropTypes.bool,
|
|
13206
|
-
width: PropTypes.string,
|
|
13207
|
-
height: PropTypes.string,
|
|
13208
|
-
placeholder: PropTypes.string,
|
|
13209
|
-
disabled: PropTypes.bool,
|
|
13210
|
-
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,
|
|
13211
13210
|
// Added borderColor prop
|
|
13212
|
-
borderColorFocus: PropTypes.string,
|
|
13211
|
+
borderColorFocus: PropTypes$1.string,
|
|
13213
13212
|
// Added borderColorFocus prop
|
|
13214
|
-
textColor: PropTypes.string,
|
|
13213
|
+
textColor: PropTypes$1.string,
|
|
13215
13214
|
// Added textColor prop
|
|
13216
|
-
selectedValue: PropTypes.string
|
|
13215
|
+
selectedValue: PropTypes$1.string
|
|
13217
13216
|
};
|
|
13218
13217
|
MonthPicker.defaultProps = {
|
|
13219
13218
|
required: true,
|
|
@@ -13879,50 +13878,50 @@ const FilterPanel = props => {
|
|
|
13879
13878
|
})));
|
|
13880
13879
|
};
|
|
13881
13880
|
FilterPanel.propTypes = {
|
|
13882
|
-
availableQuarters: PropTypes.arrayOf(PropTypes.string),
|
|
13883
|
-
availableMonths: PropTypes.arrayOf(PropTypes.string),
|
|
13884
|
-
availableYears: PropTypes.arrayOf(PropTypes.string),
|
|
13885
|
-
fieldsData: PropTypes.arrayOf(PropTypes.shape({
|
|
13886
|
-
disabled: PropTypes.bool,
|
|
13887
|
-
required: PropTypes.bool,
|
|
13888
|
-
inputType: PropTypes.string,
|
|
13889
|
-
placeHolder: PropTypes.string,
|
|
13890
|
-
xIconShow: PropTypes.bool,
|
|
13891
|
-
label: PropTypes.string,
|
|
13892
|
-
labelEmptyValue: PropTypes.string,
|
|
13893
|
-
name: PropTypes.string,
|
|
13894
|
-
periodPickerSelectedValue: PropTypes.string,
|
|
13895
|
-
selectedValue: PropTypes.arrayOf(PropTypes.shape({
|
|
13896
|
-
value: PropTypes.string,
|
|
13897
|
-
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
|
|
13898
13897
|
})),
|
|
13899
|
-
orderBy: PropTypes.string,
|
|
13900
|
-
elementType: PropTypes.string,
|
|
13901
|
-
value: PropTypes.number,
|
|
13902
|
-
color: PropTypes.string,
|
|
13903
|
-
defaultValueYears: PropTypes.shape({
|
|
13904
|
-
value: PropTypes.string,
|
|
13905
|
-
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
|
|
13906
13905
|
}),
|
|
13907
|
-
dropdownOptions: PropTypes.arrayOf(PropTypes.shape({
|
|
13908
|
-
value: PropTypes.string,
|
|
13909
|
-
label: PropTypes.string
|
|
13906
|
+
dropdownOptions: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
13907
|
+
value: PropTypes$1.string,
|
|
13908
|
+
label: PropTypes$1.string
|
|
13910
13909
|
}))
|
|
13911
13910
|
})),
|
|
13912
|
-
width: PropTypes.string,
|
|
13913
|
-
height: PropTypes.string,
|
|
13914
|
-
okButtonBackgroundColor: PropTypes.string,
|
|
13915
|
-
okButtonHoverColor: PropTypes.string,
|
|
13916
|
-
resetButtonHoverColor: PropTypes.string,
|
|
13917
|
-
borderColor: PropTypes.string,
|
|
13918
|
-
onOkClick: PropTypes.func,
|
|
13919
|
-
onResetClick: PropTypes.func,
|
|
13920
|
-
onItemValueChanged: PropTypes.func,
|
|
13921
|
-
disableOKButton: PropTypes.bool,
|
|
13922
|
-
className: PropTypes.string,
|
|
13923
|
-
useExternalFilterState: PropTypes.bool,
|
|
13924
|
-
showShadow: PropTypes.bool,
|
|
13925
|
-
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
|
|
13926
13925
|
};
|
|
13927
13926
|
FilterPanel.defaultProps = {
|
|
13928
13927
|
availableQuarters: ['Q1-2024'],
|
|
@@ -14626,28 +14625,28 @@ const ReportTable = props => {
|
|
|
14626
14625
|
}), /*#__PURE__*/React$1.createElement(InfoText, null, "Download table to get the full data")) : "");
|
|
14627
14626
|
};
|
|
14628
14627
|
ReportTable.propTypes = {
|
|
14629
|
-
buttonText: PropTypes.string,
|
|
14630
|
-
buttonIconName: PropTypes.string,
|
|
14631
|
-
tableData: PropTypes.shape({
|
|
14632
|
-
columnsHeadings: PropTypes.arrayOf(PropTypes.shape({
|
|
14633
|
-
label: PropTypes.string,
|
|
14634
|
-
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
|
|
14635
14634
|
})),
|
|
14636
|
-
rowsValues: PropTypes.arrayOf(PropTypes.objectOf(PropTypes.string))
|
|
14635
|
+
rowsValues: PropTypes$1.arrayOf(PropTypes$1.objectOf(PropTypes$1.string))
|
|
14637
14636
|
}),
|
|
14638
|
-
maxColumnsNumber: PropTypes.number,
|
|
14639
|
-
useColorLinearGradient: PropTypes.bool,
|
|
14640
|
-
useSelectButtons: PropTypes.bool,
|
|
14641
|
-
disableSelectButtons: PropTypes.bool,
|
|
14642
|
-
disableInfo: PropTypes.bool,
|
|
14643
|
-
selectTextColor: PropTypes.string,
|
|
14644
|
-
onSelectRowClick: PropTypes.func,
|
|
14645
|
-
onCheckRowClick: PropTypes.func,
|
|
14646
|
-
onAllRowsCheckBoxClick: PropTypes.func,
|
|
14647
|
-
useCheckBoxes: PropTypes.bool,
|
|
14648
|
-
selectHoverColor: PropTypes.string,
|
|
14649
|
-
enableHover: PropTypes.bool,
|
|
14650
|
-
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
|
|
14651
14650
|
};
|
|
14652
14651
|
ReportTable.defaultProps = {
|
|
14653
14652
|
buttonText: "Select",
|
|
@@ -14781,12 +14780,12 @@ const EventListItem = props => {
|
|
|
14781
14780
|
})));
|
|
14782
14781
|
};
|
|
14783
14782
|
EventListItem.propTypes = {
|
|
14784
|
-
eventName: PropTypes.string,
|
|
14785
|
-
period: PropTypes.string,
|
|
14786
|
-
width: PropTypes.string,
|
|
14787
|
-
height: PropTypes.string,
|
|
14788
|
-
selectTextColor: PropTypes.string,
|
|
14789
|
-
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
|
|
14790
14789
|
};
|
|
14791
14790
|
EventListItem.defaultProps = {
|
|
14792
14791
|
eventName: '',
|
|
@@ -14870,15 +14869,15 @@ const EventList = props => {
|
|
|
14870
14869
|
//= ======================================== MAIN RETURN END====================================
|
|
14871
14870
|
};
|
|
14872
14871
|
EventList.propTypes = {
|
|
14873
|
-
eventsData: PropTypes.arrayOf(PropTypes.shape({
|
|
14874
|
-
eventName: PropTypes.string,
|
|
14875
|
-
period: PropTypes.string
|
|
14872
|
+
eventsData: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
14873
|
+
eventName: PropTypes$1.string,
|
|
14874
|
+
period: PropTypes$1.string
|
|
14876
14875
|
})),
|
|
14877
|
-
selectTextColor: PropTypes.string,
|
|
14878
|
-
height: PropTypes.string,
|
|
14879
|
-
width: PropTypes.string,
|
|
14880
|
-
itemHeight: PropTypes.string,
|
|
14881
|
-
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
|
|
14882
14881
|
};
|
|
14883
14882
|
EventList.defaultProps = {
|
|
14884
14883
|
eventsData: [],
|
|
@@ -15202,15 +15201,15 @@ const BannerEventBox = props => {
|
|
|
15202
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)))));
|
|
15203
15202
|
};
|
|
15204
15203
|
BannerEventBox.propTypes = {
|
|
15205
|
-
width: PropTypes.string,
|
|
15206
|
-
height: PropTypes.string,
|
|
15207
|
-
banner: PropTypes.string,
|
|
15208
|
-
buttonText: PropTypes.string,
|
|
15209
|
-
description: PropTypes.string,
|
|
15210
|
-
disabled: PropTypes.bool,
|
|
15211
|
-
dates: PropTypes.arrayOf(PropTypes.string),
|
|
15212
|
-
data: PropTypes.arrayOf(PropTypes.shape({})),
|
|
15213
|
-
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
|
|
15214
15213
|
};
|
|
15215
15214
|
BannerEventBox.defaultProps = {
|
|
15216
15215
|
width: "auto",
|
|
@@ -15315,24 +15314,24 @@ const BannerEventBoxList = props => {
|
|
|
15315
15314
|
})), showDraft && /*#__PURE__*/React$1.createElement(DraftTag$1, null, "DRAFT")) : children));
|
|
15316
15315
|
};
|
|
15317
15316
|
BannerEventBoxList.propTypes = {
|
|
15318
|
-
className: PropTypes.string,
|
|
15319
|
-
width: PropTypes.string,
|
|
15320
|
-
height: PropTypes.string,
|
|
15321
|
-
eventType: PropTypes.string,
|
|
15322
|
-
eventName: PropTypes.string,
|
|
15323
|
-
count: PropTypes.number,
|
|
15324
|
-
toggleColor: PropTypes.string,
|
|
15325
|
-
data: PropTypes.arrayOf(PropTypes.shape({})),
|
|
15326
|
-
retailer: PropTypes.string,
|
|
15327
|
-
retailerFile: PropTypes.func,
|
|
15328
|
-
showLoader: PropTypes.bool,
|
|
15329
|
-
showEventDetails: PropTypes.bool,
|
|
15330
|
-
cardsContent: PropTypes.bool,
|
|
15331
|
-
linkText: PropTypes.string,
|
|
15332
|
-
disableToggle: PropTypes.bool,
|
|
15333
|
-
children: PropTypes.node,
|
|
15334
|
-
bannerWidth: PropTypes.string,
|
|
15335
|
-
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
|
|
15336
15335
|
};
|
|
15337
15336
|
BannerEventBoxList.defaultProps = {
|
|
15338
15337
|
className: '',
|
|
@@ -15477,10 +15476,10 @@ const DialogOverlay = props => {
|
|
|
15477
15476
|
}, children)));
|
|
15478
15477
|
};
|
|
15479
15478
|
DialogOverlay.propTypes = {
|
|
15480
|
-
title: PropTypes.string,
|
|
15481
|
-
children: PropTypes.node,
|
|
15482
|
-
onDialogClose: PropTypes.func,
|
|
15483
|
-
className: PropTypes.string
|
|
15479
|
+
title: PropTypes$1.string,
|
|
15480
|
+
children: PropTypes$1.node,
|
|
15481
|
+
onDialogClose: PropTypes$1.func,
|
|
15482
|
+
className: PropTypes$1.string
|
|
15484
15483
|
};
|
|
15485
15484
|
DialogOverlay.defaultProps = {
|
|
15486
15485
|
title: 'Title',
|
|
@@ -26067,35 +26066,35 @@ const CollapseHeader = props => {
|
|
|
26067
26066
|
}, data.eventDatesValue) : "")))));
|
|
26068
26067
|
};
|
|
26069
26068
|
CollapseHeader.propTypes = {
|
|
26070
|
-
className: PropTypes.string,
|
|
26071
|
-
showRetailerIcon: PropTypes.bool,
|
|
26072
|
-
showPeriodIcon: PropTypes.bool,
|
|
26073
|
-
viewCreativeRetailersData: PropTypes.arrayOf(PropTypes.shape({
|
|
26074
|
-
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
|
|
26075
26074
|
})),
|
|
26076
|
-
data: PropTypes.shape({
|
|
26077
|
-
eventType: PropTypes.string,
|
|
26078
|
-
retailer: PropTypes.string,
|
|
26079
|
-
eventDescription: PropTypes.string,
|
|
26080
|
-
objectivesDescription: PropTypes.string,
|
|
26081
|
-
eventDatesValue: PropTypes.string,
|
|
26082
|
-
externalEventDescription: PropTypes.string,
|
|
26083
|
-
externalEventID: PropTypes.string,
|
|
26084
|
-
storeType: PropTypes.string,
|
|
26085
|
-
category: PropTypes.string,
|
|
26086
|
-
supplier: PropTypes.string,
|
|
26087
|
-
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
|
|
26088
26087
|
}),
|
|
26089
|
-
showViewCreativeButton: PropTypes.bool,
|
|
26090
|
-
viewCreativeOnClick: PropTypes.func,
|
|
26091
|
-
descriptionTitle: PropTypes.string,
|
|
26092
|
-
datesTitle: PropTypes.string,
|
|
26093
|
-
width: PropTypes.string,
|
|
26094
|
-
height: PropTypes.string,
|
|
26095
|
-
textcolor: PropTypes.string,
|
|
26096
|
-
showDraft: PropTypes.bool,
|
|
26097
|
-
buttonText: PropTypes.string,
|
|
26098
|
-
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
|
|
26099
26098
|
};
|
|
26100
26099
|
CollapseHeader.defaultProps = {
|
|
26101
26100
|
className: "",
|
|
@@ -26458,25 +26457,25 @@ const QuickFilterDropdownSingle = ({
|
|
|
26458
26457
|
}, highlightText(option.label, inputValue))))));
|
|
26459
26458
|
};
|
|
26460
26459
|
QuickFilterDropdownSingle.propTypes = {
|
|
26461
|
-
placeHolder: PropTypes.string,
|
|
26462
|
-
label: PropTypes.string,
|
|
26463
|
-
labelColor: PropTypes.string,
|
|
26464
|
-
hoverColor: PropTypes.string,
|
|
26465
|
-
width: PropTypes.string,
|
|
26466
|
-
disabled: PropTypes.bool,
|
|
26467
|
-
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,
|
|
26468
26467
|
errorMessage: "",
|
|
26469
|
-
options: PropTypes.arrayOf(PropTypes.shape({
|
|
26470
|
-
value: PropTypes.string,
|
|
26471
|
-
label: PropTypes.string
|
|
26468
|
+
options: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
26469
|
+
value: PropTypes$1.string,
|
|
26470
|
+
label: PropTypes$1.string
|
|
26472
26471
|
})),
|
|
26473
|
-
selectedValue: PropTypes.arrayOf(PropTypes.shape({
|
|
26474
|
-
value: PropTypes.string,
|
|
26475
|
-
label: PropTypes.string
|
|
26472
|
+
selectedValue: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
26473
|
+
value: PropTypes$1.string,
|
|
26474
|
+
label: PropTypes$1.string
|
|
26476
26475
|
})),
|
|
26477
|
-
xIconShow: PropTypes.bool,
|
|
26478
|
-
onChange: PropTypes.func,
|
|
26479
|
-
showLabelOnTop: PropTypes.bool
|
|
26476
|
+
xIconShow: PropTypes$1.bool,
|
|
26477
|
+
onChange: PropTypes$1.func,
|
|
26478
|
+
showLabelOnTop: PropTypes$1.bool
|
|
26480
26479
|
};
|
|
26481
26480
|
QuickFilterDropdownSingle.defaultProps = {
|
|
26482
26481
|
placeHolder: "Type...",
|
|
@@ -26935,27 +26934,27 @@ const QuickFilterDropdownMultiSelection = ({
|
|
|
26935
26934
|
})), option.label)))));
|
|
26936
26935
|
};
|
|
26937
26936
|
QuickFilterDropdownMultiSelection.propTypes = {
|
|
26938
|
-
placeHolder: PropTypes.string,
|
|
26939
|
-
label: PropTypes.string,
|
|
26940
|
-
labelEmptyValue: PropTypes.string,
|
|
26941
|
-
labelColor: PropTypes.string,
|
|
26942
|
-
checkBoxColor: PropTypes.string,
|
|
26943
|
-
required: PropTypes.bool,
|
|
26944
|
-
width: PropTypes.string,
|
|
26945
|
-
disabled: PropTypes.bool,
|
|
26946
|
-
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,
|
|
26947
26946
|
errorMessage: '',
|
|
26948
|
-
options: PropTypes.arrayOf(PropTypes.shape({
|
|
26949
|
-
value: PropTypes.string,
|
|
26950
|
-
label: PropTypes.string
|
|
26947
|
+
options: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
26948
|
+
value: PropTypes$1.string,
|
|
26949
|
+
label: PropTypes$1.string
|
|
26951
26950
|
})),
|
|
26952
|
-
selectedValue: PropTypes.arrayOf(PropTypes.shape({
|
|
26953
|
-
value: PropTypes.string,
|
|
26954
|
-
label: PropTypes.string
|
|
26951
|
+
selectedValue: PropTypes$1.arrayOf(PropTypes$1.shape({
|
|
26952
|
+
value: PropTypes$1.string,
|
|
26953
|
+
label: PropTypes$1.string
|
|
26955
26954
|
})),
|
|
26956
|
-
onChange: PropTypes.func,
|
|
26957
|
-
xIconShow: PropTypes.bool,
|
|
26958
|
-
showLabelOnTop: PropTypes.bool
|
|
26955
|
+
onChange: PropTypes$1.func,
|
|
26956
|
+
xIconShow: PropTypes$1.bool,
|
|
26957
|
+
showLabelOnTop: PropTypes$1.bool
|
|
26959
26958
|
};
|
|
26960
26959
|
QuickFilterDropdownMultiSelection.defaultProps = {
|
|
26961
26960
|
placeHolder: 'Type...',
|
|
@@ -26989,23 +26988,23 @@ const QuickFilterMain = dt.div`
|
|
|
26989
26988
|
border-radius: 10px;
|
|
26990
26989
|
`;
|
|
26991
26990
|
|
|
26992
|
-
const QuickFilter =
|
|
26993
|
-
|
|
26994
|
-
hoverColor,
|
|
26995
|
-
multipleSelection,
|
|
26996
|
-
xIconShow,
|
|
26997
|
-
disabled,
|
|
26998
|
-
error,
|
|
26999
|
-
errorMessage,
|
|
27000
|
-
label,
|
|
27001
|
-
labelColor,
|
|
27002
|
-
placeHolder,
|
|
27003
|
-
width,
|
|
27004
|
-
checkBoxColor,
|
|
27005
|
-
onChange,
|
|
27006
|
-
options,
|
|
27007
|
-
selectedValue
|
|
27008
|
-
} =
|
|
26991
|
+
const QuickFilter = _ref => {
|
|
26992
|
+
let {
|
|
26993
|
+
hoverColor = "#066768",
|
|
26994
|
+
multipleSelection = false,
|
|
26995
|
+
xIconShow = false,
|
|
26996
|
+
disabled = false,
|
|
26997
|
+
error = false,
|
|
26998
|
+
errorMessage = "",
|
|
26999
|
+
label = "Unit Type:",
|
|
27000
|
+
labelColor = "#066768",
|
|
27001
|
+
placeHolder = "Select From List",
|
|
27002
|
+
width = "auto",
|
|
27003
|
+
checkBoxColor = "#229E38",
|
|
27004
|
+
onChange = () => {},
|
|
27005
|
+
options = [],
|
|
27006
|
+
selectedValue = []
|
|
27007
|
+
} = _ref;
|
|
27009
27008
|
return /*#__PURE__*/React.createElement(QuickFilterMain, {
|
|
27010
27009
|
width: width,
|
|
27011
27010
|
className: "QuickFilterMain"
|
|
@@ -27039,48 +27038,42 @@ const QuickFilter = props => {
|
|
|
27039
27038
|
xIconShow: xIconShow
|
|
27040
27039
|
}));
|
|
27041
27040
|
};
|
|
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
|
-
|
|
27073
|
-
|
|
27074
|
-
|
|
27075
|
-
|
|
27076
|
-
|
|
27077
|
-
|
|
27078
|
-
// width: "auto",
|
|
27079
|
-
// checkBoxColor: "#229E38",
|
|
27080
|
-
// onChange: () => {},
|
|
27081
|
-
// options: [],
|
|
27082
|
-
// selectedValue: [],
|
|
27083
|
-
// };
|
|
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
|
+
};
|
|
27084
27077
|
|
|
27085
27078
|
var classnames = {exports: {}};
|
|
27086
27079
|
|
|
@@ -27487,18 +27480,18 @@ const FormattedValue$2 = props => {
|
|
|
27487
27480
|
}, subtitle) : '')));
|
|
27488
27481
|
};
|
|
27489
27482
|
FormattedValue$2.propTypes = {
|
|
27490
|
-
className: PropTypes.string,
|
|
27491
|
-
title: PropTypes.string,
|
|
27492
|
-
subtitle: PropTypes.string,
|
|
27493
|
-
showTopValue: PropTypes.bool,
|
|
27494
|
-
value: PropTypes.number,
|
|
27495
|
-
dotCut: PropTypes.bool,
|
|
27496
|
-
currencySign: PropTypes.bool,
|
|
27497
|
-
currencyType: PropTypes.string,
|
|
27498
|
-
width: PropTypes.string,
|
|
27499
|
-
height: PropTypes.string,
|
|
27500
|
-
textcolor: PropTypes.string,
|
|
27501
|
-
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
|
|
27502
27495
|
};
|
|
27503
27496
|
FormattedValue$2.defaultProps = {
|
|
27504
27497
|
className: 'FormattedValue_ControlsContainer',
|
|
@@ -27730,13 +27723,13 @@ const PerformanceAnalyticsLegend = props => {
|
|
|
27730
27723
|
}, item.title))))) : '');
|
|
27731
27724
|
};
|
|
27732
27725
|
PerformanceAnalyticsLegend.propTypes = {
|
|
27733
|
-
className: PropTypes.string,
|
|
27734
|
-
width: PropTypes.string,
|
|
27735
|
-
height: PropTypes.string,
|
|
27736
|
-
legendData: PropTypes.arrayOf(PropTypes.shape({
|
|
27737
|
-
title: PropTypes.string.isRequired,
|
|
27738
|
-
iconType: PropTypes.oneOf([ICON_TYPE_SQUARE$1, ICON_TYPE_LEGEND_UNION_ICON$1, ICON_TYPE_LEGEND_LINE_ICON$1]).isRequired,
|
|
27739
|
-
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
|
|
27740
27733
|
}))
|
|
27741
27734
|
};
|
|
27742
27735
|
PerformanceAnalyticsLegend.defaultProps = {
|
|
@@ -27965,41 +27958,41 @@ const BarChartsByWeeks = props => {
|
|
|
27965
27958
|
}))));
|
|
27966
27959
|
};
|
|
27967
27960
|
BarChartsByWeeks.propTypes = {
|
|
27968
|
-
className: PropTypes.string,
|
|
27969
|
-
title: PropTypes.string,
|
|
27970
|
-
showHeaderTopValue: PropTypes.bool,
|
|
27971
|
-
headerValueTopTitle: PropTypes.string,
|
|
27972
|
-
headerValueBottomTitle: PropTypes.string,
|
|
27973
|
-
headerValue: PropTypes.number,
|
|
27974
|
-
HeaderValueCurrencyType: PropTypes.string,
|
|
27975
|
-
HeaderValueIsPercent: PropTypes.bool,
|
|
27976
|
-
barChartData: PropTypes.arrayOf(PropTypes.shape({
|
|
27977
|
-
title: PropTypes.string,
|
|
27978
|
-
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
|
|
27979
27972
|
})),
|
|
27980
|
-
isTitleOriganal: PropTypes.bool,
|
|
27981
|
-
width: PropTypes.string,
|
|
27982
|
-
height: PropTypes.string,
|
|
27983
|
-
barChartColor: PropTypes.string,
|
|
27984
|
-
barChartSecondColor: PropTypes.string,
|
|
27985
|
-
xselectedColor: PropTypes.string,
|
|
27986
|
-
startWeekRange: PropTypes.string,
|
|
27987
|
-
endWeekRange: PropTypes.string,
|
|
27988
|
-
tooltipTitle: PropTypes.string,
|
|
27989
|
-
tooltipSecondTitle: PropTypes.string,
|
|
27990
|
-
yAxisCounter: PropTypes.number,
|
|
27991
|
-
isPercentValue: PropTypes.bool,
|
|
27992
|
-
interval: PropTypes.string,
|
|
27993
|
-
showTitle: PropTypes.bool,
|
|
27994
|
-
showLegend: PropTypes.bool,
|
|
27995
|
-
legendData: PropTypes.arrayOf(PropTypes.shape({
|
|
27996
|
-
title: PropTypes.string.isRequired,
|
|
27997
|
-
iconType: PropTypes.oneOf([ICON_TYPE_SQUARE, ICON_TYPE_LEGEND_UNION_ICON, ICON_TYPE_LEGEND_LINE_ICON]).isRequired,
|
|
27998
|
-
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
|
|
27999
27992
|
})),
|
|
28000
|
-
showTwoBars: PropTypes.bool,
|
|
28001
|
-
setLimitHeight: PropTypes.number,
|
|
28002
|
-
setLimitLow: PropTypes.number
|
|
27993
|
+
showTwoBars: PropTypes$1.bool,
|
|
27994
|
+
setLimitHeight: PropTypes$1.number,
|
|
27995
|
+
setLimitLow: PropTypes$1.number
|
|
28003
27996
|
};
|
|
28004
27997
|
BarChartsByWeeks.defaultProps = {
|
|
28005
27998
|
className: '',
|
|
@@ -28373,27 +28366,27 @@ const TotalDoughnutChart = props => {
|
|
|
28373
28366
|
}, row.name, displayLegendValue(row)))))))));
|
|
28374
28367
|
};
|
|
28375
28368
|
TotalDoughnutChart.propTypes = {
|
|
28376
|
-
className: PropTypes.string,
|
|
28377
|
-
title: PropTypes.string,
|
|
28378
|
-
value: PropTypes.number,
|
|
28379
|
-
addingBenchmark: PropTypes.bool,
|
|
28380
|
-
dotCut: PropTypes.bool,
|
|
28381
|
-
currencySign: PropTypes.bool,
|
|
28382
|
-
currencyType: PropTypes.string,
|
|
28383
|
-
legendData: PropTypes.arrayOf(PropTypes.shape({
|
|
28384
|
-
name: PropTypes.string,
|
|
28385
|
-
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
|
|
28386
28379
|
})),
|
|
28387
|
-
itemsPercentagesValueAside: PropTypes.bool,
|
|
28388
|
-
itemsBoldedValues: PropTypes.bool,
|
|
28389
|
-
itemsValuesSeparateLine: PropTypes.bool,
|
|
28390
|
-
width: PropTypes.string,
|
|
28391
|
-
height: PropTypes.string,
|
|
28392
|
-
textcolor: PropTypes.string,
|
|
28393
|
-
isPercent: PropTypes.bool,
|
|
28394
|
-
hideTitleAndValue: PropTypes.bool,
|
|
28395
|
-
noDataText: PropTypes.string,
|
|
28396
|
-
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
|
|
28397
28390
|
};
|
|
28398
28391
|
TotalDoughnutChart.defaultProps = {
|
|
28399
28392
|
className: '',
|
|
@@ -28430,13 +28423,13 @@ function CustomTooltip(_ref) {
|
|
|
28430
28423
|
}
|
|
28431
28424
|
CustomTooltip.propTypes = {
|
|
28432
28425
|
// eslint-disable-next-line react/forbid-prop-types
|
|
28433
|
-
active: PropTypes.any,
|
|
28426
|
+
active: PropTypes$1.any,
|
|
28434
28427
|
// eslint-disable-next-line react/forbid-prop-types
|
|
28435
|
-
payload: PropTypes.any,
|
|
28428
|
+
payload: PropTypes$1.any,
|
|
28436
28429
|
// eslint-disable-next-line react/forbid-prop-types
|
|
28437
|
-
value: PropTypes.any,
|
|
28430
|
+
value: PropTypes$1.any,
|
|
28438
28431
|
// eslint-disable-next-line react/forbid-prop-types
|
|
28439
|
-
isPercent: PropTypes.any
|
|
28432
|
+
isPercent: PropTypes$1.any
|
|
28440
28433
|
};
|
|
28441
28434
|
CustomTooltip.defaultProps = {
|
|
28442
28435
|
active: '',
|
|
@@ -28560,11 +28553,11 @@ const Tooltip = props => {
|
|
|
28560
28553
|
}, content)));
|
|
28561
28554
|
};
|
|
28562
28555
|
Tooltip.propTypes = {
|
|
28563
|
-
className: PropTypes.string,
|
|
28564
|
-
top: PropTypes.number,
|
|
28565
|
-
left: PropTypes.number,
|
|
28566
|
-
direction: PropTypes.string,
|
|
28567
|
-
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
|
|
28568
28561
|
};
|
|
28569
28562
|
Tooltip.defaultProps = {
|
|
28570
28563
|
className: '',
|
|
@@ -28853,31 +28846,31 @@ const TotalHorizontalCharts = props => {
|
|
|
28853
28846
|
}));
|
|
28854
28847
|
};
|
|
28855
28848
|
TotalHorizontalCharts.propTypes = {
|
|
28856
|
-
className: PropTypes.string,
|
|
28857
|
-
title: PropTypes.string,
|
|
28858
|
-
value: PropTypes.number,
|
|
28859
|
-
dotCut: PropTypes.bool,
|
|
28860
|
-
currencySign: PropTypes.bool,
|
|
28861
|
-
currencyType: PropTypes.string,
|
|
28862
|
-
chartsData: PropTypes.arrayOf(PropTypes.shape({
|
|
28863
|
-
name: PropTypes.string,
|
|
28864
|
-
value: PropTypes.number,
|
|
28865
|
-
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
|
|
28866
28859
|
})),
|
|
28867
|
-
showScrollerBarsCount: PropTypes.number,
|
|
28868
|
-
showPercentAsideValue: PropTypes.bool,
|
|
28869
|
-
labelFontSize: PropTypes.number,
|
|
28870
|
-
labelLimitedLetters: PropTypes.number,
|
|
28871
|
-
width: PropTypes.string,
|
|
28872
|
-
height: PropTypes.string,
|
|
28873
|
-
rightGap: PropTypes.number,
|
|
28874
|
-
textColor: PropTypes.string,
|
|
28875
|
-
noDataText: PropTypes.string,
|
|
28876
|
-
isDollar: PropTypes.bool,
|
|
28877
|
-
isPercentage: PropTypes.bool,
|
|
28878
|
-
showDollarSign: PropTypes.bool,
|
|
28879
|
-
hideTotalValue: PropTypes.bool,
|
|
28880
|
-
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
|
|
28881
28874
|
};
|
|
28882
28875
|
TotalHorizontalCharts.defaultProps = {
|
|
28883
28876
|
className: '',
|
|
@@ -29066,23 +29059,23 @@ const SalesAndROI = props => {
|
|
|
29066
29059
|
}));
|
|
29067
29060
|
};
|
|
29068
29061
|
SalesAndROI.propTypes = {
|
|
29069
|
-
title: PropTypes.string,
|
|
29070
|
-
dotCut: PropTypes.bool,
|
|
29071
|
-
currencySign: PropTypes.bool,
|
|
29072
|
-
currencyType: PropTypes.string,
|
|
29073
|
-
salesData: PropTypes.arrayOf(PropTypes.shape({
|
|
29074
|
-
name: PropTypes.string,
|
|
29075
|
-
value: PropTypes.number,
|
|
29076
|
-
labelBefore: PropTypes.string,
|
|
29077
|
-
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
|
|
29078
29071
|
})),
|
|
29079
|
-
width: PropTypes.string,
|
|
29080
|
-
height: PropTypes.string,
|
|
29081
|
-
textColor: PropTypes.string,
|
|
29082
|
-
showBanner: PropTypes.bool,
|
|
29083
|
-
noDataText: PropTypes.string,
|
|
29084
|
-
onBannerClick: PropTypes.func,
|
|
29085
|
-
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
|
|
29086
29079
|
};
|
|
29087
29080
|
SalesAndROI.defaultProps = {
|
|
29088
29081
|
title: 'SALES',
|
|
@@ -29378,25 +29371,25 @@ const PopupCharts = props => {
|
|
|
29378
29371
|
}, popupChartsItemsData.map(item => displayChartItem(item))))));
|
|
29379
29372
|
};
|
|
29380
29373
|
PopupCharts.propTypes = {
|
|
29381
|
-
title: PropTypes.string,
|
|
29382
|
-
chartType: PropTypes.string,
|
|
29374
|
+
title: PropTypes$1.string,
|
|
29375
|
+
chartType: PropTypes$1.string,
|
|
29383
29376
|
// eslint-disable-next-line react/require-default-props
|
|
29384
|
-
popupChartsItemsData: PropTypes.arrayOf(PropTypes.shape({
|
|
29385
|
-
title: PropTypes.string,
|
|
29386
|
-
chartType: PropTypes.string,
|
|
29387
|
-
value: PropTypes.number,
|
|
29388
|
-
legendData: PropTypes.arrayOf(PropTypes.shape({
|
|
29389
|
-
color: PropTypes.string,
|
|
29390
|
-
name: PropTypes.string,
|
|
29391
|
-
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
|
|
29392
29385
|
})),
|
|
29393
|
-
noDataText: PropTypes.string
|
|
29386
|
+
noDataText: PropTypes$1.string
|
|
29394
29387
|
})),
|
|
29395
|
-
isPopupChartsOpen: PropTypes.bool,
|
|
29396
|
-
width: PropTypes.string,
|
|
29397
|
-
height: PropTypes.string,
|
|
29398
|
-
onCloseClick: PropTypes.func,
|
|
29399
|
-
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
|
|
29400
29393
|
};
|
|
29401
29394
|
PopupCharts.defaultProps = {
|
|
29402
29395
|
title: 'Switching Pattern',
|
|
@@ -29504,12 +29497,12 @@ const TopToggleList = props => {
|
|
|
29504
29497
|
}, /*#__PURE__*/React$1.createElement(Item, null, item.label)))));
|
|
29505
29498
|
};
|
|
29506
29499
|
TopToggleList.propTypes = {
|
|
29507
|
-
width: PropTypes.string,
|
|
29508
|
-
height: PropTypes.string,
|
|
29509
|
-
title: PropTypes.string,
|
|
29510
|
-
list: PropTypes.arrayOf({
|
|
29511
|
-
value: PropTypes.string,
|
|
29512
|
-
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
|
|
29513
29506
|
})
|
|
29514
29507
|
};
|
|
29515
29508
|
TopToggleList.defaultProps = {
|
|
@@ -29839,14 +29832,14 @@ const Heatmap = props => {
|
|
|
29839
29832
|
}, title)), refreshRequired && renderBars(), !refreshRequired && renderBars(), renderLegend()));
|
|
29840
29833
|
};
|
|
29841
29834
|
Heatmap.propTypes = {
|
|
29842
|
-
title: PropTypes.string.isRequired,
|
|
29843
|
-
data: PropTypes.arrayOf(PropTypes.shape({
|
|
29844
|
-
value: PropTypes.number.isRequired,
|
|
29845
|
-
label: PropTypes.string.isRequired,
|
|
29846
|
-
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
|
|
29847
29840
|
})).isRequired,
|
|
29848
|
-
lowLimit: PropTypes.number.isRequired,
|
|
29849
|
-
barHeight: PropTypes.string.isRequired
|
|
29841
|
+
lowLimit: PropTypes$1.number.isRequired,
|
|
29842
|
+
barHeight: PropTypes$1.string.isRequired
|
|
29850
29843
|
};
|
|
29851
29844
|
|
|
29852
29845
|
const ButtonWrapper = dt.div`
|
|
@@ -30021,19 +30014,19 @@ const IconButton = props => {
|
|
|
30021
30014
|
IconButton.propTypes = {
|
|
30022
30015
|
// downloadStatus: PropTypes.string,
|
|
30023
30016
|
// fileName: PropTypes.string,
|
|
30024
|
-
fileLink: PropTypes.string,
|
|
30025
|
-
showProcess: PropTypes.bool,
|
|
30026
|
-
buttonText: PropTypes.string,
|
|
30027
|
-
iconName: PropTypes.string,
|
|
30028
|
-
contentColor: PropTypes.string,
|
|
30029
|
-
backgroundColor: PropTypes.string,
|
|
30030
|
-
borderColor: PropTypes.string,
|
|
30031
|
-
borderRadius: PropTypes.string,
|
|
30032
|
-
iconHeight: PropTypes.number,
|
|
30033
|
-
iconWidth: PropTypes.number,
|
|
30034
|
-
disabled: PropTypes.bool,
|
|
30035
|
-
onClick: PropTypes.func,
|
|
30036
|
-
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
|
|
30037
30030
|
};
|
|
30038
30031
|
IconButton.defaultProps = {
|
|
30039
30032
|
// downloadStatus: '',
|