@sendoutcards/quantum-design-ui 1.8.11 → 1.8.13

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.es.js CHANGED
@@ -11678,6 +11678,33 @@ var Coaching = function (_a) {
11678
11678
  }));
11679
11679
  };
11680
11680
 
11681
+ var PromptingsIcon$1 = function (_a) {
11682
+ var primaryColor = _a.primaryColor,
11683
+ size = _a.size,
11684
+ onClick = _a.onClick,
11685
+ entity = _a.entity;
11686
+ return jsx("svg", {
11687
+ onClick: onClick && function () {
11688
+ return onClick();
11689
+ },
11690
+ width: getIconSize(size, entity),
11691
+ height: getIconSize(size, entity),
11692
+ viewBox: "0 0 20 21",
11693
+ fill: "none",
11694
+ xmlns: "http://www.w3.org/2000/svg"
11695
+ }, jsx("g", {
11696
+ clipPath: "url(#a)"
11697
+ }, jsx("path", {
11698
+ d: "M12.416 4.283c-2.512.949-3.08 3.579-3.722 5.696-.92.079-1.72.295-2.745.747l-.021.025c.7-.101 1.866-.05 2.475.207-.387 1.422-.709 2.933-1.551 4.142-.955 1.475-3.41 1.634-4.567.267-1.124-1.263-.318-3.462 1.345-4.01-1.848.515-2.875 2.799-1.812 4.302 1.125 1.656 4.03 1.986 5.691.813 1.598-1.228 1.852-3.228 2.28-4.952.039-.158.075-.316.112-.474 2.515-.099 5.527.087 7.264-1.94 2.63-3.061-1.049-6.518-4.75-4.823Zm2.8 4.744c-1.512.747-3.352.742-5.049.925.276-1.073.61-2.142 1.152-3.105.757-1.35 2.86-2.229 4.388-1.46 1.585.863.945 2.933-.491 3.64Z",
11699
+ fill: getIconColor(primaryColor, entity)
11700
+ })), jsx("defs", null, jsx("clipPath", {
11701
+ id: "a"
11702
+ }, jsx("path", {
11703
+ fill: "#fff",
11704
+ d: "M0 .5h20v20H0z"
11705
+ }))));
11706
+ };
11707
+
11681
11708
  var Icon = function (_a) {
11682
11709
  var primaryColor = _a.primaryColor,
11683
11710
  secondaryColor = _a.secondaryColor,
@@ -11955,6 +11982,8 @@ var Icon = function (_a) {
11955
11982
  return jsx(Warning, props);
11956
11983
  case 'coaching':
11957
11984
  return jsx(Coaching, props);
11985
+ case 'promptingsIcon':
11986
+ return jsx(PromptingsIcon$1, props);
11958
11987
  }
11959
11988
  };
11960
11989
 
@@ -12310,6 +12339,7 @@ var useOutsideClick = function (ref, handler, targetIdBypass) {
12310
12339
  };
12311
12340
 
12312
12341
  var Div = /*#__PURE__*/React.forwardRef(function (props, ref) {
12342
+ var rest = __rest(props, []);
12313
12343
  var entities = useEntities();
12314
12344
  var generatedDivStyles = generateStyles(props, entities);
12315
12345
  useOutsideClick(ref, function () {
@@ -12328,7 +12358,7 @@ var Div = /*#__PURE__*/React.forwardRef(function (props, ref) {
12328
12358
  },
12329
12359
  css: styles$R.divStyles(generatedDivStyles),
12330
12360
  className: "" + (props.className ? props.className : '')
12331
- }), props.children);
12361
+ }, rest), props.children);
12332
12362
  });
12333
12363
 
12334
12364
  var useWindowSize = function () {
@@ -12404,50 +12434,51 @@ var Text = function (_a) {
12404
12434
  lineHeight = props.lineHeight,
12405
12435
  whiteSpace = props.whiteSpace,
12406
12436
  isInline = props.isInline,
12407
- style = props.style;
12437
+ style = props.style,
12438
+ rest = __rest(props, ["type", "color", "children", "content", "alignment", "isItalic", "isStrikeThrough", "outset", "inset", "weight", "lineHeight", "whiteSpace", "isInline", "style"]);
12408
12439
  var text = useEntities().text;
12409
12440
  var width = useWindowSize().width;
12410
12441
  var getText = useCallback(function (type) {
12411
12442
  switch (type) {
12412
12443
  case 'heroTitle':
12413
- return jsx("h1", {
12444
+ return jsx("h1", _extends({
12414
12445
  style: style,
12415
12446
  css: styles$S.heroTitle(text, color, weight, alignment, isItalic, isStrikeThrough, lineHeight, whiteSpace, isInline)
12416
- }, children || content);
12447
+ }, rest), children || content);
12417
12448
  case 'title':
12418
- return jsx("h2", {
12449
+ return jsx("h2", _extends({
12419
12450
  style: style,
12420
12451
  css: styles$S.title(text, color, weight, alignment, isItalic, isStrikeThrough, lineHeight, whiteSpace, isInline)
12421
- }, children || content);
12452
+ }, rest), children || content);
12422
12453
  case 'subtitle':
12423
- return jsx("h3", {
12454
+ return jsx("h3", _extends({
12424
12455
  style: style,
12425
12456
  css: styles$S.subtitle(text, color, weight, alignment, isItalic, isStrikeThrough, lineHeight, whiteSpace, isInline)
12426
- }, children || content);
12457
+ }, rest), children || content);
12427
12458
  case 'largeBody':
12428
- return jsx("p", {
12459
+ return jsx("p", _extends({
12429
12460
  style: style,
12430
12461
  css: styles$S.largeBody(text, color, weight, alignment, isItalic, isStrikeThrough, lineHeight, whiteSpace, isInline)
12431
- }, children || content);
12462
+ }, rest), children || content);
12432
12463
  case 'body':
12433
- return jsx("p", {
12464
+ return jsx("p", _extends({
12434
12465
  style: style,
12435
12466
  css: styles$S.body(text, color, weight, alignment, isItalic, isStrikeThrough, lineHeight, whiteSpace, isInline)
12436
- }, children || content);
12467
+ }, rest), children || content);
12437
12468
  case 'caption':
12438
- return jsx("p", {
12469
+ return jsx("p", _extends({
12439
12470
  style: style,
12440
12471
  css: styles$S.caption(text, color, weight, alignment, isItalic, isStrikeThrough, lineHeight, whiteSpace, isInline)
12441
- }, children || content);
12472
+ }, rest), children || content);
12442
12473
  case 'footnote':
12443
- return jsx("p", {
12474
+ return jsx("p", _extends({
12444
12475
  style: style,
12445
12476
  css: styles$S.footnote(text, color, weight, alignment, isItalic, isStrikeThrough, lineHeight, whiteSpace, isInline)
12446
- }, children || content);
12477
+ }, rest), children || content);
12447
12478
  default:
12448
12479
  return;
12449
12480
  }
12450
- }, [color, weight, alignment, isItalic, isStrikeThrough, lineHeight, content, text, children, whiteSpace, isInline, style]);
12481
+ }, [color, weight, alignment, isItalic, isStrikeThrough, lineHeight, content, text, children, whiteSpace, isInline, style, rest]);
12451
12482
  var renderText = useMemo(function () {
12452
12483
  return makeTextResponsive(type, getText, width);
12453
12484
  }, [width, getText, type]);
@@ -13567,10 +13598,11 @@ var Overlay = function (_a) {
13567
13598
  motionKey = _a.motionKey,
13568
13599
  position = _a.position,
13569
13600
  _b = _a.pinned,
13570
- pinned = _b === void 0 ? 'center' : _b;
13601
+ pinned = _b === void 0 ? 'center' : _b,
13602
+ rest = __rest(_a, ["children", "zIndex", "animate", "initial", "exit", "variants", "transition", "motionKey", "position", "pinned"]);
13571
13603
  var hocs = useEntities().hocs;
13572
13604
  var pinnedPosition = pinned === 'top' ? 'flex-start' : pinned === 'bottom' ? 'flex-end' : 'center';
13573
- return jsx(Div, {
13605
+ return jsx(Div, _extends({
13574
13606
  motionKey: motionKey,
13575
13607
  variants: variants,
13576
13608
  animate: animate,
@@ -13588,7 +13620,7 @@ var Overlay = function (_a) {
13588
13620
  backgroundColor: Color$1(hocs.colors.swatches.grayScale._800).rgb().alpha(0.98).toString(),
13589
13621
  overflow: "hidden",
13590
13622
  transition: transition
13591
- }, children);
13623
+ }, rest), children);
13592
13624
  };
13593
13625
 
13594
13626
  var Circle = function (_a) {
@@ -14967,7 +14999,8 @@ var Dialog = /*#__PURE__*/React.forwardRef(function (props, ref) {
14967
14999
  _e = props.borderRadius,
14968
15000
  borderRadius = _e === void 0 ? 'default' : _e,
14969
15001
  _f = props.pinned,
14970
- pinned = _f === void 0 ? 'center' : _f;
15002
+ pinned = _f === void 0 ? 'center' : _f,
15003
+ rest = __rest(props, ["zIndex", "isOpen", "onClose", "maxWidth", "maxHeight", "bgElementSelector", "isFullScreen", "closeButtonId", "insetOverride", "height", "width", "children", "shouldScroll", "borderRadius", "pinned"]);
14971
15004
  var pinnedRadius = pinned === 'bottom' ? {
14972
15005
  top: borderRadius,
14973
15006
  bottom: 'none'
@@ -14975,7 +15008,7 @@ var Dialog = /*#__PURE__*/React.forwardRef(function (props, ref) {
14975
15008
  bottom: borderRadius,
14976
15009
  top: 'none'
14977
15010
  } : borderRadius;
14978
- return jsx(AnimatePresence, null, isOpen && jsx(Overlay, {
15011
+ return jsx(AnimatePresence, null, isOpen && jsx(Overlay, _extends({
14979
15012
  variants: overlayVariants,
14980
15013
  animate: isOpen ? 'open' : 'closed',
14981
15014
  initial: 'closed',
@@ -14983,7 +15016,7 @@ var Dialog = /*#__PURE__*/React.forwardRef(function (props, ref) {
14983
15016
  exit: 'closed',
14984
15017
  bgElementSelector: bgElementSelector,
14985
15018
  pinned: pinned
14986
- }, jsx(Div, {
15019
+ }, rest), jsx(Div, {
14987
15020
  ref: ref,
14988
15021
  outsideClick: onClose,
14989
15022
  variants: dialogVariants,
@@ -17337,16 +17370,17 @@ var PromptingsIcon = function (_a) {
17337
17370
  };
17338
17371
 
17339
17372
  var Logo = function (_a) {
17340
- var _b, _c;
17373
+ var _b, _c, _d;
17341
17374
  var brand = _a.brand,
17342
17375
  color = _a.color,
17343
- _d = _a.type,
17344
- type = _d === void 0 ? 'fullLogo' : _d,
17345
- _e = _a.width,
17346
- width = _e === void 0 ? '100px' : _e,
17376
+ _e = _a.type,
17377
+ type = _e === void 0 ? 'fullLogo' : _e,
17378
+ _f = _a.width,
17379
+ width = _f === void 0 ? '100px' : _f,
17347
17380
  href = _a.href,
17348
17381
  onClick = _a.onClick,
17349
- secondaryLogo = _a.secondaryLogo;
17382
+ secondaryLogo = _a.secondaryLogo,
17383
+ shouldShowParentBrand = _a.shouldShowParentBrand;
17350
17384
  var selectLogo = {
17351
17385
  bellaCadeaux: {
17352
17386
  fullLogo: BellaCadeauxLogo
@@ -17383,7 +17417,6 @@ var Logo = function (_a) {
17383
17417
  }
17384
17418
  };
17385
17419
  var SelectedLogo = ((_b = selectLogo[brand]) === null || _b === void 0 ? void 0 : _b[type]) || PromptingsLogo;
17386
- var SecondaryLogo = secondaryLogo ? (_c = selectLogo[secondaryLogo.logo]) === null || _c === void 0 ? void 0 : _c[secondaryLogo.type || type] : null;
17387
17420
  return jsx(Span, {
17388
17421
  style: {
17389
17422
  lineHeight: 0
@@ -17391,7 +17424,7 @@ var Logo = function (_a) {
17391
17424
  display: "inline-block",
17392
17425
  width: 'fit-content'
17393
17426
  }, jsx(Flex, {
17394
- flexDirection: "row",
17427
+ flexDirection: "column",
17395
17428
  columnGap: "x_5",
17396
17429
  alignItems: "center",
17397
17430
  style: {
@@ -17406,16 +17439,33 @@ var Logo = function (_a) {
17406
17439
  }, jsx(SelectedLogo, {
17407
17440
  color: color,
17408
17441
  width: width
17409
- })), SecondaryLogo && jsx(React.Fragment, null, "|", jsx("a", {
17410
- href: secondaryLogo === null || secondaryLogo === void 0 ? void 0 : secondaryLogo.href,
17411
- onClick: secondaryLogo === null || secondaryLogo === void 0 ? void 0 : secondaryLogo.onClick,
17442
+ })), shouldShowParentBrand && jsx(Flex, {
17443
+ alignItems: "center",
17444
+ style: {
17445
+ fontFamily: 'Ubuntu',
17446
+ fontStyle: 'italic',
17447
+ fontSize: (_c = secondaryLogo === null || secondaryLogo === void 0 ? void 0 : secondaryLogo.fontSize) !== null && _c !== void 0 ? _c : '12px'
17448
+ },
17449
+ justifyContent: "flex-end",
17450
+ flexDirection: "row",
17451
+ columnGap: "x_25",
17452
+ opacity: 0.5,
17453
+ width: "100%",
17454
+ inset: {
17455
+ right: 'x1_5'
17456
+ }
17457
+ }, "a", jsx("a", {
17458
+ href: href,
17459
+ onClick: onClick,
17412
17460
  style: {
17413
17461
  cursor: 'pointer'
17414
17462
  }
17415
- }, jsx(SecondaryLogo, {
17463
+ }, jsx(PromptingsLogo, {
17464
+ brand: "promptings",
17416
17465
  color: color,
17417
- width: width
17418
- })))));
17466
+ width: (_d = secondaryLogo === null || secondaryLogo === void 0 ? void 0 : secondaryLogo.width) !== null && _d !== void 0 ? _d : width,
17467
+ type: "fullLogo"
17468
+ })), "company")));
17419
17469
  };
17420
17470
 
17421
17471
  var getDifference = function (currentDate, endDate) {
@@ -20059,7 +20109,8 @@ var ConfirmDialog = function (_a) {
20059
20109
  maxWidth = _c === void 0 ? '552px' : _c,
20060
20110
  _d = _a.hasStackedActions,
20061
20111
  hasStackedActions = _d === void 0 ? false : _d,
20062
- maxHeight = _a.maxHeight;
20112
+ maxHeight = _a.maxHeight,
20113
+ rest = __rest(_a, ["additionalLink", "accept", "decline", "title", "description", "zIndex", "isOpen", "primaryAction", "onClose", "requireScroll", "maxWidth", "hasStackedActions", "maxHeight"]);
20063
20114
  var isPrimaryAccept = primaryAction === 'accept' ? true : false;
20064
20115
  var _e = useState(false),
20065
20116
  hasScrolled = _e[0],
@@ -20069,13 +20120,13 @@ var ConfirmDialog = function (_a) {
20069
20120
  setHasScrolled(true);
20070
20121
  }
20071
20122
  };
20072
- return jsx(Dialog, {
20123
+ return jsx(Dialog, _extends({
20073
20124
  isOpen: isOpen,
20074
20125
  zIndex: zIndex,
20075
20126
  onClose: onClose,
20076
20127
  maxWidth: maxWidth,
20077
20128
  maxHeight: maxHeight
20078
- }, jsx(Flex, {
20129
+ }, rest), jsx(Flex, {
20079
20130
  flexDirection: "column"
20080
20131
  }, jsx(Text, {
20081
20132
  weight: "semiBold",
@@ -21567,17 +21618,21 @@ var StaticNavigation = function (_a) {
21567
21618
  openValueOverride = _a.openValueOverride,
21568
21619
  _d = _a.drawerOffset,
21569
21620
  drawerOffset = _d === void 0 ? 60 : _d,
21570
- isFrosted = _a.isFrosted;
21621
+ isFrosted = _a.isFrosted,
21622
+ menuDropdown = _a.menuDropdown;
21571
21623
  var _e = useState(0),
21572
21624
  selectedTab = _e[0],
21573
21625
  setSelectedTab = _e[1];
21574
21626
  var _f = useState(false),
21575
21627
  isOpen = _f[0],
21576
21628
  setIsOpen = _f[1];
21629
+ var _g = React.useState(false),
21630
+ isMenuOpen = _g[0],
21631
+ setIsMenuOpen = _g[1];
21577
21632
  var size = useDeviceSize().device;
21578
- var _g = useResizeObserver(),
21579
- ref = _g.ref,
21580
- height = _g.height;
21633
+ var _h = useResizeObserver(),
21634
+ ref = _h.ref,
21635
+ height = _h.height;
21581
21636
  var hocs = useEntities().hocs;
21582
21637
  var isDropdownLinkType = function (valueToCheck) {
21583
21638
  var dropDownLink = valueToCheck;
@@ -21604,7 +21659,36 @@ var StaticNavigation = function (_a) {
21604
21659
  onClick: function () {
21605
21660
  return setIsOpen(!isOpen);
21606
21661
  }
21607
- })), !links && !isMobile && jsx("div", null), jsx(Logo, logo), links && !isMobile && jsx(Flex, {
21662
+ })), !links && !isMobile && jsx("div", null), jsx(Flex, {
21663
+ alignItems: "center",
21664
+ flexDirection: "row",
21665
+ columnGap: "x1"
21666
+ }, menuDropdown && jsx(Div, {
21667
+ maxWidth: "300px"
21668
+ }, jsx("button", {
21669
+ style: {
21670
+ backgroundColor: '#fff',
21671
+ borderRadius: '40px',
21672
+ border: 'none',
21673
+ cursor: 'pointer'
21674
+ },
21675
+ onClick: function () {
21676
+ return setIsMenuOpen(!isMenuOpen);
21677
+ }
21678
+ }, jsx(Flex, {
21679
+ flexDirection: "row"
21680
+ }, jsx(Icon, {
21681
+ name: "promptingsIcon",
21682
+ primaryColor: "primaryHeadingText",
21683
+ size: "xSmall"
21684
+ }), jsx(Icon, {
21685
+ name: "chevron",
21686
+ orientation: 'down',
21687
+ primaryColor: "primaryHeadingText",
21688
+ size: "xSmall"
21689
+ }))), jsx(DropDownMenu, _extends({}, menuDropdown, {
21690
+ isOpen: isMenuOpen
21691
+ }))), jsx(Logo, logo)), links && !isMobile && jsx(Flex, {
21608
21692
  height: "100%",
21609
21693
  width: "100%",
21610
21694
  alignItems: "center",
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ import { SVGProps } from '../types/index';
3
+ export declare const PromptingsIcon: FC<SVGProps>;
@@ -11,7 +11,7 @@ export declare type SVGProps = {
11
11
  entity: IconsEntity;
12
12
  orientation?: orientation;
13
13
  };
14
- export declare type IconType = 'catalog' | 'socLogo' | 'campaigns' | 'gift' | 'plus' | 'minus' | 'tenDoor' | 'rightChevron' | 'close' | 'award' | 'contact' | 'multipleUsers2x' | 'multipleUsers3x' | 'information' | 'hamburger' | 'leftChevron' | 'chevron' | 'information' | 'filterBy' | 'groups' | 'idCard' | 'plusSquare' | 'star' | 'search' | 'cart' | 'priceTag' | 'layer' | 'loading' | 'play' | 'lock' | 'user' | 'noUsers' | 'add' | 'check' | 'exclamation' | 'envelope' | 'userSuccess' | 'image' | 'imageSwap' | 'text' | 'color' | 'template' | 'redo' | 'undo' | 'copy' | 'drag' | 'delete' | 'crop' | 'alignLeft' | 'alignRight' | 'alignCenter' | 'allPanel' | 'fullBleed' | 'fullBleedLandscape' | 'fullBleedPortrait' | 'sliderHorizontal' | 'sliderVertical' | 'cropRotate' | 'frame' | 'cut' | 'wand' | 'layerAdd' | 'layerRemove' | 'layerDisabled' | 'signature' | 'shadows' | 'rotateLeft' | 'rotateRight' | 'colorPalette' | 'dropper' | 'textBox' | 'fontSize' | 'flipHorizontal' | 'flipVertical' | 'filter' | 'brightness' | 'aText' | 'frameWidth' | 'frameHeight' | 'layerUp' | 'layerDown' | 'capitalizedText' | 'uppercaseText' | 'lowercaseText' | 'fullBleedImage' | 'fullBleedText' | 'panelMode' | 'viewPanels' | 'rotate' | 'view' | 'replaceImage' | 'quotation' | 'facebook' | 'instagram' | 'twitter' | 'linkedIn' | 'youtube' | 'pinterest' | 'visible' | 'invisible' | 'elementIcon' | 'complete' | 'download' | 'closeCircle' | 'backgroundSettings' | 'upload' | 'stickers' | 'clearPanel' | 'viewCarousel' | 'viewSinglePanel' | 'editorText' | 'layout' | 'background' | 'save' | 'signaturePen' | 'size' | 'variable' | 'imageUpload' | 'squareCheck' | 'userTag' | 'map' | 'mapLocation' | 'location' | 'creditCard' | 'calendar' | 'home' | 'bag' | 'swap' | 'warning' | 'coaching';
14
+ export declare type IconType = 'catalog' | 'socLogo' | 'campaigns' | 'gift' | 'plus' | 'minus' | 'tenDoor' | 'rightChevron' | 'close' | 'award' | 'contact' | 'multipleUsers2x' | 'multipleUsers3x' | 'information' | 'hamburger' | 'leftChevron' | 'chevron' | 'information' | 'filterBy' | 'groups' | 'idCard' | 'plusSquare' | 'star' | 'search' | 'cart' | 'priceTag' | 'layer' | 'loading' | 'play' | 'lock' | 'user' | 'noUsers' | 'add' | 'check' | 'exclamation' | 'envelope' | 'userSuccess' | 'image' | 'imageSwap' | 'text' | 'color' | 'template' | 'redo' | 'undo' | 'copy' | 'drag' | 'delete' | 'crop' | 'alignLeft' | 'alignRight' | 'alignCenter' | 'allPanel' | 'fullBleed' | 'fullBleedLandscape' | 'fullBleedPortrait' | 'sliderHorizontal' | 'sliderVertical' | 'cropRotate' | 'frame' | 'cut' | 'wand' | 'layerAdd' | 'layerRemove' | 'layerDisabled' | 'signature' | 'shadows' | 'rotateLeft' | 'rotateRight' | 'colorPalette' | 'dropper' | 'textBox' | 'fontSize' | 'flipHorizontal' | 'flipVertical' | 'filter' | 'brightness' | 'aText' | 'frameWidth' | 'frameHeight' | 'layerUp' | 'layerDown' | 'capitalizedText' | 'uppercaseText' | 'lowercaseText' | 'fullBleedImage' | 'fullBleedText' | 'panelMode' | 'viewPanels' | 'rotate' | 'view' | 'replaceImage' | 'quotation' | 'facebook' | 'instagram' | 'twitter' | 'linkedIn' | 'youtube' | 'pinterest' | 'visible' | 'invisible' | 'elementIcon' | 'complete' | 'download' | 'closeCircle' | 'backgroundSettings' | 'upload' | 'stickers' | 'clearPanel' | 'viewCarousel' | 'viewSinglePanel' | 'editorText' | 'layout' | 'background' | 'save' | 'signaturePen' | 'size' | 'variable' | 'imageUpload' | 'squareCheck' | 'userTag' | 'map' | 'mapLocation' | 'location' | 'creditCard' | 'calendar' | 'home' | 'bag' | 'swap' | 'warning' | 'coaching' | 'promptingsIcon';
15
15
  export declare type IconProps = {
16
16
  name: IconType;
17
17
  } & Omit<SVGProps, 'entity'>;
@@ -2,10 +2,8 @@ import { FC } from 'react';
2
2
  export declare type BrandTypes = 'soc' | 'greenerStill' | 'bellaCadeaux' | 'promptingU' | 'blue42' | 'streamVA' | 'streamMarketing' | 'soc' | 'promptingsAcademy' | 'promptings';
3
3
  export declare type LogoColorTypes = 'white' | 'black' | 'color';
4
4
  export declare type SecodaryLogo = {
5
- logo: BrandTypes;
6
- type?: 'fullLogo' | 'icon';
7
- onClick?: () => void;
8
- href?: string;
5
+ width?: string;
6
+ fontSize?: string;
9
7
  };
10
8
  export declare type LogoProps = {
11
9
  brand: BrandTypes;
@@ -15,5 +13,6 @@ export declare type LogoProps = {
15
13
  href?: string;
16
14
  onClick?: () => void;
17
15
  secondaryLogo?: SecodaryLogo;
16
+ shouldShowParentBrand?: boolean;
18
17
  };
19
18
  export declare const Logo: FC<LogoProps>;
@@ -10,4 +10,4 @@ export declare type OverlayPropTypes = {
10
10
  children?: React.ReactNode;
11
11
  pinned?: PinnedType;
12
12
  } & HOCMotionProps;
13
- export declare const Overlay: ({ children, zIndex, animate, initial, exit, variants, transition, motionKey, position, pinned, }: OverlayPropTypes) => JSX.Element;
13
+ export declare const Overlay: ({ children, zIndex, animate, initial, exit, variants, transition, motionKey, position, pinned, ...rest }: OverlayPropTypes) => JSX.Element;
@@ -34,28 +34,28 @@ export declare const Option: React.ForwardRefExoticComponent<({
34
34
  alignment?: "left" | "center" | "right" | undefined;
35
35
  onClick?: ((id: number) => void) | undefined;
36
36
  isSelected: boolean;
37
- graphic?: "catalog" | "socLogo" | "campaigns" | "gift" | "plus" | "minus" | "tenDoor" | "rightChevron" | "close" | "award" | "contact" | "multipleUsers2x" | "multipleUsers3x" | "information" | "hamburger" | "leftChevron" | "chevron" | "filterBy" | "groups" | "idCard" | "plusSquare" | "star" | "search" | "cart" | "priceTag" | "layer" | "loading" | "play" | "lock" | "user" | "noUsers" | "add" | "check" | "exclamation" | "envelope" | "userSuccess" | "image" | "imageSwap" | "text" | "color" | "template" | "redo" | "undo" | "copy" | "drag" | "delete" | "crop" | "alignLeft" | "alignRight" | "alignCenter" | "allPanel" | "fullBleed" | "fullBleedLandscape" | "fullBleedPortrait" | "sliderHorizontal" | "sliderVertical" | "cropRotate" | "frame" | "cut" | "wand" | "layerAdd" | "layerRemove" | "layerDisabled" | "signature" | "shadows" | "rotateLeft" | "rotateRight" | "colorPalette" | "dropper" | "textBox" | "fontSize" | "flipHorizontal" | "flipVertical" | "filter" | "brightness" | "aText" | "frameWidth" | "frameHeight" | "layerUp" | "layerDown" | "capitalizedText" | "uppercaseText" | "lowercaseText" | "fullBleedImage" | "fullBleedText" | "panelMode" | "viewPanels" | "rotate" | "view" | "replaceImage" | "quotation" | "facebook" | "instagram" | "twitter" | "linkedIn" | "youtube" | "pinterest" | "visible" | "invisible" | "elementIcon" | "complete" | "download" | "closeCircle" | "backgroundSettings" | "upload" | "stickers" | "clearPanel" | "viewCarousel" | "viewSinglePanel" | "editorText" | "layout" | "background" | "save" | "signaturePen" | "size" | "variable" | "imageUpload" | "squareCheck" | "userTag" | "map" | "mapLocation" | "location" | "creditCard" | "calendar" | "home" | "bag" | "swap" | "warning" | "coaching" | undefined;
38
- icon?: "catalog" | "socLogo" | "campaigns" | "gift" | "plus" | "minus" | "tenDoor" | "rightChevron" | "close" | "award" | "contact" | "multipleUsers2x" | "multipleUsers3x" | "information" | "hamburger" | "leftChevron" | "chevron" | "filterBy" | "groups" | "idCard" | "plusSquare" | "star" | "search" | "cart" | "priceTag" | "layer" | "loading" | "play" | "lock" | "user" | "noUsers" | "add" | "check" | "exclamation" | "envelope" | "userSuccess" | "image" | "imageSwap" | "text" | "color" | "template" | "redo" | "undo" | "copy" | "drag" | "delete" | "crop" | "alignLeft" | "alignRight" | "alignCenter" | "allPanel" | "fullBleed" | "fullBleedLandscape" | "fullBleedPortrait" | "sliderHorizontal" | "sliderVertical" | "cropRotate" | "frame" | "cut" | "wand" | "layerAdd" | "layerRemove" | "layerDisabled" | "signature" | "shadows" | "rotateLeft" | "rotateRight" | "colorPalette" | "dropper" | "textBox" | "fontSize" | "flipHorizontal" | "flipVertical" | "filter" | "brightness" | "aText" | "frameWidth" | "frameHeight" | "layerUp" | "layerDown" | "capitalizedText" | "uppercaseText" | "lowercaseText" | "fullBleedImage" | "fullBleedText" | "panelMode" | "viewPanels" | "rotate" | "view" | "replaceImage" | "quotation" | "facebook" | "instagram" | "twitter" | "linkedIn" | "youtube" | "pinterest" | "visible" | "invisible" | "elementIcon" | "complete" | "download" | "closeCircle" | "backgroundSettings" | "upload" | "stickers" | "clearPanel" | "viewCarousel" | "viewSinglePanel" | "editorText" | "layout" | "background" | "save" | "signaturePen" | "size" | "variable" | "imageUpload" | "squareCheck" | "userTag" | "map" | "mapLocation" | "location" | "creditCard" | "calendar" | "home" | "bag" | "swap" | "warning" | "coaching" | undefined;
37
+ graphic?: "catalog" | "socLogo" | "campaigns" | "gift" | "plus" | "minus" | "tenDoor" | "rightChevron" | "close" | "award" | "contact" | "multipleUsers2x" | "multipleUsers3x" | "information" | "hamburger" | "leftChevron" | "chevron" | "filterBy" | "groups" | "idCard" | "plusSquare" | "star" | "search" | "cart" | "priceTag" | "layer" | "loading" | "play" | "lock" | "user" | "noUsers" | "add" | "check" | "exclamation" | "envelope" | "userSuccess" | "image" | "imageSwap" | "text" | "color" | "template" | "redo" | "undo" | "copy" | "drag" | "delete" | "crop" | "alignLeft" | "alignRight" | "alignCenter" | "allPanel" | "fullBleed" | "fullBleedLandscape" | "fullBleedPortrait" | "sliderHorizontal" | "sliderVertical" | "cropRotate" | "frame" | "cut" | "wand" | "layerAdd" | "layerRemove" | "layerDisabled" | "signature" | "shadows" | "rotateLeft" | "rotateRight" | "colorPalette" | "dropper" | "textBox" | "fontSize" | "flipHorizontal" | "flipVertical" | "filter" | "brightness" | "aText" | "frameWidth" | "frameHeight" | "layerUp" | "layerDown" | "capitalizedText" | "uppercaseText" | "lowercaseText" | "fullBleedImage" | "fullBleedText" | "panelMode" | "viewPanels" | "rotate" | "view" | "replaceImage" | "quotation" | "facebook" | "instagram" | "twitter" | "linkedIn" | "youtube" | "pinterest" | "visible" | "invisible" | "elementIcon" | "complete" | "download" | "closeCircle" | "backgroundSettings" | "upload" | "stickers" | "clearPanel" | "viewCarousel" | "viewSinglePanel" | "editorText" | "layout" | "background" | "save" | "signaturePen" | "size" | "variable" | "imageUpload" | "squareCheck" | "userTag" | "map" | "mapLocation" | "location" | "creditCard" | "calendar" | "home" | "bag" | "swap" | "warning" | "coaching" | "promptingsIcon" | undefined;
38
+ icon?: "catalog" | "socLogo" | "campaigns" | "gift" | "plus" | "minus" | "tenDoor" | "rightChevron" | "close" | "award" | "contact" | "multipleUsers2x" | "multipleUsers3x" | "information" | "hamburger" | "leftChevron" | "chevron" | "filterBy" | "groups" | "idCard" | "plusSquare" | "star" | "search" | "cart" | "priceTag" | "layer" | "loading" | "play" | "lock" | "user" | "noUsers" | "add" | "check" | "exclamation" | "envelope" | "userSuccess" | "image" | "imageSwap" | "text" | "color" | "template" | "redo" | "undo" | "copy" | "drag" | "delete" | "crop" | "alignLeft" | "alignRight" | "alignCenter" | "allPanel" | "fullBleed" | "fullBleedLandscape" | "fullBleedPortrait" | "sliderHorizontal" | "sliderVertical" | "cropRotate" | "frame" | "cut" | "wand" | "layerAdd" | "layerRemove" | "layerDisabled" | "signature" | "shadows" | "rotateLeft" | "rotateRight" | "colorPalette" | "dropper" | "textBox" | "fontSize" | "flipHorizontal" | "flipVertical" | "filter" | "brightness" | "aText" | "frameWidth" | "frameHeight" | "layerUp" | "layerDown" | "capitalizedText" | "uppercaseText" | "lowercaseText" | "fullBleedImage" | "fullBleedText" | "panelMode" | "viewPanels" | "rotate" | "view" | "replaceImage" | "quotation" | "facebook" | "instagram" | "twitter" | "linkedIn" | "youtube" | "pinterest" | "visible" | "invisible" | "elementIcon" | "complete" | "download" | "closeCircle" | "backgroundSettings" | "upload" | "stickers" | "clearPanel" | "viewCarousel" | "viewSinglePanel" | "editorText" | "layout" | "background" | "save" | "signaturePen" | "size" | "variable" | "imageUpload" | "squareCheck" | "userTag" | "map" | "mapLocation" | "location" | "creditCard" | "calendar" | "home" | "bag" | "swap" | "warning" | "coaching" | "promptingsIcon" | undefined;
39
39
  id: number;
40
40
  } & TextLabelProps & React.RefAttributes<HTMLDivElement>) | ({
41
41
  alignment?: "left" | "center" | "right" | undefined;
42
42
  onClick?: ((id: number) => void) | undefined;
43
43
  isSelected: boolean;
44
- graphic?: "catalog" | "socLogo" | "campaigns" | "gift" | "plus" | "minus" | "tenDoor" | "rightChevron" | "close" | "award" | "contact" | "multipleUsers2x" | "multipleUsers3x" | "information" | "hamburger" | "leftChevron" | "chevron" | "filterBy" | "groups" | "idCard" | "plusSquare" | "star" | "search" | "cart" | "priceTag" | "layer" | "loading" | "play" | "lock" | "user" | "noUsers" | "add" | "check" | "exclamation" | "envelope" | "userSuccess" | "image" | "imageSwap" | "text" | "color" | "template" | "redo" | "undo" | "copy" | "drag" | "delete" | "crop" | "alignLeft" | "alignRight" | "alignCenter" | "allPanel" | "fullBleed" | "fullBleedLandscape" | "fullBleedPortrait" | "sliderHorizontal" | "sliderVertical" | "cropRotate" | "frame" | "cut" | "wand" | "layerAdd" | "layerRemove" | "layerDisabled" | "signature" | "shadows" | "rotateLeft" | "rotateRight" | "colorPalette" | "dropper" | "textBox" | "fontSize" | "flipHorizontal" | "flipVertical" | "filter" | "brightness" | "aText" | "frameWidth" | "frameHeight" | "layerUp" | "layerDown" | "capitalizedText" | "uppercaseText" | "lowercaseText" | "fullBleedImage" | "fullBleedText" | "panelMode" | "viewPanels" | "rotate" | "view" | "replaceImage" | "quotation" | "facebook" | "instagram" | "twitter" | "linkedIn" | "youtube" | "pinterest" | "visible" | "invisible" | "elementIcon" | "complete" | "download" | "closeCircle" | "backgroundSettings" | "upload" | "stickers" | "clearPanel" | "viewCarousel" | "viewSinglePanel" | "editorText" | "layout" | "background" | "save" | "signaturePen" | "size" | "variable" | "imageUpload" | "squareCheck" | "userTag" | "map" | "mapLocation" | "location" | "creditCard" | "calendar" | "home" | "bag" | "swap" | "warning" | "coaching" | undefined;
45
- icon?: "catalog" | "socLogo" | "campaigns" | "gift" | "plus" | "minus" | "tenDoor" | "rightChevron" | "close" | "award" | "contact" | "multipleUsers2x" | "multipleUsers3x" | "information" | "hamburger" | "leftChevron" | "chevron" | "filterBy" | "groups" | "idCard" | "plusSquare" | "star" | "search" | "cart" | "priceTag" | "layer" | "loading" | "play" | "lock" | "user" | "noUsers" | "add" | "check" | "exclamation" | "envelope" | "userSuccess" | "image" | "imageSwap" | "text" | "color" | "template" | "redo" | "undo" | "copy" | "drag" | "delete" | "crop" | "alignLeft" | "alignRight" | "alignCenter" | "allPanel" | "fullBleed" | "fullBleedLandscape" | "fullBleedPortrait" | "sliderHorizontal" | "sliderVertical" | "cropRotate" | "frame" | "cut" | "wand" | "layerAdd" | "layerRemove" | "layerDisabled" | "signature" | "shadows" | "rotateLeft" | "rotateRight" | "colorPalette" | "dropper" | "textBox" | "fontSize" | "flipHorizontal" | "flipVertical" | "filter" | "brightness" | "aText" | "frameWidth" | "frameHeight" | "layerUp" | "layerDown" | "capitalizedText" | "uppercaseText" | "lowercaseText" | "fullBleedImage" | "fullBleedText" | "panelMode" | "viewPanels" | "rotate" | "view" | "replaceImage" | "quotation" | "facebook" | "instagram" | "twitter" | "linkedIn" | "youtube" | "pinterest" | "visible" | "invisible" | "elementIcon" | "complete" | "download" | "closeCircle" | "backgroundSettings" | "upload" | "stickers" | "clearPanel" | "viewCarousel" | "viewSinglePanel" | "editorText" | "layout" | "background" | "save" | "signaturePen" | "size" | "variable" | "imageUpload" | "squareCheck" | "userTag" | "map" | "mapLocation" | "location" | "creditCard" | "calendar" | "home" | "bag" | "swap" | "warning" | "coaching" | undefined;
44
+ graphic?: "catalog" | "socLogo" | "campaigns" | "gift" | "plus" | "minus" | "tenDoor" | "rightChevron" | "close" | "award" | "contact" | "multipleUsers2x" | "multipleUsers3x" | "information" | "hamburger" | "leftChevron" | "chevron" | "filterBy" | "groups" | "idCard" | "plusSquare" | "star" | "search" | "cart" | "priceTag" | "layer" | "loading" | "play" | "lock" | "user" | "noUsers" | "add" | "check" | "exclamation" | "envelope" | "userSuccess" | "image" | "imageSwap" | "text" | "color" | "template" | "redo" | "undo" | "copy" | "drag" | "delete" | "crop" | "alignLeft" | "alignRight" | "alignCenter" | "allPanel" | "fullBleed" | "fullBleedLandscape" | "fullBleedPortrait" | "sliderHorizontal" | "sliderVertical" | "cropRotate" | "frame" | "cut" | "wand" | "layerAdd" | "layerRemove" | "layerDisabled" | "signature" | "shadows" | "rotateLeft" | "rotateRight" | "colorPalette" | "dropper" | "textBox" | "fontSize" | "flipHorizontal" | "flipVertical" | "filter" | "brightness" | "aText" | "frameWidth" | "frameHeight" | "layerUp" | "layerDown" | "capitalizedText" | "uppercaseText" | "lowercaseText" | "fullBleedImage" | "fullBleedText" | "panelMode" | "viewPanels" | "rotate" | "view" | "replaceImage" | "quotation" | "facebook" | "instagram" | "twitter" | "linkedIn" | "youtube" | "pinterest" | "visible" | "invisible" | "elementIcon" | "complete" | "download" | "closeCircle" | "backgroundSettings" | "upload" | "stickers" | "clearPanel" | "viewCarousel" | "viewSinglePanel" | "editorText" | "layout" | "background" | "save" | "signaturePen" | "size" | "variable" | "imageUpload" | "squareCheck" | "userTag" | "map" | "mapLocation" | "location" | "creditCard" | "calendar" | "home" | "bag" | "swap" | "warning" | "coaching" | "promptingsIcon" | undefined;
45
+ icon?: "catalog" | "socLogo" | "campaigns" | "gift" | "plus" | "minus" | "tenDoor" | "rightChevron" | "close" | "award" | "contact" | "multipleUsers2x" | "multipleUsers3x" | "information" | "hamburger" | "leftChevron" | "chevron" | "filterBy" | "groups" | "idCard" | "plusSquare" | "star" | "search" | "cart" | "priceTag" | "layer" | "loading" | "play" | "lock" | "user" | "noUsers" | "add" | "check" | "exclamation" | "envelope" | "userSuccess" | "image" | "imageSwap" | "text" | "color" | "template" | "redo" | "undo" | "copy" | "drag" | "delete" | "crop" | "alignLeft" | "alignRight" | "alignCenter" | "allPanel" | "fullBleed" | "fullBleedLandscape" | "fullBleedPortrait" | "sliderHorizontal" | "sliderVertical" | "cropRotate" | "frame" | "cut" | "wand" | "layerAdd" | "layerRemove" | "layerDisabled" | "signature" | "shadows" | "rotateLeft" | "rotateRight" | "colorPalette" | "dropper" | "textBox" | "fontSize" | "flipHorizontal" | "flipVertical" | "filter" | "brightness" | "aText" | "frameWidth" | "frameHeight" | "layerUp" | "layerDown" | "capitalizedText" | "uppercaseText" | "lowercaseText" | "fullBleedImage" | "fullBleedText" | "panelMode" | "viewPanels" | "rotate" | "view" | "replaceImage" | "quotation" | "facebook" | "instagram" | "twitter" | "linkedIn" | "youtube" | "pinterest" | "visible" | "invisible" | "elementIcon" | "complete" | "download" | "closeCircle" | "backgroundSettings" | "upload" | "stickers" | "clearPanel" | "viewCarousel" | "viewSinglePanel" | "editorText" | "layout" | "background" | "save" | "signaturePen" | "size" | "variable" | "imageUpload" | "squareCheck" | "userTag" | "map" | "mapLocation" | "location" | "creditCard" | "calendar" | "home" | "bag" | "swap" | "warning" | "coaching" | "promptingsIcon" | undefined;
46
46
  id: number;
47
47
  } & IconLabelProps & React.RefAttributes<HTMLDivElement>) | ({
48
48
  alignment?: "left" | "center" | "right" | undefined;
49
49
  onClick?: ((id: number) => void) | undefined;
50
50
  isSelected: boolean;
51
- graphic?: "catalog" | "socLogo" | "campaigns" | "gift" | "plus" | "minus" | "tenDoor" | "rightChevron" | "close" | "award" | "contact" | "multipleUsers2x" | "multipleUsers3x" | "information" | "hamburger" | "leftChevron" | "chevron" | "filterBy" | "groups" | "idCard" | "plusSquare" | "star" | "search" | "cart" | "priceTag" | "layer" | "loading" | "play" | "lock" | "user" | "noUsers" | "add" | "check" | "exclamation" | "envelope" | "userSuccess" | "image" | "imageSwap" | "text" | "color" | "template" | "redo" | "undo" | "copy" | "drag" | "delete" | "crop" | "alignLeft" | "alignRight" | "alignCenter" | "allPanel" | "fullBleed" | "fullBleedLandscape" | "fullBleedPortrait" | "sliderHorizontal" | "sliderVertical" | "cropRotate" | "frame" | "cut" | "wand" | "layerAdd" | "layerRemove" | "layerDisabled" | "signature" | "shadows" | "rotateLeft" | "rotateRight" | "colorPalette" | "dropper" | "textBox" | "fontSize" | "flipHorizontal" | "flipVertical" | "filter" | "brightness" | "aText" | "frameWidth" | "frameHeight" | "layerUp" | "layerDown" | "capitalizedText" | "uppercaseText" | "lowercaseText" | "fullBleedImage" | "fullBleedText" | "panelMode" | "viewPanels" | "rotate" | "view" | "replaceImage" | "quotation" | "facebook" | "instagram" | "twitter" | "linkedIn" | "youtube" | "pinterest" | "visible" | "invisible" | "elementIcon" | "complete" | "download" | "closeCircle" | "backgroundSettings" | "upload" | "stickers" | "clearPanel" | "viewCarousel" | "viewSinglePanel" | "editorText" | "layout" | "background" | "save" | "signaturePen" | "size" | "variable" | "imageUpload" | "squareCheck" | "userTag" | "map" | "mapLocation" | "location" | "creditCard" | "calendar" | "home" | "bag" | "swap" | "warning" | "coaching" | undefined;
52
- icon?: "catalog" | "socLogo" | "campaigns" | "gift" | "plus" | "minus" | "tenDoor" | "rightChevron" | "close" | "award" | "contact" | "multipleUsers2x" | "multipleUsers3x" | "information" | "hamburger" | "leftChevron" | "chevron" | "filterBy" | "groups" | "idCard" | "plusSquare" | "star" | "search" | "cart" | "priceTag" | "layer" | "loading" | "play" | "lock" | "user" | "noUsers" | "add" | "check" | "exclamation" | "envelope" | "userSuccess" | "image" | "imageSwap" | "text" | "color" | "template" | "redo" | "undo" | "copy" | "drag" | "delete" | "crop" | "alignLeft" | "alignRight" | "alignCenter" | "allPanel" | "fullBleed" | "fullBleedLandscape" | "fullBleedPortrait" | "sliderHorizontal" | "sliderVertical" | "cropRotate" | "frame" | "cut" | "wand" | "layerAdd" | "layerRemove" | "layerDisabled" | "signature" | "shadows" | "rotateLeft" | "rotateRight" | "colorPalette" | "dropper" | "textBox" | "fontSize" | "flipHorizontal" | "flipVertical" | "filter" | "brightness" | "aText" | "frameWidth" | "frameHeight" | "layerUp" | "layerDown" | "capitalizedText" | "uppercaseText" | "lowercaseText" | "fullBleedImage" | "fullBleedText" | "panelMode" | "viewPanels" | "rotate" | "view" | "replaceImage" | "quotation" | "facebook" | "instagram" | "twitter" | "linkedIn" | "youtube" | "pinterest" | "visible" | "invisible" | "elementIcon" | "complete" | "download" | "closeCircle" | "backgroundSettings" | "upload" | "stickers" | "clearPanel" | "viewCarousel" | "viewSinglePanel" | "editorText" | "layout" | "background" | "save" | "signaturePen" | "size" | "variable" | "imageUpload" | "squareCheck" | "userTag" | "map" | "mapLocation" | "location" | "creditCard" | "calendar" | "home" | "bag" | "swap" | "warning" | "coaching" | undefined;
51
+ graphic?: "catalog" | "socLogo" | "campaigns" | "gift" | "plus" | "minus" | "tenDoor" | "rightChevron" | "close" | "award" | "contact" | "multipleUsers2x" | "multipleUsers3x" | "information" | "hamburger" | "leftChevron" | "chevron" | "filterBy" | "groups" | "idCard" | "plusSquare" | "star" | "search" | "cart" | "priceTag" | "layer" | "loading" | "play" | "lock" | "user" | "noUsers" | "add" | "check" | "exclamation" | "envelope" | "userSuccess" | "image" | "imageSwap" | "text" | "color" | "template" | "redo" | "undo" | "copy" | "drag" | "delete" | "crop" | "alignLeft" | "alignRight" | "alignCenter" | "allPanel" | "fullBleed" | "fullBleedLandscape" | "fullBleedPortrait" | "sliderHorizontal" | "sliderVertical" | "cropRotate" | "frame" | "cut" | "wand" | "layerAdd" | "layerRemove" | "layerDisabled" | "signature" | "shadows" | "rotateLeft" | "rotateRight" | "colorPalette" | "dropper" | "textBox" | "fontSize" | "flipHorizontal" | "flipVertical" | "filter" | "brightness" | "aText" | "frameWidth" | "frameHeight" | "layerUp" | "layerDown" | "capitalizedText" | "uppercaseText" | "lowercaseText" | "fullBleedImage" | "fullBleedText" | "panelMode" | "viewPanels" | "rotate" | "view" | "replaceImage" | "quotation" | "facebook" | "instagram" | "twitter" | "linkedIn" | "youtube" | "pinterest" | "visible" | "invisible" | "elementIcon" | "complete" | "download" | "closeCircle" | "backgroundSettings" | "upload" | "stickers" | "clearPanel" | "viewCarousel" | "viewSinglePanel" | "editorText" | "layout" | "background" | "save" | "signaturePen" | "size" | "variable" | "imageUpload" | "squareCheck" | "userTag" | "map" | "mapLocation" | "location" | "creditCard" | "calendar" | "home" | "bag" | "swap" | "warning" | "coaching" | "promptingsIcon" | undefined;
52
+ icon?: "catalog" | "socLogo" | "campaigns" | "gift" | "plus" | "minus" | "tenDoor" | "rightChevron" | "close" | "award" | "contact" | "multipleUsers2x" | "multipleUsers3x" | "information" | "hamburger" | "leftChevron" | "chevron" | "filterBy" | "groups" | "idCard" | "plusSquare" | "star" | "search" | "cart" | "priceTag" | "layer" | "loading" | "play" | "lock" | "user" | "noUsers" | "add" | "check" | "exclamation" | "envelope" | "userSuccess" | "image" | "imageSwap" | "text" | "color" | "template" | "redo" | "undo" | "copy" | "drag" | "delete" | "crop" | "alignLeft" | "alignRight" | "alignCenter" | "allPanel" | "fullBleed" | "fullBleedLandscape" | "fullBleedPortrait" | "sliderHorizontal" | "sliderVertical" | "cropRotate" | "frame" | "cut" | "wand" | "layerAdd" | "layerRemove" | "layerDisabled" | "signature" | "shadows" | "rotateLeft" | "rotateRight" | "colorPalette" | "dropper" | "textBox" | "fontSize" | "flipHorizontal" | "flipVertical" | "filter" | "brightness" | "aText" | "frameWidth" | "frameHeight" | "layerUp" | "layerDown" | "capitalizedText" | "uppercaseText" | "lowercaseText" | "fullBleedImage" | "fullBleedText" | "panelMode" | "viewPanels" | "rotate" | "view" | "replaceImage" | "quotation" | "facebook" | "instagram" | "twitter" | "linkedIn" | "youtube" | "pinterest" | "visible" | "invisible" | "elementIcon" | "complete" | "download" | "closeCircle" | "backgroundSettings" | "upload" | "stickers" | "clearPanel" | "viewCarousel" | "viewSinglePanel" | "editorText" | "layout" | "background" | "save" | "signaturePen" | "size" | "variable" | "imageUpload" | "squareCheck" | "userTag" | "map" | "mapLocation" | "location" | "creditCard" | "calendar" | "home" | "bag" | "swap" | "warning" | "coaching" | "promptingsIcon" | undefined;
53
53
  id: number;
54
54
  } & IconTextLabelProps & React.RefAttributes<HTMLDivElement>) | ({
55
55
  alignment?: "left" | "center" | "right" | undefined;
56
56
  onClick?: ((id: number) => void) | undefined;
57
57
  isSelected: boolean;
58
- graphic?: "catalog" | "socLogo" | "campaigns" | "gift" | "plus" | "minus" | "tenDoor" | "rightChevron" | "close" | "award" | "contact" | "multipleUsers2x" | "multipleUsers3x" | "information" | "hamburger" | "leftChevron" | "chevron" | "filterBy" | "groups" | "idCard" | "plusSquare" | "star" | "search" | "cart" | "priceTag" | "layer" | "loading" | "play" | "lock" | "user" | "noUsers" | "add" | "check" | "exclamation" | "envelope" | "userSuccess" | "image" | "imageSwap" | "text" | "color" | "template" | "redo" | "undo" | "copy" | "drag" | "delete" | "crop" | "alignLeft" | "alignRight" | "alignCenter" | "allPanel" | "fullBleed" | "fullBleedLandscape" | "fullBleedPortrait" | "sliderHorizontal" | "sliderVertical" | "cropRotate" | "frame" | "cut" | "wand" | "layerAdd" | "layerRemove" | "layerDisabled" | "signature" | "shadows" | "rotateLeft" | "rotateRight" | "colorPalette" | "dropper" | "textBox" | "fontSize" | "flipHorizontal" | "flipVertical" | "filter" | "brightness" | "aText" | "frameWidth" | "frameHeight" | "layerUp" | "layerDown" | "capitalizedText" | "uppercaseText" | "lowercaseText" | "fullBleedImage" | "fullBleedText" | "panelMode" | "viewPanels" | "rotate" | "view" | "replaceImage" | "quotation" | "facebook" | "instagram" | "twitter" | "linkedIn" | "youtube" | "pinterest" | "visible" | "invisible" | "elementIcon" | "complete" | "download" | "closeCircle" | "backgroundSettings" | "upload" | "stickers" | "clearPanel" | "viewCarousel" | "viewSinglePanel" | "editorText" | "layout" | "background" | "save" | "signaturePen" | "size" | "variable" | "imageUpload" | "squareCheck" | "userTag" | "map" | "mapLocation" | "location" | "creditCard" | "calendar" | "home" | "bag" | "swap" | "warning" | "coaching" | undefined;
59
- icon?: "catalog" | "socLogo" | "campaigns" | "gift" | "plus" | "minus" | "tenDoor" | "rightChevron" | "close" | "award" | "contact" | "multipleUsers2x" | "multipleUsers3x" | "information" | "hamburger" | "leftChevron" | "chevron" | "filterBy" | "groups" | "idCard" | "plusSquare" | "star" | "search" | "cart" | "priceTag" | "layer" | "loading" | "play" | "lock" | "user" | "noUsers" | "add" | "check" | "exclamation" | "envelope" | "userSuccess" | "image" | "imageSwap" | "text" | "color" | "template" | "redo" | "undo" | "copy" | "drag" | "delete" | "crop" | "alignLeft" | "alignRight" | "alignCenter" | "allPanel" | "fullBleed" | "fullBleedLandscape" | "fullBleedPortrait" | "sliderHorizontal" | "sliderVertical" | "cropRotate" | "frame" | "cut" | "wand" | "layerAdd" | "layerRemove" | "layerDisabled" | "signature" | "shadows" | "rotateLeft" | "rotateRight" | "colorPalette" | "dropper" | "textBox" | "fontSize" | "flipHorizontal" | "flipVertical" | "filter" | "brightness" | "aText" | "frameWidth" | "frameHeight" | "layerUp" | "layerDown" | "capitalizedText" | "uppercaseText" | "lowercaseText" | "fullBleedImage" | "fullBleedText" | "panelMode" | "viewPanels" | "rotate" | "view" | "replaceImage" | "quotation" | "facebook" | "instagram" | "twitter" | "linkedIn" | "youtube" | "pinterest" | "visible" | "invisible" | "elementIcon" | "complete" | "download" | "closeCircle" | "backgroundSettings" | "upload" | "stickers" | "clearPanel" | "viewCarousel" | "viewSinglePanel" | "editorText" | "layout" | "background" | "save" | "signaturePen" | "size" | "variable" | "imageUpload" | "squareCheck" | "userTag" | "map" | "mapLocation" | "location" | "creditCard" | "calendar" | "home" | "bag" | "swap" | "warning" | "coaching" | undefined;
58
+ graphic?: "catalog" | "socLogo" | "campaigns" | "gift" | "plus" | "minus" | "tenDoor" | "rightChevron" | "close" | "award" | "contact" | "multipleUsers2x" | "multipleUsers3x" | "information" | "hamburger" | "leftChevron" | "chevron" | "filterBy" | "groups" | "idCard" | "plusSquare" | "star" | "search" | "cart" | "priceTag" | "layer" | "loading" | "play" | "lock" | "user" | "noUsers" | "add" | "check" | "exclamation" | "envelope" | "userSuccess" | "image" | "imageSwap" | "text" | "color" | "template" | "redo" | "undo" | "copy" | "drag" | "delete" | "crop" | "alignLeft" | "alignRight" | "alignCenter" | "allPanel" | "fullBleed" | "fullBleedLandscape" | "fullBleedPortrait" | "sliderHorizontal" | "sliderVertical" | "cropRotate" | "frame" | "cut" | "wand" | "layerAdd" | "layerRemove" | "layerDisabled" | "signature" | "shadows" | "rotateLeft" | "rotateRight" | "colorPalette" | "dropper" | "textBox" | "fontSize" | "flipHorizontal" | "flipVertical" | "filter" | "brightness" | "aText" | "frameWidth" | "frameHeight" | "layerUp" | "layerDown" | "capitalizedText" | "uppercaseText" | "lowercaseText" | "fullBleedImage" | "fullBleedText" | "panelMode" | "viewPanels" | "rotate" | "view" | "replaceImage" | "quotation" | "facebook" | "instagram" | "twitter" | "linkedIn" | "youtube" | "pinterest" | "visible" | "invisible" | "elementIcon" | "complete" | "download" | "closeCircle" | "backgroundSettings" | "upload" | "stickers" | "clearPanel" | "viewCarousel" | "viewSinglePanel" | "editorText" | "layout" | "background" | "save" | "signaturePen" | "size" | "variable" | "imageUpload" | "squareCheck" | "userTag" | "map" | "mapLocation" | "location" | "creditCard" | "calendar" | "home" | "bag" | "swap" | "warning" | "coaching" | "promptingsIcon" | undefined;
59
+ icon?: "catalog" | "socLogo" | "campaigns" | "gift" | "plus" | "minus" | "tenDoor" | "rightChevron" | "close" | "award" | "contact" | "multipleUsers2x" | "multipleUsers3x" | "information" | "hamburger" | "leftChevron" | "chevron" | "filterBy" | "groups" | "idCard" | "plusSquare" | "star" | "search" | "cart" | "priceTag" | "layer" | "loading" | "play" | "lock" | "user" | "noUsers" | "add" | "check" | "exclamation" | "envelope" | "userSuccess" | "image" | "imageSwap" | "text" | "color" | "template" | "redo" | "undo" | "copy" | "drag" | "delete" | "crop" | "alignLeft" | "alignRight" | "alignCenter" | "allPanel" | "fullBleed" | "fullBleedLandscape" | "fullBleedPortrait" | "sliderHorizontal" | "sliderVertical" | "cropRotate" | "frame" | "cut" | "wand" | "layerAdd" | "layerRemove" | "layerDisabled" | "signature" | "shadows" | "rotateLeft" | "rotateRight" | "colorPalette" | "dropper" | "textBox" | "fontSize" | "flipHorizontal" | "flipVertical" | "filter" | "brightness" | "aText" | "frameWidth" | "frameHeight" | "layerUp" | "layerDown" | "capitalizedText" | "uppercaseText" | "lowercaseText" | "fullBleedImage" | "fullBleedText" | "panelMode" | "viewPanels" | "rotate" | "view" | "replaceImage" | "quotation" | "facebook" | "instagram" | "twitter" | "linkedIn" | "youtube" | "pinterest" | "visible" | "invisible" | "elementIcon" | "complete" | "download" | "closeCircle" | "backgroundSettings" | "upload" | "stickers" | "clearPanel" | "viewCarousel" | "viewSinglePanel" | "editorText" | "layout" | "background" | "save" | "signaturePen" | "size" | "variable" | "imageUpload" | "squareCheck" | "userTag" | "map" | "mapLocation" | "location" | "creditCard" | "calendar" | "home" | "bag" | "swap" | "warning" | "coaching" | "promptingsIcon" | undefined;
60
60
  id: number;
61
61
  } & ReactNodeLabelProps & React.RefAttributes<HTMLDivElement>)>;
@@ -1,6 +1,6 @@
1
1
  import React, { FC } from 'react';
2
2
  import { TextColor, IconType } from "../../exports/atoms";
3
- import { LogoProps } from "../../exports/molecules";
3
+ import { LogoProps, DropDownMenuProps } from "../../exports/molecules";
4
4
  export declare type Target = '_self' | '_blank' | '_parent' | '_top' | undefined;
5
5
  export declare type Link = {
6
6
  title: string;
@@ -28,5 +28,6 @@ export declare type StaticNavigationProps = {
28
28
  openValueOverride?: number;
29
29
  drawerOffset?: number;
30
30
  isFrosted?: boolean;
31
+ menuDropdown?: DropDownMenuProps;
31
32
  };
32
33
  export declare const StaticNavigation: FC<StaticNavigationProps>;
@@ -83,6 +83,7 @@ export declare const Pinterest: any;
83
83
  export declare const Play: any;
84
84
  export declare const Plus: any;
85
85
  export declare const PlusSquare: any;
86
+ export declare const PromptingsIcon: any;
86
87
  export declare const Quotation: any;
87
88
  export declare const Redo: any;
88
89
  export declare const ReplaceImage: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sendoutcards/quantum-design-ui",
3
- "version": "1.8.11",
3
+ "version": "1.8.13",
4
4
  "description": "UI component library for Quantum Design System",
5
5
  "module": "dist/index.es.js",
6
6
  "jsnext:main": "dist/index.es.js",