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