@homebound/beam 3.0.0-alpha.6 → 3.0.0-alpha.7

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.cjs CHANGED
@@ -3671,9 +3671,9 @@ var CssBuilder = class _CssBuilder {
3671
3671
  get measureNarrow() {
3672
3672
  return this.add("maxWidth", "20em");
3673
3673
  }
3674
- /** Sets `textIndent: "1em"; marginTop: 0; marginBottom: 0`. */
3674
+ /** Sets `textIndent: "1em"; marginTop: "0px"; marginBottom: "0px"`. */
3675
3675
  get indent() {
3676
- return this.add("textIndent", "1em").add("marginTop", 0).add("marginBottom", 0);
3676
+ return this.add("textIndent", "1em").add("marginTop", "0px").add("marginBottom", "0px");
3677
3677
  }
3678
3678
  /** Sets `fontVariant: "small-caps"`. */
3679
3679
  get smallCaps() {
@@ -4590,12 +4590,12 @@ function Popper(props) {
4590
4590
  color: "white",
4591
4591
  paddingLeft: "pl1",
4592
4592
  paddingRight: "pr1",
4593
- paddingTop: "py_4px_paddingTop",
4594
- paddingBottom: "py_4px_paddingBottom",
4593
+ paddingTop: "pt_4px",
4594
+ paddingBottom: "pb_4px",
4595
4595
  borderRadius: "br4",
4596
4596
  fontWeight: "fw4",
4597
- fontSize: "xs_fontSize",
4598
- lineHeight: "xs_lineHeight",
4597
+ fontSize: "fz_12px",
4598
+ lineHeight: "lh_16px",
4599
4599
  zIndex: "z_999999"
4600
4600
  },
4601
4601
  ...xss
@@ -5169,10 +5169,10 @@ function Chip(props) {
5169
5169
  } }),
5170
5170
  /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("span", { ...(0, import_runtime4.trussProps)({
5171
5171
  overflow: "oh",
5172
- display: "lineClamp1_display",
5173
- WebkitBoxOrient: "lineClamp1_WebkitBoxOrient",
5174
- textOverflow: "lineClamp1_textOverflow",
5175
- WebkitLineClamp: "lineClamp1_WebkitLineClamp",
5172
+ display: "d_negwebkit_box",
5173
+ WebkitBoxOrient: "wbo_vertical",
5174
+ textOverflow: "to_ellipsis",
5175
+ WebkitLineClamp: "wlc_1",
5176
5176
  wordBreak: "wbba"
5177
5177
  }), children: text })
5178
5178
  ] })
@@ -5208,8 +5208,8 @@ var typeStyles = {
5208
5208
  };
5209
5209
  var chipBaseStyles = (compact) => ({
5210
5210
  fontWeight: "fw6",
5211
- fontSize: "xsSb_fontSize",
5212
- lineHeight: "xsSb_lineHeight",
5211
+ fontSize: "fz_12px",
5212
+ lineHeight: "lh_16px",
5213
5213
  display: "dif",
5214
5214
  alignItems: "aic",
5215
5215
  borderRadius: "br16",
@@ -5811,8 +5811,8 @@ function ExpandableHeader(props) {
5811
5811
  return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("button", { ...hoverProps, ...(0, import_runtime8.trussProps)({
5812
5812
  display: "df",
5813
5813
  fontWeight: "fw4",
5814
- fontSize: "xs_fontSize",
5815
- lineHeight: "xs_lineHeight",
5814
+ fontSize: "fz_12px",
5815
+ lineHeight: "lh_16px",
5816
5816
  alignItems: "aic",
5817
5817
  justifyContent: "jcsb",
5818
5818
  gap: "gap2",
@@ -5861,10 +5861,10 @@ function ExpandableHeader(props) {
5861
5861
  /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("span", { ...(0, import_runtime8.trussProps)({
5862
5862
  textAlign: "tal",
5863
5863
  overflow: "oh",
5864
- display: "lineClamp2_display",
5865
- WebkitBoxOrient: "lineClamp2_WebkitBoxOrient",
5866
- textOverflow: "lineClamp2_textOverflow",
5867
- WebkitLineClamp: "lineClamp2_WebkitLineClamp"
5864
+ display: "d_negwebkit_box",
5865
+ WebkitBoxOrient: "wbo_vertical",
5866
+ textOverflow: "to_ellipsis",
5867
+ WebkitLineClamp: "wlc_2"
5868
5868
  }), children: title }),
5869
5869
  tooltipEl
5870
5870
  ] }),
@@ -5933,10 +5933,10 @@ function SortHeader(props) {
5933
5933
  iconOnLeft && icon,
5934
5934
  /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("span", { ...(0, import_runtime9.trussProps)({
5935
5935
  overflow: "oh",
5936
- display: "lineClamp2_display",
5937
- WebkitBoxOrient: "lineClamp2_WebkitBoxOrient",
5938
- textOverflow: "lineClamp2_textOverflow",
5939
- WebkitLineClamp: "lineClamp2_WebkitLineClamp"
5936
+ display: "d_negwebkit_box",
5937
+ WebkitBoxOrient: "wbo_vertical",
5938
+ textOverflow: "to_ellipsis",
5939
+ WebkitLineClamp: "wlc_2"
5940
5940
  }), children: content }),
5941
5941
  tooltipEl,
5942
5942
  !iconOnLeft && icon
@@ -5968,7 +5968,7 @@ function toContent(maybeContent, isHeader, canSortColumn, isClientSideSorting, s
5968
5968
  ...style?.presentationSettings?.wrap === false ? {
5969
5969
  whiteSpace: "wsnw",
5970
5970
  overflow: "oh",
5971
- textOverflow: "truncate_textOverflow"
5971
+ textOverflow: "to_ellipsis"
5972
5972
  } : {}
5973
5973
  })) : content;
5974
5974
  if (content && typeof content === "string" && isHeader && canSortColumn) {
@@ -5979,10 +5979,10 @@ function toContent(maybeContent, isHeader, canSortColumn, isClientSideSorting, s
5979
5979
  return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(import_jsx_runtime12.Fragment, { children: [
5980
5980
  /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { ...(0, import_runtime10.trussProps)({
5981
5981
  overflow: "oh",
5982
- display: "lineClamp2_display",
5983
- WebkitBoxOrient: "lineClamp2_WebkitBoxOrient",
5984
- textOverflow: "lineClamp2_textOverflow",
5985
- WebkitLineClamp: "lineClamp2_WebkitLineClamp"
5982
+ display: "d_negwebkit_box",
5983
+ WebkitBoxOrient: "wbo_vertical",
5984
+ textOverflow: "to_ellipsis",
5985
+ WebkitLineClamp: "wlc_2"
5986
5986
  }), children: content }),
5987
5987
  tooltipEl
5988
5988
  ] });
@@ -5990,10 +5990,10 @@ function toContent(maybeContent, isHeader, canSortColumn, isClientSideSorting, s
5990
5990
  return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(import_jsx_runtime12.Fragment, { children: [
5991
5991
  /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { ...(0, import_runtime10.trussProps)({
5992
5992
  overflow: "oh",
5993
- display: "lineClamp2_display",
5994
- WebkitBoxOrient: "lineClamp2_WebkitBoxOrient",
5995
- textOverflow: "lineClamp2_textOverflow",
5996
- WebkitLineClamp: "lineClamp2_WebkitLineClamp"
5993
+ display: "d_negwebkit_box",
5994
+ WebkitBoxOrient: "wbo_vertical",
5995
+ textOverflow: "to_ellipsis",
5996
+ WebkitLineClamp: "wlc_2"
5997
5997
  }), title: content, children: content }),
5998
5998
  tooltipEl
5999
5999
  ] });
@@ -6002,7 +6002,7 @@ function toContent(maybeContent, isHeader, canSortColumn, isClientSideSorting, s
6002
6002
  /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { ...(0, import_runtime10.trussProps)({
6003
6003
  whiteSpace: "wsnw",
6004
6004
  overflow: "oh",
6005
- textOverflow: "truncate_textOverflow",
6005
+ textOverflow: "to_ellipsis",
6006
6006
  minWidth: "mw0"
6007
6007
  }), title: content, children: content }),
6008
6008
  tooltipEl
@@ -6052,11 +6052,11 @@ function getColumnBorderCss(border, style) {
6052
6052
  if (!border) return {};
6053
6053
  return {
6054
6054
  ...border === "left" ? {
6055
- borderLeftStyle: "bl_borderLeftStyle",
6056
- borderLeftWidth: "bl_borderLeftWidth"
6055
+ borderLeftStyle: "bls_solid",
6056
+ borderLeftWidth: "blw_1px"
6057
6057
  } : {
6058
- borderRightStyle: "br_borderRightStyle",
6059
- borderRightWidth: "br_borderRightWidth"
6058
+ borderRightStyle: "brs_solid",
6059
+ borderRightWidth: "brw_1px"
6060
6060
  },
6061
6061
  ...style.borderStyle
6062
6062
  };
@@ -6365,8 +6365,8 @@ function Header(props) {
6365
6365
  }), children: [
6366
6366
  /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h1", { ...(0, import_runtime12.trussProps)({
6367
6367
  fontWeight: "fw4",
6368
- fontSize: "md_fontSize",
6369
- lineHeight: "md_lineHeight"
6368
+ fontSize: "fz_16px",
6369
+ lineHeight: "lh_24px"
6370
6370
  }), children: (0, import_date_fns.format)(displayMonth, "MMMM yyyy") }),
6371
6371
  /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("div", { children: [
6372
6372
  /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(IconButton, { color: "rgba(100, 100, 100, 1)" /* Gray700 */, icon: "chevronLeft", onClick: () => goToMonth((0, import_date_fns.addMonths)(displayMonth, -1)) }),
@@ -6397,8 +6397,8 @@ function YearSkipHeader(props) {
6397
6397
  /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(IconButton, { color: "rgba(100, 100, 100, 1)" /* Gray700 */, icon: "chevronLeft", onClick: () => goToMonth((0, import_date_fns.addMonths)(displayMonth, -1)) }),
6398
6398
  /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h1", { ...(0, import_runtime12.trussProps)({
6399
6399
  fontWeight: "fw4",
6400
- fontSize: "md_fontSize",
6401
- lineHeight: "md_lineHeight"
6400
+ fontSize: "fz_16px",
6401
+ lineHeight: "lh_24px"
6402
6402
  }), children: (0, import_date_fns.format)(displayMonth, "MMM") }),
6403
6403
  /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(IconButton, { color: "rgba(100, 100, 100, 1)" /* Gray700 */, icon: "chevronRight", onClick: () => goToMonth((0, import_date_fns.addMonths)(displayMonth, 1)) })
6404
6404
  ] }),
@@ -6410,8 +6410,8 @@ function YearSkipHeader(props) {
6410
6410
  /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(IconButton, { color: "rgba(100, 100, 100, 1)" /* Gray700 */, icon: "chevronLeft", onClick: () => goToMonth((0, import_date_fns.addYears)(displayMonth, -1)) }),
6411
6411
  /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("h1", { ...(0, import_runtime12.trussProps)({
6412
6412
  fontWeight: "fw4",
6413
- fontSize: "md_fontSize",
6414
- lineHeight: "md_lineHeight"
6413
+ fontSize: "fz_16px",
6414
+ lineHeight: "lh_24px"
6415
6415
  }), children: (0, import_date_fns.format)(displayMonth, "yyyy") }),
6416
6416
  /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(IconButton, { color: "rgba(100, 100, 100, 1)" /* Gray700 */, icon: "chevronRight", onClick: () => goToMonth((0, import_date_fns.addYears)(displayMonth, 1)) })
6417
6417
  ] })
@@ -6435,8 +6435,8 @@ function WeekHeader() {
6435
6435
  paddingRight: "pr1",
6436
6436
  paddingLeft: "pl1",
6437
6437
  fontWeight: "fw4",
6438
- fontSize: "xs_fontSize",
6439
- lineHeight: "xs_lineHeight",
6438
+ fontSize: "fz_12px",
6439
+ lineHeight: "lh_16px",
6440
6440
  color: "gray400"
6441
6441
  }), key: (0, import_date_fns2.format)(day, "EEEE") }, /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { "aria-hidden": "true", children: (0, import_date_fns2.format)(day, "EEEEE") }), /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: "rdp-vhidden", children: (0, import_date_fns2.format)(day, "EEEE") }))) }) });
6442
6442
  }
@@ -6457,8 +6457,8 @@ function DatePicker(props) {
6457
6457
  display: "dib",
6458
6458
  backgroundColor: "bgWhite",
6459
6459
  fontWeight: "fw4",
6460
- fontSize: "xs_fontSize",
6461
- lineHeight: "xs_lineHeight"
6460
+ fontSize: "fz_12px",
6461
+ lineHeight: "lh_16px"
6462
6462
  }), ...tid, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
6463
6463
  import_react_day_picker3.DayPicker,
6464
6464
  {
@@ -6511,8 +6511,8 @@ function DateRangePicker(props) {
6511
6511
  display: "dib",
6512
6512
  backgroundColor: "bgWhite",
6513
6513
  fontWeight: "fw4",
6514
- fontSize: "xs_fontSize",
6515
- lineHeight: "xs_lineHeight"
6514
+ fontSize: "fz_12px",
6515
+ lineHeight: "lh_16px"
6516
6516
  }), ...tid, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(import_react_day_picker4.DayPicker, { mode: "range", selected: range, components: {
6517
6517
  Caption: useYearPicker ? YearSkipHeader : Header,
6518
6518
  Head: WeekHeader,
@@ -6555,8 +6555,8 @@ function MenuSectionImpl(props) {
6555
6555
  const tid = useTestIds(props);
6556
6556
  return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(import_jsx_runtime20.Fragment, { children: [
6557
6557
  isPersistentSection && /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("li", { ...separatorProps, ...(0, import_runtime17.trussProps)({
6558
- borderTopStyle: "bt_borderTopStyle",
6559
- borderTopWidth: "bt_borderTopWidth",
6558
+ borderTopStyle: "bts_solid",
6559
+ borderTopWidth: "btw_1px",
6560
6560
  borderColor: "bcGray200"
6561
6561
  }) }),
6562
6562
  /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("li", { ...itemProps, ...(0, import_runtime17.trussProps)({
@@ -6568,9 +6568,9 @@ function MenuSectionImpl(props) {
6568
6568
  color: "white"
6569
6569
  } : {}
6570
6570
  }), children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("ul", { ...(0, import_runtime17.trussProps)({
6571
- padding: "listReset_padding",
6572
- margin: "listReset_margin",
6573
- listStyle: "listReset_listStyle"
6571
+ padding: "p_0",
6572
+ margin: "m_0",
6573
+ listStyle: "lis_none"
6574
6574
  }), ...groupProps, ...tid[isPersistentSection ? "persistentItems" : "menuItems"], children: [...section.childNodes].map((item) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(MenuItemImpl, { item, state, onClose, contrast, ...tid }, item.key)) }) })
6575
6575
  ] });
6576
6576
  }
@@ -6598,8 +6598,8 @@ function HelperText(props) {
6598
6598
  return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { ...(0, import_runtime18.trussProps)({
6599
6599
  color: "gray700",
6600
6600
  fontWeight: "fw4",
6601
- fontSize: "xs_fontSize",
6602
- lineHeight: "xs_lineHeight",
6601
+ fontSize: "fz_12px",
6602
+ lineHeight: "lh_16px",
6603
6603
  marginTop: "mt_4px",
6604
6604
  ...contrast ? {
6605
6605
  color: "gray100"
@@ -6630,8 +6630,8 @@ function LabelComponent(props) {
6630
6630
  alignItems: "aic",
6631
6631
  gap: "gap1",
6632
6632
  fontWeight: "fw4",
6633
- fontSize: "sm_fontSize",
6634
- lineHeight: "sm_lineHeight",
6633
+ fontSize: "fz_14px",
6634
+ lineHeight: "lh_20px",
6635
6635
  color: "gray700",
6636
6636
  marginBottom: ["mb_var", {
6637
6637
  "--marginBottom": `${inline ? 0 : 4}px`
@@ -6663,8 +6663,8 @@ function InlineLabel({
6663
6663
  }) {
6664
6664
  return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)("label", { ...labelProps, ...others, ...(0, import_runtime19.trussProps)({
6665
6665
  fontWeight: "fw4",
6666
- fontSize: "sm_fontSize",
6667
- lineHeight: "sm_lineHeight",
6666
+ fontSize: "fz_14px",
6667
+ lineHeight: "lh_20px",
6668
6668
  whiteSpace: "wsnw",
6669
6669
  color: "color_currentColor",
6670
6670
  paddingRight: "pr_4px",
@@ -7093,58 +7093,58 @@ function KeptGroupRow(props) {
7093
7093
  var __typography = {
7094
7094
  xs2: {
7095
7095
  fontWeight: "fw4",
7096
- fontSize: "xs2_fontSize",
7097
- lineHeight: "xs2_lineHeight"
7096
+ fontSize: "fz_10px",
7097
+ lineHeight: "lh_14px"
7098
7098
  },
7099
7099
  xs2Sb: {
7100
7100
  fontWeight: "fw6",
7101
- fontSize: "xs2Sb_fontSize",
7102
- lineHeight: "xs2Sb_lineHeight"
7101
+ fontSize: "fz_10px",
7102
+ lineHeight: "lh_14px"
7103
7103
  },
7104
7104
  xs: {
7105
7105
  fontWeight: "fw4",
7106
- fontSize: "xs_fontSize",
7107
- lineHeight: "xs_lineHeight"
7106
+ fontSize: "fz_12px",
7107
+ lineHeight: "lh_16px"
7108
7108
  },
7109
7109
  xsSb: {
7110
7110
  fontWeight: "fw6",
7111
- fontSize: "xsSb_fontSize",
7112
- lineHeight: "xsSb_lineHeight"
7111
+ fontSize: "fz_12px",
7112
+ lineHeight: "lh_16px"
7113
7113
  },
7114
7114
  sm: {
7115
7115
  fontWeight: "fw4",
7116
- fontSize: "sm_fontSize",
7117
- lineHeight: "sm_lineHeight"
7116
+ fontSize: "fz_14px",
7117
+ lineHeight: "lh_20px"
7118
7118
  },
7119
7119
  smSb: {
7120
7120
  fontWeight: "fw6",
7121
- fontSize: "smSb_fontSize",
7122
- lineHeight: "smSb_lineHeight"
7121
+ fontSize: "fz_14px",
7122
+ lineHeight: "lh_20px"
7123
7123
  },
7124
7124
  md: {
7125
7125
  fontWeight: "fw4",
7126
- fontSize: "md_fontSize",
7127
- lineHeight: "md_lineHeight"
7126
+ fontSize: "fz_16px",
7127
+ lineHeight: "lh_24px"
7128
7128
  },
7129
7129
  mdSb: {
7130
7130
  fontWeight: "fw6",
7131
- fontSize: "mdSb_fontSize",
7132
- lineHeight: "mdSb_lineHeight"
7131
+ fontSize: "fz_16px",
7132
+ lineHeight: "lh_24px"
7133
7133
  },
7134
7134
  lg: {
7135
7135
  fontWeight: "fw6",
7136
- fontSize: "lg_fontSize",
7137
- lineHeight: "lg_lineHeight"
7136
+ fontSize: "fz_18px",
7137
+ lineHeight: "lh_28px"
7138
7138
  },
7139
7139
  xl: {
7140
7140
  fontWeight: "fw6",
7141
- fontSize: "xl_fontSize",
7142
- lineHeight: "xl_lineHeight"
7141
+ fontSize: "fz_20px",
7142
+ lineHeight: "lh_28px"
7143
7143
  },
7144
7144
  xl2: {
7145
7145
  fontWeight: "fw6",
7146
- fontSize: "xl2_fontSize",
7147
- lineHeight: "xl2_lineHeight"
7146
+ fontSize: "fz_30px",
7147
+ lineHeight: "lh_36px"
7148
7148
  }
7149
7149
  };
7150
7150
  function memoizedTableStyles() {
@@ -7169,8 +7169,8 @@ function memoizedTableStyles() {
7169
7169
  cellCss: {
7170
7170
  ...{
7171
7171
  fontWeight: "fw6",
7172
- fontSize: "xsSb_fontSize",
7173
- lineHeight: "xsSb_lineHeight",
7172
+ fontSize: "fz_12px",
7173
+ lineHeight: "lh_16px",
7174
7174
  minHeight: "mh_56px",
7175
7175
  color: "gray700",
7176
7176
  backgroundColor: "bgGray100",
@@ -7185,13 +7185,13 @@ function memoizedTableStyles() {
7185
7185
  firstContentColumn: {
7186
7186
  ...{
7187
7187
  fontWeight: "fw4",
7188
- fontSize: "sm_fontSize",
7189
- lineHeight: "sm_lineHeight"
7188
+ fontSize: "fz_14px",
7189
+ lineHeight: "lh_20px"
7190
7190
  },
7191
7191
  ...allWhite && {
7192
7192
  fontWeight: "fw6",
7193
- fontSize: "smSb_fontSize",
7194
- lineHeight: "smSb_lineHeight",
7193
+ fontSize: "fz_14px",
7194
+ lineHeight: "lh_20px",
7195
7195
  color: "gray900"
7196
7196
  }
7197
7197
  }
@@ -7199,8 +7199,8 @@ function memoizedTableStyles() {
7199
7199
  2: {
7200
7200
  firstContentColumn: {
7201
7201
  fontWeight: "fw4",
7202
- fontSize: "xs_fontSize",
7203
- lineHeight: "xs_lineHeight",
7202
+ fontSize: "fz_12px",
7203
+ lineHeight: "lh_16px",
7204
7204
  paddingLeft: "pl3"
7205
7205
  }
7206
7206
  },
@@ -7208,8 +7208,8 @@ function memoizedTableStyles() {
7208
7208
  3: {
7209
7209
  firstContentColumn: {
7210
7210
  fontWeight: "fw4",
7211
- fontSize: "xs_fontSize",
7212
- lineHeight: "xs_lineHeight",
7211
+ fontSize: "fz_12px",
7212
+ lineHeight: "lh_16px",
7213
7213
  paddingLeft: "pl_36px"
7214
7214
  }
7215
7215
  }
@@ -7218,8 +7218,8 @@ function memoizedTableStyles() {
7218
7218
  1: {
7219
7219
  firstContentColumn: {
7220
7220
  fontWeight: "fw4",
7221
- fontSize: "xs_fontSize",
7222
- lineHeight: "xs_lineHeight",
7221
+ fontSize: "fz_12px",
7222
+ lineHeight: "lh_16px",
7223
7223
  paddingLeft: "pl3"
7224
7224
  }
7225
7225
  }
@@ -7236,10 +7236,10 @@ function memoizedTableStyles() {
7236
7236
  backgroundColor: "bgWhite"
7237
7237
  },
7238
7238
  ...bordered && {
7239
- borderLeftStyle: "bl_borderLeftStyle",
7240
- borderLeftWidth: "bl_borderLeftWidth",
7241
- borderRightStyle: "br_borderRightStyle",
7242
- borderRightWidth: "br_borderRightWidth",
7239
+ borderLeftStyle: "bls_solid",
7240
+ borderLeftWidth: "blw_1px",
7241
+ borderRightStyle: "brs_solid",
7242
+ borderRightWidth: "brw_1px",
7243
7243
  borderColor: "bcGray200"
7244
7244
  }
7245
7245
  },
@@ -7251,12 +7251,12 @@ function memoizedTableStyles() {
7251
7251
  ...{
7252
7252
  color: "gray700",
7253
7253
  fontWeight: "fw6",
7254
- fontSize: "xsSb_fontSize",
7255
- lineHeight: "xsSb_lineHeight",
7254
+ fontSize: "fz_12px",
7255
+ lineHeight: "lh_16px",
7256
7256
  backgroundColor: "bgGray200",
7257
7257
  alignItems: "aic",
7258
- paddingLeft: "px_12px_paddingLeft",
7259
- paddingRight: "px_12px_paddingRight",
7258
+ paddingLeft: "pl_12px",
7259
+ paddingRight: "pr_12px",
7260
7260
  whiteSpace: "whiteSpace_unset",
7261
7261
  height: "h_40px"
7262
7262
  },
@@ -7268,28 +7268,28 @@ function memoizedTableStyles() {
7268
7268
  backgroundColor: "bgGray100",
7269
7269
  color: "gray700",
7270
7270
  fontWeight: "fw6",
7271
- fontSize: "xsSb_fontSize",
7272
- lineHeight: "xsSb_lineHeight",
7271
+ fontSize: "fz_12px",
7272
+ lineHeight: "lh_16px",
7273
7273
  height: ["h_var", {
7274
7274
  "--height": `${totalsRowHeight}px`
7275
7275
  }],
7276
- paddingTop: "p_12px_paddingTop",
7277
- paddingBottom: "p_12px_paddingBottom",
7278
- paddingRight: "p_12px_paddingRight",
7279
- paddingLeft: "p_12px_paddingLeft"
7276
+ paddingTop: "pt_12px",
7277
+ paddingBottom: "pb_12px",
7278
+ paddingRight: "pr_12px",
7279
+ paddingLeft: "pl_12px"
7280
7280
  },
7281
7281
  expandableHeaderCss: {
7282
7282
  backgroundColor: "bgWhite",
7283
7283
  color: "gray900",
7284
7284
  fontWeight: "fw6",
7285
- fontSize: "xsSb_fontSize",
7286
- lineHeight: "xsSb_lineHeight",
7285
+ fontSize: "fz_12px",
7286
+ lineHeight: "lh_16px",
7287
7287
  whiteSpace: "wsn",
7288
7288
  height: ["h_var", {
7289
7289
  "--height": `${expandableHeaderRowHeight}px`
7290
7290
  }],
7291
- paddingLeft: "px_12px_paddingLeft",
7292
- paddingRight: "px_12px_paddingRight",
7291
+ paddingLeft: "pl_12px",
7292
+ paddingRight: "pr_12px",
7293
7293
  paddingTop: "pt0",
7294
7294
  paddingBottom: "pb0",
7295
7295
  boxShadow: ["boxShadow_var", {
@@ -7311,15 +7311,15 @@ function memoizedTableStyles() {
7311
7311
  alignItems: ["ai_var", {
7312
7312
  "--alignItems": alignItems
7313
7313
  }],
7314
- paddingLeft: "px_12px_paddingLeft",
7315
- paddingRight: "px_12px_paddingRight",
7314
+ paddingLeft: "pl_12px",
7315
+ paddingRight: "pr_12px",
7316
7316
  boxShadow: ["boxShadow_var", {
7317
7317
  "--boxShadow": `inset 0 -1px 0 ${"rgba(236, 235, 235, 1)" /* Gray200 */}`
7318
7318
  }]
7319
7319
  },
7320
7320
  ...rowHeight === "flexible" ? {
7321
- paddingTop: "py_12px_paddingTop",
7322
- paddingBottom: "py_12px_paddingBottom"
7321
+ paddingTop: "pt_12px",
7322
+ paddingBottom: "pb_12px"
7323
7323
  } : {
7324
7324
  whiteSpace: "wsnw",
7325
7325
  height: ["h_var", {
@@ -7331,21 +7331,21 @@ function memoizedTableStyles() {
7331
7331
  } : {}
7332
7332
  },
7333
7333
  firstCellCss: bordered ? {
7334
- borderLeftStyle: "bl_borderLeftStyle",
7335
- borderLeftWidth: "bl_borderLeftWidth",
7334
+ borderLeftStyle: "bls_solid",
7335
+ borderLeftWidth: "blw_1px",
7336
7336
  borderColor: "bcGray200"
7337
7337
  } : void 0,
7338
7338
  lastCellCss: bordered ? {
7339
- borderRightStyle: "br_borderRightStyle",
7340
- borderRightWidth: "br_borderRightWidth",
7339
+ borderRightStyle: "brs_solid",
7340
+ borderRightWidth: "brw_1px",
7341
7341
  borderColor: "bcGray200"
7342
7342
  } : void 0,
7343
7343
  borderStyle: {
7344
7344
  borderColor: "bcGray200"
7345
7345
  },
7346
7346
  firstRowCellCss: bordered ? {
7347
- borderTopStyle: "bt_borderTopStyle",
7348
- borderTopWidth: "bt_borderTopWidth",
7347
+ borderTopStyle: "bts_solid",
7348
+ borderTopWidth: "btw_1px",
7349
7349
  borderColor: "bcGray200"
7350
7350
  } : void 0,
7351
7351
  firstRowFirstCellCss: {
@@ -7358,8 +7358,8 @@ function memoizedTableStyles() {
7358
7358
  // remove the inset shadow and, when bordered, replace it with a true bottom border.
7359
7359
  lastRowCellCss: bordered ? {
7360
7360
  boxShadow: "bsh0",
7361
- borderBottomStyle: "bb_borderBottomStyle",
7362
- borderBottomWidth: "bb_borderBottomWidth",
7361
+ borderBottomStyle: "bbs_solid",
7362
+ borderBottomWidth: "bbw_1px",
7363
7363
  borderColor: "bcGray200"
7364
7364
  } : {
7365
7365
  boxShadow: "bsh0"
@@ -7383,8 +7383,8 @@ function memoizedTableStyles() {
7383
7383
  backgroundColor: "bgYellow100",
7384
7384
  color: "gray900",
7385
7385
  fontWeight: "fw6",
7386
- fontSize: "xsSb_fontSize",
7387
- lineHeight: "xsSb_lineHeight",
7386
+ fontSize: "fz_12px",
7387
+ lineHeight: "lh_16px",
7388
7388
  display: "df",
7389
7389
  alignItems: "aic"
7390
7390
  },
@@ -7414,8 +7414,8 @@ var condensedStyle = {
7414
7414
  }).firstRowMessageCss,
7415
7415
  ...{
7416
7416
  fontWeight: "fw4",
7417
- fontSize: "xs_fontSize",
7418
- lineHeight: "xs_lineHeight",
7417
+ fontSize: "fz_12px",
7418
+ lineHeight: "lh_16px",
7419
7419
  color: "gray900"
7420
7420
  }
7421
7421
  }
@@ -7434,10 +7434,10 @@ var cardStyle = {
7434
7434
  boxShadow: "h_bshHover"
7435
7435
  },
7436
7436
  firstRowCss: {
7437
- borderLeftStyle: "bl_borderLeftStyle",
7438
- borderLeftWidth: "bl_borderLeftWidth",
7439
- borderRightStyle: "br_borderRightStyle",
7440
- borderRightWidth: "br_borderRightWidth",
7437
+ borderLeftStyle: "bls_solid",
7438
+ borderLeftWidth: "blw_1px",
7439
+ borderRightStyle: "brs_solid",
7440
+ borderRightWidth: "brw_1px",
7441
7441
  borderColor: "bcGray200",
7442
7442
  borderRadius: "borderRadius_8px_8px_0_0",
7443
7443
  overflow: "oh"
@@ -7461,8 +7461,8 @@ var cardStyle = {
7461
7461
  marginRight: "mr0",
7462
7462
  marginLeft: "ml0",
7463
7463
  fontWeight: "fw6",
7464
- fontSize: "xsSb_fontSize",
7465
- lineHeight: "xsSb_lineHeight",
7464
+ fontSize: "fz_12px",
7465
+ lineHeight: "lh_16px",
7466
7466
  color: "gray700"
7467
7467
  }
7468
7468
  },
@@ -7871,58 +7871,58 @@ var __maybeInc3 = (inc) => {
7871
7871
  var __typography2 = {
7872
7872
  xs2: {
7873
7873
  fontWeight: "fw4",
7874
- fontSize: "xs2_fontSize",
7875
- lineHeight: "xs2_lineHeight"
7874
+ fontSize: "fz_10px",
7875
+ lineHeight: "lh_14px"
7876
7876
  },
7877
7877
  xs2Sb: {
7878
7878
  fontWeight: "fw6",
7879
- fontSize: "xs2Sb_fontSize",
7880
- lineHeight: "xs2Sb_lineHeight"
7879
+ fontSize: "fz_10px",
7880
+ lineHeight: "lh_14px"
7881
7881
  },
7882
7882
  xs: {
7883
7883
  fontWeight: "fw4",
7884
- fontSize: "xs_fontSize",
7885
- lineHeight: "xs_lineHeight"
7884
+ fontSize: "fz_12px",
7885
+ lineHeight: "lh_16px"
7886
7886
  },
7887
7887
  xsSb: {
7888
7888
  fontWeight: "fw6",
7889
- fontSize: "xsSb_fontSize",
7890
- lineHeight: "xsSb_lineHeight"
7889
+ fontSize: "fz_12px",
7890
+ lineHeight: "lh_16px"
7891
7891
  },
7892
7892
  sm: {
7893
7893
  fontWeight: "fw4",
7894
- fontSize: "sm_fontSize",
7895
- lineHeight: "sm_lineHeight"
7894
+ fontSize: "fz_14px",
7895
+ lineHeight: "lh_20px"
7896
7896
  },
7897
7897
  smSb: {
7898
7898
  fontWeight: "fw6",
7899
- fontSize: "smSb_fontSize",
7900
- lineHeight: "smSb_lineHeight"
7899
+ fontSize: "fz_14px",
7900
+ lineHeight: "lh_20px"
7901
7901
  },
7902
7902
  md: {
7903
7903
  fontWeight: "fw4",
7904
- fontSize: "md_fontSize",
7905
- lineHeight: "md_lineHeight"
7904
+ fontSize: "fz_16px",
7905
+ lineHeight: "lh_24px"
7906
7906
  },
7907
7907
  mdSb: {
7908
7908
  fontWeight: "fw6",
7909
- fontSize: "mdSb_fontSize",
7910
- lineHeight: "mdSb_lineHeight"
7909
+ fontSize: "fz_16px",
7910
+ lineHeight: "lh_24px"
7911
7911
  },
7912
7912
  lg: {
7913
7913
  fontWeight: "fw6",
7914
- fontSize: "lg_fontSize",
7915
- lineHeight: "lg_lineHeight"
7914
+ fontSize: "fz_18px",
7915
+ lineHeight: "lh_28px"
7916
7916
  },
7917
7917
  xl: {
7918
7918
  fontWeight: "fw6",
7919
- fontSize: "xl_fontSize",
7920
- lineHeight: "xl_lineHeight"
7919
+ fontSize: "fz_20px",
7920
+ lineHeight: "lh_28px"
7921
7921
  },
7922
7922
  xl2: {
7923
7923
  fontWeight: "fw6",
7924
- fontSize: "xl2_fontSize",
7925
- lineHeight: "xl2_lineHeight"
7924
+ fontSize: "fz_30px",
7925
+ lineHeight: "lh_36px"
7926
7926
  }
7927
7927
  };
7928
7928
  function maybeApplyFunction(row, maybeFn) {
@@ -8256,8 +8256,8 @@ function ErrorMessage(props) {
8256
8256
  const errorEl = errorMsg ? /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("div", { ...(0, import_runtime25.trussProps)({
8257
8257
  color: "red600",
8258
8258
  fontWeight: "fw4",
8259
- fontSize: "sm_fontSize",
8260
- lineHeight: "sm_lineHeight",
8259
+ fontSize: "fz_14px",
8260
+ lineHeight: "lh_20px",
8261
8261
  display: "df",
8262
8262
  marginTop: "mt_4px",
8263
8263
  ...contrast ? {
@@ -8289,58 +8289,58 @@ var __maybeInc4 = (inc) => {
8289
8289
  var __typography3 = {
8290
8290
  xs2: {
8291
8291
  fontWeight: "fw4",
8292
- fontSize: "xs2_fontSize",
8293
- lineHeight: "xs2_lineHeight"
8292
+ fontSize: "fz_10px",
8293
+ lineHeight: "lh_14px"
8294
8294
  },
8295
8295
  xs2Sb: {
8296
8296
  fontWeight: "fw6",
8297
- fontSize: "xs2Sb_fontSize",
8298
- lineHeight: "xs2Sb_lineHeight"
8297
+ fontSize: "fz_10px",
8298
+ lineHeight: "lh_14px"
8299
8299
  },
8300
8300
  xs: {
8301
8301
  fontWeight: "fw4",
8302
- fontSize: "xs_fontSize",
8303
- lineHeight: "xs_lineHeight"
8302
+ fontSize: "fz_12px",
8303
+ lineHeight: "lh_16px"
8304
8304
  },
8305
8305
  xsSb: {
8306
8306
  fontWeight: "fw6",
8307
- fontSize: "xsSb_fontSize",
8308
- lineHeight: "xsSb_lineHeight"
8307
+ fontSize: "fz_12px",
8308
+ lineHeight: "lh_16px"
8309
8309
  },
8310
8310
  sm: {
8311
8311
  fontWeight: "fw4",
8312
- fontSize: "sm_fontSize",
8313
- lineHeight: "sm_lineHeight"
8312
+ fontSize: "fz_14px",
8313
+ lineHeight: "lh_20px"
8314
8314
  },
8315
8315
  smSb: {
8316
8316
  fontWeight: "fw6",
8317
- fontSize: "smSb_fontSize",
8318
- lineHeight: "smSb_lineHeight"
8317
+ fontSize: "fz_14px",
8318
+ lineHeight: "lh_20px"
8319
8319
  },
8320
8320
  md: {
8321
8321
  fontWeight: "fw4",
8322
- fontSize: "md_fontSize",
8323
- lineHeight: "md_lineHeight"
8322
+ fontSize: "fz_16px",
8323
+ lineHeight: "lh_24px"
8324
8324
  },
8325
8325
  mdSb: {
8326
8326
  fontWeight: "fw6",
8327
- fontSize: "mdSb_fontSize",
8328
- lineHeight: "mdSb_lineHeight"
8327
+ fontSize: "fz_16px",
8328
+ lineHeight: "lh_24px"
8329
8329
  },
8330
8330
  lg: {
8331
8331
  fontWeight: "fw6",
8332
- fontSize: "lg_fontSize",
8333
- lineHeight: "lg_lineHeight"
8332
+ fontSize: "fz_18px",
8333
+ lineHeight: "lh_28px"
8334
8334
  },
8335
8335
  xl: {
8336
8336
  fontWeight: "fw6",
8337
- fontSize: "xl_fontSize",
8338
- lineHeight: "xl_lineHeight"
8337
+ fontSize: "fz_20px",
8338
+ lineHeight: "lh_28px"
8339
8339
  },
8340
8340
  xl2: {
8341
8341
  fontWeight: "fw6",
8342
- fontSize: "xl2_fontSize",
8343
- lineHeight: "xl2_lineHeight"
8342
+ fontSize: "fz_30px",
8343
+ lineHeight: "lh_36px"
8344
8344
  }
8345
8345
  };
8346
8346
  function TextFieldBase(props) {
@@ -8568,7 +8568,7 @@ function TextFieldBase(props) {
8568
8568
  } : {
8569
8569
  whiteSpace: "wsnw",
8570
8570
  overflow: "oh",
8571
- textOverflow: "truncate_textOverflow"
8571
+ textOverflow: "to_ellipsis"
8572
8572
  }
8573
8573
  },
8574
8574
  hover: {
@@ -8648,13 +8648,13 @@ function TextFieldBase(props) {
8648
8648
  ...unfocusedPlaceholder && !isFocused && {
8649
8649
  position: "absolute",
8650
8650
  overflow: "oh",
8651
- clip: "visuallyHidden_clip",
8652
- clipPath: "visuallyHidden_clipPath",
8653
- border: "visuallyHidden_border",
8654
- height: "visuallyHidden_height",
8655
- margin: "visuallyHidden_margin",
8656
- width: "visuallyHidden_width",
8657
- padding: "visuallyHidden_padding",
8651
+ clip: "cli_inset_50",
8652
+ clipPath: "clp_none",
8653
+ border: "bd_0",
8654
+ height: "h_1px",
8655
+ margin: "m_neg1px",
8656
+ width: "w_1px",
8657
+ padding: "p_0",
8658
8658
  whiteSpace: "wsnw",
8659
8659
  opacity: "o0"
8660
8660
  },
@@ -8677,7 +8677,7 @@ function TextFieldBase(props) {
8677
8677
  ...wrap === false ? {
8678
8678
  whiteSpace: "wsnw",
8679
8679
  overflow: "oh",
8680
- textOverflow: "truncate_textOverflow"
8680
+ textOverflow: "to_ellipsis"
8681
8681
  } : {}
8682
8682
  },
8683
8683
  ...xss
@@ -8742,13 +8742,13 @@ function TextFieldBase(props) {
8742
8742
  ...isFocused && {
8743
8743
  position: "absolute",
8744
8744
  overflow: "oh",
8745
- clip: "visuallyHidden_clip",
8746
- clipPath: "visuallyHidden_clipPath",
8747
- border: "visuallyHidden_border",
8748
- height: "visuallyHidden_height",
8749
- margin: "visuallyHidden_margin",
8750
- width: "visuallyHidden_width",
8751
- padding: "visuallyHidden_padding",
8745
+ clip: "cli_inset_50",
8746
+ clipPath: "clp_none",
8747
+ border: "bd_0",
8748
+ height: "h_1px",
8749
+ margin: "m_neg1px",
8750
+ width: "w_1px",
8751
+ padding: "p_0",
8752
8752
  whiteSpace: "wsnw",
8753
8753
  opacity: "o0"
8754
8754
  }
@@ -8918,8 +8918,8 @@ function Menu(props) {
8918
8918
  ...{
8919
8919
  display: "df",
8920
8920
  flexDirection: "fdc",
8921
- marginTop: "my_4px_marginTop",
8922
- marginBottom: "my_4px_marginBottom",
8921
+ marginTop: "mt_4px",
8922
+ marginBottom: "mb_4px",
8923
8923
  outline: "outline0",
8924
8924
  borderRadius: "br4",
8925
8925
  boxShadow: "bshBasic",
@@ -8938,9 +8938,9 @@ function Menu(props) {
8938
8938
  }), children: [
8939
8939
  searchable && /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(MenuSearchField, { label: "", value: search, placeholder: "Search...", labelStyle: "inline", onChange: setSearch, ...tid }),
8940
8940
  /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("ul", { ...(0, import_runtime27.trussProps)({
8941
- padding: "listReset_padding",
8942
- margin: "listReset_margin",
8943
- listStyle: "listReset_listStyle"
8941
+ padding: "p_0",
8942
+ margin: "m_0",
8943
+ listStyle: "lis_none"
8944
8944
  }), ...menuProps, ref: menuRef, ...tid.menu, children: [...state.collection].map((item) => /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(MenuSectionImpl, { section: item, state, onClose, contrast, ...tid }, item.key)) })
8945
8945
  ] }) });
8946
8946
  }
@@ -8958,58 +8958,58 @@ var import_jsx_runtime32 = require("react/jsx-runtime");
8958
8958
  var __typography4 = {
8959
8959
  xs2: {
8960
8960
  fontWeight: "fw4",
8961
- fontSize: "xs2_fontSize",
8962
- lineHeight: "xs2_lineHeight"
8961
+ fontSize: "fz_10px",
8962
+ lineHeight: "lh_14px"
8963
8963
  },
8964
8964
  xs2Sb: {
8965
8965
  fontWeight: "fw6",
8966
- fontSize: "xs2Sb_fontSize",
8967
- lineHeight: "xs2Sb_lineHeight"
8966
+ fontSize: "fz_10px",
8967
+ lineHeight: "lh_14px"
8968
8968
  },
8969
8969
  xs: {
8970
8970
  fontWeight: "fw4",
8971
- fontSize: "xs_fontSize",
8972
- lineHeight: "xs_lineHeight"
8971
+ fontSize: "fz_12px",
8972
+ lineHeight: "lh_16px"
8973
8973
  },
8974
8974
  xsSb: {
8975
8975
  fontWeight: "fw6",
8976
- fontSize: "xsSb_fontSize",
8977
- lineHeight: "xsSb_lineHeight"
8976
+ fontSize: "fz_12px",
8977
+ lineHeight: "lh_16px"
8978
8978
  },
8979
8979
  sm: {
8980
8980
  fontWeight: "fw4",
8981
- fontSize: "sm_fontSize",
8982
- lineHeight: "sm_lineHeight"
8981
+ fontSize: "fz_14px",
8982
+ lineHeight: "lh_20px"
8983
8983
  },
8984
8984
  smSb: {
8985
8985
  fontWeight: "fw6",
8986
- fontSize: "smSb_fontSize",
8987
- lineHeight: "smSb_lineHeight"
8986
+ fontSize: "fz_14px",
8987
+ lineHeight: "lh_20px"
8988
8988
  },
8989
8989
  md: {
8990
8990
  fontWeight: "fw4",
8991
- fontSize: "md_fontSize",
8992
- lineHeight: "md_lineHeight"
8991
+ fontSize: "fz_16px",
8992
+ lineHeight: "lh_24px"
8993
8993
  },
8994
8994
  mdSb: {
8995
8995
  fontWeight: "fw6",
8996
- fontSize: "mdSb_fontSize",
8997
- lineHeight: "mdSb_lineHeight"
8996
+ fontSize: "fz_16px",
8997
+ lineHeight: "lh_24px"
8998
8998
  },
8999
8999
  lg: {
9000
9000
  fontWeight: "fw6",
9001
- fontSize: "lg_fontSize",
9002
- lineHeight: "lg_lineHeight"
9001
+ fontSize: "fz_18px",
9002
+ lineHeight: "lh_28px"
9003
9003
  },
9004
9004
  xl: {
9005
9005
  fontWeight: "fw6",
9006
- fontSize: "xl_fontSize",
9007
- lineHeight: "xl_lineHeight"
9006
+ fontSize: "fz_20px",
9007
+ lineHeight: "lh_28px"
9008
9008
  },
9009
9009
  xl2: {
9010
9010
  fontWeight: "fw6",
9011
- fontSize: "xl2_fontSize",
9012
- lineHeight: "xl2_lineHeight"
9011
+ fontSize: "fz_30px",
9012
+ lineHeight: "lh_36px"
9013
9013
  }
9014
9014
  };
9015
9015
  function Avatar({
@@ -9294,8 +9294,8 @@ function Button(props) {
9294
9294
  ...(0, import_runtime30.mergeProps)(asLink ? navLink : void 0, void 0, {
9295
9295
  ...{
9296
9296
  fontWeight: "fw6",
9297
- fontSize: "buttonBase_fontSize",
9298
- lineHeight: "buttonBase_lineHeight",
9297
+ fontSize: "fz_14px",
9298
+ lineHeight: "lh_20px",
9299
9299
  outline: "outline0",
9300
9300
  borderRadius: "br8",
9301
9301
  display: "dif",
@@ -9667,8 +9667,8 @@ var variantStyles = (contrast) => ({
9667
9667
  var sizeStyles = {
9668
9668
  sm: {
9669
9669
  height: "h_32px",
9670
- paddingLeft: "px_12px_paddingLeft",
9671
- paddingRight: "px_12px_paddingRight"
9670
+ paddingLeft: "pl_12px",
9671
+ paddingRight: "pr_12px"
9672
9672
  },
9673
9673
  md: {
9674
9674
  height: "h_40px",
@@ -9778,14 +9778,14 @@ var baseStyles = {
9778
9778
  display: "df",
9779
9779
  alignItems: "aic",
9780
9780
  height: "h_32px",
9781
- paddingTop: "py_6px_paddingTop",
9782
- paddingBottom: "py_6px_paddingBottom",
9781
+ paddingTop: "pt_6px",
9782
+ paddingBottom: "pb_6px",
9783
9783
  paddingLeft: "pl1",
9784
9784
  paddingRight: "pr1",
9785
9785
  borderRadius: "br4",
9786
9786
  fontWeight: "fw6",
9787
- fontSize: "smSb_fontSize",
9788
- lineHeight: "smSb_lineHeight",
9787
+ fontSize: "fz_14px",
9788
+ lineHeight: "lh_20px",
9789
9789
  outline: "outline0"
9790
9790
  };
9791
9791
  var navLinkVariantStyles = (contrast) => ({
@@ -9965,8 +9965,8 @@ function ContextualModal(props) {
9965
9965
  }), ...tid, children: [
9966
9966
  title && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { ...(0, import_runtime33.trussProps)({
9967
9967
  fontWeight: "fw6",
9968
- fontSize: "lg_fontSize",
9969
- lineHeight: "lg_lineHeight",
9968
+ fontSize: "fz_18px",
9969
+ lineHeight: "lh_28px",
9970
9970
  textAlign: "tac"
9971
9971
  }), ...tid.title, children: title }),
9972
9972
  /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { ...tid.content, children: typeof content === "function" ? content(close) : content })
@@ -10003,8 +10003,8 @@ function AvatarGroup(props) {
10003
10003
  alignItems: "aic",
10004
10004
  gap: "gap1",
10005
10005
  fontWeight: "fw6",
10006
- fontSize: "xsSb_fontSize",
10007
- lineHeight: "xsSb_lineHeight"
10006
+ fontSize: "fz_12px",
10007
+ lineHeight: "lh_16px"
10008
10008
  }), children: [
10009
10009
  /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { ...(0, import_runtime34.trussProps)({
10010
10010
  display: "df",
@@ -10109,12 +10109,12 @@ function MenuItemImpl(props) {
10109
10109
  outline: "outline0",
10110
10110
  minHeight: "mh_42px",
10111
10111
  fontWeight: "fw4",
10112
- fontSize: "sm_fontSize",
10113
- lineHeight: "sm_lineHeight"
10112
+ fontSize: "fz_14px",
10113
+ lineHeight: "lh_20px"
10114
10114
  },
10115
10115
  ...menuItem.hasDivider ? {
10116
- borderBottomStyle: "bb_borderBottomStyle",
10117
- borderBottomWidth: "bb_borderBottomWidth",
10116
+ borderBottomStyle: "bbs_solid",
10117
+ borderBottomWidth: "bbw_1px",
10118
10118
  borderColor: "bcGray700"
10119
10119
  } : {},
10120
10120
  ...!isDisabled && isHovered ? contrast ? {
@@ -10427,7 +10427,7 @@ function ListBoxChip({
10427
10427
  ...{
10428
10428
  whiteSpace: "wsnw",
10429
10429
  overflow: "oh",
10430
- textOverflow: "truncate_textOverflow",
10430
+ textOverflow: "to_ellipsis",
10431
10431
  display: "dib"
10432
10432
  }
10433
10433
  }), title: label, children: label });
@@ -10513,8 +10513,8 @@ function ChipSelectField(props) {
10513
10513
  const chipStyles = {
10514
10514
  ...chipBaseStyles(),
10515
10515
  ...{
10516
- paddingTop: "py_2px_paddingTop",
10517
- paddingBottom: "py_2px_paddingBottom",
10516
+ paddingTop: "pt_2px",
10517
+ paddingBottom: "pb_2px",
10518
10518
  gap: "gap0",
10519
10519
  alignItems: "aiStretch"
10520
10520
  }
@@ -10683,10 +10683,10 @@ function ChipSelectField(props) {
10683
10683
  ...{
10684
10684
  textAlign: "tal",
10685
10685
  borderRadius: "br16",
10686
- paddingLeft: "px_10px_paddingLeft",
10687
- paddingRight: "px_10px_paddingRight",
10688
- paddingTop: "py_2px_paddingTop",
10689
- paddingBottom: "py_2px_paddingBottom",
10686
+ paddingLeft: "pl_10px",
10687
+ paddingRight: "pr_10px",
10688
+ paddingTop: "pt_2px",
10689
+ paddingBottom: "pb_2px",
10690
10690
  outline: "outline0",
10691
10691
  ...showClearButton ? {
10692
10692
  paddingRight: "pr_4px",
@@ -10696,10 +10696,10 @@ function ChipSelectField(props) {
10696
10696
  ...isDisabled ? chipDisabledStyles : chipHoverOnlyStyles
10697
10697
  }), title: state.selectedItem ? state.selectedItem.textValue : placeholder, ...tid, children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("span", { ...valueProps, ...(0, import_runtime38.trussProps)({
10698
10698
  overflow: "oh",
10699
- display: "lineClamp1_display",
10700
- WebkitBoxOrient: "lineClamp1_WebkitBoxOrient",
10701
- textOverflow: "lineClamp1_textOverflow",
10702
- WebkitLineClamp: "lineClamp1_WebkitLineClamp",
10699
+ display: "d_negwebkit_box",
10700
+ WebkitBoxOrient: "wbo_vertical",
10701
+ textOverflow: "to_ellipsis",
10702
+ WebkitLineClamp: "wlc_1",
10703
10703
  wordBreak: "wbba"
10704
10704
  }), children: state.selectedItem ? state.selectedItem.textValue : placeholder }) }),
10705
10705
  showClearButton && /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("button", { ...clearFocusProps, ...(0, import_runtime38.trussProps)({
@@ -10815,13 +10815,13 @@ function Option(props) {
10815
10815
  outline: "outline0",
10816
10816
  cursor: "cursorPointer",
10817
10817
  fontWeight: "fw4",
10818
- fontSize: "sm_fontSize",
10819
- lineHeight: "sm_lineHeight"
10818
+ fontSize: "fz_14px",
10819
+ lineHeight: "lh_20px"
10820
10820
  },
10821
10821
  // Assumes only one Persistent Item per list - will need to change to utilize Sections if that assumption is incorrect.
10822
10822
  ...isPersistentKey(item.key) ? {
10823
- borderTopStyle: "bt_borderTopStyle",
10824
- borderTopWidth: "bt_borderTopWidth",
10823
+ borderTopStyle: "bts_solid",
10824
+ borderTopWidth: "btw_1px",
10825
10825
  borderColor: "bcGray200"
10826
10826
  } : {},
10827
10827
  ...themeStyles.item,
@@ -11013,13 +11013,13 @@ var markSvgStyles = {
11013
11013
  };
11014
11014
  var labelStyles = {
11015
11015
  fontWeight: "fw4",
11016
- fontSize: "sm_fontSize",
11017
- lineHeight: "sm_lineHeight"
11016
+ fontSize: "fz_14px",
11017
+ lineHeight: "lh_20px"
11018
11018
  };
11019
11019
  var descStyles = {
11020
11020
  fontWeight: "fw4",
11021
- fontSize: "sm_fontSize",
11022
- lineHeight: "sm_lineHeight",
11021
+ fontSize: "fz_14px",
11022
+ lineHeight: "lh_20px",
11023
11023
  color: "gray700"
11024
11024
  };
11025
11025
  function StyledCheckbox(props) {
@@ -11124,8 +11124,8 @@ function TreeOption(props) {
11124
11124
  outline: "outline0",
11125
11125
  cursor: "cursorPointer",
11126
11126
  fontWeight: "fw4",
11127
- fontSize: "sm_fontSize",
11128
- lineHeight: "sm_lineHeight"
11127
+ fontSize: "fz_14px",
11128
+ lineHeight: "lh_20px"
11129
11129
  },
11130
11130
  ...listItemStyles.item,
11131
11131
  ...isHovered && !isDisabled ? listItemStyles.hover : {},
@@ -11315,8 +11315,8 @@ function ListBoxSection(props) {
11315
11315
  const childNodes = [...section.childNodes];
11316
11316
  return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(import_jsx_runtime50.Fragment, { children: [
11317
11317
  isPersistentSection && /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("li", { ...separatorProps, ...(0, import_runtime43.trussProps)({
11318
- borderTopStyle: "bt_borderTopStyle",
11319
- borderTopWidth: "bt_borderTopWidth",
11318
+ borderTopStyle: "bts_solid",
11319
+ borderTopWidth: "btw_1px",
11320
11320
  borderColor: "bcGray200"
11321
11321
  }) }),
11322
11322
  /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("li", { ...itemProps, ...(0, import_runtime43.trussProps)({
@@ -11324,9 +11324,9 @@ function ListBoxSection(props) {
11324
11324
  overflow: "oa"
11325
11325
  } : {}
11326
11326
  }), children: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)("ul", { ...(0, import_runtime43.trussProps)({
11327
- padding: "listReset_padding",
11328
- margin: "listReset_margin",
11329
- listStyle: "listReset_listStyle",
11327
+ padding: "p_0",
11328
+ margin: "m_0",
11329
+ listStyle: "lis_none",
11330
11330
  ...!isPersistentSection ? {
11331
11331
  height: ["h_var", {
11332
11332
  "--height": `${popoverHeight - sectionSeparatorHeight - persistentItemHeight}px`
@@ -11422,25 +11422,25 @@ function ListBox(props) {
11422
11422
  } : {}
11423
11423
  }), ref: listBoxRef, ...listBoxProps, children: [
11424
11424
  isMultiSelect && !isTree && state.selectionManager.selectedKeys.size > 0 && /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("ul", { ...(0, import_runtime45.trussProps)({
11425
- padding: "listReset_padding",
11426
- margin: "listReset_margin",
11427
- listStyle: "listReset_listStyle",
11425
+ padding: "p_0",
11426
+ margin: "m_0",
11427
+ listStyle: "lis_none",
11428
11428
  paddingTop: "pt2",
11429
11429
  paddingLeft: "pl2",
11430
11430
  paddingBottom: "pb1",
11431
11431
  paddingRight: "pr1",
11432
11432
  display: "df",
11433
- borderBottomStyle: "bb_borderBottomStyle",
11434
- borderBottomWidth: "bb_borderBottomWidth",
11433
+ borderBottomStyle: "bbs_solid",
11434
+ borderBottomWidth: "bbw_1px",
11435
11435
  borderColor: "bcGray200",
11436
11436
  flexWrap: "flexWrap_wrap",
11437
11437
  maxHeight: "maxh_50",
11438
11438
  overflow: "oa"
11439
11439
  }), ref: selectedList, children: selectedOptions.map((o) => /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(ListBoxToggleChip, { state, option: o, getOptionValue, getOptionLabel, disabled: state.disabledKeys.has(getOptionValue(o)) }, getOptionValue(o))) }),
11440
11440
  /* @__PURE__ */ (0, import_jsx_runtime52.jsx)("ul", { ...(0, import_runtime45.trussProps)({
11441
- padding: "listReset_padding",
11442
- margin: "listReset_margin",
11443
- listStyle: "listReset_listStyle",
11441
+ padding: "p_0",
11442
+ margin: "m_0",
11443
+ listStyle: "lis_none",
11444
11444
  flexGrow: "fg1"
11445
11445
  }), children: hasSections ? [...state.collection].map((section) => /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
11446
11446
  ListBoxSection,
@@ -12964,8 +12964,8 @@ function IconCard(props) {
12964
12964
  /* @__PURE__ */ (0, import_jsx_runtime64.jsx)(Icon, { icon, inc: 4, color: isDisabled ? "rgba(221, 220, 220, 1)" /* Gray300 */ : "rgba(36, 36, 36, 1)" /* Gray900 */ }),
12965
12965
  /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("span", { ...(0, import_runtime51.trussProps)({
12966
12966
  fontWeight: "fw4",
12967
- fontSize: "xs_fontSize",
12968
- lineHeight: "xs_lineHeight",
12967
+ fontSize: "fz_12px",
12968
+ lineHeight: "lh_16px",
12969
12969
  ...isDisabled ? {
12970
12970
  color: "gray300"
12971
12971
  } : {}
@@ -13047,7 +13047,7 @@ function MultiLineSelectField(props) {
13047
13047
  }), key: index }, /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("div", { ...(0, import_runtime52.trussProps)({
13048
13048
  whiteSpace: "wsnw",
13049
13049
  overflow: "oh",
13050
- textOverflow: "truncate_textOverflow",
13050
+ textOverflow: "to_ellipsis",
13051
13051
  width: "w100"
13052
13052
  }), children: /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(SelectField, { ...otherProps, ...tid.selectField, labelStyle: "hidden", value, onSelect: () => {
13053
13053
  }, options, getOptionValue, getOptionLabel, compact: true, readOnly: true }) }), /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(Button, { ...tid.deleteSelected, variant: "tertiary", label: "", "aria-label": `Delete selected ${otherProps.label}`, icon: "x", onClick: () => {
@@ -13400,8 +13400,8 @@ function Radio(props) {
13400
13400
  /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)("div", { children: [
13401
13401
  /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("div", { id: labelId, ...(0, import_runtime53.trussProps)({
13402
13402
  fontWeight: "fw4",
13403
- fontSize: "sm_fontSize",
13404
- lineHeight: "sm_lineHeight",
13403
+ fontSize: "fz_14px",
13404
+ lineHeight: "lh_20px",
13405
13405
  color: "gray800",
13406
13406
  ...disabled ? {
13407
13407
  color: "gray400"
@@ -13411,8 +13411,8 @@ function Radio(props) {
13411
13411
  } : {}, children: label }),
13412
13412
  description && /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("div", { id: descriptionId, ...(0, import_runtime53.trussProps)({
13413
13413
  fontWeight: "fw4",
13414
- fontSize: "sm_fontSize",
13415
- lineHeight: "sm_lineHeight",
13414
+ fontSize: "fz_14px",
13415
+ lineHeight: "lh_20px",
13416
13416
  color: "gray700",
13417
13417
  ...disabled ? {
13418
13418
  color: "gray400"
@@ -13666,8 +13666,8 @@ function RichTextFieldImpl(props) {
13666
13666
  minHeight: "mh_120px",
13667
13667
  backgroundColor: "bgWhite",
13668
13668
  fontWeight: "fw4",
13669
- fontSize: "sm_fontSize",
13670
- lineHeight: "sm_lineHeight",
13669
+ fontSize: "fz_14px",
13670
+ lineHeight: "lh_20px",
13671
13671
  color: "gray900",
13672
13672
  borderStyle: "bss",
13673
13673
  borderWidth: "bw1",
@@ -13820,8 +13820,8 @@ function Switch(props) {
13820
13820
  alignItems: "aic",
13821
13821
  width: "wa",
13822
13822
  fontWeight: "fw4",
13823
- fontSize: "sm_fontSize",
13824
- lineHeight: "sm_lineHeight"
13823
+ fontSize: "fz_14px",
13824
+ lineHeight: "lh_20px"
13825
13825
  },
13826
13826
  ...labelStyle === "centered" && {
13827
13827
  flexDirection: "fdc",
@@ -13874,8 +13874,8 @@ function Switch(props) {
13874
13874
  }), children: withIcon && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(Icon, { icon: isSelected ? "check" : "x", color: isSelected ? "rgba(29, 78, 216, 1)" /* Blue700 */ : "rgba(201, 201, 201, 1)" /* Gray400 */, inc: toggleHeight(compact) / 16 }) }) }) }),
13875
13875
  labelStyle === "inline" && /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(Label, { label, tooltip, inline: true, xss: {
13876
13876
  fontWeight: "fw4",
13877
- fontSize: "sm_fontSize",
13878
- lineHeight: "sm_lineHeight",
13877
+ fontSize: "fz_14px",
13878
+ lineHeight: "lh_20px",
13879
13879
  color: "gray900",
13880
13880
  ...compact ? {
13881
13881
  lineHeight: "lineHeight_1"
@@ -14131,8 +14131,8 @@ function ToggleButton(props) {
14131
14131
  cursor: "cursorPointer",
14132
14132
  width: "w_max_content",
14133
14133
  fontWeight: "fw4",
14134
- fontSize: "sm_fontSize",
14135
- lineHeight: "sm_lineHeight",
14134
+ fontSize: "fz_14px",
14135
+ lineHeight: "lh_20px",
14136
14136
  userSelect: "usn"
14137
14137
  },
14138
14138
  ...isHovered && toggleHoverStyles,
@@ -14289,13 +14289,13 @@ function ToggleChip2(props) {
14289
14289
  alignItems: "aic",
14290
14290
  borderRadius: "br16",
14291
14291
  fontWeight: "fw4",
14292
- fontSize: "sm_fontSize",
14293
- lineHeight: "sm_lineHeight",
14292
+ fontSize: "fz_14px",
14293
+ lineHeight: "lh_20px",
14294
14294
  paddingLeft: "pl1",
14295
14295
  paddingRight: "pr1",
14296
14296
  cursor: "cursorPointer",
14297
- paddingTop: "py_4px_paddingTop",
14298
- paddingBottom: "py_4px_paddingBottom"
14297
+ paddingTop: "pt_4px",
14298
+ paddingBottom: "pb_4px"
14299
14299
  },
14300
14300
  ...chipStateCss,
14301
14301
  ...isFocusVisible ? {
@@ -16097,10 +16097,10 @@ function ToggleChip(props) {
16097
16097
  /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("span", { ...(0, import_runtime60.trussProps)({
16098
16098
  textAlign: "tal",
16099
16099
  overflow: "oh",
16100
- display: "lineClamp1_display",
16101
- WebkitBoxOrient: "lineClamp1_WebkitBoxOrient",
16102
- textOverflow: "lineClamp1_textOverflow",
16103
- WebkitLineClamp: "lineClamp1_WebkitLineClamp",
16100
+ display: "d_negwebkit_box",
16101
+ WebkitBoxOrient: "wbo_vertical",
16102
+ textOverflow: "to_ellipsis",
16103
+ WebkitLineClamp: "wlc_1",
16104
16104
  wordBreak: "wbba",
16105
16105
  ...disabled ? {
16106
16106
  paddingRight: "pr0"
@@ -16217,20 +16217,20 @@ function Accordion(props) {
16217
16217
  paddingRight: "pr2",
16218
16218
  paddingLeft: "pl2",
16219
16219
  fontWeight: "fw4",
16220
- fontSize: "md_fontSize",
16221
- lineHeight: "md_lineHeight",
16220
+ fontSize: "fz_16px",
16221
+ lineHeight: "lh_24px",
16222
16222
  outline: "outline_none",
16223
16223
  backgroundColor: "h_bgGray100",
16224
16224
  ...!!titleOnClick ? {
16225
16225
  fontWeight: "fw4 h_fw6",
16226
- fontSize: "md_fontSize h_mdSb_fontSize",
16227
- lineHeight: "md_lineHeight h_mdSb_lineHeight"
16226
+ fontSize: "fz_16px h_fz_16px",
16227
+ lineHeight: "lh_24px h_lh_24px"
16228
16228
  } : {}
16229
16229
  },
16230
16230
  ...compact && {
16231
16231
  fontWeight: "fw4",
16232
- fontSize: "sm_fontSize",
16233
- lineHeight: "sm_lineHeight",
16232
+ fontSize: "fz_14px",
16233
+ lineHeight: "lh_20px",
16234
16234
  paddingLeft: "pl2",
16235
16235
  paddingRight: "pr_10px",
16236
16236
  paddingTop: "pt1",
@@ -16256,12 +16256,12 @@ function Accordion(props) {
16256
16256
  ...{
16257
16257
  borderColor: "bcGray300",
16258
16258
  ...topBorder ? {
16259
- borderTopStyle: "bt_borderTopStyle",
16260
- borderTopWidth: "bt_borderTopWidth"
16259
+ borderTopStyle: "bts_solid",
16260
+ borderTopWidth: "btw_1px"
16261
16261
  } : {},
16262
16262
  ...bottomBorder ? {
16263
- borderBottomStyle: "bb_borderBottomStyle",
16264
- borderBottomWidth: "bb_borderBottomWidth"
16263
+ borderBottomStyle: "bbs_solid",
16264
+ borderBottomWidth: "bbw_1px"
16265
16265
  } : {}
16266
16266
  },
16267
16267
  ...size ? {
@@ -16286,8 +16286,8 @@ function Accordion(props) {
16286
16286
  paddingRight: "pr2",
16287
16287
  justifyContent: "jcfe",
16288
16288
  ...compact ? {
16289
- paddingLeft: "px_10px_paddingLeft",
16290
- paddingRight: "px_10px_paddingRight"
16289
+ paddingLeft: "pl_10px",
16290
+ paddingRight: "pr_10px"
16291
16291
  } : {}
16292
16292
  }
16293
16293
  }), onClick: toggle, children: /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(RotatingChevronIcon, { expanded }) })
@@ -16426,8 +16426,8 @@ function Indicator({
16426
16426
  alignItems: "aic",
16427
16427
  color: "gray700",
16428
16428
  fontWeight: "fw6",
16429
- fontSize: "smSb_fontSize",
16430
- lineHeight: "smSb_lineHeight"
16429
+ fontSize: "fz_14px",
16430
+ lineHeight: "lh_20px"
16431
16431
  }), children: [
16432
16432
  /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(Icon, { icon, color }),
16433
16433
  text
@@ -16459,8 +16459,8 @@ function Banner(props) {
16459
16459
  paddingLeft: "pl2",
16460
16460
  color: "gray900",
16461
16461
  fontWeight: "fw4",
16462
- fontSize: "md_fontSize",
16463
- lineHeight: "md_lineHeight",
16462
+ fontSize: "fz_16px",
16463
+ lineHeight: "lh_24px",
16464
16464
  boxShadow: "bshBasic"
16465
16465
  }
16466
16466
  }), ...tid, role: "alert", children: [
@@ -16659,14 +16659,14 @@ function Modal(props) {
16659
16659
  );
16660
16660
  return /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(ModalProvider, { children: /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(import_react_aria41.OverlayContainer, { children: /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(AutoSaveStatusProvider, { children: /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("div", { ...(0, import_runtime65.trussProps)({
16661
16661
  position: "fixed",
16662
- top: "underlay_top",
16663
- bottom: "underlay_bottom",
16664
- left: "underlay_left",
16665
- right: "underlay_right",
16662
+ top: "tp_0",
16663
+ bottom: "bot_0",
16664
+ left: "l_0",
16665
+ right: "r_0",
16666
16666
  display: "df",
16667
16667
  alignItems: "aic",
16668
16668
  justifyContent: "jcc",
16669
- backgroundColor: "underlay_backgroundColor",
16669
+ backgroundColor: "bgc_rgba_36_36_36_0_6",
16670
16670
  zIndex: "z4"
16671
16671
  }), ...underlayProps, ...testId.underlay, children: /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(import_react_aria41.FocusScope, { contain: true, restoreFocus: true, autoFocus: true, children: /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)("div", { ...(0, import_runtime65.trussProps)({
16672
16672
  borderRadius: "br24",
@@ -16703,8 +16703,8 @@ function Modal(props) {
16703
16703
  paddingLeft: "pl3",
16704
16704
  flexShrink: "fs0",
16705
16705
  ...drawHeaderBorder ? {
16706
- borderBottomStyle: "bb_borderBottomStyle",
16707
- borderBottomWidth: "bb_borderBottomWidth",
16706
+ borderBottomStyle: "bbs_solid",
16707
+ borderBottomWidth: "bbw_1px",
16708
16708
  borderColor: "bcGray200"
16709
16709
  } : {}
16710
16710
  }), children: [
@@ -16715,8 +16715,8 @@ function Modal(props) {
16715
16715
  /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("h1", { ...(0, import_runtime65.trussProps)({
16716
16716
  flexGrow: "fg1",
16717
16717
  fontWeight: "fw6",
16718
- fontSize: "xl2_fontSize",
16719
- lineHeight: "xl2_lineHeight",
16718
+ fontSize: "fz_30px",
16719
+ lineHeight: "lh_36px",
16720
16720
  color: "gray900"
16721
16721
  }), ref: modalHeaderRef, ...titleProps, ...testId.title })
16722
16722
  ] }),
@@ -16724,8 +16724,8 @@ function Modal(props) {
16724
16724
  flexGrow: "fg1",
16725
16725
  overflowY: "oya",
16726
16726
  ...hasScroll ? {
16727
- borderBottomStyle: "bb_borderBottomStyle",
16728
- borderBottomWidth: "bb_borderBottomWidth",
16727
+ borderBottomStyle: "bbs_solid",
16728
+ borderBottomWidth: "bbw_1px",
16729
16729
  borderColor: "bcGray200"
16730
16730
  } : {},
16731
16731
  ...!!forceScrolling ? {
@@ -16829,8 +16829,8 @@ function SnackbarNotice(props) {
16829
16829
  backgroundColor: "bgGray800",
16830
16830
  borderRadius: "br4",
16831
16831
  fontWeight: "fw4",
16832
- fontSize: "md_fontSize",
16833
- lineHeight: "md_lineHeight",
16832
+ fontSize: "fz_16px",
16833
+ lineHeight: "lh_24px",
16834
16834
  display: "df",
16835
16835
  alignItems: "aic",
16836
16836
  maxWidth: "maxw_420px"
@@ -16844,13 +16844,13 @@ function SnackbarNotice(props) {
16844
16844
  {
16845
16845
  ...(0, import_runtime66.trussProps)({
16846
16846
  overflow: "oh",
16847
- display: "lineClamp3_display",
16848
- WebkitBoxOrient: "lineClamp3_WebkitBoxOrient",
16849
- textOverflow: "lineClamp3_textOverflow",
16850
- WebkitLineClamp: "lineClamp3_WebkitLineClamp",
16847
+ display: "d_negwebkit_box",
16848
+ WebkitBoxOrient: "wbo_vertical",
16849
+ textOverflow: "to_ellipsis",
16850
+ WebkitLineClamp: "wlc_3",
16851
16851
  paddingRight: "pr2",
16852
- marginTop: "my_12px_marginTop",
16853
- marginBottom: "my_12px_marginBottom",
16852
+ marginTop: "mt_12px",
16853
+ marginBottom: "mb_12px",
16854
16854
  paddingLeft: ["pl_var", {
16855
16855
  "--paddingLeft": `${icon ? 8 : 16}px`
16856
16856
  }]
@@ -16870,8 +16870,8 @@ function SnackbarNotice(props) {
16870
16870
  action && /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("span", { ...(0, import_runtime66.trussProps)({
16871
16871
  textTransform: "ttu",
16872
16872
  fontWeight: "fw4",
16873
- fontSize: "sm_fontSize",
16874
- lineHeight: "sm_lineHeight",
16873
+ fontSize: "fz_14px",
16874
+ lineHeight: "lh_20px",
16875
16875
  paddingRight: ["pr_var", {
16876
16876
  "--paddingRight": `${!reallyHideClose && action.variant !== "text" ? 4 : 8}px`
16877
16877
  }]
@@ -17078,8 +17078,8 @@ function SuperDrawer() {
17078
17078
  paddingBottom: "pb3",
17079
17079
  paddingRight: "pr3",
17080
17080
  paddingLeft: "pl3",
17081
- borderBottomStyle: "bb_borderBottomStyle",
17082
- borderBottomWidth: "bb_borderBottomWidth",
17081
+ borderBottomStyle: "bbs_solid",
17082
+ borderBottomWidth: "bbw_1px",
17083
17083
  borderColor: "bcGray200",
17084
17084
  display: "df",
17085
17085
  alignItems: "aic",
@@ -17496,8 +17496,8 @@ function ListFieldRowInputs({
17496
17496
  }), ...tid, children: [
17497
17497
  /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)("span", { ...(0, import_runtime70.trussProps)({
17498
17498
  fontWeight: "fw6",
17499
- fontSize: "mdSb_fontSize",
17500
- lineHeight: "mdSb_lineHeight"
17499
+ fontSize: "fz_16px",
17500
+ lineHeight: "lh_24px"
17501
17501
  }), ...tid.name, children: [
17502
17502
  listFieldConfig.name,
17503
17503
  " ",
@@ -18249,10 +18249,10 @@ function CompoundField({
18249
18249
  alignItems: "aic",
18250
18250
  flexShrink: "fs1",
18251
18251
  maxWidth: "maxw_550px",
18252
- borderTopStyle: "bt_borderTopStyle",
18253
- borderTopWidth: "bt_borderTopWidth",
18254
- borderBottomStyle: "bb_borderBottomStyle",
18255
- borderBottomWidth: "bb_borderBottomWidth",
18252
+ borderTopStyle: "bts_solid",
18253
+ borderTopWidth: "btw_1px",
18254
+ borderBottomStyle: "bbs_solid",
18255
+ borderBottomWidth: "bbw_1px",
18256
18256
  borderColor: "bcGray300"
18257
18257
  };
18258
18258
  const internalProps = {
@@ -18275,8 +18275,8 @@ function CompoundField({
18275
18275
  /* @__PURE__ */ (0, import_jsx_runtime114.jsx)("div", { ...(0, import_runtime73.trussProps)({
18276
18276
  ...commonStyles,
18277
18277
  ...{
18278
- borderLeftStyle: "bl_borderLeftStyle",
18279
- borderLeftWidth: "bl_borderLeftWidth",
18278
+ borderLeftStyle: "bls_solid",
18279
+ borderLeftWidth: "blw_1px",
18280
18280
  borderRadius: "borderRadius_4px_0_0_4px"
18281
18281
  },
18282
18282
  ...hasFocusWithin && {
@@ -18299,8 +18299,8 @@ function CompoundField({
18299
18299
  ...commonStyles,
18300
18300
  ...{
18301
18301
  flexGrow: "fg1",
18302
- borderRightStyle: "br_borderRightStyle",
18303
- borderRightWidth: "br_borderRightWidth",
18302
+ borderRightStyle: "brs_solid",
18303
+ borderRightWidth: "brw_1px",
18304
18304
  borderRadius: "borderRadius_0_4px_4px_0"
18305
18305
  },
18306
18306
  ...hasFocusWithin && {
@@ -18354,8 +18354,8 @@ function FormHeading(props) {
18354
18354
  return /* @__PURE__ */ (0, import_jsx_runtime116.jsx)("h3", { ...(0, import_runtime74.trussProps)({
18355
18355
  ...{
18356
18356
  fontWeight: "fw4",
18357
- fontSize: "md_fontSize",
18358
- lineHeight: "md_lineHeight",
18357
+ fontSize: "fz_16px",
18358
+ lineHeight: "lh_24px",
18359
18359
  ...!isFirst ? {
18360
18360
  marginTop: "mt1"
18361
18361
  } : {}
@@ -18391,15 +18391,15 @@ function StaticField(props) {
18391
18391
  /* @__PURE__ */ (0, import_jsx_runtime117.jsx)("label", { ...(0, import_runtime75.trussProps)({
18392
18392
  display: "db",
18393
18393
  fontWeight: "fw4",
18394
- fontSize: "sm_fontSize",
18395
- lineHeight: "sm_lineHeight",
18394
+ fontSize: "fz_14px",
18395
+ lineHeight: "lh_20px",
18396
18396
  color: "gray700",
18397
18397
  marginBottom: "mb_4px"
18398
18398
  }), htmlFor: id, ...tid.label, children: label }),
18399
18399
  /* @__PURE__ */ (0, import_jsx_runtime117.jsx)("div", { id, ...(0, import_runtime75.trussProps)({
18400
18400
  fontWeight: "fw4",
18401
- fontSize: "sm_fontSize",
18402
- lineHeight: "sm_lineHeight",
18401
+ fontSize: "fz_14px",
18402
+ lineHeight: "lh_20px",
18403
18403
  color: "gray900",
18404
18404
  display: "df",
18405
18405
  alignItems: "aic",
@@ -18613,18 +18613,18 @@ function PageHeaderBreadcrumbs({
18613
18613
  return /* @__PURE__ */ (0, import_jsx_runtime122.jsxs)(import_react90.Fragment, { children: [
18614
18614
  index > 0 && !hideDivisor && /* @__PURE__ */ (0, import_jsx_runtime122.jsx)("span", { ...(0, import_runtime77.trussProps)({
18615
18615
  fontWeight: "fw6",
18616
- fontSize: "smSb_fontSize",
18617
- lineHeight: "smSb_lineHeight",
18616
+ fontSize: "fz_14px",
18617
+ lineHeight: "lh_20px",
18618
18618
  color: "gray700",
18619
18619
  marginLeft: "ml1",
18620
18620
  marginRight: "mr1",
18621
- marginTop: "my_2px_marginTop",
18622
- marginBottom: "my_2px_marginBottom"
18621
+ marginTop: "mt_2px",
18622
+ marginBottom: "mb_2px"
18623
18623
  }), children: "/" }),
18624
18624
  /* @__PURE__ */ (0, import_jsx_runtime122.jsx)(import_react_router_dom4.Link, { to: bc.href, ...(0, import_runtime77.mergeProps)("navLink", void 0, {
18625
18625
  fontWeight: "fw6",
18626
- fontSize: "smSb_fontSize",
18627
- lineHeight: "smSb_lineHeight",
18626
+ fontSize: "fz_14px",
18627
+ lineHeight: "lh_20px",
18628
18628
  color: "gray700 h_gray900"
18629
18629
  }), ...tids.navLink, children: bc.label }),
18630
18630
  bc.right
@@ -18750,8 +18750,8 @@ function PageHeader(props) {
18750
18750
  breadCrumb && /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(PageHeaderBreadcrumbs, { breadcrumb: breadCrumb }),
18751
18751
  /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("h1", { ...(0, import_runtime78.trussProps)({
18752
18752
  fontWeight: "fw6",
18753
- fontSize: "xl2_fontSize",
18754
- lineHeight: "xl2_lineHeight"
18753
+ fontSize: "fz_30px",
18754
+ lineHeight: "lh_36px"
18755
18755
  }), ...tids.pageTitle, children: pageTitle })
18756
18756
  ] }),
18757
18757
  /* @__PURE__ */ (0, import_jsx_runtime123.jsxs)("div", { ...(0, import_runtime78.trussProps)({
@@ -18809,8 +18809,8 @@ function FormSections(props) {
18809
18809
  }), children: [
18810
18810
  section.title && /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("h2", { ...(0, import_runtime78.trussProps)({
18811
18811
  fontWeight: "fw6",
18812
- fontSize: "xl_fontSize",
18813
- lineHeight: "xl_lineHeight",
18812
+ fontSize: "fz_20px",
18813
+ lineHeight: "lh_28px",
18814
18814
  marginBottom: "mb3"
18815
18815
  }), children: section.title }),
18816
18816
  /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(BoundForm, { formState, rows: section.rows })
@@ -18846,8 +18846,8 @@ function LeftNav(props) {
18846
18846
  }
18847
18847
  var activeStyles2 = {
18848
18848
  fontWeight: "fw6",
18849
- fontSize: "smSb_fontSize",
18850
- lineHeight: "smSb_lineHeight",
18849
+ fontSize: "fz_14px",
18850
+ lineHeight: "lh_20px",
18851
18851
  boxShadow: ["boxShadow_var", {
18852
18852
  "--boxShadow": `inset 3px 0px 0 0px ${"rgba(37, 99, 235, 1)" /* Blue600 */}`
18853
18853
  }]
@@ -18855,8 +18855,8 @@ var activeStyles2 = {
18855
18855
  var hoverStyles2 = {
18856
18856
  backgroundColor: "bgBlue50",
18857
18857
  fontWeight: "fw6",
18858
- fontSize: "smSb_fontSize",
18859
- lineHeight: "smSb_lineHeight",
18858
+ fontSize: "fz_14px",
18859
+ lineHeight: "lh_20px",
18860
18860
  color: "blue900",
18861
18861
  boxShadow: ["boxShadow_var", {
18862
18862
  "--boxShadow": `inset 3px 0px 0 0px ${"rgba(30, 58, 138, 1)" /* Blue900 */}`
@@ -18902,8 +18902,8 @@ function SectionNavLink(props) {
18902
18902
  return /* @__PURE__ */ (0, import_jsx_runtime123.jsx)("button", { ref: buttonRef, ...buttonProps, ...focusProps, ...hoverProps, ...(0, import_runtime78.trussProps)({
18903
18903
  ...{
18904
18904
  fontWeight: "fw6",
18905
- fontSize: "smSb_fontSize",
18906
- lineHeight: "smSb_lineHeight",
18905
+ fontSize: "fz_14px",
18906
+ lineHeight: "lh_20px",
18907
18907
  outline: "outline0",
18908
18908
  borderRadius: "br0",
18909
18909
  display: "dif",
@@ -19112,8 +19112,8 @@ function CountBadge(props) {
19112
19112
  flexShrink: "fs0",
19113
19113
  borderRadius: "br100",
19114
19114
  fontWeight: "fw6",
19115
- fontSize: "xs2Sb_fontSize",
19116
- lineHeight: "xs2Sb_lineHeight",
19115
+ fontSize: "fz_10px",
19116
+ lineHeight: "lh_14px",
19117
19117
  display: "df",
19118
19118
  alignItems: "aic",
19119
19119
  justifyContent: "jcc",
@@ -19548,15 +19548,15 @@ function ModalFilterItem({
19548
19548
  return /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)("div", { ...(0, import_runtime82.trussProps)({
19549
19549
  marginBottom: "mb4",
19550
19550
  ...!label ? {
19551
- borderTopStyle: "bt_borderTopStyle",
19552
- borderTopWidth: "bt_borderTopWidth",
19551
+ borderTopStyle: "bts_solid",
19552
+ borderTopWidth: "btw_1px",
19553
19553
  borderColor: "bcGray200"
19554
19554
  } : {}
19555
19555
  }), children: [
19556
19556
  label && /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("h2", { ...(0, import_runtime82.trussProps)({
19557
19557
  fontWeight: "fw4",
19558
- fontSize: "md_fontSize",
19559
- lineHeight: "md_lineHeight",
19558
+ fontSize: "fz_16px",
19559
+ lineHeight: "lh_24px",
19560
19560
  marginBottom: "mb2"
19561
19561
  }), children: label }),
19562
19562
  /* @__PURE__ */ (0, import_jsx_runtime135.jsx)("div", { ...(0, import_runtime82.trussProps)({
@@ -19778,11 +19778,11 @@ function Pagination(props) {
19778
19778
  return /* @__PURE__ */ (0, import_jsx_runtime139.jsxs)("div", { ...(0, import_runtime85.trussProps)({
19779
19779
  display: "df",
19780
19780
  borderColor: "bcGray200",
19781
- borderTopStyle: "bt_borderTopStyle",
19782
- borderTopWidth: "bt_borderTopWidth",
19781
+ borderTopStyle: "bts_solid",
19782
+ borderTopWidth: "btw_1px",
19783
19783
  fontWeight: "fw4",
19784
- fontSize: "xs_fontSize",
19785
- lineHeight: "xs_lineHeight",
19784
+ fontSize: "fz_12px",
19785
+ lineHeight: "lh_16px",
19786
19786
  color: "gray500",
19787
19787
  paddingLeft: "pl2",
19788
19788
  paddingRight: "pr2",
@@ -19897,11 +19897,11 @@ function EditColumnsButton(props) {
19897
19897
  options.map((option) => /* @__PURE__ */ (0, import_jsx_runtime140.jsxs)(import_react98.Fragment, { children: [
19898
19898
  /* @__PURE__ */ (0, import_jsx_runtime140.jsx)("div", { ...(0, import_runtime86.trussProps)({
19899
19899
  fontWeight: "fw4",
19900
- fontSize: "sm_fontSize",
19901
- lineHeight: "sm_lineHeight",
19900
+ fontSize: "fz_14px",
19901
+ lineHeight: "lh_20px",
19902
19902
  whiteSpace: "wsnw",
19903
19903
  overflow: "oh",
19904
- textOverflow: "truncate_textOverflow",
19904
+ textOverflow: "to_ellipsis",
19905
19905
  paddingRight: "pr1"
19906
19906
  }), children: option.label }),
19907
19907
  /* @__PURE__ */ (0, import_jsx_runtime140.jsx)(Switch, { compact: true, selected: selectedValues.includes(option.value), onChange: (value) => setSelectedValues(value ? [...selectedValues, option.value] : selectedValues.filter((v) => v !== option.value)), labelStyle: "hidden", label: option.label, ...tid[`option${option.value}`] })
@@ -20225,8 +20225,8 @@ function Header2(props) {
20225
20225
  breadcrumb && /* @__PURE__ */ (0, import_jsx_runtime145.jsx)(PageHeaderBreadcrumbs, { breadcrumb }),
20226
20226
  /* @__PURE__ */ (0, import_jsx_runtime145.jsx)("h1", { ...(0, import_runtime90.trussProps)({
20227
20227
  fontWeight: "fw6",
20228
- fontSize: "xl2_fontSize",
20229
- lineHeight: "xl2_lineHeight",
20228
+ fontSize: "fz_30px",
20229
+ lineHeight: "lh_36px",
20230
20230
  marginTop: "mt1"
20231
20231
  }), ...tids.pageTitle, children: pageTitle })
20232
20232
  ] }),
@@ -20617,8 +20617,8 @@ function GroupButton(props) {
20617
20617
  children: /* @__PURE__ */ (0, import_jsx_runtime151.jsxs)("button", { ref, ...buttonProps, ...focusProps, ...hoverProps, ...(0, import_runtime93.trussProps)({
20618
20618
  ...{
20619
20619
  fontWeight: "fw6",
20620
- fontSize: "buttonBase_fontSize",
20621
- lineHeight: "buttonBase_lineHeight",
20620
+ fontSize: "fz_14px",
20621
+ lineHeight: "lh_20px",
20622
20622
  outline: "outline0",
20623
20623
  borderRadius: "br0",
20624
20624
  display: "dif",
@@ -20701,12 +20701,12 @@ var sizeStyles2 = {
20701
20701
  };
20702
20702
  var iconStyles2 = {
20703
20703
  xs: {
20704
- paddingLeft: "px_2px_paddingLeft",
20705
- paddingRight: "px_2px_paddingRight"
20704
+ paddingLeft: "pl_2px",
20705
+ paddingRight: "pr_2px"
20706
20706
  },
20707
20707
  sm: {
20708
- paddingLeft: "px_4px_paddingLeft",
20709
- paddingRight: "px_4px_paddingRight"
20708
+ paddingLeft: "pl_4px",
20709
+ paddingRight: "pr_4px"
20710
20710
  },
20711
20711
  md: {
20712
20712
  paddingLeft: "pl1",
@@ -20749,15 +20749,15 @@ function Tag(props) {
20749
20749
  ...{
20750
20750
  display: "dif",
20751
20751
  fontWeight: "fw6",
20752
- fontSize: "xs2Sb_fontSize",
20753
- lineHeight: "xs2Sb_lineHeight",
20752
+ fontSize: "fz_10px",
20753
+ lineHeight: "lh_14px",
20754
20754
  textTransform: "ttu",
20755
20755
  alignItems: "aic",
20756
20756
  gap: "gap_4px",
20757
- paddingLeft: "px_6px_paddingLeft",
20758
- paddingRight: "px_6px_paddingRight",
20759
- paddingTop: "py_2px_paddingTop",
20760
- paddingBottom: "py_2px_paddingBottom",
20757
+ paddingLeft: "pl_6px",
20758
+ paddingRight: "pr_6px",
20759
+ paddingTop: "pt_2px",
20760
+ paddingBottom: "pb_2px",
20761
20761
  color: "gray900",
20762
20762
  borderRadius: "br4"
20763
20763
  },
@@ -20769,10 +20769,10 @@ function Tag(props) {
20769
20769
  }), children: /* @__PURE__ */ (0, import_jsx_runtime152.jsx)(Icon, { icon: otherProps.icon, inc: 1.5 }) }),
20770
20770
  /* @__PURE__ */ (0, import_jsx_runtime152.jsx)("span", { ref, ...(0, import_runtime94.trussProps)({
20771
20771
  overflow: "oh",
20772
- display: "lineClamp1_display",
20773
- WebkitBoxOrient: "lineClamp1_WebkitBoxOrient",
20774
- textOverflow: "lineClamp1_textOverflow",
20775
- WebkitLineClamp: "lineClamp1_WebkitLineClamp",
20772
+ display: "d_negwebkit_box",
20773
+ WebkitBoxOrient: "wbo_vertical",
20774
+ textOverflow: "to_ellipsis",
20775
+ WebkitLineClamp: "wlc_1",
20776
20776
  wordBreak: "wbba"
20777
20777
  }), children: text })
20778
20778
  ] })
@@ -20886,14 +20886,14 @@ function Card(props) {
20886
20886
  /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("div", { children: [
20887
20887
  /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("div", { ...(0, import_runtime95.trussProps)({
20888
20888
  fontWeight: "fw6",
20889
- fontSize: "xsSb_fontSize",
20890
- lineHeight: "xsSb_lineHeight",
20889
+ fontSize: "fz_12px",
20890
+ lineHeight: "lh_16px",
20891
20891
  color: "gray700"
20892
20892
  }), ...tid.subtitle, children: subtitle }),
20893
20893
  /* @__PURE__ */ (0, import_jsx_runtime153.jsx)("div", { ...(0, import_runtime95.trussProps)({
20894
20894
  fontWeight: "fw6",
20895
- fontSize: "smSb_fontSize",
20896
- lineHeight: "smSb_lineHeight",
20895
+ fontSize: "fz_14px",
20896
+ lineHeight: "lh_20px",
20897
20897
  color: "gray900",
20898
20898
  ...isHovered ? {
20899
20899
  color: "blue700"
@@ -20954,8 +20954,8 @@ function Copy(props) {
20954
20954
  return /* @__PURE__ */ (0, import_jsx_runtime154.jsx)("div", { ...(0, import_runtime96.mergeProps)("beam-copy", void 0, {
20955
20955
  ...{
20956
20956
  fontWeight: "fw4",
20957
- fontSize: "sm_fontSize",
20958
- lineHeight: "sm_lineHeight",
20957
+ fontSize: "fz_14px",
20958
+ lineHeight: "lh_20px",
20959
20959
  color: "gray700",
20960
20960
  marginTop: "mt2",
20961
20961
  marginBottom: "mb3",
@@ -21469,17 +21469,17 @@ function MaxLines({
21469
21469
  WebkitLineClamp: ["lineClamp_var", {
21470
21470
  "--WebkitLineClamp": maxLines
21471
21471
  }],
21472
- overflow: "lineClamp_overflow",
21473
- display: "lineClamp_display",
21474
- WebkitBoxOrient: "lineClamp_WebkitBoxOrient",
21475
- textOverflow: "lineClamp_textOverflow"
21472
+ overflow: "oh",
21473
+ display: "d_negwebkit_box",
21474
+ WebkitBoxOrient: "wbo_vertical",
21475
+ textOverflow: "to_ellipsis"
21476
21476
  } : {}
21477
21477
  }), children }),
21478
21478
  hasMore && /* @__PURE__ */ (0, import_jsx_runtime160.jsx)("button", { ...(0, import_runtime100.trussProps)({
21479
21479
  display: "db",
21480
21480
  fontWeight: "fw4",
21481
- fontSize: "sm_fontSize",
21482
- lineHeight: "sm_lineHeight"
21481
+ fontSize: "fz_14px",
21482
+ lineHeight: "lh_20px"
21483
21483
  }), onClick: () => setExpanded((prev) => !prev), children: expanded ? "Show Less" : "Show More" })
21484
21484
  ] });
21485
21485
  }
@@ -21707,9 +21707,9 @@ function Stepper(props) {
21707
21707
  width: "w100"
21708
21708
  }), ...tid, children: [
21709
21709
  /* @__PURE__ */ (0, import_jsx_runtime162.jsx)("ol", { ...(0, import_runtime102.trussProps)({
21710
- padding: "listReset_padding",
21711
- margin: "listReset_margin",
21712
- listStyle: "listReset_listStyle",
21710
+ padding: "p_0",
21711
+ margin: "m_0",
21712
+ listStyle: "lis_none",
21713
21713
  display: "df",
21714
21714
  gap: ["gap_var", {
21715
21715
  "--gap": `${gap}px`
@@ -21783,8 +21783,8 @@ function StepButton(props) {
21783
21783
  return /* @__PURE__ */ (0, import_jsx_runtime162.jsxs)("button", { ref, ...buttonProps, ...focusProps, ...hoverProps, ...(0, import_runtime102.trussProps)({
21784
21784
  ...{
21785
21785
  fontWeight: "fw6",
21786
- fontSize: "buttonBase_fontSize",
21787
- lineHeight: "buttonBase_lineHeight",
21786
+ fontSize: "fz_14px",
21787
+ lineHeight: "lh_20px",
21788
21788
  outline: "outline0",
21789
21789
  borderRadius: "br8",
21790
21790
  display: "dif",
@@ -21797,8 +21797,8 @@ function StepButton(props) {
21797
21797
  width: "w100",
21798
21798
  height: "h100",
21799
21799
  fontWeight: "fw4",
21800
- fontSize: "sm_fontSize",
21801
- lineHeight: "sm_lineHeight",
21800
+ fontSize: "fz_14px",
21801
+ lineHeight: "lh_20px",
21802
21802
  color: "gray700",
21803
21803
  whiteSpace: "whiteSpace_initial",
21804
21804
  ...state === "error" ? {
@@ -21911,8 +21911,8 @@ function SuperDrawerHeader(props) {
21911
21911
  }), children: [
21912
21912
  /* @__PURE__ */ (0, import_jsx_runtime163.jsx)("h1", { ...(0, import_runtime103.trussProps)({
21913
21913
  fontWeight: "fw6",
21914
- fontSize: "xl2_fontSize",
21915
- lineHeight: "xl2_lineHeight"
21914
+ fontSize: "fz_30px",
21915
+ lineHeight: "lh_36px"
21916
21916
  }), children: props.title }),
21917
21917
  props.left
21918
21918
  ] }),
@@ -22180,8 +22180,8 @@ var SuperDrawerContent = ({
22180
22180
  return /* @__PURE__ */ (0, import_jsx_runtime166.jsxs)(import_jsx_runtime166.Fragment, { children: [
22181
22181
  wrapWithMotionAndMaybeBack(children),
22182
22182
  actions && /* @__PURE__ */ (0, import_jsx_runtime166.jsx)("footer", { ...(0, import_runtime104.trussProps)({
22183
- borderTopStyle: "bt_borderTopStyle",
22184
- borderTopWidth: "bt_borderTopWidth",
22183
+ borderTopStyle: "bts_solid",
22184
+ borderTopWidth: "btw_1px",
22185
22185
  borderColor: "bcGray200",
22186
22186
  paddingTop: "pt3",
22187
22187
  paddingBottom: "pb3",
@@ -22303,8 +22303,8 @@ function Tabs(props) {
22303
22303
  },
22304
22304
  ...includeBottomBorder ? {
22305
22305
  ...{
22306
- borderBottomStyle: "bb_borderBottomStyle",
22307
- borderBottomWidth: "bb_borderBottomWidth",
22306
+ borderBottomStyle: "bbs_solid",
22307
+ borderBottomWidth: "bbw_1px",
22308
22308
  borderColor: "bcGray200"
22309
22309
  }
22310
22310
  } : {}
@@ -22404,7 +22404,7 @@ function getTabStyles() {
22404
22404
  const borderBottomWidthPx = 4;
22405
22405
  const verticalPaddingPx = 6;
22406
22406
  const borderBottomStyles = {
22407
- borderBottomStyle: "bb_borderBottomStyle",
22407
+ borderBottomStyle: "bbs_solid",
22408
22408
  borderBottomWidth: ["borderBottomWidth_var", {
22409
22409
  "--borderBottomWidth": `${borderBottomWidthPx}px`
22410
22410
  }],
@@ -22430,15 +22430,15 @@ function getTabStyles() {
22430
22430
  width: "width_fit_content",
22431
22431
  cursor: "cursorPointer",
22432
22432
  fontWeight: "fw4",
22433
- fontSize: "sm_fontSize",
22434
- lineHeight: "sm_lineHeight"
22433
+ fontSize: "fz_14px",
22434
+ lineHeight: "lh_20px"
22435
22435
  },
22436
22436
  activeStyles: {
22437
22437
  ...{
22438
22438
  borderColor: "bcBlue700",
22439
22439
  fontWeight: "fw6",
22440
- fontSize: "smSb_fontSize",
22441
- lineHeight: "smSb_lineHeight",
22440
+ fontSize: "fz_14px",
22441
+ lineHeight: "lh_20px",
22442
22442
  color: "gray900"
22443
22443
  },
22444
22444
  ...borderBottomStyles