@appquality/unguess-design-system 2.12.76 → 2.12.78

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/CHANGELOG.md CHANGED
@@ -1,3 +1,32 @@
1
+ # v2.12.78 (Mon Feb 27 2023)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Remove counter [#219](https://github.com/AppQuality/unguess-design-system/pull/219) ([@iacopolea](https://github.com/iacopolea) [@marcbon](https://github.com/marcbon))
6
+ - fix(Counter): remove component from page header [#218](https://github.com/AppQuality/unguess-design-system/pull/218) ([@iacopolea](https://github.com/iacopolea))
7
+
8
+ #### Authors: 2
9
+
10
+ - Iacopo Leardini ([@iacopolea](https://github.com/iacopolea))
11
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
12
+
13
+ ---
14
+
15
+ # v2.12.77 (Fri Feb 24 2023)
16
+
17
+ #### 🐛 Bug Fix
18
+
19
+ - New tag component [#217](https://github.com/AppQuality/unguess-design-system/pull/217) ([@iacopolea](https://github.com/iacopolea) [@marcbon](https://github.com/marcbon))
20
+ - fix(counter): remove counter component (not used anymore) [#216](https://github.com/AppQuality/unguess-design-system/pull/216) ([@marcbon](https://github.com/marcbon))
21
+ - Un 522 tag component [#215](https://github.com/AppQuality/unguess-design-system/pull/215) ([@iacopolea](https://github.com/iacopolea))
22
+
23
+ #### Authors: 2
24
+
25
+ - Iacopo Leardini ([@iacopolea](https://github.com/iacopolea))
26
+ - Marco Bonomo ([@marcbon](https://github.com/marcbon))
27
+
28
+ ---
29
+
1
30
  # v2.12.76 (Thu Feb 23 2023)
2
31
 
3
32
  #### 🐛 Bug Fix
package/build/index.d.ts CHANGED
@@ -22,7 +22,6 @@ export * from "./stories/charts/sunburst";
22
22
  export * from "./stories/charts/waffle";
23
23
  export { CHARTS_COLOR_PALETTE } from "./stories/theme/charts";
24
24
  export * from "./stories/close";
25
- export * from "./stories/counter";
26
25
  export * from "./stories/drawers";
27
26
  export * as DropdownField from "./stories/dropdowns/field";
28
27
  export * from "./stories/dropdowns/item";
package/build/index.js CHANGED
@@ -14,8 +14,8 @@ var reactAvatars = require('@zendeskgarden/react-avatars');
14
14
  var reactBreadcrumbs = require('@zendeskgarden/react-breadcrumbs');
15
15
  var reactButtons = require('@zendeskgarden/react-buttons');
16
16
  var reactTags = require('@zendeskgarden/react-tags');
17
- var reactLoaders = require('@zendeskgarden/react-loaders');
18
17
  var reactTypography = require('@zendeskgarden/react-typography');
18
+ var reactLoaders = require('@zendeskgarden/react-loaders');
19
19
  var bar = require('@nivo/bar');
20
20
  var bullet = require('@nivo/bullet');
21
21
  var web = require('@react-spring/web');
@@ -589,6 +589,17 @@ const UgContainerCard = styled__default["default"](reactNotifications.Well) `
589
589
  `;
590
590
  const ContainerCard = (props) => jsxRuntime.jsx(UgContainerCard, Object.assign({}, props));
591
591
 
592
+ /**
593
+ * Use Span to style and format inline text elements.
594
+ * <hr>
595
+ * Used for this:
596
+ - To apply styles to short strings of text
597
+ - To include icons inline with text
598
+ * Not for this:
599
+ - To style an entire block of text, use Paragraph instead
600
+ */
601
+ const Span = (props) => jsxRuntime.jsx(reactTypography.Span, Object.assign({}, props));
602
+
592
603
  /**
593
604
  * Tags let users categorize content using a keyword.
594
605
 
@@ -602,7 +613,16 @@ const ContainerCard = (props) => jsxRuntime.jsx(UgContainerCard, Object.assign({
602
613
  */
603
614
  const StyledAvatar = styled__default["default"](reactTags.Tag.Avatar) ``;
604
615
  const StyledClose = styled__default["default"](reactTags.Tag.Close) ``;
605
- const StyledTag$4 = styled__default["default"](reactTags.Tag) `
616
+ const StyledSpan = styled__default["default"](Span) `
617
+ min-width: 1ch;
618
+ margin-left: ${(p) => p.theme.space.xxs};
619
+ ${(p) => p.color && `color: ${p.color};`}
620
+ `;
621
+ const StyledTag$3 = styled__default["default"](reactTags.Tag) `
622
+ margin-right: ${(p) => p.theme.space.xs};
623
+ &:last-of-type {
624
+ margin-right: 0;
625
+ }
606
626
  ${(p) => p.color &&
607
627
  `
608
628
  color: ${p.color};
@@ -617,109 +637,75 @@ const StyledTag$4 = styled__default["default"](reactTags.Tag) `
617
637
  }
618
638
  `}
619
639
  ${StyledAvatar} {
620
- border-radius: 0%;
640
+ border-radius: 0;
621
641
  }
642
+
643
+ /* Large */
644
+ ${(p) => p.size === 'large' &&
645
+ `
646
+ font-size: ${p.theme.fontSizes.md};
647
+
648
+ ${StyledClose} svg {
649
+ width: 16px;
650
+ height: 16px;
651
+ }
652
+
653
+ `}
622
654
  `;
623
655
  const Tag = (_a) => {
624
- var { isPill = true, hue = theme.palette.grey[200], color = theme.palette.grey[700] } = _a, props = __rest(_a, ["isPill", "hue", "color"]);
625
- return (jsxRuntime.jsx(StyledTag$4, Object.assign({ isPill: props.isRound ? false : isPill, hue: hue, color: color }, props)));
656
+ var { isPill = true, hue = theme.palette.grey[100], color = theme.palette.grey[700], size = 'medium' } = _a, props = __rest(_a, ["isPill", "hue", "color", "size"]);
657
+ return (jsxRuntime.jsx(StyledTag$3, Object.assign({ isPill: props.isRound ? false : isPill, hue: hue, color: color, size: size }, props)));
626
658
  };
627
659
  Tag.Avatar = StyledAvatar;
628
- Tag.Close = StyledClose;
660
+ Tag.Close = StyledClose;
661
+ Tag.SecondaryText = StyledSpan;
662
+
663
+ var _path$A;
664
+ function _extends$H() { _extends$H = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$H.apply(this, arguments); }
665
+ var SvgUgSquare = function SvgUgSquare(props) {
666
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$H({
667
+ width: 24,
668
+ height: 24,
669
+ viewBox: "0 0 24 24",
670
+ fill: "none",
671
+ xmlns: "http://www.w3.org/2000/svg"
672
+ }, props), _path$A || (_path$A = /*#__PURE__*/React__namespace.createElement("path", {
673
+ d: "M19 3H5C3.9 3 3 3.9 3 5V19C3 20.1 3.9 21 5 21H19C20.1 21 21 20.1 21 19V5C21 3.9 20.1 3 19 3ZM18 19H6C5.45 19 5 18.55 5 18V6C5 5.45 5.45 5 6 5H18C18.55 5 19 5.45 19 6V18C19 18.55 18.55 19 18 19Z",
674
+ fill: "#E80C7A"
675
+ })));
676
+ };
629
677
 
630
- var _g$7, _path$z;
678
+ var _path$z;
631
679
  function _extends$G() { _extends$G = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$G.apply(this, arguments); }
632
- var SvgCampaignFunctional = function SvgCampaignFunctional(props) {
680
+ var SvgUgCircle = function SvgUgCircle(props) {
633
681
  return /*#__PURE__*/React__namespace.createElement("svg", _extends$G({
634
682
  width: 24,
635
683
  height: 24,
636
684
  viewBox: "0 0 24 24",
637
685
  fill: "none",
638
686
  xmlns: "http://www.w3.org/2000/svg"
639
- }, props), _g$7 || (_g$7 = /*#__PURE__*/React__namespace.createElement("g", {
640
- opacity: 0.3
641
- }, /*#__PURE__*/React__namespace.createElement("path", {
642
- opacity: 0.3,
643
- d: "M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24Z",
644
- fill: "#003A57"
645
- }))), _path$z || (_path$z = /*#__PURE__*/React__namespace.createElement("path", {
646
- d: "M17.9983 7.16705C17.5188 6.58566 17.1422 6.73039 17.1422 6.73039C17.1422 6.73039 16.406 7.02453 16.0401 7.16303C15.6742 7.30153 15.2408 7.17357 15.2408 7.17357L14.7579 6.8851C14.7579 6.8851 14.4296 6.56554 14.3656 6.18067C14.3123 5.78958 14.1888 5.00269 14.1888 5.00269C14.1888 5.00269 14.1356 4.61159 13.3938 4.47257C12.652 4.33356 12.4678 4.68715 12.4678 4.68715C12.4678 4.68715 12.0932 5.38344 11.9091 5.73703C11.7249 6.09062 11.3114 6.27118 11.3114 6.27118L10.7639 6.36908C10.7639 6.36908 10.3144 6.33771 10.0176 6.07271L9.12712 5.27769C9.12712 5.27769 8.8303 5.01268 8.18313 5.38632C7.53595 5.75997 7.61705 6.14953 7.61705 6.14953L7.86033 7.3182C7.94143 7.70776 7.74381 8.11275 7.74381 8.11275L7.38528 8.53794C7.38528 8.53794 7.02217 8.80577 6.62387 8.78845C6.22557 8.77114 5.43527 8.7474 5.43527 8.7474C5.43527 8.7474 5.03697 8.73009 4.78646 9.44201C4.53595 10.1539 4.84804 10.3956 4.84804 10.3956C4.84804 10.3956 5.46774 10.896 5.77983 11.1376C6.09192 11.3793 6.19373 11.8296 6.19373 11.8296L6.20207 12.3921C6.20207 12.3921 6.09618 12.8314 5.79331 13.079C5.49043 13.3266 4.86759 13.8171 4.86759 13.8171C4.86759 13.8171 4.56471 14.0647 4.81769 14.7769C5.08144 15.4828 5.46713 15.4783 5.46713 15.4783C5.46713 15.4783 6.26012 15.4569 6.64582 15.4524C7.03152 15.4479 7.40116 15.7145 7.40116 15.7145L7.76458 16.1447C7.76458 16.1447 7.96976 16.5499 7.89441 16.9425C7.81907 17.3351 7.66208 18.1094 7.66208 18.1094C7.66208 18.1094 7.58674 18.502 8.23785 18.8824C8.88895 19.2629 9.18553 19.0044 9.18553 19.0044C9.18553 19.0044 9.7724 18.4765 10.069 18.218C10.3655 17.9595 10.8115 17.9347 10.8115 17.9347L11.3609 18.0394C11.3609 18.0394 11.77 18.225 11.9608 18.5803C12.1516 18.9356 12.5268 19.6354 12.5268 19.6354C12.5268 19.6354 12.7176 19.9907 13.4583 19.8539C14.1946 19.7343 14.2529 19.337 14.2529 19.337C14.2529 19.337 14.3586 18.5487 14.4232 18.1623C14.4814 17.765 14.8086 17.4598 14.8086 17.4598L15.2939 17.1796C15.2939 17.1796 15.7281 17.0598 16.095 17.1971C16.4682 17.3453 17.1975 17.637 17.1975 17.637C17.1975 17.637 17.5707 17.7851 18.0424 17.2073C18.5142 16.6295 18.3189 16.2913 18.3189 16.2913C18.3189 16.2913 17.9006 15.6164 17.6882 15.2736C17.4759 14.9307 17.5197 14.4836 17.5197 14.4836L17.7038 13.9555C17.7038 13.9555 17.9482 13.5816 18.3203 13.454C18.6925 13.3264 19.4431 13.0822 19.4431 13.0822C19.4431 13.0822 19.8153 12.9546 19.8113 12.2005C19.8074 11.4464 19.4297 11.3153 19.4297 11.3153C19.4297 11.3153 18.6807 11.0641 18.303 10.9331C17.9253 10.802 17.677 10.4217 17.677 10.4217L17.4861 9.8919C17.4861 9.8919 17.4293 9.4447 17.6368 9.1067C17.8443 8.7687 18.2486 8.09891 18.2486 8.09891C18.2486 8.09891 18.4778 7.74844 17.9983 7.16707L17.9983 7.16705ZM9.33902 8.38466L10.6176 10.5992C10.0433 11.149 9.82793 11.9715 10.0567 12.7413L7.86713 14.0054C6.98868 12.0106 7.60355 9.66286 9.33905 8.38457L9.33902 8.38466ZM13.9748 16.414C11.9998 17.2778 9.65918 16.6363 8.37099 14.8783L10.5605 13.6141C11.1128 14.1971 11.9329 14.4219 12.6961 14.1994L13.9748 16.414ZM12.6552 13.132C12.1159 13.4434 11.4325 13.2561 11.1176 12.7107C10.8027 12.1652 10.9822 11.4797 11.5215 11.1684C12.0608 10.857 12.7441 11.0443 13.0591 11.5897C13.374 12.1352 13.1945 12.8207 12.6552 13.132ZM14.8376 15.9158L13.5591 13.7012C14.1333 13.1515 14.3487 12.3289 14.12 11.5591L16.3095 10.295C17.188 12.2898 16.5731 14.6376 14.8376 15.9159L14.8376 15.9158ZM13.6161 10.6863C13.0638 10.1034 12.2437 9.87862 11.4805 10.1011L10.2019 7.88652C12.1769 7.02266 14.5112 7.65314 15.8057 9.42223L13.6161 10.6863Z",
647
- fill: "#003A57"
687
+ }, props), _path$z || (_path$z = /*#__PURE__*/React__namespace.createElement("path", {
688
+ d: "M12 2C6.47 2 2 6.47 2 12C2 17.53 6.47 22 12 22C17.53 22 22 17.53 22 12C22 6.47 17.53 2 12 2ZM12 20C7.58 20 4 16.42 4 12C4 7.58 7.58 4 12 4C16.42 4 20 7.58 20 12C20 16.42 16.42 20 12 20Z",
689
+ fill: "#FFCD1A"
648
690
  })));
649
691
  };
650
692
 
651
- var _g$6, _path$y, _path2$a, _path3$5, _path4$2, _path5$1, _path6$1, _path7$1, _path8$1, _path9$1, _path10$1, _path11$1;
693
+ var _path$y;
652
694
  function _extends$F() { _extends$F = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$F.apply(this, arguments); }
653
- var SvgCampaignExperiential = function SvgCampaignExperiential(props) {
695
+ var SvgUgTriangle = function SvgUgTriangle(props) {
654
696
  return /*#__PURE__*/React__namespace.createElement("svg", _extends$F({
655
- width: 25,
697
+ width: 24,
656
698
  height: 24,
657
- viewBox: "0 0 25 24",
699
+ viewBox: "0 0 24 24",
658
700
  fill: "none",
659
701
  xmlns: "http://www.w3.org/2000/svg"
660
- }, props), _g$6 || (_g$6 = /*#__PURE__*/React__namespace.createElement("g", {
661
- opacity: 0.3
662
- }, /*#__PURE__*/React__namespace.createElement("path", {
663
- d: "M12.1641 24C18.7915 24 24.1641 18.6274 24.1641 12C24.1641 5.37258 18.7915 0 12.1641 0C5.53665 0 0.164062 5.37258 0.164062 12C0.164062 18.6274 5.53665 24 12.1641 24Z",
664
- fill: "#D3ECDB"
665
- }))), _path$y || (_path$y = /*#__PURE__*/React__namespace.createElement("path", {
666
- opacity: 0.8,
667
- d: "M12.653 3.1964C8.84605 3.1964 5.76496 6.27748 5.76496 10.0844C5.76496 10.2596 5.76496 10.4347 5.7904 10.5854C5.46458 11.1861 4.98908 12.0129 4.41279 12.5138C3.98719 12.8896 4.08697 13.2907 4.13687 13.4404C4.26211 13.7662 4.61237 14.0411 5.18866 14.2417C5.38924 14.3171 5.61427 14.367 5.81485 14.4169L5.84028 16.8463C5.84028 17.7983 6.6416 18.625 7.61905 18.625L9.09645 18.1495L9.24713 19.0262C9.34693 19.6025 9.84787 20.0281 10.4496 20.0281C10.5249 20.0281 10.6003 20.0281 10.6746 20.0026L15.3084 19.1769C15.9845 19.0516 16.4101 18.4254 16.3103 17.7494L15.9845 16.1213C18.1634 14.9188 19.541 12.5891 19.541 10.0843C19.541 6.30267 16.4356 3.19629 12.6529 3.19629L12.653 3.1964Z",
668
- fill: "#70C38A"
669
- })), _path2$a || (_path2$a = /*#__PURE__*/React__namespace.createElement("path", {
670
- fillRule: "evenodd",
671
- clipRule: "evenodd",
672
- d: "M6.55859 10.7679V10.1211H8.23278V10.7679H6.55859Z",
673
- fill: "#D3ECDB"
674
- })), _path3$5 || (_path3$5 = /*#__PURE__*/React__namespace.createElement("path", {
675
- fillRule: "evenodd",
676
- clipRule: "evenodd",
677
- d: "M7.46563 13.6061L7.15234 13.0469L8.60113 12.1841L8.91441 12.7432L7.46563 13.6061Z",
678
- fill: "#D3ECDB"
679
- })), _path4$2 || (_path4$2 = /*#__PURE__*/React__namespace.createElement("path", {
680
- fillRule: "evenodd",
681
- clipRule: "evenodd",
682
- d: "M8.60113 8.70375L7.15234 7.84237L7.46563 7.2832L8.91441 8.14458L8.60113 8.70375Z",
683
- fill: "#D3ECDB"
684
- })), _path5$1 || (_path5$1 = /*#__PURE__*/React__namespace.createElement("path", {
685
- fillRule: "evenodd",
686
- clipRule: "evenodd",
687
- d: "M16.8472 7.2832L17.1605 7.84237L15.7117 8.70375L15.3984 8.14458L16.8472 7.2832Z",
688
- fill: "#D3ECDB"
689
- })), _path6$1 || (_path6$1 = /*#__PURE__*/React__namespace.createElement("path", {
690
- fillRule: "evenodd",
691
- clipRule: "evenodd",
692
- d: "M11.8438 4.68018H12.4718V6.40439H11.8438V4.68018Z",
693
- fill: "#D3ECDB"
694
- })), _path7$1 || (_path7$1 = /*#__PURE__*/React__namespace.createElement("path", {
695
- fillRule: "evenodd",
696
- clipRule: "evenodd",
697
- d: "M9.62746 5.29053L10.4653 6.78261L9.92232 7.10526L9.08594 5.61318L9.62746 5.29053Z",
698
- fill: "#D3ECDB"
699
- })), _path8$1 || (_path8$1 = /*#__PURE__*/React__namespace.createElement("path", {
700
- fillRule: "evenodd",
701
- clipRule: "evenodd",
702
- d: "M13.4669 12.9974V14.6224H12.8956L12.8971 15.2502H11.4129L11.4114 14.6224H10.843V12.9974C9.96978 12.5054 9.41406 11.5521 9.41406 10.5242C9.41406 8.96938 10.6445 7.70215 12.1543 7.70215C13.6669 7.70215 14.8973 8.96938 14.8973 10.5242C14.8959 11.5506 14.3388 12.504 13.467 12.9974H13.4669Z",
703
- fill: "#D3ECDB"
704
- })), _path9$1 || (_path9$1 = /*#__PURE__*/React__namespace.createElement("path", {
705
- fillRule: "evenodd",
706
- clipRule: "evenodd",
707
- d: "M14.3906 7.10672L13.8477 6.78407L14.684 5.29199L15.227 5.61464L14.3906 7.10672Z",
708
- fill: "#D3ECDB"
709
- })), _path10$1 || (_path10$1 = /*#__PURE__*/React__namespace.createElement("path", {
710
- fillRule: "evenodd",
711
- clipRule: "evenodd",
712
- d: "M16.8472 13.6066L15.3984 12.7437L15.7117 12.1846L17.1605 13.0474L16.8472 13.6066Z",
713
- fill: "#D3ECDB"
714
- })), _path11$1 || (_path11$1 = /*#__PURE__*/React__namespace.createElement("path", {
715
- fillRule: "evenodd",
716
- clipRule: "evenodd",
717
- d: "M17.7523 10.7684H16.0781V10.1216H17.7523V10.7684Z",
718
- fill: "#D3ECDB"
702
+ }, props), _path$y || (_path$y = /*#__PURE__*/React__namespace.createElement("path", {
703
+ d: "M11.9993 7.32625L18.3893 17.5563H5.60929L11.9993 7.32625ZM11.1493 4.91625L2.94929 18.0262C2.53929 18.6962 3.01929 19.5563 3.79929 19.5563H20.1993C20.9893 19.5563 21.4593 18.6962 21.0493 18.0262L12.8493 4.91625C12.4593 4.28625 11.5393 4.28625 11.1493 4.91625Z",
704
+ fill: "#7B0DFF"
719
705
  })));
720
706
  };
721
707
 
722
- var _path$x, _path2$9, _path3$4, _path4$1;
708
+ var _rect$4, _path$x, _path2$b, _path3$4;
723
709
  function _extends$E() { _extends$E = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$E.apply(this, arguments); }
724
710
  var SvgCampaignCompleted = function SvgCampaignCompleted(props) {
725
711
  return /*#__PURE__*/React__namespace.createElement("svg", _extends$E({
@@ -728,93 +714,226 @@ var SvgCampaignCompleted = function SvgCampaignCompleted(props) {
728
714
  viewBox: "0 0 24 24",
729
715
  fill: "none",
730
716
  xmlns: "http://www.w3.org/2000/svg"
731
- }, props), _path$x || (_path$x = /*#__PURE__*/React__namespace.createElement("path", {
732
- d: "M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z",
733
- fill: "#F8F9F9"
734
- })), _path2$9 || (_path2$9 = /*#__PURE__*/React__namespace.createElement("path", {
717
+ }, props), _rect$4 || (_rect$4 = /*#__PURE__*/React__namespace.createElement("rect", {
718
+ width: 24,
719
+ height: 24,
720
+ rx: 12,
721
+ fill: "#F6F6F8"
722
+ })), _path$x || (_path$x = /*#__PURE__*/React__namespace.createElement("path", {
735
723
  d: "M20.6953 5.73905C21.0148 5.41953 21.0148 4.90149 20.6953 4.58197C20.3758 4.26245 19.8577 4.26245 19.5382 4.58197L11.88 12.2402L10.0849 9.95981C9.80539 9.60476 9.29098 9.54352 8.93593 9.82303C8.58088 10.1025 8.51963 10.6169 8.79914 10.972L11.1642 13.9763C11.3089 14.16 11.5252 14.2731 11.7586 14.2869C11.9921 14.3008 12.2203 14.2141 12.3856 14.0487L20.6953 5.73905Z",
736
- fill: "#27DD70"
737
- })), _path3$4 || (_path3$4 = /*#__PURE__*/React__namespace.createElement("path", {
724
+ fill: "#50BF95"
725
+ })), _path2$b || (_path2$b = /*#__PURE__*/React__namespace.createElement("path", {
738
726
  d: "M3 12C3 7.02944 7.02944 3 12 3C13.3602 3 14.6521 3.3023 15.8102 3.84415C16.2195 4.03565 16.396 4.52268 16.2045 4.93196C16.013 5.34125 15.526 5.5178 15.1167 5.3263C14.1712 4.88391 13.1156 4.63636 12 4.63636C7.93318 4.63636 4.63636 7.93318 4.63636 12C4.63636 16.0668 7.93318 19.3636 12 19.3636C16.0668 19.3636 19.3636 16.0668 19.3636 12C19.3636 11.3631 19.283 10.7462 19.1317 10.1585C19.0191 9.72084 19.2826 9.27479 19.7202 9.16218C20.1578 9.04957 20.6038 9.31303 20.7165 9.75064C20.9017 10.4705 21 11.2243 21 12C21 16.9705 16.9705 21 12 21C7.02944 21 3 16.9705 3 12Z",
739
- fill: "#27DD70"
740
- })), _path4$1 || (_path4$1 = /*#__PURE__*/React__namespace.createElement("path", {
727
+ fill: "#50BF95"
728
+ })), _path3$4 || (_path3$4 = /*#__PURE__*/React__namespace.createElement("path", {
741
729
  d: "M20.6953 5.73905C21.0148 5.41953 21.0148 4.90149 20.6953 4.58197C20.3758 4.26245 19.8577 4.26245 19.5382 4.58197L11.88 12.2402L10.0849 9.95981C9.80539 9.60476 9.29098 9.54352 8.93593 9.82303C8.58088 10.1025 8.51963 10.6169 8.79914 10.972L11.1642 13.9763C11.3089 14.16 11.5252 14.2731 11.7586 14.2869C11.9921 14.3008 12.2203 14.2141 12.3856 14.0487L20.6953 5.73905Z",
742
- fill: "#158944"
730
+ fill: "#007345"
743
731
  })));
744
732
  };
745
733
 
746
- var _path$w, _path2$8, _path3$3, _path4, _path5, _path6, _path7, _path8, _path9, _path10, _path11;
734
+ var _rect$3, _path$w, _path2$a;
747
735
  function _extends$D() { _extends$D = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$D.apply(this, arguments); }
748
- var SvgCampaignProgress = function SvgCampaignProgress(props) {
736
+ var SvgCampaignLocked = function SvgCampaignLocked(props) {
749
737
  return /*#__PURE__*/React__namespace.createElement("svg", _extends$D({
750
738
  width: 24,
751
739
  height: 24,
752
740
  viewBox: "0 0 24 24",
753
741
  fill: "none",
754
742
  xmlns: "http://www.w3.org/2000/svg"
755
- }, props), _path$w || (_path$w = /*#__PURE__*/React__namespace.createElement("path", {
756
- d: "M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z",
757
- fill: "#F8F9F9"
758
- })), _path2$8 || (_path2$8 = /*#__PURE__*/React__namespace.createElement("path", {
743
+ }, props), _rect$3 || (_rect$3 = /*#__PURE__*/React__namespace.createElement("rect", {
744
+ width: 24,
745
+ height: 24,
746
+ rx: 12,
747
+ fill: "#F6F6F8"
748
+ })), _path$w || (_path$w = /*#__PURE__*/React__namespace.createElement("path", {
749
+ fillRule: "evenodd",
750
+ clipRule: "evenodd",
751
+ d: "M13.55 19.0875C14.25 19.7875 15.1063 20.1375 16.1188 20.1375C17.1313 20.1375 17.9875 19.7875 18.6875 19.0875C19.3875 18.3875 19.7375 17.5312 19.7375 16.5187C19.7375 15.5062 19.3875 14.65 18.6875 13.95C17.9875 13.25 17.1313 12.9 16.1188 12.9C15.1063 12.9 14.25 13.25 13.55 13.95C12.85 14.65 12.5 15.5062 12.5 16.5187C12.5 17.5312 12.85 18.3875 13.55 19.0875ZM17.5062 18.2812C17.4187 18.2812 17.3375 18.25 17.2625 18.1875L15.7438 16.7812C15.6813 16.6687 15.65 16.6 15.65 16.575V14.55C15.65 14.4375 15.6875 14.3437 15.7625 14.2687C15.8375 14.1937 15.9313 14.1562 16.0438 14.1562C16.1563 14.1562 16.25 14.1937 16.325 14.2687C16.4 14.3437 16.4375 14.4375 16.4375 14.55V16.4813L17.7313 17.6625C17.8063 17.725 17.8469 17.8062 17.8531 17.9062C17.8594 18.0063 17.825 18.0938 17.75 18.1688C17.675 18.2438 17.5937 18.2812 17.5062 18.2812Z",
752
+ fill: "#D1820A"
753
+ })), _path2$a || (_path2$a = /*#__PURE__*/React__namespace.createElement("path", {
754
+ fillRule: "evenodd",
755
+ clipRule: "evenodd",
756
+ d: "M6.125 19.5C5.8125 19.5 5.54688 19.3906 5.32812 19.1719C5.10938 18.9531 5 18.6875 5 18.375V10.2375C5 9.925 5.10938 9.65937 5.32812 9.44062C5.54688 9.22187 5.8125 9.1125 6.125 9.1125H7.4375V7.36875C7.4375 6.36875 7.78437 5.51562 8.47812 4.80937C9.17188 4.10312 10.0125 3.75 11 3.75C11.9875 3.75 12.8281 4.10312 13.5219 4.80937C14.2156 5.51562 14.5625 6.36875 14.5625 7.36875V9.1125H15.875C16.1875 9.1125 16.4531 9.22187 16.6719 9.44062C16.8906 9.65937 17 9.925 17 10.2375V11.8687C16.8125 11.8187 16.625 11.7875 16.4375 11.775C16.25 11.7625 16.0625 11.7625 15.875 11.775C14.6 11.825 13.5312 12.3094 12.6688 13.2281C11.8063 14.1469 11.375 15.2437 11.375 16.5187C11.375 17.0687 11.4688 17.5969 11.6562 18.1031C11.8438 18.6094 12.1063 19.075 12.4438 19.5H6.125ZM13.4375 9.1125H8.5625V7.36875C8.5625 6.68125 8.8 6.09375 9.275 5.60625C9.75 5.11875 10.325 4.875 11 4.875C11.675 4.875 12.25 5.11875 12.725 5.60625C13.2 6.09375 13.4375 6.68125 13.4375 7.36875V9.1125Z",
757
+ fill: "#F4AC1A"
758
+ })));
759
+ };
760
+
761
+ var _rect$2, _path$v, _path2$9;
762
+ function _extends$C() { _extends$C = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$C.apply(this, arguments); }
763
+ var SvgCampaignIncoming = function SvgCampaignIncoming(props) {
764
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$C({
765
+ width: 24,
766
+ height: 24,
767
+ viewBox: "0 0 24 24",
768
+ fill: "none",
769
+ xmlns: "http://www.w3.org/2000/svg"
770
+ }, props), _rect$2 || (_rect$2 = /*#__PURE__*/React__namespace.createElement("rect", {
771
+ width: 24,
772
+ height: 24,
773
+ rx: 12,
774
+ fill: "#F6F6F8"
775
+ })), _path$v || (_path$v = /*#__PURE__*/React__namespace.createElement("path", {
776
+ d: "M11.2266 13.0313H14.997M11.2266 9.26075V13.0313V9.26075ZM11.2266 13.0313L20.121 5.03906L11.2266 13.0313Z",
777
+ stroke: "#024780",
778
+ strokeWidth: 1.5,
779
+ strokeLinecap: "round",
780
+ strokeLinejoin: "round"
781
+ })), _path2$9 || (_path2$9 = /*#__PURE__*/React__namespace.createElement("path", {
782
+ d: "M15.4918 4.52347C14.4312 4.02725 13.2477 3.75003 11.9995 3.75003C7.44316 3.75003 3.74951 7.44368 3.74951 12C3.74951 16.5564 7.44316 20.25 11.9995 20.25C16.5558 20.25 20.2495 16.5564 20.2495 12C20.2495 11.2878 20.1593 10.5968 19.9896 9.93753",
783
+ stroke: "#53AFFA",
784
+ strokeWidth: 1.5,
785
+ strokeLinecap: "round",
786
+ strokeLinejoin: "round"
787
+ })));
788
+ };
789
+
790
+ var _rect$1, _path$u, _path2$8, _path3$3, _path4$1, _path5$1, _path6$1, _path7$1, _path8$1, _path9$1, _path10$1;
791
+ function _extends$B() { _extends$B = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$B.apply(this, arguments); }
792
+ var SvgCampaignProgress = function SvgCampaignProgress(props) {
793
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$B({
794
+ width: 24,
795
+ height: 24,
796
+ viewBox: "0 0 24 24",
797
+ fill: "none",
798
+ xmlns: "http://www.w3.org/2000/svg"
799
+ }, props), _rect$1 || (_rect$1 = /*#__PURE__*/React__namespace.createElement("rect", {
800
+ width: 24,
801
+ height: 24,
802
+ rx: 12,
803
+ fill: "#F6F6F8"
804
+ })), _path$u || (_path$u = /*#__PURE__*/React__namespace.createElement("path", {
759
805
  d: "M13.059 16.7647C13.059 16.1799 12.585 15.7059 12.0002 15.7059C11.4154 15.7059 10.9414 16.1799 10.9414 16.7647V19.9412C10.9414 20.5259 11.4154 21 12.0002 21C12.585 21 13.059 20.5259 13.059 19.9412V16.7647Z",
760
806
  fill: "#D1820A"
761
- })), _path3$3 || (_path3$3 = /*#__PURE__*/React__namespace.createElement("path", {
807
+ })), _path2$8 || (_path2$8 = /*#__PURE__*/React__namespace.createElement("path", {
762
808
  d: "M16.1149 14.6183C15.7014 14.2048 15.031 14.2048 14.6175 14.6183C14.204 15.0318 14.204 15.7022 14.6175 16.1157L16.8649 18.3631C17.2783 18.7766 17.9488 18.7766 18.3623 18.3631C18.7757 17.9496 18.7757 17.2792 18.3623 16.8657L16.1149 14.6183Z",
763
809
  fill: "#D1820A"
764
- })), _path4 || (_path4 = /*#__PURE__*/React__namespace.createElement("path", {
810
+ })), _path3$3 || (_path3$3 = /*#__PURE__*/React__namespace.createElement("path", {
765
811
  d: "M16.7649 10.9412C16.1802 10.9412 15.7061 11.4152 15.7061 12C15.7061 12.5848 16.1802 13.0588 16.7649 13.0588H19.9414C20.5262 13.0588 21.0002 12.5848 21.0002 12C21.0002 11.4152 20.5262 10.9412 19.9414 10.9412H16.7649Z",
766
812
  fill: "#D1820A"
767
- })), _path5 || (_path5 = /*#__PURE__*/React__namespace.createElement("path", {
813
+ })), _path4$1 || (_path4$1 = /*#__PURE__*/React__namespace.createElement("path", {
768
814
  d: "M9.38105 14.6183C9.79455 15.0318 9.79455 15.7022 9.38105 16.1157L7.1337 18.3631C6.7202 18.7766 6.04979 18.7766 5.63629 18.3631C5.2228 17.9496 5.2228 17.2792 5.63629 16.8657L7.88365 14.6183C8.29714 14.2048 8.96756 14.2048 9.38105 14.6183Z",
769
815
  fill: "#D1820A"
770
- })), _path6 || (_path6 = /*#__PURE__*/React__namespace.createElement("path", {
816
+ })), _path5$1 || (_path5$1 = /*#__PURE__*/React__namespace.createElement("path", {
771
817
  d: "M16.1149 14.6183C15.7014 14.2048 15.031 14.2048 14.6175 14.6183C14.204 15.0318 14.204 15.7022 14.6175 16.1157L16.8649 18.3631C17.2783 18.7766 17.9488 18.7766 18.3623 18.3631C18.7757 17.9496 18.7757 17.2792 18.3623 16.8657L16.1149 14.6183Z",
772
- fill: "#FBE1AC"
773
- })), _path7 || (_path7 = /*#__PURE__*/React__namespace.createElement("path", {
818
+ fill: "#FFD7A4"
819
+ })), _path6$1 || (_path6$1 = /*#__PURE__*/React__namespace.createElement("path", {
774
820
  d: "M16.7649 10.9412C16.1802 10.9412 15.7061 11.4152 15.7061 12C15.7061 12.5848 16.1802 13.0588 16.7649 13.0588H19.9414C20.5262 13.0588 21.0002 12.5848 21.0002 12C21.0002 11.4152 20.5262 10.9412 19.9414 10.9412H16.7649Z",
775
- fill: "#FBE1AC"
776
- })), _path8 || (_path8 = /*#__PURE__*/React__namespace.createElement("path", {
821
+ fill: "#FFD7A4"
822
+ })), _path7$1 || (_path7$1 = /*#__PURE__*/React__namespace.createElement("path", {
777
823
  d: "M12 3C12.5848 3 13.0588 3.47405 13.0588 4.05882V7.23529C13.0588 7.82007 12.5848 8.29412 12 8.29412C11.4152 8.29412 10.9412 7.82007 10.9412 7.23529V4.05882C10.9412 3.47405 11.4152 3 12 3Z",
778
- fill: "#F7BF50"
779
- })), _path9 || (_path9 = /*#__PURE__*/React__namespace.createElement("path", {
824
+ fill: "#FFB65A"
825
+ })), _path8$1 || (_path8$1 = /*#__PURE__*/React__namespace.createElement("path", {
780
826
  d: "M5.63607 5.63685C6.04957 5.22335 6.71998 5.22335 7.13348 5.63685L9.38083 7.8842C9.79433 8.2977 9.79433 8.96811 9.38083 9.3816C8.96734 9.7951 8.29693 9.7951 7.88343 9.38161L5.63608 7.13425C5.22258 6.72076 5.22258 6.05035 5.63607 5.63685Z",
781
- fill: "#F7BF50"
782
- })), _path10 || (_path10 = /*#__PURE__*/React__namespace.createElement("path", {
827
+ fill: "#FFB65A"
828
+ })), _path9$1 || (_path9$1 = /*#__PURE__*/React__namespace.createElement("path", {
783
829
  d: "M3 12C3 11.4152 3.47405 10.9412 4.05882 10.9412H7.23529C7.82007 10.9412 8.29412 11.4152 8.29412 12C8.29412 12.5848 7.82007 13.0588 7.23529 13.0588H4.05882C3.47405 13.0588 3 12.5848 3 12Z",
784
- fill: "#F7BF50"
785
- })), _path11 || (_path11 = /*#__PURE__*/React__namespace.createElement("path", {
830
+ fill: "#FFB65A"
831
+ })), _path10$1 || (_path10$1 = /*#__PURE__*/React__namespace.createElement("path", {
786
832
  d: "M18.362 7.13425C18.7755 6.72076 18.7755 6.05035 18.362 5.63685C17.9485 5.22335 17.2781 5.22335 16.8646 5.63685L14.6173 7.8842C14.2038 8.2977 14.2038 8.96811 14.6173 9.3816C15.0308 9.7951 15.7012 9.7951 16.1147 9.38161L18.362 7.13425Z",
787
- fill: "#F7BF50"
833
+ fill: "#FFB65A"
788
834
  })));
789
835
  };
790
836
 
791
- var _path$v, _path2$7, _path3$2;
792
- function _extends$C() { _extends$C = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$C.apply(this, arguments); }
793
- var SvgCampaignIncoming = function SvgCampaignIncoming(props) {
794
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$C({
837
+ var _g$7, _path$t, _path2$7, _path3$2, _path4, _path5, _path6, _path7, _path8, _path9, _path10, _path11;
838
+ function _extends$A() { _extends$A = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$A.apply(this, arguments); }
839
+ var SvgCampaignExperiential = function SvgCampaignExperiential(props) {
840
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$A({
795
841
  width: 24,
796
842
  height: 24,
797
843
  viewBox: "0 0 24 24",
798
844
  fill: "none",
799
845
  xmlns: "http://www.w3.org/2000/svg"
800
- }, props), _path$v || (_path$v = /*#__PURE__*/React__namespace.createElement("path", {
801
- d: "M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z",
802
- fill: "#F8F9F9"
846
+ }, props), _g$7 || (_g$7 = /*#__PURE__*/React__namespace.createElement("g", {
847
+ opacity: 0.3
848
+ }, /*#__PURE__*/React__namespace.createElement("path", {
849
+ opacity: 0.3,
850
+ d: "M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24Z",
851
+ fill: "#50BF95"
852
+ }))), _path$t || (_path$t = /*#__PURE__*/React__namespace.createElement("path", {
853
+ d: "M12.487 3.19652C8.68003 3.19652 5.59895 6.27761 5.59895 10.0846C5.59895 10.2597 5.59895 10.4348 5.62438 10.5855C5.29857 11.1863 4.82307 12.013 4.24678 12.514C3.82117 12.8897 3.92096 13.2908 3.97085 13.4405C4.09609 13.7663 4.44635 14.0413 5.02265 14.2418C5.22322 14.3172 5.44825 14.3671 5.64883 14.417L5.67427 16.8464C5.67427 17.7984 6.47559 18.6251 7.45304 18.6251L8.93044 18.1496L9.08111 19.0263C9.18091 19.6026 9.68185 20.0282 10.2836 20.0282C10.3589 20.0282 10.4343 20.0282 10.5086 20.0028L15.1424 19.177C15.8185 19.0517 16.2441 18.4256 16.1443 17.7495L15.8185 16.1214C17.9974 14.9189 19.375 12.5892 19.375 10.0845C19.375 6.30279 16.2696 3.19641 12.4869 3.19641L12.487 3.19652Z",
854
+ fill: "#2B8473",
855
+ stroke: "#2B8473"
803
856
  })), _path2$7 || (_path2$7 = /*#__PURE__*/React__namespace.createElement("path", {
804
- d: "M11.2266 13.0313H14.997M11.2266 9.26075V13.0313V9.26075ZM11.2266 13.0313L20.121 5.03906L11.2266 13.0313Z",
805
- stroke: "#1371D6",
806
- strokeWidth: 1.5,
807
- strokeLinecap: "round",
808
- strokeLinejoin: "round"
857
+ fillRule: "evenodd",
858
+ clipRule: "evenodd",
859
+ d: "M6.39343 10.7683V10.1215H8.06761V10.7683H6.39343Z",
860
+ fill: "#ECF4F2"
809
861
  })), _path3$2 || (_path3$2 = /*#__PURE__*/React__namespace.createElement("path", {
810
- d: "M15.4918 4.52344C14.4312 4.02722 13.2477 3.75 11.9995 3.75C7.4431 3.75 3.74945 7.44365 3.74945 12C3.74945 16.5563 7.4431 20.25 11.9995 20.25C16.5558 20.25 20.2495 16.5563 20.2495 12C20.2495 11.2878 20.1592 10.5968 19.9896 9.9375",
811
- stroke: "#3091EC",
812
- strokeWidth: 1.5,
813
- strokeLinecap: "round",
814
- strokeLinejoin: "round"
862
+ fillRule: "evenodd",
863
+ clipRule: "evenodd",
864
+ d: "M7.29937 13.6065L6.98608 13.0473L8.43487 12.1845L8.74815 12.7437L7.29937 13.6065Z",
865
+ fill: "#ECF4F2"
866
+ })), _path4 || (_path4 = /*#__PURE__*/React__namespace.createElement("path", {
867
+ fillRule: "evenodd",
868
+ clipRule: "evenodd",
869
+ d: "M8.43609 8.70399L6.9873 7.84261L7.30059 7.28345L8.74937 8.14483L8.43609 8.70399Z",
870
+ fill: "#ECF4F2"
871
+ })), _path5 || (_path5 = /*#__PURE__*/React__namespace.createElement("path", {
872
+ fillRule: "evenodd",
873
+ clipRule: "evenodd",
874
+ d: "M16.6807 7.28345L16.994 7.84261L15.5452 8.70399L15.2319 8.14483L16.6807 7.28345Z",
875
+ fill: "#ECF4F2"
876
+ })), _path6 || (_path6 = /*#__PURE__*/React__namespace.createElement("path", {
877
+ fillRule: "evenodd",
878
+ clipRule: "evenodd",
879
+ d: "M11.677 4.68039H12.305V6.4046H11.677V4.68039Z",
880
+ fill: "#ECF4F2"
881
+ })), _path7 || (_path7 = /*#__PURE__*/React__namespace.createElement("path", {
882
+ fillRule: "evenodd",
883
+ clipRule: "evenodd",
884
+ d: "M9.46389 5.29071L10.3017 6.78279L9.75875 7.10544L8.92236 5.61336L9.46389 5.29071Z",
885
+ fill: "#ECF4F2"
886
+ })), _path8 || (_path8 = /*#__PURE__*/React__namespace.createElement("path", {
887
+ fillRule: "evenodd",
888
+ clipRule: "evenodd",
889
+ d: "M13.3026 12.9977V14.6227H12.7313L12.7328 15.2505H11.2486L11.2471 14.6227H10.6787V12.9977C9.80547 12.5057 9.24976 11.5524 9.24976 10.5246C9.24976 8.96969 10.4802 7.70245 11.99 7.70245C13.5025 7.70245 14.733 8.96969 14.733 10.5246C14.7316 11.5509 14.1745 12.5043 13.3027 12.9977H13.3026Z",
890
+ fill: "#ECF4F2"
891
+ })), _path9 || (_path9 = /*#__PURE__*/React__namespace.createElement("path", {
892
+ fillRule: "evenodd",
893
+ clipRule: "evenodd",
894
+ d: "M14.2243 7.10672L13.6814 6.78407L14.5178 5.29199L15.0607 5.61464L14.2243 7.10672Z",
895
+ fill: "#ECF4F2"
896
+ })), _path10 || (_path10 = /*#__PURE__*/React__namespace.createElement("path", {
897
+ fillRule: "evenodd",
898
+ clipRule: "evenodd",
899
+ d: "M16.6807 13.6065L15.2319 12.7437L15.5452 12.1845L16.994 13.0474L16.6807 13.6065Z",
900
+ fill: "#ECF4F2"
901
+ })), _path11 || (_path11 = /*#__PURE__*/React__namespace.createElement("path", {
902
+ fillRule: "evenodd",
903
+ clipRule: "evenodd",
904
+ d: "M17.5865 10.7684H15.9124V10.1216H17.5865V10.7684Z",
905
+ fill: "#ECF4F2"
815
906
  })));
816
907
  };
817
908
 
909
+ var _g$6, _path$s;
910
+ function _extends$z() { _extends$z = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$z.apply(this, arguments); }
911
+ var SvgCampaignFunctional = function SvgCampaignFunctional(props) {
912
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$z({
913
+ width: 24,
914
+ height: 24,
915
+ viewBox: "0 0 24 24",
916
+ fill: "none",
917
+ xmlns: "http://www.w3.org/2000/svg"
918
+ }, props), _g$6 || (_g$6 = /*#__PURE__*/React__namespace.createElement("g", {
919
+ opacity: 0.3
920
+ }, /*#__PURE__*/React__namespace.createElement("path", {
921
+ opacity: 0.3,
922
+ d: "M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24Z",
923
+ fill: "#003A57"
924
+ }))), _path$s || (_path$s = /*#__PURE__*/React__namespace.createElement("path", {
925
+ d: "M17.9983 7.16705C17.5188 6.58566 17.1422 6.73039 17.1422 6.73039C17.1422 6.73039 16.406 7.02453 16.0401 7.16303C15.6742 7.30153 15.2408 7.17357 15.2408 7.17357L14.7579 6.8851C14.7579 6.8851 14.4296 6.56554 14.3656 6.18067C14.3123 5.78958 14.1888 5.00269 14.1888 5.00269C14.1888 5.00269 14.1356 4.61159 13.3938 4.47257C12.652 4.33356 12.4678 4.68715 12.4678 4.68715C12.4678 4.68715 12.0932 5.38344 11.9091 5.73703C11.7249 6.09062 11.3114 6.27118 11.3114 6.27118L10.7639 6.36908C10.7639 6.36908 10.3144 6.33771 10.0176 6.07271L9.12712 5.27769C9.12712 5.27769 8.8303 5.01268 8.18313 5.38632C7.53595 5.75997 7.61705 6.14953 7.61705 6.14953L7.86033 7.3182C7.94143 7.70776 7.74381 8.11275 7.74381 8.11275L7.38528 8.53794C7.38528 8.53794 7.02217 8.80577 6.62387 8.78845C6.22557 8.77114 5.43527 8.7474 5.43527 8.7474C5.43527 8.7474 5.03697 8.73009 4.78646 9.44201C4.53595 10.1539 4.84804 10.3956 4.84804 10.3956C4.84804 10.3956 5.46774 10.896 5.77983 11.1376C6.09192 11.3793 6.19373 11.8296 6.19373 11.8296L6.20207 12.3921C6.20207 12.3921 6.09618 12.8314 5.79331 13.079C5.49043 13.3266 4.86759 13.8171 4.86759 13.8171C4.86759 13.8171 4.56471 14.0647 4.81769 14.7769C5.08144 15.4828 5.46713 15.4783 5.46713 15.4783C5.46713 15.4783 6.26012 15.4569 6.64582 15.4524C7.03152 15.4479 7.40116 15.7145 7.40116 15.7145L7.76458 16.1447C7.76458 16.1447 7.96976 16.5499 7.89441 16.9425C7.81907 17.3351 7.66208 18.1094 7.66208 18.1094C7.66208 18.1094 7.58674 18.502 8.23785 18.8824C8.88895 19.2629 9.18553 19.0044 9.18553 19.0044C9.18553 19.0044 9.7724 18.4765 10.069 18.218C10.3655 17.9595 10.8115 17.9347 10.8115 17.9347L11.3609 18.0394C11.3609 18.0394 11.77 18.225 11.9608 18.5803C12.1516 18.9356 12.5268 19.6354 12.5268 19.6354C12.5268 19.6354 12.7176 19.9907 13.4583 19.8539C14.1946 19.7343 14.2529 19.337 14.2529 19.337C14.2529 19.337 14.3586 18.5487 14.4232 18.1623C14.4814 17.765 14.8086 17.4598 14.8086 17.4598L15.2939 17.1796C15.2939 17.1796 15.7281 17.0598 16.095 17.1971C16.4682 17.3453 17.1975 17.637 17.1975 17.637C17.1975 17.637 17.5707 17.7851 18.0424 17.2073C18.5142 16.6295 18.3189 16.2913 18.3189 16.2913C18.3189 16.2913 17.9006 15.6164 17.6882 15.2736C17.4759 14.9307 17.5197 14.4836 17.5197 14.4836L17.7038 13.9555C17.7038 13.9555 17.9482 13.5816 18.3203 13.454C18.6925 13.3264 19.4431 13.0822 19.4431 13.0822C19.4431 13.0822 19.8153 12.9546 19.8113 12.2005C19.8074 11.4464 19.4297 11.3153 19.4297 11.3153C19.4297 11.3153 18.6807 11.0641 18.303 10.9331C17.9253 10.802 17.677 10.4217 17.677 10.4217L17.4861 9.8919C17.4861 9.8919 17.4293 9.4447 17.6368 9.1067C17.8443 8.7687 18.2486 8.09891 18.2486 8.09891C18.2486 8.09891 18.4778 7.74844 17.9983 7.16707L17.9983 7.16705ZM9.33902 8.38466L10.6176 10.5992C10.0433 11.149 9.82793 11.9715 10.0567 12.7413L7.86713 14.0054C6.98868 12.0106 7.60355 9.66286 9.33905 8.38457L9.33902 8.38466ZM13.9748 16.414C11.9998 17.2778 9.65918 16.6363 8.37099 14.8783L10.5605 13.6141C11.1128 14.1971 11.9329 14.4219 12.6961 14.1994L13.9748 16.414ZM12.6552 13.132C12.1159 13.4434 11.4325 13.2561 11.1176 12.7107C10.8027 12.1652 10.9822 11.4797 11.5215 11.1684C12.0608 10.857 12.7441 11.0443 13.0591 11.5897C13.374 12.1352 13.1945 12.8207 12.6552 13.132ZM14.8376 15.9158L13.5591 13.7012C14.1333 13.1515 14.3487 12.3289 14.12 11.5591L16.3095 10.295C17.188 12.2898 16.5731 14.6376 14.8376 15.9159L14.8376 15.9158ZM13.6161 10.6863C13.0638 10.1034 12.2437 9.87862 11.4805 10.1011L10.2019 7.88652C12.1769 7.02266 14.5112 7.65314 15.8057 9.42223L13.6161 10.6863Z",
926
+ fill: "#003A57"
927
+ })));
928
+ };
929
+
930
+ const StyledUgIcon$1 = styled__default["default"].span ``;
931
+ const Icon = (props) => {
932
+ const { type, size } = props;
933
+ const dim = size !== null && size !== void 0 ? size : 24;
934
+ return (jsxRuntime.jsxs(StyledUgIcon$1, { children: [type === "square" && jsxRuntime.jsx(SvgUgSquare, { width: dim, height: dim }), type === "triangle" && jsxRuntime.jsx(SvgUgTriangle, { width: dim, height: dim }), type === "circle" && jsxRuntime.jsx(SvgUgCircle, { width: dim, height: dim })] }));
935
+ };
936
+
818
937
  const UgSkeleton = styled__default["default"](reactLoaders.Skeleton) `
819
938
  border-radius: ${(props) => props.theme.borderRadii.xxl};
820
939
  ${(props) => props.isLight ?
@@ -1004,7 +1123,7 @@ const getTypeDataIcon = (type) => {
1004
1123
  return SvgCampaignFunctional;
1005
1124
  }
1006
1125
  };
1007
- const StyledTag$3 = styled__default["default"](Tag) `
1126
+ const StyledTag$2 = styled__default["default"](Tag) `
1008
1127
  color: ${({ theme }) => theme.palette.grey["700"]};
1009
1128
  cursor: pointer;
1010
1129
  `;
@@ -1021,7 +1140,7 @@ const CampaignCard = (_a) => {
1021
1140
  var { isNew, date, projectTitle, campaignTitle, status, type, labelNew } = _a, props = __rest(_a, ["isNew", "date", "projectTitle", "campaignTitle", "status", "type", "labelNew"]);
1022
1141
  const StatusIcon = getStatusIcon(status !== null && status !== void 0 ? status : "PROGRESS");
1023
1142
  const PillIcon = getTypeDataIcon(type);
1024
- return props.isLoading ? (jsxRuntime.jsx(CampaignCardSkeleton, {})) : (jsxRuntime.jsxs(SpecialCard, Object.assign({ title: campaignTitle }, props, { children: [jsxRuntime.jsxs(SpecialCard.Meta, { children: [jsxRuntime.jsx(StyledLabel$3, { children: date }), isNew && (jsxRuntime.jsx(StyledTagNew$1, Object.assign({ hue: theme.palette.fuschia["600"], isPill: true, size: "medium", title: labelNew ? labelNew : "New!" }, { children: labelNew ? labelNew : "New!" })))] }), jsxRuntime.jsxs(SpecialCard.Header, { children: [jsxRuntime.jsx(SpecialCard.Header.Label, { children: projectTitle }), jsxRuntime.jsx(SpecialCard.Header.Title, { children: campaignTitle })] }), jsxRuntime.jsxs(SpecialCard.Footer, { children: [props.pillText && (jsxRuntime.jsxs(StyledTag$3, Object.assign({ size: "large", isPill: true, isRegular: true, hue: theme.palette.grey[100] }, { children: [jsxRuntime.jsx(Tag.Avatar, { children: jsxRuntime.jsx(PillIcon, {}) }), jsxRuntime.jsx(Ellipsis, Object.assign({ style: { maxWidth: "180px" } }, { children: props.pillText }))] }))), jsxRuntime.jsx(StatusIcon, {})] })] })));
1143
+ return props.isLoading ? (jsxRuntime.jsx(CampaignCardSkeleton, {})) : (jsxRuntime.jsxs(SpecialCard, Object.assign({ title: campaignTitle }, props, { children: [jsxRuntime.jsxs(SpecialCard.Meta, { children: [jsxRuntime.jsx(StyledLabel$3, { children: date }), isNew && (jsxRuntime.jsx(StyledTagNew$1, Object.assign({ hue: theme.palette.fuschia["600"], isPill: true, size: "medium", title: labelNew ? labelNew : "New!" }, { children: labelNew ? labelNew : "New!" })))] }), jsxRuntime.jsxs(SpecialCard.Header, { children: [jsxRuntime.jsx(SpecialCard.Header.Label, { children: projectTitle }), jsxRuntime.jsx(SpecialCard.Header.Title, { children: campaignTitle })] }), jsxRuntime.jsxs(SpecialCard.Footer, { children: [props.pillText && (jsxRuntime.jsxs(StyledTag$2, Object.assign({ size: "large", isPill: true, isRegular: true, hue: theme.palette.grey[100] }, { children: [jsxRuntime.jsx(Tag.Avatar, { children: jsxRuntime.jsx(PillIcon, {}) }), jsxRuntime.jsx(Ellipsis, Object.assign({ style: { maxWidth: "180px" } }, { children: props.pillText }))] }))), jsxRuntime.jsx(StatusIcon, {})] })] })));
1025
1144
  };
1026
1145
 
1027
1146
  const StyledTagNew = styled__default["default"](Tag) `
@@ -1047,7 +1166,7 @@ const ServiceTitle = styled__default["default"](LG) `
1047
1166
  margin-bottom: ${({ theme }) => theme.space.base}px;
1048
1167
  font-weight: ${({ theme }) => theme.fontWeights.semibold};
1049
1168
  `;
1050
- const StyledTag$2 = styled__default["default"](Tag) `
1169
+ const StyledTag$1 = styled__default["default"](Tag) `
1051
1170
  margin-right: ${({ theme }) => theme.space.xs};
1052
1171
  margin-top: ${({ theme }) => theme.space.xs};
1053
1172
  `;
@@ -1114,7 +1233,7 @@ const StyledCard$1 = styled__default["default"](SpecialCard) `
1114
1233
  `;
1115
1234
  const ServiceCard = (props) => {
1116
1235
  const { serviceIcon, serviceTitle, serviceSubtitle } = props;
1117
- return (jsxRuntime.jsxs(StyledCard$1, Object.assign({}, props, { children: [props.isHoverable && (jsxRuntime.jsxs(HoverBody, { children: [jsxRuntime.jsxs(HoverMetaContainer, { children: [props.hoverTitle && (jsxRuntime.jsx(ServiceTitle, { children: props.hoverTitle })), props.hoverSubtitle && (jsxRuntime.jsx(ServiceSubtitle, { children: props.hoverSubtitle }))] }), props.hoverButtons && (jsxRuntime.jsx(ButtonsWrap$1, { children: props.hoverButtons.map((button) => button) }))] })), jsxRuntime.jsxs(CardContent, { children: [jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [serviceIcon && jsxRuntime.jsx(SpecialCard.Thumb, { children: serviceIcon }), jsxRuntime.jsxs(SpecialCard.Header, { children: [jsxRuntime.jsx(SpecialCard.Header.Label, { children: serviceSubtitle }), jsxRuntime.jsx(SpecialCard.Header.Title, { children: serviceTitle })] })] }), props.tags && (jsxRuntime.jsx(SpecialCard.Footer, Object.assign({ justifyContent: "start", wrap: true }, { children: props.tags.map((tag, index) => (jsxRuntime.jsxs(StyledTag$2, Object.assign({ size: "large", isPill: true, isRegular: true, hue: theme.palette.grey[100] }, { children: [jsxRuntime.jsx(StyledTag$2.Avatar, { children: tag.icon }), tag.label] }), index))) })))] })] })));
1236
+ return (jsxRuntime.jsxs(StyledCard$1, Object.assign({}, props, { children: [props.isHoverable && (jsxRuntime.jsxs(HoverBody, { children: [jsxRuntime.jsxs(HoverMetaContainer, { children: [props.hoverTitle && (jsxRuntime.jsx(ServiceTitle, { children: props.hoverTitle })), props.hoverSubtitle && (jsxRuntime.jsx(ServiceSubtitle, { children: props.hoverSubtitle }))] }), props.hoverButtons && (jsxRuntime.jsx(ButtonsWrap$1, { children: props.hoverButtons.map((button) => button) }))] })), jsxRuntime.jsxs(CardContent, { children: [jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [serviceIcon && jsxRuntime.jsx(SpecialCard.Thumb, { children: serviceIcon }), jsxRuntime.jsxs(SpecialCard.Header, { children: [jsxRuntime.jsx(SpecialCard.Header.Label, { children: serviceSubtitle }), jsxRuntime.jsx(SpecialCard.Header.Title, { children: serviceTitle })] })] }), props.tags && (jsxRuntime.jsx(SpecialCard.Footer, Object.assign({ justifyContent: "start", wrap: true }, { children: props.tags.map((tag, index) => (jsxRuntime.jsxs(StyledTag$1, Object.assign({ size: "large", isPill: true, isRegular: true, hue: theme.palette.grey[100] }, { children: [jsxRuntime.jsx(StyledTag$1.Avatar, { children: tag.icon }), tag.label] }), index))) })))] })] })));
1118
1237
  };
1119
1238
 
1120
1239
  const ButtonsWrap = styled__default["default"].div `
@@ -1689,80 +1808,6 @@ const UgClose = styled__default["default"](reactNotifications.Close) `
1689
1808
  */
1690
1809
  const Close = (props) => jsxRuntime.jsx(UgClose, Object.assign({}, props));
1691
1810
 
1692
- /**
1693
- * Use Span to style and format inline text elements.
1694
- * <hr>
1695
- * Used for this:
1696
- - To apply styles to short strings of text
1697
- - To include icons inline with text
1698
- * Not for this:
1699
- - To style an entire block of text, use Paragraph instead
1700
- */
1701
- const Span = (props) => jsxRuntime.jsx(reactTypography.Span, Object.assign({}, props));
1702
-
1703
- function debounce(callback, wait) {
1704
- let timer;
1705
- return () => {
1706
- if (typeof timer !== "undefined")
1707
- clearTimeout(timer);
1708
- timer = setTimeout(() => {
1709
- timer = undefined;
1710
- callback();
1711
- }, wait);
1712
- };
1713
- }
1714
- function useWindowSize() {
1715
- const [size, setSize] = React.useState({
1716
- width: window.innerWidth,
1717
- height: window.innerHeight,
1718
- });
1719
- React.useLayoutEffect(() => {
1720
- const debounceUpdateSize = debounce(function () {
1721
- setSize({ width: window.innerWidth, height: window.innerHeight });
1722
- }, 300);
1723
- window.addEventListener("resize", debounceUpdateSize);
1724
- debounceUpdateSize();
1725
- return () => window.removeEventListener("resize", debounceUpdateSize);
1726
- }, []);
1727
- return size;
1728
- }
1729
-
1730
- const StyledSpan = styled__default["default"](Span) ``;
1731
- const StyledTag$1 = styled__default["default"](Tag) `
1732
- background-color: transparent;
1733
- pointer-events: none;
1734
- ${({ status, theme }) => {
1735
- switch (status) {
1736
- case "completed":
1737
- return `color: ${theme.palette.green[800]};`;
1738
- case "progress":
1739
- return `color: ${theme.palette.yellow[700]};`;
1740
- case "incoming":
1741
- return `color: ${theme.palette.azure[600]};`;
1742
- default:
1743
- return `color: ${theme.palette.grey[800]};`;
1744
- }
1745
- }}
1746
- svg {
1747
- margin-right: ${({ theme }) => theme.space.xxs} !important;
1748
- }
1749
-
1750
- ${StyledSpan} {
1751
- margin-left: ${({ theme }) => theme.space.xxs};
1752
- color: ${({ theme }) => theme.palette.grey[700]};
1753
- font-weight: ${({ theme }) => theme.fontWeights.medium};
1754
- }
1755
- `;
1756
- /**
1757
- * Counter let users categorize content using a keyword.
1758
- */
1759
- const Counter = (props) => {
1760
- const { width } = useWindowSize();
1761
- const { status, counter } = props;
1762
- return (jsxRuntime.jsxs(StyledTag$1, Object.assign({}, props, { size: props.size || "large" }, { children: [jsxRuntime.jsx(StyledTag$1.Avatar, { children: jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [status === "completed" && jsxRuntime.jsx(SvgCampaignCompleted, {}), status === "progress" && jsxRuntime.jsx(SvgCampaignProgress, {}), status === "incoming" && jsxRuntime.jsx(SvgCampaignIncoming, {}), status === "functional" && jsxRuntime.jsx(SvgCampaignFunctional, {}), status === "experiential" && jsxRuntime.jsx(SvgCampaignExperiential, {})] }) }), width > parseInt(theme.breakpoints.sm) && props.children, counter !== undefined && jsxRuntime.jsx(StyledSpan, { children: counter.toString() })] })));
1763
- };
1764
- Counter.Avatar = StyledTag$1.Avatar;
1765
-
1766
1811
  const UgDrawer = styled__default["default"](reactModals.DrawerModal) `
1767
1812
  @media (max-width: ${({ theme }) => theme.breakpoints.sm}) {
1768
1813
  width: 100%;
@@ -2225,31 +2270,31 @@ const editorStyle = styled.css `
2225
2270
  }
2226
2271
  `;
2227
2272
 
2228
- var _path$u;
2229
- function _extends$B() { _extends$B = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$B.apply(this, arguments); }
2273
+ var _path$r;
2274
+ function _extends$y() { _extends$y = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$y.apply(this, arguments); }
2230
2275
  var SvgBoldFill = function SvgBoldFill(props) {
2231
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$B({
2276
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$y({
2232
2277
  xmlns: "http://www.w3.org/2000/svg",
2233
2278
  width: 16,
2234
2279
  height: 16,
2235
2280
  focusable: "false",
2236
2281
  viewBox: "0 0 16 16"
2237
- }, props), _path$u || (_path$u = /*#__PURE__*/React__namespace.createElement("path", {
2282
+ }, props), _path$r || (_path$r = /*#__PURE__*/React__namespace.createElement("path", {
2238
2283
  fill: "currentColor",
2239
2284
  d: "M7.5 0C9.952 0 12 2.048 12 4.5a4.483 4.483 0 01-1.27 3.108C12.078 8.39 13 9.855 13 11.5c0 2.452-2.048 4.5-4.5 4.5H4a1 1 0 01-1-1V1a1 1 0 011-1h3.5zM5 14h3.5c1.348 0 2.5-1.152 2.5-2.5S9.848 9 8.5 9H5v5zM7.5 2H5v5h2.5C8.848 7 10 5.848 10 4.5S8.848 2 7.5 2z"
2240
2285
  })));
2241
2286
  };
2242
2287
 
2243
- var _path$t;
2244
- function _extends$A() { _extends$A = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$A.apply(this, arguments); }
2288
+ var _path$q;
2289
+ function _extends$x() { _extends$x = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$x.apply(this, arguments); }
2245
2290
  var SvgItalicFill = function SvgItalicFill(props) {
2246
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$A({
2291
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$x({
2247
2292
  xmlns: "http://www.w3.org/2000/svg",
2248
2293
  width: 16,
2249
2294
  height: 16,
2250
2295
  focusable: "false",
2251
2296
  viewBox: "0 0 16 16"
2252
- }, props), _path$t || (_path$t = /*#__PURE__*/React__namespace.createElement("path", {
2297
+ }, props), _path$q || (_path$q = /*#__PURE__*/React__namespace.createElement("path", {
2253
2298
  fill: "none",
2254
2299
  stroke: "currentColor",
2255
2300
  strokeLinecap: "round",
@@ -2258,16 +2303,16 @@ var SvgItalicFill = function SvgItalicFill(props) {
2258
2303
  })));
2259
2304
  };
2260
2305
 
2261
- var _path$s, _path2$6;
2262
- function _extends$z() { _extends$z = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$z.apply(this, arguments); }
2306
+ var _path$p, _path2$6;
2307
+ function _extends$w() { _extends$w = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$w.apply(this, arguments); }
2263
2308
  var SvgQuoteFill = function SvgQuoteFill(props) {
2264
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$z({
2309
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$w({
2265
2310
  xmlns: "http://www.w3.org/2000/svg",
2266
2311
  width: 16,
2267
2312
  height: 16,
2268
2313
  focusable: "false",
2269
2314
  viewBox: "0 0 16 16"
2270
- }, props), _path$s || (_path$s = /*#__PURE__*/React__namespace.createElement("path", {
2315
+ }, props), _path$p || (_path$p = /*#__PURE__*/React__namespace.createElement("path", {
2271
2316
  fill: "currentColor",
2272
2317
  d: "M7 8H4c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1zm6 0h-3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1z"
2273
2318
  })), _path2$6 || (_path2$6 = /*#__PURE__*/React__namespace.createElement("path", {
@@ -2280,9 +2325,9 @@ var SvgQuoteFill = function SvgQuoteFill(props) {
2280
2325
  };
2281
2326
 
2282
2327
  var _g$5;
2283
- function _extends$y() { _extends$y = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$y.apply(this, arguments); }
2328
+ function _extends$v() { _extends$v = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$v.apply(this, arguments); }
2284
2329
  var SvgH1Fill = function SvgH1Fill(props) {
2285
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$y({
2330
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$v({
2286
2331
  xmlns: "http://www.w3.org/2000/svg",
2287
2332
  width: 16,
2288
2333
  height: 16,
@@ -2310,9 +2355,9 @@ var SvgH1Fill = function SvgH1Fill(props) {
2310
2355
  };
2311
2356
 
2312
2357
  var _g$4;
2313
- function _extends$x() { _extends$x = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$x.apply(this, arguments); }
2358
+ function _extends$u() { _extends$u = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$u.apply(this, arguments); }
2314
2359
  var SvgH2Fill = function SvgH2Fill(props) {
2315
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$x({
2360
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$u({
2316
2361
  xmlns: "http://www.w3.org/2000/svg",
2317
2362
  width: 16,
2318
2363
  height: 16,
@@ -2340,9 +2385,9 @@ var SvgH2Fill = function SvgH2Fill(props) {
2340
2385
  };
2341
2386
 
2342
2387
  var _g$3;
2343
- function _extends$w() { _extends$w = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$w.apply(this, arguments); }
2388
+ function _extends$t() { _extends$t = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$t.apply(this, arguments); }
2344
2389
  var SvgH3Fill = function SvgH3Fill(props) {
2345
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$w({
2390
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$t({
2346
2391
  xmlns: "http://www.w3.org/2000/svg",
2347
2392
  width: 16,
2348
2393
  height: 16,
@@ -2584,9 +2629,9 @@ const Hint = styled__default["default"](reactForms.Hint) ``;
2584
2629
  const Input = React.forwardRef((props, ref) => jsxRuntime.jsx(UgInput, Object.assign({ ref: ref }, props)));
2585
2630
 
2586
2631
  var _g$2;
2587
- function _extends$v() { _extends$v = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$v.apply(this, arguments); }
2632
+ function _extends$s() { _extends$s = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$s.apply(this, arguments); }
2588
2633
  var SvgNotesStroke = function SvgNotesStroke(props) {
2589
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$v({
2634
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$s({
2590
2635
  xmlns: "http://www.w3.org/2000/svg",
2591
2636
  width: 16,
2592
2637
  height: 16,
@@ -2705,16 +2750,16 @@ const UgRadio = styled__default["default"](reactForms.Radio) ``;
2705
2750
  **/
2706
2751
  const Radio = (props) => jsxRuntime.jsx(UgRadio, Object.assign({}, props));
2707
2752
 
2708
- var _path$r;
2709
- function _extends$u() { _extends$u = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$u.apply(this, arguments); }
2753
+ var _path$o;
2754
+ function _extends$r() { _extends$r = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$r.apply(this, arguments); }
2710
2755
  var SvgCheckLg = function SvgCheckLg(props) {
2711
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$u({
2756
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$r({
2712
2757
  width: 16,
2713
2758
  height: 16,
2714
2759
  viewBox: "0 0 16 16",
2715
2760
  fill: "#68737D",
2716
2761
  xmlns: "http://www.w3.org/2000/svg"
2717
- }, props), _path$r || (_path$r = /*#__PURE__*/React__namespace.createElement("path", {
2762
+ }, props), _path$o || (_path$o = /*#__PURE__*/React__namespace.createElement("path", {
2718
2763
  fillRule: "evenodd",
2719
2764
  clipRule: "evenodd",
2720
2765
  d: "M14.6464 2.64645C14.8417 2.45118 15.1583 2.45118 15.3536 2.64645C15.5488 2.84171 15.5488 3.15829 15.3536 3.35355L5.35355 13.3536C5.15829 13.5488 4.84171 13.5488 4.64645 13.3536L0.646447 9.35355C0.451184 9.15829 0.451184 8.84171 0.646447 8.64645C0.841709 8.45118 1.15829 8.45118 1.35355 8.64645L5 12.2929L14.6464 2.64645Z"
@@ -2800,58 +2845,6 @@ const UgGrid = styled__default["default"](reactGrid.Grid) `
2800
2845
  */
2801
2846
  const Grid = (props) => jsxRuntime.jsx(UgGrid, Object.assign({}, props));
2802
2847
 
2803
- var _path$q;
2804
- function _extends$t() { _extends$t = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$t.apply(this, arguments); }
2805
- var SvgUgSquare = function SvgUgSquare(props) {
2806
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$t({
2807
- width: 24,
2808
- height: 24,
2809
- viewBox: "0 0 24 24",
2810
- fill: "none",
2811
- xmlns: "http://www.w3.org/2000/svg"
2812
- }, props), _path$q || (_path$q = /*#__PURE__*/React__namespace.createElement("path", {
2813
- d: "M19 3H5C3.9 3 3 3.9 3 5V19C3 20.1 3.9 21 5 21H19C20.1 21 21 20.1 21 19V5C21 3.9 20.1 3 19 3ZM18 19H6C5.45 19 5 18.55 5 18V6C5 5.45 5.45 5 6 5H18C18.55 5 19 5.45 19 6V18C19 18.55 18.55 19 18 19Z",
2814
- fill: "#E80C7A"
2815
- })));
2816
- };
2817
-
2818
- var _path$p;
2819
- function _extends$s() { _extends$s = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$s.apply(this, arguments); }
2820
- var SvgUgCircle = function SvgUgCircle(props) {
2821
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$s({
2822
- width: 24,
2823
- height: 24,
2824
- viewBox: "0 0 24 24",
2825
- fill: "none",
2826
- xmlns: "http://www.w3.org/2000/svg"
2827
- }, props), _path$p || (_path$p = /*#__PURE__*/React__namespace.createElement("path", {
2828
- d: "M12 2C6.47 2 2 6.47 2 12C2 17.53 6.47 22 12 22C17.53 22 22 17.53 22 12C22 6.47 17.53 2 12 2ZM12 20C7.58 20 4 16.42 4 12C4 7.58 7.58 4 12 4C16.42 4 20 7.58 20 12C20 16.42 16.42 20 12 20Z",
2829
- fill: "#FFCD1A"
2830
- })));
2831
- };
2832
-
2833
- var _path$o;
2834
- function _extends$r() { _extends$r = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$r.apply(this, arguments); }
2835
- var SvgUgTriangle = function SvgUgTriangle(props) {
2836
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$r({
2837
- width: 24,
2838
- height: 24,
2839
- viewBox: "0 0 24 24",
2840
- fill: "none",
2841
- xmlns: "http://www.w3.org/2000/svg"
2842
- }, props), _path$o || (_path$o = /*#__PURE__*/React__namespace.createElement("path", {
2843
- d: "M11.9993 7.32625L18.3893 17.5563H5.60929L11.9993 7.32625ZM11.1493 4.91625L2.94929 18.0262C2.53929 18.6962 3.01929 19.5563 3.79929 19.5563H20.1993C20.9893 19.5563 21.4593 18.6962 21.0493 18.0262L12.8493 4.91625C12.4593 4.28625 11.5393 4.28625 11.1493 4.91625Z",
2844
- fill: "#7B0DFF"
2845
- })));
2846
- };
2847
-
2848
- const StyledUgIcon$1 = styled__default["default"].span ``;
2849
- const Icon = (props) => {
2850
- const { type, size } = props;
2851
- const dim = size !== null && size !== void 0 ? size : 24;
2852
- return (jsxRuntime.jsxs(StyledUgIcon$1, { children: [type === "square" && jsxRuntime.jsx(SvgUgSquare, { width: dim, height: dim }), type === "triangle" && jsxRuntime.jsx(SvgUgTriangle, { width: dim, height: dim }), type === "circle" && jsxRuntime.jsx(SvgUgCircle, { width: dim, height: dim })] }));
2853
- };
2854
-
2855
2848
  const UgModalBody = styled__default["default"](reactModals.Body) `
2856
2849
  color: ${({ theme }) => theme.palette.grey["800"]};
2857
2850
  `;
@@ -3596,6 +3589,33 @@ const PageLoader = () => {
3596
3589
  */
3597
3590
  const Title = (props) => jsxRuntime.jsx(reactNotifications.Title, Object.assign({}, props));
3598
3591
 
3592
+ function debounce(callback, wait) {
3593
+ let timer;
3594
+ return () => {
3595
+ if (typeof timer !== "undefined")
3596
+ clearTimeout(timer);
3597
+ timer = setTimeout(() => {
3598
+ timer = undefined;
3599
+ callback();
3600
+ }, wait);
3601
+ };
3602
+ }
3603
+ function useWindowSize() {
3604
+ const [size, setSize] = React.useState({
3605
+ width: window.innerWidth,
3606
+ height: window.innerHeight,
3607
+ });
3608
+ React.useLayoutEffect(() => {
3609
+ const debounceUpdateSize = debounce(function () {
3610
+ setSize({ width: window.innerWidth, height: window.innerHeight });
3611
+ }, 300);
3612
+ window.addEventListener("resize", debounceUpdateSize);
3613
+ debounceUpdateSize();
3614
+ return () => window.removeEventListener("resize", debounceUpdateSize);
3615
+ }, []);
3616
+ return size;
3617
+ }
3618
+
3599
3619
  const StyledCard = styled__default["default"](ContainerCard) `
3600
3620
  @media screen and (max-width: ${theme.breakpoints.sm}) {
3601
3621
  border: 0;
@@ -5482,6 +5502,8 @@ exports.Button = Button;
5482
5502
  exports.ButtonGroup = ButtonGroup;
5483
5503
  exports.CHARTS_COLOR_PALETTE = CHARTS_COLOR_PALETTE;
5484
5504
  exports.CampaignCard = CampaignCard;
5505
+ exports.CampaignExperientialIcon = SvgCampaignExperiential;
5506
+ exports.CampaignFunctionalIcon = SvgCampaignFunctional;
5485
5507
  exports.Caption = Caption;
5486
5508
  exports.Card = Card;
5487
5509
  exports.Checkbox = Checkbox;
@@ -5492,7 +5514,6 @@ exports.Code = Code;
5492
5514
  exports.Col = Col;
5493
5515
  exports.ContainerCard = ContainerCard;
5494
5516
  exports.Content = Content$1;
5495
- exports.Counter = Counter;
5496
5517
  exports.CounterMultiselect = CounterMultiselect;
5497
5518
  exports.CursorPagination = CursorPagination;
5498
5519
  exports.Dots = Dots;
@@ -5574,6 +5595,10 @@ exports.Span = Span;
5574
5595
  exports.SpecialCard = SpecialCard;
5575
5596
  exports.Spinner = Spinner;
5576
5597
  exports.SplitButton = SplitButton;
5598
+ exports.StatusCompletedIcon = SvgCampaignCompleted;
5599
+ exports.StatusIncomingIcon = SvgCampaignIncoming;
5600
+ exports.StatusLockedIcon = SvgCampaignLocked;
5601
+ exports.StatusRunningIcon = SvgCampaignProgress;
5577
5602
  exports.Stepper = Stepper;
5578
5603
  exports.StyledLabel = StyledLabel$2;
5579
5604
  exports.SunburstChart = SunburstChart;
@@ -1,3 +1,9 @@
1
+ import { ReactComponent as StatusCompletedIcon } from "../../assets/icons/campaign-completed.svg";
2
+ import { ReactComponent as StatusLockedIcon } from "../../assets/icons/campaign-locked.svg";
3
+ import { ReactComponent as StatusIncomingIcon } from "../../assets/icons/campaign-incoming.svg";
4
+ import { ReactComponent as StatusRunningIcon } from "../../assets/icons/campaign-progress.svg";
5
+ import { ReactComponent as CampaignExperientialIcon } from "../../assets/icons/campaign-experiential.svg";
6
+ import { ReactComponent as CampaignFunctionalIcon } from "../../assets/icons/campaign-functional.svg";
1
7
  import { IconArgs } from "./_types";
2
- declare const Icon: (props: IconArgs) => JSX.Element;
3
- export { Icon };
8
+ export declare const Icon: (props: IconArgs) => JSX.Element;
9
+ export { StatusCompletedIcon, StatusLockedIcon, StatusIncomingIcon, StatusRunningIcon, CampaignExperientialIcon, CampaignFunctionalIcon };
@@ -1,11 +1,14 @@
1
1
  /// <reference types="react" />
2
2
  import { TagArgs } from "./_types";
3
3
  declare const Tag: {
4
- ({ isPill, hue, color, ...props }: TagArgs): JSX.Element;
4
+ ({ isPill, hue, color, size, ...props }: TagArgs): JSX.Element;
5
5
  Avatar: import("styled-components").StyledComponent<{
6
6
  (props: import("react").HTMLAttributes<HTMLElement>): JSX.Element;
7
7
  displayName: string;
8
8
  }, any, {}, never>;
9
9
  Close: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
10
+ SecondaryText: import("styled-components").StyledComponent<(props: import("../typography/span/_types").SpanArgs) => JSX.Element, any, {
11
+ color?: string | undefined;
12
+ }, never>;
10
13
  };
11
14
  export { Tag };
@@ -4,16 +4,24 @@ import { TagArgs } from "./_types";
4
4
  interface TagStoryProps extends TagArgs {
5
5
  canBeClosed: boolean;
6
6
  hasAvatar: boolean;
7
+ secondaryText: string;
8
+ secondaryTextBold: boolean;
9
+ secondaryTextColor: string;
7
10
  }
8
11
  export declare const Default: Story<TagStoryProps>;
9
12
  export declare const Avatar: Story<TagStoryProps>;
10
13
  export declare const Close: Story<TagStoryProps>;
14
+ export declare const Round: Story<TagStoryProps>;
15
+ export declare const Counter: Story<TagStoryProps>;
11
16
  declare const _default: ComponentMeta<{
12
- ({ isPill, hue, color, ...props }: TagArgs): JSX.Element;
17
+ ({ isPill, hue, color, size, ...props }: TagArgs): JSX.Element;
13
18
  Avatar: import("styled-components").StyledComponent<{
14
19
  (props: import("react").HTMLAttributes<HTMLElement>): JSX.Element;
15
20
  displayName: string;
16
21
  }, any, {}, never>;
17
22
  Close: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>, any, {}, never>;
23
+ SecondaryText: import("styled-components").StyledComponent<(props: import("../typography/span/_types").SpanArgs) => JSX.Element, any, {
24
+ color?: string | undefined;
25
+ }, never>;
18
26
  }>;
19
27
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appquality/unguess-design-system",
3
- "version": "2.12.76",
3
+ "version": "2.12.78",
4
4
  "dependencies": {
5
5
  "@nivo/bar": "^0.80.0",
6
6
  "@nivo/bullet": "^0.80.0",
@@ -1,5 +0,0 @@
1
- import { TagArgs } from "../tags/_types";
2
- export interface CounterArgs extends TagArgs {
3
- status: "progress" | "completed" | "incoming" | "functional" | "experiential";
4
- counter?: number;
5
- }
@@ -1,13 +0,0 @@
1
- /// <reference types="react" />
2
- import { CounterArgs } from "./_types";
3
- /**
4
- * Counter let users categorize content using a keyword.
5
- */
6
- declare const Counter: {
7
- (props: CounterArgs): JSX.Element;
8
- Avatar: import("styled-components").StyledComponent<{
9
- (props: import("react").HTMLAttributes<HTMLElement>): JSX.Element;
10
- displayName: string;
11
- }, any, {}, never>;
12
- };
13
- export { Counter };
@@ -1,15 +0,0 @@
1
- /// <reference types="react" />
2
- import { ComponentMeta, Story } from "@storybook/react";
3
- import { CounterArgs } from "./_types";
4
- interface TagStoryProps extends CounterArgs {
5
- hasAvatar: boolean;
6
- }
7
- export declare const Default: Story<TagStoryProps>;
8
- declare const _default: ComponentMeta<{
9
- (props: CounterArgs): JSX.Element;
10
- Avatar: import("styled-components").StyledComponent<{
11
- (props: import("react").HTMLAttributes<HTMLElement>): JSX.Element;
12
- displayName: string;
13
- }, any, {}, never>;
14
- }>;
15
- export default _default;