@pantheon-systems/pds-toolkit-react 2.0.0-alpha.13 → 2.0.0-alpha.14

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.
Files changed (30) hide show
  1. package/dist/components/empty-states/HorizontalEmptyState/HorizontalEmptyState.d.ts +1 -1
  2. package/dist/css/component-css/pds-card-select-group.css +1 -1
  3. package/dist/css/component-css/pds-card.css +1 -1
  4. package/dist/css/component-css/pds-empty-state-card.css +1 -1
  5. package/dist/css/component-css/pds-index.css +3 -3
  6. package/dist/css/component-css/pds-new-site-card.css +1 -1
  7. package/dist/css/component-css/pds-panel-list.css +1 -1
  8. package/dist/css/component-css/pds-panel.css +1 -1
  9. package/dist/css/component-css/pds-payment-card.css +1 -1
  10. package/dist/css/component-css/pds-pricing-card.css +1 -1
  11. package/dist/css/component-css/pds-tags-input.css +1 -1
  12. package/dist/css/design-tokens/variables.dark.css +23 -21
  13. package/dist/css/design-tokens/variables.global.css +5 -9
  14. package/dist/css/design-tokens/variables.light.css +23 -21
  15. package/dist/css/design-tokens/variables.typography.css +1 -1
  16. package/dist/css/layout-css/pds-index.css +1 -1
  17. package/dist/css/pds-components.css +3 -3
  18. package/dist/css/pds-core.css +2 -2
  19. package/dist/css/pds-layouts.css +1 -1
  20. package/dist/index.css +1 -1
  21. package/dist/index.d.ts +4 -4
  22. package/dist/index.js +186 -186
  23. package/dist/index.js.map +1 -1
  24. package/dist/index.source.d.ts +4 -4
  25. package/package.json +2 -2
  26. package/dist/css/layout-css/pds-flex-container.css +0 -1
  27. /package/dist/components/{Picture → media/Picture}/Picture.d.ts +0 -0
  28. /package/dist/components/{VideoEmbed → media/VideoEmbed}/VideoEmbed.d.ts +0 -0
  29. /package/dist/{layouts → utilities}/Container/Container.d.ts +0 -0
  30. /package/dist/{layouts → utilities}/FlexContainer/FlexContainer.d.ts +0 -0
package/dist/index.d.ts CHANGED
@@ -29,6 +29,8 @@ export * from './components/inputs/Select/Select';
29
29
  export * from './components/inputs/Textarea/Textarea';
30
30
  export * from './components/inputs/TextInput/TextInput';
31
31
  export * from './components/loading-indicators/Spinner/Spinner';
32
+ export * from './components/media/Picture/Picture';
33
+ export * from './components/media/VideoEmbed/VideoEmbed';
32
34
  export * from './components/Modal/Modal';
33
35
  export * from './components/navigation/Breadcrumb/Breadcrumb';
34
36
  export * from './components/navigation/ButtonNav/ButtonNav';
@@ -49,7 +51,6 @@ export * from './components/panels/ExpansionPanelGroup/ExpansionPanelGroup';
49
51
  export * from './components/panels/Panel/Panel';
50
52
  export * from './components/panels/PanelList/PanelRow';
51
53
  export * from './components/PantheonLogo/PantheonLogo';
52
- export * from './components/Picture/Picture';
53
54
  export * from './components/Popover/Popover';
54
55
  export * from './components/progress-indicators/ProgressBar/ProgressBar';
55
56
  export * from './components/progress-indicators/ProgressRing/ProgressRing';
@@ -58,15 +59,14 @@ export * from './components/StatusIndicator/StatusIndicator';
58
59
  export * from './components/Table/Table';
59
60
  export * from './components/ThemeSwitcher/ThemeSwitcher';
60
61
  export * from './components/Tooltip/Tooltip';
61
- export * from './components/VideoEmbed/VideoEmbed';
62
62
  export * from './libs/components/SiteOptionDisplay/SiteOptionDisplay';
63
63
  export * from './layouts/AppLayout/AppLayout';
64
- export * from './layouts/Container/Container';
65
64
  export * from './layouts/DocsLayout/DocsLayout';
66
- export * from './layouts/FlexContainer/FlexContainer';
67
65
  export * from './layouts/GlobalWrapper/GlobalWrapper';
68
66
  export * from './layouts/ThreeItemLayout/ThreeItemLayout';
69
67
  export * from './layouts/TwoItemLayout/TwoItemLayout';
68
+ export * from './utilities/Container/Container';
69
+ export * from './utilities/FlexContainer/FlexContainer';
70
70
  export * from './libs/types/custom-types';
71
71
  export * from './libs/types/input-types';
72
72
  export * from './libs/types/layout-types';
package/dist/index.js CHANGED
@@ -6155,6 +6155,71 @@ const F4 = T1(
6155
6155
  );
6156
6156
  }
6157
6157
  ), kt = ({
6158
+ alt: t = "",
6159
+ className: a,
6160
+ height: s,
6161
+ srcFallback: n,
6162
+ srcWebp: c,
6163
+ width: l,
6164
+ ...r
6165
+ }) => {
6166
+ const o = "pds-picture";
6167
+ return /* @__PURE__ */ e.createElement("picture", { className: z([o, a ?? ""]) }, /* @__PURE__ */ e.createElement("source", { srcSet: c, type: "image/webp" }), /* @__PURE__ */ e.createElement(
6168
+ "img",
6169
+ {
6170
+ alt: t,
6171
+ className: `${o}__img`,
6172
+ height: s,
6173
+ src: n,
6174
+ width: l,
6175
+ ...r
6176
+ }
6177
+ ));
6178
+ }, xt = ({
6179
+ className: t,
6180
+ platform: a,
6181
+ videoId: s,
6182
+ videoTitle: n,
6183
+ ...c
6184
+ }) => {
6185
+ const l = "pds-video-embed", r = /* @__PURE__ */ e.createElement(
6186
+ "iframe",
6187
+ {
6188
+ allow: "autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media",
6189
+ src: `https://fast.wistia.net/embed/iframe/${s}`,
6190
+ title: `Wistia video player${n ? `: ${n}` : ""}`
6191
+ }
6192
+ ), o = /* @__PURE__ */ e.createElement(
6193
+ "iframe",
6194
+ {
6195
+ allow: "autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media",
6196
+ src: `https://player.vimeo.com/video/${s}`,
6197
+ title: `Vimeo video player${n ? `: ${n}` : ""}`
6198
+ }
6199
+ ), i = /* @__PURE__ */ e.createElement(
6200
+ "iframe",
6201
+ {
6202
+ allowFullScreen: !0,
6203
+ allow: "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share",
6204
+ referrerPolicy: "strict-origin-when-cross-origin",
6205
+ src: `https://www.youtube.com/embed/${s}`,
6206
+ title: `YouTube video player${n ? `: ${n}` : ""}`
6207
+ }
6208
+ );
6209
+ let d;
6210
+ switch (a) {
6211
+ case "vimeo":
6212
+ d = o;
6213
+ break;
6214
+ case "wistia":
6215
+ d = r;
6216
+ break;
6217
+ default:
6218
+ d = i;
6219
+ break;
6220
+ }
6221
+ return /* @__PURE__ */ e.createElement("div", { className: z([l, t ?? ""]), ...c }, d);
6222
+ }, Dt = ({
6158
6223
  ariaLabel: t,
6159
6224
  children: a,
6160
6225
  className: s,
@@ -6246,7 +6311,7 @@ const F4 = T1(
6246
6311
  u && /* @__PURE__ */ e.createElement("div", { className: `${v}__footer` }, u)
6247
6312
  ))
6248
6313
  ));
6249
- }, xt = ({
6314
+ }, Pt = ({
6250
6315
  ariaLabel: t = "Breadcrumb",
6251
6316
  className: a,
6252
6317
  crumbs: s,
@@ -6336,7 +6401,7 @@ const F4 = T1(
6336
6401
  ]
6337
6402
  })
6338
6403
  ) : c = a), c;
6339
- }, Dt = ({
6404
+ }, St = ({
6340
6405
  ariaLabel: t,
6341
6406
  className: a,
6342
6407
  menuItems: s,
@@ -6983,7 +7048,7 @@ const F4 = T1(
6983
7048
  }
6984
7049
  ) : d)
6985
7050
  );
6986
- }, Pt = ({
7051
+ }, It = ({
6987
7052
  ariaLabel: t,
6988
7053
  className: a,
6989
7054
  hasLogo: s,
@@ -7103,7 +7168,7 @@ const F4 = T1(
7103
7168
  !g.isSeparator && g.linkContent
7104
7169
  ))
7105
7170
  )) : null;
7106
- }, St = ({
7171
+ }, Ht = ({
7107
7172
  ariaLabel: t = "Main Navigation",
7108
7173
  className: a,
7109
7174
  colorType: s = "default",
@@ -7211,7 +7276,7 @@ const F4 = T1(
7211
7276
  },
7212
7277
  /* @__PURE__ */ e.createElement("ul", { className: `${h}__menu` }, E)
7213
7278
  );
7214
- }, It = ({
7279
+ }, Vt = ({
7215
7280
  ariaLabel: t = "User menu",
7216
7281
  className: a,
7217
7282
  menuItems: s,
@@ -7367,7 +7432,7 @@ const F4 = T1(
7367
7432
  standard: { label: "Standard", color: "gaia" },
7368
7433
  premium: { label: "Premium", color: "gaia" },
7369
7434
  priority: { label: "Priority", color: "gaia" }
7370
- }, Ht = ({
7435
+ }, Ft = ({
7371
7436
  ariaLabel: t = "Workspace selector menu",
7372
7437
  className: a,
7373
7438
  createWorkspaceLink: s,
@@ -7584,7 +7649,7 @@ const F4 = T1(
7584
7649
  warning: "triangleExclamation",
7585
7650
  critical: "diamondExclamation",
7586
7651
  discovery: "bullhorn"
7587
- }, y2 = 200, U4 = 50, Vt = ({
7652
+ }, y2 = 200, U4 = 50, Tt = ({
7588
7653
  banners: t,
7589
7654
  className: a,
7590
7655
  dataContext: s = "product",
@@ -7705,7 +7770,7 @@ const F4 = T1(
7705
7770
  warning: "triangleExclamation",
7706
7771
  success: "circleCheck",
7707
7772
  critical: "diamondExclamation"
7708
- }, Ft = ({
7773
+ }, Ot = ({
7709
7774
  className: t,
7710
7775
  message: a,
7711
7776
  title: s,
@@ -7746,7 +7811,7 @@ const F4 = T1(
7746
7811
  success: "circleCheck",
7747
7812
  critical: "diamondExclamation",
7748
7813
  discovery: "squareQuestion"
7749
- }, Tt = ({
7814
+ }, Rt = ({
7750
7815
  className: t,
7751
7816
  ctaButton: a,
7752
7817
  dataContext: s = "product",
@@ -7837,7 +7902,7 @@ const F4 = T1(
7837
7902
  size: "l",
7838
7903
  tabIndex: 0
7839
7904
  }
7840
- ), Ot = ({
7905
+ ), At = ({
7841
7906
  className: t,
7842
7907
  labelStrings: a = De,
7843
7908
  limit: s = 5,
@@ -7919,7 +7984,7 @@ const F4 = T1(
7919
7984
  );
7920
7985
  };
7921
7986
  var tt = /* @__PURE__ */ ((t) => (t.Critical = "critical", t.Info = "info", t.Success = "success", t.Warning = "warning", t.Working = "working", t))(tt || {});
7922
- const Rt = () => {
7987
+ const Bt = () => {
7923
7988
  const t = (s, n, c = {}) => {
7924
7989
  const l = c.toastId ?? A1(), r = typeof c.autoClose == "number" ? Math.max(Y4, c.autoClose) : !1, o = /* @__PURE__ */ e.createElement(
7925
7990
  et,
@@ -7950,7 +8015,7 @@ const Rt = () => {
7950
8015
  exit: "pds-toast--slideOut"
7951
8016
  });
7952
8017
  return [t, k2, a];
7953
- }, At = ({
8018
+ }, jt = ({
7954
8019
  children: t,
7955
8020
  className: a,
7956
8021
  id: s,
@@ -7983,7 +8048,7 @@ const Rt = () => {
7983
8048
  }
7984
8049
  )), /* @__PURE__ */ e.createElement("div", { className: `${b}__content` }, t))
7985
8050
  );
7986
- }, Bt = ({
8051
+ }, Zt = ({
7987
8052
  children: t,
7988
8053
  className: a,
7989
8054
  displayType: s = "standard",
@@ -7998,7 +8063,7 @@ const Rt = () => {
7998
8063
  },
7999
8064
  t
8000
8065
  );
8001
- }, jt = ({
8066
+ }, Wt = ({
8002
8067
  children: t,
8003
8068
  className: a,
8004
8069
  padding: s = "standard",
@@ -8014,7 +8079,7 @@ const Rt = () => {
8014
8079
  },
8015
8080
  /* @__PURE__ */ e.createElement("div", { className: z([o, i]) }, t)
8016
8081
  );
8017
- }, Zt = ({
8082
+ }, qt = ({
8018
8083
  children: t,
8019
8084
  className: a,
8020
8085
  expandButtonAriaLabel: s,
@@ -8079,28 +8144,7 @@ const Rt = () => {
8079
8144
  /* @__PURE__ */ e.createElement("div", { className: `${l}__items-inside` }, f)
8080
8145
  )
8081
8146
  );
8082
- }, Wt = ({
8083
- alt: t = "",
8084
- className: a,
8085
- height: s,
8086
- srcFallback: n,
8087
- srcWebp: c,
8088
- width: l,
8089
- ...r
8090
- }) => {
8091
- const o = "pds-picture";
8092
- return /* @__PURE__ */ e.createElement("picture", { className: z([o, a ?? ""]) }, /* @__PURE__ */ e.createElement("source", { srcSet: c, type: "image/webp" }), /* @__PURE__ */ e.createElement(
8093
- "img",
8094
- {
8095
- alt: t,
8096
- className: `${o}__img`,
8097
- height: s,
8098
- src: n,
8099
- width: l,
8100
- ...r
8101
- }
8102
- ));
8103
- }, F1 = 8, K2 = 14, st = 6, qt = ({
8147
+ }, F1 = 8, K2 = 14, st = 6, Gt = ({
8104
8148
  className: t,
8105
8149
  classNameContainer: a,
8106
8150
  closeButtonLabel: s = "Close",
@@ -8227,7 +8271,7 @@ const Rt = () => {
8227
8271
  success: "--pds-color-status-success-foreground",
8228
8272
  warning: "--pds-color-status-warning-foreground",
8229
8273
  critical: "--pds-color-status-critical-foreground"
8230
- }, Gt = ({
8274
+ }, Kt = ({
8231
8275
  className: t,
8232
8276
  colorBreakpoints: a = [
8233
8277
  { colorType: "info", percentage: 0 },
@@ -8292,7 +8336,7 @@ const Rt = () => {
8292
8336
  )),
8293
8337
  w && p
8294
8338
  );
8295
- }, Kt = ({
8339
+ }, Ut = ({
8296
8340
  className: t,
8297
8341
  id: a,
8298
8342
  innerLabel: s,
@@ -8377,7 +8421,7 @@ const Rt = () => {
8377
8421
  )
8378
8422
  )
8379
8423
  );
8380
- }, Ut = ({
8424
+ }, Yt = ({
8381
8425
  className: t,
8382
8426
  destination: a = "main",
8383
8427
  text: s = "Skip to main content",
@@ -8390,7 +8434,7 @@ const Rt = () => {
8390
8434
  ...n
8391
8435
  },
8392
8436
  s
8393
- ), Yt = ({
8437
+ ), Xt = ({
8394
8438
  className: t,
8395
8439
  label: a = null,
8396
8440
  size: s = "s",
@@ -8419,7 +8463,7 @@ const Rt = () => {
8419
8463
  ) : /* @__PURE__ */ e.createElement("span", { "aria-hidden": "true", className: `${l}__icon`, role: "img" }),
8420
8464
  a && /* @__PURE__ */ e.createElement("span", { className: "pds-status-indicator__label" }, a)
8421
8465
  );
8422
- }, Xt = ({
8466
+ }, Qt = ({
8423
8467
  className: t,
8424
8468
  defaultSortKey: a,
8425
8469
  defaultSortOrder: s = "asc",
@@ -8492,7 +8536,7 @@ const Rt = () => {
8492
8536
  light: "sunBright",
8493
8537
  dark: "moon",
8494
8538
  system: "desktop"
8495
- }, Qt = ({
8539
+ }, Jt = ({
8496
8540
  className: t,
8497
8541
  id: a = "theme-switcher-menu",
8498
8542
  labelStrings: s = { light: "Light", dark: "Dark", system: "System" },
@@ -8526,50 +8570,6 @@ const Rt = () => {
8526
8570
  preferredPlacement: "top"
8527
8571
  }
8528
8572
  ));
8529
- }, Jt = ({
8530
- className: t,
8531
- platform: a,
8532
- videoId: s,
8533
- videoTitle: n,
8534
- ...c
8535
- }) => {
8536
- const l = "pds-video-embed", r = /* @__PURE__ */ e.createElement(
8537
- "iframe",
8538
- {
8539
- allow: "autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media",
8540
- src: `https://fast.wistia.net/embed/iframe/${s}`,
8541
- title: `Wistia video player${n ? `: ${n}` : ""}`
8542
- }
8543
- ), o = /* @__PURE__ */ e.createElement(
8544
- "iframe",
8545
- {
8546
- allow: "autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media",
8547
- src: `https://player.vimeo.com/video/${s}`,
8548
- title: `Vimeo video player${n ? `: ${n}` : ""}`
8549
- }
8550
- ), i = /* @__PURE__ */ e.createElement(
8551
- "iframe",
8552
- {
8553
- allowFullScreen: !0,
8554
- allow: "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share",
8555
- referrerPolicy: "strict-origin-when-cross-origin",
8556
- src: `https://www.youtube.com/embed/${s}`,
8557
- title: `YouTube video player${n ? `: ${n}` : ""}`
8558
- }
8559
- );
8560
- let d;
8561
- switch (a) {
8562
- case "vimeo":
8563
- d = o;
8564
- break;
8565
- case "wistia":
8566
- d = r;
8567
- break;
8568
- default:
8569
- d = i;
8570
- break;
8571
- }
8572
- return /* @__PURE__ */ e.createElement("div", { className: z([l, t ?? ""]), ...c }, d);
8573
8573
  }, e0 = ({
8574
8574
  className: t,
8575
8575
  option: a,
@@ -8712,21 +8712,6 @@ const Rt = () => {
8712
8712
  g ? I : H
8713
8713
  );
8714
8714
  }, s0 = ({
8715
- children: t,
8716
- className: a,
8717
- width: s = "standard",
8718
- ...n
8719
- }) => {
8720
- const c = "pds-container", l = s !== "standard" ? `${c}--${s}` : null;
8721
- return /* @__PURE__ */ e.createElement(
8722
- "div",
8723
- {
8724
- className: z([c, l, a ?? ""]),
8725
- ...n
8726
- },
8727
- t
8728
- );
8729
- }, a0 = ({
8730
8715
  children: t,
8731
8716
  className: a,
8732
8717
  sidebarMinWidth: s = 14.5,
@@ -8753,60 +8738,10 @@ const Rt = () => {
8753
8738
  },
8754
8739
  l ? f : u
8755
8740
  );
8756
- }, l0 = ({
8757
- alignContent: t = "flex-start",
8758
- alignItems: a = "stretch",
8759
- children: s,
8760
- className: n,
8761
- flexDirection: c = "row",
8762
- flexWrap: l = "nowrap",
8763
- gap: r = "standard",
8764
- justifyContent: o = "flex-start",
8765
- mobileAlignContent: i,
8766
- mobileAlignItems: d,
8767
- mobileFlexDirection: m = "column",
8768
- mobileFlexWrap: b,
8769
- mobileGap: _,
8770
- mobileJustifyContent: f,
8771
- ...u
8772
- }) => {
8773
- let g = ve() <= 640;
8774
- const p = D1(V1);
8775
- p && (g = p.isMobile);
8776
- const h = "pds-flex", w = `${h}-container`, C = g ? `${w}--mobile` : null;
8777
- let x = null;
8778
- g ? x = `${h}-direction--${m}` : c !== "row" && (x = `${h}-direction--${c}`);
8779
- let k = null;
8780
- g ? b ? b !== "nowrap" && (k = `${h}-wrap--${b}`) : l !== "nowrap" && (k = `${h}-wrap--${l}`) : l !== "nowrap" && (k = `${h}-wrap--${l}`);
8781
- let M = null;
8782
- g ? f ? f !== "flex-start" && (M = `${h}-justify--${f}`) : o !== "flex-start" && (M = `${h}-justify--${o}`) : o !== "flex-start" && (M = `${h}-justify--${o}`);
8783
- let E = null;
8784
- g ? d ? d !== "stretch" && (E = `${h}-align-items--${d}`) : a !== "stretch" && (E = `${h}-align-items--${a}`) : a !== "stretch" && (E = `${h}-align-items--${a}`);
8785
- let L = null;
8786
- g ? i ? i !== "flex-start" && (L = `${h}-align-content--${i}`) : t !== "flex-start" && (L = `${h}-align-content--${t}`) : t !== "flex-start" && (L = `${h}-align-content--${t}`);
8787
- let $ = null;
8788
- return g ? _ ? _ !== "none" && ($ = `${h}-gap--${_}`) : r !== "none" && ($ = `${h}-gap--${r}`) : r !== "none" && ($ = `${h}-gap--${r}`), /* @__PURE__ */ e.createElement(
8789
- "div",
8790
- {
8791
- className: z([
8792
- w,
8793
- C,
8794
- x,
8795
- k,
8796
- M,
8797
- E,
8798
- L,
8799
- $,
8800
- n ?? ""
8801
- ]),
8802
- ...u
8803
- },
8804
- s
8805
- );
8806
- }, c0 = ({
8741
+ }, a0 = ({
8807
8742
  children: t,
8808
8743
  mobileMenuMaxWidth: a = 640
8809
- }) => /* @__PURE__ */ e.createElement(L4, { mobileMenuMaxWidth: a }, /* @__PURE__ */ e.createElement(h4, null, t)), n0 = ({
8744
+ }) => /* @__PURE__ */ e.createElement(L4, { mobileMenuMaxWidth: a }, /* @__PURE__ */ e.createElement(h4, null, t)), l0 = ({
8810
8745
  children: t,
8811
8746
  className: a,
8812
8747
  gridGap: s = "standard",
@@ -8838,7 +8773,7 @@ const Rt = () => {
8838
8773
  m
8839
8774
  ))
8840
8775
  );
8841
- }, r0 = ({
8776
+ }, c0 = ({
8842
8777
  children: t,
8843
8778
  className: a,
8844
8779
  gridGap: s = "standard",
@@ -8873,6 +8808,71 @@ const Rt = () => {
8873
8808
  /* @__PURE__ */ e.createElement("div", { className: f.join(" ").trim() }, g),
8874
8809
  /* @__PURE__ */ e.createElement("div", { className: u.join(" ").trim() }, p)
8875
8810
  );
8811
+ }, n0 = ({
8812
+ children: t,
8813
+ className: a,
8814
+ width: s = "standard",
8815
+ ...n
8816
+ }) => {
8817
+ const c = "pds-container", l = s !== "standard" ? `${c}--${s}` : null;
8818
+ return /* @__PURE__ */ e.createElement(
8819
+ "div",
8820
+ {
8821
+ className: z([c, l, a ?? ""]),
8822
+ ...n
8823
+ },
8824
+ t
8825
+ );
8826
+ }, r0 = ({
8827
+ alignContent: t = "flex-start",
8828
+ alignItems: a = "stretch",
8829
+ children: s,
8830
+ className: n,
8831
+ flexDirection: c = "row",
8832
+ flexWrap: l = "nowrap",
8833
+ gap: r = "standard",
8834
+ justifyContent: o = "flex-start",
8835
+ mobileAlignContent: i,
8836
+ mobileAlignItems: d,
8837
+ mobileFlexDirection: m = "column",
8838
+ mobileFlexWrap: b,
8839
+ mobileGap: _,
8840
+ mobileJustifyContent: f,
8841
+ ...u
8842
+ }) => {
8843
+ let g = ve() <= 640;
8844
+ const p = D1(V1);
8845
+ p && (g = p.isMobile);
8846
+ const h = "pds-flex", w = `${h}-container`, C = g ? `${w}--mobile` : null;
8847
+ let x = null;
8848
+ g ? x = `${h}-direction--${m}` : c !== "row" && (x = `${h}-direction--${c}`);
8849
+ let k = null;
8850
+ g ? b ? b !== "nowrap" && (k = `${h}-wrap--${b}`) : l !== "nowrap" && (k = `${h}-wrap--${l}`) : l !== "nowrap" && (k = `${h}-wrap--${l}`);
8851
+ let M = null;
8852
+ g ? f ? f !== "flex-start" && (M = `${h}-justify--${f}`) : o !== "flex-start" && (M = `${h}-justify--${o}`) : o !== "flex-start" && (M = `${h}-justify--${o}`);
8853
+ let E = null;
8854
+ g ? d ? d !== "stretch" && (E = `${h}-align-items--${d}`) : a !== "stretch" && (E = `${h}-align-items--${a}`) : a !== "stretch" && (E = `${h}-align-items--${a}`);
8855
+ let L = null;
8856
+ g ? i ? i !== "flex-start" && (L = `${h}-align-content--${i}`) : t !== "flex-start" && (L = `${h}-align-content--${t}`) : t !== "flex-start" && (L = `${h}-align-content--${t}`);
8857
+ let $ = null;
8858
+ return g ? _ ? _ !== "none" && ($ = `${h}-gap--${_}`) : r !== "none" && ($ = `${h}-gap--${r}`) : r !== "none" && ($ = `${h}-gap--${r}`), /* @__PURE__ */ e.createElement(
8859
+ "div",
8860
+ {
8861
+ className: z([
8862
+ w,
8863
+ C,
8864
+ x,
8865
+ k,
8866
+ M,
8867
+ E,
8868
+ L,
8869
+ $,
8870
+ n ?? ""
8871
+ ]),
8872
+ ...u
8873
+ },
8874
+ s
8875
+ );
8876
8876
  }, o0 = () => {
8877
8877
  const t = typeof window < "u", a = (c) => c >= r4 ? "xl" : c >= n4 ? "lg" : c >= c4 ? "md" : "sm", [s, n] = j(
8878
8878
  t ? a(window.innerWidth) : "lg"
@@ -8900,12 +8900,12 @@ export {
8900
8900
  t0 as AppLayout,
8901
8901
  x2 as Avatar,
8902
8902
  s4 as Badge,
8903
- Vt as Banner,
8903
+ Tt as Banner,
8904
8904
  _t as BarChart,
8905
- xt as Breadcrumb,
8905
+ Pt as Breadcrumb,
8906
8906
  C2 as Button,
8907
8907
  w4 as ButtonLink,
8908
- Dt as ButtonNav,
8908
+ St as ButtonNav,
8909
8909
  Ct as Card,
8910
8910
  F4 as Checkbox,
8911
8911
  zt as CheckboxFieldset,
@@ -8914,66 +8914,66 @@ export {
8914
8914
  r2 as CloseButton,
8915
8915
  Mt as Combobox,
8916
8916
  yt as ComboboxMultiselect,
8917
- s0 as Container,
8918
- a0 as DocsLayout,
8917
+ n0 as Container,
8918
+ s0 as DocsLayout,
8919
8919
  Et as Drawer,
8920
8920
  Q1 as Dropdown,
8921
8921
  B4 as DropdownMenu,
8922
- At as ExpansionPanel,
8923
- Bt as ExpansionPanelGroup,
8924
- l0 as FlexContainer,
8925
- c0 as GlobalWrapper,
8922
+ jt as ExpansionPanel,
8923
+ Zt as ExpansionPanelGroup,
8924
+ r0 as FlexContainer,
8925
+ a0 as GlobalWrapper,
8926
8926
  R as Icon,
8927
8927
  u2 as IconButton,
8928
- Ft as InlineMessage,
8928
+ Ot as InlineMessage,
8929
8929
  wt as LineChart,
8930
8930
  Y4 as MIN_AUTO_CLOSE_DURATION,
8931
8931
  be as MenuButton,
8932
- kt as Modal,
8933
- jt as Panel,
8934
- Zt as PanelRow,
8932
+ Dt as Modal,
8933
+ Wt as Panel,
8934
+ qt as PanelRow,
8935
8935
  W4 as PantheonLogo,
8936
- Wt as Picture,
8937
- qt as Popover,
8938
- Gt as ProgressBar,
8939
- Kt as ProgressRing,
8936
+ kt as Picture,
8937
+ Gt as Popover,
8938
+ Kt as ProgressBar,
8939
+ Ut as ProgressRing,
8940
8940
  $t as RadioGroup,
8941
8941
  V1 as ResponsiveContext,
8942
8942
  L4 as ResponsiveContextProvider,
8943
8943
  vt as SSOButton,
8944
- Tt as SectionMessage,
8944
+ Rt as SectionMessage,
8945
8945
  ft as SegmentedButton,
8946
8946
  we as Select,
8947
8947
  N4 as SelectOptionGroup,
8948
- Pt as SideNavGlobal,
8948
+ It as SideNavGlobal,
8949
8949
  q4 as SideNavGlobalItem,
8950
- St as SiteMenu,
8950
+ Ht as SiteMenu,
8951
8951
  e0 as SiteOptionDisplay,
8952
8952
  ht as SitePlanLevelLabel,
8953
8953
  z4 as SiteTypeIcon,
8954
8954
  gt as SiteTypeLabel,
8955
- Ut as Skiplink,
8955
+ Yt as Skiplink,
8956
8956
  j1 as Spinner,
8957
8957
  y4 as SplitButton,
8958
8958
  a4 as StatusBadge,
8959
- Yt as StatusIndicator,
8959
+ Xt as StatusIndicator,
8960
8960
  H2 as StatusTypeLabels,
8961
- Xt as Table,
8961
+ Qt as Table,
8962
8962
  re as Tally,
8963
8963
  R4 as TextInput,
8964
8964
  Nt as Textarea,
8965
- Qt as ThemeSwitcher,
8966
- n0 as ThreeItemLayout,
8965
+ Jt as ThemeSwitcher,
8966
+ l0 as ThreeItemLayout,
8967
8967
  et as Toast,
8968
8968
  tt as ToastType,
8969
- Ot as Toaster,
8969
+ At as Toaster,
8970
8970
  Pe as ToasterContext,
8971
8971
  U1 as Tooltip,
8972
- r0 as TwoItemLayout,
8973
- It as UserMenu,
8972
+ c0 as TwoItemLayout,
8973
+ Vt as UserMenu,
8974
8974
  bt as UtilityButton,
8975
- Jt as VideoEmbed,
8976
- Ht as WorkspaceSelector,
8975
+ xt as VideoEmbed,
8976
+ Ft as WorkspaceSelector,
8977
8977
  ut as iconList,
8978
8978
  a2 as isHeadingItemType,
8979
8979
  l2 as isLinkItemType,
@@ -8984,7 +8984,7 @@ export {
8984
8984
  X1 as useDropdown,
8985
8985
  g4 as useKeyPress,
8986
8986
  i0 as useMediaQuery,
8987
- Rt as useToast,
8987
+ Bt as useToast,
8988
8988
  ve as useWindowWidth
8989
8989
  };
8990
8990
  //# sourceMappingURL=index.js.map