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.js
CHANGED
|
@@ -10327,23 +10327,24 @@ const QuarterPopupPicker = ({
|
|
|
10327
10327
|
};
|
|
10328
10328
|
|
|
10329
10329
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
10330
|
-
const QuarterPicker =
|
|
10331
|
-
|
|
10332
|
-
|
|
10333
|
-
|
|
10334
|
-
|
|
10335
|
-
|
|
10336
|
-
|
|
10337
|
-
|
|
10338
|
-
|
|
10339
|
-
|
|
10340
|
-
|
|
10341
|
-
|
|
10342
|
-
|
|
10343
|
-
|
|
10344
|
-
|
|
10345
|
-
|
|
10346
|
-
|
|
10330
|
+
const QuarterPicker = _ref => {
|
|
10331
|
+
let {
|
|
10332
|
+
availableQuarters,
|
|
10333
|
+
// ["Q1-2024"]
|
|
10334
|
+
label,
|
|
10335
|
+
onChange,
|
|
10336
|
+
borderRadius,
|
|
10337
|
+
required,
|
|
10338
|
+
width,
|
|
10339
|
+
height,
|
|
10340
|
+
placeholder,
|
|
10341
|
+
disabled,
|
|
10342
|
+
borderColor,
|
|
10343
|
+
borderColorFocus,
|
|
10344
|
+
textColor,
|
|
10345
|
+
selectedValue,
|
|
10346
|
+
startYear
|
|
10347
|
+
} = _ref;
|
|
10347
10348
|
const [isFocused, setIsFocused] = React$1.useState(false);
|
|
10348
10349
|
const [isOpen, setIsOpen] = React$1.useState(false);
|
|
10349
10350
|
const [value, setValue] = React$1.useState('');
|
|
@@ -10785,22 +10786,23 @@ const MonthPopupPicker = ({
|
|
|
10785
10786
|
};
|
|
10786
10787
|
|
|
10787
10788
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
10788
|
-
const MonthPicker =
|
|
10789
|
-
|
|
10790
|
-
|
|
10791
|
-
|
|
10792
|
-
|
|
10793
|
-
|
|
10794
|
-
|
|
10795
|
-
|
|
10796
|
-
|
|
10797
|
-
|
|
10798
|
-
|
|
10799
|
-
|
|
10800
|
-
|
|
10801
|
-
|
|
10802
|
-
|
|
10803
|
-
|
|
10789
|
+
const MonthPicker = _ref => {
|
|
10790
|
+
let {
|
|
10791
|
+
availableMonths,
|
|
10792
|
+
label,
|
|
10793
|
+
onChange,
|
|
10794
|
+
borderRadius,
|
|
10795
|
+
required,
|
|
10796
|
+
width,
|
|
10797
|
+
height,
|
|
10798
|
+
placeholder,
|
|
10799
|
+
disabled,
|
|
10800
|
+
borderColor,
|
|
10801
|
+
borderColorFocus,
|
|
10802
|
+
textColor,
|
|
10803
|
+
selectedValue,
|
|
10804
|
+
startYear
|
|
10805
|
+
} = _ref;
|
|
10804
10806
|
const [isFocused, setIsFocused] = React$1.useState(false);
|
|
10805
10807
|
const [isOpen, setIsOpen] = React$1.useState(false);
|
|
10806
10808
|
const [value, setValue] = React$1.useState('');
|
|
@@ -23911,21 +23913,22 @@ const DeleteIcon = styled__default["default"].div`
|
|
|
23911
23913
|
position: absolute;
|
|
23912
23914
|
`;
|
|
23913
23915
|
|
|
23914
|
-
const QuickFilterDropdownSingle =
|
|
23915
|
-
|
|
23916
|
-
|
|
23917
|
-
|
|
23918
|
-
|
|
23919
|
-
|
|
23920
|
-
|
|
23921
|
-
|
|
23922
|
-
|
|
23923
|
-
|
|
23924
|
-
|
|
23925
|
-
|
|
23926
|
-
|
|
23927
|
-
|
|
23928
|
-
|
|
23916
|
+
const QuickFilterDropdownSingle = _ref => {
|
|
23917
|
+
let {
|
|
23918
|
+
label,
|
|
23919
|
+
hoverColor,
|
|
23920
|
+
options,
|
|
23921
|
+
selectedValue,
|
|
23922
|
+
placeHolder,
|
|
23923
|
+
onChange,
|
|
23924
|
+
disabled,
|
|
23925
|
+
width,
|
|
23926
|
+
error,
|
|
23927
|
+
errorMessage,
|
|
23928
|
+
xIconShow,
|
|
23929
|
+
labelColor,
|
|
23930
|
+
showLabelOnTop
|
|
23931
|
+
} = _ref;
|
|
23929
23932
|
const [isFocused, setIsFocused] = React$1.useState(false);
|
|
23930
23933
|
const [showOptions, setShowOptions] = React$1.useState(false);
|
|
23931
23934
|
const [inputValue, setInputValue] = React$1.useState("");
|
|
@@ -24322,23 +24325,24 @@ const IconContainer$2 = styled__default["default"].div`
|
|
|
24322
24325
|
cursor: pointer;
|
|
24323
24326
|
`;
|
|
24324
24327
|
|
|
24325
|
-
const QuickFilterDropdownMultiSelection =
|
|
24326
|
-
|
|
24327
|
-
|
|
24328
|
-
|
|
24329
|
-
|
|
24330
|
-
|
|
24331
|
-
|
|
24332
|
-
|
|
24333
|
-
|
|
24334
|
-
|
|
24335
|
-
|
|
24336
|
-
|
|
24337
|
-
|
|
24338
|
-
|
|
24339
|
-
|
|
24340
|
-
|
|
24341
|
-
|
|
24328
|
+
const QuickFilterDropdownMultiSelection = _ref => {
|
|
24329
|
+
let {
|
|
24330
|
+
label,
|
|
24331
|
+
labelEmptyValue,
|
|
24332
|
+
options,
|
|
24333
|
+
selectedValue,
|
|
24334
|
+
placeHolder,
|
|
24335
|
+
onChange,
|
|
24336
|
+
required,
|
|
24337
|
+
disabled,
|
|
24338
|
+
width,
|
|
24339
|
+
error,
|
|
24340
|
+
errorMessage,
|
|
24341
|
+
labelColor,
|
|
24342
|
+
xIconShow,
|
|
24343
|
+
checkBoxColor,
|
|
24344
|
+
showLabelOnTop
|
|
24345
|
+
} = _ref;
|
|
24342
24346
|
const [isFocused, setIsFocused] = React$1.useState(false);
|
|
24343
24347
|
const [showOptions, setShowOptions] = React$1.useState(false);
|
|
24344
24348
|
const [inputValue, setInputValue] = React$1.useState('');
|
|
@@ -35570,9 +35574,9 @@ const ToggleSlider = styled__default["default"].span`
|
|
|
35570
35574
|
}
|
|
35571
35575
|
`;
|
|
35572
35576
|
|
|
35573
|
-
/**
|
|
35574
|
-
* ToggleSwitch component for on/off states.
|
|
35575
|
-
* Supports small/large sizes and disabled state.
|
|
35577
|
+
/**
|
|
35578
|
+
* ToggleSwitch component for on/off states.
|
|
35579
|
+
* Supports small/large sizes and disabled state.
|
|
35576
35580
|
*/
|
|
35577
35581
|
function ToggleSwitch(_ref) {
|
|
35578
35582
|
let {
|
|
@@ -35707,9 +35711,12 @@ const ContainerTable = props => {
|
|
|
35707
35711
|
|
|
35708
35712
|
const MenuRouteContainer = styled__default["default"].div`
|
|
35709
35713
|
font-family: 'Poppins', sans-serif;
|
|
35714
|
+
width: ${props => props.width || '100%'};
|
|
35710
35715
|
`;
|
|
35711
35716
|
const ButtonGroup = styled__default["default"].div`
|
|
35712
35717
|
display: flex;
|
|
35718
|
+
flex-direction: ${props => props.layout === 'vertical' ? 'column' : 'row'};
|
|
35719
|
+
gap: ${props => props.layout === 'vertical' ? '20px' : '0px'};
|
|
35713
35720
|
justify-content: ${props => {
|
|
35714
35721
|
switch (props.pos) {
|
|
35715
35722
|
case 'left':
|
|
@@ -35729,14 +35736,32 @@ const Button = styled__default["default"].button`
|
|
|
35729
35736
|
display: flex;
|
|
35730
35737
|
gap: 12px;
|
|
35731
35738
|
align-items: center;
|
|
35732
|
-
color: #212121;
|
|
35733
|
-
padding:
|
|
35734
|
-
font-
|
|
35735
|
-
font-
|
|
35739
|
+
color: ${props => props.notSelectedColor || '#212121'};
|
|
35740
|
+
padding: 12px 24px;
|
|
35741
|
+
font-family: 'Poppins', sans-serif;
|
|
35742
|
+
font-size: ${props => props.fontSize || '16px'};
|
|
35743
|
+
font-weight: ${props => props.fontWeight || '600'};
|
|
35744
|
+
border-radius: 8px;
|
|
35745
|
+
cursor: pointer;
|
|
35746
|
+
min-height: 44px;
|
|
35747
|
+
box-sizing: border-box;
|
|
35748
|
+
position: relative;
|
|
35736
35749
|
|
|
35737
35750
|
&.active {
|
|
35738
35751
|
color: ${props => props.color || '#066768'};
|
|
35739
|
-
|
|
35752
|
+
background-color: ${props => props.selectedBackgroundColor || 'transparent'};
|
|
35753
|
+
|
|
35754
|
+
${props => props.layout !== 'vertical' && `
|
|
35755
|
+
&::after {
|
|
35756
|
+
content: '';
|
|
35757
|
+
position: absolute;
|
|
35758
|
+
bottom: 0;
|
|
35759
|
+
left: 0;
|
|
35760
|
+
right: 0;
|
|
35761
|
+
height: 3px;
|
|
35762
|
+
background-color: ${props.color || '#066768'};
|
|
35763
|
+
}
|
|
35764
|
+
`}
|
|
35740
35765
|
}
|
|
35741
35766
|
|
|
35742
35767
|
&:disabled {
|
|
@@ -35748,6 +35773,14 @@ const Button = styled__default["default"].button`
|
|
|
35748
35773
|
const MenuRoute = props => {
|
|
35749
35774
|
const {
|
|
35750
35775
|
tabsPosition,
|
|
35776
|
+
layout = 'horizontal',
|
|
35777
|
+
width = '100%',
|
|
35778
|
+
fontSize = '16px',
|
|
35779
|
+
fontWeight = '600',
|
|
35780
|
+
notSelectedColor = '#212121',
|
|
35781
|
+
selectedBackgroundColor = 'transparent',
|
|
35782
|
+
iconSize = '24',
|
|
35783
|
+
iconColor = '#212121',
|
|
35751
35784
|
items,
|
|
35752
35785
|
color,
|
|
35753
35786
|
selecetIndex = 0,
|
|
@@ -35770,16 +35803,26 @@ const MenuRoute = props => {
|
|
|
35770
35803
|
onTabClick(key);
|
|
35771
35804
|
}
|
|
35772
35805
|
};
|
|
35773
|
-
return /*#__PURE__*/React__default["default"].createElement(MenuRouteContainer,
|
|
35774
|
-
|
|
35806
|
+
return /*#__PURE__*/React__default["default"].createElement(MenuRouteContainer, {
|
|
35807
|
+
width: width
|
|
35808
|
+
}, /*#__PURE__*/React__default["default"].createElement(ButtonGroup, {
|
|
35809
|
+
pos: tabsPosition,
|
|
35810
|
+
layout: layout
|
|
35775
35811
|
}, items.map(item => /*#__PURE__*/React__default["default"].createElement(Button, {
|
|
35776
35812
|
key: item.key,
|
|
35777
35813
|
onClick: () => handleItemClick(item.key, item),
|
|
35778
35814
|
disabled: item.disabled,
|
|
35779
35815
|
className: activeItem === item.key ? 'active' : '',
|
|
35780
|
-
color: color
|
|
35816
|
+
color: color,
|
|
35817
|
+
layout: layout,
|
|
35818
|
+
fontSize: fontSize,
|
|
35819
|
+
fontWeight: fontWeight,
|
|
35820
|
+
notSelectedColor: notSelectedColor,
|
|
35821
|
+
selectedBackgroundColor: selectedBackgroundColor
|
|
35781
35822
|
}, item.icon && /*#__PURE__*/React__default["default"].cloneElement(item.icon, {
|
|
35782
|
-
|
|
35823
|
+
width: iconSize,
|
|
35824
|
+
height: iconSize,
|
|
35825
|
+
fill: item.disabled ? '#717171' : activeItem === item.key ? color : iconColor
|
|
35783
35826
|
}), /*#__PURE__*/React__default["default"].isValidElement(item.label) ? item.label : item.label))));
|
|
35784
35827
|
};
|
|
35785
35828
|
|
|
@@ -35856,6 +35899,380 @@ const Execute = _ref => {
|
|
|
35856
35899
|
}));
|
|
35857
35900
|
};
|
|
35858
35901
|
|
|
35902
|
+
const Dashboard = _ref => {
|
|
35903
|
+
let {
|
|
35904
|
+
width = '24',
|
|
35905
|
+
height = '24',
|
|
35906
|
+
fill = "#212121"
|
|
35907
|
+
} = _ref;
|
|
35908
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", {
|
|
35909
|
+
width: width,
|
|
35910
|
+
height: height,
|
|
35911
|
+
viewBox: "0 0 24 24",
|
|
35912
|
+
fill: "none",
|
|
35913
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
35914
|
+
}, /*#__PURE__*/React__default["default"].createElement("path", {
|
|
35915
|
+
d: "M3 3H10V11H3V3ZM14 3H21V7H14V3ZM14 11H21V21H14V11ZM3 15H10V21H3V15Z",
|
|
35916
|
+
fill: fill
|
|
35917
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
35918
|
+
d: "M4 4V10H9V4H4ZM15 4V6H20V4H15ZM15 12V20H20V12H15ZM4 16V20H9V16H4Z",
|
|
35919
|
+
fill: "none",
|
|
35920
|
+
stroke: fill,
|
|
35921
|
+
strokeWidth: "0.5"
|
|
35922
|
+
}));
|
|
35923
|
+
};
|
|
35924
|
+
|
|
35925
|
+
const Campaigns = _ref => {
|
|
35926
|
+
let {
|
|
35927
|
+
width = '24',
|
|
35928
|
+
height = '24',
|
|
35929
|
+
fill = "#212121"
|
|
35930
|
+
} = _ref;
|
|
35931
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", {
|
|
35932
|
+
width: width,
|
|
35933
|
+
height: height,
|
|
35934
|
+
viewBox: "0 0 24 24",
|
|
35935
|
+
fill: "none",
|
|
35936
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
35937
|
+
}, /*#__PURE__*/React__default["default"].createElement("path", {
|
|
35938
|
+
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",
|
|
35939
|
+
fill: fill
|
|
35940
|
+
}));
|
|
35941
|
+
};
|
|
35942
|
+
|
|
35943
|
+
const Budgets = _ref => {
|
|
35944
|
+
let {
|
|
35945
|
+
width = '24',
|
|
35946
|
+
height = '24',
|
|
35947
|
+
fill = "#212121"
|
|
35948
|
+
} = _ref;
|
|
35949
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", {
|
|
35950
|
+
width: width,
|
|
35951
|
+
height: height,
|
|
35952
|
+
viewBox: "0 0 24 24",
|
|
35953
|
+
fill: "none",
|
|
35954
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
35955
|
+
}, /*#__PURE__*/React__default["default"].createElement("path", {
|
|
35956
|
+
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",
|
|
35957
|
+
fill: fill
|
|
35958
|
+
}));
|
|
35959
|
+
};
|
|
35960
|
+
|
|
35961
|
+
const SampleRunEngine = _ref => {
|
|
35962
|
+
let {
|
|
35963
|
+
width = '24',
|
|
35964
|
+
height = '24',
|
|
35965
|
+
fill = "#212121"
|
|
35966
|
+
} = _ref;
|
|
35967
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", {
|
|
35968
|
+
width: width,
|
|
35969
|
+
height: height,
|
|
35970
|
+
viewBox: "0 0 24 24",
|
|
35971
|
+
fill: "none",
|
|
35972
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
35973
|
+
}, /*#__PURE__*/React__default["default"].createElement("path", {
|
|
35974
|
+
d: "M12 2L15.09 8.26L22 9L17 14L18.18 21L12 17.27L5.82 21L7 14L2 9L8.91 8.26L12 2Z",
|
|
35975
|
+
fill: "none",
|
|
35976
|
+
stroke: fill,
|
|
35977
|
+
strokeWidth: "1.5"
|
|
35978
|
+
}), /*#__PURE__*/React__default["default"].createElement("circle", {
|
|
35979
|
+
cx: "12",
|
|
35980
|
+
cy: "12",
|
|
35981
|
+
r: "3",
|
|
35982
|
+
fill: fill
|
|
35983
|
+
}));
|
|
35984
|
+
};
|
|
35985
|
+
|
|
35986
|
+
const Coupons = _ref => {
|
|
35987
|
+
let {
|
|
35988
|
+
width = '24',
|
|
35989
|
+
height = '24',
|
|
35990
|
+
fill = "#212121"
|
|
35991
|
+
} = _ref;
|
|
35992
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", {
|
|
35993
|
+
width: width,
|
|
35994
|
+
height: height,
|
|
35995
|
+
viewBox: "0 0 24 24",
|
|
35996
|
+
fill: "none",
|
|
35997
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
35998
|
+
}, /*#__PURE__*/React__default["default"].createElement("path", {
|
|
35999
|
+
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",
|
|
36000
|
+
fill: fill
|
|
36001
|
+
}), /*#__PURE__*/React__default["default"].createElement("circle", {
|
|
36002
|
+
cx: "9",
|
|
36003
|
+
cy: "9",
|
|
36004
|
+
r: "1",
|
|
36005
|
+
fill: "white"
|
|
36006
|
+
}), /*#__PURE__*/React__default["default"].createElement("circle", {
|
|
36007
|
+
cx: "15",
|
|
36008
|
+
cy: "9",
|
|
36009
|
+
r: "1",
|
|
36010
|
+
fill: "white"
|
|
36011
|
+
}), /*#__PURE__*/React__default["default"].createElement("circle", {
|
|
36012
|
+
cx: "9",
|
|
36013
|
+
cy: "15",
|
|
36014
|
+
r: "1",
|
|
36015
|
+
fill: "white"
|
|
36016
|
+
}), /*#__PURE__*/React__default["default"].createElement("circle", {
|
|
36017
|
+
cx: "15",
|
|
36018
|
+
cy: "15",
|
|
36019
|
+
r: "1",
|
|
36020
|
+
fill: "white"
|
|
36021
|
+
}));
|
|
36022
|
+
};
|
|
36023
|
+
|
|
36024
|
+
const RulesEngine = _ref => {
|
|
36025
|
+
let {
|
|
36026
|
+
width = '24',
|
|
36027
|
+
height = '24',
|
|
36028
|
+
fill = "#212121"
|
|
36029
|
+
} = _ref;
|
|
36030
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", {
|
|
36031
|
+
width: width,
|
|
36032
|
+
height: height,
|
|
36033
|
+
viewBox: "0 0 24 24",
|
|
36034
|
+
fill: "none",
|
|
36035
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
36036
|
+
}, /*#__PURE__*/React__default["default"].createElement("path", {
|
|
36037
|
+
d: "M8 3L4 9L8 15H12L16 9L12 3H8Z",
|
|
36038
|
+
fill: fill
|
|
36039
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
36040
|
+
d: "M13 21L9 15L13 9L17 15L13 21Z",
|
|
36041
|
+
fill: fill
|
|
36042
|
+
}), /*#__PURE__*/React__default["default"].createElement("circle", {
|
|
36043
|
+
cx: "12",
|
|
36044
|
+
cy: "12",
|
|
36045
|
+
r: "2",
|
|
36046
|
+
fill: "white"
|
|
36047
|
+
}));
|
|
36048
|
+
};
|
|
36049
|
+
|
|
36050
|
+
const AdvancedThresholds = _ref => {
|
|
36051
|
+
let {
|
|
36052
|
+
width = '24',
|
|
36053
|
+
height = '24',
|
|
36054
|
+
fill = "#212121"
|
|
36055
|
+
} = _ref;
|
|
36056
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", {
|
|
36057
|
+
width: width,
|
|
36058
|
+
height: height,
|
|
36059
|
+
viewBox: "0 0 24 24",
|
|
36060
|
+
fill: "none",
|
|
36061
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
36062
|
+
}, /*#__PURE__*/React__default["default"].createElement("circle", {
|
|
36063
|
+
cx: "12",
|
|
36064
|
+
cy: "12",
|
|
36065
|
+
r: "9",
|
|
36066
|
+
fill: "none",
|
|
36067
|
+
stroke: fill,
|
|
36068
|
+
strokeWidth: "1.5"
|
|
36069
|
+
}), /*#__PURE__*/React__default["default"].createElement("circle", {
|
|
36070
|
+
cx: "12",
|
|
36071
|
+
cy: "12",
|
|
36072
|
+
r: "6",
|
|
36073
|
+
fill: "none",
|
|
36074
|
+
stroke: fill,
|
|
36075
|
+
strokeWidth: "1.5"
|
|
36076
|
+
}), /*#__PURE__*/React__default["default"].createElement("circle", {
|
|
36077
|
+
cx: "12",
|
|
36078
|
+
cy: "12",
|
|
36079
|
+
r: "3",
|
|
36080
|
+
fill: "none",
|
|
36081
|
+
stroke: fill,
|
|
36082
|
+
strokeWidth: "1.5"
|
|
36083
|
+
}), /*#__PURE__*/React__default["default"].createElement("circle", {
|
|
36084
|
+
cx: "12",
|
|
36085
|
+
cy: "12",
|
|
36086
|
+
r: "1",
|
|
36087
|
+
fill: fill
|
|
36088
|
+
}));
|
|
36089
|
+
};
|
|
36090
|
+
|
|
36091
|
+
const PreTestWhatIf = _ref => {
|
|
36092
|
+
let {
|
|
36093
|
+
width = '24',
|
|
36094
|
+
height = '24',
|
|
36095
|
+
fill = "#212121"
|
|
36096
|
+
} = _ref;
|
|
36097
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", {
|
|
36098
|
+
width: width,
|
|
36099
|
+
height: height,
|
|
36100
|
+
viewBox: "0 0 24 24",
|
|
36101
|
+
fill: "none",
|
|
36102
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
36103
|
+
}, /*#__PURE__*/React__default["default"].createElement("path", {
|
|
36104
|
+
d: "M12 2L2 7L12 12L22 7L12 2Z",
|
|
36105
|
+
fill: fill
|
|
36106
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
36107
|
+
d: "M2 17L12 22L22 17",
|
|
36108
|
+
fill: "none",
|
|
36109
|
+
stroke: fill,
|
|
36110
|
+
strokeWidth: "1.5"
|
|
36111
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
36112
|
+
d: "M2 12L12 17L22 12",
|
|
36113
|
+
fill: "none",
|
|
36114
|
+
stroke: fill,
|
|
36115
|
+
strokeWidth: "1.5"
|
|
36116
|
+
}));
|
|
36117
|
+
};
|
|
36118
|
+
|
|
36119
|
+
const CustomerSegments = _ref => {
|
|
36120
|
+
let {
|
|
36121
|
+
width = '24',
|
|
36122
|
+
height = '24',
|
|
36123
|
+
fill = "#212121"
|
|
36124
|
+
} = _ref;
|
|
36125
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", {
|
|
36126
|
+
width: width,
|
|
36127
|
+
height: height,
|
|
36128
|
+
viewBox: "0 0 24 24",
|
|
36129
|
+
fill: "none",
|
|
36130
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
36131
|
+
}, /*#__PURE__*/React__default["default"].createElement("circle", {
|
|
36132
|
+
cx: "9",
|
|
36133
|
+
cy: "7",
|
|
36134
|
+
r: "4",
|
|
36135
|
+
fill: fill
|
|
36136
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
36137
|
+
d: "M3 21V19C3 16.79 4.79 15 7 15H11C13.21 15 15 16.79 15 19V21",
|
|
36138
|
+
fill: fill
|
|
36139
|
+
}), /*#__PURE__*/React__default["default"].createElement("circle", {
|
|
36140
|
+
cx: "17",
|
|
36141
|
+
cy: "7",
|
|
36142
|
+
r: "3",
|
|
36143
|
+
fill: fill
|
|
36144
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
36145
|
+
d: "M21 21V20C21 18.35 19.65 17 18 17H16C15.45 17 14.95 17.22 14.59 17.59",
|
|
36146
|
+
fill: fill
|
|
36147
|
+
}));
|
|
36148
|
+
};
|
|
36149
|
+
|
|
36150
|
+
const GroupBuilder = _ref => {
|
|
36151
|
+
let {
|
|
36152
|
+
width = '24',
|
|
36153
|
+
height = '24',
|
|
36154
|
+
fill = "#212121"
|
|
36155
|
+
} = _ref;
|
|
36156
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", {
|
|
36157
|
+
width: width,
|
|
36158
|
+
height: height,
|
|
36159
|
+
viewBox: "0 0 24 24",
|
|
36160
|
+
fill: "none",
|
|
36161
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
36162
|
+
}, /*#__PURE__*/React__default["default"].createElement("circle", {
|
|
36163
|
+
cx: "6",
|
|
36164
|
+
cy: "6",
|
|
36165
|
+
r: "3",
|
|
36166
|
+
fill: fill
|
|
36167
|
+
}), /*#__PURE__*/React__default["default"].createElement("circle", {
|
|
36168
|
+
cx: "18",
|
|
36169
|
+
cy: "6",
|
|
36170
|
+
r: "3",
|
|
36171
|
+
fill: fill
|
|
36172
|
+
}), /*#__PURE__*/React__default["default"].createElement("circle", {
|
|
36173
|
+
cx: "6",
|
|
36174
|
+
cy: "18",
|
|
36175
|
+
r: "3",
|
|
36176
|
+
fill: fill
|
|
36177
|
+
}), /*#__PURE__*/React__default["default"].createElement("circle", {
|
|
36178
|
+
cx: "18",
|
|
36179
|
+
cy: "18",
|
|
36180
|
+
r: "3",
|
|
36181
|
+
fill: fill
|
|
36182
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
36183
|
+
d: "M9 6H15",
|
|
36184
|
+
stroke: fill,
|
|
36185
|
+
strokeWidth: "1.5"
|
|
36186
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
36187
|
+
d: "M6 9V15",
|
|
36188
|
+
stroke: fill,
|
|
36189
|
+
strokeWidth: "1.5"
|
|
36190
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
36191
|
+
d: "M18 9V15",
|
|
36192
|
+
stroke: fill,
|
|
36193
|
+
strokeWidth: "1.5"
|
|
36194
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
36195
|
+
d: "M9 18H15",
|
|
36196
|
+
stroke: fill,
|
|
36197
|
+
strokeWidth: "1.5"
|
|
36198
|
+
}));
|
|
36199
|
+
};
|
|
36200
|
+
|
|
36201
|
+
const ItemsStores = _ref => {
|
|
36202
|
+
let {
|
|
36203
|
+
width = '24',
|
|
36204
|
+
height = '24',
|
|
36205
|
+
fill = "#212121"
|
|
36206
|
+
} = _ref;
|
|
36207
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", {
|
|
36208
|
+
width: width,
|
|
36209
|
+
height: height,
|
|
36210
|
+
viewBox: "0 0 24 24",
|
|
36211
|
+
fill: "none",
|
|
36212
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
36213
|
+
}, /*#__PURE__*/React__default["default"].createElement("path", {
|
|
36214
|
+
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",
|
|
36215
|
+
fill: fill
|
|
36216
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
36217
|
+
d: "M9 8V17",
|
|
36218
|
+
stroke: "white",
|
|
36219
|
+
strokeWidth: "1"
|
|
36220
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
36221
|
+
d: "M12 8V17",
|
|
36222
|
+
stroke: "white",
|
|
36223
|
+
strokeWidth: "1"
|
|
36224
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
36225
|
+
d: "M15 8V17",
|
|
36226
|
+
stroke: "white",
|
|
36227
|
+
strokeWidth: "1"
|
|
36228
|
+
}));
|
|
36229
|
+
};
|
|
36230
|
+
|
|
36231
|
+
const Analytics = _ref => {
|
|
36232
|
+
let {
|
|
36233
|
+
width = '24',
|
|
36234
|
+
height = '24',
|
|
36235
|
+
fill = "#212121"
|
|
36236
|
+
} = _ref;
|
|
36237
|
+
return /*#__PURE__*/React__default["default"].createElement("svg", {
|
|
36238
|
+
width: width,
|
|
36239
|
+
height: height,
|
|
36240
|
+
viewBox: "0 0 24 24",
|
|
36241
|
+
fill: "none",
|
|
36242
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
36243
|
+
}, /*#__PURE__*/React__default["default"].createElement("path", {
|
|
36244
|
+
d: "M3 3V21H21",
|
|
36245
|
+
fill: "none",
|
|
36246
|
+
stroke: fill,
|
|
36247
|
+
strokeWidth: "1.5"
|
|
36248
|
+
}), /*#__PURE__*/React__default["default"].createElement("path", {
|
|
36249
|
+
d: "M7 16L12 11L16 15L21 10",
|
|
36250
|
+
fill: "none",
|
|
36251
|
+
stroke: fill,
|
|
36252
|
+
strokeWidth: "1.5"
|
|
36253
|
+
}), /*#__PURE__*/React__default["default"].createElement("circle", {
|
|
36254
|
+
cx: "7",
|
|
36255
|
+
cy: "16",
|
|
36256
|
+
r: "2",
|
|
36257
|
+
fill: fill
|
|
36258
|
+
}), /*#__PURE__*/React__default["default"].createElement("circle", {
|
|
36259
|
+
cx: "12",
|
|
36260
|
+
cy: "11",
|
|
36261
|
+
r: "2",
|
|
36262
|
+
fill: fill
|
|
36263
|
+
}), /*#__PURE__*/React__default["default"].createElement("circle", {
|
|
36264
|
+
cx: "16",
|
|
36265
|
+
cy: "15",
|
|
36266
|
+
r: "2",
|
|
36267
|
+
fill: fill
|
|
36268
|
+
}), /*#__PURE__*/React__default["default"].createElement("circle", {
|
|
36269
|
+
cx: "21",
|
|
36270
|
+
cy: "10",
|
|
36271
|
+
r: "2",
|
|
36272
|
+
fill: fill
|
|
36273
|
+
}));
|
|
36274
|
+
};
|
|
36275
|
+
|
|
35859
36276
|
const scrollableStyles$1 = `
|
|
35860
36277
|
&::-webkit-scrollbar {
|
|
35861
36278
|
height: 8px;
|
|
@@ -52516,6 +52933,8 @@ const QuickFilterCards = _ref => {
|
|
|
52516
52933
|
}));
|
|
52517
52934
|
};
|
|
52518
52935
|
|
|
52936
|
+
exports.AdvancedThresholds = AdvancedThresholds;
|
|
52937
|
+
exports.Analytics = Analytics;
|
|
52519
52938
|
exports.AreaChart = AreaChart;
|
|
52520
52939
|
exports.BannerEventBoxList = BannerEventBoxList;
|
|
52521
52940
|
exports.BarChart = BarChart;
|
|
@@ -52526,11 +52945,16 @@ exports.BatteryChart = BatteryChart;
|
|
|
52526
52945
|
exports.BreakdownPanel = BreakdownPanel;
|
|
52527
52946
|
exports.BrushChart = BrushChart;
|
|
52528
52947
|
exports.BubbleChart = BubbleChart;
|
|
52948
|
+
exports.Budgets = Budgets;
|
|
52529
52949
|
exports.Build = Build;
|
|
52530
52950
|
exports.Button = Button$1;
|
|
52951
|
+
exports.Campaigns = Campaigns;
|
|
52531
52952
|
exports.CollapseData = CollapseData;
|
|
52532
52953
|
exports.CollapseHeader = CollapseHeader;
|
|
52533
52954
|
exports.ContainerTable = ContainerTable;
|
|
52955
|
+
exports.Coupons = Coupons;
|
|
52956
|
+
exports.CustomerSegments = CustomerSegments;
|
|
52957
|
+
exports.Dashboard = Dashboard;
|
|
52534
52958
|
exports.DialogOverlay = DialogOverlay$1;
|
|
52535
52959
|
exports.DoubleBarSingleLine = DoubleBarSingleLine;
|
|
52536
52960
|
exports.DoublePanelDataRow = DoublePanelDataRow;
|
|
@@ -52541,11 +52965,13 @@ exports.EventList = EventList;
|
|
|
52541
52965
|
exports.Execute = Execute;
|
|
52542
52966
|
exports.FilterPanel = FilterPanel;
|
|
52543
52967
|
exports.FilterPop = FilterPop;
|
|
52968
|
+
exports.GroupBuilder = GroupBuilder;
|
|
52544
52969
|
exports.Heatmap = Heatmap;
|
|
52545
52970
|
exports.IconButton = IconButton$1;
|
|
52546
52971
|
exports.Input = Input$2;
|
|
52547
52972
|
exports.InsightsCarousel = InsightsCarousel;
|
|
52548
52973
|
exports.ItemManagerPanel = ItemManagerPanel;
|
|
52974
|
+
exports.ItemsStores = ItemsStores;
|
|
52549
52975
|
exports.LinkButton = LinkButton;
|
|
52550
52976
|
exports.LinnerDataBox = LinnerDataBox;
|
|
52551
52977
|
exports.MarketShareDescription = MarketShareDescription;
|
|
@@ -52558,11 +52984,14 @@ exports.OverlayDropdown = OverlayDropdown;
|
|
|
52558
52984
|
exports.PerformanceAnalyticsLegend = PerformanceAnalyticsLegend;
|
|
52559
52985
|
exports.PieChart = PieChart;
|
|
52560
52986
|
exports.PopupCharts = PopupCharts;
|
|
52987
|
+
exports.PreTestWhatIf = PreTestWhatIf;
|
|
52561
52988
|
exports.QuickFilter = QuickFilter;
|
|
52562
52989
|
exports.QuickFilterCards = QuickFilterCards;
|
|
52563
52990
|
exports.RangePicker = RangePicker;
|
|
52564
52991
|
exports.RangePop = RangePop;
|
|
52565
52992
|
exports.ReportTable = ReportTable;
|
|
52993
|
+
exports.RulesEngine = RulesEngine;
|
|
52994
|
+
exports.SampleRunEngine = SampleRunEngine;
|
|
52566
52995
|
exports.SearchInput = SearchInput;
|
|
52567
52996
|
exports.SingleBarLineCharts = SingleBarLineCharts;
|
|
52568
52997
|
exports.SortPop = SortPop;
|