sag_components 2.0.0-beta140 → 2.0.0-beta141
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 +73 -1
- package/dist/index.esm.js +495 -78
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +506 -77
- package/dist/index.js.map +1 -1
- package/dist/types/components/MenuRoute/MenuIcons/AdvancedThresholds.d.ts +6 -0
- package/dist/types/components/MenuRoute/MenuIcons/Analytics.d.ts +6 -0
- package/dist/types/components/MenuRoute/MenuIcons/Budgets.d.ts +6 -0
- package/dist/types/components/MenuRoute/MenuIcons/Campaigns.d.ts +6 -0
- package/dist/types/components/MenuRoute/MenuIcons/Coupons.d.ts +6 -0
- package/dist/types/components/MenuRoute/MenuIcons/CustomerSegments.d.ts +6 -0
- package/dist/types/components/MenuRoute/MenuIcons/Dashboard.d.ts +6 -0
- package/dist/types/components/MenuRoute/MenuIcons/GroupBuilder.d.ts +6 -0
- package/dist/types/components/MenuRoute/MenuIcons/ItemsStores.d.ts +6 -0
- package/dist/types/components/MenuRoute/MenuIcons/PreTestWhatIf.d.ts +6 -0
- package/dist/types/components/MenuRoute/MenuIcons/RulesEngine.d.ts +6 -0
- package/dist/types/components/MenuRoute/MenuIcons/SampleRunEngine.d.ts +6 -0
- package/dist/types/components/MenuRoute/MenuRoute.stories.d.ts +118 -2
- package/dist/types/index.d.ts +12 -0
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -10317,23 +10317,24 @@ const QuarterPopupPicker = ({
|
|
|
10317
10317
|
};
|
|
10318
10318
|
|
|
10319
10319
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
10320
|
-
const QuarterPicker =
|
|
10321
|
-
|
|
10322
|
-
|
|
10323
|
-
|
|
10324
|
-
|
|
10325
|
-
|
|
10326
|
-
|
|
10327
|
-
|
|
10328
|
-
|
|
10329
|
-
|
|
10330
|
-
|
|
10331
|
-
|
|
10332
|
-
|
|
10333
|
-
|
|
10334
|
-
|
|
10335
|
-
|
|
10336
|
-
|
|
10320
|
+
const QuarterPicker = _ref => {
|
|
10321
|
+
let {
|
|
10322
|
+
availableQuarters,
|
|
10323
|
+
// ["Q1-2024"]
|
|
10324
|
+
label,
|
|
10325
|
+
onChange,
|
|
10326
|
+
borderRadius,
|
|
10327
|
+
required,
|
|
10328
|
+
width,
|
|
10329
|
+
height,
|
|
10330
|
+
placeholder,
|
|
10331
|
+
disabled,
|
|
10332
|
+
borderColor,
|
|
10333
|
+
borderColorFocus,
|
|
10334
|
+
textColor,
|
|
10335
|
+
selectedValue,
|
|
10336
|
+
startYear
|
|
10337
|
+
} = _ref;
|
|
10337
10338
|
const [isFocused, setIsFocused] = useState(false);
|
|
10338
10339
|
const [isOpen, setIsOpen] = useState(false);
|
|
10339
10340
|
const [value, setValue] = useState('');
|
|
@@ -10775,22 +10776,23 @@ const MonthPopupPicker = ({
|
|
|
10775
10776
|
};
|
|
10776
10777
|
|
|
10777
10778
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
10778
|
-
const MonthPicker =
|
|
10779
|
-
|
|
10780
|
-
|
|
10781
|
-
|
|
10782
|
-
|
|
10783
|
-
|
|
10784
|
-
|
|
10785
|
-
|
|
10786
|
-
|
|
10787
|
-
|
|
10788
|
-
|
|
10789
|
-
|
|
10790
|
-
|
|
10791
|
-
|
|
10792
|
-
|
|
10793
|
-
|
|
10779
|
+
const MonthPicker = _ref => {
|
|
10780
|
+
let {
|
|
10781
|
+
availableMonths,
|
|
10782
|
+
label,
|
|
10783
|
+
onChange,
|
|
10784
|
+
borderRadius,
|
|
10785
|
+
required,
|
|
10786
|
+
width,
|
|
10787
|
+
height,
|
|
10788
|
+
placeholder,
|
|
10789
|
+
disabled,
|
|
10790
|
+
borderColor,
|
|
10791
|
+
borderColorFocus,
|
|
10792
|
+
textColor,
|
|
10793
|
+
selectedValue,
|
|
10794
|
+
startYear
|
|
10795
|
+
} = _ref;
|
|
10794
10796
|
const [isFocused, setIsFocused] = useState(false);
|
|
10795
10797
|
const [isOpen, setIsOpen] = useState(false);
|
|
10796
10798
|
const [value, setValue] = useState('');
|
|
@@ -23901,21 +23903,22 @@ const DeleteIcon = styled.div`
|
|
|
23901
23903
|
position: absolute;
|
|
23902
23904
|
`;
|
|
23903
23905
|
|
|
23904
|
-
const QuickFilterDropdownSingle =
|
|
23905
|
-
|
|
23906
|
-
|
|
23907
|
-
|
|
23908
|
-
|
|
23909
|
-
|
|
23910
|
-
|
|
23911
|
-
|
|
23912
|
-
|
|
23913
|
-
|
|
23914
|
-
|
|
23915
|
-
|
|
23916
|
-
|
|
23917
|
-
|
|
23918
|
-
|
|
23906
|
+
const QuickFilterDropdownSingle = _ref => {
|
|
23907
|
+
let {
|
|
23908
|
+
label,
|
|
23909
|
+
hoverColor,
|
|
23910
|
+
options,
|
|
23911
|
+
selectedValue,
|
|
23912
|
+
placeHolder,
|
|
23913
|
+
onChange,
|
|
23914
|
+
disabled,
|
|
23915
|
+
width,
|
|
23916
|
+
error,
|
|
23917
|
+
errorMessage,
|
|
23918
|
+
xIconShow,
|
|
23919
|
+
labelColor,
|
|
23920
|
+
showLabelOnTop
|
|
23921
|
+
} = _ref;
|
|
23919
23922
|
const [isFocused, setIsFocused] = useState(false);
|
|
23920
23923
|
const [showOptions, setShowOptions] = useState(false);
|
|
23921
23924
|
const [inputValue, setInputValue] = useState("");
|
|
@@ -24312,23 +24315,24 @@ const IconContainer$2 = styled.div`
|
|
|
24312
24315
|
cursor: pointer;
|
|
24313
24316
|
`;
|
|
24314
24317
|
|
|
24315
|
-
const QuickFilterDropdownMultiSelection =
|
|
24316
|
-
|
|
24317
|
-
|
|
24318
|
-
|
|
24319
|
-
|
|
24320
|
-
|
|
24321
|
-
|
|
24322
|
-
|
|
24323
|
-
|
|
24324
|
-
|
|
24325
|
-
|
|
24326
|
-
|
|
24327
|
-
|
|
24328
|
-
|
|
24329
|
-
|
|
24330
|
-
|
|
24331
|
-
|
|
24318
|
+
const QuickFilterDropdownMultiSelection = _ref => {
|
|
24319
|
+
let {
|
|
24320
|
+
label,
|
|
24321
|
+
labelEmptyValue,
|
|
24322
|
+
options,
|
|
24323
|
+
selectedValue,
|
|
24324
|
+
placeHolder,
|
|
24325
|
+
onChange,
|
|
24326
|
+
required,
|
|
24327
|
+
disabled,
|
|
24328
|
+
width,
|
|
24329
|
+
error,
|
|
24330
|
+
errorMessage,
|
|
24331
|
+
labelColor,
|
|
24332
|
+
xIconShow,
|
|
24333
|
+
checkBoxColor,
|
|
24334
|
+
showLabelOnTop
|
|
24335
|
+
} = _ref;
|
|
24332
24336
|
const [isFocused, setIsFocused] = useState(false);
|
|
24333
24337
|
const [showOptions, setShowOptions] = useState(false);
|
|
24334
24338
|
const [inputValue, setInputValue] = useState('');
|
|
@@ -35560,9 +35564,9 @@ const ToggleSlider = styled.span`
|
|
|
35560
35564
|
}
|
|
35561
35565
|
`;
|
|
35562
35566
|
|
|
35563
|
-
/**
|
|
35564
|
-
* ToggleSwitch component for on/off states.
|
|
35565
|
-
* Supports small/large sizes and disabled state.
|
|
35567
|
+
/**
|
|
35568
|
+
* ToggleSwitch component for on/off states.
|
|
35569
|
+
* Supports small/large sizes and disabled state.
|
|
35566
35570
|
*/
|
|
35567
35571
|
function ToggleSwitch(_ref) {
|
|
35568
35572
|
let {
|
|
@@ -35697,9 +35701,12 @@ const ContainerTable = props => {
|
|
|
35697
35701
|
|
|
35698
35702
|
const MenuRouteContainer = styled.div`
|
|
35699
35703
|
font-family: 'Poppins', sans-serif;
|
|
35704
|
+
width: ${props => props.width || '100%'};
|
|
35700
35705
|
`;
|
|
35701
35706
|
const ButtonGroup = styled.div`
|
|
35702
35707
|
display: flex;
|
|
35708
|
+
flex-direction: ${props => props.layout === 'vertical' ? 'column' : 'row'};
|
|
35709
|
+
gap: ${props => props.layout === 'vertical' ? '20px' : '0px'};
|
|
35703
35710
|
justify-content: ${props => {
|
|
35704
35711
|
switch (props.pos) {
|
|
35705
35712
|
case 'left':
|
|
@@ -35719,14 +35726,32 @@ const Button = styled.button`
|
|
|
35719
35726
|
display: flex;
|
|
35720
35727
|
gap: 12px;
|
|
35721
35728
|
align-items: center;
|
|
35722
|
-
color: #212121;
|
|
35723
|
-
padding:
|
|
35724
|
-
font-
|
|
35725
|
-
font-
|
|
35729
|
+
color: ${props => props.notSelectedColor || '#212121'};
|
|
35730
|
+
padding: 12px 24px;
|
|
35731
|
+
font-family: 'Poppins', sans-serif;
|
|
35732
|
+
font-size: ${props => props.fontSize || '16px'};
|
|
35733
|
+
font-weight: ${props => props.fontWeight || '600'};
|
|
35734
|
+
border-radius: 8px;
|
|
35735
|
+
cursor: pointer;
|
|
35736
|
+
min-height: 44px;
|
|
35737
|
+
box-sizing: border-box;
|
|
35738
|
+
position: relative;
|
|
35726
35739
|
|
|
35727
35740
|
&.active {
|
|
35728
35741
|
color: ${props => props.color || '#066768'};
|
|
35729
|
-
|
|
35742
|
+
background-color: ${props => props.selectedBackgroundColor || 'transparent'};
|
|
35743
|
+
|
|
35744
|
+
${props => props.layout !== 'vertical' && `
|
|
35745
|
+
&::after {
|
|
35746
|
+
content: '';
|
|
35747
|
+
position: absolute;
|
|
35748
|
+
bottom: 0;
|
|
35749
|
+
left: 0;
|
|
35750
|
+
right: 0;
|
|
35751
|
+
height: 3px;
|
|
35752
|
+
background-color: ${props.color || '#066768'};
|
|
35753
|
+
}
|
|
35754
|
+
`}
|
|
35730
35755
|
}
|
|
35731
35756
|
|
|
35732
35757
|
&:disabled {
|
|
@@ -35738,6 +35763,14 @@ const Button = styled.button`
|
|
|
35738
35763
|
const MenuRoute = props => {
|
|
35739
35764
|
const {
|
|
35740
35765
|
tabsPosition,
|
|
35766
|
+
layout = 'horizontal',
|
|
35767
|
+
width = '100%',
|
|
35768
|
+
fontSize = '16px',
|
|
35769
|
+
fontWeight = '600',
|
|
35770
|
+
notSelectedColor = '#212121',
|
|
35771
|
+
selectedBackgroundColor = 'transparent',
|
|
35772
|
+
iconSize = '24',
|
|
35773
|
+
iconColor = '#212121',
|
|
35741
35774
|
items,
|
|
35742
35775
|
color,
|
|
35743
35776
|
selecetIndex = 0,
|
|
@@ -35760,16 +35793,26 @@ const MenuRoute = props => {
|
|
|
35760
35793
|
onTabClick(key);
|
|
35761
35794
|
}
|
|
35762
35795
|
};
|
|
35763
|
-
return /*#__PURE__*/React$1.createElement(MenuRouteContainer,
|
|
35764
|
-
|
|
35796
|
+
return /*#__PURE__*/React$1.createElement(MenuRouteContainer, {
|
|
35797
|
+
width: width
|
|
35798
|
+
}, /*#__PURE__*/React$1.createElement(ButtonGroup, {
|
|
35799
|
+
pos: tabsPosition,
|
|
35800
|
+
layout: layout
|
|
35765
35801
|
}, items.map(item => /*#__PURE__*/React$1.createElement(Button, {
|
|
35766
35802
|
key: item.key,
|
|
35767
35803
|
onClick: () => handleItemClick(item.key, item),
|
|
35768
35804
|
disabled: item.disabled,
|
|
35769
35805
|
className: activeItem === item.key ? 'active' : '',
|
|
35770
|
-
color: color
|
|
35806
|
+
color: color,
|
|
35807
|
+
layout: layout,
|
|
35808
|
+
fontSize: fontSize,
|
|
35809
|
+
fontWeight: fontWeight,
|
|
35810
|
+
notSelectedColor: notSelectedColor,
|
|
35811
|
+
selectedBackgroundColor: selectedBackgroundColor
|
|
35771
35812
|
}, item.icon && /*#__PURE__*/React$1.cloneElement(item.icon, {
|
|
35772
|
-
|
|
35813
|
+
width: iconSize,
|
|
35814
|
+
height: iconSize,
|
|
35815
|
+
fill: item.disabled ? '#717171' : activeItem === item.key ? color : iconColor
|
|
35773
35816
|
}), /*#__PURE__*/React$1.isValidElement(item.label) ? item.label : item.label))));
|
|
35774
35817
|
};
|
|
35775
35818
|
|
|
@@ -35846,6 +35889,380 @@ const Execute = _ref => {
|
|
|
35846
35889
|
}));
|
|
35847
35890
|
};
|
|
35848
35891
|
|
|
35892
|
+
const Dashboard = _ref => {
|
|
35893
|
+
let {
|
|
35894
|
+
width = '24',
|
|
35895
|
+
height = '24',
|
|
35896
|
+
fill = "#212121"
|
|
35897
|
+
} = _ref;
|
|
35898
|
+
return /*#__PURE__*/React$1.createElement("svg", {
|
|
35899
|
+
width: width,
|
|
35900
|
+
height: height,
|
|
35901
|
+
viewBox: "0 0 24 24",
|
|
35902
|
+
fill: "none",
|
|
35903
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
35904
|
+
}, /*#__PURE__*/React$1.createElement("path", {
|
|
35905
|
+
d: "M3 3H10V11H3V3ZM14 3H21V7H14V3ZM14 11H21V21H14V11ZM3 15H10V21H3V15Z",
|
|
35906
|
+
fill: fill
|
|
35907
|
+
}), /*#__PURE__*/React$1.createElement("path", {
|
|
35908
|
+
d: "M4 4V10H9V4H4ZM15 4V6H20V4H15ZM15 12V20H20V12H15ZM4 16V20H9V16H4Z",
|
|
35909
|
+
fill: "none",
|
|
35910
|
+
stroke: fill,
|
|
35911
|
+
strokeWidth: "0.5"
|
|
35912
|
+
}));
|
|
35913
|
+
};
|
|
35914
|
+
|
|
35915
|
+
const Campaigns = _ref => {
|
|
35916
|
+
let {
|
|
35917
|
+
width = '24',
|
|
35918
|
+
height = '24',
|
|
35919
|
+
fill = "#212121"
|
|
35920
|
+
} = _ref;
|
|
35921
|
+
return /*#__PURE__*/React$1.createElement("svg", {
|
|
35922
|
+
width: width,
|
|
35923
|
+
height: height,
|
|
35924
|
+
viewBox: "0 0 24 24",
|
|
35925
|
+
fill: "none",
|
|
35926
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
35927
|
+
}, /*#__PURE__*/React$1.createElement("path", {
|
|
35928
|
+
d: "M12 2L13.09 8.26L20.5 7L18.5 13.74L21 20L13.09 15.74L12 22L10.91 15.74L3 20L5.5 13.74L2.5 7L9.91 8.26L12 2Z",
|
|
35929
|
+
fill: fill
|
|
35930
|
+
}));
|
|
35931
|
+
};
|
|
35932
|
+
|
|
35933
|
+
const Budgets = _ref => {
|
|
35934
|
+
let {
|
|
35935
|
+
width = '24',
|
|
35936
|
+
height = '24',
|
|
35937
|
+
fill = "#212121"
|
|
35938
|
+
} = _ref;
|
|
35939
|
+
return /*#__PURE__*/React$1.createElement("svg", {
|
|
35940
|
+
width: width,
|
|
35941
|
+
height: height,
|
|
35942
|
+
viewBox: "0 0 24 24",
|
|
35943
|
+
fill: "none",
|
|
35944
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
35945
|
+
}, /*#__PURE__*/React$1.createElement("path", {
|
|
35946
|
+
d: "M12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM13.5 6L15.5 7.5L14 9H16V11H13V13H16V15H13V17H11V15H9V13H10.5L12 11.5V9.5L10.5 8H9V6H11V4H13V6H13.5Z",
|
|
35947
|
+
fill: fill
|
|
35948
|
+
}));
|
|
35949
|
+
};
|
|
35950
|
+
|
|
35951
|
+
const SampleRunEngine = _ref => {
|
|
35952
|
+
let {
|
|
35953
|
+
width = '24',
|
|
35954
|
+
height = '24',
|
|
35955
|
+
fill = "#212121"
|
|
35956
|
+
} = _ref;
|
|
35957
|
+
return /*#__PURE__*/React$1.createElement("svg", {
|
|
35958
|
+
width: width,
|
|
35959
|
+
height: height,
|
|
35960
|
+
viewBox: "0 0 24 24",
|
|
35961
|
+
fill: "none",
|
|
35962
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
35963
|
+
}, /*#__PURE__*/React$1.createElement("path", {
|
|
35964
|
+
d: "M12 2L15.09 8.26L22 9L17 14L18.18 21L12 17.27L5.82 21L7 14L2 9L8.91 8.26L12 2Z",
|
|
35965
|
+
fill: "none",
|
|
35966
|
+
stroke: fill,
|
|
35967
|
+
strokeWidth: "1.5"
|
|
35968
|
+
}), /*#__PURE__*/React$1.createElement("circle", {
|
|
35969
|
+
cx: "12",
|
|
35970
|
+
cy: "12",
|
|
35971
|
+
r: "3",
|
|
35972
|
+
fill: fill
|
|
35973
|
+
}));
|
|
35974
|
+
};
|
|
35975
|
+
|
|
35976
|
+
const Coupons = _ref => {
|
|
35977
|
+
let {
|
|
35978
|
+
width = '24',
|
|
35979
|
+
height = '24',
|
|
35980
|
+
fill = "#212121"
|
|
35981
|
+
} = _ref;
|
|
35982
|
+
return /*#__PURE__*/React$1.createElement("svg", {
|
|
35983
|
+
width: width,
|
|
35984
|
+
height: height,
|
|
35985
|
+
viewBox: "0 0 24 24",
|
|
35986
|
+
fill: "none",
|
|
35987
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
35988
|
+
}, /*#__PURE__*/React$1.createElement("path", {
|
|
35989
|
+
d: "M21 7V5C21 3.9 20.1 3 19 3H5C3.9 3 3 3.9 3 5V7C4.1 7 5 7.9 5 9S4.1 11 3 11V19C3 20.1 3.9 21 5 21H19C20.1 21 21 20.1 21 19V11C19.9 11 19 10.1 19 9S19.9 7 21 7Z",
|
|
35990
|
+
fill: fill
|
|
35991
|
+
}), /*#__PURE__*/React$1.createElement("circle", {
|
|
35992
|
+
cx: "9",
|
|
35993
|
+
cy: "9",
|
|
35994
|
+
r: "1",
|
|
35995
|
+
fill: "white"
|
|
35996
|
+
}), /*#__PURE__*/React$1.createElement("circle", {
|
|
35997
|
+
cx: "15",
|
|
35998
|
+
cy: "9",
|
|
35999
|
+
r: "1",
|
|
36000
|
+
fill: "white"
|
|
36001
|
+
}), /*#__PURE__*/React$1.createElement("circle", {
|
|
36002
|
+
cx: "9",
|
|
36003
|
+
cy: "15",
|
|
36004
|
+
r: "1",
|
|
36005
|
+
fill: "white"
|
|
36006
|
+
}), /*#__PURE__*/React$1.createElement("circle", {
|
|
36007
|
+
cx: "15",
|
|
36008
|
+
cy: "15",
|
|
36009
|
+
r: "1",
|
|
36010
|
+
fill: "white"
|
|
36011
|
+
}));
|
|
36012
|
+
};
|
|
36013
|
+
|
|
36014
|
+
const RulesEngine = _ref => {
|
|
36015
|
+
let {
|
|
36016
|
+
width = '24',
|
|
36017
|
+
height = '24',
|
|
36018
|
+
fill = "#212121"
|
|
36019
|
+
} = _ref;
|
|
36020
|
+
return /*#__PURE__*/React$1.createElement("svg", {
|
|
36021
|
+
width: width,
|
|
36022
|
+
height: height,
|
|
36023
|
+
viewBox: "0 0 24 24",
|
|
36024
|
+
fill: "none",
|
|
36025
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
36026
|
+
}, /*#__PURE__*/React$1.createElement("path", {
|
|
36027
|
+
d: "M8 3L4 9L8 15H12L16 9L12 3H8Z",
|
|
36028
|
+
fill: fill
|
|
36029
|
+
}), /*#__PURE__*/React$1.createElement("path", {
|
|
36030
|
+
d: "M13 21L9 15L13 9L17 15L13 21Z",
|
|
36031
|
+
fill: fill
|
|
36032
|
+
}), /*#__PURE__*/React$1.createElement("circle", {
|
|
36033
|
+
cx: "12",
|
|
36034
|
+
cy: "12",
|
|
36035
|
+
r: "2",
|
|
36036
|
+
fill: "white"
|
|
36037
|
+
}));
|
|
36038
|
+
};
|
|
36039
|
+
|
|
36040
|
+
const AdvancedThresholds = _ref => {
|
|
36041
|
+
let {
|
|
36042
|
+
width = '24',
|
|
36043
|
+
height = '24',
|
|
36044
|
+
fill = "#212121"
|
|
36045
|
+
} = _ref;
|
|
36046
|
+
return /*#__PURE__*/React$1.createElement("svg", {
|
|
36047
|
+
width: width,
|
|
36048
|
+
height: height,
|
|
36049
|
+
viewBox: "0 0 24 24",
|
|
36050
|
+
fill: "none",
|
|
36051
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
36052
|
+
}, /*#__PURE__*/React$1.createElement("circle", {
|
|
36053
|
+
cx: "12",
|
|
36054
|
+
cy: "12",
|
|
36055
|
+
r: "9",
|
|
36056
|
+
fill: "none",
|
|
36057
|
+
stroke: fill,
|
|
36058
|
+
strokeWidth: "1.5"
|
|
36059
|
+
}), /*#__PURE__*/React$1.createElement("circle", {
|
|
36060
|
+
cx: "12",
|
|
36061
|
+
cy: "12",
|
|
36062
|
+
r: "6",
|
|
36063
|
+
fill: "none",
|
|
36064
|
+
stroke: fill,
|
|
36065
|
+
strokeWidth: "1.5"
|
|
36066
|
+
}), /*#__PURE__*/React$1.createElement("circle", {
|
|
36067
|
+
cx: "12",
|
|
36068
|
+
cy: "12",
|
|
36069
|
+
r: "3",
|
|
36070
|
+
fill: "none",
|
|
36071
|
+
stroke: fill,
|
|
36072
|
+
strokeWidth: "1.5"
|
|
36073
|
+
}), /*#__PURE__*/React$1.createElement("circle", {
|
|
36074
|
+
cx: "12",
|
|
36075
|
+
cy: "12",
|
|
36076
|
+
r: "1",
|
|
36077
|
+
fill: fill
|
|
36078
|
+
}));
|
|
36079
|
+
};
|
|
36080
|
+
|
|
36081
|
+
const PreTestWhatIf = _ref => {
|
|
36082
|
+
let {
|
|
36083
|
+
width = '24',
|
|
36084
|
+
height = '24',
|
|
36085
|
+
fill = "#212121"
|
|
36086
|
+
} = _ref;
|
|
36087
|
+
return /*#__PURE__*/React$1.createElement("svg", {
|
|
36088
|
+
width: width,
|
|
36089
|
+
height: height,
|
|
36090
|
+
viewBox: "0 0 24 24",
|
|
36091
|
+
fill: "none",
|
|
36092
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
36093
|
+
}, /*#__PURE__*/React$1.createElement("path", {
|
|
36094
|
+
d: "M12 2L2 7L12 12L22 7L12 2Z",
|
|
36095
|
+
fill: fill
|
|
36096
|
+
}), /*#__PURE__*/React$1.createElement("path", {
|
|
36097
|
+
d: "M2 17L12 22L22 17",
|
|
36098
|
+
fill: "none",
|
|
36099
|
+
stroke: fill,
|
|
36100
|
+
strokeWidth: "1.5"
|
|
36101
|
+
}), /*#__PURE__*/React$1.createElement("path", {
|
|
36102
|
+
d: "M2 12L12 17L22 12",
|
|
36103
|
+
fill: "none",
|
|
36104
|
+
stroke: fill,
|
|
36105
|
+
strokeWidth: "1.5"
|
|
36106
|
+
}));
|
|
36107
|
+
};
|
|
36108
|
+
|
|
36109
|
+
const CustomerSegments = _ref => {
|
|
36110
|
+
let {
|
|
36111
|
+
width = '24',
|
|
36112
|
+
height = '24',
|
|
36113
|
+
fill = "#212121"
|
|
36114
|
+
} = _ref;
|
|
36115
|
+
return /*#__PURE__*/React$1.createElement("svg", {
|
|
36116
|
+
width: width,
|
|
36117
|
+
height: height,
|
|
36118
|
+
viewBox: "0 0 24 24",
|
|
36119
|
+
fill: "none",
|
|
36120
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
36121
|
+
}, /*#__PURE__*/React$1.createElement("circle", {
|
|
36122
|
+
cx: "9",
|
|
36123
|
+
cy: "7",
|
|
36124
|
+
r: "4",
|
|
36125
|
+
fill: fill
|
|
36126
|
+
}), /*#__PURE__*/React$1.createElement("path", {
|
|
36127
|
+
d: "M3 21V19C3 16.79 4.79 15 7 15H11C13.21 15 15 16.79 15 19V21",
|
|
36128
|
+
fill: fill
|
|
36129
|
+
}), /*#__PURE__*/React$1.createElement("circle", {
|
|
36130
|
+
cx: "17",
|
|
36131
|
+
cy: "7",
|
|
36132
|
+
r: "3",
|
|
36133
|
+
fill: fill
|
|
36134
|
+
}), /*#__PURE__*/React$1.createElement("path", {
|
|
36135
|
+
d: "M21 21V20C21 18.35 19.65 17 18 17H16C15.45 17 14.95 17.22 14.59 17.59",
|
|
36136
|
+
fill: fill
|
|
36137
|
+
}));
|
|
36138
|
+
};
|
|
36139
|
+
|
|
36140
|
+
const GroupBuilder = _ref => {
|
|
36141
|
+
let {
|
|
36142
|
+
width = '24',
|
|
36143
|
+
height = '24',
|
|
36144
|
+
fill = "#212121"
|
|
36145
|
+
} = _ref;
|
|
36146
|
+
return /*#__PURE__*/React$1.createElement("svg", {
|
|
36147
|
+
width: width,
|
|
36148
|
+
height: height,
|
|
36149
|
+
viewBox: "0 0 24 24",
|
|
36150
|
+
fill: "none",
|
|
36151
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
36152
|
+
}, /*#__PURE__*/React$1.createElement("circle", {
|
|
36153
|
+
cx: "6",
|
|
36154
|
+
cy: "6",
|
|
36155
|
+
r: "3",
|
|
36156
|
+
fill: fill
|
|
36157
|
+
}), /*#__PURE__*/React$1.createElement("circle", {
|
|
36158
|
+
cx: "18",
|
|
36159
|
+
cy: "6",
|
|
36160
|
+
r: "3",
|
|
36161
|
+
fill: fill
|
|
36162
|
+
}), /*#__PURE__*/React$1.createElement("circle", {
|
|
36163
|
+
cx: "6",
|
|
36164
|
+
cy: "18",
|
|
36165
|
+
r: "3",
|
|
36166
|
+
fill: fill
|
|
36167
|
+
}), /*#__PURE__*/React$1.createElement("circle", {
|
|
36168
|
+
cx: "18",
|
|
36169
|
+
cy: "18",
|
|
36170
|
+
r: "3",
|
|
36171
|
+
fill: fill
|
|
36172
|
+
}), /*#__PURE__*/React$1.createElement("path", {
|
|
36173
|
+
d: "M9 6H15",
|
|
36174
|
+
stroke: fill,
|
|
36175
|
+
strokeWidth: "1.5"
|
|
36176
|
+
}), /*#__PURE__*/React$1.createElement("path", {
|
|
36177
|
+
d: "M6 9V15",
|
|
36178
|
+
stroke: fill,
|
|
36179
|
+
strokeWidth: "1.5"
|
|
36180
|
+
}), /*#__PURE__*/React$1.createElement("path", {
|
|
36181
|
+
d: "M18 9V15",
|
|
36182
|
+
stroke: fill,
|
|
36183
|
+
strokeWidth: "1.5"
|
|
36184
|
+
}), /*#__PURE__*/React$1.createElement("path", {
|
|
36185
|
+
d: "M9 18H15",
|
|
36186
|
+
stroke: fill,
|
|
36187
|
+
strokeWidth: "1.5"
|
|
36188
|
+
}));
|
|
36189
|
+
};
|
|
36190
|
+
|
|
36191
|
+
const ItemsStores = _ref => {
|
|
36192
|
+
let {
|
|
36193
|
+
width = '24',
|
|
36194
|
+
height = '24',
|
|
36195
|
+
fill = "#212121"
|
|
36196
|
+
} = _ref;
|
|
36197
|
+
return /*#__PURE__*/React$1.createElement("svg", {
|
|
36198
|
+
width: width,
|
|
36199
|
+
height: height,
|
|
36200
|
+
viewBox: "0 0 24 24",
|
|
36201
|
+
fill: "none",
|
|
36202
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
36203
|
+
}, /*#__PURE__*/React$1.createElement("path", {
|
|
36204
|
+
d: "M7 4V2C7 1.45 7.45 1 8 1H16C16.55 1 17 1.45 17 2V4H20C20.55 4 21 4.45 21 5S20.55 6 20 6H19V19C19 20.1 18.1 21 17 21H7C5.9 21 5 20.1 5 19V6H4C3.45 6 3 5.55 3 5S3.45 4 4 4H7Z",
|
|
36205
|
+
fill: fill
|
|
36206
|
+
}), /*#__PURE__*/React$1.createElement("path", {
|
|
36207
|
+
d: "M9 8V17",
|
|
36208
|
+
stroke: "white",
|
|
36209
|
+
strokeWidth: "1"
|
|
36210
|
+
}), /*#__PURE__*/React$1.createElement("path", {
|
|
36211
|
+
d: "M12 8V17",
|
|
36212
|
+
stroke: "white",
|
|
36213
|
+
strokeWidth: "1"
|
|
36214
|
+
}), /*#__PURE__*/React$1.createElement("path", {
|
|
36215
|
+
d: "M15 8V17",
|
|
36216
|
+
stroke: "white",
|
|
36217
|
+
strokeWidth: "1"
|
|
36218
|
+
}));
|
|
36219
|
+
};
|
|
36220
|
+
|
|
36221
|
+
const Analytics = _ref => {
|
|
36222
|
+
let {
|
|
36223
|
+
width = '24',
|
|
36224
|
+
height = '24',
|
|
36225
|
+
fill = "#212121"
|
|
36226
|
+
} = _ref;
|
|
36227
|
+
return /*#__PURE__*/React$1.createElement("svg", {
|
|
36228
|
+
width: width,
|
|
36229
|
+
height: height,
|
|
36230
|
+
viewBox: "0 0 24 24",
|
|
36231
|
+
fill: "none",
|
|
36232
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
36233
|
+
}, /*#__PURE__*/React$1.createElement("path", {
|
|
36234
|
+
d: "M3 3V21H21",
|
|
36235
|
+
fill: "none",
|
|
36236
|
+
stroke: fill,
|
|
36237
|
+
strokeWidth: "1.5"
|
|
36238
|
+
}), /*#__PURE__*/React$1.createElement("path", {
|
|
36239
|
+
d: "M7 16L12 11L16 15L21 10",
|
|
36240
|
+
fill: "none",
|
|
36241
|
+
stroke: fill,
|
|
36242
|
+
strokeWidth: "1.5"
|
|
36243
|
+
}), /*#__PURE__*/React$1.createElement("circle", {
|
|
36244
|
+
cx: "7",
|
|
36245
|
+
cy: "16",
|
|
36246
|
+
r: "2",
|
|
36247
|
+
fill: fill
|
|
36248
|
+
}), /*#__PURE__*/React$1.createElement("circle", {
|
|
36249
|
+
cx: "12",
|
|
36250
|
+
cy: "11",
|
|
36251
|
+
r: "2",
|
|
36252
|
+
fill: fill
|
|
36253
|
+
}), /*#__PURE__*/React$1.createElement("circle", {
|
|
36254
|
+
cx: "16",
|
|
36255
|
+
cy: "15",
|
|
36256
|
+
r: "2",
|
|
36257
|
+
fill: fill
|
|
36258
|
+
}), /*#__PURE__*/React$1.createElement("circle", {
|
|
36259
|
+
cx: "21",
|
|
36260
|
+
cy: "10",
|
|
36261
|
+
r: "2",
|
|
36262
|
+
fill: fill
|
|
36263
|
+
}));
|
|
36264
|
+
};
|
|
36265
|
+
|
|
35849
36266
|
const scrollableStyles$1 = `
|
|
35850
36267
|
&::-webkit-scrollbar {
|
|
35851
36268
|
height: 8px;
|
|
@@ -52506,5 +52923,5 @@ const QuickFilterCards = _ref => {
|
|
|
52506
52923
|
}));
|
|
52507
52924
|
};
|
|
52508
52925
|
|
|
52509
|
-
export { AreaChart, BannerEventBoxList, BarChart, BarChartTwoRows, BarChartWithAreaChart, BarChartsByWeeks, BatteryChart, BreakdownPanel, BrushChart, BubbleChart, Build, Button$1 as Button, CollapseData, CollapseHeader, ContainerTable, DialogOverlay$1 as DialogOverlay, DoubleBarSingleLine, DoublePanelDataRow, DownloadProgress, DropdownNew, EventDetailsCard, EventList, Execute, FilterPanel, FilterPop, Heatmap, IconButton$1 as IconButton, Input$2 as Input, InsightsCarousel, ItemManagerPanel, LinkButton, LinnerDataBox, MarketShareDescription, MenuRoute, MessageBox, ModalDrawer, ModalWithOverlay, OneColumnContainer, OverlayDropdown, PerformanceAnalyticsLegend, PieChart, PopupCharts, QuickFilter, QuickFilterCards, RangePicker, RangePop, ReportTable, SearchInput, SingleBarLineCharts, SortPop, TabMenu, Table, ToasterMessageBox, ToggleSwitch, Tooltip$2 as Tooltip, TopToggleList, TotalDoughnutChart, TotalHorizontalCharts, Track, TwoBarCharts, WeeksPicker };
|
|
52926
|
+
export { AdvancedThresholds, Analytics, AreaChart, BannerEventBoxList, BarChart, BarChartTwoRows, BarChartWithAreaChart, BarChartsByWeeks, BatteryChart, BreakdownPanel, BrushChart, BubbleChart, Budgets, Build, Button$1 as Button, Campaigns, CollapseData, CollapseHeader, ContainerTable, Coupons, CustomerSegments, Dashboard, DialogOverlay$1 as DialogOverlay, DoubleBarSingleLine, DoublePanelDataRow, DownloadProgress, DropdownNew, EventDetailsCard, EventList, Execute, FilterPanel, FilterPop, GroupBuilder, Heatmap, IconButton$1 as IconButton, Input$2 as Input, InsightsCarousel, ItemManagerPanel, ItemsStores, LinkButton, LinnerDataBox, MarketShareDescription, MenuRoute, MessageBox, ModalDrawer, ModalWithOverlay, OneColumnContainer, OverlayDropdown, PerformanceAnalyticsLegend, PieChart, PopupCharts, PreTestWhatIf, QuickFilter, QuickFilterCards, RangePicker, RangePop, ReportTable, RulesEngine, SampleRunEngine, SearchInput, SingleBarLineCharts, SortPop, TabMenu, Table, ToasterMessageBox, ToggleSwitch, Tooltip$2 as Tooltip, TopToggleList, TotalDoughnutChart, TotalHorizontalCharts, Track, TwoBarCharts, WeeksPicker };
|
|
52510
52927
|
//# sourceMappingURL=index.esm.js.map
|