@uniformdev/design-system 19.3.0 → 19.5.1-alpha.22

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/esm/index.js CHANGED
@@ -37,21 +37,53 @@ var Theme = ({ disableReset = false }) => {
37
37
  /* secondary colours */
38
38
  --brand-secondary-1: #1f2b34; /* carbon */
39
39
  --brand-secondary-2: #ecf1f1; /* silver */
40
- --brand-secondary-3: #2ECDB4; /* maroon */
40
+ --brand-secondary-3: var(--purple-rain-500);
41
41
  --brand-secondary-5: #d9534f; /* brick red */
42
42
 
43
43
 
44
+ /* new colour range 4th May 2023 (may the fourth be with you) */
45
+ /* purple spectrum */
46
+ --purple-rain-100: #dccbff;
47
+ --purple-rain-200: #c2a5ff;
48
+ --purple-rain-300: #a87eff;
49
+ --purple-rain-400: #9068e3;
50
+ --purple-rain-500: #7953c6;
51
+ --purple-rain-600: #6340a9;
52
+
53
+ /* raspberry spectrum*/
54
+ --raspberry-beret-100: #ffbee1;
55
+ --raspberry-beret-200: #ff94ce;
56
+ --raspberry-beret-300: #ff6aba;
57
+ --raspberry-beret-400: #ff40a7;
58
+ --raspberry-beret-500: #f5168e;
59
+ --raspberry-beret-600: #f5168e;
60
+ --raspberry-beret-700: #f5168e;
61
+
62
+
44
63
  /* action colours */
45
64
  --primary-action-default: #0052ed; /* new blue */
46
65
  --primary-action-hover: #1264ff;
47
66
  --primary-action-active: #0043c2;
48
67
 
68
+ /* accent dark */
69
+ --accent-dark: var(--purple-rain-500);
70
+ --accent-dark-hover: var(--purple-rain-400);
71
+ --accent-dark-active: var(--purple-rain-600);
72
+
73
+ /* accent light */
74
+ --accent-light: var(--purple-rain-200);
75
+ --accent-light-hover: var(--purple-rain-100);
76
+ --accent-light-active: var(--purple-rain-300);
49
77
 
50
- /* accent primary */
51
- --accent-primary: #2ECDB4;
52
- --accent-primary-surface: #f7d4e4;
53
- --accent-primary-hover: #eb4793;
54
- --accent-primary-active: #e51a78;
78
+ /* accent alt dark */
79
+ --accent-alt-dark: var(--raspberry-beret-600);
80
+ --accent-alt-dark-hover: var(--raspberry-beret-500);
81
+ --accent-alt-dark-active: var(--raspberry-beret-700);
82
+
83
+ /* accent alt light */
84
+ --accent-alt-light: var(--raspberry-beret-200);
85
+ --accent-alt-light-hover: var(--raspberry-beret-100);
86
+ --accent-alt-light-active: var(--raspberry-beret-300);
55
87
 
56
88
  /* off brand */
57
89
  --input-border: rgba(31, 43, 52, 0.5);
@@ -1323,6 +1355,25 @@ var infoFilledIcon = GenIcon({
1323
1355
  ]
1324
1356
  });
1325
1357
  var settings = (props) => /* @__PURE__ */ jsx7(Icon, { ...props, icon: MdSettings });
1358
+ var queryStringIcon = GenIcon({
1359
+ tag: "svg",
1360
+ attr: {
1361
+ role: "img",
1362
+ viewBox: "0 0 24 24"
1363
+ },
1364
+ child: [
1365
+ {
1366
+ tag: "path",
1367
+ attr: {
1368
+ fill: "currentColor",
1369
+ fillRule: "evenodd",
1370
+ clipRule: "evenodd",
1371
+ d: "M6.23255 11.3213L6.32008 14.993H8.79253L8.85817 13.2128C9.86466 13.198 10.7472 13.0274 11.5057 12.701C12.2788 12.3746 12.8841 11.8776 13.3217 11.21C13.7739 10.5424 14 9.6968 14 8.67316C14 7.67918 13.7812 6.84098 13.3436 6.15855C12.9206 5.46129 12.3298 4.92721 11.5713 4.55633C10.8274 4.18544 9.96676 4 8.98945 4C7.9392 4 7.03483 4.20028 6.27631 4.60083C5.53239 5.00139 4.96351 5.5503 4.56966 6.24757C4.17582 6.94483 3.98619 7.73853 4.00078 8.62865H6.64828C6.64828 7.93139 6.85249 7.38248 7.26092 6.98192C7.66935 6.56653 8.23823 6.35883 8.96757 6.35883C9.66773 6.35883 10.2293 6.56653 10.6523 6.98192C11.0754 7.38248 11.2869 7.9388 11.2869 8.6509C11.2869 9.39267 11.1045 9.95642 10.7399 10.3421C10.3752 10.7279 9.88654 10.9875 9.27389 11.121C8.66125 11.2545 7.98296 11.3213 7.23904 11.3213H6.23255ZM6.29819 19.5104C6.63369 19.8368 7.05671 20 7.56724 20C8.07778 20 8.4935 19.8368 8.81441 19.5104C9.13532 19.1841 9.29577 18.7909 9.29577 18.331C9.29577 17.8563 9.13532 17.4557 8.81441 17.1293C8.4935 16.803 8.07778 16.6398 7.56724 16.6398C7.05671 16.6398 6.63369 16.803 6.29819 17.1293C5.97729 17.4557 5.81683 17.8563 5.81683 18.331C5.81683 18.7909 5.97729 19.1841 6.29819 19.5104ZM12 14V16.012H20V14H12ZM12 17.988V20H20V17.988H12Z"
1372
+ },
1373
+ child: []
1374
+ }
1375
+ ]
1376
+ });
1326
1377
  var customIcons = {
1327
1378
  "rectangle-rounded": rectangleRoundedIcon,
1328
1379
  card: cardIcon,
@@ -1334,7 +1385,8 @@ var customIcons = {
1334
1385
  "canvas-alert": canvasAlertIcon,
1335
1386
  warning: warningIcon,
1336
1387
  "info-filled": infoFilledIcon,
1337
- settings
1388
+ settings,
1389
+ "query-string": queryStringIcon
1338
1390
  };
1339
1391
 
1340
1392
  // src/components/AddListButton/AddListButton.styles.ts
@@ -1448,7 +1500,7 @@ var h6 = css9`
1448
1500
  font-size: var(--fs-base);
1449
1501
  `;
1450
1502
  var commonHeadingAttr = (withMarginBottom) => css9`
1451
- font-weight: var(--fw-bold);
1503
+ font-weight: var(--fw-regular);
1452
1504
  font-family: var(--ff-base);
1453
1505
  margin-top: 0;
1454
1506
  margin-bottom: ${withMarginBottom ? "var(--spacing-base)" : "0"};
@@ -1705,8 +1757,8 @@ var IntegrationHeaderSectionTitleGroup = css13`
1705
1757
  }
1706
1758
  `;
1707
1759
  var IntegrationHeaderSectionTitle = css13`
1708
- font-size: clamp(1.75rem, var(--fluid-font-base), 3.25rem);
1709
- font-weight: var(--fw-bold);
1760
+ font-size: clamp(1.75rem, var(--fluid-font-base), 2.25rem);
1761
+ font-weight: var(--fw-regular);
1710
1762
  margin: 0;
1711
1763
  `;
1712
1764
  var IntegrationHeaderSectionText = css13``;
@@ -10682,6 +10734,83 @@ var UniformLogo = ({
10682
10734
  }
10683
10735
  ) });
10684
10736
  };
10737
+ var UniformLogoLarge = ({ ...props }) => {
10738
+ return /* @__PURE__ */ jsxs10(
10739
+ "svg",
10740
+ {
10741
+ width: "250",
10742
+ height: "64",
10743
+ viewBox: "0 0 250 64",
10744
+ fill: "none",
10745
+ xmlns: "http://www.w3.org/2000/svg",
10746
+ ...props,
10747
+ children: [
10748
+ /* @__PURE__ */ jsxs10("g", { clipPath: "url(#clip0)", children: [
10749
+ /* @__PURE__ */ jsx19("path", { d: "M18.3804 0L0 10.6131V31.8393L18.3804 21.2262L36.7654 10.6131L18.3804 0Z", fill: "#7BB3FF" }),
10750
+ /* @__PURE__ */ jsx19(
10751
+ "path",
10752
+ {
10753
+ d: "M18.3804 42.4524V21.2262L0 31.8393V53.0655L18.3804 63.6786L36.7654 53.0655V31.8393L18.3804 42.4524Z",
10754
+ fill: "#498DFF"
10755
+ }
10756
+ ),
10757
+ /* @__PURE__ */ jsx19(
10758
+ "path",
10759
+ {
10760
+ d: "M36.7654 10.6132L18.3804 21.2263L36.7654 31.8394V53.0656L55.1458 42.4525V21.2263L36.7654 10.6132Z",
10761
+ fill: "#E61408"
10762
+ }
10763
+ ),
10764
+ /* @__PURE__ */ jsx19("path", { d: "M141.257 21.2081H134.598V45.5052H141.257V21.2081Z", fill: "currentColor" }),
10765
+ /* @__PURE__ */ jsx19("path", { d: "M141.496 10.0277H134.355V16.6874H141.496V10.0277Z", fill: "currentColor" }),
10766
+ /* @__PURE__ */ jsx19(
10767
+ "path",
10768
+ {
10769
+ d: "M151.073 13.2832V21.2082H146.602V26.8907H151.073V45.5053H157.733V26.8907H163.078V21.2082H157.733V15.7147H163.078V10.0277H156.711L151.073 13.2832Z",
10770
+ fill: "currentColor"
10771
+ }
10772
+ ),
10773
+ /* @__PURE__ */ jsx19(
10774
+ "path",
10775
+ {
10776
+ d: "M173.137 20.965L167.5 24.2205V42.4929L173.137 45.7484H183.489L189.127 42.4929V24.2205L183.489 20.965H173.137ZM182.467 40.0613H174.155V26.6475H182.467V40.0613Z",
10777
+ fill: "currentColor"
10778
+ }
10779
+ ),
10780
+ /* @__PURE__ */ jsx19(
10781
+ "path",
10782
+ {
10783
+ d: "M203.067 23.2074L199.605 21.2081H196.412V45.5052H203.072V26.8907H211.429V21.2081H206.53L203.067 23.2074Z",
10784
+ fill: "currentColor"
10785
+ }
10786
+ ),
10787
+ /* @__PURE__ */ jsx19(
10788
+ "path",
10789
+ {
10790
+ d: "M116.069 20.965L112.187 23.2074L108.301 20.965H105.685V45.5052H112.345V26.6475H120.653V45.5052H127.312V24.2205L121.675 20.965H116.069Z",
10791
+ fill: "currentColor"
10792
+ }
10793
+ ),
10794
+ /* @__PURE__ */ jsx19(
10795
+ "path",
10796
+ {
10797
+ d: "M91.7401 40.0614H83.4279V21.2081H76.7728V42.4929L82.4103 45.7484H88.2819L91.7311 43.7537L91.7356 43.7582L91.7401 43.7537V43.7582L95.1847 45.7484H98.3952V21.2081H91.7401V40.0614Z",
10798
+ fill: "currentColor"
10799
+ }
10800
+ ),
10801
+ /* @__PURE__ */ jsx19(
10802
+ "path",
10803
+ {
10804
+ d: "M244.813 20.965H240.148L235.582 23.5856L231.061 20.965H226.396L222.947 22.9552L219.498 20.965H216.288V45.5052H222.947V26.6475H230.044V45.5052H236.699V26.6475H243.795V45.5052H250.45V24.2205L244.813 20.965Z",
10805
+ fill: "currentColor"
10806
+ }
10807
+ )
10808
+ ] }),
10809
+ /* @__PURE__ */ jsx19("defs", { children: /* @__PURE__ */ jsx19("clipPath", { id: "clip0", children: /* @__PURE__ */ jsx19("rect", { width: "250", height: "63.6786", fill: "currentColor" }) }) })
10810
+ ]
10811
+ }
10812
+ );
10813
+ };
10685
10814
 
10686
10815
  // src/components/Button/Button.tsx
10687
10816
  import * as React5 from "react";
@@ -11673,16 +11802,16 @@ var ChipMedium = css32`
11673
11802
  }
11674
11803
  `;
11675
11804
  var ChipThemeAccentLight = css32`
11676
- background: var(--accent-primary-surface);
11805
+ background: var(--accent-light);
11677
11806
  color: var(--brand-secondary-1);
11678
11807
 
11679
11808
  &:hover,
11680
11809
  &:focus {
11681
- background: var(--accent-primary-hover);
11810
+ background: var(--accent-light-hover);
11682
11811
  }
11683
11812
 
11684
11813
  &:active {
11685
- background: var(--accent-primary-active);
11814
+ background: var(--accent-light-active);
11686
11815
  }
11687
11816
 
11688
11817
  &:hover,
@@ -11692,20 +11821,62 @@ var ChipThemeAccentLight = css32`
11692
11821
  }
11693
11822
 
11694
11823
  [data-icon] {
11695
- color: var(--accent-primary);
11824
+ color: var(--accent-light);
11696
11825
  }
11697
11826
  `;
11698
11827
  var ChipThemeAccentDark = css32`
11699
- background: var(--accent-primary);
11828
+ background: var(--accent-dark);
11829
+ color: var(--white);
11830
+
11831
+ &:hover,
11832
+ &:focus {
11833
+ background: var(--accent-dark-hover);
11834
+ }
11835
+
11836
+ &:active {
11837
+ background: var(--accent-dark-active);
11838
+ }
11839
+
11840
+ &:hover,
11841
+ &:focus,
11842
+ &:active {
11843
+ color: var(--white);
11844
+ }
11845
+ `;
11846
+ var ChipAltThemeAccentLight = css32`
11847
+ background: var(--accent-alt-light);
11848
+ color: var(--brand-secondary-1);
11849
+
11850
+ &:hover,
11851
+ &:focus {
11852
+ background: var(--accent-alt-light-hover);
11853
+ }
11854
+
11855
+ &:active {
11856
+ background: var(--accent-alt-light-active);
11857
+ }
11858
+
11859
+ &:hover,
11860
+ &:focus,
11861
+ &:active {
11862
+ color: var(--white);
11863
+ }
11864
+
11865
+ [data-icon] {
11866
+ color: var(--accent-alt-light);
11867
+ }
11868
+ `;
11869
+ var ChipAltThemeAccentDark = css32`
11870
+ background: var(--accent-alt-dark);
11700
11871
  color: var(--white);
11701
11872
 
11702
11873
  &:hover,
11703
11874
  &:focus {
11704
- background: var(--accent-primary-hover);
11875
+ background: var(--accent-alt-dark-hover);
11705
11876
  }
11706
11877
 
11707
11878
  &:active {
11708
- background: var(--accent-primary-active);
11879
+ background: var(--accent-alt-dark-active);
11709
11880
  }
11710
11881
 
11711
11882
  &:hover,
@@ -11761,6 +11932,8 @@ var Chip = ({
11761
11932
  const chipTheme = {
11762
11933
  "accent-light": ChipThemeAccentLight,
11763
11934
  "accent-dark": ChipThemeAccentDark,
11935
+ "accent-alt-light": ChipAltThemeAccentLight,
11936
+ "accent-alt-dark": ChipAltThemeAccentDark,
11764
11937
  "neutral-light": ChipThemeNeutralLight,
11765
11938
  "neutral-dark": ChipThemeNeutralDark
11766
11939
  };
@@ -13936,6 +14109,9 @@ var IntegrationModalIcon = ({ icon, name, ...imgProps }) => {
13936
14109
  iconSrc = iconUrl.href;
13937
14110
  }
13938
14111
  } catch (e) {
14112
+ if (icon == null ? void 0 : icon.startsWith("/")) {
14113
+ iconSrc = icon;
14114
+ }
13939
14115
  }
13940
14116
  }
13941
14117
  return /* @__PURE__ */ jsxs46("div", { css: IntegrationModalIconContainer, children: [
@@ -13954,7 +14130,7 @@ var IntegrationModalIcon = ({ icon, name, ...imgProps }) => {
13954
14130
  /* @__PURE__ */ jsx71("stop", { offset: "1", stopColor: "#B3EFE4" })
13955
14131
  ] }) })
13956
14132
  ] }),
13957
- CompIcon ? /* @__PURE__ */ jsx71(CompIcon, { role: "img", css: IntegrationModalImage, ...imgProps }) : /* @__PURE__ */ jsx71(
14133
+ CompIcon ? /* @__PURE__ */ jsx71(CompIcon, { role: "img", css: IntegrationModalImage, ...imgProps }) : iconSrc ? /* @__PURE__ */ jsx71(
13958
14134
  "img",
13959
14135
  {
13960
14136
  src: iconSrc,
@@ -13963,7 +14139,7 @@ var IntegrationModalIcon = ({ icon, name, ...imgProps }) => {
13963
14139
  css: IntegrationModalImage,
13964
14140
  ...imgProps
13965
14141
  }
13966
- )
14142
+ ) : null
13967
14143
  ] });
13968
14144
  };
13969
14145
 
@@ -14467,7 +14643,8 @@ var linkParameterControls = css61`
14467
14643
  `;
14468
14644
  var linkParameterInput = (withExternalLinkIcon) => css61`
14469
14645
  padding-right: calc(
14470
- ${withExternalLinkIcon ? "var(--spacing-2xl)" : "var(--spacing-xl)"} + var(--spacing-base)
14646
+ ${withExternalLinkIcon ? "calc(var(--spacing-lg) * 2 + var(--spacing-xs))" : "var(--spacing-xl)"} +
14647
+ var(--spacing-base)
14471
14648
  );
14472
14649
  `;
14473
14650
  var linkParameterIcon = css61`
@@ -15982,6 +16159,7 @@ export {
15982
16159
  TwoColumnLayout,
15983
16160
  UniformBadge,
15984
16161
  UniformLogo,
16162
+ UniformLogoLarge,
15985
16163
  VerticalRhythm,
15986
16164
  WarningMessage,
15987
16165
  borderTopIcon,
@@ -16022,6 +16200,7 @@ export {
16022
16200
  macifyShortcut,
16023
16201
  mq,
16024
16202
  numberInput,
16203
+ queryStringIcon,
16025
16204
  rectangleRoundedIcon,
16026
16205
  replaceUnderscoreInString,
16027
16206
  ripple,
package/dist/index.d.ts CHANGED
@@ -20236,6 +20236,7 @@ declare const UniformBadge: ({ theme, ...props }: React__default.SVGAttributes<S
20236
20236
  * @param props - sets react svg element attribute props
20237
20237
  * @example <UniformLogo theme="light" /> */
20238
20238
  declare const UniformLogo: ({ theme, ...props }: UniformLogoProps & React.SVGAttributes<SVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
20239
+ declare const UniformLogoLarge: ({ ...props }: React.SVGAttributes<SVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
20239
20240
 
20240
20241
  /** Button themes that are available to use with our brand */
20241
20242
  type ButtonThemeProps$1 = 'primary' | 'secondary' | 'destructive' | 'tertiary' | 'unimportant' | 'ghost' | 'ghostDestructive' | 'primaryInvert' | 'secondaryInvert' | 'ghostUnimportant';
@@ -20378,7 +20379,7 @@ declare const CardContainer: ({ bgColor, padding, withLastColumn, children, ...p
20378
20379
  declare const LoadingCardSkeleton: () => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
20379
20380
 
20380
20381
  type ChipSizeProp = 'xs' | 'sm' | 'md';
20381
- type ChipThemeProps = 'accent-light' | 'accent-dark' | 'neutral-light' | 'neutral-dark';
20382
+ type ChipThemeProps = 'accent-light' | 'accent-dark' | 'accent-alt-light' | 'accent-alt-dark' | 'neutral-light' | 'neutral-dark';
20382
20383
  type ChipProps = {
20383
20384
  icon?: IconType$1;
20384
20385
  text: string;
@@ -20527,7 +20528,7 @@ interface DrawerRendererItemProps extends React__default.HTMLAttributes<HTMLDivE
20527
20528
  onOverlayClick?: () => void;
20528
20529
  }
20529
20530
 
20530
- declare const iconNames: readonly ["add-r", "add", "airplane", "alarm", "album", "align-bottom", "align-center", "align-left", "align-middle", "align-right", "align-top", "anchor", "apple-watch", "arrange-back", "arrange-front", "arrow-align-h", "arrow-align-v", "arrow-bottom-left-o", "arrow-bottom-left-r", "arrow-bottom-left", "arrow-bottom-right-o", "arrow-bottom-right-r", "arrow-bottom-right", "arrow-down-o", "arrow-down-r", "arrow-down", "arrow-left-o", "arrow-left-r", "arrow-left", "arrow-long-down-c", "arrow-long-down-e", "arrow-long-down-l", "arrow-long-down-r", "arrow-long-down", "arrow-long-left-c", "arrow-long-left-e", "arrow-long-left-l", "arrow-long-left-r", "arrow-long-left", "arrow-long-right-c", "arrow-long-right-e", "arrow-long-right-l", "arrow-long-right-r", "arrow-long-right", "arrow-long-up-c", "arrow-long-up-e", "arrow-long-up-l", "arrow-long-up-r", "arrow-long-up", "arrow-right-o", "arrow-right-r", "arrow-right", "arrow-top-left-o", "arrow-top-left-r", "arrow-top-left", "arrow-top-right-o", "arrow-top-right-r", "arrow-top-right", "arrow-up-o", "arrow-up-r", "arrow-up", "arrows-breake-h", "arrows-breake-v", "arrows-exchange-alt-v", "arrows-exchange-alt", "arrows-exchange-v", "arrows-exchange", "arrows-expand-down-left", "arrows-expand-down-right", "arrows-expand-left-alt", "arrows-expand-left", "arrows-expand-right-alt", "arrows-expand-right", "arrows-expand-up-left", "arrows-expand-up-right", "arrows-h-alt", "arrows-h", "arrows-merge-alt-h", "arrows-merge-alt-v", "arrows-scroll-h", "arrows-scroll-v", "arrows-shrink-h", "arrows-shrink-v", "arrows-v-alt", "arrows-v", "assign", "asterisk", "attachment", "attribution", "awards", "backspace", "band-aid", "battery-empty", "battery-full", "battery", "bee", "bell", "bitbucket", "block", "board", "bolt", "bookmark", "border-all", "border-bottom", "border-left", "border-right", "border-style-dashed", "border-style-dotted", "border-style-solid", "border-top", "bot", "bowl", "box", "boy", "briefcase", "browse", "browser", "brush", "bulb", "c-plus-plus", "calculator", "calendar-dates", "calendar-due", "calendar-next", "calendar-today", "calendar-two", "calendar", "calibrate", "camera", "cap", "captions", "card-clubs", "card-diamonds", "card-hearts", "card-spades", "carousel", "cast", "chart", "check-o", "check-r", "check", "chevron-double-down-o", "chevron-double-down-r", "chevron-double-down", "chevron-double-left-o", "chevron-double-left-r", "chevron-double-left", "chevron-double-right-o", "chevron-double-right-r", "chevron-double-right", "chevron-double-up-o", "chevron-double-up-r", "chevron-double-up", "chevron-down-o", "chevron-down-r", "chevron-down", "chevron-left-o", "chevron-left-r", "chevron-left", "chevron-right-o", "chevron-right-r", "chevron-right", "chevron-up-o", "chevron-up-r", "chevron-up", "clapper-board", "clipboard", "close-o", "close-r", "close", "cloud", "code-slash", "code", "coffee", "collage", "color-bucket", "color-picker", "comment", "community", "components", "compress-left", "compress-right", "compress-v", "compress", "controller", "copy", "copyright", "corner-double-down-left", "corner-double-down-right", "corner-double-left-down", "corner-double-left-up", "corner-double-right-down", "corner-double-right-up", "corner-double-up-left", "corner-double-up-right", "corner-down-left", "corner-down-right", "corner-left-down", "corner-left-up", "corner-right-down", "corner-right-up", "corner-up-left", "corner-up-right", "credit-card", "crop", "cross", "crown", "danger", "dark-mode", "data", "database", "debug", "desktop", "details-less", "details-more", "dialpad", "dice-1", "dice-2", "dice-3", "dice-4", "dice-5", "dice-6", "disc", "display-flex", "display-fullwidth", "display-grid", "display-spacing", "distribute-horizontal", "distribute-vertical", "dock-bottom", "dock-left", "dock-right", "dock-window", "dollar", "drive", "drop-invert", "drop-opacity", "drop", "duplicate", "edit-black-point", "edit-contrast", "edit-exposure", "edit-fade", "edit-flip-h", "edit-flip-v", "edit-highlight", "edit-markup", "edit-mask", "edit-noise", "edit-shadows", "edit-straight", "edit-unmask", "eject", "enter", "erase", "ereader", "ericsson", "ethernet", "euro", "expand", "export", "extension-add", "extension-alt", "extension-remove", "extension", "external", "eye-alt", "eye", "feed", "file-add", "file-document", "file-remove", "file", "film", "filters", "flag-alt", "flag", "folder-add", "folder-remove", "folder", "font-height", "font-spacing", "format-bold", "format-center", "format-color", "format-heading", "format-indent-decrease", "format-indent-increase", "format-italic", "format-justify", "format-left", "format-line-height", "format-right", "format-separator", "format-slash", "format-strike", "format-text", "format-underline", "format-uppercase", "games", "gender-female", "gender-male", "ghost-character", "gift", "girl", "git-branch", "git-commit", "git-fork", "git-pull", "glass-alt", "glass", "globe-alt", "globe", "gym", "hashtag", "headset", "heart", "home-alt", "home-screen", "home", "icecream", "image", "import", "inbox", "infinity", "info", "inpicture", "insert-after-o", "insert-after-r", "insert-after", "insert-before-o", "insert-before-r", "insert-before", "insights", "internal", "key", "keyboard", "keyhole", "laptop", "layout-grid-small", "layout-grid", "layout-list", "layout-pin", "link", "list-tree", "list", "live-photo", "loadbar-alt", "loadbar-doc", "loadbar-sound", "loadbar", "lock-unlock", "lock", "log-in", "log-off", "log-out", "loupe", "magnet", "mail-forward", "mail-open", "mail-reply", "mail", "math-divide", "math-equal", "math-minus", "math-percent", "math-plus", "maximize-alt", "maximize", "media-live", "media-podcast", "menu-boxed", "menu-cake", "menu-cheese", "menu-grid-o", "menu-grid-r", "menu-hotdog", "menu-left-alt", "menu-left", "menu-motion", "menu-oreos", "menu-right-alt", "menu-right", "menu-round", "menu", "merge-horizontal", "merge-vertical", "mic", "mini-player", "minimize-alt", "minimize", "modem", "moon", "more-alt", "more-o", "more-r", "more-vertical-alt", "more-vertical-o", "more-vertical-r", "more-vertical", "more", "mouse", "move-down", "move-left", "move-right", "move-task", "move-up", "music-note", "music-speaker", "music", "nametag", "notes", "notifications", "options", "organisation", "password", "path-back", "path-crop", "path-divide", "path-exclude", "path-front", "path-intersect", "path-outline", "path-trim", "path-unite", "pen", "pentagon-bottom-left", "pentagon-bottom-right", "pentagon-down", "pentagon-left", "pentagon-right", "pentagon-top-left", "pentagon-top-right", "pentagon-up", "performance", "phone", "photoscan", "piano", "pill", "pin-alt", "pin-bottom", "pin-top", "pin", "play-backwards", "play-button-o", "play-button-r", "play-button", "play-forwards", "play-list-add", "play-list-check", "play-list-remove", "play-list-search", "play-list", "play-pause-o", "play-pause-r", "play-pause", "play-stop-o", "play-stop-r", "play-stop", "play-track-next-o", "play-track-next-r", "play-track-next", "play-track-prev-o", "play-track-prev-r", "play-track-prev", "plug", "polaroid", "poll", "presentation", "printer", "profile", "pull-clear", "push-chevron-down-o", "push-chevron-down-r", "push-chevron-down", "push-chevron-left-o", "push-chevron-left-r", "push-chevron-left", "push-chevron-right-o", "push-chevron-right-r", "push-chevron-right", "push-chevron-up-o", "push-chevron-up-r", "push-chevron-up", "push-down", "push-left", "push-right", "push-up", "qr", "quote-o", "quote", "radio-check", "radio-checked", "ratio", "read", "readme", "record", "redo", "remote", "remove-r", "remove", "rename", "reorder", "repeat", "ring", "row-first", "row-last", "ruler", "sand-clock", "scan", "screen-mirror", "screen-shot", "screen-wide", "screen", "scroll-h", "scroll-v", "search-found", "search-loading", "search", "select-o", "select-r", "select", "server", "shape-circle", "shape-half-circle", "shape-hexagon", "shape-rhombus", "shape-square", "shape-triangle", "shape-zigzag", "share", "shield", "shopping-bag", "shopping-cart", "shortcut", "sidebar-open", "sidebar-right", "sidebar", "signal", "size", "sleep", "smart-home-boiler", "smart-home-cooker", "smart-home-heat", "smart-home-light", "smart-home-refrigerator", "smart-home-wash-machine", "smartphone-chip", "smartphone-ram", "smartphone-shake", "smartphone", "smile-mouth-open", "smile-neutral", "smile-no-mouth", "smile-none", "smile-sad", "smile-upside", "smile", "software-download", "software-upload", "sort-az", "sort-za", "space-between-v", "space-between", "spinner-alt", "spinner-two-alt", "spinner-two", "spinner", "stack", "stopwatch", "stories", "style", "sun", "support", "swap-vertical", "swap", "sweden", "swiss", "sync", "tab", "tag", "tap-double", "tap-single", "template", "tennis", "terminal", "terrain", "thermometer", "thermostat", "tikcode", "time", "timelapse", "timer", "today", "toggle-off", "toggle-on", "toggle-square-off", "toggle-square", "toolbar-bottom", "toolbar-left", "toolbar-right", "toolbar-top", "toolbox", "touchpad", "track", "transcript", "trash-empty", "trash", "tree", "trees", "trending-down", "trending", "trophy", "tv", "ui-kit", "umbrella", "unavailable", "unblock", "undo", "unsplash", "usb-c", "usb", "user-add", "user-list", "user-remove", "user", "view-cols", "view-comfortable", "view-day", "view-grid", "view-list", "view-month", "view-split", "vinyl", "voicemail-o", "voicemail-r", "voicemail", "volume", "webcam", "website", "work-alt", "yinyang", "zoom-in", "zoom-out", "rectangle-rounded", "card", "image-text", "border-top", "full-width-screen", "text-input", "number-input", "canvas-alert", "warning", "settings"];
20531
+ declare const iconNames: readonly ["add-r", "add", "airplane", "alarm", "album", "align-bottom", "align-center", "align-left", "align-middle", "align-right", "align-top", "anchor", "apple-watch", "arrange-back", "arrange-front", "arrow-align-h", "arrow-align-v", "arrow-bottom-left-o", "arrow-bottom-left-r", "arrow-bottom-left", "arrow-bottom-right-o", "arrow-bottom-right-r", "arrow-bottom-right", "arrow-down-o", "arrow-down-r", "arrow-down", "arrow-left-o", "arrow-left-r", "arrow-left", "arrow-long-down-c", "arrow-long-down-e", "arrow-long-down-l", "arrow-long-down-r", "arrow-long-down", "arrow-long-left-c", "arrow-long-left-e", "arrow-long-left-l", "arrow-long-left-r", "arrow-long-left", "arrow-long-right-c", "arrow-long-right-e", "arrow-long-right-l", "arrow-long-right-r", "arrow-long-right", "arrow-long-up-c", "arrow-long-up-e", "arrow-long-up-l", "arrow-long-up-r", "arrow-long-up", "arrow-right-o", "arrow-right-r", "arrow-right", "arrow-top-left-o", "arrow-top-left-r", "arrow-top-left", "arrow-top-right-o", "arrow-top-right-r", "arrow-top-right", "arrow-up-o", "arrow-up-r", "arrow-up", "arrows-breake-h", "arrows-breake-v", "arrows-exchange-alt-v", "arrows-exchange-alt", "arrows-exchange-v", "arrows-exchange", "arrows-expand-down-left", "arrows-expand-down-right", "arrows-expand-left-alt", "arrows-expand-left", "arrows-expand-right-alt", "arrows-expand-right", "arrows-expand-up-left", "arrows-expand-up-right", "arrows-h-alt", "arrows-h", "arrows-merge-alt-h", "arrows-merge-alt-v", "arrows-scroll-h", "arrows-scroll-v", "arrows-shrink-h", "arrows-shrink-v", "arrows-v-alt", "arrows-v", "assign", "asterisk", "attachment", "attribution", "awards", "backspace", "band-aid", "battery-empty", "battery-full", "battery", "bee", "bell", "bitbucket", "block", "board", "bolt", "bookmark", "border-all", "border-bottom", "border-left", "border-right", "border-style-dashed", "border-style-dotted", "border-style-solid", "border-top", "bot", "bowl", "box", "boy", "briefcase", "browse", "browser", "brush", "bulb", "c-plus-plus", "calculator", "calendar-dates", "calendar-due", "calendar-next", "calendar-today", "calendar-two", "calendar", "calibrate", "camera", "cap", "captions", "card-clubs", "card-diamonds", "card-hearts", "card-spades", "carousel", "cast", "chart", "check-o", "check-r", "check", "chevron-double-down-o", "chevron-double-down-r", "chevron-double-down", "chevron-double-left-o", "chevron-double-left-r", "chevron-double-left", "chevron-double-right-o", "chevron-double-right-r", "chevron-double-right", "chevron-double-up-o", "chevron-double-up-r", "chevron-double-up", "chevron-down-o", "chevron-down-r", "chevron-down", "chevron-left-o", "chevron-left-r", "chevron-left", "chevron-right-o", "chevron-right-r", "chevron-right", "chevron-up-o", "chevron-up-r", "chevron-up", "clapper-board", "clipboard", "close-o", "close-r", "close", "cloud", "code-slash", "code", "coffee", "collage", "color-bucket", "color-picker", "comment", "community", "components", "compress-left", "compress-right", "compress-v", "compress", "controller", "copy", "copyright", "corner-double-down-left", "corner-double-down-right", "corner-double-left-down", "corner-double-left-up", "corner-double-right-down", "corner-double-right-up", "corner-double-up-left", "corner-double-up-right", "corner-down-left", "corner-down-right", "corner-left-down", "corner-left-up", "corner-right-down", "corner-right-up", "corner-up-left", "corner-up-right", "credit-card", "crop", "cross", "crown", "danger", "dark-mode", "data", "database", "debug", "desktop", "details-less", "details-more", "dialpad", "dice-1", "dice-2", "dice-3", "dice-4", "dice-5", "dice-6", "disc", "display-flex", "display-fullwidth", "display-grid", "display-spacing", "distribute-horizontal", "distribute-vertical", "dock-bottom", "dock-left", "dock-right", "dock-window", "dollar", "drive", "drop-invert", "drop-opacity", "drop", "duplicate", "edit-black-point", "edit-contrast", "edit-exposure", "edit-fade", "edit-flip-h", "edit-flip-v", "edit-highlight", "edit-markup", "edit-mask", "edit-noise", "edit-shadows", "edit-straight", "edit-unmask", "eject", "enter", "erase", "ereader", "ericsson", "ethernet", "euro", "expand", "export", "extension-add", "extension-alt", "extension-remove", "extension", "external", "eye-alt", "eye", "feed", "file-add", "file-document", "file-remove", "file", "film", "filters", "flag-alt", "flag", "folder-add", "folder-remove", "folder", "font-height", "font-spacing", "format-bold", "format-center", "format-color", "format-heading", "format-indent-decrease", "format-indent-increase", "format-italic", "format-justify", "format-left", "format-line-height", "format-right", "format-separator", "format-slash", "format-strike", "format-text", "format-underline", "format-uppercase", "games", "gender-female", "gender-male", "ghost-character", "gift", "girl", "git-branch", "git-commit", "git-fork", "git-pull", "glass-alt", "glass", "globe-alt", "globe", "gym", "hashtag", "headset", "heart", "home-alt", "home-screen", "home", "icecream", "image", "import", "inbox", "infinity", "info", "inpicture", "insert-after-o", "insert-after-r", "insert-after", "insert-before-o", "insert-before-r", "insert-before", "insights", "internal", "key", "keyboard", "keyhole", "laptop", "layout-grid-small", "layout-grid", "layout-list", "layout-pin", "link", "list-tree", "list", "live-photo", "loadbar-alt", "loadbar-doc", "loadbar-sound", "loadbar", "lock-unlock", "lock", "log-in", "log-off", "log-out", "loupe", "magnet", "mail-forward", "mail-open", "mail-reply", "mail", "math-divide", "math-equal", "math-minus", "math-percent", "math-plus", "maximize-alt", "maximize", "media-live", "media-podcast", "menu-boxed", "menu-cake", "menu-cheese", "menu-grid-o", "menu-grid-r", "menu-hotdog", "menu-left-alt", "menu-left", "menu-motion", "menu-oreos", "menu-right-alt", "menu-right", "menu-round", "menu", "merge-horizontal", "merge-vertical", "mic", "mini-player", "minimize-alt", "minimize", "modem", "moon", "more-alt", "more-o", "more-r", "more-vertical-alt", "more-vertical-o", "more-vertical-r", "more-vertical", "more", "mouse", "move-down", "move-left", "move-right", "move-task", "move-up", "music-note", "music-speaker", "music", "nametag", "notes", "notifications", "options", "organisation", "password", "path-back", "path-crop", "path-divide", "path-exclude", "path-front", "path-intersect", "path-outline", "path-trim", "path-unite", "pen", "pentagon-bottom-left", "pentagon-bottom-right", "pentagon-down", "pentagon-left", "pentagon-right", "pentagon-top-left", "pentagon-top-right", "pentagon-up", "performance", "phone", "photoscan", "piano", "pill", "pin-alt", "pin-bottom", "pin-top", "pin", "play-backwards", "play-button-o", "play-button-r", "play-button", "play-forwards", "play-list-add", "play-list-check", "play-list-remove", "play-list-search", "play-list", "play-pause-o", "play-pause-r", "play-pause", "play-stop-o", "play-stop-r", "play-stop", "play-track-next-o", "play-track-next-r", "play-track-next", "play-track-prev-o", "play-track-prev-r", "play-track-prev", "plug", "polaroid", "poll", "presentation", "printer", "profile", "pull-clear", "push-chevron-down-o", "push-chevron-down-r", "push-chevron-down", "push-chevron-left-o", "push-chevron-left-r", "push-chevron-left", "push-chevron-right-o", "push-chevron-right-r", "push-chevron-right", "push-chevron-up-o", "push-chevron-up-r", "push-chevron-up", "push-down", "push-left", "push-right", "push-up", "qr", "quote-o", "quote", "radio-check", "radio-checked", "ratio", "read", "readme", "record", "redo", "remote", "remove-r", "remove", "rename", "reorder", "repeat", "ring", "row-first", "row-last", "ruler", "sand-clock", "scan", "screen-mirror", "screen-shot", "screen-wide", "screen", "scroll-h", "scroll-v", "search-found", "search-loading", "search", "select-o", "select-r", "select", "server", "shape-circle", "shape-half-circle", "shape-hexagon", "shape-rhombus", "shape-square", "shape-triangle", "shape-zigzag", "share", "shield", "shopping-bag", "shopping-cart", "shortcut", "sidebar-open", "sidebar-right", "sidebar", "signal", "size", "sleep", "smart-home-boiler", "smart-home-cooker", "smart-home-heat", "smart-home-light", "smart-home-refrigerator", "smart-home-wash-machine", "smartphone-chip", "smartphone-ram", "smartphone-shake", "smartphone", "smile-mouth-open", "smile-neutral", "smile-no-mouth", "smile-none", "smile-sad", "smile-upside", "smile", "software-download", "software-upload", "sort-az", "sort-za", "space-between-v", "space-between", "spinner-alt", "spinner-two-alt", "spinner-two", "spinner", "stack", "stopwatch", "stories", "style", "sun", "support", "swap-vertical", "swap", "sweden", "swiss", "sync", "tab", "tag", "tap-double", "tap-single", "template", "tennis", "terminal", "terrain", "thermometer", "thermostat", "tikcode", "time", "timelapse", "timer", "today", "toggle-off", "toggle-on", "toggle-square-off", "toggle-square", "toolbar-bottom", "toolbar-left", "toolbar-right", "toolbar-top", "toolbox", "touchpad", "track", "transcript", "trash-empty", "trash", "tree", "trees", "trending-down", "trending", "trophy", "tv", "ui-kit", "umbrella", "unavailable", "unblock", "undo", "unsplash", "usb-c", "usb", "user-add", "user-list", "user-remove", "user", "view-cols", "view-comfortable", "view-day", "view-grid", "view-list", "view-month", "view-split", "vinyl", "voicemail-o", "voicemail-r", "voicemail", "volume", "webcam", "website", "work-alt", "yinyang", "zoom-in", "zoom-out", "rectangle-rounded", "card", "image-text", "border-top", "full-width-screen", "text-input", "number-input", "canvas-alert", "warning", "settings", "query-string"];
20531
20532
  /** A list of available icon names that can be used with the Uniform brand */
20532
20533
  type IconName = (typeof iconNames)[number];
20533
20534
 
@@ -20562,6 +20563,7 @@ declare const canvasAlertIcon: (props: react_icons.IconBaseProps) => JSX.Element
20562
20563
  declare const warningIcon: (props: react_icons.IconBaseProps) => JSX.Element;
20563
20564
  declare const infoFilledIcon: (props: react_icons.IconBaseProps) => JSX.Element;
20564
20565
  declare const settings: (props: IconProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
20566
+ declare const queryStringIcon: (props: react_icons.IconBaseProps) => JSX.Element;
20565
20567
  declare const customIcons: {
20566
20568
  'rectangle-rounded': (props: react_icons.IconBaseProps) => JSX.Element;
20567
20569
  card: (props: react_icons.IconBaseProps) => JSX.Element;
@@ -20574,6 +20576,7 @@ declare const customIcons: {
20574
20576
  warning: (props: react_icons.IconBaseProps) => JSX.Element;
20575
20577
  'info-filled': (props: react_icons.IconBaseProps) => JSX.Element;
20576
20578
  settings: (props: IconProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
20579
+ 'query-string': (props: react_icons.IconBaseProps) => JSX.Element;
20577
20580
  };
20578
20581
 
20579
20582
  type IconsMap = Record<string, IconType$1>;
@@ -22054,4 +22057,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
22054
22057
  };
22055
22058
  declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22056
22059
 
22057
- export { ActionButtonsProps, AddButton, AddButtonProps, AddListButton, AddListButtonProps, AddListButtonThemeProps, AnimationFile, AnimationFileProps, ArrowPositionProps, Badge, BadgeProps, BadgeSizeProps, BadgeThemeProps, BadgeThemeStyleProps, Banner, BannerProps, BannerType, BoxHeightProps, BreakpointSize, BreakpointsMap, Button, ButtonProps, ButtonSizeProps, ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, ButtonWithMenuProps, Callout, CalloutProps, CalloutType, Caption, CaptionProps, Card, CardContainer, CardContainerBgColorProps, CardContainerProps, CardProps, CardTitle, CardTitleProps, CheckboxWithInfo, CheckboxWithInforProps, ChildFunction, Chip, ChipProps, ComboBoxGroupBase, ConnectToDataElementButton, ConnectToDataElementButtonProps, Container, ContainerProps, Counter, CounterProps, CreateTeamIntegrationTile, CreateTeamIntegrationTileProps, DashedBox, DashedBoxProps, Details, DetailsProps, DismissibleChipAction, Drawer, DrawerContextValue, DrawerItem, DrawerProps, DrawerProvider, DrawerRenderer, DrawerRendererItemProps, DrawerRendererProps, EditTeamIntegrationTile, EditTeamIntegrationTileProps, ErrorMessage, ErrorMessageProps, Fieldset, FieldsetProps, Heading, HeadingProps, HexModalBackground, HorizontalRhythm, HorizontalRhythmProps, Icon, IconColor, IconName, IconProps, IconType, IconsProvider, InfoMessage, InfoMessageProps, InlineAlert, InlineAlertProps, Input, InputComboBox, InputComboBoxOption, InputComboBoxProps, InputInlineSelect, InputInlineSelectOption, InputInlineSelectProps, InputKeywordSearch, InputKeywordSearchProps, InputProps, InputSelect, InputSelectProps, InputToggle, InputToggleProps, IntegrationComingSoon, IntegrationComingSoonProps, IntegrationHeaderSection, IntegrationHeaderSectionProps, IntegrationLoadingTile, IntegrationLoadingTileProps, IntegrationModalHeader, IntegrationModalHeaderProps, IntegrationModalIcon, IntegrationModalIconProps, IntegrationTile, IntegrationTileProps, JsonEditor, JsonEditorProps, Label, LabelProps, Legend, LegendProps, LevelProps, LimitsBar, LimitsBarProps, Link, LinkColorProps, LinkList, LinkListProps, LinkManagerWithRefType, LinkProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, LoadingIconProps, LoadingIndicator, LoadingOverlay, LoadingOverlayProps, Menu, MenuContext, MenuGroup, MenuGroupProps, MenuItem, MenuItemProps, MenuItemSeparator, MenuItemTextThemeProps, MenuProps, PageHeaderSection, PageHeaderSectionProps, Paragraph, ParagraphProps, ParameterDataConnectButtonProps, ParameterDataResource, ParameterDrawerHeader, ParameterDrawerHeaderProps, ParameterGroup, ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImageProps, ParameterInput, ParameterInputInner, ParameterInputProps, ParameterLabel, ParameterLabelProps, ParameterLink, ParameterLinkInner, ParameterLinkProps, ParameterMenuButton, ParameterMenuButtonProps, ParameterNameAndPublicIdInput, ParameterNameAndPublicIdInputProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, ParameterRichTextProps, ParameterSelect, ParameterSelectInner, ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, ParameterShellProps, ParameterTextarea, ParameterTextareaInner, ParameterTextareaProps, ParameterToggle, ParameterToggleInner, ParameterToggleProps, Popover, PopoverProps, ProgressList, ProgressListItem, ProgressListItemProps, ProgressListProps, RegisterDrawerProps, ResolveIcon, ResolveIconProps, ScrollableItemProps, ScrollableList, ScrollableListContainerProps, ScrollableListInputItem, ScrollableListItem, ScrollableListItemProps, ScrollableListProps, SegmentedControl, SegmentedControlOption, SegmentedControlProps, ShortcutContext, ShortcutRevealer, Skeleton, SkeletonProps, StatusBullet, StatusBulletProps, StatusTypeProps, Switch, SwitchProps, TabButton, TabButtonGroup, TabButtonProps, TabContent, TabContentProps, Table, TableBody, TableBodyProps, TableCellData, TableCellDataProps, TableCellHead, TableCellHeadProps, TableFoot, TableFootProps, TableHead, TableHeadProps, TableProps, TableRow, TableRowProps, Tabs, TabsProps, TextAlignProps, Textarea, TextareaProps, Theme, ThemeProps, TileContainer, TileContainerProps, Tooltip, TooltipProps, TwoColumnLayout, TwoColumnLayoutProps, UniformBadge, UniformLogo, UniformLogoProps, UseShortcutOptions, VerticalRhythm, VerticalRhythmProps, WarningMessage, WarningMessageProps, borderTopIcon, breakpoints, button, buttonDestructive, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonTertiary, buttonUnimportant, canvasAlertIcon, cardIcon, cq, customIcons, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isMacLike, labelText, loader as loaderAnimationData, macifyShortcut, mq, numberInput, rectangleRoundedIcon, replaceUnderscoreInString, ripple, scrollbarStyles, settings, skeletonLoading, slideInTtb, spinner as spinnerAnimationData, supports, textInput, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawerRenderer, useCurrentTab, useDrawer, useIconContext, useMenuContext, useOutsideClick, useParameterShell, useShortcut, warningIcon };
22060
+ export { ActionButtonsProps, AddButton, AddButtonProps, AddListButton, AddListButtonProps, AddListButtonThemeProps, AnimationFile, AnimationFileProps, ArrowPositionProps, Badge, BadgeProps, BadgeSizeProps, BadgeThemeProps, BadgeThemeStyleProps, Banner, BannerProps, BannerType, BoxHeightProps, BreakpointSize, BreakpointsMap, Button, ButtonProps, ButtonSizeProps, ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, ButtonWithMenuProps, Callout, CalloutProps, CalloutType, Caption, CaptionProps, Card, CardContainer, CardContainerBgColorProps, CardContainerProps, CardProps, CardTitle, CardTitleProps, CheckboxWithInfo, CheckboxWithInforProps, ChildFunction, Chip, ChipProps, ComboBoxGroupBase, ConnectToDataElementButton, ConnectToDataElementButtonProps, Container, ContainerProps, Counter, CounterProps, CreateTeamIntegrationTile, CreateTeamIntegrationTileProps, DashedBox, DashedBoxProps, Details, DetailsProps, DismissibleChipAction, Drawer, DrawerContextValue, DrawerItem, DrawerProps, DrawerProvider, DrawerRenderer, DrawerRendererItemProps, DrawerRendererProps, EditTeamIntegrationTile, EditTeamIntegrationTileProps, ErrorMessage, ErrorMessageProps, Fieldset, FieldsetProps, Heading, HeadingProps, HexModalBackground, HorizontalRhythm, HorizontalRhythmProps, Icon, IconColor, IconName, IconProps, IconType, IconsProvider, InfoMessage, InfoMessageProps, InlineAlert, InlineAlertProps, Input, InputComboBox, InputComboBoxOption, InputComboBoxProps, InputInlineSelect, InputInlineSelectOption, InputInlineSelectProps, InputKeywordSearch, InputKeywordSearchProps, InputProps, InputSelect, InputSelectProps, InputToggle, InputToggleProps, IntegrationComingSoon, IntegrationComingSoonProps, IntegrationHeaderSection, IntegrationHeaderSectionProps, IntegrationLoadingTile, IntegrationLoadingTileProps, IntegrationModalHeader, IntegrationModalHeaderProps, IntegrationModalIcon, IntegrationModalIconProps, IntegrationTile, IntegrationTileProps, JsonEditor, JsonEditorProps, Label, LabelProps, Legend, LegendProps, LevelProps, LimitsBar, LimitsBarProps, Link, LinkColorProps, LinkList, LinkListProps, LinkManagerWithRefType, LinkProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, LoadingIconProps, LoadingIndicator, LoadingOverlay, LoadingOverlayProps, Menu, MenuContext, MenuGroup, MenuGroupProps, MenuItem, MenuItemProps, MenuItemSeparator, MenuItemTextThemeProps, MenuProps, PageHeaderSection, PageHeaderSectionProps, Paragraph, ParagraphProps, ParameterDataConnectButtonProps, ParameterDataResource, ParameterDrawerHeader, ParameterDrawerHeaderProps, ParameterGroup, ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImageProps, ParameterInput, ParameterInputInner, ParameterInputProps, ParameterLabel, ParameterLabelProps, ParameterLink, ParameterLinkInner, ParameterLinkProps, ParameterMenuButton, ParameterMenuButtonProps, ParameterNameAndPublicIdInput, ParameterNameAndPublicIdInputProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, ParameterRichTextProps, ParameterSelect, ParameterSelectInner, ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, ParameterShellProps, ParameterTextarea, ParameterTextareaInner, ParameterTextareaProps, ParameterToggle, ParameterToggleInner, ParameterToggleProps, Popover, PopoverProps, ProgressList, ProgressListItem, ProgressListItemProps, ProgressListProps, RegisterDrawerProps, ResolveIcon, ResolveIconProps, ScrollableItemProps, ScrollableList, ScrollableListContainerProps, ScrollableListInputItem, ScrollableListItem, ScrollableListItemProps, ScrollableListProps, SegmentedControl, SegmentedControlOption, SegmentedControlProps, ShortcutContext, ShortcutRevealer, Skeleton, SkeletonProps, StatusBullet, StatusBulletProps, StatusTypeProps, Switch, SwitchProps, TabButton, TabButtonGroup, TabButtonProps, TabContent, TabContentProps, Table, TableBody, TableBodyProps, TableCellData, TableCellDataProps, TableCellHead, TableCellHeadProps, TableFoot, TableFootProps, TableHead, TableHeadProps, TableProps, TableRow, TableRowProps, Tabs, TabsProps, TextAlignProps, Textarea, TextareaProps, Theme, ThemeProps, TileContainer, TileContainerProps, Tooltip, TooltipProps, TwoColumnLayout, TwoColumnLayoutProps, UniformBadge, UniformLogo, UniformLogoLarge, UniformLogoProps, UseShortcutOptions, VerticalRhythm, VerticalRhythmProps, WarningMessage, WarningMessageProps, borderTopIcon, breakpoints, button, buttonDestructive, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonTertiary, buttonUnimportant, canvasAlertIcon, cardIcon, cq, customIcons, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isMacLike, labelText, loader as loaderAnimationData, macifyShortcut, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, ripple, scrollbarStyles, settings, skeletonLoading, slideInTtb, spinner as spinnerAnimationData, supports, textInput, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawerRenderer, useCurrentTab, useDrawer, useIconContext, useMenuContext, useOutsideClick, useParameterShell, useShortcut, warningIcon };
package/dist/index.js CHANGED
@@ -149,6 +149,7 @@ __export(src_exports, {
149
149
  TwoColumnLayout: () => TwoColumnLayout,
150
150
  UniformBadge: () => UniformBadge,
151
151
  UniformLogo: () => UniformLogo,
152
+ UniformLogoLarge: () => UniformLogoLarge,
152
153
  VerticalRhythm: () => VerticalRhythm,
153
154
  WarningMessage: () => WarningMessage,
154
155
  borderTopIcon: () => borderTopIcon,
@@ -189,6 +190,7 @@ __export(src_exports, {
189
190
  macifyShortcut: () => macifyShortcut,
190
191
  mq: () => mq,
191
192
  numberInput: () => numberInput,
193
+ queryStringIcon: () => queryStringIcon,
192
194
  rectangleRoundedIcon: () => rectangleRoundedIcon,
193
195
  replaceUnderscoreInString: () => replaceUnderscoreInString,
194
196
  ripple: () => ripple,
@@ -252,21 +254,53 @@ var Theme = ({ disableReset = false }) => {
252
254
  /* secondary colours */
253
255
  --brand-secondary-1: #1f2b34; /* carbon */
254
256
  --brand-secondary-2: #ecf1f1; /* silver */
255
- --brand-secondary-3: #2ECDB4; /* maroon */
257
+ --brand-secondary-3: var(--purple-rain-500);
256
258
  --brand-secondary-5: #d9534f; /* brick red */
257
259
 
258
260
 
261
+ /* new colour range 4th May 2023 (may the fourth be with you) */
262
+ /* purple spectrum */
263
+ --purple-rain-100: #dccbff;
264
+ --purple-rain-200: #c2a5ff;
265
+ --purple-rain-300: #a87eff;
266
+ --purple-rain-400: #9068e3;
267
+ --purple-rain-500: #7953c6;
268
+ --purple-rain-600: #6340a9;
269
+
270
+ /* raspberry spectrum*/
271
+ --raspberry-beret-100: #ffbee1;
272
+ --raspberry-beret-200: #ff94ce;
273
+ --raspberry-beret-300: #ff6aba;
274
+ --raspberry-beret-400: #ff40a7;
275
+ --raspberry-beret-500: #f5168e;
276
+ --raspberry-beret-600: #f5168e;
277
+ --raspberry-beret-700: #f5168e;
278
+
279
+
259
280
  /* action colours */
260
281
  --primary-action-default: #0052ed; /* new blue */
261
282
  --primary-action-hover: #1264ff;
262
283
  --primary-action-active: #0043c2;
263
284
 
285
+ /* accent dark */
286
+ --accent-dark: var(--purple-rain-500);
287
+ --accent-dark-hover: var(--purple-rain-400);
288
+ --accent-dark-active: var(--purple-rain-600);
289
+
290
+ /* accent light */
291
+ --accent-light: var(--purple-rain-200);
292
+ --accent-light-hover: var(--purple-rain-100);
293
+ --accent-light-active: var(--purple-rain-300);
264
294
 
265
- /* accent primary */
266
- --accent-primary: #2ECDB4;
267
- --accent-primary-surface: #f7d4e4;
268
- --accent-primary-hover: #eb4793;
269
- --accent-primary-active: #e51a78;
295
+ /* accent alt dark */
296
+ --accent-alt-dark: var(--raspberry-beret-600);
297
+ --accent-alt-dark-hover: var(--raspberry-beret-500);
298
+ --accent-alt-dark-active: var(--raspberry-beret-700);
299
+
300
+ /* accent alt light */
301
+ --accent-alt-light: var(--raspberry-beret-200);
302
+ --accent-alt-light-hover: var(--raspberry-beret-100);
303
+ --accent-alt-light-active: var(--raspberry-beret-300);
270
304
 
271
305
  /* off brand */
272
306
  --input-border: rgba(31, 43, 52, 0.5);
@@ -1538,6 +1572,25 @@ var infoFilledIcon = (0, import_react_icons.GenIcon)({
1538
1572
  ]
1539
1573
  });
1540
1574
  var settings = (props) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(Icon, { ...props, icon: import_md.MdSettings });
1575
+ var queryStringIcon = (0, import_react_icons.GenIcon)({
1576
+ tag: "svg",
1577
+ attr: {
1578
+ role: "img",
1579
+ viewBox: "0 0 24 24"
1580
+ },
1581
+ child: [
1582
+ {
1583
+ tag: "path",
1584
+ attr: {
1585
+ fill: "currentColor",
1586
+ fillRule: "evenodd",
1587
+ clipRule: "evenodd",
1588
+ d: "M6.23255 11.3213L6.32008 14.993H8.79253L8.85817 13.2128C9.86466 13.198 10.7472 13.0274 11.5057 12.701C12.2788 12.3746 12.8841 11.8776 13.3217 11.21C13.7739 10.5424 14 9.6968 14 8.67316C14 7.67918 13.7812 6.84098 13.3436 6.15855C12.9206 5.46129 12.3298 4.92721 11.5713 4.55633C10.8274 4.18544 9.96676 4 8.98945 4C7.9392 4 7.03483 4.20028 6.27631 4.60083C5.53239 5.00139 4.96351 5.5503 4.56966 6.24757C4.17582 6.94483 3.98619 7.73853 4.00078 8.62865H6.64828C6.64828 7.93139 6.85249 7.38248 7.26092 6.98192C7.66935 6.56653 8.23823 6.35883 8.96757 6.35883C9.66773 6.35883 10.2293 6.56653 10.6523 6.98192C11.0754 7.38248 11.2869 7.9388 11.2869 8.6509C11.2869 9.39267 11.1045 9.95642 10.7399 10.3421C10.3752 10.7279 9.88654 10.9875 9.27389 11.121C8.66125 11.2545 7.98296 11.3213 7.23904 11.3213H6.23255ZM6.29819 19.5104C6.63369 19.8368 7.05671 20 7.56724 20C8.07778 20 8.4935 19.8368 8.81441 19.5104C9.13532 19.1841 9.29577 18.7909 9.29577 18.331C9.29577 17.8563 9.13532 17.4557 8.81441 17.1293C8.4935 16.803 8.07778 16.6398 7.56724 16.6398C7.05671 16.6398 6.63369 16.803 6.29819 17.1293C5.97729 17.4557 5.81683 17.8563 5.81683 18.331C5.81683 18.7909 5.97729 19.1841 6.29819 19.5104ZM12 14V16.012H20V14H12ZM12 17.988V20H20V17.988H12Z"
1589
+ },
1590
+ child: []
1591
+ }
1592
+ ]
1593
+ });
1541
1594
  var customIcons = {
1542
1595
  "rectangle-rounded": rectangleRoundedIcon,
1543
1596
  card: cardIcon,
@@ -1549,7 +1602,8 @@ var customIcons = {
1549
1602
  "canvas-alert": canvasAlertIcon,
1550
1603
  warning: warningIcon,
1551
1604
  "info-filled": infoFilledIcon,
1552
- settings
1605
+ settings,
1606
+ "query-string": queryStringIcon
1553
1607
  };
1554
1608
 
1555
1609
  // src/components/AddListButton/AddListButton.styles.ts
@@ -1663,7 +1717,7 @@ var h6 = import_react15.css`
1663
1717
  font-size: var(--fs-base);
1664
1718
  `;
1665
1719
  var commonHeadingAttr = (withMarginBottom) => import_react15.css`
1666
- font-weight: var(--fw-bold);
1720
+ font-weight: var(--fw-regular);
1667
1721
  font-family: var(--ff-base);
1668
1722
  margin-top: 0;
1669
1723
  margin-bottom: ${withMarginBottom ? "var(--spacing-base)" : "0"};
@@ -1920,8 +1974,8 @@ var IntegrationHeaderSectionTitleGroup = import_react20.css`
1920
1974
  }
1921
1975
  `;
1922
1976
  var IntegrationHeaderSectionTitle = import_react20.css`
1923
- font-size: clamp(1.75rem, var(--fluid-font-base), 3.25rem);
1924
- font-weight: var(--fw-bold);
1977
+ font-size: clamp(1.75rem, var(--fluid-font-base), 2.25rem);
1978
+ font-weight: var(--fw-regular);
1925
1979
  margin: 0;
1926
1980
  `;
1927
1981
  var IntegrationHeaderSectionText = import_react20.css``;
@@ -10897,6 +10951,83 @@ var UniformLogo = ({
10897
10951
  }
10898
10952
  ) });
10899
10953
  };
10954
+ var UniformLogoLarge = ({ ...props }) => {
10955
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
10956
+ "svg",
10957
+ {
10958
+ width: "250",
10959
+ height: "64",
10960
+ viewBox: "0 0 250 64",
10961
+ fill: "none",
10962
+ xmlns: "http://www.w3.org/2000/svg",
10963
+ ...props,
10964
+ children: [
10965
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("g", { clipPath: "url(#clip0)", children: [
10966
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "M18.3804 0L0 10.6131V31.8393L18.3804 21.2262L36.7654 10.6131L18.3804 0Z", fill: "#7BB3FF" }),
10967
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
10968
+ "path",
10969
+ {
10970
+ d: "M18.3804 42.4524V21.2262L0 31.8393V53.0655L18.3804 63.6786L36.7654 53.0655V31.8393L18.3804 42.4524Z",
10971
+ fill: "#498DFF"
10972
+ }
10973
+ ),
10974
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
10975
+ "path",
10976
+ {
10977
+ d: "M36.7654 10.6132L18.3804 21.2263L36.7654 31.8394V53.0656L55.1458 42.4525V21.2263L36.7654 10.6132Z",
10978
+ fill: "#E61408"
10979
+ }
10980
+ ),
10981
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "M141.257 21.2081H134.598V45.5052H141.257V21.2081Z", fill: "currentColor" }),
10982
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("path", { d: "M141.496 10.0277H134.355V16.6874H141.496V10.0277Z", fill: "currentColor" }),
10983
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
10984
+ "path",
10985
+ {
10986
+ d: "M151.073 13.2832V21.2082H146.602V26.8907H151.073V45.5053H157.733V26.8907H163.078V21.2082H157.733V15.7147H163.078V10.0277H156.711L151.073 13.2832Z",
10987
+ fill: "currentColor"
10988
+ }
10989
+ ),
10990
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
10991
+ "path",
10992
+ {
10993
+ d: "M173.137 20.965L167.5 24.2205V42.4929L173.137 45.7484H183.489L189.127 42.4929V24.2205L183.489 20.965H173.137ZM182.467 40.0613H174.155V26.6475H182.467V40.0613Z",
10994
+ fill: "currentColor"
10995
+ }
10996
+ ),
10997
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
10998
+ "path",
10999
+ {
11000
+ d: "M203.067 23.2074L199.605 21.2081H196.412V45.5052H203.072V26.8907H211.429V21.2081H206.53L203.067 23.2074Z",
11001
+ fill: "currentColor"
11002
+ }
11003
+ ),
11004
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
11005
+ "path",
11006
+ {
11007
+ d: "M116.069 20.965L112.187 23.2074L108.301 20.965H105.685V45.5052H112.345V26.6475H120.653V45.5052H127.312V24.2205L121.675 20.965H116.069Z",
11008
+ fill: "currentColor"
11009
+ }
11010
+ ),
11011
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
11012
+ "path",
11013
+ {
11014
+ d: "M91.7401 40.0614H83.4279V21.2081H76.7728V42.4929L82.4103 45.7484H88.2819L91.7311 43.7537L91.7356 43.7582L91.7401 43.7537V43.7582L95.1847 45.7484H98.3952V21.2081H91.7401V40.0614Z",
11015
+ fill: "currentColor"
11016
+ }
11017
+ ),
11018
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
11019
+ "path",
11020
+ {
11021
+ d: "M244.813 20.965H240.148L235.582 23.5856L231.061 20.965H226.396L222.947 22.9552L219.498 20.965H216.288V45.5052H222.947V26.6475H230.044V45.5052H236.699V26.6475H243.795V45.5052H250.45V24.2205L244.813 20.965Z",
11022
+ fill: "currentColor"
11023
+ }
11024
+ )
11025
+ ] }),
11026
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("clipPath", { id: "clip0", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("rect", { width: "250", height: "63.6786", fill: "currentColor" }) }) })
11027
+ ]
11028
+ }
11029
+ );
11030
+ };
10900
11031
 
10901
11032
  // src/components/Button/Button.tsx
10902
11033
  var React5 = __toESM(require("react"));
@@ -11884,16 +12015,16 @@ var ChipMedium = import_react39.css`
11884
12015
  }
11885
12016
  `;
11886
12017
  var ChipThemeAccentLight = import_react39.css`
11887
- background: var(--accent-primary-surface);
12018
+ background: var(--accent-light);
11888
12019
  color: var(--brand-secondary-1);
11889
12020
 
11890
12021
  &:hover,
11891
12022
  &:focus {
11892
- background: var(--accent-primary-hover);
12023
+ background: var(--accent-light-hover);
11893
12024
  }
11894
12025
 
11895
12026
  &:active {
11896
- background: var(--accent-primary-active);
12027
+ background: var(--accent-light-active);
11897
12028
  }
11898
12029
 
11899
12030
  &:hover,
@@ -11903,20 +12034,62 @@ var ChipThemeAccentLight = import_react39.css`
11903
12034
  }
11904
12035
 
11905
12036
  [data-icon] {
11906
- color: var(--accent-primary);
12037
+ color: var(--accent-light);
11907
12038
  }
11908
12039
  `;
11909
12040
  var ChipThemeAccentDark = import_react39.css`
11910
- background: var(--accent-primary);
12041
+ background: var(--accent-dark);
12042
+ color: var(--white);
12043
+
12044
+ &:hover,
12045
+ &:focus {
12046
+ background: var(--accent-dark-hover);
12047
+ }
12048
+
12049
+ &:active {
12050
+ background: var(--accent-dark-active);
12051
+ }
12052
+
12053
+ &:hover,
12054
+ &:focus,
12055
+ &:active {
12056
+ color: var(--white);
12057
+ }
12058
+ `;
12059
+ var ChipAltThemeAccentLight = import_react39.css`
12060
+ background: var(--accent-alt-light);
12061
+ color: var(--brand-secondary-1);
12062
+
12063
+ &:hover,
12064
+ &:focus {
12065
+ background: var(--accent-alt-light-hover);
12066
+ }
12067
+
12068
+ &:active {
12069
+ background: var(--accent-alt-light-active);
12070
+ }
12071
+
12072
+ &:hover,
12073
+ &:focus,
12074
+ &:active {
12075
+ color: var(--white);
12076
+ }
12077
+
12078
+ [data-icon] {
12079
+ color: var(--accent-alt-light);
12080
+ }
12081
+ `;
12082
+ var ChipAltThemeAccentDark = import_react39.css`
12083
+ background: var(--accent-alt-dark);
11911
12084
  color: var(--white);
11912
12085
 
11913
12086
  &:hover,
11914
12087
  &:focus {
11915
- background: var(--accent-primary-hover);
12088
+ background: var(--accent-alt-dark-hover);
11916
12089
  }
11917
12090
 
11918
12091
  &:active {
11919
- background: var(--accent-primary-active);
12092
+ background: var(--accent-alt-dark-active);
11920
12093
  }
11921
12094
 
11922
12095
  &:hover,
@@ -11972,6 +12145,8 @@ var Chip = ({
11972
12145
  const chipTheme = {
11973
12146
  "accent-light": ChipThemeAccentLight,
11974
12147
  "accent-dark": ChipThemeAccentDark,
12148
+ "accent-alt-light": ChipAltThemeAccentLight,
12149
+ "accent-alt-dark": ChipAltThemeAccentDark,
11975
12150
  "neutral-light": ChipThemeNeutralLight,
11976
12151
  "neutral-dark": ChipThemeNeutralDark
11977
12152
  };
@@ -14147,6 +14322,9 @@ var IntegrationModalIcon = ({ icon, name, ...imgProps }) => {
14147
14322
  iconSrc = iconUrl.href;
14148
14323
  }
14149
14324
  } catch (e) {
14325
+ if (icon == null ? void 0 : icon.startsWith("/")) {
14326
+ iconSrc = icon;
14327
+ }
14150
14328
  }
14151
14329
  }
14152
14330
  return /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)("div", { css: IntegrationModalIconContainer, children: [
@@ -14165,7 +14343,7 @@ var IntegrationModalIcon = ({ icon, name, ...imgProps }) => {
14165
14343
  /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("stop", { offset: "1", stopColor: "#B3EFE4" })
14166
14344
  ] }) })
14167
14345
  ] }),
14168
- CompIcon ? /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(CompIcon, { role: "img", css: IntegrationModalImage, ...imgProps }) : /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
14346
+ CompIcon ? /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(CompIcon, { role: "img", css: IntegrationModalImage, ...imgProps }) : iconSrc ? /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
14169
14347
  "img",
14170
14348
  {
14171
14349
  src: iconSrc,
@@ -14174,7 +14352,7 @@ var IntegrationModalIcon = ({ icon, name, ...imgProps }) => {
14174
14352
  css: IntegrationModalImage,
14175
14353
  ...imgProps
14176
14354
  }
14177
- )
14355
+ ) : null
14178
14356
  ] });
14179
14357
  };
14180
14358
 
@@ -14673,7 +14851,8 @@ var linkParameterControls = import_react78.css`
14673
14851
  `;
14674
14852
  var linkParameterInput = (withExternalLinkIcon) => import_react78.css`
14675
14853
  padding-right: calc(
14676
- ${withExternalLinkIcon ? "var(--spacing-2xl)" : "var(--spacing-xl)"} + var(--spacing-base)
14854
+ ${withExternalLinkIcon ? "calc(var(--spacing-lg) * 2 + var(--spacing-xs))" : "var(--spacing-xl)"} +
14855
+ var(--spacing-base)
14677
14856
  );
14678
14857
  `;
14679
14858
  var linkParameterIcon = import_react78.css`
@@ -16180,6 +16359,7 @@ var StatusBullet = ({
16180
16359
  TwoColumnLayout,
16181
16360
  UniformBadge,
16182
16361
  UniformLogo,
16362
+ UniformLogoLarge,
16183
16363
  VerticalRhythm,
16184
16364
  WarningMessage,
16185
16365
  borderTopIcon,
@@ -16220,6 +16400,7 @@ var StatusBullet = ({
16220
16400
  macifyShortcut,
16221
16401
  mq,
16222
16402
  numberInput,
16403
+ queryStringIcon,
16223
16404
  rectangleRoundedIcon,
16224
16405
  replaceUnderscoreInString,
16225
16406
  ripple,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/design-system",
3
- "version": "19.3.0",
3
+ "version": "19.5.1-alpha.22+5b4a94102",
4
4
  "description": "Uniform design system components",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -18,7 +18,7 @@
18
18
  "document": "api-extractor run --local"
19
19
  },
20
20
  "devDependencies": {
21
- "@emotion/jest": "11.10.5",
21
+ "@emotion/jest": "11.10.8",
22
22
  "@storybook/addon-docs": "6.5.16",
23
23
  "@storybook/client-api": "6.5.16",
24
24
  "@storybook/react": "6.5.16",
@@ -31,7 +31,7 @@
31
31
  "tsup": "6.7.0"
32
32
  },
33
33
  "dependencies": {
34
- "@emotion/react": "11.10.5",
34
+ "@emotion/react": "11.10.8",
35
35
  "@monaco-editor/react": "4.5.0",
36
36
  "lottie-react": "^2.3.1",
37
37
  "monaco-editor": "0.37.1",
@@ -42,7 +42,7 @@
42
42
  "react-select": "5.7.2",
43
43
  "react-use": "17.4.0",
44
44
  "reakit": "1.3.11",
45
- "zod-to-json-schema": "3.20.4"
45
+ "zod-to-json-schema": "3.21.0"
46
46
  },
47
47
  "peerDependencies": {
48
48
  "react": ">=17 || 17 || 18",
@@ -54,5 +54,5 @@
54
54
  "publishConfig": {
55
55
  "access": "public"
56
56
  },
57
- "gitHead": "57552ffe10ca66f905d8908c82dde39935fb1803"
57
+ "gitHead": "5b4a94102c83a88c9fbf888a24d633e8abf96b76"
58
58
  }